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 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 @@ -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