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

{AzureCXP} fixes Azure/azure-sdk-for-python#24694 #24745

Closed
wants to merge 2 commits into from
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
1 change: 1 addition & 0 deletions sdk/automation/azure-mgmt-automation/MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ include *.md
include azure/__init__.py
include azure/mgmt/__init__.py
include LICENSE
include azure/mgmt/automation/py.typed
Original file line number Diff line number Diff line change
Expand Up @@ -3443,7 +3443,8 @@ class Runbook(TrackedResource):
:param etag: Gets or sets the etag of the resource.
:type etag: str
:param runbook_type: Gets or sets the type of the runbook. Possible values include: "Script",
"Graph", "PowerShellWorkflow", "PowerShell", "GraphPowerShellWorkflow", "GraphPowerShell".
"Graph", "PowerShellWorkflow", "PowerShell", "GraphPowerShellWorkflow", "GraphPowerShell", "Python2",
"Python3".
:type runbook_type: str or ~azure.mgmt.automation.models.RunbookTypeEnum
:param publish_content_link: Gets or sets the published runbook content link.
:type publish_content_link: ~azure.mgmt.automation.models.ContentLink
Expand Down Expand Up @@ -3587,7 +3588,7 @@ class RunbookCreateOrUpdateDraftProperties(msrest.serialization.Model):
:type log_progress: bool
:param runbook_type: Required. Gets or sets the type of the runbook. Possible values include:
"Script", "Graph", "PowerShellWorkflow", "PowerShell", "GraphPowerShellWorkflow",
"GraphPowerShell".
"GraphPowerShell", "Python2", "Python3".
:type runbook_type: str or ~azure.mgmt.automation.models.RunbookTypeEnum
:param draft: Required. Gets or sets the draft runbook properties.
:type draft: ~azure.mgmt.automation.models.RunbookDraft
Expand Down Expand Up @@ -3641,7 +3642,7 @@ class RunbookCreateOrUpdateParameters(msrest.serialization.Model):
:type log_progress: bool
:param runbook_type: Required. Gets or sets the type of the runbook. Possible values include:
"Script", "Graph", "PowerShellWorkflow", "PowerShell", "GraphPowerShellWorkflow",
"GraphPowerShell".
"GraphPowerShell", "Python2", "Python3".
:type runbook_type: str or ~azure.mgmt.automation.models.RunbookTypeEnum
:param draft: Gets or sets the draft runbook properties.
:type draft: ~azure.mgmt.automation.models.RunbookDraft
Expand Down
4 changes: 4 additions & 0 deletions sdk/automation/azure-mgmt-automation/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,10 @@
'azure',
'azure.mgmt',
]),
include_package_data=True,
package_data={
'pytyped': ['py.typed'],
},
install_requires=[
'msrest>=0.6.21',
'azure-common~=1.1',
Expand Down