Skip to content
Merged
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
18 changes: 9 additions & 9 deletions packages/@azure/arm-containerservice/lib/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export interface OpenShiftRouterProfile {
*/
name?: string;
/**
* @member {string} [publicSubdomain] DNS subdomain for openshift router.
* @member {string} [publicSubdomain] DNS subdomain for OpenShift router.
*/
publicSubdomain?: string;
/**
Expand Down Expand Up @@ -528,7 +528,7 @@ export interface ContainerServiceMasterProfile {
*/
osDiskSizeGB?: number;
/**
* @member {string} [vnetSubnetID] VNet SubnetID specifies the vnet's subnet
* @member {string} [vnetSubnetID] VNet SubnetID specifies the VNet's subnet
* identifier.
*/
vnetSubnetID?: string;
Expand All @@ -546,7 +546,7 @@ export interface ContainerServiceMasterProfile {
*/
storageProfile?: ContainerServiceStorageProfileTypes;
/**
* @member {string} [fqdn] FDQN for the master pool.
* @member {string} [fqdn] FQDN for the master pool.
* **NOTE: This property will not be serialized. It can only be populated by
* the server.**
*/
Expand Down Expand Up @@ -639,7 +639,7 @@ export interface ContainerServiceAgentPoolProfile {
*/
dnsPrefix?: string;
/**
* @member {string} [fqdn] FDQN for the agent pool.
* @member {string} [fqdn] FQDN for the agent pool.
* **NOTE: This property will not be serialized. It can only be populated by
* the server.**
*/
Expand All @@ -659,7 +659,7 @@ export interface ContainerServiceAgentPoolProfile {
*/
storageProfile?: ContainerServiceStorageProfileTypes;
/**
* @member {string} [vnetSubnetID] VNet SubnetID specifies the vnet's subnet
* @member {string} [vnetSubnetID] VNet SubnetID specifies the VNet's subnet
* identifier.
*/
vnetSubnetID?: string;
Expand Down Expand Up @@ -979,7 +979,7 @@ export interface ManagedClusterAgentPoolProfile {
*/
osDiskSizeGB?: number;
/**
* @member {string} [vnetSubnetID] VNet SubnetID specifies the vnet's subnet
* @member {string} [vnetSubnetID] VNet SubnetID specifies the VNet's subnet
* identifier.
*/
vnetSubnetID?: string;
Expand All @@ -1006,8 +1006,8 @@ export interface ManagedClusterAgentPoolProfile {
*/
enableAutoScaling?: boolean;
/**
* @member {AgentPoolType} [type] AgentPoolType represents types of
* agentpool. Possible values include: 'VirtualMachineScaleSets',
* @member {AgentPoolType} [type] AgentPoolType represents types of an agent
* pool. Possible values include: 'VirtualMachineScaleSets',
* 'AvailabilitySet'
*/
type?: AgentPoolType;
Expand Down Expand Up @@ -1126,7 +1126,7 @@ export interface ManagedCluster extends Resource {
*/
dnsPrefix?: string;
/**
* @member {string} [fqdn] FDQN for the master pool.
* @member {string} [fqdn] FQDN for the master pool.
* **NOTE: This property will not be serialized. It can only be populated by
* the server.**
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,19 @@ export class ContainerServices {
* agents, and FQDNs of masters and agents.
* @summary Gets a list of container services in the specified subscription.
* @param [options] The optional parameters
* @deprecated This operation is deprecated. Please do not use it any longer.
* @returns Promise<Models.ContainerServicesListResponse>
*/
list(options?: msRest.RequestOptionsBase): Promise<Models.ContainerServicesListResponse>;
/**
* @param callback The callback
* @deprecated This operation is deprecated. Please do not use it any longer.
*/
list(callback: msRest.ServiceCallback<Models.ContainerServiceListResult>): void;
/**
* @param options The optional parameters
* @param callback The callback
* @deprecated This operation is deprecated. Please do not use it any longer.
*/
list(options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.ContainerServiceListResult>): void;
list(options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.ContainerServiceListResult>, callback?: msRest.ServiceCallback<Models.ContainerServiceListResult>): Promise<Models.ContainerServicesListResponse> {
Expand Down Expand Up @@ -79,6 +82,7 @@ export class ContainerServices {
* @param containerServiceName The name of the container service in the specified subscription and
* resource group.
* @param [options] The optional parameters
* @deprecated This operation is deprecated. Please do not use it any longer.
* @returns Promise<Models.ContainerServicesGetResponse>
*/
get(resourceGroupName: string, containerServiceName: string, options?: msRest.RequestOptionsBase): Promise<Models.ContainerServicesGetResponse>;
Expand All @@ -87,6 +91,7 @@ export class ContainerServices {
* @param containerServiceName The name of the container service in the specified subscription and
* resource group.
* @param callback The callback
* @deprecated This operation is deprecated. Please do not use it any longer.
*/
get(resourceGroupName: string, containerServiceName: string, callback: msRest.ServiceCallback<Models.ContainerService>): void;
/**
Expand All @@ -95,6 +100,7 @@ export class ContainerServices {
* resource group.
* @param options The optional parameters
* @param callback The callback
* @deprecated This operation is deprecated. Please do not use it any longer.
*/
get(resourceGroupName: string, containerServiceName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.ContainerService>): void;
get(resourceGroupName: string, containerServiceName: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.ContainerService>, callback?: msRest.ServiceCallback<Models.ContainerService>): Promise<Models.ContainerServicesGetResponse> {
Expand Down Expand Up @@ -132,18 +138,21 @@ export class ContainerServices {
* @summary Gets a list of container services in the specified resource group.
* @param resourceGroupName The name of the resource group.
* @param [options] The optional parameters
* @deprecated This operation is deprecated. Please do not use it any longer.
* @returns Promise<Models.ContainerServicesListByResourceGroupResponse>
*/
listByResourceGroup(resourceGroupName: string, options?: msRest.RequestOptionsBase): Promise<Models.ContainerServicesListByResourceGroupResponse>;
/**
* @param resourceGroupName The name of the resource group.
* @param callback The callback
* @deprecated This operation is deprecated. Please do not use it any longer.
*/
listByResourceGroup(resourceGroupName: string, callback: msRest.ServiceCallback<Models.ContainerServiceListResult>): void;
/**
* @param resourceGroupName The name of the resource group.
* @param options The optional parameters
* @param callback The callback
* @deprecated This operation is deprecated. Please do not use it any longer.
*/
listByResourceGroup(resourceGroupName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.ContainerServiceListResult>): void;
listByResourceGroup(resourceGroupName: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.ContainerServiceListResult>, callback?: msRest.ServiceCallback<Models.ContainerServiceListResult>): Promise<Models.ContainerServicesListByResourceGroupResponse> {
Expand All @@ -158,7 +167,7 @@ export class ContainerServices {

/**
* Gets a list of supported orchestrators in the specified subscription. The operation returns
* properties of each orchestrator including verison and available upgrades.
* properties of each orchestrator including version and available upgrades.
* @summary Gets a list of supported orchestrators in the specified subscription.
* @param location The name of a supported Azure region.
* @param [options] The optional parameters
Expand Down Expand Up @@ -239,18 +248,21 @@ export class ContainerServices {
* @summary Gets a list of container services in the specified subscription.
* @param nextPageLink The NextLink from the previous successful call to List operation.
* @param [options] The optional parameters
* @deprecated This operation is deprecated. Please do not use it any longer.
* @returns Promise<Models.ContainerServicesListNextResponse>
*/
listNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.ContainerServicesListNextResponse>;
/**
* @param nextPageLink The NextLink from the previous successful call to List operation.
* @param callback The callback
* @deprecated This operation is deprecated. Please do not use it any longer.
*/
listNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.ContainerServiceListResult>): void;
/**
* @param nextPageLink The NextLink from the previous successful call to List operation.
* @param options The optional parameters
* @param callback The callback
* @deprecated This operation is deprecated. Please do not use it any longer.
*/
listNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.ContainerServiceListResult>): void;
listNext(nextPageLink: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.ContainerServiceListResult>, callback?: msRest.ServiceCallback<Models.ContainerServiceListResult>): Promise<Models.ContainerServicesListNextResponse> {
Expand All @@ -270,18 +282,21 @@ export class ContainerServices {
* @summary Gets a list of container services in the specified resource group.
* @param nextPageLink The NextLink from the previous successful call to List operation.
* @param [options] The optional parameters
* @deprecated This operation is deprecated. Please do not use it any longer.
* @returns Promise<Models.ContainerServicesListByResourceGroupNextResponse>
*/
listByResourceGroupNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.ContainerServicesListByResourceGroupNextResponse>;
/**
* @param nextPageLink The NextLink from the previous successful call to List operation.
* @param callback The callback
* @deprecated This operation is deprecated. Please do not use it any longer.
*/
listByResourceGroupNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.ContainerServiceListResult>): void;
/**
* @param nextPageLink The NextLink from the previous successful call to List operation.
* @param options The optional parameters
* @param callback The callback
* @deprecated This operation is deprecated. Please do not use it any longer.
*/
listByResourceGroupNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.ContainerServiceListResult>): void;
listByResourceGroupNext(nextPageLink: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback<Models.ContainerServiceListResult>, callback?: msRest.ServiceCallback<Models.ContainerServiceListResult>): Promise<Models.ContainerServicesListByResourceGroupNextResponse> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,8 @@ export class ManagedClusters {
}

/**
* Gets clusteradmin credential of the managed cluster with a specified resource group and name.
* @summary Gets clusteradmin credential of a managed cluster.
* Gets cluster admin credential of the managed cluster with a specified resource group and name.
* @summary Gets cluster admin credential of a managed cluster.
* @param resourceGroupName The name of the resource group.
* @param resourceName The name of the managed cluster resource.
* @param [options] The optional parameters
Expand Down Expand Up @@ -189,8 +189,8 @@ export class ManagedClusters {
}

/**
* Gets clusteruser credential of the managed cluster with a specified resource group and name.
* @summary Gets clusteruser credential of a managed cluster.
* Gets cluster user credential of the managed cluster with a specified resource group and name.
* @summary Gets cluster user credential of a managed cluster.
* @param resourceGroupName The name of the resource group.
* @param resourceName The name of the managed cluster resource.
* @param [options] The optional parameters
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,23 +84,23 @@ export class OpenShiftManagedClusters {
}

/**
* Gets the details of the managed openshift cluster with a specified resource group and name.
* @summary Gets a openshift managed cluster.
* Gets the details of the managed OpenShift cluster with a specified resource group and name.
* @summary Gets a OpenShift managed cluster.
* @param resourceGroupName The name of the resource group.
* @param resourceName The name of the openshift managed cluster resource.
* @param resourceName The name of the OpenShift managed cluster resource.
* @param [options] The optional parameters
* @returns Promise<Models.OpenShiftManagedClustersGetResponse>
*/
get(resourceGroupName: string, resourceName: string, options?: msRest.RequestOptionsBase): Promise<Models.OpenShiftManagedClustersGetResponse>;
/**
* @param resourceGroupName The name of the resource group.
* @param resourceName The name of the openshift managed cluster resource.
* @param resourceName The name of the OpenShift managed cluster resource.
* @param callback The callback
*/
get(resourceGroupName: string, resourceName: string, callback: msRest.ServiceCallback<Models.OpenShiftManagedCluster>): void;
/**
* @param resourceGroupName The name of the resource group.
* @param resourceName The name of the openshift managed cluster resource.
* @param resourceName The name of the OpenShift managed cluster resource.
* @param options The optional parameters
* @param callback The callback
*/
Expand All @@ -117,11 +117,11 @@ export class OpenShiftManagedClusters {
}

/**
* Creates or updates a openshift managed cluster with the specified configuration for agents and
* Creates or updates a OpenShift managed cluster with the specified configuration for agents and
* OpenShift version.
* @summary Creates or updates an openshift managed cluster.
* @summary Creates or updates an OpenShift managed cluster.
* @param resourceGroupName The name of the resource group.
* @param resourceName The name of the openshift managed cluster resource.
* @param resourceName The name of the OpenShift managed cluster resource.
* @param parameters Parameters supplied to the Create or Update an OpenShift Managed Cluster
* operation.
* @param [options] The optional parameters
Expand All @@ -133,10 +133,10 @@ export class OpenShiftManagedClusters {
}

/**
* Updates an openshift managed cluster with the specified tags.
* @summary Updates tags on an openshift managed cluster.
* Updates an OpenShift managed cluster with the specified tags.
* @summary Updates tags on an OpenShift managed cluster.
* @param resourceGroupName The name of the resource group.
* @param resourceName The name of the openshift managed cluster resource.
* @param resourceName The name of the OpenShift managed cluster resource.
* @param parameters Parameters supplied to the Update OpenShift Managed Cluster Tags operation.
* @param [options] The optional parameters
* @returns Promise<Models.OpenShiftManagedClustersUpdateTagsResponse>
Expand All @@ -147,10 +147,10 @@ export class OpenShiftManagedClusters {
}

/**
* Deletes the openshift managed cluster with a specified resource group and name.
* @summary Deletes an openshift managed cluster.
* Deletes the OpenShift managed cluster with a specified resource group and name.
* @summary Deletes an OpenShift managed cluster.
* @param resourceGroupName The name of the resource group.
* @param resourceName The name of the openshift managed cluster resource.
* @param resourceName The name of the OpenShift managed cluster resource.
* @param [options] The optional parameters
* @returns Promise<msRest.RestResponse>
*/
Expand All @@ -160,11 +160,11 @@ export class OpenShiftManagedClusters {
}

/**
* Creates or updates a openshift managed cluster with the specified configuration for agents and
* Creates or updates a OpenShift managed cluster with the specified configuration for agents and
* OpenShift version.
* @summary Creates or updates an openshift managed cluster.
* @summary Creates or updates an OpenShift managed cluster.
* @param resourceGroupName The name of the resource group.
* @param resourceName The name of the openshift managed cluster resource.
* @param resourceName The name of the OpenShift managed cluster resource.
* @param parameters Parameters supplied to the Create or Update an OpenShift Managed Cluster
* operation.
* @param [options] The optional parameters
Expand All @@ -183,10 +183,10 @@ export class OpenShiftManagedClusters {
}

/**
* Updates an openshift managed cluster with the specified tags.
* @summary Updates tags on an openshift managed cluster.
* Updates an OpenShift managed cluster with the specified tags.
* @summary Updates tags on an OpenShift managed cluster.
* @param resourceGroupName The name of the resource group.
* @param resourceName The name of the openshift managed cluster resource.
* @param resourceName The name of the OpenShift managed cluster resource.
* @param parameters Parameters supplied to the Update OpenShift Managed Cluster Tags operation.
* @param [options] The optional parameters
* @returns Promise<msRestAzure.LROPoller>
Expand All @@ -204,10 +204,10 @@ export class OpenShiftManagedClusters {
}

/**
* Deletes the openshift managed cluster with a specified resource group and name.
* @summary Deletes an openshift managed cluster.
* Deletes the OpenShift managed cluster with a specified resource group and name.
* @summary Deletes an OpenShift managed cluster.
* @param resourceGroupName The name of the resource group.
* @param resourceName The name of the openshift managed cluster resource.
* @param resourceName The name of the OpenShift managed cluster resource.
* @param [options] The optional parameters
* @returns Promise<msRestAzure.LROPoller>
*/
Expand Down