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

Add new profile 2018-03-01-hybrid #3288

Merged
merged 3 commits into from
Sep 13, 2018
Merged
Changes from 1 commit
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
39 changes: 39 additions & 0 deletions azure-common/azure/profiles/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,45 @@ class KnownProfiles(Enum):
},
"2017-03-09-profile"
)
v2018_03_01_hybrid = ProfileDefinition(
{
"azure.keyvault.KeyVaultClient":{
viananth marked this conversation as resolved.
Show resolved Hide resolved
None: "2016-10-01"
},
"azure.mgmt.authorization.AuthorizationManagementClient": {
None: "2015-07-01"
},
"azure.mgmt.compute.ComputeManagementClient": {
None: "2017-03-30"
},
"azure.mgmt.keyvault.KeyVaultManagementClient":{
None: "2016-10-01"
},
"azure.mgmt.network.NetworkManagementClient": {
viananth marked this conversation as resolved.
Show resolved Hide resolved
None: "2017-10-01"
},
"azure.mgmt.storage.StorageManagementClient": {
None: "2016-01-01"
},
"azure.mgmt.resource.policy.PolicyClient": {
None: "2016-12-01"
},
"azure.mgmt.resource.locks.ManagementLockClient": {
None: "2016-09-01"
},
"azure.mgmt.resource.links.ManagementLinkClient": {
None: "2016-09-01"
},
"azure.mgmt.resource.resources.ResourceManagementClient": {
None: "2018-02-01"
},
"azure.mgmt.resource.subscriptions.SubscriptionClient": {
None: "2016-06-01"
}
},
"2018-03-01-hybrid"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

do we have any SDK level tests that needs to be updated?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't have profile specific tests unfortunately :(

)


def __init__(self, profile_definition):
self._profile_definition = profile_definition
Expand Down