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
|
@@ -308,7 +308,44 @@ class BackupPolicyBlobStorage(pulumi.CustomResource):
|
|
|
308
308
|
example_backup_policy_blob_storage = azure.dataprotection.BackupPolicyBlobStorage("example",
|
|
309
309
|
name="example-backup-policy",
|
|
310
310
|
vault_id=example_backup_vault.id,
|
|
311
|
-
operational_default_retention_duration="P30D"
|
|
311
|
+
operational_default_retention_duration="P30D",
|
|
312
|
+
vault_default_retention_duration="P7D",
|
|
313
|
+
retention_rules=[
|
|
314
|
+
{
|
|
315
|
+
"name": "Weekly",
|
|
316
|
+
"priority": 20,
|
|
317
|
+
"life_cycle": {
|
|
318
|
+
"duration": "P90D",
|
|
319
|
+
"data_store_type": "VaultStore",
|
|
320
|
+
},
|
|
321
|
+
"criteria": {
|
|
322
|
+
"days_of_weeks": ["Monday"],
|
|
323
|
+
},
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
"name": "Monthly",
|
|
327
|
+
"priority": 10,
|
|
328
|
+
"life_cycle": {
|
|
329
|
+
"duration": "P180D",
|
|
330
|
+
"data_store_type": "VaultStore",
|
|
331
|
+
},
|
|
332
|
+
"criteria": {
|
|
333
|
+
"days_of_months": [1],
|
|
334
|
+
},
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
"name": "Yearly",
|
|
338
|
+
"priority": 5,
|
|
339
|
+
"life_cycle": {
|
|
340
|
+
"duration": "P365D",
|
|
341
|
+
"data_store_type": "VaultStore",
|
|
342
|
+
},
|
|
343
|
+
"criteria": {
|
|
344
|
+
"months_of_years": ["January"],
|
|
345
|
+
"days_of_months": [1],
|
|
346
|
+
},
|
|
347
|
+
},
|
|
348
|
+
])
|
|
312
349
|
```
|
|
313
350
|
|
|
314
351
|
## API Providers
|
|
@@ -367,7 +404,44 @@ class BackupPolicyBlobStorage(pulumi.CustomResource):
|
|
|
367
404
|
example_backup_policy_blob_storage = azure.dataprotection.BackupPolicyBlobStorage("example",
|
|
368
405
|
name="example-backup-policy",
|
|
369
406
|
vault_id=example_backup_vault.id,
|
|
370
|
-
operational_default_retention_duration="P30D"
|
|
407
|
+
operational_default_retention_duration="P30D",
|
|
408
|
+
vault_default_retention_duration="P7D",
|
|
409
|
+
retention_rules=[
|
|
410
|
+
{
|
|
411
|
+
"name": "Weekly",
|
|
412
|
+
"priority": 20,
|
|
413
|
+
"life_cycle": {
|
|
414
|
+
"duration": "P90D",
|
|
415
|
+
"data_store_type": "VaultStore",
|
|
416
|
+
},
|
|
417
|
+
"criteria": {
|
|
418
|
+
"days_of_weeks": ["Monday"],
|
|
419
|
+
},
|
|
420
|
+
},
|
|
421
|
+
{
|
|
422
|
+
"name": "Monthly",
|
|
423
|
+
"priority": 10,
|
|
424
|
+
"life_cycle": {
|
|
425
|
+
"duration": "P180D",
|
|
426
|
+
"data_store_type": "VaultStore",
|
|
427
|
+
},
|
|
428
|
+
"criteria": {
|
|
429
|
+
"days_of_months": [1],
|
|
430
|
+
},
|
|
431
|
+
},
|
|
432
|
+
{
|
|
433
|
+
"name": "Yearly",
|
|
434
|
+
"priority": 5,
|
|
435
|
+
"life_cycle": {
|
|
436
|
+
"duration": "P365D",
|
|
437
|
+
"data_store_type": "VaultStore",
|
|
438
|
+
},
|
|
439
|
+
"criteria": {
|
|
440
|
+
"months_of_years": ["January"],
|
|
441
|
+
"days_of_months": [1],
|
|
442
|
+
},
|
|
443
|
+
},
|
|
444
|
+
])
|
|
371
445
|
```
|
|
372
446
|
|
|
373
447
|
## API Providers
|
|
@@ -271,9 +271,11 @@ class BackupPolicyBlobStorageRetentionRuleCriteria(dict):
|
|
|
271
271
|
:param _builtins.str absolute_criteria: Possible values are `AllBackup`, `FirstOfDay`, `FirstOfWeek`, `FirstOfMonth` and `FirstOfYear`. These values mean the first successful backup of the day/week/month/year. Changing this forces a new Backup Policy Blob Storage to be created.
|
|
272
272
|
:param Sequence[_builtins.int] days_of_months: Must be between `0` and `28`. `0` for last day within the month. Changing this forces a new Backup Policy Blob Storage to be created.
|
|
273
273
|
:param Sequence[_builtins.str] days_of_weeks: Possible values are `Monday`, `Tuesday`, `Thursday`, `Friday`, `Saturday` and `Sunday`. Changing this forces a new Backup Policy Blob Storage to be created.
|
|
274
|
-
:param Sequence[_builtins.str] months_of_years: Possible values are `January`, `February`, `March`, `April`, `May`, `June`, `July`, `August`, `September`, `October`, `November` and `December`. Changing this forces a new Backup Policy Blob Storage to be created.
|
|
274
|
+
:param Sequence[_builtins.str] months_of_years: Possible values are `January`, `February`, `March`, `April`, `May`, `June`, `July`, `August`, `September`, `October`, `November` and `December`. Changing this forces a new Backup Policy Blob Storage to be created. When this property is specified, exactly one of the following must also be set: `days_of_month`, `days_of_week`
|
|
275
275
|
:param Sequence[_builtins.str] scheduled_backup_times: Specifies a list of backup times for backup in the `RFC3339` format. Changing this forces a new Backup Policy Blob Storage to be created.
|
|
276
|
-
:param Sequence[_builtins.str] weeks_of_months: Possible values are `First`, `Second`, `Third`, `Fourth` and `Last`. Changing this forces a new Backup Policy Blob Storage to be created.
|
|
276
|
+
:param Sequence[_builtins.str] weeks_of_months: Possible values are `First`, `Second`, `Third`, `Fourth` and `Last`. Changing this forces a new Backup Policy Blob Storage to be created. When this property is specified, exactly one of the following must also be set: `days_of_month`, `days_of_week`
|
|
277
|
+
|
|
278
|
+
> **Note:** When not using `absolute_criteria`, you must use exactly one of `days_of_month` or `days_of_week`. Regarding the remaining two properties, `weeks_of_month` and `months_of_year`, you may use either, both, or neither. If you would like to set multiple intervals, you may do so by using multiple `retention_rule` blocks.
|
|
277
279
|
"""
|
|
278
280
|
if absolute_criteria is not None:
|
|
279
281
|
pulumi.set(__self__, "absolute_criteria", absolute_criteria)
|
|
@@ -316,7 +318,7 @@ class BackupPolicyBlobStorageRetentionRuleCriteria(dict):
|
|
|
316
318
|
@pulumi.getter(name="monthsOfYears")
|
|
317
319
|
def months_of_years(self) -> Optional[Sequence[_builtins.str]]:
|
|
318
320
|
"""
|
|
319
|
-
Possible values are `January`, `February`, `March`, `April`, `May`, `June`, `July`, `August`, `September`, `October`, `November` and `December`. Changing this forces a new Backup Policy Blob Storage to be created.
|
|
321
|
+
Possible values are `January`, `February`, `March`, `April`, `May`, `June`, `July`, `August`, `September`, `October`, `November` and `December`. Changing this forces a new Backup Policy Blob Storage to be created. When this property is specified, exactly one of the following must also be set: `days_of_month`, `days_of_week`
|
|
320
322
|
"""
|
|
321
323
|
return pulumi.get(self, "months_of_years")
|
|
322
324
|
|
|
@@ -332,7 +334,9 @@ class BackupPolicyBlobStorageRetentionRuleCriteria(dict):
|
|
|
332
334
|
@pulumi.getter(name="weeksOfMonths")
|
|
333
335
|
def weeks_of_months(self) -> Optional[Sequence[_builtins.str]]:
|
|
334
336
|
"""
|
|
335
|
-
Possible values are `First`, `Second`, `Third`, `Fourth` and `Last`. Changing this forces a new Backup Policy Blob Storage to be created.
|
|
337
|
+
Possible values are `First`, `Second`, `Third`, `Fourth` and `Last`. Changing this forces a new Backup Policy Blob Storage to be created. When this property is specified, exactly one of the following must also be set: `days_of_month`, `days_of_week`
|
|
338
|
+
|
|
339
|
+
> **Note:** When not using `absolute_criteria`, you must use exactly one of `days_of_month` or `days_of_week`. Regarding the remaining two properties, `weeks_of_month` and `months_of_year`, you may use either, both, or neither. If you would like to set multiple intervals, you may do so by using multiple `retention_rule` blocks.
|
|
336
340
|
"""
|
|
337
341
|
return pulumi.get(self, "weeks_of_months")
|
|
338
342
|
|
|
@@ -658,6 +662,8 @@ class BackupPolicyKubernetesClusterRetentionRuleCriteria(dict):
|
|
|
658
662
|
:param Sequence[_builtins.str] months_of_years: Possible values are `January`, `February`, `March`, `April`, `May`, `June`, `July`, `August`, `September`, `October`, `November` and `December`. Changing this forces a new resource to be created.
|
|
659
663
|
:param Sequence[_builtins.str] scheduled_backup_times: Specifies a list of backup times for backup in the `RFC3339` format. Changing this forces a new resource to be created.
|
|
660
664
|
:param Sequence[_builtins.str] weeks_of_months: Possible values are `First`, `Second`, `Third`, `Fourth` and `Last`. Changing this forces a new resource to be created.
|
|
665
|
+
*
|
|
666
|
+
> **Note:** When not using `absolute_criteria`, you must use exactly one of `days_of_month` or `days_of_week`. Regarding the remaining two properties, `weeks_of_month` and `months_of_year`, you may use either, both, or neither. If you would like to set multiple intervals, you may do so by using multiple `retention_rule` blocks.
|
|
661
667
|
"""
|
|
662
668
|
if absolute_criteria is not None:
|
|
663
669
|
pulumi.set(__self__, "absolute_criteria", absolute_criteria)
|
|
@@ -707,6 +713,8 @@ class BackupPolicyKubernetesClusterRetentionRuleCriteria(dict):
|
|
|
707
713
|
def weeks_of_months(self) -> Optional[Sequence[_builtins.str]]:
|
|
708
714
|
"""
|
|
709
715
|
Possible values are `First`, `Second`, `Third`, `Fourth` and `Last`. Changing this forces a new resource to be created.
|
|
716
|
+
*
|
|
717
|
+
> **Note:** When not using `absolute_criteria`, you must use exactly one of `days_of_month` or `days_of_week`. Regarding the remaining two properties, `weeks_of_month` and `months_of_year`, you may use either, both, or neither. If you would like to set multiple intervals, you may do so by using multiple `retention_rule` blocks.
|
|
710
718
|
"""
|
|
711
719
|
return pulumi.get(self, "weeks_of_months")
|
|
712
720
|
|
|
@@ -945,6 +953,8 @@ class BackupPolicyMysqlFlexibleServerRetentionRuleCriteria(dict):
|
|
|
945
953
|
:param Sequence[_builtins.str] months_of_years: Possible values are `January`, `February`, `March`, `April`, `May`, `June`, `July`, `August`, `September`, `October`, `November` and `December`. Changing this forces a new resource to be created.
|
|
946
954
|
:param Sequence[_builtins.str] scheduled_backup_times: Specifies a list of backup times for backup in the `RFC3339` format. Changing this forces a new resource to be created.
|
|
947
955
|
:param Sequence[_builtins.str] weeks_of_months: Possible values are `First`, `Second`, `Third`, `Fourth` and `Last`. Changing this forces a new resource to be created.
|
|
956
|
+
|
|
957
|
+
> **Note:** When not using `absolute_criteria`, you must use exactly one of `days_of_month` or `days_of_week`. Regarding the remaining two properties, `weeks_of_month` and `months_of_year`, you may use either, both, or neither. If you would like to set multiple intervals, you may do so by using multiple `retention_rule` blocks.
|
|
948
958
|
"""
|
|
949
959
|
if absolute_criteria is not None:
|
|
950
960
|
pulumi.set(__self__, "absolute_criteria", absolute_criteria)
|
|
@@ -994,6 +1004,8 @@ class BackupPolicyMysqlFlexibleServerRetentionRuleCriteria(dict):
|
|
|
994
1004
|
def weeks_of_months(self) -> Optional[Sequence[_builtins.str]]:
|
|
995
1005
|
"""
|
|
996
1006
|
Possible values are `First`, `Second`, `Third`, `Fourth` and `Last`. Changing this forces a new resource to be created.
|
|
1007
|
+
|
|
1008
|
+
> **Note:** When not using `absolute_criteria`, you must use exactly one of `days_of_month` or `days_of_week`. Regarding the remaining two properties, `weeks_of_month` and `months_of_year`, you may use either, both, or neither. If you would like to set multiple intervals, you may do so by using multiple `retention_rule` blocks.
|
|
997
1009
|
"""
|
|
998
1010
|
return pulumi.get(self, "weeks_of_months")
|
|
999
1011
|
|
|
@@ -1232,6 +1244,8 @@ class BackupPolicyPostgresqlFlexibleServerRetentionRuleCriteria(dict):
|
|
|
1232
1244
|
:param Sequence[_builtins.str] months_of_years: Possible values are `January`, `February`, `March`, `April`, `May`, `June`, `July`, `August`, `September`, `October`, `November` and `December`. Changing this forces a new resource to be created.
|
|
1233
1245
|
:param Sequence[_builtins.str] scheduled_backup_times: Specifies a list of backup times for backup in the `RFC3339` format. Changing this forces a new resource to be created.
|
|
1234
1246
|
:param Sequence[_builtins.str] weeks_of_months: Possible values are `First`, `Second`, `Third`, `Fourth` and `Last`. Changing this forces a new resource to be created.
|
|
1247
|
+
|
|
1248
|
+
> **Note:** When not using `absolute_criteria`, you must use exactly one of `days_of_month` or `days_of_week`. Regarding the remaining two properties, `weeks_of_month` and `months_of_year`, you may use either, both, or neither. If you would like to set multiple intervals, you may do so by using multiple `retention_rule` blocks.
|
|
1235
1249
|
"""
|
|
1236
1250
|
if absolute_criteria is not None:
|
|
1237
1251
|
pulumi.set(__self__, "absolute_criteria", absolute_criteria)
|
|
@@ -1281,6 +1295,8 @@ class BackupPolicyPostgresqlFlexibleServerRetentionRuleCriteria(dict):
|
|
|
1281
1295
|
def weeks_of_months(self) -> Optional[Sequence[_builtins.str]]:
|
|
1282
1296
|
"""
|
|
1283
1297
|
Possible values are `First`, `Second`, `Third`, `Fourth` and `Last`. Changing this forces a new resource to be created.
|
|
1298
|
+
|
|
1299
|
+
> **Note:** When not using `absolute_criteria`, you must use exactly one of `days_of_month` or `days_of_week`. Regarding the remaining two properties, `weeks_of_month` and `months_of_year`, you may use either, both, or neither. If you would like to set multiple intervals, you may do so by using multiple `retention_rule` blocks.
|
|
1284
1300
|
"""
|
|
1285
1301
|
return pulumi.get(self, "weeks_of_months")
|
|
1286
1302
|
|
|
@@ -1421,6 +1437,8 @@ class BackupPolicyPostgresqlRetentionRuleCriteria(dict):
|
|
|
1421
1437
|
:param Sequence[_builtins.str] months_of_years: Possible values are `January`, `February`, `March`, `April`, `May`, `June`, `July`, `August`, `September`, `October`, `November` and `December`. Changing this forces a new Backup Policy PostgreSQL to be created.
|
|
1422
1438
|
:param Sequence[_builtins.str] scheduled_backup_times: Specifies a list of backup times for backup in the `RFC3339` format. Changing this forces a new Backup Policy PostgreSQL to be created.
|
|
1423
1439
|
:param Sequence[_builtins.str] weeks_of_months: Possible values are `First`, `Second`, `Third`, `Fourth` and `Last`. Changing this forces a new Backup Policy PostgreSQL to be created.
|
|
1440
|
+
|
|
1441
|
+
> **Note:** When not using `absolute_criteria`, you must use exactly one of `days_of_month` or `days_of_week`. Regarding the remaining two properties, `weeks_of_month` and `months_of_year`, you may use either, both, or neither. If you would like to set multiple intervals, you may do so by using multiple `retention_rule` blocks.
|
|
1424
1442
|
"""
|
|
1425
1443
|
if absolute_criteria is not None:
|
|
1426
1444
|
pulumi.set(__self__, "absolute_criteria", absolute_criteria)
|
|
@@ -1470,6 +1488,8 @@ class BackupPolicyPostgresqlRetentionRuleCriteria(dict):
|
|
|
1470
1488
|
def weeks_of_months(self) -> Optional[Sequence[_builtins.str]]:
|
|
1471
1489
|
"""
|
|
1472
1490
|
Possible values are `First`, `Second`, `Third`, `Fourth` and `Last`. Changing this forces a new Backup Policy PostgreSQL to be created.
|
|
1491
|
+
|
|
1492
|
+
> **Note:** When not using `absolute_criteria`, you must use exactly one of `days_of_month` or `days_of_week`. Regarding the remaining two properties, `weeks_of_month` and `months_of_year`, you may use either, both, or neither. If you would like to set multiple intervals, you may do so by using multiple `retention_rule` blocks.
|
|
1473
1493
|
"""
|
|
1474
1494
|
return pulumi.get(self, "weeks_of_months")
|
|
1475
1495
|
|
|
@@ -26,7 +26,7 @@ class GetProjectPoolResult:
|
|
|
26
26
|
"""
|
|
27
27
|
A collection of values returned by getProjectPool.
|
|
28
28
|
"""
|
|
29
|
-
def __init__(__self__, dev_box_definition_name=None, dev_center_attached_network_name=None, dev_center_project_id=None, id=None, local_administrator_enabled=None, location=None, name=None, stop_on_disconnect_grace_period_minutes=None, tags=None):
|
|
29
|
+
def __init__(__self__, dev_box_definition_name=None, dev_center_attached_network_name=None, dev_center_project_id=None, id=None, local_administrator_enabled=None, location=None, name=None, single_sign_on_enabled=None, stop_on_disconnect_grace_period_minutes=None, tags=None):
|
|
30
30
|
if dev_box_definition_name and not isinstance(dev_box_definition_name, str):
|
|
31
31
|
raise TypeError("Expected argument 'dev_box_definition_name' to be a str")
|
|
32
32
|
pulumi.set(__self__, "dev_box_definition_name", dev_box_definition_name)
|
|
@@ -48,6 +48,9 @@ class GetProjectPoolResult:
|
|
|
48
48
|
if name and not isinstance(name, str):
|
|
49
49
|
raise TypeError("Expected argument 'name' to be a str")
|
|
50
50
|
pulumi.set(__self__, "name", name)
|
|
51
|
+
if single_sign_on_enabled and not isinstance(single_sign_on_enabled, bool):
|
|
52
|
+
raise TypeError("Expected argument 'single_sign_on_enabled' to be a bool")
|
|
53
|
+
pulumi.set(__self__, "single_sign_on_enabled", single_sign_on_enabled)
|
|
51
54
|
if stop_on_disconnect_grace_period_minutes and not isinstance(stop_on_disconnect_grace_period_minutes, int):
|
|
52
55
|
raise TypeError("Expected argument 'stop_on_disconnect_grace_period_minutes' to be a int")
|
|
53
56
|
pulumi.set(__self__, "stop_on_disconnect_grace_period_minutes", stop_on_disconnect_grace_period_minutes)
|
|
@@ -105,6 +108,14 @@ class GetProjectPoolResult:
|
|
|
105
108
|
def name(self) -> _builtins.str:
|
|
106
109
|
return pulumi.get(self, "name")
|
|
107
110
|
|
|
111
|
+
@_builtins.property
|
|
112
|
+
@pulumi.getter(name="singleSignOnEnabled")
|
|
113
|
+
def single_sign_on_enabled(self) -> _builtins.bool:
|
|
114
|
+
"""
|
|
115
|
+
Specifies whether Dev Boxes in the Pool will have SSO enabled or disabled.
|
|
116
|
+
"""
|
|
117
|
+
return pulumi.get(self, "single_sign_on_enabled")
|
|
118
|
+
|
|
108
119
|
@_builtins.property
|
|
109
120
|
@pulumi.getter(name="stopOnDisconnectGracePeriodMinutes")
|
|
110
121
|
def stop_on_disconnect_grace_period_minutes(self) -> _builtins.int:
|
|
@@ -135,6 +146,7 @@ class AwaitableGetProjectPoolResult(GetProjectPoolResult):
|
|
|
135
146
|
local_administrator_enabled=self.local_administrator_enabled,
|
|
136
147
|
location=self.location,
|
|
137
148
|
name=self.name,
|
|
149
|
+
single_sign_on_enabled=self.single_sign_on_enabled,
|
|
138
150
|
stop_on_disconnect_grace_period_minutes=self.stop_on_disconnect_grace_period_minutes,
|
|
139
151
|
tags=self.tags)
|
|
140
152
|
|
|
@@ -181,6 +193,7 @@ def get_project_pool(dev_center_project_id: Optional[_builtins.str] = None,
|
|
|
181
193
|
local_administrator_enabled=pulumi.get(__ret__, 'local_administrator_enabled'),
|
|
182
194
|
location=pulumi.get(__ret__, 'location'),
|
|
183
195
|
name=pulumi.get(__ret__, 'name'),
|
|
196
|
+
single_sign_on_enabled=pulumi.get(__ret__, 'single_sign_on_enabled'),
|
|
184
197
|
stop_on_disconnect_grace_period_minutes=pulumi.get(__ret__, 'stop_on_disconnect_grace_period_minutes'),
|
|
185
198
|
tags=pulumi.get(__ret__, 'tags'))
|
|
186
199
|
def get_project_pool_output(dev_center_project_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -224,5 +237,6 @@ def get_project_pool_output(dev_center_project_id: Optional[pulumi.Input[_builti
|
|
|
224
237
|
local_administrator_enabled=pulumi.get(__response__, 'local_administrator_enabled'),
|
|
225
238
|
location=pulumi.get(__response__, 'location'),
|
|
226
239
|
name=pulumi.get(__response__, 'name'),
|
|
240
|
+
single_sign_on_enabled=pulumi.get(__response__, 'single_sign_on_enabled'),
|
|
227
241
|
stop_on_disconnect_grace_period_minutes=pulumi.get(__response__, 'stop_on_disconnect_grace_period_minutes'),
|
|
228
242
|
tags=pulumi.get(__response__, 'tags')))
|
|
@@ -26,6 +26,7 @@ class ProjectPoolArgs:
|
|
|
26
26
|
location: Optional[pulumi.Input[_builtins.str]] = None,
|
|
27
27
|
managed_virtual_network_regions: Optional[pulumi.Input[_builtins.str]] = None,
|
|
28
28
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
29
|
+
single_sign_on_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
29
30
|
stop_on_disconnect_grace_period_minutes: Optional[pulumi.Input[_builtins.int]] = None,
|
|
30
31
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None):
|
|
31
32
|
"""
|
|
@@ -39,6 +40,7 @@ class ProjectPoolArgs:
|
|
|
39
40
|
|
|
40
41
|
> **Note:** Currently only one region can be specified for `managed_virtual_network_regions`.
|
|
41
42
|
:param pulumi.Input[_builtins.str] name: Specifies the name of this Dev Center Project Pool. Changing this forces a new resource to be created.
|
|
43
|
+
:param pulumi.Input[_builtins.bool] single_sign_on_enabled: Specifies whether Dev Boxes in the Pool will have SSO enabled or disabled. Defaults to `false`.
|
|
42
44
|
:param pulumi.Input[_builtins.int] stop_on_disconnect_grace_period_minutes: The specified time in minutes to wait before stopping a Dev Center Dev Box once disconnect is detected. Possible values are between `60` and `480`.
|
|
43
45
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: A mapping of tags which should be assigned to the Dev Center Project Pool.
|
|
44
46
|
"""
|
|
@@ -52,6 +54,8 @@ class ProjectPoolArgs:
|
|
|
52
54
|
pulumi.set(__self__, "managed_virtual_network_regions", managed_virtual_network_regions)
|
|
53
55
|
if name is not None:
|
|
54
56
|
pulumi.set(__self__, "name", name)
|
|
57
|
+
if single_sign_on_enabled is not None:
|
|
58
|
+
pulumi.set(__self__, "single_sign_on_enabled", single_sign_on_enabled)
|
|
55
59
|
if stop_on_disconnect_grace_period_minutes is not None:
|
|
56
60
|
pulumi.set(__self__, "stop_on_disconnect_grace_period_minutes", stop_on_disconnect_grace_period_minutes)
|
|
57
61
|
if tags is not None:
|
|
@@ -143,6 +147,18 @@ class ProjectPoolArgs:
|
|
|
143
147
|
def name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
144
148
|
pulumi.set(self, "name", value)
|
|
145
149
|
|
|
150
|
+
@_builtins.property
|
|
151
|
+
@pulumi.getter(name="singleSignOnEnabled")
|
|
152
|
+
def single_sign_on_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
153
|
+
"""
|
|
154
|
+
Specifies whether Dev Boxes in the Pool will have SSO enabled or disabled. Defaults to `false`.
|
|
155
|
+
"""
|
|
156
|
+
return pulumi.get(self, "single_sign_on_enabled")
|
|
157
|
+
|
|
158
|
+
@single_sign_on_enabled.setter
|
|
159
|
+
def single_sign_on_enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
160
|
+
pulumi.set(self, "single_sign_on_enabled", value)
|
|
161
|
+
|
|
146
162
|
@_builtins.property
|
|
147
163
|
@pulumi.getter(name="stopOnDisconnectGracePeriodMinutes")
|
|
148
164
|
def stop_on_disconnect_grace_period_minutes(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
@@ -178,6 +194,7 @@ class _ProjectPoolState:
|
|
|
178
194
|
location: Optional[pulumi.Input[_builtins.str]] = None,
|
|
179
195
|
managed_virtual_network_regions: Optional[pulumi.Input[_builtins.str]] = None,
|
|
180
196
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
197
|
+
single_sign_on_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
181
198
|
stop_on_disconnect_grace_period_minutes: Optional[pulumi.Input[_builtins.int]] = None,
|
|
182
199
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None):
|
|
183
200
|
"""
|
|
@@ -191,6 +208,7 @@ class _ProjectPoolState:
|
|
|
191
208
|
|
|
192
209
|
> **Note:** Currently only one region can be specified for `managed_virtual_network_regions`.
|
|
193
210
|
:param pulumi.Input[_builtins.str] name: Specifies the name of this Dev Center Project Pool. Changing this forces a new resource to be created.
|
|
211
|
+
:param pulumi.Input[_builtins.bool] single_sign_on_enabled: Specifies whether Dev Boxes in the Pool will have SSO enabled or disabled. Defaults to `false`.
|
|
194
212
|
:param pulumi.Input[_builtins.int] stop_on_disconnect_grace_period_minutes: The specified time in minutes to wait before stopping a Dev Center Dev Box once disconnect is detected. Possible values are between `60` and `480`.
|
|
195
213
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: A mapping of tags which should be assigned to the Dev Center Project Pool.
|
|
196
214
|
"""
|
|
@@ -208,6 +226,8 @@ class _ProjectPoolState:
|
|
|
208
226
|
pulumi.set(__self__, "managed_virtual_network_regions", managed_virtual_network_regions)
|
|
209
227
|
if name is not None:
|
|
210
228
|
pulumi.set(__self__, "name", name)
|
|
229
|
+
if single_sign_on_enabled is not None:
|
|
230
|
+
pulumi.set(__self__, "single_sign_on_enabled", single_sign_on_enabled)
|
|
211
231
|
if stop_on_disconnect_grace_period_minutes is not None:
|
|
212
232
|
pulumi.set(__self__, "stop_on_disconnect_grace_period_minutes", stop_on_disconnect_grace_period_minutes)
|
|
213
233
|
if tags is not None:
|
|
@@ -299,6 +319,18 @@ class _ProjectPoolState:
|
|
|
299
319
|
def name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
300
320
|
pulumi.set(self, "name", value)
|
|
301
321
|
|
|
322
|
+
@_builtins.property
|
|
323
|
+
@pulumi.getter(name="singleSignOnEnabled")
|
|
324
|
+
def single_sign_on_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
325
|
+
"""
|
|
326
|
+
Specifies whether Dev Boxes in the Pool will have SSO enabled or disabled. Defaults to `false`.
|
|
327
|
+
"""
|
|
328
|
+
return pulumi.get(self, "single_sign_on_enabled")
|
|
329
|
+
|
|
330
|
+
@single_sign_on_enabled.setter
|
|
331
|
+
def single_sign_on_enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
332
|
+
pulumi.set(self, "single_sign_on_enabled", value)
|
|
333
|
+
|
|
302
334
|
@_builtins.property
|
|
303
335
|
@pulumi.getter(name="stopOnDisconnectGracePeriodMinutes")
|
|
304
336
|
def stop_on_disconnect_grace_period_minutes(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
@@ -337,6 +369,7 @@ class ProjectPool(pulumi.CustomResource):
|
|
|
337
369
|
location: Optional[pulumi.Input[_builtins.str]] = None,
|
|
338
370
|
managed_virtual_network_regions: Optional[pulumi.Input[_builtins.str]] = None,
|
|
339
371
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
372
|
+
single_sign_on_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
340
373
|
stop_on_disconnect_grace_period_minutes: Optional[pulumi.Input[_builtins.int]] = None,
|
|
341
374
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
342
375
|
__props__=None):
|
|
@@ -426,6 +459,7 @@ class ProjectPool(pulumi.CustomResource):
|
|
|
426
459
|
|
|
427
460
|
> **Note:** Currently only one region can be specified for `managed_virtual_network_regions`.
|
|
428
461
|
:param pulumi.Input[_builtins.str] name: Specifies the name of this Dev Center Project Pool. Changing this forces a new resource to be created.
|
|
462
|
+
:param pulumi.Input[_builtins.bool] single_sign_on_enabled: Specifies whether Dev Boxes in the Pool will have SSO enabled or disabled. Defaults to `false`.
|
|
429
463
|
:param pulumi.Input[_builtins.int] stop_on_disconnect_grace_period_minutes: The specified time in minutes to wait before stopping a Dev Center Dev Box once disconnect is detected. Possible values are between `60` and `480`.
|
|
430
464
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: A mapping of tags which should be assigned to the Dev Center Project Pool.
|
|
431
465
|
"""
|
|
@@ -532,6 +566,7 @@ class ProjectPool(pulumi.CustomResource):
|
|
|
532
566
|
location: Optional[pulumi.Input[_builtins.str]] = None,
|
|
533
567
|
managed_virtual_network_regions: Optional[pulumi.Input[_builtins.str]] = None,
|
|
534
568
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
569
|
+
single_sign_on_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
535
570
|
stop_on_disconnect_grace_period_minutes: Optional[pulumi.Input[_builtins.int]] = None,
|
|
536
571
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
537
572
|
__props__=None):
|
|
@@ -558,6 +593,7 @@ class ProjectPool(pulumi.CustomResource):
|
|
|
558
593
|
__props__.__dict__["location"] = location
|
|
559
594
|
__props__.__dict__["managed_virtual_network_regions"] = managed_virtual_network_regions
|
|
560
595
|
__props__.__dict__["name"] = name
|
|
596
|
+
__props__.__dict__["single_sign_on_enabled"] = single_sign_on_enabled
|
|
561
597
|
__props__.__dict__["stop_on_disconnect_grace_period_minutes"] = stop_on_disconnect_grace_period_minutes
|
|
562
598
|
__props__.__dict__["tags"] = tags
|
|
563
599
|
super(ProjectPool, __self__).__init__(
|
|
@@ -577,6 +613,7 @@ class ProjectPool(pulumi.CustomResource):
|
|
|
577
613
|
location: Optional[pulumi.Input[_builtins.str]] = None,
|
|
578
614
|
managed_virtual_network_regions: Optional[pulumi.Input[_builtins.str]] = None,
|
|
579
615
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
616
|
+
single_sign_on_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
580
617
|
stop_on_disconnect_grace_period_minutes: Optional[pulumi.Input[_builtins.int]] = None,
|
|
581
618
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None) -> 'ProjectPool':
|
|
582
619
|
"""
|
|
@@ -595,6 +632,7 @@ class ProjectPool(pulumi.CustomResource):
|
|
|
595
632
|
|
|
596
633
|
> **Note:** Currently only one region can be specified for `managed_virtual_network_regions`.
|
|
597
634
|
:param pulumi.Input[_builtins.str] name: Specifies the name of this Dev Center Project Pool. Changing this forces a new resource to be created.
|
|
635
|
+
:param pulumi.Input[_builtins.bool] single_sign_on_enabled: Specifies whether Dev Boxes in the Pool will have SSO enabled or disabled. Defaults to `false`.
|
|
598
636
|
:param pulumi.Input[_builtins.int] stop_on_disconnect_grace_period_minutes: The specified time in minutes to wait before stopping a Dev Center Dev Box once disconnect is detected. Possible values are between `60` and `480`.
|
|
599
637
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: A mapping of tags which should be assigned to the Dev Center Project Pool.
|
|
600
638
|
"""
|
|
@@ -609,6 +647,7 @@ class ProjectPool(pulumi.CustomResource):
|
|
|
609
647
|
__props__.__dict__["location"] = location
|
|
610
648
|
__props__.__dict__["managed_virtual_network_regions"] = managed_virtual_network_regions
|
|
611
649
|
__props__.__dict__["name"] = name
|
|
650
|
+
__props__.__dict__["single_sign_on_enabled"] = single_sign_on_enabled
|
|
612
651
|
__props__.__dict__["stop_on_disconnect_grace_period_minutes"] = stop_on_disconnect_grace_period_minutes
|
|
613
652
|
__props__.__dict__["tags"] = tags
|
|
614
653
|
return ProjectPool(resource_name, opts=opts, __props__=__props__)
|
|
@@ -671,6 +710,14 @@ class ProjectPool(pulumi.CustomResource):
|
|
|
671
710
|
"""
|
|
672
711
|
return pulumi.get(self, "name")
|
|
673
712
|
|
|
713
|
+
@_builtins.property
|
|
714
|
+
@pulumi.getter(name="singleSignOnEnabled")
|
|
715
|
+
def single_sign_on_enabled(self) -> pulumi.Output[Optional[_builtins.bool]]:
|
|
716
|
+
"""
|
|
717
|
+
Specifies whether Dev Boxes in the Pool will have SSO enabled or disabled. Defaults to `false`.
|
|
718
|
+
"""
|
|
719
|
+
return pulumi.get(self, "single_sign_on_enabled")
|
|
720
|
+
|
|
674
721
|
@_builtins.property
|
|
675
722
|
@pulumi.getter(name="stopOnDisconnectGracePeriodMinutes")
|
|
676
723
|
def stop_on_disconnect_grace_period_minutes(self) -> pulumi.Output[Optional[_builtins.int]]:
|
pulumi_azure/eventgrid/domain.py
CHANGED
|
@@ -543,7 +543,7 @@ class Domain(pulumi.CustomResource):
|
|
|
543
543
|
<!-- This section is generated, changes will be overwritten -->
|
|
544
544
|
This resource uses the following Azure API Providers:
|
|
545
545
|
|
|
546
|
-
* `Microsoft.EventGrid` -
|
|
546
|
+
* `Microsoft.EventGrid` - 2025-02-15
|
|
547
547
|
|
|
548
548
|
## Import
|
|
549
549
|
|
|
@@ -601,7 +601,7 @@ class Domain(pulumi.CustomResource):
|
|
|
601
601
|
<!-- This section is generated, changes will be overwritten -->
|
|
602
602
|
This resource uses the following Azure API Providers:
|
|
603
603
|
|
|
604
|
-
* `Microsoft.EventGrid` -
|
|
604
|
+
* `Microsoft.EventGrid` - 2025-02-15
|
|
605
605
|
|
|
606
606
|
## Import
|
|
607
607
|
|
|
@@ -166,7 +166,7 @@ class DomainTopic(pulumi.CustomResource):
|
|
|
166
166
|
<!-- This section is generated, changes will be overwritten -->
|
|
167
167
|
This resource uses the following Azure API Providers:
|
|
168
168
|
|
|
169
|
-
* `Microsoft.EventGrid` -
|
|
169
|
+
* `Microsoft.EventGrid` - 2025-02-15
|
|
170
170
|
|
|
171
171
|
## Import
|
|
172
172
|
|
|
@@ -218,7 +218,7 @@ class DomainTopic(pulumi.CustomResource):
|
|
|
218
218
|
<!-- This section is generated, changes will be overwritten -->
|
|
219
219
|
This resource uses the following Azure API Providers:
|
|
220
220
|
|
|
221
|
-
* `Microsoft.EventGrid` -
|
|
221
|
+
* `Microsoft.EventGrid` - 2025-02-15
|
|
222
222
|
|
|
223
223
|
## Import
|
|
224
224
|
|
|
@@ -787,7 +787,7 @@ class EventSubscription(pulumi.CustomResource):
|
|
|
787
787
|
<!-- This section is generated, changes will be overwritten -->
|
|
788
788
|
This resource uses the following Azure API Providers:
|
|
789
789
|
|
|
790
|
-
* `Microsoft.EventGrid` -
|
|
790
|
+
* `Microsoft.EventGrid` - 2025-02-15
|
|
791
791
|
|
|
792
792
|
## Import
|
|
793
793
|
|
|
@@ -869,7 +869,7 @@ class EventSubscription(pulumi.CustomResource):
|
|
|
869
869
|
<!-- This section is generated, changes will be overwritten -->
|
|
870
870
|
This resource uses the following Azure API Providers:
|
|
871
871
|
|
|
872
|
-
* `Microsoft.EventGrid` -
|
|
872
|
+
* `Microsoft.EventGrid` - 2025-02-15
|
|
873
873
|
|
|
874
874
|
## Import
|
|
875
875
|
|
|
@@ -222,7 +222,7 @@ def get_domain(name: Optional[_builtins.str] = None,
|
|
|
222
222
|
<!-- This section is generated, changes will be overwritten -->
|
|
223
223
|
This data source uses the following Azure API Providers:
|
|
224
224
|
|
|
225
|
-
* `Microsoft.EventGrid` -
|
|
225
|
+
* `Microsoft.EventGrid` - 2025-02-15
|
|
226
226
|
|
|
227
227
|
|
|
228
228
|
:param _builtins.str name: The name of the EventGrid Domain resource.
|
|
@@ -271,7 +271,7 @@ def get_domain_output(name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
|
271
271
|
<!-- This section is generated, changes will be overwritten -->
|
|
272
272
|
This data source uses the following Azure API Providers:
|
|
273
273
|
|
|
274
|
-
* `Microsoft.EventGrid` -
|
|
274
|
+
* `Microsoft.EventGrid` - 2025-02-15
|
|
275
275
|
|
|
276
276
|
|
|
277
277
|
:param _builtins.str name: The name of the EventGrid Domain resource.
|
|
@@ -101,7 +101,7 @@ def get_domain_topic(domain_name: Optional[_builtins.str] = None,
|
|
|
101
101
|
<!-- This section is generated, changes will be overwritten -->
|
|
102
102
|
This data source uses the following Azure API Providers:
|
|
103
103
|
|
|
104
|
-
* `Microsoft.EventGrid` -
|
|
104
|
+
* `Microsoft.EventGrid` - 2025-02-15
|
|
105
105
|
|
|
106
106
|
|
|
107
107
|
:param _builtins.str domain_name: The name of the EventGrid Domain Topic domain.
|
|
@@ -142,7 +142,7 @@ def get_domain_topic_output(domain_name: Optional[pulumi.Input[_builtins.str]] =
|
|
|
142
142
|
<!-- This section is generated, changes will be overwritten -->
|
|
143
143
|
This data source uses the following Azure API Providers:
|
|
144
144
|
|
|
145
|
-
* `Microsoft.EventGrid` -
|
|
145
|
+
* `Microsoft.EventGrid` - 2025-02-15
|
|
146
146
|
|
|
147
147
|
|
|
148
148
|
:param _builtins.str domain_name: The name of the EventGrid Domain Topic domain.
|
|
@@ -186,7 +186,7 @@ def get_partner_namespace(name: Optional[_builtins.str] = None,
|
|
|
186
186
|
<!-- This section is generated, changes will be overwritten -->
|
|
187
187
|
This data source uses the following Azure API Providers:
|
|
188
188
|
|
|
189
|
-
* `Microsoft.EventGrid` -
|
|
189
|
+
* `Microsoft.EventGrid` - 2025-02-15
|
|
190
190
|
|
|
191
191
|
|
|
192
192
|
:param _builtins.str name: The name of the Event Grid Partner Namespace resource.
|
|
@@ -232,7 +232,7 @@ def get_partner_namespace_output(name: Optional[pulumi.Input[_builtins.str]] = N
|
|
|
232
232
|
<!-- This section is generated, changes will be overwritten -->
|
|
233
233
|
This data source uses the following Azure API Providers:
|
|
234
234
|
|
|
235
|
-
* `Microsoft.EventGrid` -
|
|
235
|
+
* `Microsoft.EventGrid` - 2025-02-15
|
|
236
236
|
|
|
237
237
|
|
|
238
238
|
:param _builtins.str name: The name of the Event Grid Partner Namespace resource.
|
|
@@ -113,7 +113,7 @@ def get_partner_registration(name: Optional[_builtins.str] = None,
|
|
|
113
113
|
<!-- This section is generated, changes will be overwritten -->
|
|
114
114
|
This data source uses the following Azure API Providers:
|
|
115
115
|
|
|
116
|
-
* `Microsoft.EventGrid` -
|
|
116
|
+
* `Microsoft.EventGrid` - 2025-02-15
|
|
117
117
|
|
|
118
118
|
|
|
119
119
|
:param _builtins.str name: The name of the EventGrid Partner Registration resource.
|
|
@@ -153,7 +153,7 @@ def get_partner_registration_output(name: Optional[pulumi.Input[_builtins.str]]
|
|
|
153
153
|
<!-- This section is generated, changes will be overwritten -->
|
|
154
154
|
This data source uses the following Azure API Providers:
|
|
155
155
|
|
|
156
|
-
* `Microsoft.EventGrid` -
|
|
156
|
+
* `Microsoft.EventGrid` - 2025-02-15
|
|
157
157
|
|
|
158
158
|
|
|
159
159
|
:param _builtins.str name: The name of the EventGrid Partner Registration resource.
|