Skip to content

Commit

Permalink
[AutoPR] automation/resource-manager (#287)
Browse files Browse the repository at this point in the history
* [AutoPR automation/resource-manager] Swagger change for Update configuration dynamic group (#171)

* Generated from fc491695edaba989b6f14e4a7541852d0e98b780

Addressing the feedback and adding the sample examples

* Generated from 010387285df8d64aa4d2a36593fce01cd95e2efe

fixing the capitalization and grammer on the description

* Generated from 7546ceb3e18b6db70ad4da5aadf2d1db24d621e4

Changes after reviewing the decriptions

* Generated from 915d19ed0f6a41d54a20040b8166514b5c9ef7f8

Changes after reviewing the descriptions

* Generated from 38e72e8bf46e5fcbea6f9cfda52f6f98e3560a24 (#205)

Removing PartialSync and adding IncrementalSync for sync type. Also, updating examples.
  • Loading branch information
AutorestCI authored and kpajdzik committed Oct 23, 2018
1 parent cdfc669 commit de640e7
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions packages/@azure/arm-automation/dist/arm-automation.js
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@
})(ProvisioningState || (ProvisioningState = {}));
/**
* Defines values for SyncType.
* Possible values include: 'IncrementalSync', 'FullSync'
* Possible values include: 'PartialSync', 'FullSync'
* There could be more values for this enum apart from the ones defined here.If
* you want to set a value that is not from the known values then you can do
* the following:
Expand All @@ -382,7 +382,7 @@
*/
var SyncType;
(function (SyncType) {
SyncType["IncrementalSync"] = "IncrementalSync";
SyncType["PartialSync"] = "PartialSync";
SyncType["FullSync"] = "FullSync";
})(SyncType || (SyncType = {}));
/**
Expand Down
2 changes: 1 addition & 1 deletion packages/@azure/arm-automation/dist/arm-automation.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/@azure/arm-automation/dist/arm-automation.min.js

Large diffs are not rendered by default.

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions packages/@azure/arm-automation/lib/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2907,7 +2907,7 @@ export interface SourceControlSyncJob {
readonly endTime?: Date;
/**
* @member {SyncType} [syncType] The sync type. Possible values include:
* 'IncrementalSync', 'FullSync'
* 'PartialSync', 'FullSync'
*/
syncType?: SyncType;
}
Expand Down Expand Up @@ -2966,7 +2966,7 @@ export interface SourceControlSyncJobById {
readonly endTime?: Date;
/**
* @member {SyncType} [syncType] The sync type. Possible values include:
* 'IncrementalSync', 'FullSync'
* 'PartialSync', 'FullSync'
*/
syncType?: SyncType;
/**
Expand Down Expand Up @@ -5683,7 +5683,7 @@ export enum ProvisioningState {

/**
* Defines values for SyncType.
* Possible values include: 'IncrementalSync', 'FullSync'
* Possible values include: 'PartialSync', 'FullSync'
* There could be more values for this enum apart from the ones defined here.If
* you want to set a value that is not from the known values then you can do
* the following:
Expand All @@ -5692,7 +5692,7 @@ export enum ProvisioningState {
* @enum {string}
*/
export enum SyncType {
IncrementalSync = 'IncrementalSync',
PartialSync = 'PartialSync',
FullSync = 'FullSync',
}

Expand Down

0 comments on commit de640e7

Please sign in to comment.