pulumi-azure-native 3.0.0a1743504154__py3-none-any.whl → 3.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of pulumi-azure-native might be problematic. Click here for more details.

Files changed (37) hide show
  1. pulumi_azure_native/__init__.py +9 -0
  2. pulumi_azure_native/monitor/__init__.py +19 -0
  3. pulumi_azure_native/monitor/_enums.py +305 -0
  4. pulumi_azure_native/monitor/_inputs.py +6221 -1259
  5. pulumi_azure_native/monitor/action_group.py +9 -9
  6. pulumi_azure_native/monitor/activity_log_alert.py +388 -0
  7. pulumi_azure_native/monitor/autoscale_setting.py +397 -0
  8. pulumi_azure_native/monitor/data_collection_endpoint.py +468 -0
  9. pulumi_azure_native/monitor/data_collection_rule.py +519 -0
  10. pulumi_azure_native/monitor/data_collection_rule_association.py +300 -0
  11. pulumi_azure_native/monitor/diagnostic_setting.py +444 -0
  12. pulumi_azure_native/monitor/get_action_group.py +2 -2
  13. pulumi_azure_native/monitor/get_activity_log_alert.py +231 -0
  14. pulumi_azure_native/monitor/get_autoscale_setting.py +189 -0
  15. pulumi_azure_native/monitor/get_data_collection_endpoint.py +357 -0
  16. pulumi_azure_native/monitor/get_data_collection_rule.py +344 -0
  17. pulumi_azure_native/monitor/get_data_collection_rule_association.py +231 -0
  18. pulumi_azure_native/monitor/get_diagnostic_setting.py +273 -0
  19. pulumi_azure_native/monitor/get_management_group_diagnostic_setting.py +245 -0
  20. pulumi_azure_native/monitor/get_metric_alert.py +343 -0
  21. pulumi_azure_native/monitor/get_private_endpoint_connection.py +4 -0
  22. pulumi_azure_native/monitor/get_private_link_scope.py +4 -0
  23. pulumi_azure_native/monitor/get_private_link_scoped_resource.py +4 -0
  24. pulumi_azure_native/monitor/get_subscription_diagnostic_setting.py +239 -0
  25. pulumi_azure_native/monitor/list_diagnostic_settings_category.py +85 -0
  26. pulumi_azure_native/monitor/management_group_diagnostic_setting.py +386 -0
  27. pulumi_azure_native/monitor/metric_alert.py +578 -0
  28. pulumi_azure_native/monitor/outputs.py +5646 -716
  29. pulumi_azure_native/monitor/private_endpoint_connection.py +4 -0
  30. pulumi_azure_native/monitor/private_link_scope.py +4 -0
  31. pulumi_azure_native/monitor/private_link_scoped_resource.py +4 -0
  32. pulumi_azure_native/monitor/subscription_diagnostic_setting.py +365 -0
  33. pulumi_azure_native/pulumi-plugin.json +1 -1
  34. {pulumi_azure_native-3.0.0a1743504154.dist-info → pulumi_azure_native-3.1.0.dist-info}/METADATA +1 -1
  35. {pulumi_azure_native-3.0.0a1743504154.dist-info → pulumi_azure_native-3.1.0.dist-info}/RECORD +37 -18
  36. {pulumi_azure_native-3.0.0a1743504154.dist-info → pulumi_azure_native-3.1.0.dist-info}/WHEEL +0 -0
  37. {pulumi_azure_native-3.0.0a1743504154.dist-info → pulumi_azure_native-3.1.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,397 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from .. import _utilities
16
+ from . import outputs
17
+ from ._enums import *
18
+ from ._inputs import *
19
+
20
+ __all__ = ['AutoscaleSettingArgs', 'AutoscaleSetting']
21
+
22
+ @pulumi.input_type
23
+ class AutoscaleSettingArgs:
24
+ def __init__(__self__, *,
25
+ profiles: pulumi.Input[Sequence[pulumi.Input['AutoscaleProfileArgs']]],
26
+ resource_group_name: pulumi.Input[str],
27
+ autoscale_setting_name: Optional[pulumi.Input[str]] = None,
28
+ enabled: Optional[pulumi.Input[bool]] = None,
29
+ location: Optional[pulumi.Input[str]] = None,
30
+ name: Optional[pulumi.Input[str]] = None,
31
+ notifications: Optional[pulumi.Input[Sequence[pulumi.Input['AutoscaleNotificationArgs']]]] = None,
32
+ predictive_autoscale_policy: Optional[pulumi.Input['PredictiveAutoscalePolicyArgs']] = None,
33
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
34
+ target_resource_location: Optional[pulumi.Input[str]] = None,
35
+ target_resource_uri: Optional[pulumi.Input[str]] = None):
36
+ """
37
+ The set of arguments for constructing a AutoscaleSetting resource.
38
+ :param pulumi.Input[Sequence[pulumi.Input['AutoscaleProfileArgs']]] profiles: the collection of automatic scaling profiles that specify different scaling parameters for different time periods. A maximum of 20 profiles can be specified.
39
+ :param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
40
+ :param pulumi.Input[str] autoscale_setting_name: The autoscale setting name.
41
+ :param pulumi.Input[bool] enabled: the enabled flag. Specifies whether automatic scaling is enabled for the resource. The default value is 'false'.
42
+ :param pulumi.Input[str] location: Resource location
43
+ :param pulumi.Input[str] name: the name of the autoscale setting.
44
+ :param pulumi.Input[Sequence[pulumi.Input['AutoscaleNotificationArgs']]] notifications: the collection of notifications.
45
+ :param pulumi.Input['PredictiveAutoscalePolicyArgs'] predictive_autoscale_policy: the predictive autoscale policy mode.
46
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Gets or sets a list of key value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater in length than 128 characters and a value no greater in length than 256 characters.
47
+ :param pulumi.Input[str] target_resource_location: the location of the resource that the autoscale setting should be added to.
48
+ :param pulumi.Input[str] target_resource_uri: the resource identifier of the resource that the autoscale setting should be added to.
49
+ """
50
+ pulumi.set(__self__, "profiles", profiles)
51
+ pulumi.set(__self__, "resource_group_name", resource_group_name)
52
+ if autoscale_setting_name is not None:
53
+ pulumi.set(__self__, "autoscale_setting_name", autoscale_setting_name)
54
+ if enabled is None:
55
+ enabled = False
56
+ if enabled is not None:
57
+ pulumi.set(__self__, "enabled", enabled)
58
+ if location is not None:
59
+ pulumi.set(__self__, "location", location)
60
+ if name is not None:
61
+ pulumi.set(__self__, "name", name)
62
+ if notifications is not None:
63
+ pulumi.set(__self__, "notifications", notifications)
64
+ if predictive_autoscale_policy is not None:
65
+ pulumi.set(__self__, "predictive_autoscale_policy", predictive_autoscale_policy)
66
+ if tags is not None:
67
+ pulumi.set(__self__, "tags", tags)
68
+ if target_resource_location is not None:
69
+ pulumi.set(__self__, "target_resource_location", target_resource_location)
70
+ if target_resource_uri is not None:
71
+ pulumi.set(__self__, "target_resource_uri", target_resource_uri)
72
+
73
+ @property
74
+ @pulumi.getter
75
+ def profiles(self) -> pulumi.Input[Sequence[pulumi.Input['AutoscaleProfileArgs']]]:
76
+ """
77
+ the collection of automatic scaling profiles that specify different scaling parameters for different time periods. A maximum of 20 profiles can be specified.
78
+ """
79
+ return pulumi.get(self, "profiles")
80
+
81
+ @profiles.setter
82
+ def profiles(self, value: pulumi.Input[Sequence[pulumi.Input['AutoscaleProfileArgs']]]):
83
+ pulumi.set(self, "profiles", value)
84
+
85
+ @property
86
+ @pulumi.getter(name="resourceGroupName")
87
+ def resource_group_name(self) -> pulumi.Input[str]:
88
+ """
89
+ The name of the resource group. The name is case insensitive.
90
+ """
91
+ return pulumi.get(self, "resource_group_name")
92
+
93
+ @resource_group_name.setter
94
+ def resource_group_name(self, value: pulumi.Input[str]):
95
+ pulumi.set(self, "resource_group_name", value)
96
+
97
+ @property
98
+ @pulumi.getter(name="autoscaleSettingName")
99
+ def autoscale_setting_name(self) -> Optional[pulumi.Input[str]]:
100
+ """
101
+ The autoscale setting name.
102
+ """
103
+ return pulumi.get(self, "autoscale_setting_name")
104
+
105
+ @autoscale_setting_name.setter
106
+ def autoscale_setting_name(self, value: Optional[pulumi.Input[str]]):
107
+ pulumi.set(self, "autoscale_setting_name", value)
108
+
109
+ @property
110
+ @pulumi.getter
111
+ def enabled(self) -> Optional[pulumi.Input[bool]]:
112
+ """
113
+ the enabled flag. Specifies whether automatic scaling is enabled for the resource. The default value is 'false'.
114
+ """
115
+ return pulumi.get(self, "enabled")
116
+
117
+ @enabled.setter
118
+ def enabled(self, value: Optional[pulumi.Input[bool]]):
119
+ pulumi.set(self, "enabled", value)
120
+
121
+ @property
122
+ @pulumi.getter
123
+ def location(self) -> Optional[pulumi.Input[str]]:
124
+ """
125
+ Resource location
126
+ """
127
+ return pulumi.get(self, "location")
128
+
129
+ @location.setter
130
+ def location(self, value: Optional[pulumi.Input[str]]):
131
+ pulumi.set(self, "location", value)
132
+
133
+ @property
134
+ @pulumi.getter
135
+ def name(self) -> Optional[pulumi.Input[str]]:
136
+ """
137
+ the name of the autoscale setting.
138
+ """
139
+ return pulumi.get(self, "name")
140
+
141
+ @name.setter
142
+ def name(self, value: Optional[pulumi.Input[str]]):
143
+ pulumi.set(self, "name", value)
144
+
145
+ @property
146
+ @pulumi.getter
147
+ def notifications(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['AutoscaleNotificationArgs']]]]:
148
+ """
149
+ the collection of notifications.
150
+ """
151
+ return pulumi.get(self, "notifications")
152
+
153
+ @notifications.setter
154
+ def notifications(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['AutoscaleNotificationArgs']]]]):
155
+ pulumi.set(self, "notifications", value)
156
+
157
+ @property
158
+ @pulumi.getter(name="predictiveAutoscalePolicy")
159
+ def predictive_autoscale_policy(self) -> Optional[pulumi.Input['PredictiveAutoscalePolicyArgs']]:
160
+ """
161
+ the predictive autoscale policy mode.
162
+ """
163
+ return pulumi.get(self, "predictive_autoscale_policy")
164
+
165
+ @predictive_autoscale_policy.setter
166
+ def predictive_autoscale_policy(self, value: Optional[pulumi.Input['PredictiveAutoscalePolicyArgs']]):
167
+ pulumi.set(self, "predictive_autoscale_policy", value)
168
+
169
+ @property
170
+ @pulumi.getter
171
+ def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
172
+ """
173
+ Gets or sets a list of key value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater in length than 128 characters and a value no greater in length than 256 characters.
174
+ """
175
+ return pulumi.get(self, "tags")
176
+
177
+ @tags.setter
178
+ def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
179
+ pulumi.set(self, "tags", value)
180
+
181
+ @property
182
+ @pulumi.getter(name="targetResourceLocation")
183
+ def target_resource_location(self) -> Optional[pulumi.Input[str]]:
184
+ """
185
+ the location of the resource that the autoscale setting should be added to.
186
+ """
187
+ return pulumi.get(self, "target_resource_location")
188
+
189
+ @target_resource_location.setter
190
+ def target_resource_location(self, value: Optional[pulumi.Input[str]]):
191
+ pulumi.set(self, "target_resource_location", value)
192
+
193
+ @property
194
+ @pulumi.getter(name="targetResourceUri")
195
+ def target_resource_uri(self) -> Optional[pulumi.Input[str]]:
196
+ """
197
+ the resource identifier of the resource that the autoscale setting should be added to.
198
+ """
199
+ return pulumi.get(self, "target_resource_uri")
200
+
201
+ @target_resource_uri.setter
202
+ def target_resource_uri(self, value: Optional[pulumi.Input[str]]):
203
+ pulumi.set(self, "target_resource_uri", value)
204
+
205
+
206
+ class AutoscaleSetting(pulumi.CustomResource):
207
+ @overload
208
+ def __init__(__self__,
209
+ resource_name: str,
210
+ opts: Optional[pulumi.ResourceOptions] = None,
211
+ autoscale_setting_name: Optional[pulumi.Input[str]] = None,
212
+ enabled: Optional[pulumi.Input[bool]] = None,
213
+ location: Optional[pulumi.Input[str]] = None,
214
+ name: Optional[pulumi.Input[str]] = None,
215
+ notifications: Optional[pulumi.Input[Sequence[pulumi.Input[Union['AutoscaleNotificationArgs', 'AutoscaleNotificationArgsDict']]]]] = None,
216
+ predictive_autoscale_policy: Optional[pulumi.Input[Union['PredictiveAutoscalePolicyArgs', 'PredictiveAutoscalePolicyArgsDict']]] = None,
217
+ profiles: Optional[pulumi.Input[Sequence[pulumi.Input[Union['AutoscaleProfileArgs', 'AutoscaleProfileArgsDict']]]]] = None,
218
+ resource_group_name: Optional[pulumi.Input[str]] = None,
219
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
220
+ target_resource_location: Optional[pulumi.Input[str]] = None,
221
+ target_resource_uri: Optional[pulumi.Input[str]] = None,
222
+ __props__=None):
223
+ """
224
+ The autoscale setting resource.
225
+
226
+ Uses Azure REST API version 2021-05-01-preview.
227
+
228
+ :param str resource_name: The name of the resource.
229
+ :param pulumi.ResourceOptions opts: Options for the resource.
230
+ :param pulumi.Input[str] autoscale_setting_name: The autoscale setting name.
231
+ :param pulumi.Input[bool] enabled: the enabled flag. Specifies whether automatic scaling is enabled for the resource. The default value is 'false'.
232
+ :param pulumi.Input[str] location: Resource location
233
+ :param pulumi.Input[str] name: the name of the autoscale setting.
234
+ :param pulumi.Input[Sequence[pulumi.Input[Union['AutoscaleNotificationArgs', 'AutoscaleNotificationArgsDict']]]] notifications: the collection of notifications.
235
+ :param pulumi.Input[Union['PredictiveAutoscalePolicyArgs', 'PredictiveAutoscalePolicyArgsDict']] predictive_autoscale_policy: the predictive autoscale policy mode.
236
+ :param pulumi.Input[Sequence[pulumi.Input[Union['AutoscaleProfileArgs', 'AutoscaleProfileArgsDict']]]] profiles: the collection of automatic scaling profiles that specify different scaling parameters for different time periods. A maximum of 20 profiles can be specified.
237
+ :param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
238
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Gets or sets a list of key value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater in length than 128 characters and a value no greater in length than 256 characters.
239
+ :param pulumi.Input[str] target_resource_location: the location of the resource that the autoscale setting should be added to.
240
+ :param pulumi.Input[str] target_resource_uri: the resource identifier of the resource that the autoscale setting should be added to.
241
+ """
242
+ ...
243
+ @overload
244
+ def __init__(__self__,
245
+ resource_name: str,
246
+ args: AutoscaleSettingArgs,
247
+ opts: Optional[pulumi.ResourceOptions] = None):
248
+ """
249
+ The autoscale setting resource.
250
+
251
+ Uses Azure REST API version 2021-05-01-preview.
252
+
253
+ :param str resource_name: The name of the resource.
254
+ :param AutoscaleSettingArgs args: The arguments to use to populate this resource's properties.
255
+ :param pulumi.ResourceOptions opts: Options for the resource.
256
+ """
257
+ ...
258
+ def __init__(__self__, resource_name: str, *args, **kwargs):
259
+ resource_args, opts = _utilities.get_resource_args_opts(AutoscaleSettingArgs, pulumi.ResourceOptions, *args, **kwargs)
260
+ if resource_args is not None:
261
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
262
+ else:
263
+ __self__._internal_init(resource_name, *args, **kwargs)
264
+
265
+ def _internal_init(__self__,
266
+ resource_name: str,
267
+ opts: Optional[pulumi.ResourceOptions] = None,
268
+ autoscale_setting_name: Optional[pulumi.Input[str]] = None,
269
+ enabled: Optional[pulumi.Input[bool]] = None,
270
+ location: Optional[pulumi.Input[str]] = None,
271
+ name: Optional[pulumi.Input[str]] = None,
272
+ notifications: Optional[pulumi.Input[Sequence[pulumi.Input[Union['AutoscaleNotificationArgs', 'AutoscaleNotificationArgsDict']]]]] = None,
273
+ predictive_autoscale_policy: Optional[pulumi.Input[Union['PredictiveAutoscalePolicyArgs', 'PredictiveAutoscalePolicyArgsDict']]] = None,
274
+ profiles: Optional[pulumi.Input[Sequence[pulumi.Input[Union['AutoscaleProfileArgs', 'AutoscaleProfileArgsDict']]]]] = None,
275
+ resource_group_name: Optional[pulumi.Input[str]] = None,
276
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
277
+ target_resource_location: Optional[pulumi.Input[str]] = None,
278
+ target_resource_uri: Optional[pulumi.Input[str]] = None,
279
+ __props__=None):
280
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
281
+ if not isinstance(opts, pulumi.ResourceOptions):
282
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
283
+ if opts.id is None:
284
+ if __props__ is not None:
285
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
286
+ __props__ = AutoscaleSettingArgs.__new__(AutoscaleSettingArgs)
287
+
288
+ __props__.__dict__["autoscale_setting_name"] = autoscale_setting_name
289
+ if enabled is None:
290
+ enabled = False
291
+ __props__.__dict__["enabled"] = enabled
292
+ __props__.__dict__["location"] = location
293
+ __props__.__dict__["name"] = name
294
+ __props__.__dict__["notifications"] = notifications
295
+ __props__.__dict__["predictive_autoscale_policy"] = predictive_autoscale_policy
296
+ if profiles is None and not opts.urn:
297
+ raise TypeError("Missing required property 'profiles'")
298
+ __props__.__dict__["profiles"] = profiles
299
+ if resource_group_name is None and not opts.urn:
300
+ raise TypeError("Missing required property 'resource_group_name'")
301
+ __props__.__dict__["resource_group_name"] = resource_group_name
302
+ __props__.__dict__["tags"] = tags
303
+ __props__.__dict__["target_resource_location"] = target_resource_location
304
+ __props__.__dict__["target_resource_uri"] = target_resource_uri
305
+ __props__.__dict__["azure_api_version"] = None
306
+ __props__.__dict__["properties"] = None
307
+ __props__.__dict__["system_data"] = None
308
+ __props__.__dict__["type"] = None
309
+ alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:insights/v20221001:AutoscaleSetting"), pulumi.Alias(type_="azure-native:insights:AutoscaleSetting"), pulumi.Alias(type_="azure-native:monitor/v20140401:AutoscaleSetting"), pulumi.Alias(type_="azure-native:monitor/v20150401:AutoscaleSetting"), pulumi.Alias(type_="azure-native:monitor/v20210501preview:AutoscaleSetting"), pulumi.Alias(type_="azure-native:monitor/v20221001:AutoscaleSetting")])
310
+ opts = pulumi.ResourceOptions.merge(opts, alias_opts)
311
+ super(AutoscaleSetting, __self__).__init__(
312
+ 'azure-native:monitor:AutoscaleSetting',
313
+ resource_name,
314
+ __props__,
315
+ opts)
316
+
317
+ @staticmethod
318
+ def get(resource_name: str,
319
+ id: pulumi.Input[str],
320
+ opts: Optional[pulumi.ResourceOptions] = None) -> 'AutoscaleSetting':
321
+ """
322
+ Get an existing AutoscaleSetting resource's state with the given name, id, and optional extra
323
+ properties used to qualify the lookup.
324
+
325
+ :param str resource_name: The unique name of the resulting resource.
326
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
327
+ :param pulumi.ResourceOptions opts: Options for the resource.
328
+ """
329
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
330
+
331
+ __props__ = AutoscaleSettingArgs.__new__(AutoscaleSettingArgs)
332
+
333
+ __props__.__dict__["azure_api_version"] = None
334
+ __props__.__dict__["location"] = None
335
+ __props__.__dict__["name"] = None
336
+ __props__.__dict__["properties"] = None
337
+ __props__.__dict__["system_data"] = None
338
+ __props__.__dict__["tags"] = None
339
+ __props__.__dict__["type"] = None
340
+ return AutoscaleSetting(resource_name, opts=opts, __props__=__props__)
341
+
342
+ @property
343
+ @pulumi.getter(name="azureApiVersion")
344
+ def azure_api_version(self) -> pulumi.Output[str]:
345
+ """
346
+ The Azure API version of the resource.
347
+ """
348
+ return pulumi.get(self, "azure_api_version")
349
+
350
+ @property
351
+ @pulumi.getter
352
+ def location(self) -> pulumi.Output[str]:
353
+ """
354
+ Resource location
355
+ """
356
+ return pulumi.get(self, "location")
357
+
358
+ @property
359
+ @pulumi.getter
360
+ def name(self) -> pulumi.Output[str]:
361
+ """
362
+ Azure resource name
363
+ """
364
+ return pulumi.get(self, "name")
365
+
366
+ @property
367
+ @pulumi.getter
368
+ def properties(self) -> pulumi.Output['outputs.AutoscaleSettingResponse']:
369
+ """
370
+ The autoscale setting of the resource.
371
+ """
372
+ return pulumi.get(self, "properties")
373
+
374
+ @property
375
+ @pulumi.getter(name="systemData")
376
+ def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
377
+ """
378
+ The system metadata related to the response.
379
+ """
380
+ return pulumi.get(self, "system_data")
381
+
382
+ @property
383
+ @pulumi.getter
384
+ def tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
385
+ """
386
+ Gets or sets a list of key value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater in length than 128 characters and a value no greater in length than 256 characters.
387
+ """
388
+ return pulumi.get(self, "tags")
389
+
390
+ @property
391
+ @pulumi.getter
392
+ def type(self) -> pulumi.Output[str]:
393
+ """
394
+ Azure resource type
395
+ """
396
+ return pulumi.get(self, "type")
397
+