Skip to content

Commit 601dc73

Browse files
author
SDK Automation
committed
Generated from 58d4e9800c40a04eddf23380db322a816ae93b2c
1 parent d38576e commit 601dc73

File tree

83 files changed

+5029
-103
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+5029
-103
lines changed

sdk/logic/mgmt-v2016_06_01/pom.xml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@
1111
<parent>
1212
<groupId>com.microsoft.azure</groupId>
1313
<artifactId>azure-arm-parent</artifactId>
14-
<version>1.2.0</version>
15-
<relativePath>../../parents/azure-arm-parent</relativePath>
14+
<version>1.1.0</version>
15+
<relativePath>../../../pom.management.xml</relativePath>
1616
</parent>
1717
<artifactId>azure-mgmt-logic</artifactId>
1818
<version>1.0.0-beta</version>
1919
<packaging>jar</packaging>
2020
<name>Microsoft Azure SDK for Logic Management</name>
2121
<description>This package contains Microsoft Logic Management SDK.</description>
22-
<url>https://github.com/Azure/azure-libraries-for-java</url>
22+
<url>https://github.com/Azure/azure-sdk-for-java</url>
2323
<licenses>
2424
<license>
2525
<name>The MIT License (MIT)</name>
@@ -28,8 +28,8 @@
2828
</license>
2929
</licenses>
3030
<scm>
31-
<url>scm:git:https://github.com/Azure/azure-libraries-for-java</url>
32-
<connection>scm:git:git@github.com:Azure/azure-libraries-for-java.git</connection>
31+
<url>scm:git:https://github.com/Azure/azure-sdk-for-java</url>
32+
<connection>scm:git:git@github.com:Azure/azure-sdk-for-java.git</connection>
3333
<tag>HEAD</tag>
3434
</scm>
3535
<properties>
@@ -71,6 +71,8 @@
7171
<artifactId>azure-arm-client-runtime</artifactId>
7272
<type>test-jar</type>
7373
<scope>test</scope>
74+
<!--Below version for test jar needs to be removed, this will be done as part of v1-runtime 1.6.7-->
75+
<version>1.6.5</version>
7476
</dependency>
7577
</dependencies>
7678
<build>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
/**
2+
* Copyright (c) Microsoft Corporation. All rights reserved.
3+
* Licensed under the MIT License. See License.txt in the project root for
4+
* license information.
5+
*
6+
* Code generated by Microsoft (R) AutoRest Code Generator.
7+
*/
8+
9+
package com.microsoft.azure.management.logic.v2016_06_01;
10+
11+
import com.microsoft.azure.arm.model.HasInner;
12+
import com.microsoft.azure.management.logic.v2016_06_01.implementation.RequestHistoryInner;
13+
import com.microsoft.azure.arm.model.Indexable;
14+
import com.microsoft.azure.arm.model.Refreshable;
15+
import com.microsoft.azure.arm.resources.models.HasManager;
16+
import com.microsoft.azure.management.logic.v2016_06_01.implementation.LogicManager;
17+
import java.util.Map;
18+
19+
/**
20+
* Type representing ActionRunWorkflowRequestHistory.
21+
*/
22+
public interface ActionRunWorkflowRequestHistory extends HasInner<RequestHistoryInner>, Indexable, Refreshable<ActionRunWorkflowRequestHistory>, HasManager<LogicManager> {
23+
/**
24+
* @return the id value.
25+
*/
26+
String id();
27+
28+
/**
29+
* @return the location value.
30+
*/
31+
String location();
32+
33+
/**
34+
* @return the name value.
35+
*/
36+
String name();
37+
38+
/**
39+
* @return the properties value.
40+
*/
41+
RequestHistoryProperties properties();
42+
43+
/**
44+
* @return the tags value.
45+
*/
46+
Map<String, String> tags();
47+
48+
/**
49+
* @return the type value.
50+
*/
51+
String type();
52+
53+
}

sdk/logic/mgmt-v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/AssemblyDefinition.java

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,9 @@ interface Blank extends WithIntegrationAccount {
7575
interface WithIntegrationAccount {
7676
/**
7777
* Specifies resourceGroupName, integrationAccountName.
78+
* @param resourceGroupName The resource group name
79+
* @param integrationAccountName The integration account name
80+
* @return the next definition stage
7881
*/
7982
WithProperties withExistingIntegrationAccount(String resourceGroupName, String integrationAccountName);
8083
}
@@ -85,6 +88,8 @@ interface WithIntegrationAccount {
8588
interface WithProperties {
8689
/**
8790
* Specifies properties.
91+
* @param properties The assembly properties
92+
* @return the next definition stage
8893
*/
8994
WithCreate withProperties(AssemblyProperties properties);
9095
}
@@ -95,6 +100,8 @@ interface WithProperties {
95100
interface WithLocation {
96101
/**
97102
* Specifies location.
103+
* @param location The resource location
104+
* @return the next definition stage
98105
*/
99106
WithCreate withLocation(String location);
100107
}
@@ -105,6 +112,8 @@ interface WithLocation {
105112
interface WithTags {
106113
/**
107114
* Specifies tags.
115+
* @param tags The resource tags
116+
* @return the next definition stage
108117
*/
109118
WithCreate withTags(Map<String, String> tags);
110119
}
@@ -133,6 +142,8 @@ interface UpdateStages {
133142
interface WithLocation {
134143
/**
135144
* Specifies location.
145+
* @param location The resource location
146+
* @return the next update stage
136147
*/
137148
Update withLocation(String location);
138149
}
@@ -143,6 +154,8 @@ interface WithLocation {
143154
interface WithTags {
144155
/**
145156
* Specifies tags.
157+
* @param tags The resource tags
158+
* @return the next update stage
146159
*/
147160
Update withTags(Map<String, String> tags);
148161
}

sdk/logic/mgmt-v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/BatchConfiguration.java

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,9 @@ interface Blank extends WithIntegrationAccount {
7575
interface WithIntegrationAccount {
7676
/**
7777
* Specifies resourceGroupName, integrationAccountName.
78+
* @param resourceGroupName The resource group name
79+
* @param integrationAccountName The integration account name
80+
* @return the next definition stage
7881
*/
7982
WithProperties withExistingIntegrationAccount(String resourceGroupName, String integrationAccountName);
8083
}
@@ -85,6 +88,8 @@ interface WithIntegrationAccount {
8588
interface WithProperties {
8689
/**
8790
* Specifies properties.
91+
* @param properties The batch configuration properties
92+
* @return the next definition stage
8893
*/
8994
WithCreate withProperties(BatchConfigurationProperties properties);
9095
}
@@ -95,6 +100,8 @@ interface WithProperties {
95100
interface WithLocation {
96101
/**
97102
* Specifies location.
103+
* @param location The resource location
104+
* @return the next definition stage
98105
*/
99106
WithCreate withLocation(String location);
100107
}
@@ -105,6 +112,8 @@ interface WithLocation {
105112
interface WithTags {
106113
/**
107114
* Specifies tags.
115+
* @param tags The resource tags
116+
* @return the next definition stage
108117
*/
109118
WithCreate withTags(Map<String, String> tags);
110119
}
@@ -133,6 +142,8 @@ interface UpdateStages {
133142
interface WithLocation {
134143
/**
135144
* Specifies location.
145+
* @param location The resource location
146+
* @return the next update stage
136147
*/
137148
Update withLocation(String location);
138149
}
@@ -143,6 +154,8 @@ interface WithLocation {
143154
interface WithTags {
144155
/**
145156
* Specifies tags.
157+
* @param tags The resource tags
158+
* @return the next update stage
146159
*/
147160
Update withTags(Map<String, String> tags);
148161
}

sdk/logic/mgmt-v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/IntegrationAccount.java

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,21 +57,25 @@ interface WithGroup extends GroupableResourceCore.DefinitionStages.WithGroup<Wit
5757
}
5858

5959
/**
60-
* The stage of the integrationaccount update allowing to specify Properties.
60+
* The stage of the integrationaccount definition allowing to specify Properties.
6161
*/
6262
interface WithProperties {
6363
/**
6464
* Specifies properties.
65+
* @param properties The integration account properties
66+
* @return the next definition stage
6567
*/
6668
WithCreate withProperties(Object properties);
6769
}
6870

6971
/**
70-
* The stage of the integrationaccount update allowing to specify Sku.
72+
* The stage of the integrationaccount definition allowing to specify Sku.
7173
*/
7274
interface WithSku {
7375
/**
7476
* Specifies sku.
77+
* @param sku The sku
78+
* @return the next definition stage
7579
*/
7680
WithCreate withSku(IntegrationAccountSku sku);
7781
}
@@ -95,21 +99,25 @@ interface Update extends Appliable<IntegrationAccount>, Resource.UpdateWithTags<
9599
*/
96100
interface UpdateStages {
97101
/**
98-
* The stage of the integrationaccount {0} allowing to specify Properties.
102+
* The stage of the integrationaccount update allowing to specify Properties.
99103
*/
100104
interface WithProperties {
101105
/**
102106
* Specifies properties.
107+
* @param properties The integration account properties
108+
* @return the next update stage
103109
*/
104110
Update withProperties(Object properties);
105111
}
106112

107113
/**
108-
* The stage of the integrationaccount {0} allowing to specify Sku.
114+
* The stage of the integrationaccount update allowing to specify Sku.
109115
*/
110116
interface WithSku {
111117
/**
112118
* Specifies sku.
119+
* @param sku The sku
120+
* @return the next update stage
113121
*/
114122
Update withSku(IntegrationAccountSku sku);
115123
}

sdk/logic/mgmt-v2016_06_01/src/main/java/com/microsoft/azure/management/logic/v2016_06_01/IntegrationAccountAgreement.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,9 @@ interface Blank extends WithIntegrationAccount {
116116
interface WithIntegrationAccount {
117117
/**
118118
* Specifies resourceGroupName, integrationAccountName.
119+
* @param resourceGroupName The resource group name
120+
* @param integrationAccountName The integration account name
121+
* @return the next definition stage
119122
*/
120123
WithAgreementType withExistingIntegrationAccount(String resourceGroupName, String integrationAccountName);
121124
}
@@ -126,6 +129,8 @@ interface WithIntegrationAccount {
126129
interface WithAgreementType {
127130
/**
128131
* Specifies agreementType.
132+
* @param agreementType The agreement type. Possible values include: 'NotSpecified', 'AS2', 'X12', 'Edifact'
133+
* @return the next definition stage
129134
*/
130135
WithContent withAgreementType(AgreementType agreementType);
131136
}
@@ -136,6 +141,8 @@ interface WithAgreementType {
136141
interface WithContent {
137142
/**
138143
* Specifies content.
144+
* @param content The agreement content
145+
* @return the next definition stage
139146
*/
140147
WithGuestIdentity withContent(AgreementContent content);
141148
}
@@ -146,6 +153,8 @@ interface WithContent {
146153
interface WithGuestIdentity {
147154
/**
148155
* Specifies guestIdentity.
156+
* @param guestIdentity The business identity of the guest partner
157+
* @return the next definition stage
149158
*/
150159
WithGuestPartner withGuestIdentity(BusinessIdentity guestIdentity);
151160
}
@@ -156,6 +165,8 @@ interface WithGuestIdentity {
156165
interface WithGuestPartner {
157166
/**
158167
* Specifies guestPartner.
168+
* @param guestPartner The integration account partner that is set as guest partner for this agreement
169+
* @return the next definition stage
159170
*/
160171
WithHostIdentity withGuestPartner(String guestPartner);
161172
}
@@ -166,6 +177,8 @@ interface WithGuestPartner {
166177
interface WithHostIdentity {
167178
/**
168179
* Specifies hostIdentity.
180+
* @param hostIdentity The business identity of the host partner
181+
* @return the next definition stage
169182
*/
170183
WithHostPartner withHostIdentity(BusinessIdentity hostIdentity);
171184
}
@@ -176,6 +189,8 @@ interface WithHostIdentity {
176189
interface WithHostPartner {
177190
/**
178191
* Specifies hostPartner.
192+
* @param hostPartner The integration account partner that is set as host partner for this agreement
193+
* @return the next definition stage
179194
*/
180195
WithCreate withHostPartner(String hostPartner);
181196
}
@@ -186,6 +201,8 @@ interface WithHostPartner {
186201
interface WithLocation {
187202
/**
188203
* Specifies location.
204+
* @param location The resource location
205+
* @return the next definition stage
189206
*/
190207
WithCreate withLocation(String location);
191208
}
@@ -196,6 +213,8 @@ interface WithLocation {
196213
interface WithMetadata {
197214
/**
198215
* Specifies metadata.
216+
* @param metadata The metadata
217+
* @return the next definition stage
199218
*/
200219
WithCreate withMetadata(Object metadata);
201220
}
@@ -206,6 +225,8 @@ interface WithMetadata {
206225
interface WithTags {
207226
/**
208227
* Specifies tags.
228+
* @param tags The resource tags
229+
* @return the next definition stage
209230
*/
210231
WithCreate withTags(Map<String, String> tags);
211232
}
@@ -234,6 +255,8 @@ interface UpdateStages {
234255
interface WithLocation {
235256
/**
236257
* Specifies location.
258+
* @param location The resource location
259+
* @return the next update stage
237260
*/
238261
Update withLocation(String location);
239262
}
@@ -244,6 +267,8 @@ interface WithLocation {
244267
interface WithMetadata {
245268
/**
246269
* Specifies metadata.
270+
* @param metadata The metadata
271+
* @return the next update stage
247272
*/
248273
Update withMetadata(Object metadata);
249274
}
@@ -254,6 +279,8 @@ interface WithMetadata {
254279
interface WithTags {
255280
/**
256281
* Specifies tags.
282+
* @param tags The resource tags
283+
* @return the next update stage
257284
*/
258285
Update withTags(Map<String, String> tags);
259286
}

0 commit comments

Comments
 (0)