Skip to content
Closed
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
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