Skip to content

Commit

Permalink
Generated from 4ae1c90fa61f904427bb798b6f9e13fa8754b84d
Browse files Browse the repository at this point in the history
update casing for examples
  • Loading branch information
SDK Automation committed Aug 27, 2020
1 parent 59e8d7b commit a0c95b6
Show file tree
Hide file tree
Showing 16 changed files with 2,781 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,26 @@ 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.
* @param credentials Credentials needed for the client to connect to Azure.
* @param subscriptionId Subscription credentials which uniquely identify Microsoft Azure
* subscription. The subscription ID forms part of the URI for every service call.
* @param subscriptionId The ID of the target subscription.
* @param [options] The parameter options
*/
constructor(credentials: msRest.ServiceClientCredentials, subscriptionId: string, options?: Models.HybridComputeManagementClientOptions) {
super(credentials, subscriptionId, options);
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 @@ -17,14 +17,13 @@ const packageVersion = "1.0.0";

export class HybridComputeManagementClientContext extends msRestAzure.AzureServiceClient {
credentials: msRest.ServiceClientCredentials;
subscriptionId: string;
apiVersion?: string;
subscriptionId: string;

/**
* Initializes a new instance of the HybridComputeManagementClient class.
* @param credentials Credentials needed for the client to connect to Azure.
* @param subscriptionId Subscription credentials which uniquely identify Microsoft Azure
* subscription. The subscription ID forms part of the URI for every service call.
* @param subscriptionId The ID of the target subscription.
* @param [options] The parameter options
*/
constructor(credentials: msRest.ServiceClientCredentials, subscriptionId: string, options?: Models.HybridComputeManagementClientOptions) {
Expand All @@ -45,7 +44,7 @@ export class HybridComputeManagementClientContext extends msRestAzure.AzureServi

super(credentials, options);

this.apiVersion = '2020-07-30-preview';
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 a0c95b6

Please sign in to comment.