Skip to content

Commit c6334ce

Browse files
authored
mgmt hdinsight regenerate package-2018-06-preview (Azure#18725)
* mgmt hdinsight regenerate package-2018-06-preview * update pom
1 parent 00e1c8e commit c6334ce

30 files changed

+1532
-4
lines changed

sdk/hdinsight/mgmt-v2018_06_01_preview/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<relativePath>../../parents/azure-arm-parent/pom.xml</relativePath>
1616
</parent>
1717
<artifactId>azure-mgmt-hdinsight</artifactId>
18-
<version>1.3.7</version>
18+
<version>1.3.8</version>
1919
<packaging>jar</packaging>
2020
<name>Microsoft Azure SDK for HDInsight Management</name>
2121
<description>This package contains Microsoft HDInsight Management SDK.</description>

sdk/hdinsight/mgmt-v2018_06_01_preview/src/main/java/com/microsoft/azure/management/hdinsight/v2018_06_01_preview/ApplicationGetEndpoint.java

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,12 @@ public class ApplicationGetEndpoint {
3232
@JsonProperty(value = "publicPort")
3333
private Integer publicPort;
3434

35+
/**
36+
* The private ip address of the endpoint.
37+
*/
38+
@JsonProperty(value = "privateIPAddress")
39+
private String privateIPAddress;
40+
3541
/**
3642
* Get the location of the endpoint.
3743
*
@@ -92,4 +98,24 @@ public ApplicationGetEndpoint withPublicPort(Integer publicPort) {
9298
return this;
9399
}
94100

101+
/**
102+
* Get the private ip address of the endpoint.
103+
*
104+
* @return the privateIPAddress value
105+
*/
106+
public String privateIPAddress() {
107+
return this.privateIPAddress;
108+
}
109+
110+
/**
111+
* Set the private ip address of the endpoint.
112+
*
113+
* @param privateIPAddress the privateIPAddress value to set
114+
* @return the ApplicationGetEndpoint object itself.
115+
*/
116+
public ApplicationGetEndpoint withPrivateIPAddress(String privateIPAddress) {
117+
this.privateIPAddress = privateIPAddress;
118+
return this;
119+
}
120+
95121
}

sdk/hdinsight/mgmt-v2018_06_01_preview/src/main/java/com/microsoft/azure/management/hdinsight/v2018_06_01_preview/BillingResponseListResult.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,19 @@ public interface BillingResponseListResult extends HasInner<BillingResponseListR
2828
*/
2929
List<VmSizeCompatibilityFilterV2> vmSizeFilters();
3030

31+
/**
32+
* @return the vmSizeProperties value.
33+
*/
34+
List<VmSizeProperty> vmSizeProperties();
35+
3136
/**
3237
* @return the vmSizes value.
3338
*/
3439
List<String> vmSizes();
3540

41+
/**
42+
* @return the vmSizesWithEncryptionAtHost value.
43+
*/
44+
List<String> vmSizesWithEncryptionAtHost();
45+
3646
}

sdk/hdinsight/mgmt-v2018_06_01_preview/src/main/java/com/microsoft/azure/management/hdinsight/v2018_06_01_preview/ClusterCreateProperties.java

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,12 @@ public class ClusterCreateProperties {
8787
@JsonProperty(value = "networkProperties")
8888
private NetworkProperties networkProperties;
8989

90+
/**
91+
* The compute isolation properties.
92+
*/
93+
@JsonProperty(value = "computeIsolationProperties")
94+
private ComputeIsolationProperties computeIsolationProperties;
95+
9096
/**
9197
* Get the version of the cluster.
9298
*
@@ -327,4 +333,24 @@ public ClusterCreateProperties withNetworkProperties(NetworkProperties networkPr
327333
return this;
328334
}
329335

336+
/**
337+
* Get the compute isolation properties.
338+
*
339+
* @return the computeIsolationProperties value
340+
*/
341+
public ComputeIsolationProperties computeIsolationProperties() {
342+
return this.computeIsolationProperties;
343+
}
344+
345+
/**
346+
* Set the compute isolation properties.
347+
*
348+
* @param computeIsolationProperties the computeIsolationProperties value to set
349+
* @return the ClusterCreateProperties object itself.
350+
*/
351+
public ClusterCreateProperties withComputeIsolationProperties(ComputeIsolationProperties computeIsolationProperties) {
352+
this.computeIsolationProperties = computeIsolationProperties;
353+
return this;
354+
}
355+
330356
}

sdk/hdinsight/mgmt-v2018_06_01_preview/src/main/java/com/microsoft/azure/management/hdinsight/v2018_06_01_preview/ClusterGetProperties.java

Lines changed: 104 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@ public class ClusterGetProperties {
2121
@JsonProperty(value = "clusterVersion")
2222
private String clusterVersion;
2323

24+
/**
25+
* The hdp version of the cluster.
26+
*/
27+
@JsonProperty(value = "clusterHdpVersion")
28+
private String clusterHdpVersion;
29+
2430
/**
2531
* The type of operating system. Possible values include: 'Windows',
2632
* 'Linux'.
@@ -114,18 +120,36 @@ public class ClusterGetProperties {
114120
@JsonProperty(value = "encryptionInTransitProperties")
115121
private EncryptionInTransitProperties encryptionInTransitProperties;
116122

123+
/**
124+
* The storage profile.
125+
*/
126+
@JsonProperty(value = "storageProfile")
127+
private StorageProfile storageProfile;
128+
117129
/**
118130
* The minimal supported tls version.
119131
*/
120132
@JsonProperty(value = "minSupportedTlsVersion")
121133
private String minSupportedTlsVersion;
122134

135+
/**
136+
* The excluded services config.
137+
*/
138+
@JsonProperty(value = "excludedServicesConfig")
139+
private ExcludedServicesConfig excludedServicesConfig;
140+
123141
/**
124142
* The network properties.
125143
*/
126144
@JsonProperty(value = "networkProperties")
127145
private NetworkProperties networkProperties;
128146

147+
/**
148+
* The compute isolation properties.
149+
*/
150+
@JsonProperty(value = "computeIsolationProperties")
151+
private ComputeIsolationProperties computeIsolationProperties;
152+
129153
/**
130154
* Get the version of the cluster.
131155
*
@@ -146,6 +170,26 @@ public ClusterGetProperties withClusterVersion(String clusterVersion) {
146170
return this;
147171
}
148172

173+
/**
174+
* Get the hdp version of the cluster.
175+
*
176+
* @return the clusterHdpVersion value
177+
*/
178+
public String clusterHdpVersion() {
179+
return this.clusterHdpVersion;
180+
}
181+
182+
/**
183+
* Set the hdp version of the cluster.
184+
*
185+
* @param clusterHdpVersion the clusterHdpVersion value to set
186+
* @return the ClusterGetProperties object itself.
187+
*/
188+
public ClusterGetProperties withClusterHdpVersion(String clusterHdpVersion) {
189+
this.clusterHdpVersion = clusterHdpVersion;
190+
return this;
191+
}
192+
149193
/**
150194
* Get the type of operating system. Possible values include: 'Windows', 'Linux'.
151195
*
@@ -446,6 +490,26 @@ public ClusterGetProperties withEncryptionInTransitProperties(EncryptionInTransi
446490
return this;
447491
}
448492

493+
/**
494+
* Get the storage profile.
495+
*
496+
* @return the storageProfile value
497+
*/
498+
public StorageProfile storageProfile() {
499+
return this.storageProfile;
500+
}
501+
502+
/**
503+
* Set the storage profile.
504+
*
505+
* @param storageProfile the storageProfile value to set
506+
* @return the ClusterGetProperties object itself.
507+
*/
508+
public ClusterGetProperties withStorageProfile(StorageProfile storageProfile) {
509+
this.storageProfile = storageProfile;
510+
return this;
511+
}
512+
449513
/**
450514
* Get the minimal supported tls version.
451515
*
@@ -466,6 +530,26 @@ public ClusterGetProperties withMinSupportedTlsVersion(String minSupportedTlsVer
466530
return this;
467531
}
468532

533+
/**
534+
* Get the excluded services config.
535+
*
536+
* @return the excludedServicesConfig value
537+
*/
538+
public ExcludedServicesConfig excludedServicesConfig() {
539+
return this.excludedServicesConfig;
540+
}
541+
542+
/**
543+
* Set the excluded services config.
544+
*
545+
* @param excludedServicesConfig the excludedServicesConfig value to set
546+
* @return the ClusterGetProperties object itself.
547+
*/
548+
public ClusterGetProperties withExcludedServicesConfig(ExcludedServicesConfig excludedServicesConfig) {
549+
this.excludedServicesConfig = excludedServicesConfig;
550+
return this;
551+
}
552+
469553
/**
470554
* Get the network properties.
471555
*
@@ -486,4 +570,24 @@ public ClusterGetProperties withNetworkProperties(NetworkProperties networkPrope
486570
return this;
487571
}
488572

573+
/**
574+
* Get the compute isolation properties.
575+
*
576+
* @return the computeIsolationProperties value
577+
*/
578+
public ComputeIsolationProperties computeIsolationProperties() {
579+
return this.computeIsolationProperties;
580+
}
581+
582+
/**
583+
* Set the compute isolation properties.
584+
*
585+
* @param computeIsolationProperties the computeIsolationProperties value to set
586+
* @return the ClusterGetProperties object itself.
587+
*/
588+
public ClusterGetProperties withComputeIsolationProperties(ComputeIsolationProperties computeIsolationProperties) {
589+
this.computeIsolationProperties = computeIsolationProperties;
590+
return this;
591+
}
592+
489593
}

sdk/hdinsight/mgmt-v2018_06_01_preview/src/main/java/com/microsoft/azure/management/hdinsight/v2018_06_01_preview/ClusterIdentityUserAssignedIdentitiesValue.java

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,12 @@ public class ClusterIdentityUserAssignedIdentitiesValue {
2626
@JsonProperty(value = "clientId", access = JsonProperty.Access.WRITE_ONLY)
2727
private String clientId;
2828

29+
/**
30+
* The tenant id of user assigned identity.
31+
*/
32+
@JsonProperty(value = "tenantId")
33+
private String tenantId;
34+
2935
/**
3036
* Get the principal id of user assigned identity.
3137
*
@@ -44,4 +50,24 @@ public String clientId() {
4450
return this.clientId;
4551
}
4652

53+
/**
54+
* Get the tenant id of user assigned identity.
55+
*
56+
* @return the tenantId value
57+
*/
58+
public String tenantId() {
59+
return this.tenantId;
60+
}
61+
62+
/**
63+
* Set the tenant id of user assigned identity.
64+
*
65+
* @param tenantId the tenantId value to set
66+
* @return the ClusterIdentityUserAssignedIdentitiesValue object itself.
67+
*/
68+
public ClusterIdentityUserAssignedIdentitiesValue withTenantId(String tenantId) {
69+
this.tenantId = tenantId;
70+
return this;
71+
}
72+
4773
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
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.hdinsight.v2018_06_01_preview;
10+
11+
import com.fasterxml.jackson.annotation.JsonProperty;
12+
13+
/**
14+
* The compute isolation properties.
15+
*/
16+
public class ComputeIsolationProperties {
17+
/**
18+
* The flag indicates whether enable compute isolation or not.
19+
*/
20+
@JsonProperty(value = "enableComputeIsolation")
21+
private Boolean enableComputeIsolation;
22+
23+
/**
24+
* The host sku.
25+
*/
26+
@JsonProperty(value = "hostSku")
27+
private String hostSku;
28+
29+
/**
30+
* Get the flag indicates whether enable compute isolation or not.
31+
*
32+
* @return the enableComputeIsolation value
33+
*/
34+
public Boolean enableComputeIsolation() {
35+
return this.enableComputeIsolation;
36+
}
37+
38+
/**
39+
* Set the flag indicates whether enable compute isolation or not.
40+
*
41+
* @param enableComputeIsolation the enableComputeIsolation value to set
42+
* @return the ComputeIsolationProperties object itself.
43+
*/
44+
public ComputeIsolationProperties withEnableComputeIsolation(Boolean enableComputeIsolation) {
45+
this.enableComputeIsolation = enableComputeIsolation;
46+
return this;
47+
}
48+
49+
/**
50+
* Get the host sku.
51+
*
52+
* @return the hostSku value
53+
*/
54+
public String hostSku() {
55+
return this.hostSku;
56+
}
57+
58+
/**
59+
* Set the host sku.
60+
*
61+
* @param hostSku the hostSku value to set
62+
* @return the ComputeIsolationProperties object itself.
63+
*/
64+
public ComputeIsolationProperties withHostSku(String hostSku) {
65+
this.hostSku = hostSku;
66+
return this;
67+
}
68+
69+
}

0 commit comments

Comments
 (0)