Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoPR containerservices/resource-manager] [DO NOT MERGE] [AKS] add C# config to readme.md #843

Merged
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 @@ -158,7 +158,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
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