Skip to content
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

[AutoPR resources/resource-manager] Add additional ExportTemplate options #5753

Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
class ExportTemplateRequest(Model):
"""Export resource group template request parameters.

:param resources: The ids of the resources. The only supported string
currently is '*' (all resources). Future api updates will support
exporting specific resources.
:param resources: The IDs of the resources to filter the export by. To
export all resources, supply an array with single entry '*'.
:type resources: list[str]
:param options: The export template options. Supported values include
'IncludeParameterDefaultValue', 'IncludeComments' or
'IncludeParameterDefaultValue, IncludeComments
:param options: The export template options. A CSV-formatted list
containing zero or more of the following: 'IncludeParameterDefaultValue',
'IncludeComments', 'SkipResourceNameParameterization',
'SkipAllParameterization'
:type options: str
"""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
class ExportTemplateRequest(Model):
"""Export resource group template request parameters.

:param resources: The ids of the resources. The only supported string
currently is '*' (all resources). Future api updates will support
exporting specific resources.
:param resources: The IDs of the resources to filter the export by. To
export all resources, supply an array with single entry '*'.
:type resources: list[str]
:param options: The export template options. Supported values include
'IncludeParameterDefaultValue', 'IncludeComments' or
'IncludeParameterDefaultValue, IncludeComments
:param options: The export template options. A CSV-formatted list
containing zero or more of the following: 'IncludeParameterDefaultValue',
'IncludeComments', 'SkipResourceNameParameterization',
'SkipAllParameterization'
:type options: str
"""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -460,13 +460,13 @@ def export_template(
:param resource_group_name: The name of the resource group to be
created or updated.
:type resource_group_name: str
:param resources: The ids of the resources. The only supported string
currently is '*' (all resources). Future api updates will support
exporting specific resources.
:param resources: The IDs of the resources to filter the export by. To
export all resources, supply an array with single entry '*'.
:type resources: list[str]
:param options: The export template options. Supported values include
'IncludeParameterDefaultValue', 'IncludeComments' or
'IncludeParameterDefaultValue, IncludeComments
:param options: The export template options. A CSV-formatted list
containing zero or more of the following:
'IncludeParameterDefaultValue', 'IncludeComments',
'SkipResourceNameParameterization', 'SkipAllParameterization'
:type options: str
:param dict custom_headers: headers that will be added to the request
:param bool raw: returns the direct response alongside the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
class ExportTemplateRequest(Model):
"""Export resource group template request parameters.

:param resources: The IDs of the resources. The only supported string
currently is '*' (all resources). Future updates will support exporting
specific resources.
:param resources: The IDs of the resources to filter the export by. To
export all resources, supply an array with single entry '*'.
:type resources: list[str]
:param options: The export template options. Supported values include
'IncludeParameterDefaultValue', 'IncludeComments' or
'IncludeParameterDefaultValue, IncludeComments
:param options: The export template options. A CSV-formatted list
containing zero or more of the following: 'IncludeParameterDefaultValue',
'IncludeComments', 'SkipResourceNameParameterization',
'SkipAllParameterization'
:type options: str
"""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
class ExportTemplateRequest(Model):
"""Export resource group template request parameters.

:param resources: The IDs of the resources. The only supported string
currently is '*' (all resources). Future updates will support exporting
specific resources.
:param resources: The IDs of the resources to filter the export by. To
export all resources, supply an array with single entry '*'.
:type resources: list[str]
:param options: The export template options. Supported values include
'IncludeParameterDefaultValue', 'IncludeComments' or
'IncludeParameterDefaultValue, IncludeComments
:param options: The export template options. A CSV-formatted list
containing zero or more of the following: 'IncludeParameterDefaultValue',
'IncludeComments', 'SkipResourceNameParameterization',
'SkipAllParameterization'
:type options: str
"""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -465,13 +465,13 @@ def export_template(
:param resource_group_name: The name of the resource group to export
as a template.
:type resource_group_name: str
:param resources: The IDs of the resources. The only supported string
currently is '*' (all resources). Future updates will support
exporting specific resources.
:param resources: The IDs of the resources to filter the export by. To
export all resources, supply an array with single entry '*'.
:type resources: list[str]
:param options: The export template options. Supported values include
'IncludeParameterDefaultValue', 'IncludeComments' or
'IncludeParameterDefaultValue, IncludeComments
:param options: The export template options. A CSV-formatted list
containing zero or more of the following:
'IncludeParameterDefaultValue', 'IncludeComments',
'SkipResourceNameParameterization', 'SkipAllParameterization'
:type options: str
:param dict custom_headers: headers that will be added to the request
:param bool raw: returns the direct response alongside the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
class ExportTemplateRequest(Model):
"""Export resource group template request parameters.

:param resources: The IDs of the resources. The only supported string
currently is '*' (all resources). Future updates will support exporting
specific resources.
:param resources: The IDs of the resources to filter the export by. To
export all resources, supply an array with single entry '*'.
:type resources: list[str]
:param options: The export template options. Supported values include
'IncludeParameterDefaultValue', 'IncludeComments' or
'IncludeParameterDefaultValue, IncludeComments
:param options: The export template options. A CSV-formatted list
containing zero or more of the following: 'IncludeParameterDefaultValue',
'IncludeComments', 'SkipResourceNameParameterization',
'SkipAllParameterization'
:type options: str
"""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
class ExportTemplateRequest(Model):
"""Export resource group template request parameters.

:param resources: The IDs of the resources. The only supported string
currently is '*' (all resources). Future updates will support exporting
specific resources.
:param resources: The IDs of the resources to filter the export by. To
export all resources, supply an array with single entry '*'.
:type resources: list[str]
:param options: The export template options. Supported values include
'IncludeParameterDefaultValue', 'IncludeComments' or
'IncludeParameterDefaultValue, IncludeComments
:param options: The export template options. A CSV-formatted list
containing zero or more of the following: 'IncludeParameterDefaultValue',
'IncludeComments', 'SkipResourceNameParameterization',
'SkipAllParameterization'
:type options: str
"""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -384,13 +384,13 @@ def export_template(
:param resource_group_name: The name of the resource group to export
as a template.
:type resource_group_name: str
:param resources: The IDs of the resources. The only supported string
currently is '*' (all resources). Future updates will support
exporting specific resources.
:param resources: The IDs of the resources to filter the export by. To
export all resources, supply an array with single entry '*'.
:type resources: list[str]
:param options: The export template options. Supported values include
'IncludeParameterDefaultValue', 'IncludeComments' or
'IncludeParameterDefaultValue, IncludeComments
:param options: The export template options. A CSV-formatted list
containing zero or more of the following:
'IncludeParameterDefaultValue', 'IncludeComments',
'SkipResourceNameParameterization', 'SkipAllParameterization'
:type options: str
:param dict custom_headers: headers that will be added to the request
:param bool raw: returns the direct response alongside the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
class ExportTemplateRequest(Model):
"""Export resource group template request parameters.

:param resources: The IDs of the resources. The only supported string
currently is '*' (all resources). Future updates will support exporting
specific resources.
:param resources: The IDs of the resources to filter the export by. To
export all resources, supply an array with single entry '*'.
:type resources: list[str]
:param options: The export template options. Supported values include
'IncludeParameterDefaultValue', 'IncludeComments' or
'IncludeParameterDefaultValue, IncludeComments
:param options: The export template options. A CSV-formatted list
containing zero or more of the following: 'IncludeParameterDefaultValue',
'IncludeComments', 'SkipResourceNameParameterization',
'SkipAllParameterization'
:type options: str
"""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
class ExportTemplateRequest(Model):
"""Export resource group template request parameters.

:param resources: The IDs of the resources. The only supported string
currently is '*' (all resources). Future updates will support exporting
specific resources.
:param resources: The IDs of the resources to filter the export by. To
export all resources, supply an array with single entry '*'.
:type resources: list[str]
:param options: The export template options. Supported values include
'IncludeParameterDefaultValue', 'IncludeComments' or
'IncludeParameterDefaultValue, IncludeComments
:param options: The export template options. A CSV-formatted list
containing zero or more of the following: 'IncludeParameterDefaultValue',
'IncludeComments', 'SkipResourceNameParameterization',
'SkipAllParameterization'
:type options: str
"""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -384,13 +384,13 @@ def export_template(
:param resource_group_name: The name of the resource group to export
as a template.
:type resource_group_name: str
:param resources: The IDs of the resources. The only supported string
currently is '*' (all resources). Future updates will support
exporting specific resources.
:param resources: The IDs of the resources to filter the export by. To
export all resources, supply an array with single entry '*'.
:type resources: list[str]
:param options: The export template options. Supported values include
'IncludeParameterDefaultValue', 'IncludeComments' or
'IncludeParameterDefaultValue, IncludeComments
:param options: The export template options. A CSV-formatted list
containing zero or more of the following:
'IncludeParameterDefaultValue', 'IncludeComments',
'SkipResourceNameParameterization', 'SkipAllParameterization'
:type options: str
:param dict custom_headers: headers that will be added to the request
:param bool raw: returns the direct response alongside the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
class ExportTemplateRequest(Model):
"""Export resource group template request parameters.

:param resources: The IDs of the resources. The only supported string
currently is '*' (all resources). Future updates will support exporting
specific resources.
:param resources: The IDs of the resources to filter the export by. To
export all resources, supply an array with single entry '*'.
:type resources: list[str]
:param options: The export template options. Supported values include
'IncludeParameterDefaultValue', 'IncludeComments' or
'IncludeParameterDefaultValue, IncludeComments
:param options: The export template options. A CSV-formatted list
containing zero or more of the following: 'IncludeParameterDefaultValue',
'IncludeComments', 'SkipResourceNameParameterization',
'SkipAllParameterization'
:type options: str
"""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
class ExportTemplateRequest(Model):
"""Export resource group template request parameters.

:param resources: The IDs of the resources. The only supported string
currently is '*' (all resources). Future updates will support exporting
specific resources.
:param resources: The IDs of the resources to filter the export by. To
export all resources, supply an array with single entry '*'.
:type resources: list[str]
:param options: The export template options. Supported values include
'IncludeParameterDefaultValue', 'IncludeComments' or
'IncludeParameterDefaultValue, IncludeComments
:param options: The export template options. A CSV-formatted list
containing zero or more of the following: 'IncludeParameterDefaultValue',
'IncludeComments', 'SkipResourceNameParameterization',
'SkipAllParameterization'
:type options: str
"""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -386,13 +386,13 @@ def export_template(
:param resource_group_name: The name of the resource group to export
as a template.
:type resource_group_name: str
:param resources: The IDs of the resources. The only supported string
currently is '*' (all resources). Future updates will support
exporting specific resources.
:param resources: The IDs of the resources to filter the export by. To
export all resources, supply an array with single entry '*'.
:type resources: list[str]
:param options: The export template options. Supported values include
'IncludeParameterDefaultValue', 'IncludeComments' or
'IncludeParameterDefaultValue, IncludeComments
:param options: The export template options. A CSV-formatted list
containing zero or more of the following:
'IncludeParameterDefaultValue', 'IncludeComments',
'SkipResourceNameParameterization', 'SkipAllParameterization'
:type options: str
:param dict custom_headers: headers that will be added to the request
:param bool raw: returns the direct response alongside the
Expand Down