Skip to content

Commit ad13c3d

Browse files
author
SDKAuto
committed
CodeGen from PR 16468 in Azure/azure-rest-api-specs
Merge 758df821bbde1366abbeca3b9fc5779f288358a2 into f900b57
1 parent a5cdc52 commit ad13c3d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+20919
-18
lines changed
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"autorest": "3.4.2",
2+
"autorest": "3.4.5",
33
"use": [
4-
"@autorest/python@5.8.1",
4+
"@autorest/python@5.8.4",
55
"@autorest/modelerfour@4.19.2"
66
],
7-
"commit": "c803720c6bcfcb0fcf4c97f3463ec33a18f9e55c",
7+
"commit": "680bd9cfd1c3df151012f2a4476de26ff54398a4",
88
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
9-
"autorest_command": "autorest specification/appplatform/resource-manager/readme.md --multiapi --python --python-mode=update --python-sdks-folder=/home/vsts/work/1/s/azure-sdk-for-python/sdk --track2 --use=@autorest/python@5.8.1 --use=@autorest/modelerfour@4.19.2 --version=3.4.2",
9+
"autorest_command": "autorest specification/appplatform/resource-manager/readme.md --multiapi --python --python-mode=update --python-sdks-folder=/home/vsts/work/1/s/azure-sdk-for-python/sdk --track2 --use=@autorest/python@5.8.4 --use=@autorest/modelerfour@4.19.2 --version=3.4.5",
1010
"readme": "specification/appplatform/resource-manager/readme.md"
1111
}

sdk/appplatform/azure-mgmt-appplatform/azure/mgmt/appplatform/_app_platform_management_client.py

Lines changed: 50 additions & 0 deletions
Large diffs are not rendered by default.

sdk/appplatform/azure-mgmt-appplatform/azure/mgmt/appplatform/aio/_app_platform_management_client.py

Lines changed: 50 additions & 0 deletions
Large diffs are not rendered by default.

sdk/appplatform/azure-mgmt-appplatform/azure/mgmt/appplatform/v2019_05_01_preview/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
77
# --------------------------------------------------------------------------
88

9-
VERSION = "6.1.0"
9+
VERSION = "1.0.0b1"

sdk/appplatform/azure-mgmt-appplatform/azure/mgmt/appplatform/v2019_05_01_preview/models/_models.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1285,6 +1285,8 @@ class MetricSpecification(msrest.serialization.Model):
12851285
:type fill_gap_with_zero: bool
12861286
:param dimensions: Dimensions of the metric.
12871287
:type dimensions: list[~azure.mgmt.appplatform.v2019_05_01_preview.models.MetricDimension]
1288+
:param source_mdm_namespace: Name of the MDM namespace. Optional.
1289+
:type source_mdm_namespace: str
12881290
"""
12891291

12901292
_attribute_map = {
@@ -1298,6 +1300,7 @@ class MetricSpecification(msrest.serialization.Model):
12981300
'supported_time_grain_types': {'key': 'supportedTimeGrainTypes', 'type': '[str]'},
12991301
'fill_gap_with_zero': {'key': 'fillGapWithZero', 'type': 'bool'},
13001302
'dimensions': {'key': 'dimensions', 'type': '[MetricDimension]'},
1303+
'source_mdm_namespace': {'key': 'sourceMdmNamespace', 'type': 'str'},
13011304
}
13021305

13031306
def __init__(
@@ -1315,6 +1318,7 @@ def __init__(
13151318
self.supported_time_grain_types = kwargs.get('supported_time_grain_types', None)
13161319
self.fill_gap_with_zero = kwargs.get('fill_gap_with_zero', None)
13171320
self.dimensions = kwargs.get('dimensions', None)
1321+
self.source_mdm_namespace = kwargs.get('source_mdm_namespace', None)
13181322

13191323

13201324
class NameAvailability(msrest.serialization.Model):

sdk/appplatform/azure-mgmt-appplatform/azure/mgmt/appplatform/v2019_05_01_preview/models/_models_py3.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1408,6 +1408,8 @@ class MetricSpecification(msrest.serialization.Model):
14081408
:type fill_gap_with_zero: bool
14091409
:param dimensions: Dimensions of the metric.
14101410
:type dimensions: list[~azure.mgmt.appplatform.v2019_05_01_preview.models.MetricDimension]
1411+
:param source_mdm_namespace: Name of the MDM namespace. Optional.
1412+
:type source_mdm_namespace: str
14111413
"""
14121414

14131415
_attribute_map = {
@@ -1421,6 +1423,7 @@ class MetricSpecification(msrest.serialization.Model):
14211423
'supported_time_grain_types': {'key': 'supportedTimeGrainTypes', 'type': '[str]'},
14221424
'fill_gap_with_zero': {'key': 'fillGapWithZero', 'type': 'bool'},
14231425
'dimensions': {'key': 'dimensions', 'type': '[MetricDimension]'},
1426+
'source_mdm_namespace': {'key': 'sourceMdmNamespace', 'type': 'str'},
14241427
}
14251428

14261429
def __init__(
@@ -1436,6 +1439,7 @@ def __init__(
14361439
supported_time_grain_types: Optional[List[str]] = None,
14371440
fill_gap_with_zero: Optional[bool] = None,
14381441
dimensions: Optional[List["MetricDimension"]] = None,
1442+
source_mdm_namespace: Optional[str] = None,
14391443
**kwargs
14401444
):
14411445
super(MetricSpecification, self).__init__(**kwargs)
@@ -1449,6 +1453,7 @@ def __init__(
14491453
self.supported_time_grain_types = supported_time_grain_types
14501454
self.fill_gap_with_zero = fill_gap_with_zero
14511455
self.dimensions = dimensions
1456+
self.source_mdm_namespace = source_mdm_namespace
14521457

14531458

14541459
class NameAvailability(msrest.serialization.Model):

sdk/appplatform/azure-mgmt-appplatform/azure/mgmt/appplatform/v2020_07_01/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
77
# --------------------------------------------------------------------------
88

9-
VERSION = "6.1.0"
9+
VERSION = "1.0.0b1"

sdk/appplatform/azure-mgmt-appplatform/azure/mgmt/appplatform/v2020_07_01/models/_models.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1353,6 +1353,8 @@ class MetricSpecification(msrest.serialization.Model):
13531353
:type fill_gap_with_zero: bool
13541354
:param dimensions: Dimensions of the metric.
13551355
:type dimensions: list[~azure.mgmt.appplatform.v2020_07_01.models.MetricDimension]
1356+
:param source_mdm_namespace: Name of the MDM namespace. Optional.
1357+
:type source_mdm_namespace: str
13561358
"""
13571359

13581360
_attribute_map = {
@@ -1366,6 +1368,7 @@ class MetricSpecification(msrest.serialization.Model):
13661368
'supported_time_grain_types': {'key': 'supportedTimeGrainTypes', 'type': '[str]'},
13671369
'fill_gap_with_zero': {'key': 'fillGapWithZero', 'type': 'bool'},
13681370
'dimensions': {'key': 'dimensions', 'type': '[MetricDimension]'},
1371+
'source_mdm_namespace': {'key': 'sourceMdmNamespace', 'type': 'str'},
13691372
}
13701373

13711374
def __init__(
@@ -1383,6 +1386,7 @@ def __init__(
13831386
self.supported_time_grain_types = kwargs.get('supported_time_grain_types', None)
13841387
self.fill_gap_with_zero = kwargs.get('fill_gap_with_zero', None)
13851388
self.dimensions = kwargs.get('dimensions', None)
1389+
self.source_mdm_namespace = kwargs.get('source_mdm_namespace', None)
13861390

13871391

13881392
class MonitoringSettingProperties(msrest.serialization.Model):

sdk/appplatform/azure-mgmt-appplatform/azure/mgmt/appplatform/v2020_07_01/models/_models_py3.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1482,6 +1482,8 @@ class MetricSpecification(msrest.serialization.Model):
14821482
:type fill_gap_with_zero: bool
14831483
:param dimensions: Dimensions of the metric.
14841484
:type dimensions: list[~azure.mgmt.appplatform.v2020_07_01.models.MetricDimension]
1485+
:param source_mdm_namespace: Name of the MDM namespace. Optional.
1486+
:type source_mdm_namespace: str
14851487
"""
14861488

14871489
_attribute_map = {
@@ -1495,6 +1497,7 @@ class MetricSpecification(msrest.serialization.Model):
14951497
'supported_time_grain_types': {'key': 'supportedTimeGrainTypes', 'type': '[str]'},
14961498
'fill_gap_with_zero': {'key': 'fillGapWithZero', 'type': 'bool'},
14971499
'dimensions': {'key': 'dimensions', 'type': '[MetricDimension]'},
1500+
'source_mdm_namespace': {'key': 'sourceMdmNamespace', 'type': 'str'},
14981501
}
14991502

15001503
def __init__(
@@ -1510,6 +1513,7 @@ def __init__(
15101513
supported_time_grain_types: Optional[List[str]] = None,
15111514
fill_gap_with_zero: Optional[bool] = None,
15121515
dimensions: Optional[List["MetricDimension"]] = None,
1516+
source_mdm_namespace: Optional[str] = None,
15131517
**kwargs
15141518
):
15151519
super(MetricSpecification, self).__init__(**kwargs)
@@ -1523,6 +1527,7 @@ def __init__(
15231527
self.supported_time_grain_types = supported_time_grain_types
15241528
self.fill_gap_with_zero = fill_gap_with_zero
15251529
self.dimensions = dimensions
1530+
self.source_mdm_namespace = source_mdm_namespace
15261531

15271532

15281533
class MonitoringSettingProperties(msrest.serialization.Model):

sdk/appplatform/azure-mgmt-appplatform/azure/mgmt/appplatform/v2020_11_01_preview/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
77
# --------------------------------------------------------------------------
88

9-
VERSION = "6.1.0"
9+
VERSION = "1.0.0b1"

0 commit comments

Comments
 (0)