diff --git a/logic/resource-manager/v2016_06_01/pom.xml b/logic/resource-manager/v2016_06_01/pom.xml index 1e10d8e0f6a3..4886f3029865 100644 --- a/logic/resource-manager/v2016_06_01/pom.xml +++ b/logic/resource-manager/v2016_06_01/pom.xml @@ -19,7 +19,7 @@ jar Microsoft Azure SDK for Logic Management This package contains Microsoft Logic Management SDK. - https://github.com/Azure/azure-libraries-for-java + https://github.com/Azure/azure-sdk-for-java The MIT License (MIT) @@ -28,8 +28,8 @@ - scm:git:https://github.com/Azure/azure-libraries-for-java - scm:git:git@github.com:Azure/azure-libraries-for-java.git + scm:git:https://github.com/Azure/azure-sdk-for-java + scm:git:git@github.com:Azure/azure-sdk-for-java.git HEAD diff --git a/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/AssemblyDefinition.java b/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/AssemblyDefinition.java index 4592e25603e5..31558a0260e9 100644 --- a/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/AssemblyDefinition.java +++ b/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/AssemblyDefinition.java @@ -75,6 +75,9 @@ interface Blank extends WithIntegrationAccount { interface WithIntegrationAccount { /** * Specifies resourceGroupName, integrationAccountName. + * @param resourceGroupName The resource group name + * @param integrationAccountName The integration account name + * @return the next definition stage */ WithProperties withExistingIntegrationAccount(String resourceGroupName, String integrationAccountName); } @@ -85,6 +88,8 @@ interface WithIntegrationAccount { interface WithProperties { /** * Specifies properties. + * @param properties The assembly properties + * @return the next definition stage */ WithCreate withProperties(AssemblyProperties properties); } @@ -95,6 +100,8 @@ interface WithProperties { interface WithLocation { /** * Specifies location. + * @param location The resource location + * @return the next definition stage */ WithCreate withLocation(String location); } @@ -105,6 +112,8 @@ interface WithLocation { interface WithTags { /** * Specifies tags. + * @param tags The resource tags + * @return the next definition stage */ WithCreate withTags(Map tags); } @@ -133,6 +142,8 @@ interface UpdateStages { interface WithLocation { /** * Specifies location. + * @param location The resource location + * @return the next update stage */ Update withLocation(String location); } @@ -143,6 +154,8 @@ interface WithLocation { interface WithTags { /** * Specifies tags. + * @param tags The resource tags + * @return the next update stage */ Update withTags(Map tags); } diff --git a/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/BatchConfiguration.java b/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/BatchConfiguration.java index 7397ca775da7..5180a4642169 100644 --- a/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/BatchConfiguration.java +++ b/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/BatchConfiguration.java @@ -75,6 +75,9 @@ interface Blank extends WithIntegrationAccount { interface WithIntegrationAccount { /** * Specifies resourceGroupName, integrationAccountName. + * @param resourceGroupName The resource group name + * @param integrationAccountName The integration account name + * @return the next definition stage */ WithProperties withExistingIntegrationAccount(String resourceGroupName, String integrationAccountName); } @@ -85,6 +88,8 @@ interface WithIntegrationAccount { interface WithProperties { /** * Specifies properties. + * @param properties The batch configuration properties + * @return the next definition stage */ WithCreate withProperties(BatchConfigurationProperties properties); } @@ -95,6 +100,8 @@ interface WithProperties { interface WithLocation { /** * Specifies location. + * @param location The resource location + * @return the next definition stage */ WithCreate withLocation(String location); } @@ -105,6 +112,8 @@ interface WithLocation { interface WithTags { /** * Specifies tags. + * @param tags The resource tags + * @return the next definition stage */ WithCreate withTags(Map tags); } @@ -133,6 +142,8 @@ interface UpdateStages { interface WithLocation { /** * Specifies location. + * @param location The resource location + * @return the next update stage */ Update withLocation(String location); } @@ -143,6 +154,8 @@ interface WithLocation { interface WithTags { /** * Specifies tags. + * @param tags The resource tags + * @return the next update stage */ Update withTags(Map tags); } diff --git a/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/IntegrationAccount.java b/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/IntegrationAccount.java index f4207b41508f..f55bf28b060d 100644 --- a/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/IntegrationAccount.java +++ b/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/IntegrationAccount.java @@ -57,21 +57,25 @@ interface WithGroup extends GroupableResourceCore.DefinitionStages.WithGroup, Resource.UpdateWithTags< */ interface UpdateStages { /** - * The stage of the integrationaccount {0} allowing to specify Properties. + * The stage of the integrationaccount update allowing to specify Properties. */ interface WithProperties { /** * Specifies properties. + * @param properties The integration account properties + * @return the next update stage */ Update withProperties(Object properties); } /** - * The stage of the integrationaccount {0} allowing to specify Sku. + * The stage of the integrationaccount update allowing to specify Sku. */ interface WithSku { /** * Specifies sku. + * @param sku The sku + * @return the next update stage */ Update withSku(IntegrationAccountSku sku); } diff --git a/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/IntegrationAccountAgreement.java b/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/IntegrationAccountAgreement.java index 25dcb7491223..49dad8d92286 100644 --- a/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/IntegrationAccountAgreement.java +++ b/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/IntegrationAccountAgreement.java @@ -116,6 +116,9 @@ interface Blank extends WithIntegrationAccount { interface WithIntegrationAccount { /** * Specifies resourceGroupName, integrationAccountName. + * @param resourceGroupName The resource group name + * @param integrationAccountName The integration account name + * @return the next definition stage */ WithAgreementType withExistingIntegrationAccount(String resourceGroupName, String integrationAccountName); } @@ -126,6 +129,8 @@ interface WithIntegrationAccount { interface WithAgreementType { /** * Specifies agreementType. + * @param agreementType The agreement type. Possible values include: 'NotSpecified', 'AS2', 'X12', 'Edifact' + * @return the next definition stage */ WithContent withAgreementType(AgreementType agreementType); } @@ -136,6 +141,8 @@ interface WithAgreementType { interface WithContent { /** * Specifies content. + * @param content The agreement content + * @return the next definition stage */ WithGuestIdentity withContent(AgreementContent content); } @@ -146,6 +153,8 @@ interface WithContent { interface WithGuestIdentity { /** * Specifies guestIdentity. + * @param guestIdentity The business identity of the guest partner + * @return the next definition stage */ WithGuestPartner withGuestIdentity(BusinessIdentity guestIdentity); } @@ -156,6 +165,8 @@ interface WithGuestIdentity { interface WithGuestPartner { /** * Specifies guestPartner. + * @param guestPartner The integration account partner that is set as guest partner for this agreement + * @return the next definition stage */ WithHostIdentity withGuestPartner(String guestPartner); } @@ -166,6 +177,8 @@ interface WithGuestPartner { interface WithHostIdentity { /** * Specifies hostIdentity. + * @param hostIdentity The business identity of the host partner + * @return the next definition stage */ WithHostPartner withHostIdentity(BusinessIdentity hostIdentity); } @@ -176,6 +189,8 @@ interface WithHostIdentity { interface WithHostPartner { /** * Specifies hostPartner. + * @param hostPartner The integration account partner that is set as host partner for this agreement + * @return the next definition stage */ WithCreate withHostPartner(String hostPartner); } @@ -186,6 +201,8 @@ interface WithHostPartner { interface WithLocation { /** * Specifies location. + * @param location The resource location + * @return the next definition stage */ WithCreate withLocation(String location); } @@ -196,6 +213,8 @@ interface WithLocation { interface WithMetadata { /** * Specifies metadata. + * @param metadata The metadata + * @return the next definition stage */ WithCreate withMetadata(Object metadata); } @@ -206,6 +225,8 @@ interface WithMetadata { interface WithTags { /** * Specifies tags. + * @param tags The resource tags + * @return the next definition stage */ WithCreate withTags(Map tags); } @@ -234,6 +255,8 @@ interface UpdateStages { interface WithLocation { /** * Specifies location. + * @param location The resource location + * @return the next update stage */ Update withLocation(String location); } @@ -244,6 +267,8 @@ interface WithLocation { interface WithMetadata { /** * Specifies metadata. + * @param metadata The metadata + * @return the next update stage */ Update withMetadata(Object metadata); } @@ -254,6 +279,8 @@ interface WithMetadata { interface WithTags { /** * Specifies tags. + * @param tags The resource tags + * @return the next update stage */ Update withTags(Map tags); } diff --git a/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/IntegrationAccountCertificate.java b/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/IntegrationAccountCertificate.java index 0738ab844428..19e1107b4bc6 100644 --- a/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/IntegrationAccountCertificate.java +++ b/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/IntegrationAccountCertificate.java @@ -96,6 +96,9 @@ interface Blank extends WithIntegrationAccount { interface WithIntegrationAccount { /** * Specifies resourceGroupName, integrationAccountName. + * @param resourceGroupName The resource group name + * @param integrationAccountName The integration account name + * @return the next definition stage */ WithCreate withExistingIntegrationAccount(String resourceGroupName, String integrationAccountName); } @@ -106,6 +109,8 @@ interface WithIntegrationAccount { interface WithKey { /** * Specifies key. + * @param key The key details in the key vault + * @return the next definition stage */ WithCreate withKey(KeyVaultKeyReference key); } @@ -116,6 +121,8 @@ interface WithKey { interface WithLocation { /** * Specifies location. + * @param location The resource location + * @return the next definition stage */ WithCreate withLocation(String location); } @@ -126,6 +133,8 @@ interface WithLocation { interface WithMetadata { /** * Specifies metadata. + * @param metadata The metadata + * @return the next definition stage */ WithCreate withMetadata(Object metadata); } @@ -136,6 +145,8 @@ interface WithMetadata { interface WithPublicCertificate { /** * Specifies publicCertificate. + * @param publicCertificate The public certificate + * @return the next definition stage */ WithCreate withPublicCertificate(String publicCertificate); } @@ -146,6 +157,8 @@ interface WithPublicCertificate { interface WithTags { /** * Specifies tags. + * @param tags The resource tags + * @return the next definition stage */ WithCreate withTags(Map tags); } @@ -174,6 +187,8 @@ interface UpdateStages { interface WithKey { /** * Specifies key. + * @param key The key details in the key vault + * @return the next update stage */ Update withKey(KeyVaultKeyReference key); } @@ -184,6 +199,8 @@ interface WithKey { interface WithLocation { /** * Specifies location. + * @param location The resource location + * @return the next update stage */ Update withLocation(String location); } @@ -194,6 +211,8 @@ interface WithLocation { interface WithMetadata { /** * Specifies metadata. + * @param metadata The metadata + * @return the next update stage */ Update withMetadata(Object metadata); } @@ -204,6 +223,8 @@ interface WithMetadata { interface WithPublicCertificate { /** * Specifies publicCertificate. + * @param publicCertificate The public certificate + * @return the next update stage */ Update withPublicCertificate(String publicCertificate); } @@ -214,6 +235,8 @@ interface WithPublicCertificate { interface WithTags { /** * Specifies tags. + * @param tags The resource tags + * @return the next update stage */ Update withTags(Map tags); } diff --git a/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/IntegrationAccountMap.java b/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/IntegrationAccountMap.java index 2c135a76758b..aa4f74725b11 100644 --- a/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/IntegrationAccountMap.java +++ b/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/IntegrationAccountMap.java @@ -111,6 +111,9 @@ interface Blank extends WithIntegrationAccount { interface WithIntegrationAccount { /** * Specifies resourceGroupName, integrationAccountName. + * @param resourceGroupName The resource group name + * @param integrationAccountName The integration account name + * @return the next definition stage */ WithMapType withExistingIntegrationAccount(String resourceGroupName, String integrationAccountName); } @@ -121,6 +124,8 @@ interface WithIntegrationAccount { interface WithMapType { /** * Specifies mapType. + * @param mapType The map type. Possible values include: 'NotSpecified', 'Xslt' + * @return the next definition stage */ WithCreate withMapType(MapType mapType); } @@ -131,6 +136,8 @@ interface WithMapType { interface WithContent { /** * Specifies content. + * @param content The content + * @return the next definition stage */ WithCreate withContent(String content); } @@ -141,6 +148,8 @@ interface WithContent { interface WithContentType { /** * Specifies contentType. + * @param contentType The content type + * @return the next definition stage */ WithCreate withContentType(String contentType); } @@ -151,6 +160,8 @@ interface WithContentType { interface WithLocation { /** * Specifies location. + * @param location The resource location + * @return the next definition stage */ WithCreate withLocation(String location); } @@ -161,6 +172,8 @@ interface WithLocation { interface WithMetadata { /** * Specifies metadata. + * @param metadata The metadata + * @return the next definition stage */ WithCreate withMetadata(Object metadata); } @@ -171,6 +184,8 @@ interface WithMetadata { interface WithParametersSchema { /** * Specifies parametersSchema. + * @param parametersSchema The parameters schema of integration account map + * @return the next definition stage */ WithCreate withParametersSchema(IntegrationAccountMapPropertiesParametersSchema parametersSchema); } @@ -181,6 +196,8 @@ interface WithParametersSchema { interface WithTags { /** * Specifies tags. + * @param tags The resource tags + * @return the next definition stage */ WithCreate withTags(Map tags); } @@ -209,6 +226,8 @@ interface UpdateStages { interface WithContent { /** * Specifies content. + * @param content The content + * @return the next update stage */ Update withContent(String content); } @@ -219,6 +238,8 @@ interface WithContent { interface WithContentType { /** * Specifies contentType. + * @param contentType The content type + * @return the next update stage */ Update withContentType(String contentType); } @@ -229,6 +250,8 @@ interface WithContentType { interface WithLocation { /** * Specifies location. + * @param location The resource location + * @return the next update stage */ Update withLocation(String location); } @@ -239,6 +262,8 @@ interface WithLocation { interface WithMetadata { /** * Specifies metadata. + * @param metadata The metadata + * @return the next update stage */ Update withMetadata(Object metadata); } @@ -249,6 +274,8 @@ interface WithMetadata { interface WithParametersSchema { /** * Specifies parametersSchema. + * @param parametersSchema The parameters schema of integration account map + * @return the next update stage */ Update withParametersSchema(IntegrationAccountMapPropertiesParametersSchema parametersSchema); } @@ -259,6 +286,8 @@ interface WithParametersSchema { interface WithTags { /** * Specifies tags. + * @param tags The resource tags + * @return the next update stage */ Update withTags(Map tags); } diff --git a/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/IntegrationAccountPartner.java b/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/IntegrationAccountPartner.java index 9561a92c22c1..34b5b9a7b4dd 100644 --- a/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/IntegrationAccountPartner.java +++ b/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/IntegrationAccountPartner.java @@ -96,6 +96,9 @@ interface Blank extends WithIntegrationAccount { interface WithIntegrationAccount { /** * Specifies resourceGroupName, integrationAccountName. + * @param resourceGroupName The resource group name + * @param integrationAccountName The integration account name + * @return the next definition stage */ WithContent withExistingIntegrationAccount(String resourceGroupName, String integrationAccountName); } @@ -106,6 +109,8 @@ interface WithIntegrationAccount { interface WithContent { /** * Specifies content. + * @param content The partner content + * @return the next definition stage */ WithPartnerType withContent(PartnerContent content); } @@ -116,6 +121,8 @@ interface WithContent { interface WithPartnerType { /** * Specifies partnerType. + * @param partnerType The partner type. Possible values include: 'NotSpecified', 'B2B' + * @return the next definition stage */ WithCreate withPartnerType(PartnerType partnerType); } @@ -126,6 +133,8 @@ interface WithPartnerType { interface WithLocation { /** * Specifies location. + * @param location The resource location + * @return the next definition stage */ WithCreate withLocation(String location); } @@ -136,6 +145,8 @@ interface WithLocation { interface WithMetadata { /** * Specifies metadata. + * @param metadata The metadata + * @return the next definition stage */ WithCreate withMetadata(Object metadata); } @@ -146,6 +157,8 @@ interface WithMetadata { interface WithTags { /** * Specifies tags. + * @param tags The resource tags + * @return the next definition stage */ WithCreate withTags(Map tags); } @@ -174,6 +187,8 @@ interface UpdateStages { interface WithLocation { /** * Specifies location. + * @param location The resource location + * @return the next update stage */ Update withLocation(String location); } @@ -184,6 +199,8 @@ interface WithLocation { interface WithMetadata { /** * Specifies metadata. + * @param metadata The metadata + * @return the next update stage */ Update withMetadata(Object metadata); } @@ -194,6 +211,8 @@ interface WithMetadata { interface WithTags { /** * Specifies tags. + * @param tags The resource tags + * @return the next update stage */ Update withTags(Map tags); } diff --git a/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/IntegrationAccountSchema.java b/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/IntegrationAccountSchema.java index 606aa5b89c31..62a73a357cd5 100644 --- a/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/IntegrationAccountSchema.java +++ b/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/IntegrationAccountSchema.java @@ -121,6 +121,9 @@ interface Blank extends WithIntegrationAccount { interface WithIntegrationAccount { /** * Specifies resourceGroupName, integrationAccountName. + * @param resourceGroupName The resource group name + * @param integrationAccountName The integration account name + * @return the next definition stage */ WithSchemaType withExistingIntegrationAccount(String resourceGroupName, String integrationAccountName); } @@ -131,6 +134,8 @@ interface WithIntegrationAccount { interface WithSchemaType { /** * Specifies schemaType. + * @param schemaType The schema type. Possible values include: 'NotSpecified', 'Xml' + * @return the next definition stage */ WithCreate withSchemaType(SchemaType schemaType); } @@ -141,6 +146,8 @@ interface WithSchemaType { interface WithContent { /** * Specifies content. + * @param content The content + * @return the next definition stage */ WithCreate withContent(String content); } @@ -151,6 +158,8 @@ interface WithContent { interface WithContentType { /** * Specifies contentType. + * @param contentType The content type + * @return the next definition stage */ WithCreate withContentType(String contentType); } @@ -161,6 +170,8 @@ interface WithContentType { interface WithDocumentName { /** * Specifies documentName. + * @param documentName The document name + * @return the next definition stage */ WithCreate withDocumentName(String documentName); } @@ -171,6 +182,8 @@ interface WithDocumentName { interface WithFileName { /** * Specifies fileName. + * @param fileName The file name + * @return the next definition stage */ WithCreate withFileName(String fileName); } @@ -181,6 +194,8 @@ interface WithFileName { interface WithLocation { /** * Specifies location. + * @param location The resource location + * @return the next definition stage */ WithCreate withLocation(String location); } @@ -191,6 +206,8 @@ interface WithLocation { interface WithMetadata { /** * Specifies metadata. + * @param metadata The metadata + * @return the next definition stage */ WithCreate withMetadata(Object metadata); } @@ -201,6 +218,8 @@ interface WithMetadata { interface WithTags { /** * Specifies tags. + * @param tags The resource tags + * @return the next definition stage */ WithCreate withTags(Map tags); } @@ -211,6 +230,8 @@ interface WithTags { interface WithTargetNamespace { /** * Specifies targetNamespace. + * @param targetNamespace The target namespace of the schema + * @return the next definition stage */ WithCreate withTargetNamespace(String targetNamespace); } @@ -239,6 +260,8 @@ interface UpdateStages { interface WithContent { /** * Specifies content. + * @param content The content + * @return the next update stage */ Update withContent(String content); } @@ -249,6 +272,8 @@ interface WithContent { interface WithContentType { /** * Specifies contentType. + * @param contentType The content type + * @return the next update stage */ Update withContentType(String contentType); } @@ -259,6 +284,8 @@ interface WithContentType { interface WithDocumentName { /** * Specifies documentName. + * @param documentName The document name + * @return the next update stage */ Update withDocumentName(String documentName); } @@ -269,6 +296,8 @@ interface WithDocumentName { interface WithFileName { /** * Specifies fileName. + * @param fileName The file name + * @return the next update stage */ Update withFileName(String fileName); } @@ -279,6 +308,8 @@ interface WithFileName { interface WithLocation { /** * Specifies location. + * @param location The resource location + * @return the next update stage */ Update withLocation(String location); } @@ -289,6 +320,8 @@ interface WithLocation { interface WithMetadata { /** * Specifies metadata. + * @param metadata The metadata + * @return the next update stage */ Update withMetadata(Object metadata); } @@ -299,6 +332,8 @@ interface WithMetadata { interface WithTags { /** * Specifies tags. + * @param tags The resource tags + * @return the next update stage */ Update withTags(Map tags); } @@ -309,6 +344,8 @@ interface WithTags { interface WithTargetNamespace { /** * Specifies targetNamespace. + * @param targetNamespace The target namespace of the schema + * @return the next update stage */ Update withTargetNamespace(String targetNamespace); } diff --git a/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/IntegrationAccountSession.java b/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/IntegrationAccountSession.java index 1a6ee422b74e..8e26261c2da4 100644 --- a/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/IntegrationAccountSession.java +++ b/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/IntegrationAccountSession.java @@ -86,6 +86,9 @@ interface Blank extends WithIntegrationAccount { interface WithIntegrationAccount { /** * Specifies resourceGroupName, integrationAccountName. + * @param resourceGroupName The resource group name + * @param integrationAccountName The integration account name + * @return the next definition stage */ WithCreate withExistingIntegrationAccount(String resourceGroupName, String integrationAccountName); } @@ -96,6 +99,8 @@ interface WithIntegrationAccount { interface WithContent { /** * Specifies content. + * @param content The session content + * @return the next definition stage */ WithCreate withContent(Object content); } @@ -106,6 +111,8 @@ interface WithContent { interface WithLocation { /** * Specifies location. + * @param location The resource location + * @return the next definition stage */ WithCreate withLocation(String location); } @@ -116,6 +123,8 @@ interface WithLocation { interface WithTags { /** * Specifies tags. + * @param tags The resource tags + * @return the next definition stage */ WithCreate withTags(Map tags); } @@ -144,6 +153,8 @@ interface UpdateStages { interface WithContent { /** * Specifies content. + * @param content The session content + * @return the next update stage */ Update withContent(Object content); } @@ -154,6 +165,8 @@ interface WithContent { interface WithLocation { /** * Specifies location. + * @param location The resource location + * @return the next update stage */ Update withLocation(String location); } @@ -164,6 +177,8 @@ interface WithLocation { interface WithTags { /** * Specifies tags. + * @param tags The resource tags + * @return the next update stage */ Update withTags(Map tags); } diff --git a/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/Workflow.java b/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/Workflow.java index bf77ab6f706f..1babe5207718 100644 --- a/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/Workflow.java +++ b/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/Workflow.java @@ -99,51 +99,61 @@ interface WithGroup extends GroupableResourceCore.DefinitionStages.WithGroup parameters); } /** - * The stage of the workflow update allowing to specify Sku. + * The stage of the workflow definition allowing to specify Sku. */ interface WithSku { /** * Specifies sku. + * @param sku The sku + * @return the next definition stage */ WithCreate withSku(Sku sku); } /** - * The stage of the workflow update allowing to specify State. + * The stage of the workflow definition allowing to specify State. */ interface WithState { /** * Specifies state. + * @param state The state. Possible values include: 'NotSpecified', 'Completed', 'Enabled', 'Disabled', 'Deleted', 'Suspended' + * @return the next definition stage */ WithCreate withState(WorkflowState state); } @@ -167,51 +177,61 @@ interface Update extends Appliable, Resource.UpdateWithTags, U */ interface UpdateStages { /** - * The stage of the workflow {0} allowing to specify Definition. + * The stage of the workflow update allowing to specify Definition. */ interface WithDefinition { /** * Specifies definition. + * @param definition The definition + * @return the next update stage */ Update withDefinition(Object definition); } /** - * The stage of the workflow {0} allowing to specify IntegrationAccount. + * The stage of the workflow update allowing to specify IntegrationAccount. */ interface WithIntegrationAccount { /** * Specifies integrationAccount. + * @param integrationAccount The integration account + * @return the next update stage */ Update withIntegrationAccount(ResourceReference integrationAccount); } /** - * The stage of the workflow {0} allowing to specify Parameters. + * The stage of the workflow update allowing to specify Parameters. */ interface WithParameters { /** * Specifies parameters. + * @param parameters The parameters + * @return the next update stage */ Update withParameters(Map parameters); } /** - * The stage of the workflow {0} allowing to specify Sku. + * The stage of the workflow update allowing to specify Sku. */ interface WithSku { /** * Specifies sku. + * @param sku The sku + * @return the next update stage */ Update withSku(Sku sku); } /** - * The stage of the workflow {0} allowing to specify State. + * The stage of the workflow update allowing to specify State. */ interface WithState { /** * Specifies state. + * @param state The state. Possible values include: 'NotSpecified', 'Completed', 'Enabled', 'Disabled', 'Deleted', 'Suspended' + * @return the next update stage */ Update withState(WorkflowState state); } diff --git a/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/WorkflowTriggers.java b/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/WorkflowTriggers.java index 06d9614520b6..6fa8fe68a833 100644 --- a/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/WorkflowTriggers.java +++ b/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/WorkflowTriggers.java @@ -58,7 +58,7 @@ public interface WorkflowTriggers { * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable for the request */ - Completable runAsync(String resourceGroupName, String workflowName, String triggerName); + Observable runAsync(String resourceGroupName, String workflowName, String triggerName); /** * Sets the state of a workflow trigger. diff --git a/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/Workflows.java b/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/Workflows.java index 1c0cf8dfb6cc..6e27a9d1df41 100644 --- a/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/Workflows.java +++ b/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/Workflows.java @@ -52,7 +52,7 @@ public interface Workflows extends SupportsCreating generateUpgradedDefinitionAsync(String resourceGroupName, String workflowName); /** * Get the workflow callback Url. @@ -73,7 +73,7 @@ public interface Workflows extends SupportsCreating listSwaggerAsync(String resourceGroupName, String workflowName); /** * Moves an existing workflow. diff --git a/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/implementation/ActionRunWorkflowRequestHistoryImpl.java b/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/implementation/ActionRunWorkflowRequestHistoryImpl.java index dbbfbdb2272b..cbe3652b148a 100644 --- a/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/implementation/ActionRunWorkflowRequestHistoryImpl.java +++ b/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/implementation/ActionRunWorkflowRequestHistoryImpl.java @@ -25,6 +25,7 @@ class ActionRunWorkflowRequestHistoryImpl extends IndexableRefreshableWrapperImp ActionRunWorkflowRequestHistoryImpl(RequestHistoryInner inner, LogicManager manager) { super(null, inner); this.manager = manager; + // set resource ancestor and positional variables this.resourceGroupName = IdParsingUtils.getValueFromIdByName(inner.id(), "resourceGroups"); this.workflowName = IdParsingUtils.getValueFromIdByName(inner.id(), "workflows"); this.runName = IdParsingUtils.getValueFromIdByName(inner.id(), "runs"); diff --git a/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/implementation/ActionRunWorkflowWorkflowRunActionRepetitionDefinitionImpl.java b/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/implementation/ActionRunWorkflowWorkflowRunActionRepetitionDefinitionImpl.java index 7a31861669e4..836b2d272ce1 100644 --- a/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/implementation/ActionRunWorkflowWorkflowRunActionRepetitionDefinitionImpl.java +++ b/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/implementation/ActionRunWorkflowWorkflowRunActionRepetitionDefinitionImpl.java @@ -31,6 +31,7 @@ class ActionRunWorkflowWorkflowRunActionRepetitionDefinitionImpl extends Indexab ActionRunWorkflowWorkflowRunActionRepetitionDefinitionImpl(WorkflowRunActionRepetitionDefinitionInner inner, LogicManager manager) { super(null, inner); this.manager = manager; + // set resource ancestor and positional variables this.resourceGroupName = IdParsingUtils.getValueFromIdByName(inner.id(), "resourceGroups"); this.workflowName = IdParsingUtils.getValueFromIdByName(inner.id(), "workflows"); this.runName = IdParsingUtils.getValueFromIdByName(inner.id(), "runs"); diff --git a/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/implementation/ActionRunWorkflowWorkflowRunActionRepetitionDefinitionModelImpl.java b/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/implementation/ActionRunWorkflowWorkflowRunActionRepetitionDefinitionModelImpl.java index 429bb03e6872..6b0bbda5e63f 100644 --- a/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/implementation/ActionRunWorkflowWorkflowRunActionRepetitionDefinitionModelImpl.java +++ b/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/implementation/ActionRunWorkflowWorkflowRunActionRepetitionDefinitionModelImpl.java @@ -31,6 +31,7 @@ class ActionRunWorkflowWorkflowRunActionRepetitionDefinitionModelImpl extends In ActionRunWorkflowWorkflowRunActionRepetitionDefinitionModelImpl(WorkflowRunActionRepetitionDefinitionInner inner, LogicManager manager) { super(null, inner); this.manager = manager; + // set resource ancestor and positional variables this.resourceGroupName = IdParsingUtils.getValueFromIdByName(inner.id(), "resourceGroups"); this.workflowName = IdParsingUtils.getValueFromIdByName(inner.id(), "workflows"); this.runName = IdParsingUtils.getValueFromIdByName(inner.id(), "runs"); diff --git a/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/implementation/AssemblyDefinitionImpl.java b/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/implementation/AssemblyDefinitionImpl.java index 7f0d1d8c106e..2795b6947f3c 100644 --- a/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/implementation/AssemblyDefinitionImpl.java +++ b/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/implementation/AssemblyDefinitionImpl.java @@ -33,7 +33,7 @@ class AssemblyDefinitionImpl extends CreatableUpdatableImpl runAsync(String resourceGroupName, String workflowName, String triggerName) { WorkflowTriggersInner client = this.inner(); - return client.runAsync(resourceGroupName, workflowName, triggerName).toCompletable(); - } + return client.runAsync(resourceGroupName, workflowName, triggerName) + ;} @Override public Completable setStateAsync(String resourceGroupName, String workflowName, String triggerName, WorkflowTriggerInner source) { diff --git a/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/implementation/WorkflowVersionImpl.java b/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/implementation/WorkflowVersionImpl.java index 6b5c77362efc..2909bdc1b03a 100644 --- a/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/implementation/WorkflowVersionImpl.java +++ b/logic/resource-manager/v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/implementation/WorkflowVersionImpl.java @@ -27,6 +27,7 @@ class WorkflowVersionImpl extends IndexableRefreshableWrapperImpl generateUpgradedDefinitionAsync(String resourceGroupName, String workflowName) { WorkflowsInner client = this.inner(); - return client.generateUpgradedDefinitionAsync(resourceGroupName, workflowName).toCompletable(); - } + return client.generateUpgradedDefinitionAsync(resourceGroupName, workflowName) + ;} @Override public Observable listCallbackUrlAsync(String resourceGroupName, String workflowName, GetCallbackUrlParameters listCallbackUrl) { @@ -158,10 +158,10 @@ public WorkflowTriggerCallbackUrl call(WorkflowTriggerCallbackUrlInner inner) { } @Override - public Completable listSwaggerAsync(String resourceGroupName, String workflowName) { + public Observable listSwaggerAsync(String resourceGroupName, String workflowName) { WorkflowsInner client = this.inner(); - return client.listSwaggerAsync(resourceGroupName, workflowName).toCompletable(); - } + return client.listSwaggerAsync(resourceGroupName, workflowName) + ;} @Override public Completable moveAsync(String resourceGroupName, String workflowName, WorkflowInner move) { diff --git a/logic/resource-manager/v2018_07_01_preview/pom.xml b/logic/resource-manager/v2018_07_01_preview/pom.xml index 95908fe29b79..cade8bbbb9cb 100644 --- a/logic/resource-manager/v2018_07_01_preview/pom.xml +++ b/logic/resource-manager/v2018_07_01_preview/pom.xml @@ -19,7 +19,7 @@ jar Microsoft Azure SDK for Logic Management This package contains Microsoft Logic Management SDK. - https://github.com/Azure/azure-libraries-for-java + https://github.com/Azure/azure-sdk-for-java The MIT License (MIT) @@ -28,8 +28,8 @@ - scm:git:https://github.com/Azure/azure-libraries-for-java - scm:git:git@github.com:Azure/azure-libraries-for-java.git + scm:git:https://github.com/Azure/azure-sdk-for-java + scm:git:git@github.com:Azure/azure-sdk-for-java.git HEAD diff --git a/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/AssemblyDefinition.java b/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/AssemblyDefinition.java index 673bf3fe9380..c0cd26940300 100644 --- a/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/AssemblyDefinition.java +++ b/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/AssemblyDefinition.java @@ -75,6 +75,9 @@ interface Blank extends WithIntegrationAccount { interface WithIntegrationAccount { /** * Specifies resourceGroupName, integrationAccountName. + * @param resourceGroupName The resource group name + * @param integrationAccountName The integration account name + * @return the next definition stage */ WithProperties withExistingIntegrationAccount(String resourceGroupName, String integrationAccountName); } @@ -85,6 +88,8 @@ interface WithIntegrationAccount { interface WithProperties { /** * Specifies properties. + * @param properties The assembly properties + * @return the next definition stage */ WithCreate withProperties(AssemblyProperties properties); } @@ -95,6 +100,8 @@ interface WithProperties { interface WithLocation { /** * Specifies location. + * @param location The resource location + * @return the next definition stage */ WithCreate withLocation(String location); } @@ -105,6 +112,8 @@ interface WithLocation { interface WithTags { /** * Specifies tags. + * @param tags The resource tags + * @return the next definition stage */ WithCreate withTags(Map tags); } @@ -133,6 +142,8 @@ interface UpdateStages { interface WithLocation { /** * Specifies location. + * @param location The resource location + * @return the next update stage */ Update withLocation(String location); } @@ -143,6 +154,8 @@ interface WithLocation { interface WithTags { /** * Specifies tags. + * @param tags The resource tags + * @return the next update stage */ Update withTags(Map tags); } diff --git a/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/BatchConfiguration.java b/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/BatchConfiguration.java index 56be4053b6d1..58e6eff870a1 100644 --- a/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/BatchConfiguration.java +++ b/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/BatchConfiguration.java @@ -75,6 +75,9 @@ interface Blank extends WithIntegrationAccount { interface WithIntegrationAccount { /** * Specifies resourceGroupName, integrationAccountName. + * @param resourceGroupName The resource group name + * @param integrationAccountName The integration account name + * @return the next definition stage */ WithProperties withExistingIntegrationAccount(String resourceGroupName, String integrationAccountName); } @@ -85,6 +88,8 @@ interface WithIntegrationAccount { interface WithProperties { /** * Specifies properties. + * @param properties The batch configuration properties + * @return the next definition stage */ WithCreate withProperties(BatchConfigurationProperties properties); } @@ -95,6 +100,8 @@ interface WithProperties { interface WithLocation { /** * Specifies location. + * @param location The resource location + * @return the next definition stage */ WithCreate withLocation(String location); } @@ -105,6 +112,8 @@ interface WithLocation { interface WithTags { /** * Specifies tags. + * @param tags The resource tags + * @return the next definition stage */ WithCreate withTags(Map tags); } @@ -133,6 +142,8 @@ interface UpdateStages { interface WithLocation { /** * Specifies location. + * @param location The resource location + * @return the next update stage */ Update withLocation(String location); } @@ -143,6 +154,8 @@ interface WithLocation { interface WithTags { /** * Specifies tags. + * @param tags The resource tags + * @return the next update stage */ Update withTags(Map tags); } diff --git a/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/IntegrationAccount.java b/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/IntegrationAccount.java index caa853a699bf..d608b112a0ef 100644 --- a/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/IntegrationAccount.java +++ b/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/IntegrationAccount.java @@ -57,21 +57,25 @@ interface WithGroup extends GroupableResourceCore.DefinitionStages.WithGroup, Resource.UpdateWithTags< */ interface UpdateStages { /** - * The stage of the integrationaccount {0} allowing to specify Properties. + * The stage of the integrationaccount update allowing to specify Properties. */ interface WithProperties { /** * Specifies properties. + * @param properties The integration account properties + * @return the next update stage */ Update withProperties(Object properties); } /** - * The stage of the integrationaccount {0} allowing to specify Sku. + * The stage of the integrationaccount update allowing to specify Sku. */ interface WithSku { /** * Specifies sku. + * @param sku The sku + * @return the next update stage */ Update withSku(IntegrationAccountSku sku); } diff --git a/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/IntegrationAccountAgreement.java b/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/IntegrationAccountAgreement.java index 07eabd40ee84..61584da1fecf 100644 --- a/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/IntegrationAccountAgreement.java +++ b/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/IntegrationAccountAgreement.java @@ -116,6 +116,9 @@ interface Blank extends WithIntegrationAccount { interface WithIntegrationAccount { /** * Specifies resourceGroupName, integrationAccountName. + * @param resourceGroupName The resource group name + * @param integrationAccountName The integration account name + * @return the next definition stage */ WithAgreementType withExistingIntegrationAccount(String resourceGroupName, String integrationAccountName); } @@ -126,6 +129,8 @@ interface WithIntegrationAccount { interface WithAgreementType { /** * Specifies agreementType. + * @param agreementType The agreement type. Possible values include: 'NotSpecified', 'AS2', 'X12', 'Edifact' + * @return the next definition stage */ WithContent withAgreementType(AgreementType agreementType); } @@ -136,6 +141,8 @@ interface WithAgreementType { interface WithContent { /** * Specifies content. + * @param content The agreement content + * @return the next definition stage */ WithGuestIdentity withContent(AgreementContent content); } @@ -146,6 +153,8 @@ interface WithContent { interface WithGuestIdentity { /** * Specifies guestIdentity. + * @param guestIdentity The business identity of the guest partner + * @return the next definition stage */ WithGuestPartner withGuestIdentity(BusinessIdentity guestIdentity); } @@ -156,6 +165,8 @@ interface WithGuestIdentity { interface WithGuestPartner { /** * Specifies guestPartner. + * @param guestPartner The integration account partner that is set as guest partner for this agreement + * @return the next definition stage */ WithHostIdentity withGuestPartner(String guestPartner); } @@ -166,6 +177,8 @@ interface WithGuestPartner { interface WithHostIdentity { /** * Specifies hostIdentity. + * @param hostIdentity The business identity of the host partner + * @return the next definition stage */ WithHostPartner withHostIdentity(BusinessIdentity hostIdentity); } @@ -176,6 +189,8 @@ interface WithHostIdentity { interface WithHostPartner { /** * Specifies hostPartner. + * @param hostPartner The integration account partner that is set as host partner for this agreement + * @return the next definition stage */ WithCreate withHostPartner(String hostPartner); } @@ -186,6 +201,8 @@ interface WithHostPartner { interface WithLocation { /** * Specifies location. + * @param location The resource location + * @return the next definition stage */ WithCreate withLocation(String location); } @@ -196,6 +213,8 @@ interface WithLocation { interface WithMetadata { /** * Specifies metadata. + * @param metadata The metadata + * @return the next definition stage */ WithCreate withMetadata(Object metadata); } @@ -206,6 +225,8 @@ interface WithMetadata { interface WithTags { /** * Specifies tags. + * @param tags The resource tags + * @return the next definition stage */ WithCreate withTags(Map tags); } @@ -234,6 +255,8 @@ interface UpdateStages { interface WithLocation { /** * Specifies location. + * @param location The resource location + * @return the next update stage */ Update withLocation(String location); } @@ -244,6 +267,8 @@ interface WithLocation { interface WithMetadata { /** * Specifies metadata. + * @param metadata The metadata + * @return the next update stage */ Update withMetadata(Object metadata); } @@ -254,6 +279,8 @@ interface WithMetadata { interface WithTags { /** * Specifies tags. + * @param tags The resource tags + * @return the next update stage */ Update withTags(Map tags); } diff --git a/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/IntegrationAccountCertificate.java b/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/IntegrationAccountCertificate.java index 879b5fc16076..0f01189fc384 100644 --- a/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/IntegrationAccountCertificate.java +++ b/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/IntegrationAccountCertificate.java @@ -96,6 +96,9 @@ interface Blank extends WithIntegrationAccount { interface WithIntegrationAccount { /** * Specifies resourceGroupName, integrationAccountName. + * @param resourceGroupName The resource group name + * @param integrationAccountName The integration account name + * @return the next definition stage */ WithCreate withExistingIntegrationAccount(String resourceGroupName, String integrationAccountName); } @@ -106,6 +109,8 @@ interface WithIntegrationAccount { interface WithKey { /** * Specifies key. + * @param key The key details in the key vault + * @return the next definition stage */ WithCreate withKey(KeyVaultKeyReference key); } @@ -116,6 +121,8 @@ interface WithKey { interface WithLocation { /** * Specifies location. + * @param location The resource location + * @return the next definition stage */ WithCreate withLocation(String location); } @@ -126,6 +133,8 @@ interface WithLocation { interface WithMetadata { /** * Specifies metadata. + * @param metadata The metadata + * @return the next definition stage */ WithCreate withMetadata(Object metadata); } @@ -136,6 +145,8 @@ interface WithMetadata { interface WithPublicCertificate { /** * Specifies publicCertificate. + * @param publicCertificate The public certificate + * @return the next definition stage */ WithCreate withPublicCertificate(String publicCertificate); } @@ -146,6 +157,8 @@ interface WithPublicCertificate { interface WithTags { /** * Specifies tags. + * @param tags The resource tags + * @return the next definition stage */ WithCreate withTags(Map tags); } @@ -174,6 +187,8 @@ interface UpdateStages { interface WithKey { /** * Specifies key. + * @param key The key details in the key vault + * @return the next update stage */ Update withKey(KeyVaultKeyReference key); } @@ -184,6 +199,8 @@ interface WithKey { interface WithLocation { /** * Specifies location. + * @param location The resource location + * @return the next update stage */ Update withLocation(String location); } @@ -194,6 +211,8 @@ interface WithLocation { interface WithMetadata { /** * Specifies metadata. + * @param metadata The metadata + * @return the next update stage */ Update withMetadata(Object metadata); } @@ -204,6 +223,8 @@ interface WithMetadata { interface WithPublicCertificate { /** * Specifies publicCertificate. + * @param publicCertificate The public certificate + * @return the next update stage */ Update withPublicCertificate(String publicCertificate); } @@ -214,6 +235,8 @@ interface WithPublicCertificate { interface WithTags { /** * Specifies tags. + * @param tags The resource tags + * @return the next update stage */ Update withTags(Map tags); } diff --git a/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/IntegrationAccountMap.java b/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/IntegrationAccountMap.java index 3e87b11ade56..6163d4fcc08b 100644 --- a/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/IntegrationAccountMap.java +++ b/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/IntegrationAccountMap.java @@ -111,6 +111,9 @@ interface Blank extends WithIntegrationAccount { interface WithIntegrationAccount { /** * Specifies resourceGroupName, integrationAccountName. + * @param resourceGroupName The resource group name + * @param integrationAccountName The integration account name + * @return the next definition stage */ WithMapType withExistingIntegrationAccount(String resourceGroupName, String integrationAccountName); } @@ -121,6 +124,8 @@ interface WithIntegrationAccount { interface WithMapType { /** * Specifies mapType. + * @param mapType The map type. Possible values include: 'NotSpecified', 'Xslt', 'Xslt20', 'Xslt30', 'Liquid' + * @return the next definition stage */ WithCreate withMapType(MapType mapType); } @@ -131,6 +136,8 @@ interface WithMapType { interface WithContent { /** * Specifies content. + * @param content The content + * @return the next definition stage */ WithCreate withContent(String content); } @@ -141,6 +148,8 @@ interface WithContent { interface WithContentType { /** * Specifies contentType. + * @param contentType The content type + * @return the next definition stage */ WithCreate withContentType(String contentType); } @@ -151,6 +160,8 @@ interface WithContentType { interface WithLocation { /** * Specifies location. + * @param location The resource location + * @return the next definition stage */ WithCreate withLocation(String location); } @@ -161,6 +172,8 @@ interface WithLocation { interface WithMetadata { /** * Specifies metadata. + * @param metadata The metadata + * @return the next definition stage */ WithCreate withMetadata(Object metadata); } @@ -171,6 +184,8 @@ interface WithMetadata { interface WithParametersSchema { /** * Specifies parametersSchema. + * @param parametersSchema The parameters schema of integration account map + * @return the next definition stage */ WithCreate withParametersSchema(IntegrationAccountMapPropertiesParametersSchema parametersSchema); } @@ -181,6 +196,8 @@ interface WithParametersSchema { interface WithTags { /** * Specifies tags. + * @param tags The resource tags + * @return the next definition stage */ WithCreate withTags(Map tags); } @@ -209,6 +226,8 @@ interface UpdateStages { interface WithContent { /** * Specifies content. + * @param content The content + * @return the next update stage */ Update withContent(String content); } @@ -219,6 +238,8 @@ interface WithContent { interface WithContentType { /** * Specifies contentType. + * @param contentType The content type + * @return the next update stage */ Update withContentType(String contentType); } @@ -229,6 +250,8 @@ interface WithContentType { interface WithLocation { /** * Specifies location. + * @param location The resource location + * @return the next update stage */ Update withLocation(String location); } @@ -239,6 +262,8 @@ interface WithLocation { interface WithMetadata { /** * Specifies metadata. + * @param metadata The metadata + * @return the next update stage */ Update withMetadata(Object metadata); } @@ -249,6 +274,8 @@ interface WithMetadata { interface WithParametersSchema { /** * Specifies parametersSchema. + * @param parametersSchema The parameters schema of integration account map + * @return the next update stage */ Update withParametersSchema(IntegrationAccountMapPropertiesParametersSchema parametersSchema); } @@ -259,6 +286,8 @@ interface WithParametersSchema { interface WithTags { /** * Specifies tags. + * @param tags The resource tags + * @return the next update stage */ Update withTags(Map tags); } diff --git a/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/IntegrationAccountPartner.java b/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/IntegrationAccountPartner.java index 4bbbf0c1d7bc..5f7a7ca1e7da 100644 --- a/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/IntegrationAccountPartner.java +++ b/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/IntegrationAccountPartner.java @@ -96,6 +96,9 @@ interface Blank extends WithIntegrationAccount { interface WithIntegrationAccount { /** * Specifies resourceGroupName, integrationAccountName. + * @param resourceGroupName The resource group name + * @param integrationAccountName The integration account name + * @return the next definition stage */ WithContent withExistingIntegrationAccount(String resourceGroupName, String integrationAccountName); } @@ -106,6 +109,8 @@ interface WithIntegrationAccount { interface WithContent { /** * Specifies content. + * @param content The partner content + * @return the next definition stage */ WithPartnerType withContent(PartnerContent content); } @@ -116,6 +121,8 @@ interface WithContent { interface WithPartnerType { /** * Specifies partnerType. + * @param partnerType The partner type. Possible values include: 'NotSpecified', 'B2B' + * @return the next definition stage */ WithCreate withPartnerType(PartnerType partnerType); } @@ -126,6 +133,8 @@ interface WithPartnerType { interface WithLocation { /** * Specifies location. + * @param location The resource location + * @return the next definition stage */ WithCreate withLocation(String location); } @@ -136,6 +145,8 @@ interface WithLocation { interface WithMetadata { /** * Specifies metadata. + * @param metadata The metadata + * @return the next definition stage */ WithCreate withMetadata(Object metadata); } @@ -146,6 +157,8 @@ interface WithMetadata { interface WithTags { /** * Specifies tags. + * @param tags The resource tags + * @return the next definition stage */ WithCreate withTags(Map tags); } @@ -174,6 +187,8 @@ interface UpdateStages { interface WithLocation { /** * Specifies location. + * @param location The resource location + * @return the next update stage */ Update withLocation(String location); } @@ -184,6 +199,8 @@ interface WithLocation { interface WithMetadata { /** * Specifies metadata. + * @param metadata The metadata + * @return the next update stage */ Update withMetadata(Object metadata); } @@ -194,6 +211,8 @@ interface WithMetadata { interface WithTags { /** * Specifies tags. + * @param tags The resource tags + * @return the next update stage */ Update withTags(Map tags); } diff --git a/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/IntegrationAccountSchema.java b/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/IntegrationAccountSchema.java index ebb0d1e40725..ba35762d264d 100644 --- a/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/IntegrationAccountSchema.java +++ b/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/IntegrationAccountSchema.java @@ -121,6 +121,9 @@ interface Blank extends WithIntegrationAccount { interface WithIntegrationAccount { /** * Specifies resourceGroupName, integrationAccountName. + * @param resourceGroupName The resource group name + * @param integrationAccountName The integration account name + * @return the next definition stage */ WithSchemaType withExistingIntegrationAccount(String resourceGroupName, String integrationAccountName); } @@ -131,6 +134,8 @@ interface WithIntegrationAccount { interface WithSchemaType { /** * Specifies schemaType. + * @param schemaType The schema type. Possible values include: 'NotSpecified', 'Xml' + * @return the next definition stage */ WithCreate withSchemaType(SchemaType schemaType); } @@ -141,6 +146,8 @@ interface WithSchemaType { interface WithContent { /** * Specifies content. + * @param content The content + * @return the next definition stage */ WithCreate withContent(String content); } @@ -151,6 +158,8 @@ interface WithContent { interface WithContentType { /** * Specifies contentType. + * @param contentType The content type + * @return the next definition stage */ WithCreate withContentType(String contentType); } @@ -161,6 +170,8 @@ interface WithContentType { interface WithDocumentName { /** * Specifies documentName. + * @param documentName The document name + * @return the next definition stage */ WithCreate withDocumentName(String documentName); } @@ -171,6 +182,8 @@ interface WithDocumentName { interface WithFileName { /** * Specifies fileName. + * @param fileName The file name + * @return the next definition stage */ WithCreate withFileName(String fileName); } @@ -181,6 +194,8 @@ interface WithFileName { interface WithLocation { /** * Specifies location. + * @param location The resource location + * @return the next definition stage */ WithCreate withLocation(String location); } @@ -191,6 +206,8 @@ interface WithLocation { interface WithMetadata { /** * Specifies metadata. + * @param metadata The metadata + * @return the next definition stage */ WithCreate withMetadata(Object metadata); } @@ -201,6 +218,8 @@ interface WithMetadata { interface WithTags { /** * Specifies tags. + * @param tags The resource tags + * @return the next definition stage */ WithCreate withTags(Map tags); } @@ -211,6 +230,8 @@ interface WithTags { interface WithTargetNamespace { /** * Specifies targetNamespace. + * @param targetNamespace The target namespace of the schema + * @return the next definition stage */ WithCreate withTargetNamespace(String targetNamespace); } @@ -239,6 +260,8 @@ interface UpdateStages { interface WithContent { /** * Specifies content. + * @param content The content + * @return the next update stage */ Update withContent(String content); } @@ -249,6 +272,8 @@ interface WithContent { interface WithContentType { /** * Specifies contentType. + * @param contentType The content type + * @return the next update stage */ Update withContentType(String contentType); } @@ -259,6 +284,8 @@ interface WithContentType { interface WithDocumentName { /** * Specifies documentName. + * @param documentName The document name + * @return the next update stage */ Update withDocumentName(String documentName); } @@ -269,6 +296,8 @@ interface WithDocumentName { interface WithFileName { /** * Specifies fileName. + * @param fileName The file name + * @return the next update stage */ Update withFileName(String fileName); } @@ -279,6 +308,8 @@ interface WithFileName { interface WithLocation { /** * Specifies location. + * @param location The resource location + * @return the next update stage */ Update withLocation(String location); } @@ -289,6 +320,8 @@ interface WithLocation { interface WithMetadata { /** * Specifies metadata. + * @param metadata The metadata + * @return the next update stage */ Update withMetadata(Object metadata); } @@ -299,6 +332,8 @@ interface WithMetadata { interface WithTags { /** * Specifies tags. + * @param tags The resource tags + * @return the next update stage */ Update withTags(Map tags); } @@ -309,6 +344,8 @@ interface WithTags { interface WithTargetNamespace { /** * Specifies targetNamespace. + * @param targetNamespace The target namespace of the schema + * @return the next update stage */ Update withTargetNamespace(String targetNamespace); } diff --git a/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/IntegrationAccountSession.java b/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/IntegrationAccountSession.java index b1af01522f34..aa5b92a42c76 100644 --- a/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/IntegrationAccountSession.java +++ b/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/IntegrationAccountSession.java @@ -86,6 +86,9 @@ interface Blank extends WithIntegrationAccount { interface WithIntegrationAccount { /** * Specifies resourceGroupName, integrationAccountName. + * @param resourceGroupName The resource group name + * @param integrationAccountName The integration account name + * @return the next definition stage */ WithCreate withExistingIntegrationAccount(String resourceGroupName, String integrationAccountName); } @@ -96,6 +99,8 @@ interface WithIntegrationAccount { interface WithContent { /** * Specifies content. + * @param content The session content + * @return the next definition stage */ WithCreate withContent(Object content); } @@ -106,6 +111,8 @@ interface WithContent { interface WithLocation { /** * Specifies location. + * @param location The resource location + * @return the next definition stage */ WithCreate withLocation(String location); } @@ -116,6 +123,8 @@ interface WithLocation { interface WithTags { /** * Specifies tags. + * @param tags The resource tags + * @return the next definition stage */ WithCreate withTags(Map tags); } @@ -144,6 +153,8 @@ interface UpdateStages { interface WithContent { /** * Specifies content. + * @param content The session content + * @return the next update stage */ Update withContent(Object content); } @@ -154,6 +165,8 @@ interface WithContent { interface WithLocation { /** * Specifies location. + * @param location The resource location + * @return the next update stage */ Update withLocation(String location); } @@ -164,6 +177,8 @@ interface WithLocation { interface WithTags { /** * Specifies tags. + * @param tags The resource tags + * @return the next update stage */ Update withTags(Map tags); } diff --git a/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/Workflow.java b/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/Workflow.java index e090ede51823..c8118d963ddd 100644 --- a/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/Workflow.java +++ b/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/Workflow.java @@ -99,51 +99,61 @@ interface WithGroup extends GroupableResourceCore.DefinitionStages.WithGroup parameters); } /** - * The stage of the workflow update allowing to specify Sku. + * The stage of the workflow definition allowing to specify Sku. */ interface WithSku { /** * Specifies sku. + * @param sku The sku + * @return the next definition stage */ WithCreate withSku(Sku sku); } /** - * The stage of the workflow update allowing to specify State. + * The stage of the workflow definition allowing to specify State. */ interface WithState { /** * Specifies state. + * @param state The state. Possible values include: 'NotSpecified', 'Completed', 'Enabled', 'Disabled', 'Deleted', 'Suspended' + * @return the next definition stage */ WithCreate withState(WorkflowState state); } @@ -167,51 +177,61 @@ interface Update extends Appliable, Resource.UpdateWithTags, U */ interface UpdateStages { /** - * The stage of the workflow {0} allowing to specify Definition. + * The stage of the workflow update allowing to specify Definition. */ interface WithDefinition { /** * Specifies definition. + * @param definition The definition + * @return the next update stage */ Update withDefinition(Object definition); } /** - * The stage of the workflow {0} allowing to specify IntegrationAccount. + * The stage of the workflow update allowing to specify IntegrationAccount. */ interface WithIntegrationAccount { /** * Specifies integrationAccount. + * @param integrationAccount The integration account + * @return the next update stage */ Update withIntegrationAccount(ResourceReference integrationAccount); } /** - * The stage of the workflow {0} allowing to specify Parameters. + * The stage of the workflow update allowing to specify Parameters. */ interface WithParameters { /** * Specifies parameters. + * @param parameters The parameters + * @return the next update stage */ Update withParameters(Map parameters); } /** - * The stage of the workflow {0} allowing to specify Sku. + * The stage of the workflow update allowing to specify Sku. */ interface WithSku { /** * Specifies sku. + * @param sku The sku + * @return the next update stage */ Update withSku(Sku sku); } /** - * The stage of the workflow {0} allowing to specify State. + * The stage of the workflow update allowing to specify State. */ interface WithState { /** * Specifies state. + * @param state The state. Possible values include: 'NotSpecified', 'Completed', 'Enabled', 'Disabled', 'Deleted', 'Suspended' + * @return the next update stage */ Update withState(WorkflowState state); } diff --git a/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/WorkflowTriggers.java b/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/WorkflowTriggers.java index a0836ae5a4d7..8da2e5995902 100644 --- a/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/WorkflowTriggers.java +++ b/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/WorkflowTriggers.java @@ -58,7 +58,7 @@ public interface WorkflowTriggers { * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable for the request */ - Completable runAsync(String resourceGroupName, String workflowName, String triggerName); + Observable runAsync(String resourceGroupName, String workflowName, String triggerName); /** * Sets the state of a workflow trigger. diff --git a/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/Workflows.java b/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/Workflows.java index a1e8d6b74c5f..a56b3143d156 100644 --- a/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/Workflows.java +++ b/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/Workflows.java @@ -52,7 +52,7 @@ public interface Workflows extends SupportsCreating generateUpgradedDefinitionAsync(String resourceGroupName, String workflowName); /** * Get the workflow callback Url. @@ -73,7 +73,7 @@ public interface Workflows extends SupportsCreating listSwaggerAsync(String resourceGroupName, String workflowName); /** * Moves an existing workflow. diff --git a/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/implementation/ActionRunWorkflowRequestHistoryImpl.java b/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/implementation/ActionRunWorkflowRequestHistoryImpl.java index 3e92db0131c6..f075afb11dc5 100644 --- a/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/implementation/ActionRunWorkflowRequestHistoryImpl.java +++ b/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/implementation/ActionRunWorkflowRequestHistoryImpl.java @@ -25,6 +25,7 @@ class ActionRunWorkflowRequestHistoryImpl extends IndexableRefreshableWrapperImp ActionRunWorkflowRequestHistoryImpl(RequestHistoryInner inner, LogicManager manager) { super(null, inner); this.manager = manager; + // set resource ancestor and positional variables this.resourceGroupName = IdParsingUtils.getValueFromIdByName(inner.id(), "resourceGroups"); this.workflowName = IdParsingUtils.getValueFromIdByName(inner.id(), "workflows"); this.runName = IdParsingUtils.getValueFromIdByName(inner.id(), "runs"); diff --git a/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/implementation/ActionRunWorkflowWorkflowRunActionRepetitionDefinitionImpl.java b/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/implementation/ActionRunWorkflowWorkflowRunActionRepetitionDefinitionImpl.java index 95ad289cd63f..0c71f1b44bed 100644 --- a/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/implementation/ActionRunWorkflowWorkflowRunActionRepetitionDefinitionImpl.java +++ b/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/implementation/ActionRunWorkflowWorkflowRunActionRepetitionDefinitionImpl.java @@ -31,6 +31,7 @@ class ActionRunWorkflowWorkflowRunActionRepetitionDefinitionImpl extends Indexab ActionRunWorkflowWorkflowRunActionRepetitionDefinitionImpl(WorkflowRunActionRepetitionDefinitionInner inner, LogicManager manager) { super(null, inner); this.manager = manager; + // set resource ancestor and positional variables this.resourceGroupName = IdParsingUtils.getValueFromIdByName(inner.id(), "resourceGroups"); this.workflowName = IdParsingUtils.getValueFromIdByName(inner.id(), "workflows"); this.runName = IdParsingUtils.getValueFromIdByName(inner.id(), "runs"); diff --git a/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/implementation/ActionRunWorkflowWorkflowRunActionRepetitionDefinitionModelImpl.java b/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/implementation/ActionRunWorkflowWorkflowRunActionRepetitionDefinitionModelImpl.java index a5c1360f3833..0806d8474dbb 100644 --- a/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/implementation/ActionRunWorkflowWorkflowRunActionRepetitionDefinitionModelImpl.java +++ b/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/implementation/ActionRunWorkflowWorkflowRunActionRepetitionDefinitionModelImpl.java @@ -31,6 +31,7 @@ class ActionRunWorkflowWorkflowRunActionRepetitionDefinitionModelImpl extends In ActionRunWorkflowWorkflowRunActionRepetitionDefinitionModelImpl(WorkflowRunActionRepetitionDefinitionInner inner, LogicManager manager) { super(null, inner); this.manager = manager; + // set resource ancestor and positional variables this.resourceGroupName = IdParsingUtils.getValueFromIdByName(inner.id(), "resourceGroups"); this.workflowName = IdParsingUtils.getValueFromIdByName(inner.id(), "workflows"); this.runName = IdParsingUtils.getValueFromIdByName(inner.id(), "runs"); diff --git a/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/implementation/AssemblyDefinitionImpl.java b/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/implementation/AssemblyDefinitionImpl.java index f1a46a1f9420..550b140931bf 100644 --- a/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/implementation/AssemblyDefinitionImpl.java +++ b/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/implementation/AssemblyDefinitionImpl.java @@ -33,7 +33,7 @@ class AssemblyDefinitionImpl extends CreatableUpdatableImpl runAsync(String resourceGroupName, String workflowName, String triggerName) { WorkflowTriggersInner client = this.inner(); - return client.runAsync(resourceGroupName, workflowName, triggerName).toCompletable(); - } + return client.runAsync(resourceGroupName, workflowName, triggerName) + ;} @Override public Completable setStateAsync(String resourceGroupName, String workflowName, String triggerName, WorkflowTriggerInner source) { diff --git a/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/implementation/WorkflowVersionImpl.java b/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/implementation/WorkflowVersionImpl.java index 9761c220cb4f..eba058f262a4 100644 --- a/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/implementation/WorkflowVersionImpl.java +++ b/logic/resource-manager/v2018_07_01_preview/src/main/java/com/microsoft/azure/management/logic/v2018_07_01_preview/implementation/WorkflowVersionImpl.java @@ -27,6 +27,7 @@ class WorkflowVersionImpl extends IndexableRefreshableWrapperImpl generateUpgradedDefinitionAsync(String resourceGroupName, String workflowName) { WorkflowsInner client = this.inner(); - return client.generateUpgradedDefinitionAsync(resourceGroupName, workflowName).toCompletable(); - } + return client.generateUpgradedDefinitionAsync(resourceGroupName, workflowName) + ;} @Override public Observable listCallbackUrlAsync(String resourceGroupName, String workflowName, GetCallbackUrlParameters listCallbackUrl) { @@ -158,10 +158,10 @@ public WorkflowTriggerCallbackUrl call(WorkflowTriggerCallbackUrlInner inner) { } @Override - public Completable listSwaggerAsync(String resourceGroupName, String workflowName) { + public Observable listSwaggerAsync(String resourceGroupName, String workflowName) { WorkflowsInner client = this.inner(); - return client.listSwaggerAsync(resourceGroupName, workflowName).toCompletable(); - } + return client.listSwaggerAsync(resourceGroupName, workflowName) + ;} @Override public Completable moveAsync(String resourceGroupName, String workflowName, WorkflowInner move) {