Skip to content

Commit

Permalink
CodeGen from PR 14161 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
add tags for go SDK release v54.0.0 (Azure#14161)

* add tags for go SDK release v54.0.0

* add a new tag
  • Loading branch information
SDKAuto committed Apr 29, 2021
1 parent 5a4da24 commit 0a9ff54
Show file tree
Hide file tree
Showing 193 changed files with 28,450 additions and 1,455 deletions.
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": "d78e99bbaa8170a72c38d8a6dad8a896f9a5c636",
"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 @@ -6,4 +6,4 @@
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------

VERSION = "16.1.0"
VERSION = "1.0.0b1"
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 = "1.0.0b1"
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

0 comments on commit 0a9ff54

Please sign in to comment.