pulumi-azure-native 2.20.1a1701336041__py3-none-any.whl → 2.20.2a1701703974__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/__init__.py +8 -0
- pulumi_azure_native/alertsmanagement/__init__.py +3 -0
- pulumi_azure_native/alertsmanagement/_enums.py +0 -10
- pulumi_azure_native/alertsmanagement/_inputs.py +4 -118
- pulumi_azure_native/alertsmanagement/alert_processing_rule_by_name.py +6 -2
- pulumi_azure_native/alertsmanagement/get_alert_processing_rule_by_name.py +6 -2
- pulumi_azure_native/alertsmanagement/outputs.py +1 -120
- pulumi_azure_native/alertsmanagement/v20210808/__init__.py +12 -0
- pulumi_azure_native/alertsmanagement/v20210808/_enums.py +70 -0
- pulumi_azure_native/alertsmanagement/v20210808/_inputs.py +519 -0
- pulumi_azure_native/alertsmanagement/v20210808/alert_processing_rule_by_name.py +253 -0
- pulumi_azure_native/alertsmanagement/v20210808/get_alert_processing_rule_by_name.py +157 -0
- pulumi_azure_native/alertsmanagement/v20210808/outputs.py +671 -0
- pulumi_azure_native/config/__init__.pyi +23 -5
- pulumi_azure_native/config/vars.py +29 -5
- pulumi_azure_native/insights/__init__.py +1 -0
- pulumi_azure_native/insights/list_diagnostic_settings_category.py +80 -0
- pulumi_azure_native/insights/outputs.py +80 -0
- pulumi_azure_native/insights/v20170501preview/__init__.py +1 -0
- pulumi_azure_native/insights/v20170501preview/list_diagnostic_settings_category.py +74 -0
- pulumi_azure_native/insights/v20170501preview/outputs.py +57 -0
- pulumi_azure_native/insights/v20210501preview/__init__.py +1 -0
- pulumi_azure_native/insights/v20210501preview/list_diagnostic_settings_category.py +74 -0
- pulumi_azure_native/insights/v20210501preview/outputs.py +80 -0
- pulumi_azure_native/provider.py +49 -9
- pulumi_azure_native/testbase/_inputs.py +17 -16
- {pulumi_azure_native-2.20.1a1701336041.dist-info → pulumi_azure_native-2.20.2a1701703974.dist-info}/METADATA +1 -1
- {pulumi_azure_native-2.20.1a1701336041.dist-info → pulumi_azure_native-2.20.2a1701703974.dist-info}/RECORD +30 -21
- {pulumi_azure_native-2.20.1a1701336041.dist-info → pulumi_azure_native-2.20.2a1701703974.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-2.20.1a1701336041.dist-info → pulumi_azure_native-2.20.2a1701703974.dist-info}/top_level.txt +0 -0
pulumi_azure_native/provider.py
CHANGED
|
@@ -21,6 +21,8 @@ class ProviderArgs:
|
|
|
21
21
|
client_secret: Optional[pulumi.Input[str]] = None,
|
|
22
22
|
disable_pulumi_partner_id: Optional[pulumi.Input[bool]] = None,
|
|
23
23
|
environment: Optional[pulumi.Input[str]] = None,
|
|
24
|
+
location: Optional[pulumi.Input[str]] = None,
|
|
25
|
+
metadata_host: Optional[pulumi.Input[str]] = None,
|
|
24
26
|
msi_endpoint: Optional[pulumi.Input[str]] = None,
|
|
25
27
|
oidc_request_token: Optional[pulumi.Input[str]] = None,
|
|
26
28
|
oidc_request_url: Optional[pulumi.Input[str]] = None,
|
|
@@ -38,9 +40,11 @@ class ProviderArgs:
|
|
|
38
40
|
:param pulumi.Input[str] client_id: The Client ID which should be used.
|
|
39
41
|
:param pulumi.Input[str] client_secret: The Client Secret which should be used. For use When authenticating as a Service Principal using a Client Secret.
|
|
40
42
|
:param pulumi.Input[bool] disable_pulumi_partner_id: This will disable the Pulumi Partner ID which is used if a custom `partnerId` isn't specified.
|
|
41
|
-
:param pulumi.Input[str] environment: The Cloud Environment which should be used. Possible values are public, usgovernment,
|
|
42
|
-
:param pulumi.Input[str]
|
|
43
|
-
:param pulumi.Input[str]
|
|
43
|
+
:param pulumi.Input[str] environment: The Cloud Environment which should be used. Possible values are public, usgovernment, and china. Defaults to public.
|
|
44
|
+
:param pulumi.Input[str] location: The location to use. ResourceGroups will consult this property for a default location, if one was not supplied explicitly when defining the resource.
|
|
45
|
+
:param pulumi.Input[str] metadata_host: The Hostname of the Azure Metadata Service.
|
|
46
|
+
:param pulumi.Input[str] msi_endpoint: The path to a custom endpoint for Managed Service Identity - in most circumstances this should be detected automatically.
|
|
47
|
+
:param pulumi.Input[str] oidc_request_token: Your cloud service or provider’s bearer token to exchange for an OIDC ID token.
|
|
44
48
|
:param pulumi.Input[str] oidc_request_url: The URL to initiate the `oidcRequestToken` OIDC token exchange.
|
|
45
49
|
:param pulumi.Input[str] oidc_token: The OIDC token to exchange for an Azure token.
|
|
46
50
|
:param pulumi.Input[str] partner_id: A GUID/UUID that is registered with Microsoft to facilitate partner resource usage attribution.
|
|
@@ -65,6 +69,10 @@ class ProviderArgs:
|
|
|
65
69
|
environment = 'public'
|
|
66
70
|
if environment is not None:
|
|
67
71
|
pulumi.set(__self__, "environment", environment)
|
|
72
|
+
if location is not None:
|
|
73
|
+
pulumi.set(__self__, "location", location)
|
|
74
|
+
if metadata_host is not None:
|
|
75
|
+
pulumi.set(__self__, "metadata_host", metadata_host)
|
|
68
76
|
if msi_endpoint is not None:
|
|
69
77
|
pulumi.set(__self__, "msi_endpoint", msi_endpoint)
|
|
70
78
|
if oidc_request_token is not None:
|
|
@@ -164,7 +172,7 @@ class ProviderArgs:
|
|
|
164
172
|
@pulumi.getter
|
|
165
173
|
def environment(self) -> Optional[pulumi.Input[str]]:
|
|
166
174
|
"""
|
|
167
|
-
The Cloud Environment which should be used. Possible values are public, usgovernment,
|
|
175
|
+
The Cloud Environment which should be used. Possible values are public, usgovernment, and china. Defaults to public.
|
|
168
176
|
"""
|
|
169
177
|
return pulumi.get(self, "environment")
|
|
170
178
|
|
|
@@ -172,11 +180,35 @@ class ProviderArgs:
|
|
|
172
180
|
def environment(self, value: Optional[pulumi.Input[str]]):
|
|
173
181
|
pulumi.set(self, "environment", value)
|
|
174
182
|
|
|
183
|
+
@property
|
|
184
|
+
@pulumi.getter
|
|
185
|
+
def location(self) -> Optional[pulumi.Input[str]]:
|
|
186
|
+
"""
|
|
187
|
+
The location to use. ResourceGroups will consult this property for a default location, if one was not supplied explicitly when defining the resource.
|
|
188
|
+
"""
|
|
189
|
+
return pulumi.get(self, "location")
|
|
190
|
+
|
|
191
|
+
@location.setter
|
|
192
|
+
def location(self, value: Optional[pulumi.Input[str]]):
|
|
193
|
+
pulumi.set(self, "location", value)
|
|
194
|
+
|
|
195
|
+
@property
|
|
196
|
+
@pulumi.getter(name="metadataHost")
|
|
197
|
+
def metadata_host(self) -> Optional[pulumi.Input[str]]:
|
|
198
|
+
"""
|
|
199
|
+
The Hostname of the Azure Metadata Service.
|
|
200
|
+
"""
|
|
201
|
+
return pulumi.get(self, "metadata_host")
|
|
202
|
+
|
|
203
|
+
@metadata_host.setter
|
|
204
|
+
def metadata_host(self, value: Optional[pulumi.Input[str]]):
|
|
205
|
+
pulumi.set(self, "metadata_host", value)
|
|
206
|
+
|
|
175
207
|
@property
|
|
176
208
|
@pulumi.getter(name="msiEndpoint")
|
|
177
209
|
def msi_endpoint(self) -> Optional[pulumi.Input[str]]:
|
|
178
210
|
"""
|
|
179
|
-
The path to a custom endpoint for Managed Service Identity - in most circumstances this should be detected automatically.
|
|
211
|
+
The path to a custom endpoint for Managed Service Identity - in most circumstances this should be detected automatically.
|
|
180
212
|
"""
|
|
181
213
|
return pulumi.get(self, "msi_endpoint")
|
|
182
214
|
|
|
@@ -188,7 +220,7 @@ class ProviderArgs:
|
|
|
188
220
|
@pulumi.getter(name="oidcRequestToken")
|
|
189
221
|
def oidc_request_token(self) -> Optional[pulumi.Input[str]]:
|
|
190
222
|
"""
|
|
191
|
-
Your provider’s token to exchange for an OIDC token.
|
|
223
|
+
Your cloud service or provider’s bearer token to exchange for an OIDC ID token.
|
|
192
224
|
"""
|
|
193
225
|
return pulumi.get(self, "oidc_request_token")
|
|
194
226
|
|
|
@@ -293,6 +325,8 @@ class Provider(pulumi.ProviderResource):
|
|
|
293
325
|
client_secret: Optional[pulumi.Input[str]] = None,
|
|
294
326
|
disable_pulumi_partner_id: Optional[pulumi.Input[bool]] = None,
|
|
295
327
|
environment: Optional[pulumi.Input[str]] = None,
|
|
328
|
+
location: Optional[pulumi.Input[str]] = None,
|
|
329
|
+
metadata_host: Optional[pulumi.Input[str]] = None,
|
|
296
330
|
msi_endpoint: Optional[pulumi.Input[str]] = None,
|
|
297
331
|
oidc_request_token: Optional[pulumi.Input[str]] = None,
|
|
298
332
|
oidc_request_url: Optional[pulumi.Input[str]] = None,
|
|
@@ -314,9 +348,11 @@ class Provider(pulumi.ProviderResource):
|
|
|
314
348
|
:param pulumi.Input[str] client_id: The Client ID which should be used.
|
|
315
349
|
:param pulumi.Input[str] client_secret: The Client Secret which should be used. For use When authenticating as a Service Principal using a Client Secret.
|
|
316
350
|
:param pulumi.Input[bool] disable_pulumi_partner_id: This will disable the Pulumi Partner ID which is used if a custom `partnerId` isn't specified.
|
|
317
|
-
:param pulumi.Input[str] environment: The Cloud Environment which should be used. Possible values are public, usgovernment,
|
|
318
|
-
:param pulumi.Input[str]
|
|
319
|
-
:param pulumi.Input[str]
|
|
351
|
+
:param pulumi.Input[str] environment: The Cloud Environment which should be used. Possible values are public, usgovernment, and china. Defaults to public.
|
|
352
|
+
:param pulumi.Input[str] location: The location to use. ResourceGroups will consult this property for a default location, if one was not supplied explicitly when defining the resource.
|
|
353
|
+
:param pulumi.Input[str] metadata_host: The Hostname of the Azure Metadata Service.
|
|
354
|
+
:param pulumi.Input[str] msi_endpoint: The path to a custom endpoint for Managed Service Identity - in most circumstances this should be detected automatically.
|
|
355
|
+
:param pulumi.Input[str] oidc_request_token: Your cloud service or provider’s bearer token to exchange for an OIDC ID token.
|
|
320
356
|
:param pulumi.Input[str] oidc_request_url: The URL to initiate the `oidcRequestToken` OIDC token exchange.
|
|
321
357
|
:param pulumi.Input[str] oidc_token: The OIDC token to exchange for an Azure token.
|
|
322
358
|
:param pulumi.Input[str] partner_id: A GUID/UUID that is registered with Microsoft to facilitate partner resource usage attribution.
|
|
@@ -356,6 +392,8 @@ class Provider(pulumi.ProviderResource):
|
|
|
356
392
|
client_secret: Optional[pulumi.Input[str]] = None,
|
|
357
393
|
disable_pulumi_partner_id: Optional[pulumi.Input[bool]] = None,
|
|
358
394
|
environment: Optional[pulumi.Input[str]] = None,
|
|
395
|
+
location: Optional[pulumi.Input[str]] = None,
|
|
396
|
+
metadata_host: Optional[pulumi.Input[str]] = None,
|
|
359
397
|
msi_endpoint: Optional[pulumi.Input[str]] = None,
|
|
360
398
|
oidc_request_token: Optional[pulumi.Input[str]] = None,
|
|
361
399
|
oidc_request_url: Optional[pulumi.Input[str]] = None,
|
|
@@ -383,6 +421,8 @@ class Provider(pulumi.ProviderResource):
|
|
|
383
421
|
if environment is None:
|
|
384
422
|
environment = 'public'
|
|
385
423
|
__props__.__dict__["environment"] = environment
|
|
424
|
+
__props__.__dict__["location"] = location
|
|
425
|
+
__props__.__dict__["metadata_host"] = metadata_host
|
|
386
426
|
__props__.__dict__["msi_endpoint"] = msi_endpoint
|
|
387
427
|
__props__.__dict__["oidc_request_token"] = oidc_request_token
|
|
388
428
|
__props__.__dict__["oidc_request_url"] = oidc_request_url
|
|
@@ -366,18 +366,19 @@ class SubscriptionReceiverValueArgs:
|
|
|
366
366
|
class TargetOSInfoArgs:
|
|
367
367
|
def __init__(__self__, *,
|
|
368
368
|
os_update_type: pulumi.Input[str],
|
|
369
|
-
|
|
370
|
-
|
|
369
|
+
baseline_oss: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
370
|
+
target_oss: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
|
371
371
|
"""
|
|
372
372
|
The information of the target OS to be tested.
|
|
373
373
|
:param pulumi.Input[str] os_update_type: Specifies the OS update type to test against, e.g., 'Security updates' or 'Feature updates'.
|
|
374
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] target_oss: Specifies the target OSs to be tested.
|
|
375
374
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] baseline_oss: Specifies the baseline OSs to be tested.
|
|
375
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] target_oss: Specifies the target OSs to be tested.
|
|
376
376
|
"""
|
|
377
377
|
pulumi.set(__self__, "os_update_type", os_update_type)
|
|
378
|
-
pulumi.set(__self__, "target_oss", target_oss)
|
|
379
378
|
if baseline_oss is not None:
|
|
380
379
|
pulumi.set(__self__, "baseline_oss", baseline_oss)
|
|
380
|
+
if target_oss is not None:
|
|
381
|
+
pulumi.set(__self__, "target_oss", target_oss)
|
|
381
382
|
|
|
382
383
|
@property
|
|
383
384
|
@pulumi.getter(name="osUpdateType")
|
|
@@ -391,18 +392,6 @@ class TargetOSInfoArgs:
|
|
|
391
392
|
def os_update_type(self, value: pulumi.Input[str]):
|
|
392
393
|
pulumi.set(self, "os_update_type", value)
|
|
393
394
|
|
|
394
|
-
@property
|
|
395
|
-
@pulumi.getter(name="targetOSs")
|
|
396
|
-
def target_oss(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
|
|
397
|
-
"""
|
|
398
|
-
Specifies the target OSs to be tested.
|
|
399
|
-
"""
|
|
400
|
-
return pulumi.get(self, "target_oss")
|
|
401
|
-
|
|
402
|
-
@target_oss.setter
|
|
403
|
-
def target_oss(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
|
|
404
|
-
pulumi.set(self, "target_oss", value)
|
|
405
|
-
|
|
406
395
|
@property
|
|
407
396
|
@pulumi.getter(name="baselineOSs")
|
|
408
397
|
def baseline_oss(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
@@ -415,6 +404,18 @@ class TargetOSInfoArgs:
|
|
|
415
404
|
def baseline_oss(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
416
405
|
pulumi.set(self, "baseline_oss", value)
|
|
417
406
|
|
|
407
|
+
@property
|
|
408
|
+
@pulumi.getter(name="targetOSs")
|
|
409
|
+
def target_oss(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
410
|
+
"""
|
|
411
|
+
Specifies the target OSs to be tested.
|
|
412
|
+
"""
|
|
413
|
+
return pulumi.get(self, "target_oss")
|
|
414
|
+
|
|
415
|
+
@target_oss.setter
|
|
416
|
+
def target_oss(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
417
|
+
pulumi.set(self, "target_oss", value)
|
|
418
|
+
|
|
418
419
|
|
|
419
420
|
@pulumi.input_type
|
|
420
421
|
class TestBaseAccountSKUArgs:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
pulumi_azure_native/__init__.py,sha256=
|
|
1
|
+
pulumi_azure_native/__init__.py,sha256=aX75be3Q6I6o6SIw0TLfwTFJqjL_qa2hxN9FbkRZUpo,703253
|
|
2
2
|
pulumi_azure_native/_utilities.py,sha256=bVTUBZrGEPrLrx_Z2uOcnDsyyk96e-XJPWK0c5DSLG0,8063
|
|
3
|
-
pulumi_azure_native/provider.py,sha256=
|
|
3
|
+
pulumi_azure_native/provider.py,sha256=LNUQF0if_Zo-PnKfRhLCMwTAj8sZScuh5SUu6m7_e3k,23122
|
|
4
4
|
pulumi_azure_native/pulumi-plugin.json,sha256=V6SbnACkF8XN-KxV-K5PJhTTTqe9VRprRxzLHQ9nkO8,49
|
|
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
|
|
@@ -116,16 +116,16 @@ pulumi_azure_native/agfoodplatform/v20230601preview/get_solution.py,sha256=u8zH8
|
|
|
116
116
|
pulumi_azure_native/agfoodplatform/v20230601preview/outputs.py,sha256=7FmsxOZ1wdR0s9S_CnK3T6IJdt8Odwm8F29oWzqZl-A,34388
|
|
117
117
|
pulumi_azure_native/agfoodplatform/v20230601preview/private_endpoint_connection.py,sha256=7LI29jQ0wrRGGeYdLz00a6rSU4LIG43_lWQbuVYsoVI,12365
|
|
118
118
|
pulumi_azure_native/agfoodplatform/v20230601preview/solution.py,sha256=_ocWtDAq8KkoRdjp1ynhVaCMpEydIIRdH7JxlE0Vz4k,9857
|
|
119
|
-
pulumi_azure_native/alertsmanagement/__init__.py,sha256=
|
|
120
|
-
pulumi_azure_native/alertsmanagement/_enums.py,sha256=
|
|
121
|
-
pulumi_azure_native/alertsmanagement/_inputs.py,sha256=
|
|
119
|
+
pulumi_azure_native/alertsmanagement/__init__.py,sha256=1nkBCjbvl7H-bvjQj71nF4tGyKc3sWG-8Ys_IEGNAQM,1979
|
|
120
|
+
pulumi_azure_native/alertsmanagement/_enums.py,sha256=1fHrVuhJSKX8RIVQW0O5wfA1zvxOE8r0k3T6fDWSjjc,2704
|
|
121
|
+
pulumi_azure_native/alertsmanagement/_inputs.py,sha256=aZlKBjJEVXGwNubIFfLyyxTVIGqq5m99biM2iFCbZlA,57418
|
|
122
122
|
pulumi_azure_native/alertsmanagement/action_rule_by_name.py,sha256=tO-Fw9C-mFVq0-FsZJUn-sOy80bEVR7grw6h7WdIoqU,10977
|
|
123
|
-
pulumi_azure_native/alertsmanagement/alert_processing_rule_by_name.py,sha256=
|
|
123
|
+
pulumi_azure_native/alertsmanagement/alert_processing_rule_by_name.py,sha256=oaBc5PjMe8kDAaF6ew6TR8386pn7zfGP3xjWgGcRG3Y,11387
|
|
124
124
|
pulumi_azure_native/alertsmanagement/get_action_rule_by_name.py,sha256=ArmsDOGJwAZXbeX0yA3uSHRS14XuZfh2TivchjwdpUY,5061
|
|
125
|
-
pulumi_azure_native/alertsmanagement/get_alert_processing_rule_by_name.py,sha256=
|
|
125
|
+
pulumi_azure_native/alertsmanagement/get_alert_processing_rule_by_name.py,sha256=xtkq9Pbe8GuEI23ve6klucFTNUDVTzY1OMkHh-FFCcc,5934
|
|
126
126
|
pulumi_azure_native/alertsmanagement/get_prometheus_rule_group.py,sha256=qaFy2KbMnqExy-maulAWd_oJm9RySyAa4XqmOKMLhSs,8400
|
|
127
127
|
pulumi_azure_native/alertsmanagement/get_smart_detector_alert_rule.py,sha256=rJcn7EQ5wjbY4ztqmMTZhNEolbqhac7qudynRoKnFFw,8788
|
|
128
|
-
pulumi_azure_native/alertsmanagement/outputs.py,sha256=
|
|
128
|
+
pulumi_azure_native/alertsmanagement/outputs.py,sha256=LT-CiFZscem98DVvD47MdMHA6emTo4pH6XljcH5Ce7w,71797
|
|
129
129
|
pulumi_azure_native/alertsmanagement/prometheus_rule_group.py,sha256=rXo8wHuOmvAQtYN4g-aBQ_bjmVAobLW9OFDDLV6QzYc,17160
|
|
130
130
|
pulumi_azure_native/alertsmanagement/smart_detector_alert_rule.py,sha256=xB_hxZifEcYj4l9ggOovZ15gCcJR_20QtTXKdETx3dw,19291
|
|
131
131
|
pulumi_azure_native/alertsmanagement/v20190505preview/__init__.py,sha256=0On6xH5cVeI5N3lJlCJcBWnGGFxm-05BF1boeOKsdDQ,393
|
|
@@ -140,6 +140,12 @@ pulumi_azure_native/alertsmanagement/v20210401/_inputs.py,sha256=UlNTqfCQg_yBh9P
|
|
|
140
140
|
pulumi_azure_native/alertsmanagement/v20210401/get_smart_detector_alert_rule.py,sha256=2ymuEBCTaj3NedTiEZNr7DybJVaVR0CIBLewraWFQz0,8719
|
|
141
141
|
pulumi_azure_native/alertsmanagement/v20210401/outputs.py,sha256=HLJ15FMn4gjZ15deGLcHGyGHBKB3VVlSXLBb7PVUaak,11483
|
|
142
142
|
pulumi_azure_native/alertsmanagement/v20210401/smart_detector_alert_rule.py,sha256=ct0wluFmMFCqzHHb2pMfYsO-wwYqb7rrzzZZWyfcPFw,19102
|
|
143
|
+
pulumi_azure_native/alertsmanagement/v20210808/__init__.py,sha256=weDoHDkhxSmz5p4Md-3z5_I0QjloNtVpIQLn_0SEBgE,413
|
|
144
|
+
pulumi_azure_native/alertsmanagement/v20210808/_enums.py,sha256=_RagHIQKV4XjXXLXNZax5A6yw0A3afxjAprXR_sB7PM,1563
|
|
145
|
+
pulumi_azure_native/alertsmanagement/v20210808/_inputs.py,sha256=GRpw-HxQlEdZQGzyqfNuCIQlutyl9o9ae2pNUS7YFmI,19329
|
|
146
|
+
pulumi_azure_native/alertsmanagement/v20210808/alert_processing_rule_by_name.py,sha256=IolQmgW6c3DVJGWAkcom22lA8PowLdeDUzZinZZcIKI,11182
|
|
147
|
+
pulumi_azure_native/alertsmanagement/v20210808/get_alert_processing_rule_by_name.py,sha256=X3zh-37w-NC2rm6ZkMzCiwlHM-2lGqCHW3XEQS82GBM,5755
|
|
148
|
+
pulumi_azure_native/alertsmanagement/v20210808/outputs.py,sha256=9DnWZu-g8F8k8I27fs8op6gDlYsTgmUfJOpaL9IAiRk,22804
|
|
143
149
|
pulumi_azure_native/alertsmanagement/v20230301/__init__.py,sha256=62n671-RFggDJatWa0QdKyzJYKbmbm27DMJZaxRbjxA,375
|
|
144
150
|
pulumi_azure_native/alertsmanagement/v20230301/_inputs.py,sha256=5p57lvlllAP8NQgACdz7A1lBk0FoRNRxix6HM2w6W_w,10862
|
|
145
151
|
pulumi_azure_native/alertsmanagement/v20230301/get_prometheus_rule_group.py,sha256=AkoOh1BOMDW9PseWoLNYTEBdPGQr6MrU2W8AQftebK0,8331
|
|
@@ -3689,8 +3695,8 @@ pulumi_azure_native/confidentialledger/v20230628preview/ledger.py,sha256=6sKA9hD
|
|
|
3689
3695
|
pulumi_azure_native/confidentialledger/v20230628preview/managed_ccf.py,sha256=JMKhIo7K4LzDCDchMnL31Rgc3xomPdvb6EX8jLIN0FE,10422
|
|
3690
3696
|
pulumi_azure_native/confidentialledger/v20230628preview/outputs.py,sha256=M_mCJhjqMrLCcv2e3s9IuOR_TivrtaBiAi5TaGvWH38,24377
|
|
3691
3697
|
pulumi_azure_native/config/__init__.py,sha256=YdGLR92OvYD0CYDgt_FTaHJOb_VzW8fto_Cgx6fLd3k,267
|
|
3692
|
-
pulumi_azure_native/config/__init__.pyi,sha256=
|
|
3693
|
-
pulumi_azure_native/config/vars.py,sha256=
|
|
3698
|
+
pulumi_azure_native/config/__init__.pyi,sha256=Vm-cO0yU5BdOdfgZ8GWrYz6HbKgGhLBOaPsAkta-jz8,2486
|
|
3699
|
+
pulumi_azure_native/config/vars.py,sha256=D0Jdz6xkqDRHjpTQ6e1im0PAhY4NYU6T6g5BBaEp140,4477
|
|
3694
3700
|
pulumi_azure_native/confluent/__init__.py,sha256=nL7Ilhvn_YxVAUlDwwfBFujf9hLzQCLZaCszwYqrEsU,1222
|
|
3695
3701
|
pulumi_azure_native/confluent/_inputs.py,sha256=e0habkzYelR6ik6PNNwLWYzoT3Q82IQnOF0UR0ocbYw,4484
|
|
3696
3702
|
pulumi_azure_native/confluent/get_organization.py,sha256=BYDqQuM98vODZQfO9G99FcyTGbqShv99a5KDO49VhyM,8150
|
|
@@ -8257,7 +8263,7 @@ pulumi_azure_native/importexport/v20210101/get_job.py,sha256=EiW6E5ny3IeLUO59pDB
|
|
|
8257
8263
|
pulumi_azure_native/importexport/v20210101/job.py,sha256=eDgTeYl5ityWukSI6G396ezXAlNo0DhxXEB8nGn3JTk,10360
|
|
8258
8264
|
pulumi_azure_native/importexport/v20210101/list_bit_locker_key.py,sha256=JF729oPyG5pO102FMcfeCDV_6iohJP-ghRdQo20oJv0,2793
|
|
8259
8265
|
pulumi_azure_native/importexport/v20210101/outputs.py,sha256=wJaPssumBTePlRb-L5w4NmfGQ_MgZemovG5hlMKGcgE,52502
|
|
8260
|
-
pulumi_azure_native/insights/__init__.py,sha256=
|
|
8266
|
+
pulumi_azure_native/insights/__init__.py,sha256=fQngWQad-FrWOezR_VzkMsa_exu_0tRKSxn3CBNDcm8,9982
|
|
8261
8267
|
pulumi_azure_native/insights/_enums.py,sha256=qtBU813rlcRjkfiogJDVNRHPnWgUJ20u3DhOybeEnv0,13689
|
|
8262
8268
|
pulumi_azure_native/insights/_inputs.py,sha256=P1Jm6cWHrtE-LEtxG_5dRQtsV8ue1O2Rt1QjfHUDUyM,307195
|
|
8263
8269
|
pulumi_azure_native/insights/action_group.py,sha256=nAD71UUuGB6UX8hTEKUODr9UkUOuGFTGBK9iRM1rXQE,32647
|
|
@@ -8310,12 +8316,13 @@ pulumi_azure_native/insights/get_workbook.py,sha256=llFP_zOhQC7z6vmVB7aMK8wYYsTV
|
|
|
8310
8316
|
pulumi_azure_native/insights/get_workbook_template.py,sha256=qZu2SbLT8ObuqRpMtNSLQ3B17eGlY-rOd9c0sk3eBNg,7187
|
|
8311
8317
|
pulumi_azure_native/insights/guest_diagnostics_setting.py,sha256=FytWZNXPywEgaFUEo6G0GxseWXLkr8QHn7owmgToY6U,12869
|
|
8312
8318
|
pulumi_azure_native/insights/guest_diagnostics_settings_association.py,sha256=o67-ijwB7pU5S1_INFFK9VAXl4EZ1xMlOrnSq558yNo,10652
|
|
8319
|
+
pulumi_azure_native/insights/list_diagnostic_settings_category.py,sha256=NqxdqDBD2NajDb_xdi2tVMwNF5lzsgi4gTSA0yTuqR0,2897
|
|
8313
8320
|
pulumi_azure_native/insights/list_ea_subscription_list_migration_date_post.py,sha256=38ymHPll9xWUJkREA67ixLYMBKg7hdWnp2ThLD2q8qU,3355
|
|
8314
8321
|
pulumi_azure_native/insights/log_profile.py,sha256=agDRTCJfbHipS1JMaA1vy8MAHEPCwVZB3qkA2uNKTpA,16069
|
|
8315
8322
|
pulumi_azure_native/insights/management_group_diagnostic_setting.py,sha256=wVSKEodD35nV7V_j8BE3aYzSRmaf3xg8iViUv6gdMX8,18524
|
|
8316
8323
|
pulumi_azure_native/insights/metric_alert.py,sha256=0LZn3M7jzfCAbBl8rXOdjtr9HATFmVPO8-Rs-tWOMqk,26549
|
|
8317
8324
|
pulumi_azure_native/insights/my_workbook.py,sha256=E-9yXDHPp9phUgQgsr8My5SGb7V2mvChazmwP7Ti3pA,22314
|
|
8318
|
-
pulumi_azure_native/insights/outputs.py,sha256=
|
|
8325
|
+
pulumi_azure_native/insights/outputs.py,sha256=5DMS6TV8psSMAD0mbDBYs_vV_aekb8wP1I6PK8-cymc,360300
|
|
8319
8326
|
pulumi_azure_native/insights/private_endpoint_connection.py,sha256=ZUVn_pcnFpbZlpzOEkVCFkx1zv5buyZxwT9Qigx10Ps,11510
|
|
8320
8327
|
pulumi_azure_native/insights/private_link_scope.py,sha256=Uz6_BzmHgDYkAqee0eLzvq-co-72euKjhzFh7_PQ7LY,12030
|
|
8321
8328
|
pulumi_azure_native/insights/private_link_scoped_resource.py,sha256=kDbmTOUxwMMySjUtjvBhXqFYu8vi6Ap4-vT-AVk0z8o,9732
|
|
@@ -8355,10 +8362,11 @@ pulumi_azure_native/insights/v20170401/_inputs.py,sha256=iM6Yqf3DwmjQS8ib9q1Mt3k
|
|
|
8355
8362
|
pulumi_azure_native/insights/v20170401/activity_log_alert.py,sha256=z2yhGWNiccuZHVZ194dETOit0liedmlFgYTz1zQz7lY,16348
|
|
8356
8363
|
pulumi_azure_native/insights/v20170401/get_activity_log_alert.py,sha256=Be3Q6wrUIPfE3mgo6RkJzXX1KoOkFfuMqukc6XVLp_I,7069
|
|
8357
8364
|
pulumi_azure_native/insights/v20170401/outputs.py,sha256=9hM6vzKeqcJlwhhU7C2ue9ZCvVnfWqf9hr83R7Y0VwY,7123
|
|
8358
|
-
pulumi_azure_native/insights/v20170501preview/__init__.py,sha256=
|
|
8365
|
+
pulumi_azure_native/insights/v20170501preview/__init__.py,sha256=WGycAyI1SnWGfwdArq9FYZ0HzCo-Z3AIzzuNh4heP84,444
|
|
8359
8366
|
pulumi_azure_native/insights/v20170501preview/_inputs.py,sha256=ealFfPqBzJT1YuDfd7aLrP4gR2aIB2mZcc6BMPzheqc,1760
|
|
8360
8367
|
pulumi_azure_native/insights/v20170501preview/get_subscription_diagnostic_setting.py,sha256=D8_VoB14kESCROWm5RoKd1PDM3oKi9fPsrCYGB3_o78,7772
|
|
8361
|
-
pulumi_azure_native/insights/v20170501preview/
|
|
8368
|
+
pulumi_azure_native/insights/v20170501preview/list_diagnostic_settings_category.py,sha256=UDEOseLfUVBhDnNkCz6F_KuFOL7EV7BHnxYJOAnPe3U,2709
|
|
8369
|
+
pulumi_azure_native/insights/v20170501preview/outputs.py,sha256=QgSzqn97EA2ZEiAT4i_8abbO5s-VmehoNLBO-tinfko,3110
|
|
8362
8370
|
pulumi_azure_native/insights/v20170501preview/subscription_diagnostic_setting.py,sha256=6Kjy1y5SOvFRwDhwASZns6Gdawg40IAGs69JpOsfc3w,16017
|
|
8363
8371
|
pulumi_azure_native/insights/v20171001/__init__.py,sha256=ftFF9tioBJc-4XUMn-4l1N-I_h8t97a9yEWcILOJbpM,313
|
|
8364
8372
|
pulumi_azure_native/insights/v20171001/list_ea_subscription_list_migration_date_post.py,sha256=ugqmKHdbCGR6thV_kojdDYYnZ5qbRiteJ4pc3H3tggI,3286
|
|
@@ -8448,14 +8456,15 @@ pulumi_azure_native/insights/v20210308/get_workbook.py,sha256=lqHd4EL0k_slx1neWN
|
|
|
8448
8456
|
pulumi_azure_native/insights/v20210308/my_workbook.py,sha256=jbhlN9uJLvDLI7DMh_D2C7alb1eQoqR3It2mC4lQ8IM,22125
|
|
8449
8457
|
pulumi_azure_native/insights/v20210308/outputs.py,sha256=ai-ntf1PCGuHuSKRmMoHojLLgh5SH89B3H371ON8fzI,11964
|
|
8450
8458
|
pulumi_azure_native/insights/v20210308/workbook.py,sha256=Quvun0P05FfkvNrb4d4M18XEdiHTycwfs_GHlsrTqtI,24074
|
|
8451
|
-
pulumi_azure_native/insights/v20210501preview/__init__.py,sha256=
|
|
8459
|
+
pulumi_azure_native/insights/v20210501preview/__init__.py,sha256=pIdQOonulr69CYR3fki7w-9CcIbc6zRszNH_wqewEs0,622
|
|
8452
8460
|
pulumi_azure_native/insights/v20210501preview/_inputs.py,sha256=3_P1JsqnCh2Q8JXGZKsSxtVs1bLZS7wVIdl0bk1a5x0,12299
|
|
8453
8461
|
pulumi_azure_native/insights/v20210501preview/diagnostic_setting.py,sha256=VUv_v8pruRguZQRnqbm9G5Eq4B9IBoiaRfhUCwd3DyY,21583
|
|
8454
8462
|
pulumi_azure_native/insights/v20210501preview/get_diagnostic_setting.py,sha256=mcfJwKpgNUqOhFLniOaFM1UAVzUZwBv1nu2kYspSHdw,10396
|
|
8455
8463
|
pulumi_azure_native/insights/v20210501preview/get_management_group_diagnostic_setting.py,sha256=obahrUe8gm6qhT1BGKYV80UXH3oRGuiMKh4g1bF52d8,9302
|
|
8456
8464
|
pulumi_azure_native/insights/v20210501preview/get_subscription_diagnostic_setting.py,sha256=zllLtN7l6sTUvDcbedT5DB-xnsLT1EJo28ekkCrn9Zw,8853
|
|
8465
|
+
pulumi_azure_native/insights/v20210501preview/list_diagnostic_settings_category.py,sha256=AhF0f0rJH6gLU2tjIwuLrL7x9nX-0xe9XZbKOTVttwQ,2709
|
|
8457
8466
|
pulumi_azure_native/insights/v20210501preview/management_group_diagnostic_setting.py,sha256=HjwJp_xmJw-tBIuTPdDKY4r4fIf5qhhc2T2Y9CgMMU8,18185
|
|
8458
|
-
pulumi_azure_native/insights/v20210501preview/outputs.py,sha256=
|
|
8467
|
+
pulumi_azure_native/insights/v20210501preview/outputs.py,sha256=EAU9-i3VA7TiPqt3-Lr6Fx20sk3HxMwKIomXCBcnOVQ,19955
|
|
8459
8468
|
pulumi_azure_native/insights/v20210501preview/subscription_diagnostic_setting.py,sha256=2rIUizNWFDGhpZImFp09T_Z1LmfkQQ2VBX4xtoqtGYk,17080
|
|
8460
8469
|
pulumi_azure_native/insights/v20210701preview/__init__.py,sha256=U0pEMCu4lYBrj6PWigFr6-NTRSzI_WNDeGNWTXBLzJ8,573
|
|
8461
8470
|
pulumi_azure_native/insights/v20210701preview/_enums.py,sha256=ax_NyAgp9Mvjyp6NQcF_9sSLutzdhc1Mt5130C6OkNs,887
|
|
@@ -17271,7 +17280,7 @@ pulumi_azure_native/syntex/v20220915preview/get_document_processor.py,sha256=6Y3
|
|
|
17271
17280
|
pulumi_azure_native/syntex/v20220915preview/outputs.py,sha256=e0ovE1t49IYJhnqa5v5v_0qA6iBIBt_dRWX4Coe6-5E,6950
|
|
17272
17281
|
pulumi_azure_native/testbase/__init__.py,sha256=vtfjXKplYEgWi2TOKClLzKzSzaZnjukxfVOo_0XG9lk,1194
|
|
17273
17282
|
pulumi_azure_native/testbase/_enums.py,sha256=dFamvqPFuwBYfJOpddOdvwCs5YON4c4-XdJ8H-hymMs,845
|
|
17274
|
-
pulumi_azure_native/testbase/_inputs.py,sha256=
|
|
17283
|
+
pulumi_azure_native/testbase/_inputs.py,sha256=2tJAOGn4vo_xK_CKkXUmyKGRo1gqgFjxApOoVLC3xWU,22060
|
|
17275
17284
|
pulumi_azure_native/testbase/customer_event.py,sha256=jnd2huVqj0um4cn3w4EhnEMko7f2RYl1nuPFDqV1FpY,11001
|
|
17276
17285
|
pulumi_azure_native/testbase/favorite_process.py,sha256=Re4d6-7RN47GxNYnZdmAVH3PWHaVTKdjzps02jcrnG8,11788
|
|
17277
17286
|
pulumi_azure_native/testbase/get_billing_hub_service_free_hour_balance.py,sha256=kcnzHwH40Ow4Ds53ygnFi31wl-yO-QXpBo9HzXrwSWM,3922
|
|
@@ -18523,7 +18532,7 @@ pulumi_azure_native/workloads/v20231001preview/sap_central_instance.py,sha256=Ke
|
|
|
18523
18532
|
pulumi_azure_native/workloads/v20231001preview/sap_database_instance.py,sha256=-aR0aCgupI8LNymrLC6Llgkky68v4ZTd2mawd9Lj13U,13907
|
|
18524
18533
|
pulumi_azure_native/workloads/v20231001preview/sap_landscape_monitor.py,sha256=kh_uPVrU8zJqqfe7v2--2sR1w5evu1dVlo0K44bTAQ0,11157
|
|
18525
18534
|
pulumi_azure_native/workloads/v20231001preview/sap_virtual_instance.py,sha256=dMa-ylYX90O5UGT8A5yheKhQqS2_1pLbw3OhbgCfLMQ,24031
|
|
18526
|
-
pulumi_azure_native-2.20.
|
|
18527
|
-
pulumi_azure_native-2.20.
|
|
18528
|
-
pulumi_azure_native-2.20.
|
|
18529
|
-
pulumi_azure_native-2.20.
|
|
18535
|
+
pulumi_azure_native-2.20.2a1701703974.dist-info/METADATA,sha256=04CDMP1MAKB1UfJZi9FUWYqDwlkmJhFJRlpF5-IfZNA,3567
|
|
18536
|
+
pulumi_azure_native-2.20.2a1701703974.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
18537
|
+
pulumi_azure_native-2.20.2a1701703974.dist-info/top_level.txt,sha256=8Vl7910-df5jOZ9lvILrFhlMOEUrsaaX2dkztIt4Pkw,20
|
|
18538
|
+
pulumi_azure_native-2.20.2a1701703974.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|