Skip to content

Commit f0223a4

Browse files
authored
[AutoPR automation/resource-manager] Updating sync type property from PartialSync to IncrementalSync. (#3628)
* Generated from 38e72e8bf46e5fcbea6f9cfda52f6f98e3560a24 Removing PartialSync and adding IncrementalSync for sync type. Also, updating examples. * Packaging update of azure-mgmt-automation
1 parent d737a24 commit f0223a4

6 files changed

+12
-9
lines changed

azure-mgmt-automation/MANIFEST.in

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
11
include *.rst
2+
include azure/__init__.py
3+
include azure/mgmt/__init__.py
4+

azure-mgmt-automation/azure/mgmt/automation/models/automation_client_enums.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ class ProvisioningState(str, Enum):
156156

157157
class SyncType(str, Enum):
158158

159-
partial_sync = "PartialSync"
159+
incremental_sync = "IncrementalSync"
160160
full_sync = "FullSync"
161161

162162

azure-mgmt-automation/azure/mgmt/automation/models/source_control_sync_job.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ class SourceControlSyncJob(Model):
3636
:vartype start_time: datetime
3737
:ivar end_time: The end time of the job.
3838
:vartype end_time: datetime
39-
:param sync_type: The sync type. Possible values include: 'PartialSync',
40-
'FullSync'
39+
:param sync_type: The sync type. Possible values include:
40+
'IncrementalSync', 'FullSync'
4141
:type sync_type: str or ~azure.mgmt.automation.models.SyncType
4242
"""
4343

azure-mgmt-automation/azure/mgmt/automation/models/source_control_sync_job_by_id.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ class SourceControlSyncJobById(Model):
3232
:vartype start_time: datetime
3333
:ivar end_time: The end time of the job.
3434
:vartype end_time: datetime
35-
:param sync_type: The sync type. Possible values include: 'PartialSync',
36-
'FullSync'
35+
:param sync_type: The sync type. Possible values include:
36+
'IncrementalSync', 'FullSync'
3737
:type sync_type: str or ~azure.mgmt.automation.models.SyncType
3838
:param exception: The exceptions that occured while running the sync job.
3939
:type exception: str

azure-mgmt-automation/azure/mgmt/automation/models/source_control_sync_job_by_id_py3.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ class SourceControlSyncJobById(Model):
3232
:vartype start_time: datetime
3333
:ivar end_time: The end time of the job.
3434
:vartype end_time: datetime
35-
:param sync_type: The sync type. Possible values include: 'PartialSync',
36-
'FullSync'
35+
:param sync_type: The sync type. Possible values include:
36+
'IncrementalSync', 'FullSync'
3737
:type sync_type: str or ~azure.mgmt.automation.models.SyncType
3838
:param exception: The exceptions that occured while running the sync job.
3939
:type exception: str

azure-mgmt-automation/azure/mgmt/automation/models/source_control_sync_job_py3.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ class SourceControlSyncJob(Model):
3636
:vartype start_time: datetime
3737
:ivar end_time: The end time of the job.
3838
:vartype end_time: datetime
39-
:param sync_type: The sync type. Possible values include: 'PartialSync',
40-
'FullSync'
39+
:param sync_type: The sync type. Possible values include:
40+
'IncrementalSync', 'FullSync'
4141
:type sync_type: str or ~azure.mgmt.automation.models.SyncType
4242
"""
4343

0 commit comments

Comments
 (0)