Skip to content

[AutoRelease] t2-resource-2021-05-13-95786 #18686

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
May 13, 2021
Merged
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
22 changes: 22 additions & 0 deletions sdk/resources/azure-mgmt-resource/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# Release History

## 17.0.0 (2021-05-13)

**Features**

- Model Provider has a new parameter provider_authorization_consent_state
- Model TemplateSpec has a new parameter metadata
- Model GenericResourceExpanded has a new parameter extended_location
- Model Resource has a new parameter extended_location
- Model TemplateSpecVersion has a new parameter ui_form_definition
- Model TemplateSpecVersion has a new parameter metadata
- Model TemplateSpecVersion has a new parameter linked_templates
- Model TemplateSpecVersion has a new parameter main_template
- Model WhatIfChange has a new parameter unsupported_reason
- Model GenericResource has a new parameter extended_location
- Added operation ProvidersOperations.provider_permissions

**Breaking changes**

- Operation ProvidersOperations.register has a new signature
- Model TemplateSpecVersion no longer has parameter template
- Model TemplateSpecVersion no longer has parameter artifacts

## 16.1.0 (2021-04-16)

**Features**
Expand Down
2 changes: 1 addition & 1 deletion sdk/resources/azure-mgmt-resource/_meta.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"autorest": "3.3.0",
"use": "@autorest/[email protected]",
"commit": "c55d37d10ded9ef904539fe5814df3ea333b66a8",
"commit": "14d2ddf809ea5c8ce9d6017b5ab1aca96df05643",
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
"autorest_command": "autorest specification/resources/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/[email protected] --version=3.3.0",
"readme": "specification/resources/resource-manager/readme.md"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
# license information.
# --------------------------------------------------------------------------

VERSION = "16.1.0"
VERSION = "17.0.0"
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
# license information.
# --------------------------------------------------------------------------

VERSION = "16.1.0"
VERSION = "17.0.0"
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 = "16.1.0"
VERSION = "17.0.0"
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ class AzureCliScript(DeploymentScript):
:ivar status: Contains the results of script execution.
:vartype status: ~azure.mgmt.resource.deploymentscripts.v2019_10_01_preview.models.ScriptStatus
:ivar outputs: List of script outputs.
:vartype outputs: dict[str, object]
:vartype outputs: dict[str, str]
:param primary_script_uri: Uri for the script. This is the entry point for the external script.
:type primary_script_uri: str
:param supporting_script_uris: Supporting files for the external script.
Expand Down Expand Up @@ -219,7 +219,7 @@ class AzureCliScript(DeploymentScript):
'cleanup_preference': {'key': 'properties.cleanupPreference', 'type': 'str'},
'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'},
'status': {'key': 'properties.status', 'type': 'ScriptStatus'},
'outputs': {'key': 'properties.outputs', 'type': '{object}'},
'outputs': {'key': 'properties.outputs', 'type': '{str}'},
'primary_script_uri': {'key': 'properties.primaryScriptUri', 'type': 'str'},
'supporting_script_uris': {'key': 'properties.supportingScriptUris', 'type': '[str]'},
'script_content': {'key': 'properties.scriptContent', 'type': 'str'},
Expand Down Expand Up @@ -338,7 +338,7 @@ class DeploymentScriptPropertiesBase(msrest.serialization.Model):
:ivar status: Contains the results of script execution.
:vartype status: ~azure.mgmt.resource.deploymentscripts.v2019_10_01_preview.models.ScriptStatus
:ivar outputs: List of script outputs.
:vartype outputs: dict[str, object]
:vartype outputs: dict[str, str]
"""

_validation = {
Expand All @@ -353,7 +353,7 @@ class DeploymentScriptPropertiesBase(msrest.serialization.Model):
'cleanup_preference': {'key': 'cleanupPreference', 'type': 'str'},
'provisioning_state': {'key': 'provisioningState', 'type': 'str'},
'status': {'key': 'status', 'type': 'ScriptStatus'},
'outputs': {'key': 'outputs', 'type': '{object}'},
'outputs': {'key': 'outputs', 'type': '{str}'},
}

def __init__(
Expand Down Expand Up @@ -417,7 +417,7 @@ class AzureCliScriptProperties(DeploymentScriptPropertiesBase, ScriptConfigurati
:ivar status: Contains the results of script execution.
:vartype status: ~azure.mgmt.resource.deploymentscripts.v2019_10_01_preview.models.ScriptStatus
:ivar outputs: List of script outputs.
:vartype outputs: dict[str, object]
:vartype outputs: dict[str, str]
:param az_cli_version: Required. Azure CLI module version to be used.
:type az_cli_version: str
"""
Expand Down Expand Up @@ -445,7 +445,7 @@ class AzureCliScriptProperties(DeploymentScriptPropertiesBase, ScriptConfigurati
'cleanup_preference': {'key': 'cleanupPreference', 'type': 'str'},
'provisioning_state': {'key': 'provisioningState', 'type': 'str'},
'status': {'key': 'status', 'type': 'ScriptStatus'},
'outputs': {'key': 'outputs', 'type': '{object}'},
'outputs': {'key': 'outputs', 'type': '{str}'},
'az_cli_version': {'key': 'azCliVersion', 'type': 'str'},
}

Expand Down Expand Up @@ -519,7 +519,7 @@ class AzurePowerShellScript(DeploymentScript):
:ivar status: Contains the results of script execution.
:vartype status: ~azure.mgmt.resource.deploymentscripts.v2019_10_01_preview.models.ScriptStatus
:ivar outputs: List of script outputs.
:vartype outputs: dict[str, object]
:vartype outputs: dict[str, str]
:param primary_script_uri: Uri for the script. This is the entry point for the external script.
:type primary_script_uri: str
:param supporting_script_uris: Supporting files for the external script.
Expand Down Expand Up @@ -576,7 +576,7 @@ class AzurePowerShellScript(DeploymentScript):
'cleanup_preference': {'key': 'properties.cleanupPreference', 'type': 'str'},
'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'},
'status': {'key': 'properties.status', 'type': 'ScriptStatus'},
'outputs': {'key': 'properties.outputs', 'type': '{object}'},
'outputs': {'key': 'properties.outputs', 'type': '{str}'},
'primary_script_uri': {'key': 'properties.primaryScriptUri', 'type': 'str'},
'supporting_script_uris': {'key': 'properties.supportingScriptUris', 'type': '[str]'},
'script_content': {'key': 'properties.scriptContent', 'type': 'str'},
Expand Down Expand Up @@ -659,7 +659,7 @@ class AzurePowerShellScriptProperties(DeploymentScriptPropertiesBase, ScriptConf
:ivar status: Contains the results of script execution.
:vartype status: ~azure.mgmt.resource.deploymentscripts.v2019_10_01_preview.models.ScriptStatus
:ivar outputs: List of script outputs.
:vartype outputs: dict[str, object]
:vartype outputs: dict[str, str]
:param az_power_shell_version: Required. Azure PowerShell module version to be used.
:type az_power_shell_version: str
"""
Expand Down Expand Up @@ -687,7 +687,7 @@ class AzurePowerShellScriptProperties(DeploymentScriptPropertiesBase, ScriptConf
'cleanup_preference': {'key': 'cleanupPreference', 'type': 'str'},
'provisioning_state': {'key': 'provisioningState', 'type': 'str'},
'status': {'key': 'status', 'type': 'ScriptStatus'},
'outputs': {'key': 'outputs', 'type': '{object}'},
'outputs': {'key': 'outputs', 'type': '{str}'},
'az_power_shell_version': {'key': 'azPowerShellVersion', 'type': 'str'},
}

Expand Down Expand Up @@ -873,7 +873,7 @@ class ErrorAdditionalInfo(msrest.serialization.Model):
:ivar type: The additional info type.
:vartype type: str
:ivar info: The additional info.
:vartype info: object
:vartype info: str
"""

_validation = {
Expand All @@ -883,7 +883,7 @@ class ErrorAdditionalInfo(msrest.serialization.Model):

_attribute_map = {
'type': {'key': 'type', 'type': 'str'},
'info': {'key': 'info', 'type': 'object'},
'info': {'key': 'info', 'type': 'str'},
}

def __init__(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ class AzureCliScript(DeploymentScript):
:ivar status: Contains the results of script execution.
:vartype status: ~azure.mgmt.resource.deploymentscripts.v2019_10_01_preview.models.ScriptStatus
:ivar outputs: List of script outputs.
:vartype outputs: dict[str, object]
:vartype outputs: dict[str, str]
:param primary_script_uri: Uri for the script. This is the entry point for the external script.
:type primary_script_uri: str
:param supporting_script_uris: Supporting files for the external script.
Expand Down Expand Up @@ -228,7 +228,7 @@ class AzureCliScript(DeploymentScript):
'cleanup_preference': {'key': 'properties.cleanupPreference', 'type': 'str'},
'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'},
'status': {'key': 'properties.status', 'type': 'ScriptStatus'},
'outputs': {'key': 'properties.outputs', 'type': '{object}'},
'outputs': {'key': 'properties.outputs', 'type': '{str}'},
'primary_script_uri': {'key': 'properties.primaryScriptUri', 'type': 'str'},
'supporting_script_uris': {'key': 'properties.supportingScriptUris', 'type': '[str]'},
'script_content': {'key': 'properties.scriptContent', 'type': 'str'},
Expand Down Expand Up @@ -372,7 +372,7 @@ class DeploymentScriptPropertiesBase(msrest.serialization.Model):
:ivar status: Contains the results of script execution.
:vartype status: ~azure.mgmt.resource.deploymentscripts.v2019_10_01_preview.models.ScriptStatus
:ivar outputs: List of script outputs.
:vartype outputs: dict[str, object]
:vartype outputs: dict[str, str]
"""

_validation = {
Expand All @@ -387,7 +387,7 @@ class DeploymentScriptPropertiesBase(msrest.serialization.Model):
'cleanup_preference': {'key': 'cleanupPreference', 'type': 'str'},
'provisioning_state': {'key': 'provisioningState', 'type': 'str'},
'status': {'key': 'status', 'type': 'ScriptStatus'},
'outputs': {'key': 'outputs', 'type': '{object}'},
'outputs': {'key': 'outputs', 'type': '{str}'},
}

def __init__(
Expand Down Expand Up @@ -455,7 +455,7 @@ class AzureCliScriptProperties(DeploymentScriptPropertiesBase, ScriptConfigurati
:ivar status: Contains the results of script execution.
:vartype status: ~azure.mgmt.resource.deploymentscripts.v2019_10_01_preview.models.ScriptStatus
:ivar outputs: List of script outputs.
:vartype outputs: dict[str, object]
:vartype outputs: dict[str, str]
:param az_cli_version: Required. Azure CLI module version to be used.
:type az_cli_version: str
"""
Expand Down Expand Up @@ -483,7 +483,7 @@ class AzureCliScriptProperties(DeploymentScriptPropertiesBase, ScriptConfigurati
'cleanup_preference': {'key': 'cleanupPreference', 'type': 'str'},
'provisioning_state': {'key': 'provisioningState', 'type': 'str'},
'status': {'key': 'status', 'type': 'ScriptStatus'},
'outputs': {'key': 'outputs', 'type': '{object}'},
'outputs': {'key': 'outputs', 'type': '{str}'},
'az_cli_version': {'key': 'azCliVersion', 'type': 'str'},
}

Expand Down Expand Up @@ -570,7 +570,7 @@ class AzurePowerShellScript(DeploymentScript):
:ivar status: Contains the results of script execution.
:vartype status: ~azure.mgmt.resource.deploymentscripts.v2019_10_01_preview.models.ScriptStatus
:ivar outputs: List of script outputs.
:vartype outputs: dict[str, object]
:vartype outputs: dict[str, str]
:param primary_script_uri: Uri for the script. This is the entry point for the external script.
:type primary_script_uri: str
:param supporting_script_uris: Supporting files for the external script.
Expand Down Expand Up @@ -627,7 +627,7 @@ class AzurePowerShellScript(DeploymentScript):
'cleanup_preference': {'key': 'properties.cleanupPreference', 'type': 'str'},
'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'},
'status': {'key': 'properties.status', 'type': 'ScriptStatus'},
'outputs': {'key': 'properties.outputs', 'type': '{object}'},
'outputs': {'key': 'properties.outputs', 'type': '{str}'},
'primary_script_uri': {'key': 'properties.primaryScriptUri', 'type': 'str'},
'supporting_script_uris': {'key': 'properties.supportingScriptUris', 'type': '[str]'},
'script_content': {'key': 'properties.scriptContent', 'type': 'str'},
Expand Down Expand Up @@ -726,7 +726,7 @@ class AzurePowerShellScriptProperties(DeploymentScriptPropertiesBase, ScriptConf
:ivar status: Contains the results of script execution.
:vartype status: ~azure.mgmt.resource.deploymentscripts.v2019_10_01_preview.models.ScriptStatus
:ivar outputs: List of script outputs.
:vartype outputs: dict[str, object]
:vartype outputs: dict[str, str]
:param az_power_shell_version: Required. Azure PowerShell module version to be used.
:type az_power_shell_version: str
"""
Expand Down Expand Up @@ -754,7 +754,7 @@ class AzurePowerShellScriptProperties(DeploymentScriptPropertiesBase, ScriptConf
'cleanup_preference': {'key': 'cleanupPreference', 'type': 'str'},
'provisioning_state': {'key': 'provisioningState', 'type': 'str'},
'status': {'key': 'status', 'type': 'ScriptStatus'},
'outputs': {'key': 'outputs', 'type': '{object}'},
'outputs': {'key': 'outputs', 'type': '{str}'},
'az_power_shell_version': {'key': 'azPowerShellVersion', 'type': 'str'},
}

Expand Down Expand Up @@ -965,7 +965,7 @@ class ErrorAdditionalInfo(msrest.serialization.Model):
:ivar type: The additional info type.
:vartype type: str
:ivar info: The additional info.
:vartype info: object
:vartype info: str
"""

_validation = {
Expand All @@ -975,7 +975,7 @@ class ErrorAdditionalInfo(msrest.serialization.Model):

_attribute_map = {
'type': {'key': 'type', 'type': 'str'},
'info': {'key': 'info', 'type': 'object'},
'info': {'key': 'info', 'type': 'str'},
}

def __init__(
Expand Down
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 = "16.1.0"
VERSION = "17.0.0"
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ class AzureCliScript(DeploymentScript):
:ivar status: Contains the results of script execution.
:vartype status: ~azure.mgmt.resource.deploymentscripts.v2020_10_01.models.ScriptStatus
:ivar outputs: List of script outputs.
:vartype outputs: dict[str, object]
:vartype outputs: dict[str, str]
:param primary_script_uri: Uri for the script. This is the entry point for the external script.
:type primary_script_uri: str
:param supporting_script_uris: Supporting files for the external script.
Expand Down Expand Up @@ -215,7 +215,7 @@ class AzureCliScript(DeploymentScript):
'cleanup_preference': {'key': 'properties.cleanupPreference', 'type': 'str'},
'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'},
'status': {'key': 'properties.status', 'type': 'ScriptStatus'},
'outputs': {'key': 'properties.outputs', 'type': '{object}'},
'outputs': {'key': 'properties.outputs', 'type': '{str}'},
'primary_script_uri': {'key': 'properties.primaryScriptUri', 'type': 'str'},
'supporting_script_uris': {'key': 'properties.supportingScriptUris', 'type': '[str]'},
'script_content': {'key': 'properties.scriptContent', 'type': 'str'},
Expand Down Expand Up @@ -334,7 +334,7 @@ class DeploymentScriptPropertiesBase(msrest.serialization.Model):
:ivar status: Contains the results of script execution.
:vartype status: ~azure.mgmt.resource.deploymentscripts.v2020_10_01.models.ScriptStatus
:ivar outputs: List of script outputs.
:vartype outputs: dict[str, object]
:vartype outputs: dict[str, str]
"""

_validation = {
Expand All @@ -349,7 +349,7 @@ class DeploymentScriptPropertiesBase(msrest.serialization.Model):
'cleanup_preference': {'key': 'cleanupPreference', 'type': 'str'},
'provisioning_state': {'key': 'provisioningState', 'type': 'str'},
'status': {'key': 'status', 'type': 'ScriptStatus'},
'outputs': {'key': 'outputs', 'type': '{object}'},
'outputs': {'key': 'outputs', 'type': '{str}'},
}

def __init__(
Expand Down Expand Up @@ -413,7 +413,7 @@ class AzureCliScriptProperties(DeploymentScriptPropertiesBase, ScriptConfigurati
:ivar status: Contains the results of script execution.
:vartype status: ~azure.mgmt.resource.deploymentscripts.v2020_10_01.models.ScriptStatus
:ivar outputs: List of script outputs.
:vartype outputs: dict[str, object]
:vartype outputs: dict[str, str]
:param az_cli_version: Required. Azure CLI module version to be used.
:type az_cli_version: str
"""
Expand Down Expand Up @@ -441,7 +441,7 @@ class AzureCliScriptProperties(DeploymentScriptPropertiesBase, ScriptConfigurati
'cleanup_preference': {'key': 'cleanupPreference', 'type': 'str'},
'provisioning_state': {'key': 'provisioningState', 'type': 'str'},
'status': {'key': 'status', 'type': 'ScriptStatus'},
'outputs': {'key': 'outputs', 'type': '{object}'},
'outputs': {'key': 'outputs', 'type': '{str}'},
'az_cli_version': {'key': 'azCliVersion', 'type': 'str'},
}

Expand Down Expand Up @@ -514,7 +514,7 @@ class AzurePowerShellScript(DeploymentScript):
:ivar status: Contains the results of script execution.
:vartype status: ~azure.mgmt.resource.deploymentscripts.v2020_10_01.models.ScriptStatus
:ivar outputs: List of script outputs.
:vartype outputs: dict[str, object]
:vartype outputs: dict[str, str]
:param primary_script_uri: Uri for the script. This is the entry point for the external script.
:type primary_script_uri: str
:param supporting_script_uris: Supporting files for the external script.
Expand Down Expand Up @@ -570,7 +570,7 @@ class AzurePowerShellScript(DeploymentScript):
'cleanup_preference': {'key': 'properties.cleanupPreference', 'type': 'str'},
'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'},
'status': {'key': 'properties.status', 'type': 'ScriptStatus'},
'outputs': {'key': 'properties.outputs', 'type': '{object}'},
'outputs': {'key': 'properties.outputs', 'type': '{str}'},
'primary_script_uri': {'key': 'properties.primaryScriptUri', 'type': 'str'},
'supporting_script_uris': {'key': 'properties.supportingScriptUris', 'type': '[str]'},
'script_content': {'key': 'properties.scriptContent', 'type': 'str'},
Expand Down Expand Up @@ -653,7 +653,7 @@ class AzurePowerShellScriptProperties(DeploymentScriptPropertiesBase, ScriptConf
:ivar status: Contains the results of script execution.
:vartype status: ~azure.mgmt.resource.deploymentscripts.v2020_10_01.models.ScriptStatus
:ivar outputs: List of script outputs.
:vartype outputs: dict[str, object]
:vartype outputs: dict[str, str]
:param az_power_shell_version: Required. Azure PowerShell module version to be used.
:type az_power_shell_version: str
"""
Expand Down Expand Up @@ -681,7 +681,7 @@ class AzurePowerShellScriptProperties(DeploymentScriptPropertiesBase, ScriptConf
'cleanup_preference': {'key': 'cleanupPreference', 'type': 'str'},
'provisioning_state': {'key': 'provisioningState', 'type': 'str'},
'status': {'key': 'status', 'type': 'ScriptStatus'},
'outputs': {'key': 'outputs', 'type': '{object}'},
'outputs': {'key': 'outputs', 'type': '{str}'},
'az_power_shell_version': {'key': 'azPowerShellVersion', 'type': 'str'},
}

Expand Down Expand Up @@ -866,7 +866,7 @@ class ErrorAdditionalInfo(msrest.serialization.Model):
:ivar type: The additional info type.
:vartype type: str
:ivar info: The additional info.
:vartype info: object
:vartype info: str
"""

_validation = {
Expand All @@ -876,7 +876,7 @@ class ErrorAdditionalInfo(msrest.serialization.Model):

_attribute_map = {
'type': {'key': 'type', 'type': 'str'},
'info': {'key': 'info', 'type': 'object'},
'info': {'key': 'info', 'type': 'str'},
}

def __init__(
Expand Down
Loading