Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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