Skip to content
This repository was archived by the owner on May 5, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
[AutoPR containerinstance/resource-manager] Container Instance - Upda…
…te Fields For Easier to Understand Documentation (#3005)

* Generated from a58ad31ca0f190c08d519f0e57f0251b719de4c3

Udpating other fields to have better documentation

* Generated from 57c26f8ddc6cce63febe8113dcf5a0c4e638c1ea

Changing Container_Exec -> Conatiner_ExecuteCommand for better understanding
  • Loading branch information
AutorestCI authored Jun 14, 2018
commit e15e27260dfd7435cca8aab3fc145a2f8ebc8782
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