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

Commit

Permalink
Generated from da1a51b7fc9dc3e5988ad259a215ebeb7a730b96 (#2903)
Browse files Browse the repository at this point in the history
Added GroupType property in HybridWorkerGroup
  • Loading branch information
AutorestCI authored May 29, 2018
1 parent 742f07d commit 5154462
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ class HybridRunbookWorkerGroup {
* @member {object} [credential] Sets the credential of a worker group.
* @member {string} [credential.name] Gets or sets the name of the
* credential.
* @member {string} [groupType] Type of the HybridWorkerGroup. Possible
* values include: 'User', 'System'
*/
constructor() {
}
Expand Down Expand Up @@ -80,6 +82,13 @@ class HybridRunbookWorkerGroup {
name: 'Composite',
className: 'RunAsCredentialAssociationProperty'
}
},
groupType: {
required: false,
serializedName: 'groupType',
type: {
name: 'String'
}
}
}
}
Expand Down
3 changes: 3 additions & 0 deletions lib/services/automationManagement/lib/models/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1558,12 +1558,15 @@ export interface RunAsCredentialAssociationProperty {
* runbook workers.
* @member {object} [credential] Sets the credential of a worker group.
* @member {string} [credential.name] Gets or sets the name of the credential.
* @member {string} [groupType] Type of the HybridWorkerGroup. Possible values
* include: 'User', 'System'
*/
export interface HybridRunbookWorkerGroup {
id?: string;
name?: string;
hybridRunbookWorkers?: HybridRunbookWorker[];
credential?: RunAsCredentialAssociationProperty;
groupType?: string;
}

/**
Expand Down

0 comments on commit 5154462

Please sign in to comment.