pulumi-azure-native 2.60.0a1725525310__py3-none-any.whl → 2.60.0a1725532600__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-azure-native might be problematic. Click here for more details.
- pulumi_azure_native/azureactivedirectory/_enums.py +11 -0
- pulumi_azure_native/azureactivedirectory/_inputs.py +20 -1
- pulumi_azure_native/azureactivedirectory/outputs.py +12 -1
- pulumi_azure_native/azureactivedirectory/v20230517preview/_enums.py +11 -0
- pulumi_azure_native/azureactivedirectory/v20230517preview/_inputs.py +20 -1
- pulumi_azure_native/azureactivedirectory/v20230517preview/outputs.py +12 -1
- pulumi_azure_native/pulumi-plugin.json +1 -1
- {pulumi_azure_native-2.60.0a1725525310.dist-info → pulumi_azure_native-2.60.0a1725532600.dist-info}/METADATA +1 -1
- {pulumi_azure_native-2.60.0a1725525310.dist-info → pulumi_azure_native-2.60.0a1725532600.dist-info}/RECORD +11 -11
- {pulumi_azure_native-2.60.0a1725525310.dist-info → pulumi_azure_native-2.60.0a1725532600.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-2.60.0a1725525310.dist-info → pulumi_azure_native-2.60.0a1725532600.dist-info}/top_level.txt +0 -0
|
@@ -8,6 +8,7 @@ __all__ = [
|
|
|
8
8
|
'B2CResourceSKUName',
|
|
9
9
|
'B2CResourceSKUTier',
|
|
10
10
|
'CIAMResourceSKUName',
|
|
11
|
+
'CIAMResourceSKUTier',
|
|
11
12
|
]
|
|
12
13
|
|
|
13
14
|
|
|
@@ -46,3 +47,13 @@ class CIAMResourceSKUName(str, Enum):
|
|
|
46
47
|
STANDARD = "Standard"
|
|
47
48
|
PREMIUM_P1 = "PremiumP1"
|
|
48
49
|
PREMIUM_P2 = "PremiumP2"
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
class CIAMResourceSKUTier(str, Enum):
|
|
53
|
+
"""
|
|
54
|
+
The tier of the tenant.
|
|
55
|
+
"""
|
|
56
|
+
A0 = "A0"
|
|
57
|
+
"""
|
|
58
|
+
The SKU tier used for all Azure AD for customers tenants.
|
|
59
|
+
"""
|
|
@@ -91,18 +91,25 @@ if not MYPY:
|
|
|
91
91
|
"""
|
|
92
92
|
The name of the SKU for the tenant.
|
|
93
93
|
"""
|
|
94
|
+
tier: pulumi.Input[Union[str, 'CIAMResourceSKUTier']]
|
|
95
|
+
"""
|
|
96
|
+
The tier of the tenant.
|
|
97
|
+
"""
|
|
94
98
|
elif False:
|
|
95
99
|
CIAMResourceSKUArgsDict: TypeAlias = Mapping[str, Any]
|
|
96
100
|
|
|
97
101
|
@pulumi.input_type
|
|
98
102
|
class CIAMResourceSKUArgs:
|
|
99
103
|
def __init__(__self__, *,
|
|
100
|
-
name: pulumi.Input[Union[str, 'CIAMResourceSKUName']]
|
|
104
|
+
name: pulumi.Input[Union[str, 'CIAMResourceSKUName']],
|
|
105
|
+
tier: pulumi.Input[Union[str, 'CIAMResourceSKUTier']]):
|
|
101
106
|
"""
|
|
102
107
|
SKU properties of the Azure AD for customers tenant. Learn more about Azure AD for customers billing at [https://aka.ms/ciambilling](https://aka.ms/ciambilling).
|
|
103
108
|
:param pulumi.Input[Union[str, 'CIAMResourceSKUName']] name: The name of the SKU for the tenant.
|
|
109
|
+
:param pulumi.Input[Union[str, 'CIAMResourceSKUTier']] tier: The tier of the tenant.
|
|
104
110
|
"""
|
|
105
111
|
pulumi.set(__self__, "name", name)
|
|
112
|
+
pulumi.set(__self__, "tier", tier)
|
|
106
113
|
|
|
107
114
|
@property
|
|
108
115
|
@pulumi.getter
|
|
@@ -116,6 +123,18 @@ class CIAMResourceSKUArgs:
|
|
|
116
123
|
def name(self, value: pulumi.Input[Union[str, 'CIAMResourceSKUName']]):
|
|
117
124
|
pulumi.set(self, "name", value)
|
|
118
125
|
|
|
126
|
+
@property
|
|
127
|
+
@pulumi.getter
|
|
128
|
+
def tier(self) -> pulumi.Input[Union[str, 'CIAMResourceSKUTier']]:
|
|
129
|
+
"""
|
|
130
|
+
The tier of the tenant.
|
|
131
|
+
"""
|
|
132
|
+
return pulumi.get(self, "tier")
|
|
133
|
+
|
|
134
|
+
@tier.setter
|
|
135
|
+
def tier(self, value: pulumi.Input[Union[str, 'CIAMResourceSKUTier']]):
|
|
136
|
+
pulumi.set(self, "tier", value)
|
|
137
|
+
|
|
119
138
|
|
|
120
139
|
if not MYPY:
|
|
121
140
|
class CreateCIAMTenantPropertiesArgsDict(TypedDict):
|
|
@@ -117,12 +117,15 @@ class CIAMResourceSKUResponse(dict):
|
|
|
117
117
|
SKU properties of the Azure AD for customers tenant. Learn more about Azure AD for customers billing at [https://aka.ms/ciambilling](https://aka.ms/ciambilling).
|
|
118
118
|
"""
|
|
119
119
|
def __init__(__self__, *,
|
|
120
|
-
name: str
|
|
120
|
+
name: str,
|
|
121
|
+
tier: str):
|
|
121
122
|
"""
|
|
122
123
|
SKU properties of the Azure AD for customers tenant. Learn more about Azure AD for customers billing at [https://aka.ms/ciambilling](https://aka.ms/ciambilling).
|
|
123
124
|
:param str name: The name of the SKU for the tenant.
|
|
125
|
+
:param str tier: The tier of the tenant.
|
|
124
126
|
"""
|
|
125
127
|
pulumi.set(__self__, "name", name)
|
|
128
|
+
pulumi.set(__self__, "tier", tier)
|
|
126
129
|
|
|
127
130
|
@property
|
|
128
131
|
@pulumi.getter
|
|
@@ -132,6 +135,14 @@ class CIAMResourceSKUResponse(dict):
|
|
|
132
135
|
"""
|
|
133
136
|
return pulumi.get(self, "name")
|
|
134
137
|
|
|
138
|
+
@property
|
|
139
|
+
@pulumi.getter
|
|
140
|
+
def tier(self) -> str:
|
|
141
|
+
"""
|
|
142
|
+
The tier of the tenant.
|
|
143
|
+
"""
|
|
144
|
+
return pulumi.get(self, "tier")
|
|
145
|
+
|
|
135
146
|
|
|
136
147
|
@pulumi.output_type
|
|
137
148
|
class CreateCIAMTenantPropertiesResponse(dict):
|
|
@@ -8,6 +8,7 @@ __all__ = [
|
|
|
8
8
|
'B2CResourceSKUName',
|
|
9
9
|
'B2CResourceSKUTier',
|
|
10
10
|
'CIAMResourceSKUName',
|
|
11
|
+
'CIAMResourceSKUTier',
|
|
11
12
|
]
|
|
12
13
|
|
|
13
14
|
|
|
@@ -46,3 +47,13 @@ class CIAMResourceSKUName(str, Enum):
|
|
|
46
47
|
STANDARD = "Standard"
|
|
47
48
|
PREMIUM_P1 = "PremiumP1"
|
|
48
49
|
PREMIUM_P2 = "PremiumP2"
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
class CIAMResourceSKUTier(str, Enum):
|
|
53
|
+
"""
|
|
54
|
+
The tier of the tenant.
|
|
55
|
+
"""
|
|
56
|
+
A0 = "A0"
|
|
57
|
+
"""
|
|
58
|
+
The SKU tier used for all Azure AD for customers tenants.
|
|
59
|
+
"""
|
|
@@ -91,18 +91,25 @@ if not MYPY:
|
|
|
91
91
|
"""
|
|
92
92
|
The name of the SKU for the tenant.
|
|
93
93
|
"""
|
|
94
|
+
tier: pulumi.Input[Union[str, 'CIAMResourceSKUTier']]
|
|
95
|
+
"""
|
|
96
|
+
The tier of the tenant.
|
|
97
|
+
"""
|
|
94
98
|
elif False:
|
|
95
99
|
CIAMResourceSKUArgsDict: TypeAlias = Mapping[str, Any]
|
|
96
100
|
|
|
97
101
|
@pulumi.input_type
|
|
98
102
|
class CIAMResourceSKUArgs:
|
|
99
103
|
def __init__(__self__, *,
|
|
100
|
-
name: pulumi.Input[Union[str, 'CIAMResourceSKUName']]
|
|
104
|
+
name: pulumi.Input[Union[str, 'CIAMResourceSKUName']],
|
|
105
|
+
tier: pulumi.Input[Union[str, 'CIAMResourceSKUTier']]):
|
|
101
106
|
"""
|
|
102
107
|
SKU properties of the Azure AD for customers tenant. Learn more about Azure AD for customers billing at [https://aka.ms/ciambilling](https://aka.ms/ciambilling).
|
|
103
108
|
:param pulumi.Input[Union[str, 'CIAMResourceSKUName']] name: The name of the SKU for the tenant.
|
|
109
|
+
:param pulumi.Input[Union[str, 'CIAMResourceSKUTier']] tier: The tier of the tenant.
|
|
104
110
|
"""
|
|
105
111
|
pulumi.set(__self__, "name", name)
|
|
112
|
+
pulumi.set(__self__, "tier", tier)
|
|
106
113
|
|
|
107
114
|
@property
|
|
108
115
|
@pulumi.getter
|
|
@@ -116,6 +123,18 @@ class CIAMResourceSKUArgs:
|
|
|
116
123
|
def name(self, value: pulumi.Input[Union[str, 'CIAMResourceSKUName']]):
|
|
117
124
|
pulumi.set(self, "name", value)
|
|
118
125
|
|
|
126
|
+
@property
|
|
127
|
+
@pulumi.getter
|
|
128
|
+
def tier(self) -> pulumi.Input[Union[str, 'CIAMResourceSKUTier']]:
|
|
129
|
+
"""
|
|
130
|
+
The tier of the tenant.
|
|
131
|
+
"""
|
|
132
|
+
return pulumi.get(self, "tier")
|
|
133
|
+
|
|
134
|
+
@tier.setter
|
|
135
|
+
def tier(self, value: pulumi.Input[Union[str, 'CIAMResourceSKUTier']]):
|
|
136
|
+
pulumi.set(self, "tier", value)
|
|
137
|
+
|
|
119
138
|
|
|
120
139
|
if not MYPY:
|
|
121
140
|
class CreateCIAMTenantPropertiesArgsDict(TypedDict):
|
|
@@ -117,12 +117,15 @@ class CIAMResourceSKUResponse(dict):
|
|
|
117
117
|
SKU properties of the Azure AD for customers tenant. Learn more about Azure AD for customers billing at [https://aka.ms/ciambilling](https://aka.ms/ciambilling).
|
|
118
118
|
"""
|
|
119
119
|
def __init__(__self__, *,
|
|
120
|
-
name: str
|
|
120
|
+
name: str,
|
|
121
|
+
tier: str):
|
|
121
122
|
"""
|
|
122
123
|
SKU properties of the Azure AD for customers tenant. Learn more about Azure AD for customers billing at [https://aka.ms/ciambilling](https://aka.ms/ciambilling).
|
|
123
124
|
:param str name: The name of the SKU for the tenant.
|
|
125
|
+
:param str tier: The tier of the tenant.
|
|
124
126
|
"""
|
|
125
127
|
pulumi.set(__self__, "name", name)
|
|
128
|
+
pulumi.set(__self__, "tier", tier)
|
|
126
129
|
|
|
127
130
|
@property
|
|
128
131
|
@pulumi.getter
|
|
@@ -132,6 +135,14 @@ class CIAMResourceSKUResponse(dict):
|
|
|
132
135
|
"""
|
|
133
136
|
return pulumi.get(self, "name")
|
|
134
137
|
|
|
138
|
+
@property
|
|
139
|
+
@pulumi.getter
|
|
140
|
+
def tier(self) -> str:
|
|
141
|
+
"""
|
|
142
|
+
The tier of the tenant.
|
|
143
|
+
"""
|
|
144
|
+
return pulumi.get(self, "tier")
|
|
145
|
+
|
|
135
146
|
|
|
136
147
|
@pulumi.output_type
|
|
137
148
|
class CreateCIAMTenantPropertiesResponse(dict):
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
pulumi_azure_native/__init__.py,sha256=mv5hLQsyl6ODMHhXJlulArbtfSvwycFqHW6jZZHtbRM,979404
|
|
2
2
|
pulumi_azure_native/_utilities.py,sha256=TZWmMJOOzIbeJ63eFk5Tkx9TRUBUL4deSG05KQZyUug,10488
|
|
3
3
|
pulumi_azure_native/provider.py,sha256=ijD50GjYD0xTGWJVAR_zi8DRpow_AcfiaEDdwOwh-D8,23052
|
|
4
|
-
pulumi_azure_native/pulumi-plugin.json,sha256=
|
|
4
|
+
pulumi_azure_native/pulumi-plugin.json,sha256=p27D1Qrc4CSiJG4BakJLOxNj95lIIbP1Wmd1bWfZV0k,89
|
|
5
5
|
pulumi_azure_native/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
6
|
pulumi_azure_native/aad/__init__.py,sha256=O2XPJyft-EiRyZdbKAbADw_hWhoH_Yn8KOwWpJprjs0,669
|
|
7
7
|
pulumi_azure_native/aad/_enums.py,sha256=nEE4b-gxeGR_DXhJA6WTIznl4AA5UmVTKpvu2PV66RE,3419
|
|
@@ -3200,15 +3200,15 @@ pulumi_azure_native/avs/v20230901/workload_network_public_ip.py,sha256=vrGJi8Rw6
|
|
|
3200
3200
|
pulumi_azure_native/avs/v20230901/workload_network_segment.py,sha256=QmCuxKoqojvPTD3dgZCRKA-SOFpZBWvJtM5Jkck-kY4,14303
|
|
3201
3201
|
pulumi_azure_native/avs/v20230901/workload_network_vm_group.py,sha256=KP172YQSP_r1FzXBFWCuDozYDGgmYnWO3uO9u2FzKgE,12446
|
|
3202
3202
|
pulumi_azure_native/azureactivedirectory/__init__.py,sha256=X89Gwh9-fPhmVn2c0guJhQEraUXrRfq7h5GPS6i6Jhw,1473
|
|
3203
|
-
pulumi_azure_native/azureactivedirectory/_enums.py,sha256
|
|
3204
|
-
pulumi_azure_native/azureactivedirectory/_inputs.py,sha256=
|
|
3203
|
+
pulumi_azure_native/azureactivedirectory/_enums.py,sha256=-3WpfHz20hQoXOPiZYTR6vLLokYPyiHkR0srK8oN8e0,1403
|
|
3204
|
+
pulumi_azure_native/azureactivedirectory/_inputs.py,sha256=EFhBTgjeNpKeZU2I7s5T7gx-6YNBlXB8MyaMlyty0gQ,7416
|
|
3205
3205
|
pulumi_azure_native/azureactivedirectory/b2_c_tenant.py,sha256=fmzTUupKSFeOF0JT4jgsZTmzH6bjY9iwz5sVNCLIBJo,15226
|
|
3206
3206
|
pulumi_azure_native/azureactivedirectory/ciam_tenant.py,sha256=QfAaHpPYs3INIPoaHRTgqUfdGetJJwXAxtp-afJJfqs,16586
|
|
3207
3207
|
pulumi_azure_native/azureactivedirectory/get_b2_c_tenant.py,sha256=NUgdee5HTUe50-kdFCppWm_69UIMn-Ty36XZhph493o,7059
|
|
3208
3208
|
pulumi_azure_native/azureactivedirectory/get_ciam_tenant.py,sha256=Wlf_S3y53iT36PFVluuJIGECmler4fubaamefPPBNNU,9684
|
|
3209
3209
|
pulumi_azure_native/azureactivedirectory/get_guest_usage.py,sha256=94b0rp6b3FINg_k4J4sSaDth40Jc_UBoKwxf2lSznoo,5915
|
|
3210
3210
|
pulumi_azure_native/azureactivedirectory/guest_usage.py,sha256=5yzj6LrxU2Rk9IvtoZhcKJzI3N_ROvW725L5okm2iIE,11037
|
|
3211
|
-
pulumi_azure_native/azureactivedirectory/outputs.py,sha256=
|
|
3211
|
+
pulumi_azure_native/azureactivedirectory/outputs.py,sha256=C4RRdSs1FZAWhdB_wM78Ce93n3IQAF-_a4SSsr7Rtmk,11661
|
|
3212
3212
|
pulumi_azure_native/azureactivedirectory/v20190101preview/__init__.py,sha256=kNsMtAhBzPk4p8dY2OvpXLw1_OLw7FapLWlLrh2XWEs,377
|
|
3213
3213
|
pulumi_azure_native/azureactivedirectory/v20190101preview/_enums.py,sha256=zfDXcIKujThl3zV8UGlPDp_Jz2hdZ0PXePzpAN9xD4U,993
|
|
3214
3214
|
pulumi_azure_native/azureactivedirectory/v20190101preview/_inputs.py,sha256=aax782kMenTNoVmlEY6gHbOqrCLIKlOYb-Gln4AIXzE,5119
|
|
@@ -3232,15 +3232,15 @@ pulumi_azure_native/azureactivedirectory/v20230118preview/get_guest_usage.py,sha
|
|
|
3232
3232
|
pulumi_azure_native/azureactivedirectory/v20230118preview/guest_usage.py,sha256=PFgwMXzHBuy2u1xtjiSWF5KpvF02kI7SM4o7JtdjPXo,10674
|
|
3233
3233
|
pulumi_azure_native/azureactivedirectory/v20230118preview/outputs.py,sha256=t_RpvZEBqNzBywMh0gtkMPc2cbsPrM3fF8d7ItjrgI0,8166
|
|
3234
3234
|
pulumi_azure_native/azureactivedirectory/v20230517preview/__init__.py,sha256=wwtR23hpQ9LIseR8B1dn0eXkO6SdaZw7IQV4VBpwHTA,493
|
|
3235
|
-
pulumi_azure_native/azureactivedirectory/v20230517preview/_enums.py,sha256
|
|
3236
|
-
pulumi_azure_native/azureactivedirectory/v20230517preview/_inputs.py,sha256=
|
|
3235
|
+
pulumi_azure_native/azureactivedirectory/v20230517preview/_enums.py,sha256=-3WpfHz20hQoXOPiZYTR6vLLokYPyiHkR0srK8oN8e0,1403
|
|
3236
|
+
pulumi_azure_native/azureactivedirectory/v20230517preview/_inputs.py,sha256=nPw0yMtSX3q9BzR2nPoqyp7eSPo8qdBAqFDp2QScYrc,7417
|
|
3237
3237
|
pulumi_azure_native/azureactivedirectory/v20230517preview/b2_c_tenant.py,sha256=WFIvYaaWlCboQQtUZFlKDy0enbucsnTju4ediAIv6zo,16825
|
|
3238
3238
|
pulumi_azure_native/azureactivedirectory/v20230517preview/ciam_tenant.py,sha256=4a7ugeTgvIa1e19E_QtOgxPJs7CtxIHNr7-AuMZItFA,16483
|
|
3239
3239
|
pulumi_azure_native/azureactivedirectory/v20230517preview/get_b2_c_tenant.py,sha256=rBD6dPwPpmGkfkg040AuR6NhDEFBVf073-MQocc6lwk,7554
|
|
3240
3240
|
pulumi_azure_native/azureactivedirectory/v20230517preview/get_ciam_tenant.py,sha256=kynhx-UXWdaMDTJEjIQQLe3yBtZt0LWRZ6WKcF95Pzc,9606
|
|
3241
3241
|
pulumi_azure_native/azureactivedirectory/v20230517preview/get_guest_usage.py,sha256=y5eqjDe0Bl6RYc3Jh6DXvkIeTHOU1NihQrdAOo4CrOc,5703
|
|
3242
3242
|
pulumi_azure_native/azureactivedirectory/v20230517preview/guest_usage.py,sha256=Oz423lRKx-jr3Cx4RIBZ6nJeaa7AlgDbvgc-LvJZxGY,10674
|
|
3243
|
-
pulumi_azure_native/azureactivedirectory/v20230517preview/outputs.py,sha256=
|
|
3243
|
+
pulumi_azure_native/azureactivedirectory/v20230517preview/outputs.py,sha256=eK1_KMwetUacPzPtYs3tG-O3CML9VGzHDxDgixKWeVs,11662
|
|
3244
3244
|
pulumi_azure_native/azurearcdata/__init__.py,sha256=1Z7gy8Oi4GesiwGBm0nyzWcaJSrcDM6Gn2PMglIYo5E,1503
|
|
3245
3245
|
pulumi_azure_native/azurearcdata/_enums.py,sha256=mI6OFBbpzz5x3fut8Y6go74c0DQlwnO2q5ujPATyW0A,5112
|
|
3246
3246
|
pulumi_azure_native/azurearcdata/_inputs.py,sha256=d0sI0d_3YEPQUjkt__Y4BTwQT4foOPKYoFZ5lx0nRLg,168128
|
|
@@ -26081,7 +26081,7 @@ pulumi_azure_native/workloads/v20240901/sap_application_server_instance.py,sha25
|
|
|
26081
26081
|
pulumi_azure_native/workloads/v20240901/sap_central_server_instance.py,sha256=eorizuwGPlHaa-R7seqv1ZW7oqM3Ae68X_EUHHfHMzQ,16551
|
|
26082
26082
|
pulumi_azure_native/workloads/v20240901/sap_database_instance.py,sha256=glkxQJ8mHANMOyZ_m_GEUO9doepUAPxuPshRLYxwaMU,14157
|
|
26083
26083
|
pulumi_azure_native/workloads/v20240901/sap_virtual_instance.py,sha256=FKSG8o-qximHgOX3bz9Wcr72SXnw3-ZWw4rhhtuEyBA,24387
|
|
26084
|
-
pulumi_azure_native-2.60.
|
|
26085
|
-
pulumi_azure_native-2.60.
|
|
26086
|
-
pulumi_azure_native-2.60.
|
|
26087
|
-
pulumi_azure_native-2.60.
|
|
26084
|
+
pulumi_azure_native-2.60.0a1725532600.dist-info/METADATA,sha256=ruZnEe6knE-W-gXg40MHRWrsXHRd87Q74YtBN4cxYvE,4204
|
|
26085
|
+
pulumi_azure_native-2.60.0a1725532600.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
|
|
26086
|
+
pulumi_azure_native-2.60.0a1725532600.dist-info/top_level.txt,sha256=8Vl7910-df5jOZ9lvILrFhlMOEUrsaaX2dkztIt4Pkw,20
|
|
26087
|
+
pulumi_azure_native-2.60.0a1725532600.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|