pulumi-azure 6.27.0a1758868424__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.0a1758868424.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/METADATA +1 -1
- {pulumi_azure-6.27.0a1758868424.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/RECORD +169 -162
- {pulumi_azure-6.27.0a1758868424.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/WHEEL +0 -0
- {pulumi_azure-6.27.0a1758868424.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/top_level.txt +0 -0
|
@@ -27,7 +27,7 @@ class GetSystemTopicResult:
|
|
|
27
27
|
"""
|
|
28
28
|
A collection of values returned by getSystemTopic.
|
|
29
29
|
"""
|
|
30
|
-
def __init__(__self__, id=None, identities=None, location=None, metric_arm_resource_id=None, name=None, resource_group_name=None, source_arm_resource_id=None, tags=None, topic_type=None):
|
|
30
|
+
def __init__(__self__, id=None, identities=None, location=None, metric_arm_resource_id=None, metric_resource_id=None, name=None, resource_group_name=None, source_arm_resource_id=None, source_resource_id=None, tags=None, topic_type=None):
|
|
31
31
|
if id and not isinstance(id, str):
|
|
32
32
|
raise TypeError("Expected argument 'id' to be a str")
|
|
33
33
|
pulumi.set(__self__, "id", id)
|
|
@@ -40,6 +40,9 @@ class GetSystemTopicResult:
|
|
|
40
40
|
if metric_arm_resource_id and not isinstance(metric_arm_resource_id, str):
|
|
41
41
|
raise TypeError("Expected argument 'metric_arm_resource_id' to be a str")
|
|
42
42
|
pulumi.set(__self__, "metric_arm_resource_id", metric_arm_resource_id)
|
|
43
|
+
if metric_resource_id and not isinstance(metric_resource_id, str):
|
|
44
|
+
raise TypeError("Expected argument 'metric_resource_id' to be a str")
|
|
45
|
+
pulumi.set(__self__, "metric_resource_id", metric_resource_id)
|
|
43
46
|
if name and not isinstance(name, str):
|
|
44
47
|
raise TypeError("Expected argument 'name' to be a str")
|
|
45
48
|
pulumi.set(__self__, "name", name)
|
|
@@ -49,6 +52,9 @@ class GetSystemTopicResult:
|
|
|
49
52
|
if source_arm_resource_id and not isinstance(source_arm_resource_id, str):
|
|
50
53
|
raise TypeError("Expected argument 'source_arm_resource_id' to be a str")
|
|
51
54
|
pulumi.set(__self__, "source_arm_resource_id", source_arm_resource_id)
|
|
55
|
+
if source_resource_id and not isinstance(source_resource_id, str):
|
|
56
|
+
raise TypeError("Expected argument 'source_resource_id' to be a str")
|
|
57
|
+
pulumi.set(__self__, "source_resource_id", source_resource_id)
|
|
52
58
|
if tags and not isinstance(tags, dict):
|
|
53
59
|
raise TypeError("Expected argument 'tags' to be a dict")
|
|
54
60
|
pulumi.set(__self__, "tags", tags)
|
|
@@ -80,10 +86,15 @@ class GetSystemTopicResult:
|
|
|
80
86
|
@_builtins.property
|
|
81
87
|
@pulumi.getter(name="metricArmResourceId")
|
|
82
88
|
def metric_arm_resource_id(self) -> _builtins.str:
|
|
89
|
+
return pulumi.get(self, "metric_arm_resource_id")
|
|
90
|
+
|
|
91
|
+
@_builtins.property
|
|
92
|
+
@pulumi.getter(name="metricResourceId")
|
|
93
|
+
def metric_resource_id(self) -> _builtins.str:
|
|
83
94
|
"""
|
|
84
|
-
The Metric
|
|
95
|
+
The Metric Resource ID of the Event Grid System Topic.
|
|
85
96
|
"""
|
|
86
|
-
return pulumi.get(self, "
|
|
97
|
+
return pulumi.get(self, "metric_resource_id")
|
|
87
98
|
|
|
88
99
|
@_builtins.property
|
|
89
100
|
@pulumi.getter
|
|
@@ -98,10 +109,15 @@ class GetSystemTopicResult:
|
|
|
98
109
|
@_builtins.property
|
|
99
110
|
@pulumi.getter(name="sourceArmResourceId")
|
|
100
111
|
def source_arm_resource_id(self) -> _builtins.str:
|
|
112
|
+
return pulumi.get(self, "source_arm_resource_id")
|
|
113
|
+
|
|
114
|
+
@_builtins.property
|
|
115
|
+
@pulumi.getter(name="sourceResourceId")
|
|
116
|
+
def source_resource_id(self) -> _builtins.str:
|
|
101
117
|
"""
|
|
102
118
|
The ID of the Event Grid System Topic ARM Source.
|
|
103
119
|
"""
|
|
104
|
-
return pulumi.get(self, "
|
|
120
|
+
return pulumi.get(self, "source_resource_id")
|
|
105
121
|
|
|
106
122
|
@_builtins.property
|
|
107
123
|
@pulumi.getter
|
|
@@ -130,9 +146,11 @@ class AwaitableGetSystemTopicResult(GetSystemTopicResult):
|
|
|
130
146
|
identities=self.identities,
|
|
131
147
|
location=self.location,
|
|
132
148
|
metric_arm_resource_id=self.metric_arm_resource_id,
|
|
149
|
+
metric_resource_id=self.metric_resource_id,
|
|
133
150
|
name=self.name,
|
|
134
151
|
resource_group_name=self.resource_group_name,
|
|
135
152
|
source_arm_resource_id=self.source_arm_resource_id,
|
|
153
|
+
source_resource_id=self.source_resource_id,
|
|
136
154
|
tags=self.tags,
|
|
137
155
|
topic_type=self.topic_type)
|
|
138
156
|
|
|
@@ -158,7 +176,7 @@ def get_system_topic(name: Optional[_builtins.str] = None,
|
|
|
158
176
|
<!-- This section is generated, changes will be overwritten -->
|
|
159
177
|
This data source uses the following Azure API Providers:
|
|
160
178
|
|
|
161
|
-
* `Microsoft.EventGrid` -
|
|
179
|
+
* `Microsoft.EventGrid` - 2025-02-15
|
|
162
180
|
|
|
163
181
|
|
|
164
182
|
:param _builtins.str name: The name of the Event Grid System Topic resource.
|
|
@@ -175,9 +193,11 @@ def get_system_topic(name: Optional[_builtins.str] = None,
|
|
|
175
193
|
identities=pulumi.get(__ret__, 'identities'),
|
|
176
194
|
location=pulumi.get(__ret__, 'location'),
|
|
177
195
|
metric_arm_resource_id=pulumi.get(__ret__, 'metric_arm_resource_id'),
|
|
196
|
+
metric_resource_id=pulumi.get(__ret__, 'metric_resource_id'),
|
|
178
197
|
name=pulumi.get(__ret__, 'name'),
|
|
179
198
|
resource_group_name=pulumi.get(__ret__, 'resource_group_name'),
|
|
180
199
|
source_arm_resource_id=pulumi.get(__ret__, 'source_arm_resource_id'),
|
|
200
|
+
source_resource_id=pulumi.get(__ret__, 'source_resource_id'),
|
|
181
201
|
tags=pulumi.get(__ret__, 'tags'),
|
|
182
202
|
topic_type=pulumi.get(__ret__, 'topic_type'))
|
|
183
203
|
def get_system_topic_output(name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -201,7 +221,7 @@ def get_system_topic_output(name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
|
201
221
|
<!-- This section is generated, changes will be overwritten -->
|
|
202
222
|
This data source uses the following Azure API Providers:
|
|
203
223
|
|
|
204
|
-
* `Microsoft.EventGrid` -
|
|
224
|
+
* `Microsoft.EventGrid` - 2025-02-15
|
|
205
225
|
|
|
206
226
|
|
|
207
227
|
:param _builtins.str name: The name of the Event Grid System Topic resource.
|
|
@@ -217,8 +237,10 @@ def get_system_topic_output(name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
|
217
237
|
identities=pulumi.get(__response__, 'identities'),
|
|
218
238
|
location=pulumi.get(__response__, 'location'),
|
|
219
239
|
metric_arm_resource_id=pulumi.get(__response__, 'metric_arm_resource_id'),
|
|
240
|
+
metric_resource_id=pulumi.get(__response__, 'metric_resource_id'),
|
|
220
241
|
name=pulumi.get(__response__, 'name'),
|
|
221
242
|
resource_group_name=pulumi.get(__response__, 'resource_group_name'),
|
|
222
243
|
source_arm_resource_id=pulumi.get(__response__, 'source_arm_resource_id'),
|
|
244
|
+
source_resource_id=pulumi.get(__response__, 'source_resource_id'),
|
|
223
245
|
tags=pulumi.get(__response__, 'tags'),
|
|
224
246
|
topic_type=pulumi.get(__response__, 'topic_type')))
|
|
@@ -142,7 +142,7 @@ def get_topic(name: Optional[_builtins.str] = None,
|
|
|
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 name: The name of the EventGrid Topic resource.
|
|
@@ -184,7 +184,7 @@ def get_topic_output(name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
|
184
184
|
<!-- This section is generated, changes will be overwritten -->
|
|
185
185
|
This data source uses the following Azure API Providers:
|
|
186
186
|
|
|
187
|
-
* `Microsoft.EventGrid` -
|
|
187
|
+
* `Microsoft.EventGrid` - 2025-02-15
|
|
188
188
|
|
|
189
189
|
|
|
190
190
|
:param _builtins.str name: The name of the EventGrid Topic resource.
|
|
@@ -202,7 +202,7 @@ class PartnerConfiguration(pulumi.CustomResource):
|
|
|
202
202
|
<!-- This section is generated, changes will be overwritten -->
|
|
203
203
|
This resource uses the following Azure API Providers:
|
|
204
204
|
|
|
205
|
-
* `Microsoft.EventGrid` -
|
|
205
|
+
* `Microsoft.EventGrid` - 2025-02-15
|
|
206
206
|
|
|
207
207
|
## Import
|
|
208
208
|
|
|
@@ -255,7 +255,7 @@ class PartnerConfiguration(pulumi.CustomResource):
|
|
|
255
255
|
<!-- This section is generated, changes will be overwritten -->
|
|
256
256
|
This resource uses the following Azure API Providers:
|
|
257
257
|
|
|
258
|
-
* `Microsoft.EventGrid` -
|
|
258
|
+
* `Microsoft.EventGrid` - 2025-02-15
|
|
259
259
|
|
|
260
260
|
## Import
|
|
261
261
|
|
|
@@ -379,7 +379,7 @@ class PartnerNamespace(pulumi.CustomResource):
|
|
|
379
379
|
<!-- This section is generated, changes will be overwritten -->
|
|
380
380
|
This resource uses the following Azure API Providers:
|
|
381
381
|
|
|
382
|
-
* `Microsoft.EventGrid` -
|
|
382
|
+
* `Microsoft.EventGrid` - 2025-02-15
|
|
383
383
|
|
|
384
384
|
## Import
|
|
385
385
|
|
|
@@ -434,7 +434,7 @@ class PartnerNamespace(pulumi.CustomResource):
|
|
|
434
434
|
<!-- This section is generated, changes will be overwritten -->
|
|
435
435
|
This resource uses the following Azure API Providers:
|
|
436
436
|
|
|
437
|
-
* `Microsoft.EventGrid` -
|
|
437
|
+
* `Microsoft.EventGrid` - 2025-02-15
|
|
438
438
|
|
|
439
439
|
## Import
|
|
440
440
|
|
|
@@ -175,7 +175,7 @@ class PartnerRegistration(pulumi.CustomResource):
|
|
|
175
175
|
<!-- This section is generated, changes will be overwritten -->
|
|
176
176
|
This resource uses the following Azure API Providers:
|
|
177
177
|
|
|
178
|
-
* `Microsoft.EventGrid` -
|
|
178
|
+
* `Microsoft.EventGrid` - 2025-02-15
|
|
179
179
|
|
|
180
180
|
## Import
|
|
181
181
|
|
|
@@ -219,7 +219,7 @@ class PartnerRegistration(pulumi.CustomResource):
|
|
|
219
219
|
<!-- This section is generated, changes will be overwritten -->
|
|
220
220
|
This resource uses the following Azure API Providers:
|
|
221
221
|
|
|
222
|
-
* `Microsoft.EventGrid` -
|
|
222
|
+
* `Microsoft.EventGrid` - 2025-02-15
|
|
223
223
|
|
|
224
224
|
## Import
|
|
225
225
|
|
|
@@ -22,16 +22,16 @@ __all__ = ['SystemTopicArgs', 'SystemTopic']
|
|
|
22
22
|
class SystemTopicArgs:
|
|
23
23
|
def __init__(__self__, *,
|
|
24
24
|
resource_group_name: pulumi.Input[_builtins.str],
|
|
25
|
-
source_arm_resource_id: pulumi.Input[_builtins.str],
|
|
26
25
|
topic_type: pulumi.Input[_builtins.str],
|
|
27
26
|
identity: Optional[pulumi.Input['SystemTopicIdentityArgs']] = None,
|
|
28
27
|
location: Optional[pulumi.Input[_builtins.str]] = None,
|
|
29
28
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
29
|
+
source_arm_resource_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
30
|
+
source_resource_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
30
31
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None):
|
|
31
32
|
"""
|
|
32
33
|
The set of arguments for constructing a SystemTopic resource.
|
|
33
34
|
:param pulumi.Input[_builtins.str] resource_group_name: The name of the Resource Group where the Event Grid System Topic should exist. Changing this forces a new Event Grid System Topic to be created.
|
|
34
|
-
:param pulumi.Input[_builtins.str] source_arm_resource_id: The ID of the Event Grid System Topic ARM Source. Changing this forces a new Event Grid System Topic to be created.
|
|
35
35
|
:param pulumi.Input[_builtins.str] topic_type: The Topic Type of the Event Grid System Topic. The topic type is validated by Azure and there may be additional topic types beyond the following: `Microsoft.AppConfiguration.ConfigurationStores`, `Microsoft.Communication.CommunicationServices`, `Microsoft.ContainerRegistry.Registries`, `Microsoft.Devices.IoTHubs`, `Microsoft.EventGrid.Domains`, `Microsoft.EventGrid.Topics`, `Microsoft.Eventhub.Namespaces`, `Microsoft.KeyVault.vaults`, `Microsoft.MachineLearningServices.Workspaces`, `Microsoft.Maps.Accounts`, `Microsoft.Media.MediaServices`, `Microsoft.Resources.ResourceGroups`, `Microsoft.Resources.Subscriptions`, `Microsoft.ServiceBus.Namespaces`, `Microsoft.SignalRService.SignalR`, `Microsoft.Storage.StorageAccounts`, `Microsoft.Web.ServerFarms` and `Microsoft.Web.Sites`. Changing this forces a new Event Grid System Topic to be created.
|
|
36
36
|
|
|
37
37
|
> **Note:** Some `topic_type`s (e.g. **Microsoft.Resources.Subscriptions**) requires location to be set to `Global` instead of a real location like `West US`.
|
|
@@ -40,10 +40,10 @@ class SystemTopicArgs:
|
|
|
40
40
|
:param pulumi.Input['SystemTopicIdentityArgs'] identity: An `identity` block as defined below.
|
|
41
41
|
:param pulumi.Input[_builtins.str] location: The Azure Region where the Event Grid System Topic should exist. Changing this forces a new Event Grid System Topic to be created.
|
|
42
42
|
:param pulumi.Input[_builtins.str] name: The name which should be used for this Event Grid System Topic. Changing this forces a new Event Grid System Topic to be created.
|
|
43
|
+
:param pulumi.Input[_builtins.str] source_resource_id: The ID of the Event Grid System Topic ARM Source. Changing this forces a new Event Grid System Topic to be created.
|
|
43
44
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: A mapping of tags which should be assigned to the Event Grid System Topic.
|
|
44
45
|
"""
|
|
45
46
|
pulumi.set(__self__, "resource_group_name", resource_group_name)
|
|
46
|
-
pulumi.set(__self__, "source_arm_resource_id", source_arm_resource_id)
|
|
47
47
|
pulumi.set(__self__, "topic_type", topic_type)
|
|
48
48
|
if identity is not None:
|
|
49
49
|
pulumi.set(__self__, "identity", identity)
|
|
@@ -51,6 +51,13 @@ class SystemTopicArgs:
|
|
|
51
51
|
pulumi.set(__self__, "location", location)
|
|
52
52
|
if name is not None:
|
|
53
53
|
pulumi.set(__self__, "name", name)
|
|
54
|
+
if source_arm_resource_id is not None:
|
|
55
|
+
warnings.warn("""the `source_arm_resource_id` property has been deprecated in favour of `source_resource_id` and will be removed in version 5.0 of the Provider.""", DeprecationWarning)
|
|
56
|
+
pulumi.log.warn("""source_arm_resource_id is deprecated: the `source_arm_resource_id` property has been deprecated in favour of `source_resource_id` and will be removed in version 5.0 of the Provider.""")
|
|
57
|
+
if source_arm_resource_id is not None:
|
|
58
|
+
pulumi.set(__self__, "source_arm_resource_id", source_arm_resource_id)
|
|
59
|
+
if source_resource_id is not None:
|
|
60
|
+
pulumi.set(__self__, "source_resource_id", source_resource_id)
|
|
54
61
|
if tags is not None:
|
|
55
62
|
pulumi.set(__self__, "tags", tags)
|
|
56
63
|
|
|
@@ -66,18 +73,6 @@ class SystemTopicArgs:
|
|
|
66
73
|
def resource_group_name(self, value: pulumi.Input[_builtins.str]):
|
|
67
74
|
pulumi.set(self, "resource_group_name", value)
|
|
68
75
|
|
|
69
|
-
@_builtins.property
|
|
70
|
-
@pulumi.getter(name="sourceArmResourceId")
|
|
71
|
-
def source_arm_resource_id(self) -> pulumi.Input[_builtins.str]:
|
|
72
|
-
"""
|
|
73
|
-
The ID of the Event Grid System Topic ARM Source. Changing this forces a new Event Grid System Topic to be created.
|
|
74
|
-
"""
|
|
75
|
-
return pulumi.get(self, "source_arm_resource_id")
|
|
76
|
-
|
|
77
|
-
@source_arm_resource_id.setter
|
|
78
|
-
def source_arm_resource_id(self, value: pulumi.Input[_builtins.str]):
|
|
79
|
-
pulumi.set(self, "source_arm_resource_id", value)
|
|
80
|
-
|
|
81
76
|
@_builtins.property
|
|
82
77
|
@pulumi.getter(name="topicType")
|
|
83
78
|
def topic_type(self) -> pulumi.Input[_builtins.str]:
|
|
@@ -130,6 +125,28 @@ class SystemTopicArgs:
|
|
|
130
125
|
def name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
131
126
|
pulumi.set(self, "name", value)
|
|
132
127
|
|
|
128
|
+
@_builtins.property
|
|
129
|
+
@pulumi.getter(name="sourceArmResourceId")
|
|
130
|
+
@_utilities.deprecated("""the `source_arm_resource_id` property has been deprecated in favour of `source_resource_id` and will be removed in version 5.0 of the Provider.""")
|
|
131
|
+
def source_arm_resource_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
132
|
+
return pulumi.get(self, "source_arm_resource_id")
|
|
133
|
+
|
|
134
|
+
@source_arm_resource_id.setter
|
|
135
|
+
def source_arm_resource_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
136
|
+
pulumi.set(self, "source_arm_resource_id", value)
|
|
137
|
+
|
|
138
|
+
@_builtins.property
|
|
139
|
+
@pulumi.getter(name="sourceResourceId")
|
|
140
|
+
def source_resource_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
141
|
+
"""
|
|
142
|
+
The ID of the Event Grid System Topic ARM Source. Changing this forces a new Event Grid System Topic to be created.
|
|
143
|
+
"""
|
|
144
|
+
return pulumi.get(self, "source_resource_id")
|
|
145
|
+
|
|
146
|
+
@source_resource_id.setter
|
|
147
|
+
def source_resource_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
148
|
+
pulumi.set(self, "source_resource_id", value)
|
|
149
|
+
|
|
133
150
|
@_builtins.property
|
|
134
151
|
@pulumi.getter
|
|
135
152
|
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
|
@@ -149,19 +166,21 @@ class _SystemTopicState:
|
|
|
149
166
|
identity: Optional[pulumi.Input['SystemTopicIdentityArgs']] = None,
|
|
150
167
|
location: Optional[pulumi.Input[_builtins.str]] = None,
|
|
151
168
|
metric_arm_resource_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
169
|
+
metric_resource_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
152
170
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
153
171
|
resource_group_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
154
172
|
source_arm_resource_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
173
|
+
source_resource_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
155
174
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
156
175
|
topic_type: Optional[pulumi.Input[_builtins.str]] = None):
|
|
157
176
|
"""
|
|
158
177
|
Input properties used for looking up and filtering SystemTopic resources.
|
|
159
178
|
:param pulumi.Input['SystemTopicIdentityArgs'] identity: An `identity` block as defined below.
|
|
160
179
|
:param pulumi.Input[_builtins.str] location: The Azure Region where the Event Grid System Topic should exist. Changing this forces a new Event Grid System Topic to be created.
|
|
161
|
-
:param pulumi.Input[_builtins.str]
|
|
180
|
+
:param pulumi.Input[_builtins.str] metric_resource_id: The Metric Resource ID of the Event Grid System Topic.
|
|
162
181
|
:param pulumi.Input[_builtins.str] name: The name which should be used for this Event Grid System Topic. Changing this forces a new Event Grid System Topic to be created.
|
|
163
182
|
:param pulumi.Input[_builtins.str] resource_group_name: The name of the Resource Group where the Event Grid System Topic should exist. Changing this forces a new Event Grid System Topic to be created.
|
|
164
|
-
:param pulumi.Input[_builtins.str]
|
|
183
|
+
:param pulumi.Input[_builtins.str] source_resource_id: The ID of the Event Grid System Topic ARM Source. Changing this forces a new Event Grid System Topic to be created.
|
|
165
184
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: A mapping of tags which should be assigned to the Event Grid System Topic.
|
|
166
185
|
:param pulumi.Input[_builtins.str] topic_type: The Topic Type of the Event Grid System Topic. The topic type is validated by Azure and there may be additional topic types beyond the following: `Microsoft.AppConfiguration.ConfigurationStores`, `Microsoft.Communication.CommunicationServices`, `Microsoft.ContainerRegistry.Registries`, `Microsoft.Devices.IoTHubs`, `Microsoft.EventGrid.Domains`, `Microsoft.EventGrid.Topics`, `Microsoft.Eventhub.Namespaces`, `Microsoft.KeyVault.vaults`, `Microsoft.MachineLearningServices.Workspaces`, `Microsoft.Maps.Accounts`, `Microsoft.Media.MediaServices`, `Microsoft.Resources.ResourceGroups`, `Microsoft.Resources.Subscriptions`, `Microsoft.ServiceBus.Namespaces`, `Microsoft.SignalRService.SignalR`, `Microsoft.Storage.StorageAccounts`, `Microsoft.Web.ServerFarms` and `Microsoft.Web.Sites`. Changing this forces a new Event Grid System Topic to be created.
|
|
167
186
|
|
|
@@ -175,12 +194,19 @@ class _SystemTopicState:
|
|
|
175
194
|
pulumi.set(__self__, "location", location)
|
|
176
195
|
if metric_arm_resource_id is not None:
|
|
177
196
|
pulumi.set(__self__, "metric_arm_resource_id", metric_arm_resource_id)
|
|
197
|
+
if metric_resource_id is not None:
|
|
198
|
+
pulumi.set(__self__, "metric_resource_id", metric_resource_id)
|
|
178
199
|
if name is not None:
|
|
179
200
|
pulumi.set(__self__, "name", name)
|
|
180
201
|
if resource_group_name is not None:
|
|
181
202
|
pulumi.set(__self__, "resource_group_name", resource_group_name)
|
|
203
|
+
if source_arm_resource_id is not None:
|
|
204
|
+
warnings.warn("""the `source_arm_resource_id` property has been deprecated in favour of `source_resource_id` and will be removed in version 5.0 of the Provider.""", DeprecationWarning)
|
|
205
|
+
pulumi.log.warn("""source_arm_resource_id is deprecated: the `source_arm_resource_id` property has been deprecated in favour of `source_resource_id` and will be removed in version 5.0 of the Provider.""")
|
|
182
206
|
if source_arm_resource_id is not None:
|
|
183
207
|
pulumi.set(__self__, "source_arm_resource_id", source_arm_resource_id)
|
|
208
|
+
if source_resource_id is not None:
|
|
209
|
+
pulumi.set(__self__, "source_resource_id", source_resource_id)
|
|
184
210
|
if tags is not None:
|
|
185
211
|
pulumi.set(__self__, "tags", tags)
|
|
186
212
|
if topic_type is not None:
|
|
@@ -213,15 +239,24 @@ class _SystemTopicState:
|
|
|
213
239
|
@_builtins.property
|
|
214
240
|
@pulumi.getter(name="metricArmResourceId")
|
|
215
241
|
def metric_arm_resource_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
216
|
-
"""
|
|
217
|
-
The Metric ARM Resource ID of the Event Grid System Topic.
|
|
218
|
-
"""
|
|
219
242
|
return pulumi.get(self, "metric_arm_resource_id")
|
|
220
243
|
|
|
221
244
|
@metric_arm_resource_id.setter
|
|
222
245
|
def metric_arm_resource_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
223
246
|
pulumi.set(self, "metric_arm_resource_id", value)
|
|
224
247
|
|
|
248
|
+
@_builtins.property
|
|
249
|
+
@pulumi.getter(name="metricResourceId")
|
|
250
|
+
def metric_resource_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
251
|
+
"""
|
|
252
|
+
The Metric Resource ID of the Event Grid System Topic.
|
|
253
|
+
"""
|
|
254
|
+
return pulumi.get(self, "metric_resource_id")
|
|
255
|
+
|
|
256
|
+
@metric_resource_id.setter
|
|
257
|
+
def metric_resource_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
258
|
+
pulumi.set(self, "metric_resource_id", value)
|
|
259
|
+
|
|
225
260
|
@_builtins.property
|
|
226
261
|
@pulumi.getter
|
|
227
262
|
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
@@ -248,16 +283,26 @@ class _SystemTopicState:
|
|
|
248
283
|
|
|
249
284
|
@_builtins.property
|
|
250
285
|
@pulumi.getter(name="sourceArmResourceId")
|
|
286
|
+
@_utilities.deprecated("""the `source_arm_resource_id` property has been deprecated in favour of `source_resource_id` and will be removed in version 5.0 of the Provider.""")
|
|
251
287
|
def source_arm_resource_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
252
|
-
"""
|
|
253
|
-
The ID of the Event Grid System Topic ARM Source. Changing this forces a new Event Grid System Topic to be created.
|
|
254
|
-
"""
|
|
255
288
|
return pulumi.get(self, "source_arm_resource_id")
|
|
256
289
|
|
|
257
290
|
@source_arm_resource_id.setter
|
|
258
291
|
def source_arm_resource_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
259
292
|
pulumi.set(self, "source_arm_resource_id", value)
|
|
260
293
|
|
|
294
|
+
@_builtins.property
|
|
295
|
+
@pulumi.getter(name="sourceResourceId")
|
|
296
|
+
def source_resource_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
297
|
+
"""
|
|
298
|
+
The ID of the Event Grid System Topic ARM Source. Changing this forces a new Event Grid System Topic to be created.
|
|
299
|
+
"""
|
|
300
|
+
return pulumi.get(self, "source_resource_id")
|
|
301
|
+
|
|
302
|
+
@source_resource_id.setter
|
|
303
|
+
def source_resource_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
304
|
+
pulumi.set(self, "source_resource_id", value)
|
|
305
|
+
|
|
261
306
|
@_builtins.property
|
|
262
307
|
@pulumi.getter
|
|
263
308
|
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
|
@@ -298,6 +343,7 @@ class SystemTopic(pulumi.CustomResource):
|
|
|
298
343
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
299
344
|
resource_group_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
300
345
|
source_arm_resource_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
346
|
+
source_resource_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
301
347
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
302
348
|
topic_type: Optional[pulumi.Input[_builtins.str]] = None,
|
|
303
349
|
__props__=None):
|
|
@@ -326,7 +372,7 @@ class SystemTopic(pulumi.CustomResource):
|
|
|
326
372
|
name="example-topic",
|
|
327
373
|
resource_group_name=example.name,
|
|
328
374
|
location=example.location,
|
|
329
|
-
|
|
375
|
+
source_resource_id=example_account.id,
|
|
330
376
|
topic_type="Microsoft.Storage.StorageAccounts")
|
|
331
377
|
```
|
|
332
378
|
|
|
@@ -335,7 +381,7 @@ class SystemTopic(pulumi.CustomResource):
|
|
|
335
381
|
<!-- This section is generated, changes will be overwritten -->
|
|
336
382
|
This resource uses the following Azure API Providers:
|
|
337
383
|
|
|
338
|
-
* `Microsoft.EventGrid` -
|
|
384
|
+
* `Microsoft.EventGrid` - 2025-02-15
|
|
339
385
|
|
|
340
386
|
## Import
|
|
341
387
|
|
|
@@ -351,7 +397,7 @@ class SystemTopic(pulumi.CustomResource):
|
|
|
351
397
|
:param pulumi.Input[_builtins.str] location: The Azure Region where the Event Grid System Topic should exist. Changing this forces a new Event Grid System Topic to be created.
|
|
352
398
|
:param pulumi.Input[_builtins.str] name: The name which should be used for this Event Grid System Topic. Changing this forces a new Event Grid System Topic to be created.
|
|
353
399
|
:param pulumi.Input[_builtins.str] resource_group_name: The name of the Resource Group where the Event Grid System Topic should exist. Changing this forces a new Event Grid System Topic to be created.
|
|
354
|
-
:param pulumi.Input[_builtins.str]
|
|
400
|
+
:param pulumi.Input[_builtins.str] source_resource_id: The ID of the Event Grid System Topic ARM Source. Changing this forces a new Event Grid System Topic to be created.
|
|
355
401
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: A mapping of tags which should be assigned to the Event Grid System Topic.
|
|
356
402
|
:param pulumi.Input[_builtins.str] topic_type: The Topic Type of the Event Grid System Topic. The topic type is validated by Azure and there may be additional topic types beyond the following: `Microsoft.AppConfiguration.ConfigurationStores`, `Microsoft.Communication.CommunicationServices`, `Microsoft.ContainerRegistry.Registries`, `Microsoft.Devices.IoTHubs`, `Microsoft.EventGrid.Domains`, `Microsoft.EventGrid.Topics`, `Microsoft.Eventhub.Namespaces`, `Microsoft.KeyVault.vaults`, `Microsoft.MachineLearningServices.Workspaces`, `Microsoft.Maps.Accounts`, `Microsoft.Media.MediaServices`, `Microsoft.Resources.ResourceGroups`, `Microsoft.Resources.Subscriptions`, `Microsoft.ServiceBus.Namespaces`, `Microsoft.SignalRService.SignalR`, `Microsoft.Storage.StorageAccounts`, `Microsoft.Web.ServerFarms` and `Microsoft.Web.Sites`. Changing this forces a new Event Grid System Topic to be created.
|
|
357
403
|
|
|
@@ -390,7 +436,7 @@ class SystemTopic(pulumi.CustomResource):
|
|
|
390
436
|
name="example-topic",
|
|
391
437
|
resource_group_name=example.name,
|
|
392
438
|
location=example.location,
|
|
393
|
-
|
|
439
|
+
source_resource_id=example_account.id,
|
|
394
440
|
topic_type="Microsoft.Storage.StorageAccounts")
|
|
395
441
|
```
|
|
396
442
|
|
|
@@ -399,7 +445,7 @@ class SystemTopic(pulumi.CustomResource):
|
|
|
399
445
|
<!-- This section is generated, changes will be overwritten -->
|
|
400
446
|
This resource uses the following Azure API Providers:
|
|
401
447
|
|
|
402
|
-
* `Microsoft.EventGrid` -
|
|
448
|
+
* `Microsoft.EventGrid` - 2025-02-15
|
|
403
449
|
|
|
404
450
|
## Import
|
|
405
451
|
|
|
@@ -429,6 +475,7 @@ class SystemTopic(pulumi.CustomResource):
|
|
|
429
475
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
430
476
|
resource_group_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
431
477
|
source_arm_resource_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
478
|
+
source_resource_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
432
479
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
433
480
|
topic_type: Optional[pulumi.Input[_builtins.str]] = None,
|
|
434
481
|
__props__=None):
|
|
@@ -446,14 +493,14 @@ class SystemTopic(pulumi.CustomResource):
|
|
|
446
493
|
if resource_group_name is None and not opts.urn:
|
|
447
494
|
raise TypeError("Missing required property 'resource_group_name'")
|
|
448
495
|
__props__.__dict__["resource_group_name"] = resource_group_name
|
|
449
|
-
if source_arm_resource_id is None and not opts.urn:
|
|
450
|
-
raise TypeError("Missing required property 'source_arm_resource_id'")
|
|
451
496
|
__props__.__dict__["source_arm_resource_id"] = source_arm_resource_id
|
|
497
|
+
__props__.__dict__["source_resource_id"] = source_resource_id
|
|
452
498
|
__props__.__dict__["tags"] = tags
|
|
453
499
|
if topic_type is None and not opts.urn:
|
|
454
500
|
raise TypeError("Missing required property 'topic_type'")
|
|
455
501
|
__props__.__dict__["topic_type"] = topic_type
|
|
456
502
|
__props__.__dict__["metric_arm_resource_id"] = None
|
|
503
|
+
__props__.__dict__["metric_resource_id"] = None
|
|
457
504
|
super(SystemTopic, __self__).__init__(
|
|
458
505
|
'azure:eventgrid/systemTopic:SystemTopic',
|
|
459
506
|
resource_name,
|
|
@@ -467,9 +514,11 @@ class SystemTopic(pulumi.CustomResource):
|
|
|
467
514
|
identity: Optional[pulumi.Input[Union['SystemTopicIdentityArgs', 'SystemTopicIdentityArgsDict']]] = None,
|
|
468
515
|
location: Optional[pulumi.Input[_builtins.str]] = None,
|
|
469
516
|
metric_arm_resource_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
517
|
+
metric_resource_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
470
518
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
471
519
|
resource_group_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
472
520
|
source_arm_resource_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
521
|
+
source_resource_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
473
522
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
474
523
|
topic_type: Optional[pulumi.Input[_builtins.str]] = None) -> 'SystemTopic':
|
|
475
524
|
"""
|
|
@@ -481,10 +530,10 @@ class SystemTopic(pulumi.CustomResource):
|
|
|
481
530
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
482
531
|
:param pulumi.Input[Union['SystemTopicIdentityArgs', 'SystemTopicIdentityArgsDict']] identity: An `identity` block as defined below.
|
|
483
532
|
:param pulumi.Input[_builtins.str] location: The Azure Region where the Event Grid System Topic should exist. Changing this forces a new Event Grid System Topic to be created.
|
|
484
|
-
:param pulumi.Input[_builtins.str]
|
|
533
|
+
:param pulumi.Input[_builtins.str] metric_resource_id: The Metric Resource ID of the Event Grid System Topic.
|
|
485
534
|
:param pulumi.Input[_builtins.str] name: The name which should be used for this Event Grid System Topic. Changing this forces a new Event Grid System Topic to be created.
|
|
486
535
|
:param pulumi.Input[_builtins.str] resource_group_name: The name of the Resource Group where the Event Grid System Topic should exist. Changing this forces a new Event Grid System Topic to be created.
|
|
487
|
-
:param pulumi.Input[_builtins.str]
|
|
536
|
+
:param pulumi.Input[_builtins.str] source_resource_id: The ID of the Event Grid System Topic ARM Source. Changing this forces a new Event Grid System Topic to be created.
|
|
488
537
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: A mapping of tags which should be assigned to the Event Grid System Topic.
|
|
489
538
|
:param pulumi.Input[_builtins.str] topic_type: The Topic Type of the Event Grid System Topic. The topic type is validated by Azure and there may be additional topic types beyond the following: `Microsoft.AppConfiguration.ConfigurationStores`, `Microsoft.Communication.CommunicationServices`, `Microsoft.ContainerRegistry.Registries`, `Microsoft.Devices.IoTHubs`, `Microsoft.EventGrid.Domains`, `Microsoft.EventGrid.Topics`, `Microsoft.Eventhub.Namespaces`, `Microsoft.KeyVault.vaults`, `Microsoft.MachineLearningServices.Workspaces`, `Microsoft.Maps.Accounts`, `Microsoft.Media.MediaServices`, `Microsoft.Resources.ResourceGroups`, `Microsoft.Resources.Subscriptions`, `Microsoft.ServiceBus.Namespaces`, `Microsoft.SignalRService.SignalR`, `Microsoft.Storage.StorageAccounts`, `Microsoft.Web.ServerFarms` and `Microsoft.Web.Sites`. Changing this forces a new Event Grid System Topic to be created.
|
|
490
539
|
|
|
@@ -499,9 +548,11 @@ class SystemTopic(pulumi.CustomResource):
|
|
|
499
548
|
__props__.__dict__["identity"] = identity
|
|
500
549
|
__props__.__dict__["location"] = location
|
|
501
550
|
__props__.__dict__["metric_arm_resource_id"] = metric_arm_resource_id
|
|
551
|
+
__props__.__dict__["metric_resource_id"] = metric_resource_id
|
|
502
552
|
__props__.__dict__["name"] = name
|
|
503
553
|
__props__.__dict__["resource_group_name"] = resource_group_name
|
|
504
554
|
__props__.__dict__["source_arm_resource_id"] = source_arm_resource_id
|
|
555
|
+
__props__.__dict__["source_resource_id"] = source_resource_id
|
|
505
556
|
__props__.__dict__["tags"] = tags
|
|
506
557
|
__props__.__dict__["topic_type"] = topic_type
|
|
507
558
|
return SystemTopic(resource_name, opts=opts, __props__=__props__)
|
|
@@ -525,10 +576,15 @@ class SystemTopic(pulumi.CustomResource):
|
|
|
525
576
|
@_builtins.property
|
|
526
577
|
@pulumi.getter(name="metricArmResourceId")
|
|
527
578
|
def metric_arm_resource_id(self) -> pulumi.Output[_builtins.str]:
|
|
579
|
+
return pulumi.get(self, "metric_arm_resource_id")
|
|
580
|
+
|
|
581
|
+
@_builtins.property
|
|
582
|
+
@pulumi.getter(name="metricResourceId")
|
|
583
|
+
def metric_resource_id(self) -> pulumi.Output[_builtins.str]:
|
|
528
584
|
"""
|
|
529
|
-
The Metric
|
|
585
|
+
The Metric Resource ID of the Event Grid System Topic.
|
|
530
586
|
"""
|
|
531
|
-
return pulumi.get(self, "
|
|
587
|
+
return pulumi.get(self, "metric_resource_id")
|
|
532
588
|
|
|
533
589
|
@_builtins.property
|
|
534
590
|
@pulumi.getter
|
|
@@ -548,11 +604,17 @@ class SystemTopic(pulumi.CustomResource):
|
|
|
548
604
|
|
|
549
605
|
@_builtins.property
|
|
550
606
|
@pulumi.getter(name="sourceArmResourceId")
|
|
607
|
+
@_utilities.deprecated("""the `source_arm_resource_id` property has been deprecated in favour of `source_resource_id` and will be removed in version 5.0 of the Provider.""")
|
|
551
608
|
def source_arm_resource_id(self) -> pulumi.Output[_builtins.str]:
|
|
609
|
+
return pulumi.get(self, "source_arm_resource_id")
|
|
610
|
+
|
|
611
|
+
@_builtins.property
|
|
612
|
+
@pulumi.getter(name="sourceResourceId")
|
|
613
|
+
def source_resource_id(self) -> pulumi.Output[_builtins.str]:
|
|
552
614
|
"""
|
|
553
615
|
The ID of the Event Grid System Topic ARM Source. Changing this forces a new Event Grid System Topic to be created.
|
|
554
616
|
"""
|
|
555
|
-
return pulumi.get(self, "
|
|
617
|
+
return pulumi.get(self, "source_resource_id")
|
|
556
618
|
|
|
557
619
|
@_builtins.property
|
|
558
620
|
@pulumi.getter
|
|
@@ -809,7 +809,7 @@ class SystemTopicEventSubscription(pulumi.CustomResource):
|
|
|
809
809
|
name="example-system-topic",
|
|
810
810
|
location="Global",
|
|
811
811
|
resource_group_name=example.name,
|
|
812
|
-
|
|
812
|
+
source_resource_id=example.id,
|
|
813
813
|
topic_type="Microsoft.Resources.ResourceGroups")
|
|
814
814
|
example_system_topic_event_subscription = azure.eventgrid.SystemTopicEventSubscription("example",
|
|
815
815
|
name="example-event-subscription",
|
|
@@ -826,7 +826,7 @@ class SystemTopicEventSubscription(pulumi.CustomResource):
|
|
|
826
826
|
<!-- This section is generated, changes will be overwritten -->
|
|
827
827
|
This resource uses the following Azure API Providers:
|
|
828
828
|
|
|
829
|
-
* `Microsoft.EventGrid` -
|
|
829
|
+
* `Microsoft.EventGrid` - 2025-02-15
|
|
830
830
|
|
|
831
831
|
## Import
|
|
832
832
|
|
|
@@ -899,7 +899,7 @@ class SystemTopicEventSubscription(pulumi.CustomResource):
|
|
|
899
899
|
name="example-system-topic",
|
|
900
900
|
location="Global",
|
|
901
901
|
resource_group_name=example.name,
|
|
902
|
-
|
|
902
|
+
source_resource_id=example.id,
|
|
903
903
|
topic_type="Microsoft.Resources.ResourceGroups")
|
|
904
904
|
example_system_topic_event_subscription = azure.eventgrid.SystemTopicEventSubscription("example",
|
|
905
905
|
name="example-event-subscription",
|
|
@@ -916,7 +916,7 @@ class SystemTopicEventSubscription(pulumi.CustomResource):
|
|
|
916
916
|
<!-- This section is generated, changes will be overwritten -->
|
|
917
917
|
This resource uses the following Azure API Providers:
|
|
918
918
|
|
|
919
|
-
* `Microsoft.EventGrid` -
|
|
919
|
+
* `Microsoft.EventGrid` - 2025-02-15
|
|
920
920
|
|
|
921
921
|
## Import
|
|
922
922
|
|
pulumi_azure/eventgrid/topic.py
CHANGED
|
@@ -479,7 +479,7 @@ class Topic(pulumi.CustomResource):
|
|
|
479
479
|
<!-- This section is generated, changes will be overwritten -->
|
|
480
480
|
This resource uses the following Azure API Providers:
|
|
481
481
|
|
|
482
|
-
* `Microsoft.EventGrid` -
|
|
482
|
+
* `Microsoft.EventGrid` - 2025-02-15
|
|
483
483
|
|
|
484
484
|
## Import
|
|
485
485
|
|
|
@@ -537,7 +537,7 @@ class Topic(pulumi.CustomResource):
|
|
|
537
537
|
<!-- This section is generated, changes will be overwritten -->
|
|
538
538
|
This resource uses the following Azure API Providers:
|
|
539
539
|
|
|
540
|
-
* `Microsoft.EventGrid` -
|
|
540
|
+
* `Microsoft.EventGrid` - 2025-02-15
|
|
541
541
|
|
|
542
542
|
## Import
|
|
543
543
|
|
pulumi_azure/eventhub/domain.py
CHANGED
|
@@ -548,7 +548,7 @@ class Domain(pulumi.CustomResource):
|
|
|
548
548
|
<!-- This section is generated, changes will be overwritten -->
|
|
549
549
|
This resource uses the following Azure API Providers:
|
|
550
550
|
|
|
551
|
-
* `Microsoft.EventGrid` -
|
|
551
|
+
* `Microsoft.EventGrid` - 2025-02-15
|
|
552
552
|
|
|
553
553
|
## Import
|
|
554
554
|
|
|
@@ -606,7 +606,7 @@ class Domain(pulumi.CustomResource):
|
|
|
606
606
|
<!-- This section is generated, changes will be overwritten -->
|
|
607
607
|
This resource uses the following Azure API Providers:
|
|
608
608
|
|
|
609
|
-
* `Microsoft.EventGrid` -
|
|
609
|
+
* `Microsoft.EventGrid` - 2025-02-15
|
|
610
610
|
|
|
611
611
|
## Import
|
|
612
612
|
|
|
@@ -484,7 +484,7 @@ class EventGridTopic(pulumi.CustomResource):
|
|
|
484
484
|
<!-- This section is generated, changes will be overwritten -->
|
|
485
485
|
This resource uses the following Azure API Providers:
|
|
486
486
|
|
|
487
|
-
* `Microsoft.EventGrid` -
|
|
487
|
+
* `Microsoft.EventGrid` - 2025-02-15
|
|
488
488
|
|
|
489
489
|
## Import
|
|
490
490
|
|
|
@@ -542,7 +542,7 @@ class EventGridTopic(pulumi.CustomResource):
|
|
|
542
542
|
<!-- This section is generated, changes will be overwritten -->
|
|
543
543
|
This resource uses the following Azure API Providers:
|
|
544
544
|
|
|
545
|
-
* `Microsoft.EventGrid` -
|
|
545
|
+
* `Microsoft.EventGrid` - 2025-02-15
|
|
546
546
|
|
|
547
547
|
## Import
|
|
548
548
|
|
|
@@ -792,7 +792,7 @@ class EventSubscription(pulumi.CustomResource):
|
|
|
792
792
|
<!-- This section is generated, changes will be overwritten -->
|
|
793
793
|
This resource uses the following Azure API Providers:
|
|
794
794
|
|
|
795
|
-
* `Microsoft.EventGrid` -
|
|
795
|
+
* `Microsoft.EventGrid` - 2025-02-15
|
|
796
796
|
|
|
797
797
|
## Import
|
|
798
798
|
|
|
@@ -874,7 +874,7 @@ class EventSubscription(pulumi.CustomResource):
|
|
|
874
874
|
<!-- This section is generated, changes will be overwritten -->
|
|
875
875
|
This resource uses the following Azure API Providers:
|
|
876
876
|
|
|
877
|
-
* `Microsoft.EventGrid` -
|
|
877
|
+
* `Microsoft.EventGrid` - 2025-02-15
|
|
878
878
|
|
|
879
879
|
## Import
|
|
880
880
|
|