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 sdk/netapp/azure-mgmt-netapp/_meta.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"commit": "7a848fa439e779117793063aff964d7082a7f6f8",
"commit": "5a73740cee9aab59b4a2825d17305441ae639ec7",
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
"autorest": "3.10.2",
"use": [
"@autorest/[email protected]",
"@autorest/[email protected]"
],
"autorest_command": "autorest specification/netapp/resource-manager/readme.md --generate-sample=True --generate-test=True --include-x-ms-examples-original-file=True --python --python-sdks-folder=/mnt/vss/_work/1/azure-sdk-for-python/sdk --use=@autorest/[email protected] --use=@autorest/[email protected] --version=3.10.2 --version-tolerant=False",
"autorest_command": "autorest specification/netapp/resource-manager/readme.md --generate-sample=True --generate-test=True --include-x-ms-examples-original-file=True --python --python-sdks-folder=/mnt/vss/_work/1/s/azure-sdk-for-python/sdk --use=@autorest/[email protected] --use=@autorest/[email protected] --version=3.10.2 --version-tolerant=False",
"readme": "specification/netapp/resource-manager/readme.md"
}
2 changes: 1 addition & 1 deletion sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------

VERSION = "13.3.0"
VERSION = "5.1.0"
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ class ActiveDirectory(_serialization.Model): # pylint: disable=too-many-instanc
"status": {"readonly": True},
"status_details": {"readonly": True},
"kdc_ip": {
"pattern": r"^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)((, ?)(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?))*$"
"pattern": r"^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$"
},
"ad_name": {"max_length": 64, "min_length": 1},
"server_root_ca_certificate": {"max_length": 10240, "min_length": 1},
Expand Down Expand Up @@ -3421,16 +3421,15 @@ class ReplicationObject(_serialization.Model):

Variables are only populated by the server, and will be ignored when sending a request.

All required parameters must be populated in order to send to server.

:ivar replication_id: Id.
:vartype replication_id: str
:ivar endpoint_type: Indicates whether the local volume is the source or destination for the
Volume Replication. Known values are: "src" and "dst".
:vartype endpoint_type: str or ~azure.mgmt.netapp.models.EndpointType
:ivar replication_schedule: Schedule. Known values are: "_10minutely", "hourly", and "daily".
:vartype replication_schedule: str or ~azure.mgmt.netapp.models.ReplicationSchedule
:ivar remote_volume_resource_id: The resource ID of the remote volume. Required for cross region and cross zone replication.
:ivar remote_volume_resource_id: The resource ID of the remote volume. Required for cross
region and cross zone replication.
:vartype remote_volume_resource_id: str
:ivar remote_path: The full path to a volume that is to be migrated into ANF. Required for
Migration volumes.
Expand All @@ -3455,9 +3454,9 @@ class ReplicationObject(_serialization.Model):
def __init__(
self,
*,
remote_volume_resource_id: Optional[str] = None,
endpoint_type: Optional[Union[str, "_models.EndpointType"]] = None,
replication_schedule: Optional[Union[str, "_models.ReplicationSchedule"]] = None,
remote_volume_resource_id: Optional[str] = None,
remote_path: Optional["_models.RemotePath"] = None,
remote_volume_region: Optional[str] = None,
**kwargs: Any
Expand All @@ -3469,7 +3468,8 @@ def __init__(
:keyword replication_schedule: Schedule. Known values are: "_10minutely", "hourly", and
"daily".
:paramtype replication_schedule: str or ~azure.mgmt.netapp.models.ReplicationSchedule
:keyword remote_volume_resource_id: The resource ID of the remote volume. Required for cross region and cross zone replication.
:keyword remote_volume_resource_id: The resource ID of the remote volume. Required for cross
region and cross zone replication.
:paramtype remote_volume_resource_id: str
:keyword remote_path: The full path to a volume that is to be migrated into ANF. Required for
Migration volumes.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,10 @@ def test_begin_create(self, resource_group):
"dataProtection": {
"backup": {"backupPolicyId": "str", "backupVaultId": "str", "policyEnforced": bool},
"replication": {
"remoteVolumeResourceId": "str",
"endpointType": "str",
"remotePath": {"externalHostName": "str", "serverName": "str", "volumeName": "str"},
"remoteVolumeRegion": "str",
"remoteVolumeResourceId": "str",
"replicationId": "str",
"replicationSchedule": "str",
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,10 @@ async def test_begin_create(self, resource_group):
"dataProtection": {
"backup": {"backupPolicyId": "str", "backupVaultId": "str", "policyEnforced": bool},
"replication": {
"remoteVolumeResourceId": "str",
"endpointType": "str",
"remotePath": {"externalHostName": "str", "serverName": "str", "volumeName": "str"},
"remoteVolumeRegion": "str",
"remoteVolumeResourceId": "str",
"replicationId": "str",
"replicationSchedule": "str",
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,10 @@ def test_begin_create_or_update(self, resource_group):
"dataProtection": {
"backup": {"backupPolicyId": "str", "backupVaultId": "str", "policyEnforced": bool},
"replication": {
"remoteVolumeResourceId": "str",
"endpointType": "str",
"remotePath": {"externalHostName": "str", "serverName": "str", "volumeName": "str"},
"remoteVolumeRegion": "str",
"remoteVolumeResourceId": "str",
"replicationId": "str",
"replicationSchedule": "str",
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@ async def test_begin_create_or_update(self, resource_group):
"dataProtection": {
"backup": {"backupPolicyId": "str", "backupVaultId": "str", "policyEnforced": bool},
"replication": {
"remoteVolumeResourceId": "str",
"endpointType": "str",
"remotePath": {"externalHostName": "str", "serverName": "str", "volumeName": "str"},
"remoteVolumeRegion": "str",
"remoteVolumeResourceId": "str",
"replicationId": "str",
"replicationSchedule": "str",
},
Expand Down