Skip to content

Commit 674d951

Browse files
author
SDK Automation
committed
Generated from 5aaacd5e87cb088557ee24b12dd33f833b43df70
1 parent ec983aa commit 674d951

File tree

4 files changed

+52
-32
lines changed

4 files changed

+52
-32
lines changed

sdk/storage/mgmt-v2016_01_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-storage</artifactId>
1818
<version>1.0.0-beta</version>
1919
<packaging>jar</packaging>
2020
<name>Microsoft Azure SDK for Storage Management</name>
2121
<description>This package contains Microsoft Storage 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:[email protected]:Azure/azure-libraries-for-java.git</connection>
31+
<url>scm:git:https://github.com/Azure/azure-sdk-for-java</url>
32+
<connection>scm:git:[email protected]: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>

sdk/storage/mgmt-v2016_01_01/src/main/java/com/microsoft/azure/management/storage/v2016_01_01/CustomDomain.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ public class CustomDomain {
2626
* Indicates whether indirect CName validation is enabled. Default value is
2727
* false. This should only be set on updates.
2828
*/
29-
@JsonProperty(value = "useSubDomain")
30-
private Boolean useSubDomain;
29+
@JsonProperty(value = "useSubDomainName")
30+
private Boolean useSubDomainName;
3131

3232
/**
3333
* Get gets or sets the custom domain name assigned to the storage account. Name is the CNAME source.
@@ -52,20 +52,20 @@ public CustomDomain withName(String name) {
5252
/**
5353
* Get indicates whether indirect CName validation is enabled. Default value is false. This should only be set on updates.
5454
*
55-
* @return the useSubDomain value
55+
* @return the useSubDomainName value
5656
*/
57-
public Boolean useSubDomain() {
58-
return this.useSubDomain;
57+
public Boolean useSubDomainName() {
58+
return this.useSubDomainName;
5959
}
6060

6161
/**
6262
* Set indicates whether indirect CName validation is enabled. Default value is false. This should only be set on updates.
6363
*
64-
* @param useSubDomain the useSubDomain value to set
64+
* @param useSubDomainName the useSubDomainName value to set
6565
* @return the CustomDomain object itself.
6666
*/
67-
public CustomDomain withUseSubDomain(Boolean useSubDomain) {
68-
this.useSubDomain = useSubDomain;
67+
public CustomDomain withUseSubDomainName(Boolean useSubDomainName) {
68+
this.useSubDomainName = useSubDomainName;
6969
return this;
7070
}
7171

sdk/storage/mgmt-v2016_01_01/src/main/java/com/microsoft/azure/management/storage/v2016_01_01/StorageAccount.java

Lines changed: 27 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,9 @@ interface WithGroup extends GroupableResourceCore.DefinitionStages.WithGroup<Wit
123123
interface WithKind {
124124
/**
125125
* Specifies kind.
126-
*/
126+
* @param kind Required. Indicates the type of storage account. Possible values include: 'Storage', 'BlobStorage'
127+
* @return the next definition stage
128+
*/
127129
WithSku withKind(Kind kind);
128130
}
129131

@@ -133,36 +135,44 @@ interface WithKind {
133135
interface WithSku {
134136
/**
135137
* Specifies sku.
136-
*/
138+
* @param sku Required. Gets or sets the sku name
139+
* @return the next definition stage
140+
*/
137141
WithCreate withSku(Sku sku);
138142
}
139143

140144
/**
141-
* The stage of the storageaccount update allowing to specify AccessTier.
145+
* The stage of the storageaccount definition allowing to specify AccessTier.
142146
*/
143147
interface WithAccessTier {
144148
/**
145149
* Specifies accessTier.
150+
* @param accessTier Required for storage accounts where kind = BlobStorage. The access tier used for billing. Possible values include: 'Hot', 'Cool'
151+
* @return the next definition stage
146152
*/
147153
WithCreate withAccessTier(AccessTier accessTier);
148154
}
149155

150156
/**
151-
* The stage of the storageaccount update allowing to specify CustomDomain.
157+
* The stage of the storageaccount definition allowing to specify CustomDomain.
152158
*/
153159
interface WithCustomDomain {
154160
/**
155161
* Specifies customDomain.
162+
* @param customDomain User domain assigned to the storage account. Name is the CNAME source. Only one custom domain is supported per storage account at this time. To clear the existing custom domain, use an empty string for the custom domain name property
163+
* @return the next definition stage
156164
*/
157165
WithCreate withCustomDomain(CustomDomain customDomain);
158166
}
159167

160168
/**
161-
* The stage of the storageaccount update allowing to specify Encryption.
169+
* The stage of the storageaccount definition allowing to specify Encryption.
162170
*/
163171
interface WithEncryption {
164172
/**
165173
* Specifies encryption.
174+
* @param encryption Provides the encryption settings on the account. If left unspecified the account encryption settings will remain the same. The default setting is unencrypted
175+
* @return the next definition stage
166176
*/
167177
WithCreate withEncryption(Encryption encryption);
168178
}
@@ -186,41 +196,49 @@ interface Update extends Appliable<StorageAccount>, Resource.UpdateWithTags<Upda
186196
*/
187197
interface UpdateStages {
188198
/**
189-
* The stage of the storageaccount {0} allowing to specify AccessTier.
199+
* The stage of the storageaccount update allowing to specify AccessTier.
190200
*/
191201
interface WithAccessTier {
192202
/**
193203
* Specifies accessTier.
204+
* @param accessTier Required for storage accounts where kind = BlobStorage. The access tier used for billing. Possible values include: 'Hot', 'Cool'
205+
* @return the next update stage
194206
*/
195207
Update withAccessTier(AccessTier accessTier);
196208
}
197209

198210
/**
199-
* The stage of the storageaccount {0} allowing to specify CustomDomain.
211+
* The stage of the storageaccount update allowing to specify CustomDomain.
200212
*/
201213
interface WithCustomDomain {
202214
/**
203215
* Specifies customDomain.
216+
* @param customDomain Custom domain assigned to the storage account by the user. Name is the CNAME source. Only one custom domain is supported per storage account at this time. To clear the existing custom domain, use an empty string for the custom domain name property
217+
* @return the next update stage
204218
*/
205219
Update withCustomDomain(CustomDomain customDomain);
206220
}
207221

208222
/**
209-
* The stage of the storageaccount {0} allowing to specify Encryption.
223+
* The stage of the storageaccount update allowing to specify Encryption.
210224
*/
211225
interface WithEncryption {
212226
/**
213227
* Specifies encryption.
228+
* @param encryption Provides the encryption settings on the account. The default setting is unencrypted
229+
* @return the next update stage
214230
*/
215231
Update withEncryption(Encryption encryption);
216232
}
217233

218234
/**
219-
* The stage of the storageaccount {0} allowing to specify Sku.
235+
* The stage of the storageaccount update allowing to specify Sku.
220236
*/
221237
interface WithSku {
222238
/**
223239
* Specifies sku.
240+
* @param sku Gets or sets the SKU name. Note that the SKU name cannot be updated to Standard_ZRS or Premium_LRS, nor can accounts of those sku names be updated to any other value
241+
* @return the next update stage
224242
*/
225243
Update withSku(Sku sku);
226244
}

sdk/storage/mgmt-v2016_01_01/src/main/java/com/microsoft/azure/management/storage/v2016_01_01/implementation/StorageManagementClientImpl.java

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,11 @@ public String apiVersion() {
6363
return this.apiVersion;
6464
}
6565

66-
/** Gets or sets the preferred language for the response. */
66+
/** The preferred language for the response. */
6767
private String acceptLanguage;
6868

6969
/**
70-
* Gets Gets or sets the preferred language for the response.
70+
* Gets The preferred language for the response.
7171
*
7272
* @return the acceptLanguage value.
7373
*/
@@ -76,7 +76,7 @@ public String acceptLanguage() {
7676
}
7777

7878
/**
79-
* Sets Gets or sets the preferred language for the response.
79+
* Sets The preferred language for the response.
8080
*
8181
* @param acceptLanguage the acceptLanguage value.
8282
* @return the service client itself
@@ -86,11 +86,11 @@ public StorageManagementClientImpl withAcceptLanguage(String acceptLanguage) {
8686
return this;
8787
}
8888

89-
/** Gets or sets the retry timeout in seconds for Long Running Operations. Default value is 30. */
89+
/** The retry timeout in seconds for Long Running Operations. Default value is 30. */
9090
private int longRunningOperationRetryTimeout;
9191

9292
/**
93-
* Gets Gets or sets the retry timeout in seconds for Long Running Operations. Default value is 30.
93+
* Gets The retry timeout in seconds for Long Running Operations. Default value is 30.
9494
*
9595
* @return the longRunningOperationRetryTimeout value.
9696
*/
@@ -99,7 +99,7 @@ public int longRunningOperationRetryTimeout() {
9999
}
100100

101101
/**
102-
* Sets Gets or sets the retry timeout in seconds for Long Running Operations. Default value is 30.
102+
* Sets The retry timeout in seconds for Long Running Operations. Default value is 30.
103103
*
104104
* @param longRunningOperationRetryTimeout the longRunningOperationRetryTimeout value.
105105
* @return the service client itself
@@ -109,11 +109,11 @@ public StorageManagementClientImpl withLongRunningOperationRetryTimeout(int long
109109
return this;
110110
}
111111

112-
/** When set to true a unique x-ms-client-request-id value is generated and included in each request. Default is true. */
112+
/** Whether a unique x-ms-client-request-id should be generated. When set to true a unique x-ms-client-request-id value is generated and included in each request. Default is true. */
113113
private boolean generateClientRequestId;
114114

115115
/**
116-
* Gets When set to true a unique x-ms-client-request-id value is generated and included in each request. Default is true.
116+
* Gets Whether a unique x-ms-client-request-id should be generated. When set to true a unique x-ms-client-request-id value is generated and included in each request. Default is true.
117117
*
118118
* @return the generateClientRequestId value.
119119
*/
@@ -122,7 +122,7 @@ public boolean generateClientRequestId() {
122122
}
123123

124124
/**
125-
* Sets When set to true a unique x-ms-client-request-id value is generated and included in each request. Default is true.
125+
* Sets Whether a unique x-ms-client-request-id should be generated. When set to true a unique x-ms-client-request-id value is generated and included in each request. Default is true.
126126
*
127127
* @param generateClientRequestId the generateClientRequestId value.
128128
* @return the service client itself
@@ -205,6 +205,6 @@ protected void initialize() {
205205
*/
206206
@Override
207207
public String userAgent() {
208-
return String.format("%s (%s, %s)", super.userAgent(), "StorageManagementClient", "2016-01-01");
208+
return String.format("%s (%s, %s, auto-generated)", super.userAgent(), "StorageManagementClient", "2016-01-01");
209209
}
210210
}

0 commit comments

Comments
 (0)