Skip to content

Commit

Permalink
Add new profile 2018-03-01-hybrid (#3288)
Browse files Browse the repository at this point in the history
* Add new profile 2018-03-01-hybrid

* Add Dns, storage-data, cosmosdb modules

* Removed multiapi.storage and cosmosdb packages from 2018-profile
  • Loading branch information
viananth authored and lmazuel committed Sep 13, 2018
1 parent 26b9b31 commit 50d001a
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions azure-common/azure/profiles/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,48 @@ class KnownProfiles(Enum):
},
"2017-03-09-profile"
)
v2018_03_01_hybrid = ProfileDefinition(
{
"azure.keyvault.KeyVaultClient":{
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": {
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"
},
"azure.mgmt.dns": {
None: "2016-04-01"
}
},
"2018-03-01-hybrid"
)


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

0 comments on commit 50d001a

Please sign in to comment.