Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoPR datafactory/resource-manager] Add APIs for integration runtime sharing feature. #188

Open
wants to merge 6 commits into
base: restapi_auto_datafactory/resource-manager
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public class Activity {
private List<ActivityDependency> dependsOn;

/**
* Get the additionalProperties value.
* Get unmatched properties from the message are deserialized this collection.
*
* @return the additionalProperties value
*/
Expand All @@ -59,7 +59,7 @@ public Map<String, Object> additionalProperties() {
}

/**
* Set the additionalProperties value.
* Set unmatched properties from the message are deserialized this collection.
*
* @param additionalProperties the additionalProperties value to set
* @return the Activity object itself.
Expand All @@ -70,7 +70,7 @@ public Activity withAdditionalProperties(Map<String, Object> additionalPropertie
}

/**
* Get the name value.
* Get activity name.
*
* @return the name value
*/
Expand All @@ -79,7 +79,7 @@ public String name() {
}

/**
* Set the name value.
* Set activity name.
*
* @param name the name value to set
* @return the Activity object itself.
Expand All @@ -90,7 +90,7 @@ public Activity withName(String name) {
}

/**
* Get the description value.
* Get activity description.
*
* @return the description value
*/
Expand All @@ -99,7 +99,7 @@ public String description() {
}

/**
* Set the description value.
* Set activity description.
*
* @param description the description value to set
* @return the Activity object itself.
Expand All @@ -110,7 +110,7 @@ public Activity withDescription(String description) {
}

/**
* Get the dependsOn value.
* Get activity depends on condition.
*
* @return the dependsOn value
*/
Expand All @@ -119,7 +119,7 @@ public List<ActivityDependency> dependsOn() {
}

/**
* Set the dependsOn value.
* Set activity depends on condition.
*
* @param dependsOn the dependsOn value to set
* @return the Activity object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class ActivityDependency {
private List<DependencyCondition> dependencyConditions;

/**
* Get the additionalProperties value.
* Get unmatched properties from the message are deserialized this collection.
*
* @return the additionalProperties value
*/
Expand All @@ -44,7 +44,7 @@ public Map<String, Object> additionalProperties() {
}

/**
* Set the additionalProperties value.
* Set unmatched properties from the message are deserialized this collection.
*
* @param additionalProperties the additionalProperties value to set
* @return the ActivityDependency object itself.
Expand All @@ -55,7 +55,7 @@ public ActivityDependency withAdditionalProperties(Map<String, Object> additiona
}

/**
* Get the activity value.
* Get activity name.
*
* @return the activity value
*/
Expand All @@ -64,7 +64,7 @@ public String activity() {
}

/**
* Set the activity value.
* Set activity name.
*
* @param activity the activity value to set
* @return the ActivityDependency object itself.
Expand All @@ -75,7 +75,7 @@ public ActivityDependency withActivity(String activity) {
}

/**
* Get the dependencyConditions value.
* Get match-Condition for the dependency.
*
* @return the dependencyConditions value
*/
Expand All @@ -84,7 +84,7 @@ public List<DependencyCondition> dependencyConditions() {
}

/**
* Set the dependencyConditions value.
* Set match-Condition for the dependency.
*
* @param dependencyConditions the dependencyConditions value to set
* @return the ActivityDependency object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public class ActivityPolicy {
private Boolean secureOutput;

/**
* Get the additionalProperties value.
* Get unmatched properties from the message are deserialized this collection.
*
* @return the additionalProperties value
*/
Expand All @@ -59,7 +59,7 @@ public Map<String, Object> additionalProperties() {
}

/**
* Set the additionalProperties value.
* Set unmatched properties from the message are deserialized this collection.
*
* @param additionalProperties the additionalProperties value to set
* @return the ActivityPolicy object itself.
Expand All @@ -70,7 +70,7 @@ public ActivityPolicy withAdditionalProperties(Map<String, Object> additionalPro
}

/**
* Get the timeout value.
* Get specifies the timeout for the activity to run. The default timeout is 7 days. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
*
* @return the timeout value
*/
Expand All @@ -79,7 +79,7 @@ public Object timeout() {
}

/**
* Set the timeout value.
* Set specifies the timeout for the activity to run. The default timeout is 7 days. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
*
* @param timeout the timeout value to set
* @return the ActivityPolicy object itself.
Expand All @@ -90,7 +90,7 @@ public ActivityPolicy withTimeout(Object timeout) {
}

/**
* Get the retry value.
* Get maximum ordinary retry attempts. Default is 0. Type: integer (or Expression with resultType integer), minimum: 0.
*
* @return the retry value
*/
Expand All @@ -99,7 +99,7 @@ public Object retry() {
}

/**
* Set the retry value.
* Set maximum ordinary retry attempts. Default is 0. Type: integer (or Expression with resultType integer), minimum: 0.
*
* @param retry the retry value to set
* @return the ActivityPolicy object itself.
Expand All @@ -110,7 +110,7 @@ public ActivityPolicy withRetry(Object retry) {
}

/**
* Get the retryIntervalInSeconds value.
* Get interval between each retry attempt (in seconds). The default is 30 sec.
*
* @return the retryIntervalInSeconds value
*/
Expand All @@ -119,7 +119,7 @@ public Integer retryIntervalInSeconds() {
}

/**
* Set the retryIntervalInSeconds value.
* Set interval between each retry attempt (in seconds). The default is 30 sec.
*
* @param retryIntervalInSeconds the retryIntervalInSeconds value to set
* @return the ActivityPolicy object itself.
Expand All @@ -130,7 +130,7 @@ public ActivityPolicy withRetryIntervalInSeconds(Integer retryIntervalInSeconds)
}

/**
* Get the secureOutput value.
* Get when set to true, Output from activity is considered as secure and will not be logged to monitoring.
*
* @return the secureOutput value
*/
Expand All @@ -139,7 +139,7 @@ public Boolean secureOutput() {
}

/**
* Set the secureOutput value.
* Set when set to true, Output from activity is considered as secure and will not be logged to monitoring.
*
* @param secureOutput the secureOutput value to set
* @return the ActivityPolicy object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public class AmazonMWSLinkedService extends LinkedServiceInner {
private Object encryptedCredential;

/**
* Get the endpoint value.
* Get the endpoint of the Amazon MWS server, (i.e. mws.amazonservices.com).
*
* @return the endpoint value
*/
Expand All @@ -99,7 +99,7 @@ public Object endpoint() {
}

/**
* Set the endpoint value.
* Set the endpoint of the Amazon MWS server, (i.e. mws.amazonservices.com).
*
* @param endpoint the endpoint value to set
* @return the AmazonMWSLinkedService object itself.
Expand All @@ -110,7 +110,7 @@ public AmazonMWSLinkedService withEndpoint(Object endpoint) {
}

/**
* Get the marketplaceID value.
* Get the Amazon Marketplace ID you want to retrieve data from. To retrive data from multiple Marketplace IDs, seperate them with a comma (,). (i.e. A2EUQ1WTGCTBG2).
*
* @return the marketplaceID value
*/
Expand All @@ -119,7 +119,7 @@ public Object marketplaceID() {
}

/**
* Set the marketplaceID value.
* Set the Amazon Marketplace ID you want to retrieve data from. To retrive data from multiple Marketplace IDs, seperate them with a comma (,). (i.e. A2EUQ1WTGCTBG2).
*
* @param marketplaceID the marketplaceID value to set
* @return the AmazonMWSLinkedService object itself.
Expand All @@ -130,7 +130,7 @@ public AmazonMWSLinkedService withMarketplaceID(Object marketplaceID) {
}

/**
* Get the sellerID value.
* Get the Amazon seller ID.
*
* @return the sellerID value
*/
Expand All @@ -139,7 +139,7 @@ public Object sellerID() {
}

/**
* Set the sellerID value.
* Set the Amazon seller ID.
*
* @param sellerID the sellerID value to set
* @return the AmazonMWSLinkedService object itself.
Expand All @@ -150,7 +150,7 @@ public AmazonMWSLinkedService withSellerID(Object sellerID) {
}

/**
* Get the mwsAuthToken value.
* Get the Amazon MWS authentication token.
*
* @return the mwsAuthToken value
*/
Expand All @@ -159,7 +159,7 @@ public SecretBase mwsAuthToken() {
}

/**
* Set the mwsAuthToken value.
* Set the Amazon MWS authentication token.
*
* @param mwsAuthToken the mwsAuthToken value to set
* @return the AmazonMWSLinkedService object itself.
Expand All @@ -170,7 +170,7 @@ public AmazonMWSLinkedService withMwsAuthToken(SecretBase mwsAuthToken) {
}

/**
* Get the accessKeyId value.
* Get the access key id used to access data.
*
* @return the accessKeyId value
*/
Expand All @@ -179,7 +179,7 @@ public Object accessKeyId() {
}

/**
* Set the accessKeyId value.
* Set the access key id used to access data.
*
* @param accessKeyId the accessKeyId value to set
* @return the AmazonMWSLinkedService object itself.
Expand All @@ -190,7 +190,7 @@ public AmazonMWSLinkedService withAccessKeyId(Object accessKeyId) {
}

/**
* Get the secretKey value.
* Get the secret key used to access data.
*
* @return the secretKey value
*/
Expand All @@ -199,7 +199,7 @@ public SecretBase secretKey() {
}

/**
* Set the secretKey value.
* Set the secret key used to access data.
*
* @param secretKey the secretKey value to set
* @return the AmazonMWSLinkedService object itself.
Expand All @@ -210,7 +210,7 @@ public AmazonMWSLinkedService withSecretKey(SecretBase secretKey) {
}

/**
* Get the useEncryptedEndpoints value.
* Get specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
*
* @return the useEncryptedEndpoints value
*/
Expand All @@ -219,7 +219,7 @@ public Object useEncryptedEndpoints() {
}

/**
* Set the useEncryptedEndpoints value.
* Set specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
*
* @param useEncryptedEndpoints the useEncryptedEndpoints value to set
* @return the AmazonMWSLinkedService object itself.
Expand All @@ -230,7 +230,7 @@ public AmazonMWSLinkedService withUseEncryptedEndpoints(Object useEncryptedEndpo
}

/**
* Get the useHostVerification value.
* Get specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
*
* @return the useHostVerification value
*/
Expand All @@ -239,7 +239,7 @@ public Object useHostVerification() {
}

/**
* Set the useHostVerification value.
* Set specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
*
* @param useHostVerification the useHostVerification value to set
* @return the AmazonMWSLinkedService object itself.
Expand All @@ -250,7 +250,7 @@ public AmazonMWSLinkedService withUseHostVerification(Object useHostVerification
}

/**
* Get the usePeerVerification value.
* Get specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
*
* @return the usePeerVerification value
*/
Expand All @@ -259,7 +259,7 @@ public Object usePeerVerification() {
}

/**
* Set the usePeerVerification value.
* Set specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
*
* @param usePeerVerification the usePeerVerification value to set
* @return the AmazonMWSLinkedService object itself.
Expand All @@ -270,7 +270,7 @@ public AmazonMWSLinkedService withUsePeerVerification(Object usePeerVerification
}

/**
* Get the encryptedCredential value.
* Get the encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
*
* @return the encryptedCredential value
*/
Expand All @@ -279,7 +279,7 @@ public Object encryptedCredential() {
}

/**
* Set the encryptedCredential value.
* Set the encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
*
* @param encryptedCredential the encryptedCredential value to set
* @return the AmazonMWSLinkedService object itself.
Expand Down
Loading