Skip to content
This repository has been archived by the owner on May 5, 2023. It is now read-only.

[AutoPR containerinstance/resource-manager] Container Instance - Update Fields For Easier to Understand Documentation #3005

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
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,7 @@ export default class ContainerInstanceManagementClient extends AzureServiceClien
containerGroups: operations.ContainerGroups;
operations: operations.Operations;
containerGroupUsage: operations.ContainerGroupUsage;
containerLogs: operations.ContainerLogs;
startContainer: operations.StartContainer;
containerOperations: operations.ContainerOperations;
}

export { ContainerInstanceManagementClient, models as ContainerInstanceManagementModels };
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,7 @@ class ContainerInstanceManagementClient extends ServiceClient {
this.containerGroups = new operations.ContainerGroups(this);
this.operations = new operations.Operations(this);
this.containerGroupUsage = new operations.ContainerGroupUsage(this);
this.containerLogs = new operations.ContainerLogs(this);
this.startContainer = new operations.StartContainer(this);
this.containerOperations = new operations.ContainerOperations(this);
this.models = models;
msRest.addSerializationMixin(this);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
const models = require('./index');

/**
* The start container exec request.
* The container exec request.
*
*/
class ContainerExecRequest {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@ export interface ContainerExecRequestTerminalSize {
* @class
* Initializes a new instance of the ContainerExecRequest class.
* @constructor
* The start container exec request.
* The container exec request.
*
* @member {string} [command] The command to be executed.
* @member {object} [terminalSize] The size of the terminal.
Expand Down
Loading