Skip to content

Commit 1ee7db5

Browse files
author
SDK Automation
committed
Generated from 9b33d7ca67d424c5f35e9ad9de82ab51951682a2
1 parent 6025ca7 commit 1ee7db5

17 files changed

+723
-62
lines changed

sdk/containerservice/arm-containerservice/src/containerServiceClient.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ class ContainerServiceClient extends ContainerServiceClientContext {
2323
managedClusters: operations.ManagedClusters;
2424
agentPools: operations.AgentPools;
2525
privateEndpointConnections: operations.PrivateEndpointConnections;
26+
privateLinkResources: operations.PrivateLinkResources;
27+
resolvePrivateLinkServiceId: operations.ResolvePrivateLinkServiceId;
2628

2729
/**
2830
* Initializes a new instance of the ContainerServiceClient class.
@@ -39,6 +41,8 @@ class ContainerServiceClient extends ContainerServiceClientContext {
3941
this.managedClusters = new operations.ManagedClusters(this);
4042
this.agentPools = new operations.AgentPools(this);
4143
this.privateEndpointConnections = new operations.PrivateEndpointConnections(this);
44+
this.privateLinkResources = new operations.PrivateLinkResources(this);
45+
this.resolvePrivateLinkServiceId = new operations.ResolvePrivateLinkServiceId(this);
4246
}
4347
}
4448

sdk/containerservice/arm-containerservice/src/containerServiceClientContext.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export class ContainerServiceClientContext extends msRestAzure.AzureServiceClien
3737
if (!options) {
3838
options = {};
3939
}
40-
if (!options.userAgent) {
40+
if(!options.userAgent) {
4141
const defaultUserAgent = msRestAzure.getDefaultUserAgentValue();
4242
options.userAgent = `${packageName}/${packageVersion} ${defaultUserAgent}`;
4343
}
@@ -51,10 +51,10 @@ export class ContainerServiceClientContext extends msRestAzure.AzureServiceClien
5151
this.credentials = credentials;
5252
this.subscriptionId = subscriptionId;
5353

54-
if (options.acceptLanguage !== null && options.acceptLanguage !== undefined) {
54+
if(options.acceptLanguage !== null && options.acceptLanguage !== undefined) {
5555
this.acceptLanguage = options.acceptLanguage;
5656
}
57-
if (options.longRunningOperationRetryTimeout !== null && options.longRunningOperationRetryTimeout !== undefined) {
57+
if(options.longRunningOperationRetryTimeout !== null && options.longRunningOperationRetryTimeout !== undefined) {
5858
this.longRunningOperationRetryTimeout = options.longRunningOperationRetryTimeout;
5959
}
6060
}

sdk/containerservice/arm-containerservice/src/models/agentPoolsMappers.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ export {
5959
OpenShiftManagedClusterIdentityProvider,
6060
OpenShiftManagedClusterMasterPoolProfile,
6161
OpenShiftRouterProfile,
62+
PowerState,
6263
PrivateEndpoint,
6364
PrivateEndpointConnection,
6465
PrivateLinkServiceConnectionState,

sdk/containerservice/arm-containerservice/src/models/containerServicesMappers.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ export {
5858
OrchestratorProfile,
5959
OrchestratorVersionProfile,
6060
OrchestratorVersionProfileListResult,
61+
PowerState,
6162
PrivateEndpoint,
6263
PrivateEndpointConnection,
6364
PrivateLinkServiceConnectionState,

0 commit comments

Comments
 (0)