pulumi-azure-native 3.2.0a1744649622__py3-none-any.whl → 3.3.0a1745626403__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.

Files changed (51) hide show
  1. pulumi_azure_native/__init__.py +11 -0
  2. pulumi_azure_native/advisor/assessment.py +5 -1
  3. pulumi_azure_native/advisor/get_assessment.py +4 -0
  4. pulumi_azure_native/advisor/get_suppression.py +2 -2
  5. pulumi_azure_native/advisor/suppression.py +3 -3
  6. pulumi_azure_native/containerregistry/cache_rule.py +3 -3
  7. pulumi_azure_native/containerregistry/connected_registry.py +3 -3
  8. pulumi_azure_native/containerregistry/credential_set.py +3 -3
  9. pulumi_azure_native/containerregistry/get_cache_rule.py +2 -2
  10. pulumi_azure_native/containerregistry/get_connected_registry.py +2 -2
  11. pulumi_azure_native/containerregistry/get_credential_set.py +2 -2
  12. pulumi_azure_native/containerregistry/get_private_endpoint_connection.py +2 -2
  13. pulumi_azure_native/containerregistry/get_registry.py +2 -2
  14. pulumi_azure_native/containerregistry/get_replication.py +2 -2
  15. pulumi_azure_native/containerregistry/get_scope_map.py +2 -2
  16. pulumi_azure_native/containerregistry/get_token.py +2 -2
  17. pulumi_azure_native/containerregistry/get_webhook.py +2 -2
  18. pulumi_azure_native/containerregistry/get_webhook_callback_config.py +2 -2
  19. pulumi_azure_native/containerregistry/list_registry_credentials.py +2 -2
  20. pulumi_azure_native/containerregistry/list_webhook_events.py +2 -2
  21. pulumi_azure_native/containerregistry/private_endpoint_connection.py +3 -3
  22. pulumi_azure_native/containerregistry/registry.py +3 -3
  23. pulumi_azure_native/containerregistry/replication.py +3 -3
  24. pulumi_azure_native/containerregistry/scope_map.py +3 -3
  25. pulumi_azure_native/containerregistry/token.py +3 -3
  26. pulumi_azure_native/containerregistry/webhook.py +3 -3
  27. pulumi_azure_native/dbforpostgresql/_inputs.py +274 -50
  28. pulumi_azure_native/dbforpostgresql/get_server_group_cluster.py +3 -3
  29. pulumi_azure_native/dbforpostgresql/outputs.py +229 -28
  30. pulumi_azure_native/dbforpostgresql/server_group_cluster.py +24 -24
  31. pulumi_azure_native/durabletask/_enums.py +1 -1
  32. pulumi_azure_native/loadtestservice/_inputs.py +3 -3
  33. pulumi_azure_native/loadtestservice/outputs.py +2 -2
  34. pulumi_azure_native/migrate/_enums.py +23 -0
  35. pulumi_azure_native/migrate/_inputs.py +20 -0
  36. pulumi_azure_native/migrate/outputs.py +14 -0
  37. pulumi_azure_native/monitor/_enums.py +9 -0
  38. pulumi_azure_native/monitor/azure_monitor_workspace.py +38 -18
  39. pulumi_azure_native/monitor/get_azure_monitor_workspace.py +18 -18
  40. pulumi_azure_native/monitor/outputs.py +106 -106
  41. pulumi_azure_native/onlineexperimentation/__init__.py +12 -0
  42. pulumi_azure_native/onlineexperimentation/_enums.py +57 -0
  43. pulumi_azure_native/onlineexperimentation/_inputs.py +385 -0
  44. pulumi_azure_native/onlineexperimentation/get_online_experiment_workspace.py +217 -0
  45. pulumi_azure_native/onlineexperimentation/online_experiment_workspace.py +330 -0
  46. pulumi_azure_native/onlineexperimentation/outputs.py +577 -0
  47. pulumi_azure_native/pulumi-plugin.json +1 -1
  48. {pulumi_azure_native-3.2.0a1744649622.dist-info → pulumi_azure_native-3.3.0a1745626403.dist-info}/METADATA +1 -1
  49. {pulumi_azure_native-3.2.0a1744649622.dist-info → pulumi_azure_native-3.3.0a1745626403.dist-info}/RECORD +51 -45
  50. {pulumi_azure_native-3.2.0a1744649622.dist-info → pulumi_azure_native-3.3.0a1745626403.dist-info}/WHEEL +1 -1
  51. {pulumi_azure_native-3.2.0a1744649622.dist-info → pulumi_azure_native-3.3.0a1745626403.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,577 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from .. import _utilities
16
+ from . import outputs
17
+ from ._enums import *
18
+
19
+ __all__ = [
20
+ 'CustomerManagedKeyEncryptionResponse',
21
+ 'KeyEncryptionKeyIdentityResponse',
22
+ 'ManagedServiceIdentityResponse',
23
+ 'OnlineExperimentWorkspacePropertiesResponse',
24
+ 'OnlineExperimentationWorkspaceSkuResponse',
25
+ 'ResourceEncryptionConfigurationResponse',
26
+ 'SystemDataResponse',
27
+ 'UserAssignedIdentityResponse',
28
+ ]
29
+
30
+ @pulumi.output_type
31
+ class CustomerManagedKeyEncryptionResponse(dict):
32
+ """
33
+ Customer-managed key encryption properties for the resource.
34
+ """
35
+ @staticmethod
36
+ def __key_warning(key: str):
37
+ suggest = None
38
+ if key == "keyEncryptionKeyIdentity":
39
+ suggest = "key_encryption_key_identity"
40
+ elif key == "keyEncryptionKeyUrl":
41
+ suggest = "key_encryption_key_url"
42
+
43
+ if suggest:
44
+ pulumi.log.warn(f"Key '{key}' not found in CustomerManagedKeyEncryptionResponse. Access the value via the '{suggest}' property getter instead.")
45
+
46
+ def __getitem__(self, key: str) -> Any:
47
+ CustomerManagedKeyEncryptionResponse.__key_warning(key)
48
+ return super().__getitem__(key)
49
+
50
+ def get(self, key: str, default = None) -> Any:
51
+ CustomerManagedKeyEncryptionResponse.__key_warning(key)
52
+ return super().get(key, default)
53
+
54
+ def __init__(__self__, *,
55
+ key_encryption_key_identity: Optional['outputs.KeyEncryptionKeyIdentityResponse'] = None,
56
+ key_encryption_key_url: Optional[str] = None):
57
+ """
58
+ Customer-managed key encryption properties for the resource.
59
+ :param 'KeyEncryptionKeyIdentityResponse' key_encryption_key_identity: All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
60
+ :param str key_encryption_key_url: key encryption key Url, versioned or non-versioned. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78 or https://contosovault.vault.azure.net/keys/contosokek.
61
+ """
62
+ if key_encryption_key_identity is not None:
63
+ pulumi.set(__self__, "key_encryption_key_identity", key_encryption_key_identity)
64
+ if key_encryption_key_url is not None:
65
+ pulumi.set(__self__, "key_encryption_key_url", key_encryption_key_url)
66
+
67
+ @property
68
+ @pulumi.getter(name="keyEncryptionKeyIdentity")
69
+ def key_encryption_key_identity(self) -> Optional['outputs.KeyEncryptionKeyIdentityResponse']:
70
+ """
71
+ All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
72
+ """
73
+ return pulumi.get(self, "key_encryption_key_identity")
74
+
75
+ @property
76
+ @pulumi.getter(name="keyEncryptionKeyUrl")
77
+ def key_encryption_key_url(self) -> Optional[str]:
78
+ """
79
+ key encryption key Url, versioned or non-versioned. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78 or https://contosovault.vault.azure.net/keys/contosokek.
80
+ """
81
+ return pulumi.get(self, "key_encryption_key_url")
82
+
83
+
84
+ @pulumi.output_type
85
+ class KeyEncryptionKeyIdentityResponse(dict):
86
+ """
87
+ All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
88
+ """
89
+ @staticmethod
90
+ def __key_warning(key: str):
91
+ suggest = None
92
+ if key == "federatedClientId":
93
+ suggest = "federated_client_id"
94
+ elif key == "identityType":
95
+ suggest = "identity_type"
96
+ elif key == "userAssignedIdentityResourceId":
97
+ suggest = "user_assigned_identity_resource_id"
98
+
99
+ if suggest:
100
+ pulumi.log.warn(f"Key '{key}' not found in KeyEncryptionKeyIdentityResponse. Access the value via the '{suggest}' property getter instead.")
101
+
102
+ def __getitem__(self, key: str) -> Any:
103
+ KeyEncryptionKeyIdentityResponse.__key_warning(key)
104
+ return super().__getitem__(key)
105
+
106
+ def get(self, key: str, default = None) -> Any:
107
+ KeyEncryptionKeyIdentityResponse.__key_warning(key)
108
+ return super().get(key, default)
109
+
110
+ def __init__(__self__, *,
111
+ federated_client_id: Optional[str] = None,
112
+ identity_type: Optional[str] = None,
113
+ user_assigned_identity_resource_id: Optional[str] = None):
114
+ """
115
+ All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
116
+ :param str federated_client_id: application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
117
+ :param str identity_type: The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
118
+ :param str user_assigned_identity_resource_id: User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups/<resource group>/providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity.
119
+ """
120
+ if federated_client_id is not None:
121
+ pulumi.set(__self__, "federated_client_id", federated_client_id)
122
+ if identity_type is not None:
123
+ pulumi.set(__self__, "identity_type", identity_type)
124
+ if user_assigned_identity_resource_id is not None:
125
+ pulumi.set(__self__, "user_assigned_identity_resource_id", user_assigned_identity_resource_id)
126
+
127
+ @property
128
+ @pulumi.getter(name="federatedClientId")
129
+ def federated_client_id(self) -> Optional[str]:
130
+ """
131
+ application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
132
+ """
133
+ return pulumi.get(self, "federated_client_id")
134
+
135
+ @property
136
+ @pulumi.getter(name="identityType")
137
+ def identity_type(self) -> Optional[str]:
138
+ """
139
+ The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
140
+ """
141
+ return pulumi.get(self, "identity_type")
142
+
143
+ @property
144
+ @pulumi.getter(name="userAssignedIdentityResourceId")
145
+ def user_assigned_identity_resource_id(self) -> Optional[str]:
146
+ """
147
+ User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups/<resource group>/providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity.
148
+ """
149
+ return pulumi.get(self, "user_assigned_identity_resource_id")
150
+
151
+
152
+ @pulumi.output_type
153
+ class ManagedServiceIdentityResponse(dict):
154
+ """
155
+ Managed service identity (system assigned and/or user assigned identities)
156
+ """
157
+ @staticmethod
158
+ def __key_warning(key: str):
159
+ suggest = None
160
+ if key == "principalId":
161
+ suggest = "principal_id"
162
+ elif key == "tenantId":
163
+ suggest = "tenant_id"
164
+ elif key == "userAssignedIdentities":
165
+ suggest = "user_assigned_identities"
166
+
167
+ if suggest:
168
+ pulumi.log.warn(f"Key '{key}' not found in ManagedServiceIdentityResponse. Access the value via the '{suggest}' property getter instead.")
169
+
170
+ def __getitem__(self, key: str) -> Any:
171
+ ManagedServiceIdentityResponse.__key_warning(key)
172
+ return super().__getitem__(key)
173
+
174
+ def get(self, key: str, default = None) -> Any:
175
+ ManagedServiceIdentityResponse.__key_warning(key)
176
+ return super().get(key, default)
177
+
178
+ def __init__(__self__, *,
179
+ principal_id: str,
180
+ tenant_id: str,
181
+ type: str,
182
+ user_assigned_identities: Optional[Mapping[str, 'outputs.UserAssignedIdentityResponse']] = None):
183
+ """
184
+ Managed service identity (system assigned and/or user assigned identities)
185
+ :param str principal_id: The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
186
+ :param str tenant_id: The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
187
+ :param str type: Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
188
+ :param Mapping[str, 'UserAssignedIdentityResponse'] user_assigned_identities: The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
189
+ """
190
+ pulumi.set(__self__, "principal_id", principal_id)
191
+ pulumi.set(__self__, "tenant_id", tenant_id)
192
+ pulumi.set(__self__, "type", type)
193
+ if user_assigned_identities is not None:
194
+ pulumi.set(__self__, "user_assigned_identities", user_assigned_identities)
195
+
196
+ @property
197
+ @pulumi.getter(name="principalId")
198
+ def principal_id(self) -> str:
199
+ """
200
+ The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
201
+ """
202
+ return pulumi.get(self, "principal_id")
203
+
204
+ @property
205
+ @pulumi.getter(name="tenantId")
206
+ def tenant_id(self) -> str:
207
+ """
208
+ The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
209
+ """
210
+ return pulumi.get(self, "tenant_id")
211
+
212
+ @property
213
+ @pulumi.getter
214
+ def type(self) -> str:
215
+ """
216
+ Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
217
+ """
218
+ return pulumi.get(self, "type")
219
+
220
+ @property
221
+ @pulumi.getter(name="userAssignedIdentities")
222
+ def user_assigned_identities(self) -> Optional[Mapping[str, 'outputs.UserAssignedIdentityResponse']]:
223
+ """
224
+ The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
225
+ """
226
+ return pulumi.get(self, "user_assigned_identities")
227
+
228
+
229
+ @pulumi.output_type
230
+ class OnlineExperimentWorkspacePropertiesResponse(dict):
231
+ """
232
+ The properties of an online experiment workspace.
233
+ """
234
+ @staticmethod
235
+ def __key_warning(key: str):
236
+ suggest = None
237
+ if key == "appConfigurationResourceId":
238
+ suggest = "app_configuration_resource_id"
239
+ elif key == "logAnalyticsWorkspaceResourceId":
240
+ suggest = "log_analytics_workspace_resource_id"
241
+ elif key == "logsExporterStorageAccountResourceId":
242
+ suggest = "logs_exporter_storage_account_resource_id"
243
+ elif key == "provisioningState":
244
+ suggest = "provisioning_state"
245
+ elif key == "workspaceId":
246
+ suggest = "workspace_id"
247
+
248
+ if suggest:
249
+ pulumi.log.warn(f"Key '{key}' not found in OnlineExperimentWorkspacePropertiesResponse. Access the value via the '{suggest}' property getter instead.")
250
+
251
+ def __getitem__(self, key: str) -> Any:
252
+ OnlineExperimentWorkspacePropertiesResponse.__key_warning(key)
253
+ return super().__getitem__(key)
254
+
255
+ def get(self, key: str, default = None) -> Any:
256
+ OnlineExperimentWorkspacePropertiesResponse.__key_warning(key)
257
+ return super().get(key, default)
258
+
259
+ def __init__(__self__, *,
260
+ app_configuration_resource_id: str,
261
+ endpoint: str,
262
+ log_analytics_workspace_resource_id: str,
263
+ logs_exporter_storage_account_resource_id: str,
264
+ provisioning_state: str,
265
+ workspace_id: str,
266
+ encryption: Optional['outputs.ResourceEncryptionConfigurationResponse'] = None):
267
+ """
268
+ The properties of an online experiment workspace.
269
+ :param str app_configuration_resource_id: The resource identifier of App Configuration with which this online experiment workspace is tied for experimentation. This is a required field for creating an online experiment workspace.
270
+ :param str endpoint: The data plane endpoint for the online experiment workspace resource.
271
+ :param str log_analytics_workspace_resource_id: The resource identifier of the Log Analytics workspace which online experiment workspace uses for generating experiment analysis results.
272
+ :param str logs_exporter_storage_account_resource_id: The resource identifier of storage account where logs are exported from Log Analytics workspace. Online Experiment workspace uses it generating experiment analysis results.
273
+ :param str provisioning_state: The provisioning state for the resource
274
+ :param str workspace_id: The Id of the workspace.
275
+ :param 'ResourceEncryptionConfigurationResponse' encryption: The encryption configuration for the online experiment workspace resource.
276
+ """
277
+ pulumi.set(__self__, "app_configuration_resource_id", app_configuration_resource_id)
278
+ pulumi.set(__self__, "endpoint", endpoint)
279
+ pulumi.set(__self__, "log_analytics_workspace_resource_id", log_analytics_workspace_resource_id)
280
+ pulumi.set(__self__, "logs_exporter_storage_account_resource_id", logs_exporter_storage_account_resource_id)
281
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
282
+ pulumi.set(__self__, "workspace_id", workspace_id)
283
+ if encryption is not None:
284
+ pulumi.set(__self__, "encryption", encryption)
285
+
286
+ @property
287
+ @pulumi.getter(name="appConfigurationResourceId")
288
+ def app_configuration_resource_id(self) -> str:
289
+ """
290
+ The resource identifier of App Configuration with which this online experiment workspace is tied for experimentation. This is a required field for creating an online experiment workspace.
291
+ """
292
+ return pulumi.get(self, "app_configuration_resource_id")
293
+
294
+ @property
295
+ @pulumi.getter
296
+ def endpoint(self) -> str:
297
+ """
298
+ The data plane endpoint for the online experiment workspace resource.
299
+ """
300
+ return pulumi.get(self, "endpoint")
301
+
302
+ @property
303
+ @pulumi.getter(name="logAnalyticsWorkspaceResourceId")
304
+ def log_analytics_workspace_resource_id(self) -> str:
305
+ """
306
+ The resource identifier of the Log Analytics workspace which online experiment workspace uses for generating experiment analysis results.
307
+ """
308
+ return pulumi.get(self, "log_analytics_workspace_resource_id")
309
+
310
+ @property
311
+ @pulumi.getter(name="logsExporterStorageAccountResourceId")
312
+ def logs_exporter_storage_account_resource_id(self) -> str:
313
+ """
314
+ The resource identifier of storage account where logs are exported from Log Analytics workspace. Online Experiment workspace uses it generating experiment analysis results.
315
+ """
316
+ return pulumi.get(self, "logs_exporter_storage_account_resource_id")
317
+
318
+ @property
319
+ @pulumi.getter(name="provisioningState")
320
+ def provisioning_state(self) -> str:
321
+ """
322
+ The provisioning state for the resource
323
+ """
324
+ return pulumi.get(self, "provisioning_state")
325
+
326
+ @property
327
+ @pulumi.getter(name="workspaceId")
328
+ def workspace_id(self) -> str:
329
+ """
330
+ The Id of the workspace.
331
+ """
332
+ return pulumi.get(self, "workspace_id")
333
+
334
+ @property
335
+ @pulumi.getter
336
+ def encryption(self) -> Optional['outputs.ResourceEncryptionConfigurationResponse']:
337
+ """
338
+ The encryption configuration for the online experiment workspace resource.
339
+ """
340
+ return pulumi.get(self, "encryption")
341
+
342
+
343
+ @pulumi.output_type
344
+ class OnlineExperimentationWorkspaceSkuResponse(dict):
345
+ """
346
+ The SKU (Stock Keeping Unit) assigned to this resource.
347
+ """
348
+ def __init__(__self__, *,
349
+ name: str,
350
+ tier: str):
351
+ """
352
+ The SKU (Stock Keeping Unit) assigned to this resource.
353
+ :param str name: The name of the SKU. Ex - F0, P0. It is typically a letter+number code
354
+ :param str tier: The name of the SKU tier
355
+ """
356
+ pulumi.set(__self__, "name", name)
357
+ pulumi.set(__self__, "tier", tier)
358
+
359
+ @property
360
+ @pulumi.getter
361
+ def name(self) -> str:
362
+ """
363
+ The name of the SKU. Ex - F0, P0. It is typically a letter+number code
364
+ """
365
+ return pulumi.get(self, "name")
366
+
367
+ @property
368
+ @pulumi.getter
369
+ def tier(self) -> str:
370
+ """
371
+ The name of the SKU tier
372
+ """
373
+ return pulumi.get(self, "tier")
374
+
375
+
376
+ @pulumi.output_type
377
+ class ResourceEncryptionConfigurationResponse(dict):
378
+ """
379
+ The encryption configuration for the online experiment workspace resource.
380
+ """
381
+ @staticmethod
382
+ def __key_warning(key: str):
383
+ suggest = None
384
+ if key == "customerManagedKeyEncryption":
385
+ suggest = "customer_managed_key_encryption"
386
+
387
+ if suggest:
388
+ pulumi.log.warn(f"Key '{key}' not found in ResourceEncryptionConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
389
+
390
+ def __getitem__(self, key: str) -> Any:
391
+ ResourceEncryptionConfigurationResponse.__key_warning(key)
392
+ return super().__getitem__(key)
393
+
394
+ def get(self, key: str, default = None) -> Any:
395
+ ResourceEncryptionConfigurationResponse.__key_warning(key)
396
+ return super().get(key, default)
397
+
398
+ def __init__(__self__, *,
399
+ customer_managed_key_encryption: Optional['outputs.CustomerManagedKeyEncryptionResponse'] = None):
400
+ """
401
+ The encryption configuration for the online experiment workspace resource.
402
+ :param 'CustomerManagedKeyEncryptionResponse' customer_managed_key_encryption: All Customer-managed key encryption properties for the resource.
403
+ """
404
+ if customer_managed_key_encryption is not None:
405
+ pulumi.set(__self__, "customer_managed_key_encryption", customer_managed_key_encryption)
406
+
407
+ @property
408
+ @pulumi.getter(name="customerManagedKeyEncryption")
409
+ def customer_managed_key_encryption(self) -> Optional['outputs.CustomerManagedKeyEncryptionResponse']:
410
+ """
411
+ All Customer-managed key encryption properties for the resource.
412
+ """
413
+ return pulumi.get(self, "customer_managed_key_encryption")
414
+
415
+
416
+ @pulumi.output_type
417
+ class SystemDataResponse(dict):
418
+ """
419
+ Metadata pertaining to creation and last modification of the resource.
420
+ """
421
+ @staticmethod
422
+ def __key_warning(key: str):
423
+ suggest = None
424
+ if key == "createdAt":
425
+ suggest = "created_at"
426
+ elif key == "createdBy":
427
+ suggest = "created_by"
428
+ elif key == "createdByType":
429
+ suggest = "created_by_type"
430
+ elif key == "lastModifiedAt":
431
+ suggest = "last_modified_at"
432
+ elif key == "lastModifiedBy":
433
+ suggest = "last_modified_by"
434
+ elif key == "lastModifiedByType":
435
+ suggest = "last_modified_by_type"
436
+
437
+ if suggest:
438
+ pulumi.log.warn(f"Key '{key}' not found in SystemDataResponse. Access the value via the '{suggest}' property getter instead.")
439
+
440
+ def __getitem__(self, key: str) -> Any:
441
+ SystemDataResponse.__key_warning(key)
442
+ return super().__getitem__(key)
443
+
444
+ def get(self, key: str, default = None) -> Any:
445
+ SystemDataResponse.__key_warning(key)
446
+ return super().get(key, default)
447
+
448
+ def __init__(__self__, *,
449
+ created_at: Optional[str] = None,
450
+ created_by: Optional[str] = None,
451
+ created_by_type: Optional[str] = None,
452
+ last_modified_at: Optional[str] = None,
453
+ last_modified_by: Optional[str] = None,
454
+ last_modified_by_type: Optional[str] = None):
455
+ """
456
+ Metadata pertaining to creation and last modification of the resource.
457
+ :param str created_at: The timestamp of resource creation (UTC).
458
+ :param str created_by: The identity that created the resource.
459
+ :param str created_by_type: The type of identity that created the resource.
460
+ :param str last_modified_at: The timestamp of resource last modification (UTC)
461
+ :param str last_modified_by: The identity that last modified the resource.
462
+ :param str last_modified_by_type: The type of identity that last modified the resource.
463
+ """
464
+ if created_at is not None:
465
+ pulumi.set(__self__, "created_at", created_at)
466
+ if created_by is not None:
467
+ pulumi.set(__self__, "created_by", created_by)
468
+ if created_by_type is not None:
469
+ pulumi.set(__self__, "created_by_type", created_by_type)
470
+ if last_modified_at is not None:
471
+ pulumi.set(__self__, "last_modified_at", last_modified_at)
472
+ if last_modified_by is not None:
473
+ pulumi.set(__self__, "last_modified_by", last_modified_by)
474
+ if last_modified_by_type is not None:
475
+ pulumi.set(__self__, "last_modified_by_type", last_modified_by_type)
476
+
477
+ @property
478
+ @pulumi.getter(name="createdAt")
479
+ def created_at(self) -> Optional[str]:
480
+ """
481
+ The timestamp of resource creation (UTC).
482
+ """
483
+ return pulumi.get(self, "created_at")
484
+
485
+ @property
486
+ @pulumi.getter(name="createdBy")
487
+ def created_by(self) -> Optional[str]:
488
+ """
489
+ The identity that created the resource.
490
+ """
491
+ return pulumi.get(self, "created_by")
492
+
493
+ @property
494
+ @pulumi.getter(name="createdByType")
495
+ def created_by_type(self) -> Optional[str]:
496
+ """
497
+ The type of identity that created the resource.
498
+ """
499
+ return pulumi.get(self, "created_by_type")
500
+
501
+ @property
502
+ @pulumi.getter(name="lastModifiedAt")
503
+ def last_modified_at(self) -> Optional[str]:
504
+ """
505
+ The timestamp of resource last modification (UTC)
506
+ """
507
+ return pulumi.get(self, "last_modified_at")
508
+
509
+ @property
510
+ @pulumi.getter(name="lastModifiedBy")
511
+ def last_modified_by(self) -> Optional[str]:
512
+ """
513
+ The identity that last modified the resource.
514
+ """
515
+ return pulumi.get(self, "last_modified_by")
516
+
517
+ @property
518
+ @pulumi.getter(name="lastModifiedByType")
519
+ def last_modified_by_type(self) -> Optional[str]:
520
+ """
521
+ The type of identity that last modified the resource.
522
+ """
523
+ return pulumi.get(self, "last_modified_by_type")
524
+
525
+
526
+ @pulumi.output_type
527
+ class UserAssignedIdentityResponse(dict):
528
+ """
529
+ User assigned identity properties
530
+ """
531
+ @staticmethod
532
+ def __key_warning(key: str):
533
+ suggest = None
534
+ if key == "clientId":
535
+ suggest = "client_id"
536
+ elif key == "principalId":
537
+ suggest = "principal_id"
538
+
539
+ if suggest:
540
+ pulumi.log.warn(f"Key '{key}' not found in UserAssignedIdentityResponse. Access the value via the '{suggest}' property getter instead.")
541
+
542
+ def __getitem__(self, key: str) -> Any:
543
+ UserAssignedIdentityResponse.__key_warning(key)
544
+ return super().__getitem__(key)
545
+
546
+ def get(self, key: str, default = None) -> Any:
547
+ UserAssignedIdentityResponse.__key_warning(key)
548
+ return super().get(key, default)
549
+
550
+ def __init__(__self__, *,
551
+ client_id: str,
552
+ principal_id: str):
553
+ """
554
+ User assigned identity properties
555
+ :param str client_id: The client ID of the assigned identity.
556
+ :param str principal_id: The principal ID of the assigned identity.
557
+ """
558
+ pulumi.set(__self__, "client_id", client_id)
559
+ pulumi.set(__self__, "principal_id", principal_id)
560
+
561
+ @property
562
+ @pulumi.getter(name="clientId")
563
+ def client_id(self) -> str:
564
+ """
565
+ The client ID of the assigned identity.
566
+ """
567
+ return pulumi.get(self, "client_id")
568
+
569
+ @property
570
+ @pulumi.getter(name="principalId")
571
+ def principal_id(self) -> str:
572
+ """
573
+ The principal ID of the assigned identity.
574
+ """
575
+ return pulumi.get(self, "principal_id")
576
+
577
+
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "azure-native",
4
- "version": "3.2.0-alpha.1744649622"
4
+ "version": "3.3.0-alpha.1745626403"
5
5
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_azure_native
3
- Version: 3.2.0a1744649622
3
+ Version: 3.3.0a1745626403
4
4
  Summary: A native Pulumi package for creating and managing Azure resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.com