pulumi-azure 6.27.0a1758695020__py3-none-any.whl → 6.27.0a1759511969__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 might be problematic. Click here for more details.
- pulumi_azure/__init__.py +32 -0
- pulumi_azure/apimanagement/backend.py +2 -2
- pulumi_azure/appservice/_inputs.py +78 -6
- pulumi_azure/appservice/app_flex_consumption.py +61 -0
- pulumi_azure/appservice/outputs.py +52 -4
- pulumi_azure/appservice/service_plan.py +14 -14
- pulumi_azure/billing/account_cost_management_export.py +2 -2
- pulumi_azure/cdn/_inputs.py +57 -95
- pulumi_azure/cdn/frontdoor_firewall_policy.py +34 -107
- pulumi_azure/cdn/frontdoor_profile.py +87 -2
- pulumi_azure/cdn/frontdoor_security_policy.py +7 -7
- pulumi_azure/cdn/get_frontdoor_firewall_policy.py +15 -1
- pulumi_azure/cdn/get_frontdoor_profile.py +25 -11
- pulumi_azure/cdn/outputs.py +79 -21
- pulumi_azure/cognitive/account.py +7 -7
- pulumi_azure/compute/__init__.py +1 -0
- pulumi_azure/compute/_inputs.py +79 -47
- pulumi_azure/compute/get_managed_disks.py +140 -0
- pulumi_azure/compute/linux_virtual_machine.py +97 -23
- pulumi_azure/compute/outputs.py +362 -34
- pulumi_azure/compute/windows_virtual_machine.py +172 -42
- pulumi_azure/containerservice/_inputs.py +209 -17
- pulumi_azure/containerservice/cluster_trusted_access_role_binding.py +2 -2
- pulumi_azure/containerservice/get_cluster_node_pool.py +14 -3
- pulumi_azure/containerservice/get_kubernetes_cluster.py +2 -2
- pulumi_azure/containerservice/get_kubernetes_node_pool_snapshot.py +2 -2
- pulumi_azure/containerservice/kubernetes_cluster.py +49 -2
- pulumi_azure/containerservice/kubernetes_cluster_node_pool.py +49 -2
- pulumi_azure/containerservice/outputs.py +173 -11
- pulumi_azure/core/_inputs.py +0 -54
- pulumi_azure/core/outputs.py +0 -36
- pulumi_azure/core/resource_group_cost_management_export.py +2 -2
- pulumi_azure/core/resource_group_policy_assignment.py +7 -7
- pulumi_azure/core/resource_policy_assignment.py +7 -7
- pulumi_azure/core/subscription_cost_management_export.py +2 -2
- pulumi_azure/core/subscription_policy_assignment.py +7 -7
- pulumi_azure/datafactory/__init__.py +1 -0
- pulumi_azure/datafactory/customer_managed_key.py +439 -0
- pulumi_azure/datafactory/factory.py +2 -2
- pulumi_azure/dataprotection/_inputs.py +36 -6
- pulumi_azure/dataprotection/backup_policy_blob_storage.py +76 -2
- pulumi_azure/dataprotection/outputs.py +24 -4
- pulumi_azure/devcenter/get_project_pool.py +15 -1
- pulumi_azure/devcenter/project_pool.py +47 -0
- pulumi_azure/eventgrid/domain.py +2 -2
- pulumi_azure/eventgrid/domain_topic.py +2 -2
- pulumi_azure/eventgrid/event_subscription.py +2 -2
- pulumi_azure/eventgrid/get_domain.py +2 -2
- pulumi_azure/eventgrid/get_domain_topic.py +2 -2
- pulumi_azure/eventgrid/get_partner_namespace.py +2 -2
- pulumi_azure/eventgrid/get_partner_registration.py +2 -2
- pulumi_azure/eventgrid/get_system_topic.py +28 -6
- pulumi_azure/eventgrid/get_topic.py +2 -2
- pulumi_azure/eventgrid/partner_configuration.py +2 -2
- pulumi_azure/eventgrid/partner_namespace.py +2 -2
- pulumi_azure/eventgrid/partner_registration.py +2 -2
- pulumi_azure/eventgrid/system_topic.py +97 -35
- pulumi_azure/eventgrid/system_topic_event_subscription.py +4 -4
- pulumi_azure/eventgrid/topic.py +2 -2
- pulumi_azure/eventhub/domain.py +2 -2
- pulumi_azure/eventhub/event_grid_topic.py +2 -2
- pulumi_azure/eventhub/event_subscription.py +2 -2
- pulumi_azure/hpc/cache_blob_target.py +2 -2
- pulumi_azure/iot/_inputs.py +27 -1
- pulumi_azure/iot/endpoint_cosmosdb_account.py +64 -3
- pulumi_azure/iot/endpoint_eventhub.py +64 -3
- pulumi_azure/iot/endpoint_servicebus_queue.py +64 -3
- pulumi_azure/iot/endpoint_servicebus_topic.py +64 -3
- pulumi_azure/iot/endpoint_storage_container.py +64 -3
- pulumi_azure/iot/outputs.py +19 -1
- pulumi_azure/keyvault/_inputs.py +3 -17
- pulumi_azure/keyvault/get_key_vault.py +13 -1
- pulumi_azure/keyvault/key_vault.py +78 -35
- pulumi_azure/keyvault/outputs.py +2 -10
- pulumi_azure/kusto/_inputs.py +16 -6
- pulumi_azure/kusto/cluster.py +95 -66
- pulumi_azure/kusto/outputs.py +10 -4
- pulumi_azure/lb/get_lb_outbound_rule.py +12 -1
- pulumi_azure/lb/get_lb_rule.py +28 -4
- pulumi_azure/lb/load_balancer.py +94 -0
- pulumi_azure/lb/nat_rule.py +115 -29
- pulumi_azure/lb/outbound_rule.py +60 -17
- pulumi_azure/lb/rule.py +116 -30
- pulumi_azure/loadtest/_inputs.py +6 -3
- pulumi_azure/loadtest/load_test.py +0 -4
- pulumi_azure/loadtest/outputs.py +4 -2
- pulumi_azure/logicapps/_inputs.py +46 -987
- pulumi_azure/logicapps/get_standard.py +0 -7
- pulumi_azure/logicapps/outputs.py +117 -101
- pulumi_azure/logicapps/standard.py +7 -7
- pulumi_azure/machinelearning/_inputs.py +24 -4
- pulumi_azure/machinelearning/compute_instance.py +35 -7
- pulumi_azure/machinelearning/datastore_blobstorage.py +2 -2
- pulumi_azure/machinelearning/datastore_datalake_gen2.py +2 -2
- pulumi_azure/machinelearning/inference_cluster.py +2 -2
- pulumi_azure/machinelearning/outputs.py +17 -3
- pulumi_azure/machinelearning/workspace.py +61 -0
- pulumi_azure/management/_inputs.py +0 -18
- pulumi_azure/management/group_policy_assignment.py +7 -7
- pulumi_azure/management/outputs.py +0 -12
- pulumi_azure/management/private_link_association.py +0 -70
- pulumi_azure/mobile/_inputs.py +14 -6
- pulumi_azure/mobile/network_sim.py +2 -6
- pulumi_azure/mobile/network_sim_policy.py +2 -6
- pulumi_azure/mobile/network_slice.py +116 -31
- pulumi_azure/mobile/outputs.py +6 -4
- pulumi_azure/monitoring/_inputs.py +15 -9
- pulumi_azure/monitoring/activity_log_alert.py +7 -7
- pulumi_azure/monitoring/outputs.py +10 -6
- pulumi_azure/mssql/job_step.py +11 -11
- pulumi_azure/mysql/_inputs.py +20 -0
- pulumi_azure/mysql/outputs.py +14 -0
- pulumi_azure/netapp/_inputs.py +18 -6
- pulumi_azure/netapp/account.py +2 -2
- pulumi_azure/netapp/account_encryption.py +132 -4
- pulumi_azure/netapp/backup_policy.py +2 -2
- pulumi_azure/netapp/backup_vault.py +2 -2
- pulumi_azure/netapp/get_account.py +2 -2
- pulumi_azure/netapp/get_account_encryption.py +25 -3
- pulumi_azure/netapp/get_backup_policy.py +2 -2
- pulumi_azure/netapp/get_backup_vault.py +2 -2
- pulumi_azure/netapp/get_pool.py +17 -3
- pulumi_azure/netapp/get_snapshot.py +2 -2
- pulumi_azure/netapp/get_snapshot_policy.py +2 -2
- pulumi_azure/netapp/get_volume.py +17 -3
- pulumi_azure/netapp/get_volume_group_oracle.py +2 -2
- pulumi_azure/netapp/get_volume_group_sap_hana.py +2 -2
- pulumi_azure/netapp/get_volume_quota_rule.py +2 -2
- pulumi_azure/netapp/outputs.py +12 -4
- pulumi_azure/netapp/pool.py +104 -9
- pulumi_azure/netapp/snapshot.py +2 -2
- pulumi_azure/netapp/snapshot_policy.py +2 -2
- pulumi_azure/netapp/volume.py +82 -7
- pulumi_azure/netapp/volume_group_oracle.py +2 -2
- pulumi_azure/netapp/volume_group_sap_hana.py +2 -2
- pulumi_azure/netapp/volume_quota_rule.py +2 -2
- pulumi_azure/network/__init__.py +2 -0
- pulumi_azure/network/network_manager_ipam_pool_static_cidr.py +415 -0
- pulumi_azure/network/network_manager_routing_configuration.py +7 -7
- pulumi_azure/network/network_manager_routing_rule_collection.py +429 -0
- pulumi_azure/network/subnet.py +76 -1
- pulumi_azure/oracle/__init__.py +3 -0
- pulumi_azure/oracle/autonomous_database_backup.py +310 -0
- pulumi_azure/oracle/get_autonomous_database_backup.py +347 -0
- pulumi_azure/oracle/get_autonomous_database_backups.py +138 -0
- pulumi_azure/oracle/outputs.py +191 -0
- pulumi_azure/paloalto/next_generation_firewall_virtual_hub_local_rulestack.py +2 -2
- pulumi_azure/paloalto/next_generation_firewall_virtual_hub_panorama.py +2 -2
- pulumi_azure/paloalto/next_generation_firewall_virtual_network_local_rulestack.py +2 -2
- pulumi_azure/paloalto/next_generation_firewall_virtual_network_panorama.py +2 -2
- pulumi_azure/policy/_inputs.py +6 -0
- pulumi_azure/policy/outputs.py +4 -0
- pulumi_azure/postgresql/flexible_server.py +7 -7
- pulumi_azure/postgresql/flexible_server_firewall_rule.py +14 -14
- pulumi_azure/pulumi-plugin.json +1 -1
- pulumi_azure/search/service.py +7 -7
- pulumi_azure/sentinel/_inputs.py +144 -0
- pulumi_azure/sentinel/authomation_rule.py +47 -0
- pulumi_azure/sentinel/automation_rule.py +47 -0
- pulumi_azure/sentinel/outputs.py +84 -0
- pulumi_azure/storage/_inputs.py +3 -3
- pulumi_azure/storage/container_immutability_policy.py +2 -2
- pulumi_azure/storage/get_queue.py +59 -8
- pulumi_azure/storage/outputs.py +2 -2
- pulumi_azure/storage/queue.py +159 -27
- {pulumi_azure-6.27.0a1758695020.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/METADATA +1 -1
- {pulumi_azure-6.27.0a1758695020.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/RECORD +169 -162
- {pulumi_azure-6.27.0a1758695020.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/WHEEL +0 -0
- {pulumi_azure-6.27.0a1758695020.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/top_level.txt +0 -0
|
@@ -26,7 +26,8 @@ class EndpointServicebusTopicArgs:
|
|
|
26
26
|
endpoint_uri: Optional[pulumi.Input[_builtins.str]] = None,
|
|
27
27
|
entity_path: Optional[pulumi.Input[_builtins.str]] = None,
|
|
28
28
|
identity_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
29
|
-
name: Optional[pulumi.Input[_builtins.str]] = None
|
|
29
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
30
|
+
subscription_id: Optional[pulumi.Input[_builtins.str]] = None):
|
|
30
31
|
"""
|
|
31
32
|
The set of arguments for constructing a EndpointServicebusTopic resource.
|
|
32
33
|
:param pulumi.Input[_builtins.str] iothub_id: The IoTHub ID for the endpoint. Changing this forces a new resource to be created.
|
|
@@ -39,6 +40,9 @@ class EndpointServicebusTopicArgs:
|
|
|
39
40
|
|
|
40
41
|
> **Note:** `identity_id` can only be specified when `authentication_type` is `identityBased`. It must be one of the `identity_ids` of the Iot Hub. If not specified when `authentication_type` is `identityBased`, System Assigned Managed Identity of the Iot Hub will be used.
|
|
41
42
|
:param pulumi.Input[_builtins.str] name: The name of the endpoint. The name must be unique across endpoint types. The following names are reserved: `events`, `operationsMonitoringEvents`, `fileNotifications` and `$default`. Changing this forces a new resource to be created.
|
|
43
|
+
:param pulumi.Input[_builtins.str] subscription_id: The subscription ID for the endpoint.
|
|
44
|
+
|
|
45
|
+
> **Note:** When `subscription_id` isn't specified it will be set to the subscription ID of the IoT Hub resource.
|
|
42
46
|
"""
|
|
43
47
|
pulumi.set(__self__, "iothub_id", iothub_id)
|
|
44
48
|
pulumi.set(__self__, "resource_group_name", resource_group_name)
|
|
@@ -54,6 +58,8 @@ class EndpointServicebusTopicArgs:
|
|
|
54
58
|
pulumi.set(__self__, "identity_id", identity_id)
|
|
55
59
|
if name is not None:
|
|
56
60
|
pulumi.set(__self__, "name", name)
|
|
61
|
+
if subscription_id is not None:
|
|
62
|
+
pulumi.set(__self__, "subscription_id", subscription_id)
|
|
57
63
|
|
|
58
64
|
@_builtins.property
|
|
59
65
|
@pulumi.getter(name="iothubId")
|
|
@@ -153,6 +159,20 @@ class EndpointServicebusTopicArgs:
|
|
|
153
159
|
def name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
154
160
|
pulumi.set(self, "name", value)
|
|
155
161
|
|
|
162
|
+
@_builtins.property
|
|
163
|
+
@pulumi.getter(name="subscriptionId")
|
|
164
|
+
def subscription_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
165
|
+
"""
|
|
166
|
+
The subscription ID for the endpoint.
|
|
167
|
+
|
|
168
|
+
> **Note:** When `subscription_id` isn't specified it will be set to the subscription ID of the IoT Hub resource.
|
|
169
|
+
"""
|
|
170
|
+
return pulumi.get(self, "subscription_id")
|
|
171
|
+
|
|
172
|
+
@subscription_id.setter
|
|
173
|
+
def subscription_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
174
|
+
pulumi.set(self, "subscription_id", value)
|
|
175
|
+
|
|
156
176
|
|
|
157
177
|
@pulumi.input_type
|
|
158
178
|
class _EndpointServicebusTopicState:
|
|
@@ -164,7 +184,8 @@ class _EndpointServicebusTopicState:
|
|
|
164
184
|
identity_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
165
185
|
iothub_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
166
186
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
167
|
-
resource_group_name: Optional[pulumi.Input[_builtins.str]] = None
|
|
187
|
+
resource_group_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
188
|
+
subscription_id: Optional[pulumi.Input[_builtins.str]] = None):
|
|
168
189
|
"""
|
|
169
190
|
Input properties used for looking up and filtering EndpointServicebusTopic resources.
|
|
170
191
|
:param pulumi.Input[_builtins.str] authentication_type: Type used to authenticate against the Service Bus Topic endpoint. Possible values are `keyBased` and `identityBased`. Defaults to `keyBased`.
|
|
@@ -177,6 +198,9 @@ class _EndpointServicebusTopicState:
|
|
|
177
198
|
:param pulumi.Input[_builtins.str] iothub_id: The IoTHub ID for the endpoint. Changing this forces a new resource to be created.
|
|
178
199
|
:param pulumi.Input[_builtins.str] name: The name of the endpoint. The name must be unique across endpoint types. The following names are reserved: `events`, `operationsMonitoringEvents`, `fileNotifications` and `$default`. Changing this forces a new resource to be created.
|
|
179
200
|
:param pulumi.Input[_builtins.str] resource_group_name: The name of the resource group under which the Service Bus Topic has been created. Changing this forces a new resource to be created.
|
|
201
|
+
:param pulumi.Input[_builtins.str] subscription_id: The subscription ID for the endpoint.
|
|
202
|
+
|
|
203
|
+
> **Note:** When `subscription_id` isn't specified it will be set to the subscription ID of the IoT Hub resource.
|
|
180
204
|
"""
|
|
181
205
|
if authentication_type is not None:
|
|
182
206
|
pulumi.set(__self__, "authentication_type", authentication_type)
|
|
@@ -194,6 +218,8 @@ class _EndpointServicebusTopicState:
|
|
|
194
218
|
pulumi.set(__self__, "name", name)
|
|
195
219
|
if resource_group_name is not None:
|
|
196
220
|
pulumi.set(__self__, "resource_group_name", resource_group_name)
|
|
221
|
+
if subscription_id is not None:
|
|
222
|
+
pulumi.set(__self__, "subscription_id", subscription_id)
|
|
197
223
|
|
|
198
224
|
@_builtins.property
|
|
199
225
|
@pulumi.getter(name="authenticationType")
|
|
@@ -293,6 +319,20 @@ class _EndpointServicebusTopicState:
|
|
|
293
319
|
def resource_group_name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
294
320
|
pulumi.set(self, "resource_group_name", value)
|
|
295
321
|
|
|
322
|
+
@_builtins.property
|
|
323
|
+
@pulumi.getter(name="subscriptionId")
|
|
324
|
+
def subscription_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
325
|
+
"""
|
|
326
|
+
The subscription ID for the endpoint.
|
|
327
|
+
|
|
328
|
+
> **Note:** When `subscription_id` isn't specified it will be set to the subscription ID of the IoT Hub resource.
|
|
329
|
+
"""
|
|
330
|
+
return pulumi.get(self, "subscription_id")
|
|
331
|
+
|
|
332
|
+
@subscription_id.setter
|
|
333
|
+
def subscription_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
334
|
+
pulumi.set(self, "subscription_id", value)
|
|
335
|
+
|
|
296
336
|
|
|
297
337
|
@pulumi.type_token("azure:iot/endpointServicebusTopic:EndpointServicebusTopic")
|
|
298
338
|
class EndpointServicebusTopic(pulumi.CustomResource):
|
|
@@ -308,6 +348,7 @@ class EndpointServicebusTopic(pulumi.CustomResource):
|
|
|
308
348
|
iothub_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
309
349
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
310
350
|
resource_group_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
351
|
+
subscription_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
311
352
|
__props__=None):
|
|
312
353
|
"""
|
|
313
354
|
Manages an IotHub ServiceBus Topic Endpoint
|
|
@@ -375,6 +416,9 @@ class EndpointServicebusTopic(pulumi.CustomResource):
|
|
|
375
416
|
:param pulumi.Input[_builtins.str] iothub_id: The IoTHub ID for the endpoint. Changing this forces a new resource to be created.
|
|
376
417
|
:param pulumi.Input[_builtins.str] name: The name of the endpoint. The name must be unique across endpoint types. The following names are reserved: `events`, `operationsMonitoringEvents`, `fileNotifications` and `$default`. Changing this forces a new resource to be created.
|
|
377
418
|
:param pulumi.Input[_builtins.str] resource_group_name: The name of the resource group under which the Service Bus Topic has been created. Changing this forces a new resource to be created.
|
|
419
|
+
:param pulumi.Input[_builtins.str] subscription_id: The subscription ID for the endpoint.
|
|
420
|
+
|
|
421
|
+
> **Note:** When `subscription_id` isn't specified it will be set to the subscription ID of the IoT Hub resource.
|
|
378
422
|
"""
|
|
379
423
|
...
|
|
380
424
|
@overload
|
|
@@ -459,6 +503,7 @@ class EndpointServicebusTopic(pulumi.CustomResource):
|
|
|
459
503
|
iothub_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
460
504
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
461
505
|
resource_group_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
506
|
+
subscription_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
462
507
|
__props__=None):
|
|
463
508
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
464
509
|
if not isinstance(opts, pulumi.ResourceOptions):
|
|
@@ -480,6 +525,7 @@ class EndpointServicebusTopic(pulumi.CustomResource):
|
|
|
480
525
|
if resource_group_name is None and not opts.urn:
|
|
481
526
|
raise TypeError("Missing required property 'resource_group_name'")
|
|
482
527
|
__props__.__dict__["resource_group_name"] = resource_group_name
|
|
528
|
+
__props__.__dict__["subscription_id"] = subscription_id
|
|
483
529
|
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["connectionString"])
|
|
484
530
|
opts = pulumi.ResourceOptions.merge(opts, secret_opts)
|
|
485
531
|
super(EndpointServicebusTopic, __self__).__init__(
|
|
@@ -499,7 +545,8 @@ class EndpointServicebusTopic(pulumi.CustomResource):
|
|
|
499
545
|
identity_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
500
546
|
iothub_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
501
547
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
502
|
-
resource_group_name: Optional[pulumi.Input[_builtins.str]] = None
|
|
548
|
+
resource_group_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
549
|
+
subscription_id: Optional[pulumi.Input[_builtins.str]] = None) -> 'EndpointServicebusTopic':
|
|
503
550
|
"""
|
|
504
551
|
Get an existing EndpointServicebusTopic resource's state with the given name, id, and optional extra
|
|
505
552
|
properties used to qualify the lookup.
|
|
@@ -517,6 +564,9 @@ class EndpointServicebusTopic(pulumi.CustomResource):
|
|
|
517
564
|
:param pulumi.Input[_builtins.str] iothub_id: The IoTHub ID for the endpoint. Changing this forces a new resource to be created.
|
|
518
565
|
:param pulumi.Input[_builtins.str] name: The name of the endpoint. The name must be unique across endpoint types. The following names are reserved: `events`, `operationsMonitoringEvents`, `fileNotifications` and `$default`. Changing this forces a new resource to be created.
|
|
519
566
|
:param pulumi.Input[_builtins.str] resource_group_name: The name of the resource group under which the Service Bus Topic has been created. Changing this forces a new resource to be created.
|
|
567
|
+
:param pulumi.Input[_builtins.str] subscription_id: The subscription ID for the endpoint.
|
|
568
|
+
|
|
569
|
+
> **Note:** When `subscription_id` isn't specified it will be set to the subscription ID of the IoT Hub resource.
|
|
520
570
|
"""
|
|
521
571
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
522
572
|
|
|
@@ -530,6 +580,7 @@ class EndpointServicebusTopic(pulumi.CustomResource):
|
|
|
530
580
|
__props__.__dict__["iothub_id"] = iothub_id
|
|
531
581
|
__props__.__dict__["name"] = name
|
|
532
582
|
__props__.__dict__["resource_group_name"] = resource_group_name
|
|
583
|
+
__props__.__dict__["subscription_id"] = subscription_id
|
|
533
584
|
return EndpointServicebusTopic(resource_name, opts=opts, __props__=__props__)
|
|
534
585
|
|
|
535
586
|
@_builtins.property
|
|
@@ -598,3 +649,13 @@ class EndpointServicebusTopic(pulumi.CustomResource):
|
|
|
598
649
|
"""
|
|
599
650
|
return pulumi.get(self, "resource_group_name")
|
|
600
651
|
|
|
652
|
+
@_builtins.property
|
|
653
|
+
@pulumi.getter(name="subscriptionId")
|
|
654
|
+
def subscription_id(self) -> pulumi.Output[_builtins.str]:
|
|
655
|
+
"""
|
|
656
|
+
The subscription ID for the endpoint.
|
|
657
|
+
|
|
658
|
+
> **Note:** When `subscription_id` isn't specified it will be set to the subscription ID of the IoT Hub resource.
|
|
659
|
+
"""
|
|
660
|
+
return pulumi.get(self, "subscription_id")
|
|
661
|
+
|
|
@@ -30,7 +30,8 @@ class EndpointStorageContainerArgs:
|
|
|
30
30
|
file_name_format: Optional[pulumi.Input[_builtins.str]] = None,
|
|
31
31
|
identity_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
32
32
|
max_chunk_size_in_bytes: Optional[pulumi.Input[_builtins.int]] = None,
|
|
33
|
-
name: Optional[pulumi.Input[_builtins.str]] = None
|
|
33
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
34
|
+
subscription_id: Optional[pulumi.Input[_builtins.str]] = None):
|
|
34
35
|
"""
|
|
35
36
|
The set of arguments for constructing a EndpointStorageContainer resource.
|
|
36
37
|
:param pulumi.Input[_builtins.str] container_name: The name of storage container in the storage account.
|
|
@@ -47,6 +48,9 @@ class EndpointStorageContainerArgs:
|
|
|
47
48
|
> **Note:** `identity_id` can only be specified when `authentication_type` is `identityBased`. It must be one of the `identity_ids` of the Iot Hub. If not specified when `authentication_type` is `identityBased`, System Assigned Managed Identity of the Iot Hub will be used.
|
|
48
49
|
:param pulumi.Input[_builtins.int] max_chunk_size_in_bytes: Maximum number of bytes for each blob written to storage. Value should be between 10485760(10MB) and 524288000(500MB). Default value is 314572800(300MB).
|
|
49
50
|
:param pulumi.Input[_builtins.str] name: The name of the endpoint. The name must be unique across endpoint types. The following names are reserved: `events`, `operationsMonitoringEvents`, `fileNotifications` and `$default`. Changing this forces a new resource to be created.
|
|
51
|
+
:param pulumi.Input[_builtins.str] subscription_id: The subscription ID for the endpoint.
|
|
52
|
+
|
|
53
|
+
> **Note:** When `subscription_id` isn't specified it will be set to the subscription ID of the IoT Hub resource.
|
|
50
54
|
"""
|
|
51
55
|
pulumi.set(__self__, "container_name", container_name)
|
|
52
56
|
pulumi.set(__self__, "iothub_id", iothub_id)
|
|
@@ -69,6 +73,8 @@ class EndpointStorageContainerArgs:
|
|
|
69
73
|
pulumi.set(__self__, "max_chunk_size_in_bytes", max_chunk_size_in_bytes)
|
|
70
74
|
if name is not None:
|
|
71
75
|
pulumi.set(__self__, "name", name)
|
|
76
|
+
if subscription_id is not None:
|
|
77
|
+
pulumi.set(__self__, "subscription_id", subscription_id)
|
|
72
78
|
|
|
73
79
|
@_builtins.property
|
|
74
80
|
@pulumi.getter(name="containerName")
|
|
@@ -216,6 +222,20 @@ class EndpointStorageContainerArgs:
|
|
|
216
222
|
def name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
217
223
|
pulumi.set(self, "name", value)
|
|
218
224
|
|
|
225
|
+
@_builtins.property
|
|
226
|
+
@pulumi.getter(name="subscriptionId")
|
|
227
|
+
def subscription_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
228
|
+
"""
|
|
229
|
+
The subscription ID for the endpoint.
|
|
230
|
+
|
|
231
|
+
> **Note:** When `subscription_id` isn't specified it will be set to the subscription ID of the IoT Hub resource.
|
|
232
|
+
"""
|
|
233
|
+
return pulumi.get(self, "subscription_id")
|
|
234
|
+
|
|
235
|
+
@subscription_id.setter
|
|
236
|
+
def subscription_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
237
|
+
pulumi.set(self, "subscription_id", value)
|
|
238
|
+
|
|
219
239
|
|
|
220
240
|
@pulumi.input_type
|
|
221
241
|
class _EndpointStorageContainerState:
|
|
@@ -231,7 +251,8 @@ class _EndpointStorageContainerState:
|
|
|
231
251
|
iothub_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
232
252
|
max_chunk_size_in_bytes: Optional[pulumi.Input[_builtins.int]] = None,
|
|
233
253
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
234
|
-
resource_group_name: Optional[pulumi.Input[_builtins.str]] = None
|
|
254
|
+
resource_group_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
255
|
+
subscription_id: Optional[pulumi.Input[_builtins.str]] = None):
|
|
235
256
|
"""
|
|
236
257
|
Input properties used for looking up and filtering EndpointStorageContainer resources.
|
|
237
258
|
:param pulumi.Input[_builtins.str] authentication_type: Type used to authenticate against the storage endpoint. Possible values are `keyBased` and `identityBased`. Defaults to `keyBased`.
|
|
@@ -248,6 +269,9 @@ class _EndpointStorageContainerState:
|
|
|
248
269
|
:param pulumi.Input[_builtins.int] max_chunk_size_in_bytes: Maximum number of bytes for each blob written to storage. Value should be between 10485760(10MB) and 524288000(500MB). Default value is 314572800(300MB).
|
|
249
270
|
:param pulumi.Input[_builtins.str] name: The name of the endpoint. The name must be unique across endpoint types. The following names are reserved: `events`, `operationsMonitoringEvents`, `fileNotifications` and `$default`. Changing this forces a new resource to be created.
|
|
250
271
|
:param pulumi.Input[_builtins.str] resource_group_name: The name of the resource group under which the Storage Container has been created. Changing this forces a new resource to be created.
|
|
272
|
+
:param pulumi.Input[_builtins.str] subscription_id: The subscription ID for the endpoint.
|
|
273
|
+
|
|
274
|
+
> **Note:** When `subscription_id` isn't specified it will be set to the subscription ID of the IoT Hub resource.
|
|
251
275
|
"""
|
|
252
276
|
if authentication_type is not None:
|
|
253
277
|
pulumi.set(__self__, "authentication_type", authentication_type)
|
|
@@ -273,6 +297,8 @@ class _EndpointStorageContainerState:
|
|
|
273
297
|
pulumi.set(__self__, "name", name)
|
|
274
298
|
if resource_group_name is not None:
|
|
275
299
|
pulumi.set(__self__, "resource_group_name", resource_group_name)
|
|
300
|
+
if subscription_id is not None:
|
|
301
|
+
pulumi.set(__self__, "subscription_id", subscription_id)
|
|
276
302
|
|
|
277
303
|
@_builtins.property
|
|
278
304
|
@pulumi.getter(name="authenticationType")
|
|
@@ -420,6 +446,20 @@ class _EndpointStorageContainerState:
|
|
|
420
446
|
def resource_group_name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
421
447
|
pulumi.set(self, "resource_group_name", value)
|
|
422
448
|
|
|
449
|
+
@_builtins.property
|
|
450
|
+
@pulumi.getter(name="subscriptionId")
|
|
451
|
+
def subscription_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
452
|
+
"""
|
|
453
|
+
The subscription ID for the endpoint.
|
|
454
|
+
|
|
455
|
+
> **Note:** When `subscription_id` isn't specified it will be set to the subscription ID of the IoT Hub resource.
|
|
456
|
+
"""
|
|
457
|
+
return pulumi.get(self, "subscription_id")
|
|
458
|
+
|
|
459
|
+
@subscription_id.setter
|
|
460
|
+
def subscription_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
461
|
+
pulumi.set(self, "subscription_id", value)
|
|
462
|
+
|
|
423
463
|
|
|
424
464
|
@pulumi.type_token("azure:iot/endpointStorageContainer:EndpointStorageContainer")
|
|
425
465
|
class EndpointStorageContainer(pulumi.CustomResource):
|
|
@@ -439,6 +479,7 @@ class EndpointStorageContainer(pulumi.CustomResource):
|
|
|
439
479
|
max_chunk_size_in_bytes: Optional[pulumi.Input[_builtins.int]] = None,
|
|
440
480
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
441
481
|
resource_group_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
482
|
+
subscription_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
442
483
|
__props__=None):
|
|
443
484
|
"""
|
|
444
485
|
Manages an IotHub Storage Container Endpoint
|
|
@@ -508,6 +549,9 @@ class EndpointStorageContainer(pulumi.CustomResource):
|
|
|
508
549
|
:param pulumi.Input[_builtins.int] max_chunk_size_in_bytes: Maximum number of bytes for each blob written to storage. Value should be between 10485760(10MB) and 524288000(500MB). Default value is 314572800(300MB).
|
|
509
550
|
:param pulumi.Input[_builtins.str] name: The name of the endpoint. The name must be unique across endpoint types. The following names are reserved: `events`, `operationsMonitoringEvents`, `fileNotifications` and `$default`. Changing this forces a new resource to be created.
|
|
510
551
|
:param pulumi.Input[_builtins.str] resource_group_name: The name of the resource group under which the Storage Container has been created. Changing this forces a new resource to be created.
|
|
552
|
+
:param pulumi.Input[_builtins.str] subscription_id: The subscription ID for the endpoint.
|
|
553
|
+
|
|
554
|
+
> **Note:** When `subscription_id` isn't specified it will be set to the subscription ID of the IoT Hub resource.
|
|
511
555
|
"""
|
|
512
556
|
...
|
|
513
557
|
@overload
|
|
@@ -594,6 +638,7 @@ class EndpointStorageContainer(pulumi.CustomResource):
|
|
|
594
638
|
max_chunk_size_in_bytes: Optional[pulumi.Input[_builtins.int]] = None,
|
|
595
639
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
596
640
|
resource_group_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
641
|
+
subscription_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
597
642
|
__props__=None):
|
|
598
643
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
599
644
|
if not isinstance(opts, pulumi.ResourceOptions):
|
|
@@ -621,6 +666,7 @@ class EndpointStorageContainer(pulumi.CustomResource):
|
|
|
621
666
|
if resource_group_name is None and not opts.urn:
|
|
622
667
|
raise TypeError("Missing required property 'resource_group_name'")
|
|
623
668
|
__props__.__dict__["resource_group_name"] = resource_group_name
|
|
669
|
+
__props__.__dict__["subscription_id"] = subscription_id
|
|
624
670
|
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["connectionString"])
|
|
625
671
|
opts = pulumi.ResourceOptions.merge(opts, secret_opts)
|
|
626
672
|
super(EndpointStorageContainer, __self__).__init__(
|
|
@@ -644,7 +690,8 @@ class EndpointStorageContainer(pulumi.CustomResource):
|
|
|
644
690
|
iothub_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
645
691
|
max_chunk_size_in_bytes: Optional[pulumi.Input[_builtins.int]] = None,
|
|
646
692
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
647
|
-
resource_group_name: Optional[pulumi.Input[_builtins.str]] = None
|
|
693
|
+
resource_group_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
694
|
+
subscription_id: Optional[pulumi.Input[_builtins.str]] = None) -> 'EndpointStorageContainer':
|
|
648
695
|
"""
|
|
649
696
|
Get an existing EndpointStorageContainer resource's state with the given name, id, and optional extra
|
|
650
697
|
properties used to qualify the lookup.
|
|
@@ -666,6 +713,9 @@ class EndpointStorageContainer(pulumi.CustomResource):
|
|
|
666
713
|
:param pulumi.Input[_builtins.int] max_chunk_size_in_bytes: Maximum number of bytes for each blob written to storage. Value should be between 10485760(10MB) and 524288000(500MB). Default value is 314572800(300MB).
|
|
667
714
|
:param pulumi.Input[_builtins.str] name: The name of the endpoint. The name must be unique across endpoint types. The following names are reserved: `events`, `operationsMonitoringEvents`, `fileNotifications` and `$default`. Changing this forces a new resource to be created.
|
|
668
715
|
:param pulumi.Input[_builtins.str] resource_group_name: The name of the resource group under which the Storage Container has been created. Changing this forces a new resource to be created.
|
|
716
|
+
:param pulumi.Input[_builtins.str] subscription_id: The subscription ID for the endpoint.
|
|
717
|
+
|
|
718
|
+
> **Note:** When `subscription_id` isn't specified it will be set to the subscription ID of the IoT Hub resource.
|
|
669
719
|
"""
|
|
670
720
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
671
721
|
|
|
@@ -683,6 +733,7 @@ class EndpointStorageContainer(pulumi.CustomResource):
|
|
|
683
733
|
__props__.__dict__["max_chunk_size_in_bytes"] = max_chunk_size_in_bytes
|
|
684
734
|
__props__.__dict__["name"] = name
|
|
685
735
|
__props__.__dict__["resource_group_name"] = resource_group_name
|
|
736
|
+
__props__.__dict__["subscription_id"] = subscription_id
|
|
686
737
|
return EndpointStorageContainer(resource_name, opts=opts, __props__=__props__)
|
|
687
738
|
|
|
688
739
|
@_builtins.property
|
|
@@ -783,3 +834,13 @@ class EndpointStorageContainer(pulumi.CustomResource):
|
|
|
783
834
|
"""
|
|
784
835
|
return pulumi.get(self, "resource_group_name")
|
|
785
836
|
|
|
837
|
+
@_builtins.property
|
|
838
|
+
@pulumi.getter(name="subscriptionId")
|
|
839
|
+
def subscription_id(self) -> pulumi.Output[_builtins.str]:
|
|
840
|
+
"""
|
|
841
|
+
The subscription ID for the endpoint.
|
|
842
|
+
|
|
843
|
+
> **Note:** When `subscription_id` isn't specified it will be set to the subscription ID of the IoT Hub resource.
|
|
844
|
+
"""
|
|
845
|
+
return pulumi.get(self, "subscription_id")
|
|
846
|
+
|
pulumi_azure/iot/outputs.py
CHANGED
|
@@ -191,6 +191,8 @@ class IoTHubEndpoint(dict):
|
|
|
191
191
|
suggest = "max_chunk_size_in_bytes"
|
|
192
192
|
elif key == "resourceGroupName":
|
|
193
193
|
suggest = "resource_group_name"
|
|
194
|
+
elif key == "subscriptionId":
|
|
195
|
+
suggest = "subscription_id"
|
|
194
196
|
|
|
195
197
|
if suggest:
|
|
196
198
|
pulumi.log.warn(f"Key '{key}' not found in IoTHubEndpoint. Access the value via the '{suggest}' property getter instead.")
|
|
@@ -216,7 +218,8 @@ class IoTHubEndpoint(dict):
|
|
|
216
218
|
file_name_format: Optional[_builtins.str] = None,
|
|
217
219
|
identity_id: Optional[_builtins.str] = None,
|
|
218
220
|
max_chunk_size_in_bytes: Optional[_builtins.int] = None,
|
|
219
|
-
resource_group_name: Optional[_builtins.str] = None
|
|
221
|
+
resource_group_name: Optional[_builtins.str] = None,
|
|
222
|
+
subscription_id: Optional[_builtins.str] = None):
|
|
220
223
|
"""
|
|
221
224
|
:param _builtins.str name: The name of the endpoint. The name must be unique across endpoint types. The following names are reserved: `events`, `operationsMonitoringEvents`, `fileNotifications` and `$default`.
|
|
222
225
|
:param _builtins.str type: The type of the endpoint. Possible values are `AzureIotHub.StorageContainer`, `AzureIotHub.ServiceBusQueue`, `AzureIotHub.ServiceBusTopic` or `AzureIotHub.EventHub`.
|
|
@@ -235,6 +238,9 @@ class IoTHubEndpoint(dict):
|
|
|
235
238
|
> **Note:** An IoT Hub can only be updated to use the System-Assigned Managed Identity for `endpoint` since it is not possible to grant access to the endpoint until after creation. The extracted resources `azurerm_iothub_endpoint_*` can be used to configure Endpoints with the IoT Hub's System-Assigned Managed Identity without the need for an update.
|
|
236
239
|
:param _builtins.int max_chunk_size_in_bytes: Maximum number of bytes for each blob written to storage. Value should be between 10485760(10MB) and 524288000(500MB). Default value is 314572800(300MB). This attribute is applicable for endpoint type `AzureIotHub.StorageContainer`.
|
|
237
240
|
:param _builtins.str resource_group_name: The resource group in which the endpoint will be created.
|
|
241
|
+
:param _builtins.str subscription_id: The subscription ID for the endpoint.
|
|
242
|
+
|
|
243
|
+
> **Note:** When `subscription_id` isn't specified it will be set to the subscription ID of the IoT Hub resource.
|
|
238
244
|
"""
|
|
239
245
|
pulumi.set(__self__, "name", name)
|
|
240
246
|
pulumi.set(__self__, "type", type)
|
|
@@ -260,6 +266,8 @@ class IoTHubEndpoint(dict):
|
|
|
260
266
|
pulumi.set(__self__, "max_chunk_size_in_bytes", max_chunk_size_in_bytes)
|
|
261
267
|
if resource_group_name is not None:
|
|
262
268
|
pulumi.set(__self__, "resource_group_name", resource_group_name)
|
|
269
|
+
if subscription_id is not None:
|
|
270
|
+
pulumi.set(__self__, "subscription_id", subscription_id)
|
|
263
271
|
|
|
264
272
|
@_builtins.property
|
|
265
273
|
@pulumi.getter
|
|
@@ -369,6 +377,16 @@ class IoTHubEndpoint(dict):
|
|
|
369
377
|
"""
|
|
370
378
|
return pulumi.get(self, "resource_group_name")
|
|
371
379
|
|
|
380
|
+
@_builtins.property
|
|
381
|
+
@pulumi.getter(name="subscriptionId")
|
|
382
|
+
def subscription_id(self) -> Optional[_builtins.str]:
|
|
383
|
+
"""
|
|
384
|
+
The subscription ID for the endpoint.
|
|
385
|
+
|
|
386
|
+
> **Note:** When `subscription_id` isn't specified it will be set to the subscription ID of the IoT Hub resource.
|
|
387
|
+
"""
|
|
388
|
+
return pulumi.get(self, "subscription_id")
|
|
389
|
+
|
|
372
390
|
|
|
373
391
|
@pulumi.output_type
|
|
374
392
|
class IoTHubEnrichment(dict):
|
pulumi_azure/keyvault/_inputs.py
CHANGED
|
@@ -2200,17 +2200,11 @@ class KeyVaultAccessPolicyArgs:
|
|
|
2200
2200
|
if not MYPY:
|
|
2201
2201
|
class KeyVaultContactArgsDict(TypedDict):
|
|
2202
2202
|
email: pulumi.Input[_builtins.str]
|
|
2203
|
-
"""
|
|
2204
|
-
E-mail address of the contact.
|
|
2205
|
-
"""
|
|
2206
2203
|
name: NotRequired[pulumi.Input[_builtins.str]]
|
|
2207
2204
|
"""
|
|
2208
|
-
|
|
2205
|
+
Specifies the name of the Key Vault. Changing this forces a new resource to be created. The name must be globally unique. If the vault is in a recoverable state then the vault will need to be purged before reusing the name.
|
|
2209
2206
|
"""
|
|
2210
2207
|
phone: NotRequired[pulumi.Input[_builtins.str]]
|
|
2211
|
-
"""
|
|
2212
|
-
Phone number of the contact.
|
|
2213
|
-
"""
|
|
2214
2208
|
elif False:
|
|
2215
2209
|
KeyVaultContactArgsDict: TypeAlias = Mapping[str, Any]
|
|
2216
2210
|
|
|
@@ -2221,9 +2215,7 @@ class KeyVaultContactArgs:
|
|
|
2221
2215
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
2222
2216
|
phone: Optional[pulumi.Input[_builtins.str]] = None):
|
|
2223
2217
|
"""
|
|
2224
|
-
:param pulumi.Input[_builtins.str]
|
|
2225
|
-
:param pulumi.Input[_builtins.str] name: Name of the contact.
|
|
2226
|
-
:param pulumi.Input[_builtins.str] phone: Phone number of the contact.
|
|
2218
|
+
:param pulumi.Input[_builtins.str] name: Specifies the name of the Key Vault. Changing this forces a new resource to be created. The name must be globally unique. If the vault is in a recoverable state then the vault will need to be purged before reusing the name.
|
|
2227
2219
|
"""
|
|
2228
2220
|
pulumi.set(__self__, "email", email)
|
|
2229
2221
|
if name is not None:
|
|
@@ -2234,9 +2226,6 @@ class KeyVaultContactArgs:
|
|
|
2234
2226
|
@_builtins.property
|
|
2235
2227
|
@pulumi.getter
|
|
2236
2228
|
def email(self) -> pulumi.Input[_builtins.str]:
|
|
2237
|
-
"""
|
|
2238
|
-
E-mail address of the contact.
|
|
2239
|
-
"""
|
|
2240
2229
|
return pulumi.get(self, "email")
|
|
2241
2230
|
|
|
2242
2231
|
@email.setter
|
|
@@ -2247,7 +2236,7 @@ class KeyVaultContactArgs:
|
|
|
2247
2236
|
@pulumi.getter
|
|
2248
2237
|
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
2249
2238
|
"""
|
|
2250
|
-
|
|
2239
|
+
Specifies the name of the Key Vault. Changing this forces a new resource to be created. The name must be globally unique. If the vault is in a recoverable state then the vault will need to be purged before reusing the name.
|
|
2251
2240
|
"""
|
|
2252
2241
|
return pulumi.get(self, "name")
|
|
2253
2242
|
|
|
@@ -2258,9 +2247,6 @@ class KeyVaultContactArgs:
|
|
|
2258
2247
|
@_builtins.property
|
|
2259
2248
|
@pulumi.getter
|
|
2260
2249
|
def phone(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
2261
|
-
"""
|
|
2262
|
-
Phone number of the contact.
|
|
2263
|
-
"""
|
|
2264
2250
|
return pulumi.get(self, "phone")
|
|
2265
2251
|
|
|
2266
2252
|
@phone.setter
|
|
@@ -27,7 +27,7 @@ class GetKeyVaultResult:
|
|
|
27
27
|
"""
|
|
28
28
|
A collection of values returned by getKeyVault.
|
|
29
29
|
"""
|
|
30
|
-
def __init__(__self__, access_policies=None, enable_rbac_authorization=None, enabled_for_deployment=None, enabled_for_disk_encryption=None, enabled_for_template_deployment=None, id=None, location=None, name=None, network_acls=None, public_network_access_enabled=None, purge_protection_enabled=None, resource_group_name=None, sku_name=None, tags=None, tenant_id=None, vault_uri=None):
|
|
30
|
+
def __init__(__self__, access_policies=None, enable_rbac_authorization=None, enabled_for_deployment=None, enabled_for_disk_encryption=None, enabled_for_template_deployment=None, id=None, location=None, name=None, network_acls=None, public_network_access_enabled=None, purge_protection_enabled=None, rbac_authorization_enabled=None, resource_group_name=None, sku_name=None, tags=None, tenant_id=None, vault_uri=None):
|
|
31
31
|
if access_policies and not isinstance(access_policies, list):
|
|
32
32
|
raise TypeError("Expected argument 'access_policies' to be a list")
|
|
33
33
|
pulumi.set(__self__, "access_policies", access_policies)
|
|
@@ -61,6 +61,9 @@ class GetKeyVaultResult:
|
|
|
61
61
|
if purge_protection_enabled and not isinstance(purge_protection_enabled, bool):
|
|
62
62
|
raise TypeError("Expected argument 'purge_protection_enabled' to be a bool")
|
|
63
63
|
pulumi.set(__self__, "purge_protection_enabled", purge_protection_enabled)
|
|
64
|
+
if rbac_authorization_enabled and not isinstance(rbac_authorization_enabled, bool):
|
|
65
|
+
raise TypeError("Expected argument 'rbac_authorization_enabled' to be a bool")
|
|
66
|
+
pulumi.set(__self__, "rbac_authorization_enabled", rbac_authorization_enabled)
|
|
64
67
|
if resource_group_name and not isinstance(resource_group_name, str):
|
|
65
68
|
raise TypeError("Expected argument 'resource_group_name' to be a str")
|
|
66
69
|
pulumi.set(__self__, "resource_group_name", resource_group_name)
|
|
@@ -87,6 +90,7 @@ class GetKeyVaultResult:
|
|
|
87
90
|
|
|
88
91
|
@_builtins.property
|
|
89
92
|
@pulumi.getter(name="enableRbacAuthorization")
|
|
93
|
+
@_utilities.deprecated("""the `enable_rbac_authorization` property is deprecated in favour of `rbac_authorization_enabled` and will be removed in v5.0 of the AzureRM Provider.""")
|
|
90
94
|
def enable_rbac_authorization(self) -> _builtins.bool:
|
|
91
95
|
"""
|
|
92
96
|
Is Role Based Access Control (RBAC) for authorization of data actions enabled on this Key Vault?
|
|
@@ -159,6 +163,11 @@ class GetKeyVaultResult:
|
|
|
159
163
|
"""
|
|
160
164
|
return pulumi.get(self, "purge_protection_enabled")
|
|
161
165
|
|
|
166
|
+
@_builtins.property
|
|
167
|
+
@pulumi.getter(name="rbacAuthorizationEnabled")
|
|
168
|
+
def rbac_authorization_enabled(self) -> _builtins.bool:
|
|
169
|
+
return pulumi.get(self, "rbac_authorization_enabled")
|
|
170
|
+
|
|
162
171
|
@_builtins.property
|
|
163
172
|
@pulumi.getter(name="resourceGroupName")
|
|
164
173
|
def resource_group_name(self) -> _builtins.str:
|
|
@@ -214,6 +223,7 @@ class AwaitableGetKeyVaultResult(GetKeyVaultResult):
|
|
|
214
223
|
network_acls=self.network_acls,
|
|
215
224
|
public_network_access_enabled=self.public_network_access_enabled,
|
|
216
225
|
purge_protection_enabled=self.purge_protection_enabled,
|
|
226
|
+
rbac_authorization_enabled=self.rbac_authorization_enabled,
|
|
217
227
|
resource_group_name=self.resource_group_name,
|
|
218
228
|
sku_name=self.sku_name,
|
|
219
229
|
tags=self.tags,
|
|
@@ -260,6 +270,7 @@ def get_key_vault(name: Optional[_builtins.str] = None,
|
|
|
260
270
|
network_acls=pulumi.get(__ret__, 'network_acls'),
|
|
261
271
|
public_network_access_enabled=pulumi.get(__ret__, 'public_network_access_enabled'),
|
|
262
272
|
purge_protection_enabled=pulumi.get(__ret__, 'purge_protection_enabled'),
|
|
273
|
+
rbac_authorization_enabled=pulumi.get(__ret__, 'rbac_authorization_enabled'),
|
|
263
274
|
resource_group_name=pulumi.get(__ret__, 'resource_group_name'),
|
|
264
275
|
sku_name=pulumi.get(__ret__, 'sku_name'),
|
|
265
276
|
tags=pulumi.get(__ret__, 'tags'),
|
|
@@ -303,6 +314,7 @@ def get_key_vault_output(name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
|
303
314
|
network_acls=pulumi.get(__response__, 'network_acls'),
|
|
304
315
|
public_network_access_enabled=pulumi.get(__response__, 'public_network_access_enabled'),
|
|
305
316
|
purge_protection_enabled=pulumi.get(__response__, 'purge_protection_enabled'),
|
|
317
|
+
rbac_authorization_enabled=pulumi.get(__response__, 'rbac_authorization_enabled'),
|
|
306
318
|
resource_group_name=pulumi.get(__response__, 'resource_group_name'),
|
|
307
319
|
sku_name=pulumi.get(__response__, 'sku_name'),
|
|
308
320
|
tags=pulumi.get(__response__, 'tags'),
|