Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
e2beb9a
[AutoPR automation/resource-manager] Swagger change for Update config…
AutorestCI Oct 16, 2018
c377581
Generated from 38e72e8bf46e5fcbea6f9cfda52f6f98e3560a24 (#205)
AutorestCI Oct 16, 2018
8fc1a90
Regenerated "@azure/arm-automation" SDK.
kpajdzik Oct 19, 2018
fa71823
Regenerate @azure/arm-automation package
kpajdzik Oct 19, 2018
edbab97
Merge remote-tracking branch 'origin/restapi_auto_automation/resource…
kpajdzik Oct 19, 2018
8a1448c
Regenerated "@azure/arm-automation" SDK.
kpajdzik Oct 19, 2018
e397466
Merge remote-tracking branch 'origin/restapi_auto_automation/resource…
kpajdzik Oct 22, 2018
e7ae488
Regenerated "@azure/arm-automation" SDK.
kpajdzik Oct 22, 2018
04eb26a
Merge remote-tracking branch 'origin/master' into restapi_auto_automa…
kpajdzik Oct 22, 2018
68ed32d
Merge remote-tracking branch 'origin/restapi_auto_automation/resource…
kpajdzik Oct 23, 2018
f3e4540
Merge remote-tracking branch 'origin/master' into restapi_auto_automa…
kpajdzik Oct 23, 2018
109dde0
Regenerated "@azure/arm-automation" SDK.
kpajdzik Oct 23, 2018
b330347
Regenerate @azure/arm-automation package
kpajdzik Oct 23, 2018
2bcff8f
[AutoPR automation/resource-manager] Swagger change for pre and post …
AutorestCI Oct 23, 2018
06c87c2
Merge remote-tracking branch 'origin/restapi_auto_automation/resource…
kpajdzik Oct 24, 2018
ced40ba
Regenerated "@azure/arm-automation" SDK.
kpajdzik Oct 24, 2018
0abba34
Merge remote-tracking branch 'origin/restapi_auto_automation/resource…
kpajdzik Oct 26, 2018
b777d5c
Regenerated "@azure/arm-automation" SDK.
kpajdzik Oct 26, 2018
085dc65
Reset version to 1.0.0
kpajdzik Oct 26, 2018
459f246
Regenerated "@azure/arm-automation" SDK.
kpajdzik Oct 26, 2018
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
2 changes: 1 addition & 1 deletion packages/@azure/arm-automation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ See https://github.com/Azure/ms-rest-browserauth to learn how to authenticate to
console.log("The result is:");
console.log(result);
}).catch((err) => {
console.log('An error occurred:');
console.log("An error occurred:");
console.error(err);
});
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ export {
AzureQueryProperties,
TagSettingsProperties,
ScheduleProperties,
SoftwareUpdateConfigurationTasks,
TaskProperties,
SourceControl,
Job,
JobCollectionItem,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ export {
AzureQueryProperties,
TagSettingsProperties,
ScheduleProperties,
SoftwareUpdateConfigurationTasks,
TaskProperties,
SourceControl,
Job,
JobCollectionItem,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ export {
AzureQueryProperties,
TagSettingsProperties,
ScheduleProperties,
SoftwareUpdateConfigurationTasks,
TaskProperties,
SourceControl,
Job,
JobCollectionItem,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ export {
AzureQueryProperties,
TagSettingsProperties,
ScheduleProperties,
SoftwareUpdateConfigurationTasks,
TaskProperties,
SourceControl,
Job,
JobCollectionItem,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ export {
AzureQueryProperties,
TagSettingsProperties,
ScheduleProperties,
SoftwareUpdateConfigurationTasks,
TaskProperties,
SourceControl,
Job,
JobCollectionItem,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ export {
AzureQueryProperties,
TagSettingsProperties,
ScheduleProperties,
SoftwareUpdateConfigurationTasks,
TaskProperties,
SourceControl,
Job,
JobCollectionItem,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ export {
AzureQueryProperties,
TagSettingsProperties,
ScheduleProperties,
SoftwareUpdateConfigurationTasks,
TaskProperties,
SourceControl,
Job,
JobCollectionItem,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ export {
AzureQueryProperties,
TagSettingsProperties,
ScheduleProperties,
SoftwareUpdateConfigurationTasks,
TaskProperties,
SourceControl,
Job,
JobCollectionItem,
Expand Down
111 changes: 100 additions & 11 deletions packages/@azure/arm-automation/lib/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2166,9 +2166,9 @@ export interface AzureQueryProperties {
*/
scope?: string[];
/**
* @member {string[]} [location] List of locations to scope the query to.
* @member {string[]} [locations] List of locations to scope the query to.
*/
location?: string[];
locations?: string[];
/**
* @member {TagSettingsProperties} [tagSettings] Tag settings for the VM.
*/
Expand Down Expand Up @@ -2233,6 +2233,41 @@ export interface UpdateConfiguration {
targets?: TargetProperties;
}

/**
* @interface
* An interface representing TaskProperties.
* Task properties of the software update configuration.
*
*/
export interface TaskProperties {
/**
* @member {{ [propertyName: string]: string }} [parameters] Gets or sets the
* parameters of the task.
*/
parameters?: { [propertyName: string]: string };
/**
* @member {string} [source] Gets or sets the name of the runbook.
*/
source?: string;
}

/**
* @interface
* An interface representing SoftwareUpdateConfigurationTasks.
* Task properties of the software update configuration.
*
*/
export interface SoftwareUpdateConfigurationTasks {
/**
* @member {TaskProperties} [preTask] Pre task properties.
*/
preTask?: TaskProperties;
/**
* @member {TaskProperties} [postTask] Post task properties.
*/
postTask?: TaskProperties;
}

/**
* @interface
* An interface representing SoftwareUpdateConfiguration.
Expand Down Expand Up @@ -2277,18 +2312,18 @@ export interface SoftwareUpdateConfiguration extends BaseResource {
*/
readonly provisioningState?: string;
/**
* @member {ErrorResponse} [error] detailes of provisioning error
* @member {ErrorResponse} [error] Details of provisioning error
*/
error?: ErrorResponse;
/**
* @member {Date} [creationTime] Creation time of theresource, which only
* @member {Date} [creationTime] Creation time of the resource, which only
* appears in the response.
* **NOTE: This property will not be serialized. It can only be populated by
* the server.**
*/
readonly creationTime?: Date;
/**
* @member {string} [createdBy] createdBy property, which only appears in the
* @member {string} [createdBy] CreatedBy property, which only appears in the
* response.
* **NOTE: This property will not be serialized. It can only be populated by
* the server.**
Expand All @@ -2302,12 +2337,17 @@ export interface SoftwareUpdateConfiguration extends BaseResource {
*/
readonly lastModifiedTime?: Date;
/**
* @member {string} [lastModifiedBy] lastModifiedBy property, which only
* @member {string} [lastModifiedBy] LastModifiedBy property, which only
* appears in the response.
* **NOTE: This property will not be serialized. It can only be populated by
* the server.**
*/
readonly lastModifiedBy?: string;
/**
* @member {SoftwareUpdateConfigurationTasks} [tasks] Tasks information for
* the Software update configuration.
*/
tasks?: SoftwareUpdateConfigurationTasks;
}

/**
Expand Down Expand Up @@ -2422,6 +2462,46 @@ export interface UpdateConfigurationNavigation {
readonly name?: string;
}

/**
* @interface
* An interface representing SoftareUpdateConfigurationRunTaskProperties.
* Task properties of the software update configuration.
*
*/
export interface SoftareUpdateConfigurationRunTaskProperties {
/**
* @member {string} [status] The status of the task.
*/
status?: string;
/**
* @member {string} [source] The name of the source of the task.
*/
source?: string;
/**
* @member {string} [jobId] The job id of the task.
*/
jobId?: string;
}

/**
* @interface
* An interface representing SoftareUpdateConfigurationRunTasks.
* Software update configuration run tasks model.
*
*/
export interface SoftareUpdateConfigurationRunTasks {
/**
* @member {SoftareUpdateConfigurationRunTaskProperties} [preTask] Pre task
* properties.
*/
preTask?: SoftareUpdateConfigurationRunTaskProperties;
/**
* @member {SoftareUpdateConfigurationRunTaskProperties} [postTask] Post task
* properties.
*/
postTask?: SoftareUpdateConfigurationRunTaskProperties;
}

/**
* @interface
* An interface representing SoftwareUpdateConfigurationRun.
Expand Down Expand Up @@ -2453,7 +2533,7 @@ export interface SoftwareUpdateConfigurationRun {
*/
readonly status?: string;
/**
* @member {string} [configuredDuration] configured duration for the software
* @member {string} [configuredDuration] Configured duration for the software
* update configuration run.
* **NOTE: This property will not be serialized. It can only be populated by
* the server.**
Expand All @@ -2467,7 +2547,7 @@ export interface SoftwareUpdateConfigurationRun {
*/
readonly osType?: string;
/**
* @member {Date} [startTime] Etart time of the software update configuration
* @member {Date} [startTime] Start time of the software update configuration
* run.
* **NOTE: This property will not be serialized. It can only be populated by
* the server.**
Expand Down Expand Up @@ -2501,7 +2581,7 @@ export interface SoftwareUpdateConfigurationRun {
*/
readonly creationTime?: Date;
/**
* @member {string} [createdBy] createdBy property, which only appears in the
* @member {string} [createdBy] CreatedBy property, which only appears in the
* response.
* **NOTE: This property will not be serialized. It can only be populated by
* the server.**
Expand All @@ -2515,12 +2595,17 @@ export interface SoftwareUpdateConfigurationRun {
*/
readonly lastModifiedTime?: Date;
/**
* @member {string} [lastModifiedBy] lastModifiedBy property, which only
* @member {string} [lastModifiedBy] LastModifiedBy property, which only
* appears in the response.
* **NOTE: This property will not be serialized. It can only be populated by
* the server.**
*/
readonly lastModifiedBy?: string;
/**
* @member {SoftareUpdateConfigurationRunTasks} [tasks] Software update
* configuration tasks triggered in this run
*/
tasks?: SoftareUpdateConfigurationRunTasks;
}

/**
Expand Down Expand Up @@ -2677,6 +2762,10 @@ export interface SoftwareUpdateConfigurationMachineRun {
* the server.**
*/
readonly lastModifiedBy?: string;
/**
* @member {ErrorResponse} [error] detailes of provisioning error
*/
error?: ErrorResponse;
}

/**
Expand Down Expand Up @@ -4559,7 +4648,7 @@ export interface SoftwareUpdateConfigurationRunsListOptionalParams extends msRes
*/
filter?: string;
/**
* @member {string} [skip] number of entries you skip before returning
* @member {string} [skip] Number of entries you skip before returning
* results
*/
skip?: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ export {
AzureQueryProperties,
TagSettingsProperties,
ScheduleProperties,
SoftwareUpdateConfigurationTasks,
TaskProperties,
SourceControl,
DscNode,
DscNodeExtensionHandlerAssociationProperty,
Expand Down
Loading