Skip to content

Commit

Permalink
Generated from f2e9fb376982c0ce090f7c83276235abd4d91592
Browse files Browse the repository at this point in the history
Add api-version of hybridcompute to go SDK
  • Loading branch information
SDK Automation committed Sep 4, 2020
1 parent b68bf12 commit 4a547e8
Show file tree
Hide file tree
Showing 17 changed files with 2,636 additions and 297 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ class HybridComputeManagementClient extends HybridComputeManagementClientContext
machines: operations.Machines;
machineExtensions: operations.MachineExtensions;
operations: operations.Operations;
privateLinkScopes: operations.PrivateLinkScopes;
privateLinkResources: operations.PrivateLinkResources;
privateEndpointConnections: operations.PrivateEndpointConnections;
privateLinkScopedResources: operations.PrivateLinkScopedResources;

/**
* Initializes a new instance of the HybridComputeManagementClient class.
Expand All @@ -32,6 +36,10 @@ class HybridComputeManagementClient extends HybridComputeManagementClientContext
this.machines = new operations.Machines(this);
this.machineExtensions = new operations.MachineExtensions(this);
this.operations = new operations.Operations(this);
this.privateLinkScopes = new operations.PrivateLinkScopes(this);
this.privateLinkResources = new operations.PrivateLinkResources(this);
this.privateEndpointConnections = new operations.PrivateEndpointConnections(this);
this.privateLinkScopedResources = new operations.PrivateLinkScopedResources(this);
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export class HybridComputeManagementClientContext extends msRestAzure.AzureServi

super(credentials, options);

this.apiVersion = '2019-12-12';
this.apiVersion = '2020-08-15-preview';
this.acceptLanguage = 'en-US';
this.longRunningOperationRetryTimeout = 30;
this.baseUri = options.baseUri || this.baseUri || "https://management.azure.com";
Expand Down
Loading

0 comments on commit 4a547e8

Please sign in to comment.