pulumi-cloudamqp 3.23.0a1746768292__py3-none-any.whl → 3.24.2__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-cloudamqp might be problematic. Click here for more details.

Files changed (54) hide show
  1. pulumi_cloudamqp/__init__.py +23 -5
  2. pulumi_cloudamqp/_inputs.py +633 -82
  3. pulumi_cloudamqp/_utilities.py +1 -1
  4. pulumi_cloudamqp/{account_action.py → account_actions.py} +60 -74
  5. pulumi_cloudamqp/alarm.py +189 -190
  6. pulumi_cloudamqp/config/__init__.py +2 -2
  7. pulumi_cloudamqp/config/__init__.pyi +2 -3
  8. pulumi_cloudamqp/config/vars.py +5 -6
  9. pulumi_cloudamqp/custom_domain.py +40 -41
  10. pulumi_cloudamqp/extra_disk_size.py +89 -90
  11. pulumi_cloudamqp/get_account.py +5 -6
  12. pulumi_cloudamqp/get_account_vpcs.py +5 -6
  13. pulumi_cloudamqp/get_alarm.py +44 -45
  14. pulumi_cloudamqp/get_alarms.py +17 -18
  15. pulumi_cloudamqp/get_credentials.py +14 -15
  16. pulumi_cloudamqp/get_instance.py +44 -45
  17. pulumi_cloudamqp/get_nodes.py +11 -12
  18. pulumi_cloudamqp/get_notification.py +32 -33
  19. pulumi_cloudamqp/get_notifications.py +11 -12
  20. pulumi_cloudamqp/get_plugins.py +23 -24
  21. pulumi_cloudamqp/get_plugins_community.py +23 -24
  22. pulumi_cloudamqp/get_upgradable_versions.py +14 -15
  23. pulumi_cloudamqp/get_vpc_gcp_info.py +34 -35
  24. pulumi_cloudamqp/get_vpc_info.py +24 -25
  25. pulumi_cloudamqp/instance.py +428 -280
  26. pulumi_cloudamqp/integration_aws_eventbridge.py +246 -116
  27. pulumi_cloudamqp/integration_log.py +982 -581
  28. pulumi_cloudamqp/integration_metric.py +615 -479
  29. pulumi_cloudamqp/integration_metric_prometheus.py +770 -0
  30. pulumi_cloudamqp/maintenance_window.py +76 -73
  31. pulumi_cloudamqp/node_actions.py +62 -63
  32. pulumi_cloudamqp/notification.py +92 -93
  33. pulumi_cloudamqp/oauth2_configuration.py +1042 -0
  34. pulumi_cloudamqp/outputs.py +680 -241
  35. pulumi_cloudamqp/plugin.py +105 -106
  36. pulumi_cloudamqp/plugin_community.py +105 -106
  37. pulumi_cloudamqp/privatelink_aws.py +97 -98
  38. pulumi_cloudamqp/privatelink_azure.py +97 -98
  39. pulumi_cloudamqp/provider.py +32 -34
  40. pulumi_cloudamqp/pulumi-plugin.json +1 -1
  41. pulumi_cloudamqp/rabbit_configuration.py +206 -221
  42. pulumi_cloudamqp/security_firewall.py +56 -57
  43. pulumi_cloudamqp/upgrade_lavinmq.py +36 -37
  44. pulumi_cloudamqp/upgrade_rabbitmq.py +53 -54
  45. pulumi_cloudamqp/vpc.py +83 -84
  46. pulumi_cloudamqp/vpc_connect.py +148 -149
  47. pulumi_cloudamqp/vpc_gcp_peering.py +131 -132
  48. pulumi_cloudamqp/vpc_peering.py +96 -97
  49. pulumi_cloudamqp/webhook.py +121 -122
  50. {pulumi_cloudamqp-3.23.0a1746768292.dist-info → pulumi_cloudamqp-3.24.2.dist-info}/METADATA +1 -1
  51. pulumi_cloudamqp-3.24.2.dist-info/RECORD +54 -0
  52. {pulumi_cloudamqp-3.23.0a1746768292.dist-info → pulumi_cloudamqp-3.24.2.dist-info}/WHEEL +1 -1
  53. pulumi_cloudamqp-3.23.0a1746768292.dist-info/RECORD +0 -52
  54. {pulumi_cloudamqp-3.23.0a1746768292.dist-info → pulumi_cloudamqp-3.24.2.dist-info}/top_level.txt +0 -0
@@ -1,9 +1,8 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
- import builtins
6
- import copy
5
+ import builtins as _builtins
7
6
  import warnings
8
7
  import sys
9
8
  import pulumi
@@ -18,6 +17,13 @@ from . import _utilities
18
17
  __all__ = [
19
18
  'ExtraDiskSizeNode',
20
19
  'InstanceCopySetting',
20
+ 'IntegrationMetricPrometheusAzureMonitor',
21
+ 'IntegrationMetricPrometheusCloudwatchV3',
22
+ 'IntegrationMetricPrometheusDatadogV3',
23
+ 'IntegrationMetricPrometheusDynatrace',
24
+ 'IntegrationMetricPrometheusNewrelicV3',
25
+ 'IntegrationMetricPrometheusSplunkV2',
26
+ 'IntegrationMetricPrometheusStackdriverV2',
21
27
  'NotificationResponder',
22
28
  'SecurityFirewallRule',
23
29
  'GetAccountInstanceResult',
@@ -51,13 +57,13 @@ class ExtraDiskSizeNode(dict):
51
57
  return super().get(key, default)
52
58
 
53
59
  def __init__(__self__, *,
54
- additional_disk_size: Optional[builtins.int] = None,
55
- disk_size: Optional[builtins.int] = None,
56
- name: Optional[builtins.str] = None):
60
+ additional_disk_size: Optional[_builtins.int] = None,
61
+ disk_size: Optional[_builtins.int] = None,
62
+ name: Optional[_builtins.str] = None):
57
63
  """
58
- :param builtins.int additional_disk_size: Additional added disk size
59
- :param builtins.int disk_size: Subscription plan disk size
60
- :param builtins.str name: Name of the node.
64
+ :param _builtins.int additional_disk_size: Additional added disk size
65
+ :param _builtins.int disk_size: Subscription plan disk size
66
+ :param _builtins.str name: Name of the node.
61
67
  """
62
68
  if additional_disk_size is not None:
63
69
  pulumi.set(__self__, "additional_disk_size", additional_disk_size)
@@ -66,25 +72,25 @@ class ExtraDiskSizeNode(dict):
66
72
  if name is not None:
67
73
  pulumi.set(__self__, "name", name)
68
74
 
69
- @property
75
+ @_builtins.property
70
76
  @pulumi.getter(name="additionalDiskSize")
71
- def additional_disk_size(self) -> Optional[builtins.int]:
77
+ def additional_disk_size(self) -> Optional[_builtins.int]:
72
78
  """
73
79
  Additional added disk size
74
80
  """
75
81
  return pulumi.get(self, "additional_disk_size")
76
82
 
77
- @property
83
+ @_builtins.property
78
84
  @pulumi.getter(name="diskSize")
79
- def disk_size(self) -> Optional[builtins.int]:
85
+ def disk_size(self) -> Optional[_builtins.int]:
80
86
  """
81
87
  Subscription plan disk size
82
88
  """
83
89
  return pulumi.get(self, "disk_size")
84
90
 
85
- @property
91
+ @_builtins.property
86
92
  @pulumi.getter
87
- def name(self) -> Optional[builtins.str]:
93
+ def name(self) -> Optional[_builtins.str]:
88
94
  """
89
95
  Name of the node.
90
96
  """
@@ -111,22 +117,22 @@ class InstanceCopySetting(dict):
111
117
  return super().get(key, default)
112
118
 
113
119
  def __init__(__self__, *,
114
- settings: Sequence[builtins.str],
115
- subscription_id: builtins.str):
120
+ settings: Sequence[_builtins.str],
121
+ subscription_id: _builtins.str):
116
122
  """
117
- :param Sequence[builtins.str] settings: Array of one or more settings to be copied. Allowed values:
123
+ :param Sequence[_builtins.str] settings: Array of one or more settings to be copied. Allowed values:
118
124
  [alarms, config, definitions, firewall, logs, metrics, plugins]
119
125
 
120
126
  See more below, [copy settings].
121
- :param builtins.str subscription_id: Instance identifier of the CloudAMQP instance to copy the settings
127
+ :param _builtins.str subscription_id: Instance identifier of the CloudAMQP instance to copy the settings
122
128
  from.
123
129
  """
124
130
  pulumi.set(__self__, "settings", settings)
125
131
  pulumi.set(__self__, "subscription_id", subscription_id)
126
132
 
127
- @property
133
+ @_builtins.property
128
134
  @pulumi.getter
129
- def settings(self) -> Sequence[builtins.str]:
135
+ def settings(self) -> Sequence[_builtins.str]:
130
136
  """
131
137
  Array of one or more settings to be copied. Allowed values:
132
138
  [alarms, config, definitions, firewall, logs, metrics, plugins]
@@ -135,9 +141,9 @@ class InstanceCopySetting(dict):
135
141
  """
136
142
  return pulumi.get(self, "settings")
137
143
 
138
- @property
144
+ @_builtins.property
139
145
  @pulumi.getter(name="subscriptionId")
140
- def subscription_id(self) -> builtins.str:
146
+ def subscription_id(self) -> _builtins.str:
141
147
  """
142
148
  Instance identifier of the CloudAMQP instance to copy the settings
143
149
  from.
@@ -145,18 +151,451 @@ class InstanceCopySetting(dict):
145
151
  return pulumi.get(self, "subscription_id")
146
152
 
147
153
 
154
+ @pulumi.output_type
155
+ class IntegrationMetricPrometheusAzureMonitor(dict):
156
+ @staticmethod
157
+ def __key_warning(key: str):
158
+ suggest = None
159
+ if key == "connectionString":
160
+ suggest = "connection_string"
161
+
162
+ if suggest:
163
+ pulumi.log.warn(f"Key '{key}' not found in IntegrationMetricPrometheusAzureMonitor. Access the value via the '{suggest}' property getter instead.")
164
+
165
+ def __getitem__(self, key: str) -> Any:
166
+ IntegrationMetricPrometheusAzureMonitor.__key_warning(key)
167
+ return super().__getitem__(key)
168
+
169
+ def get(self, key: str, default = None) -> Any:
170
+ IntegrationMetricPrometheusAzureMonitor.__key_warning(key)
171
+ return super().get(key, default)
172
+
173
+ def __init__(__self__, *,
174
+ connection_string: _builtins.str):
175
+ """
176
+ :param _builtins.str connection_string: Azure Application Insights Connection String for authentication.
177
+ """
178
+ pulumi.set(__self__, "connection_string", connection_string)
179
+
180
+ @_builtins.property
181
+ @pulumi.getter(name="connectionString")
182
+ def connection_string(self) -> _builtins.str:
183
+ """
184
+ Azure Application Insights Connection String for authentication.
185
+ """
186
+ return pulumi.get(self, "connection_string")
187
+
188
+
189
+ @pulumi.output_type
190
+ class IntegrationMetricPrometheusCloudwatchV3(dict):
191
+ @staticmethod
192
+ def __key_warning(key: str):
193
+ suggest = None
194
+ if key == "iamExternalId":
195
+ suggest = "iam_external_id"
196
+ elif key == "iamRole":
197
+ suggest = "iam_role"
198
+
199
+ if suggest:
200
+ pulumi.log.warn(f"Key '{key}' not found in IntegrationMetricPrometheusCloudwatchV3. Access the value via the '{suggest}' property getter instead.")
201
+
202
+ def __getitem__(self, key: str) -> Any:
203
+ IntegrationMetricPrometheusCloudwatchV3.__key_warning(key)
204
+ return super().__getitem__(key)
205
+
206
+ def get(self, key: str, default = None) -> Any:
207
+ IntegrationMetricPrometheusCloudwatchV3.__key_warning(key)
208
+ return super().get(key, default)
209
+
210
+ def __init__(__self__, *,
211
+ iam_external_id: _builtins.str,
212
+ iam_role: _builtins.str,
213
+ region: _builtins.str,
214
+ tags: Optional[_builtins.str] = None):
215
+ """
216
+ :param _builtins.str iam_external_id: AWS IAM external ID for role assumption.
217
+ :param _builtins.str iam_role: AWS IAM role ARN with PutMetricData permission for CloudWatch integration.
218
+ :param _builtins.str region: AWS region for CloudWatch metrics.
219
+ :param _builtins.str tags: Additional tags to attach to metrics. Format: `key=value,key2=value2`.
220
+ """
221
+ pulumi.set(__self__, "iam_external_id", iam_external_id)
222
+ pulumi.set(__self__, "iam_role", iam_role)
223
+ pulumi.set(__self__, "region", region)
224
+ if tags is not None:
225
+ pulumi.set(__self__, "tags", tags)
226
+
227
+ @_builtins.property
228
+ @pulumi.getter(name="iamExternalId")
229
+ def iam_external_id(self) -> _builtins.str:
230
+ """
231
+ AWS IAM external ID for role assumption.
232
+ """
233
+ return pulumi.get(self, "iam_external_id")
234
+
235
+ @_builtins.property
236
+ @pulumi.getter(name="iamRole")
237
+ def iam_role(self) -> _builtins.str:
238
+ """
239
+ AWS IAM role ARN with PutMetricData permission for CloudWatch integration.
240
+ """
241
+ return pulumi.get(self, "iam_role")
242
+
243
+ @_builtins.property
244
+ @pulumi.getter
245
+ def region(self) -> _builtins.str:
246
+ """
247
+ AWS region for CloudWatch metrics.
248
+ """
249
+ return pulumi.get(self, "region")
250
+
251
+ @_builtins.property
252
+ @pulumi.getter
253
+ def tags(self) -> Optional[_builtins.str]:
254
+ """
255
+ Additional tags to attach to metrics. Format: `key=value,key2=value2`.
256
+ """
257
+ return pulumi.get(self, "tags")
258
+
259
+
260
+ @pulumi.output_type
261
+ class IntegrationMetricPrometheusDatadogV3(dict):
262
+ @staticmethod
263
+ def __key_warning(key: str):
264
+ suggest = None
265
+ if key == "apiKey":
266
+ suggest = "api_key"
267
+ elif key == "rabbitmqDashboardMetricsFormat":
268
+ suggest = "rabbitmq_dashboard_metrics_format"
269
+
270
+ if suggest:
271
+ pulumi.log.warn(f"Key '{key}' not found in IntegrationMetricPrometheusDatadogV3. Access the value via the '{suggest}' property getter instead.")
272
+
273
+ def __getitem__(self, key: str) -> Any:
274
+ IntegrationMetricPrometheusDatadogV3.__key_warning(key)
275
+ return super().__getitem__(key)
276
+
277
+ def get(self, key: str, default = None) -> Any:
278
+ IntegrationMetricPrometheusDatadogV3.__key_warning(key)
279
+ return super().get(key, default)
280
+
281
+ def __init__(__self__, *,
282
+ api_key: _builtins.str,
283
+ region: _builtins.str,
284
+ rabbitmq_dashboard_metrics_format: Optional[_builtins.bool] = None,
285
+ tags: Optional[_builtins.str] = None):
286
+ """
287
+ :param _builtins.str api_key: Datadog API key for authentication.
288
+ :param _builtins.str region: Datadog region code. Valid values: `us1`, `us3`, `us5`, `eu1`.
289
+ :param _builtins.bool rabbitmq_dashboard_metrics_format: Enable metric name transformation to match Datadog's RabbitMQ dashboard format. Default: `false`. **Note:** This option is only available for RabbitMQ clusters, not LavinMQ clusters.
290
+ :param _builtins.str tags: Additional tags to attach to metrics. Format: `key=value,key2=value2`.
291
+ """
292
+ pulumi.set(__self__, "api_key", api_key)
293
+ pulumi.set(__self__, "region", region)
294
+ if rabbitmq_dashboard_metrics_format is not None:
295
+ pulumi.set(__self__, "rabbitmq_dashboard_metrics_format", rabbitmq_dashboard_metrics_format)
296
+ if tags is not None:
297
+ pulumi.set(__self__, "tags", tags)
298
+
299
+ @_builtins.property
300
+ @pulumi.getter(name="apiKey")
301
+ def api_key(self) -> _builtins.str:
302
+ """
303
+ Datadog API key for authentication.
304
+ """
305
+ return pulumi.get(self, "api_key")
306
+
307
+ @_builtins.property
308
+ @pulumi.getter
309
+ def region(self) -> _builtins.str:
310
+ """
311
+ Datadog region code. Valid values: `us1`, `us3`, `us5`, `eu1`.
312
+ """
313
+ return pulumi.get(self, "region")
314
+
315
+ @_builtins.property
316
+ @pulumi.getter(name="rabbitmqDashboardMetricsFormat")
317
+ def rabbitmq_dashboard_metrics_format(self) -> Optional[_builtins.bool]:
318
+ """
319
+ Enable metric name transformation to match Datadog's RabbitMQ dashboard format. Default: `false`. **Note:** This option is only available for RabbitMQ clusters, not LavinMQ clusters.
320
+ """
321
+ return pulumi.get(self, "rabbitmq_dashboard_metrics_format")
322
+
323
+ @_builtins.property
324
+ @pulumi.getter
325
+ def tags(self) -> Optional[_builtins.str]:
326
+ """
327
+ Additional tags to attach to metrics. Format: `key=value,key2=value2`.
328
+ """
329
+ return pulumi.get(self, "tags")
330
+
331
+
332
+ @pulumi.output_type
333
+ class IntegrationMetricPrometheusDynatrace(dict):
334
+ @staticmethod
335
+ def __key_warning(key: str):
336
+ suggest = None
337
+ if key == "accessToken":
338
+ suggest = "access_token"
339
+ elif key == "environmentId":
340
+ suggest = "environment_id"
341
+
342
+ if suggest:
343
+ pulumi.log.warn(f"Key '{key}' not found in IntegrationMetricPrometheusDynatrace. Access the value via the '{suggest}' property getter instead.")
344
+
345
+ def __getitem__(self, key: str) -> Any:
346
+ IntegrationMetricPrometheusDynatrace.__key_warning(key)
347
+ return super().__getitem__(key)
348
+
349
+ def get(self, key: str, default = None) -> Any:
350
+ IntegrationMetricPrometheusDynatrace.__key_warning(key)
351
+ return super().get(key, default)
352
+
353
+ def __init__(__self__, *,
354
+ access_token: _builtins.str,
355
+ environment_id: _builtins.str,
356
+ tags: Optional[_builtins.str] = None):
357
+ """
358
+ :param _builtins.str access_token: Dynatrace access token with 'Ingest metrics' permission.
359
+ :param _builtins.str environment_id: Dynatrace environment ID.
360
+ :param _builtins.str tags: Additional tags to attach to metrics. Format: `key=value,key2=value2`.
361
+ """
362
+ pulumi.set(__self__, "access_token", access_token)
363
+ pulumi.set(__self__, "environment_id", environment_id)
364
+ if tags is not None:
365
+ pulumi.set(__self__, "tags", tags)
366
+
367
+ @_builtins.property
368
+ @pulumi.getter(name="accessToken")
369
+ def access_token(self) -> _builtins.str:
370
+ """
371
+ Dynatrace access token with 'Ingest metrics' permission.
372
+ """
373
+ return pulumi.get(self, "access_token")
374
+
375
+ @_builtins.property
376
+ @pulumi.getter(name="environmentId")
377
+ def environment_id(self) -> _builtins.str:
378
+ """
379
+ Dynatrace environment ID.
380
+ """
381
+ return pulumi.get(self, "environment_id")
382
+
383
+ @_builtins.property
384
+ @pulumi.getter
385
+ def tags(self) -> Optional[_builtins.str]:
386
+ """
387
+ Additional tags to attach to metrics. Format: `key=value,key2=value2`.
388
+ """
389
+ return pulumi.get(self, "tags")
390
+
391
+
392
+ @pulumi.output_type
393
+ class IntegrationMetricPrometheusNewrelicV3(dict):
394
+ @staticmethod
395
+ def __key_warning(key: str):
396
+ suggest = None
397
+ if key == "apiKey":
398
+ suggest = "api_key"
399
+
400
+ if suggest:
401
+ pulumi.log.warn(f"Key '{key}' not found in IntegrationMetricPrometheusNewrelicV3. Access the value via the '{suggest}' property getter instead.")
402
+
403
+ def __getitem__(self, key: str) -> Any:
404
+ IntegrationMetricPrometheusNewrelicV3.__key_warning(key)
405
+ return super().__getitem__(key)
406
+
407
+ def get(self, key: str, default = None) -> Any:
408
+ IntegrationMetricPrometheusNewrelicV3.__key_warning(key)
409
+ return super().get(key, default)
410
+
411
+ def __init__(__self__, *,
412
+ api_key: _builtins.str,
413
+ tags: Optional[_builtins.str] = None):
414
+ """
415
+ :param _builtins.str api_key: New Relic API key for authentication.
416
+ :param _builtins.str tags: Additional tags to attach to metrics. Format: `key=value,key2=value2`.
417
+ """
418
+ pulumi.set(__self__, "api_key", api_key)
419
+ if tags is not None:
420
+ pulumi.set(__self__, "tags", tags)
421
+
422
+ @_builtins.property
423
+ @pulumi.getter(name="apiKey")
424
+ def api_key(self) -> _builtins.str:
425
+ """
426
+ New Relic API key for authentication.
427
+ """
428
+ return pulumi.get(self, "api_key")
429
+
430
+ @_builtins.property
431
+ @pulumi.getter
432
+ def tags(self) -> Optional[_builtins.str]:
433
+ """
434
+ Additional tags to attach to metrics. Format: `key=value,key2=value2`.
435
+ """
436
+ return pulumi.get(self, "tags")
437
+
438
+
439
+ @pulumi.output_type
440
+ class IntegrationMetricPrometheusSplunkV2(dict):
441
+ def __init__(__self__, *,
442
+ endpoint: _builtins.str,
443
+ token: _builtins.str,
444
+ tags: Optional[_builtins.str] = None):
445
+ """
446
+ :param _builtins.str endpoint: Splunk HEC endpoint URL. Example: `https://your-instance-id.splunkcloud.com:8088/services/collector`.
447
+ :param _builtins.str token: Splunk HEC (HTTP Event Collector) token for authentication.
448
+ :param _builtins.str tags: Additional tags to attach to metrics. Format: `key=value,key2=value2`.
449
+ """
450
+ pulumi.set(__self__, "endpoint", endpoint)
451
+ pulumi.set(__self__, "token", token)
452
+ if tags is not None:
453
+ pulumi.set(__self__, "tags", tags)
454
+
455
+ @_builtins.property
456
+ @pulumi.getter
457
+ def endpoint(self) -> _builtins.str:
458
+ """
459
+ Splunk HEC endpoint URL. Example: `https://your-instance-id.splunkcloud.com:8088/services/collector`.
460
+ """
461
+ return pulumi.get(self, "endpoint")
462
+
463
+ @_builtins.property
464
+ @pulumi.getter
465
+ def token(self) -> _builtins.str:
466
+ """
467
+ Splunk HEC (HTTP Event Collector) token for authentication.
468
+ """
469
+ return pulumi.get(self, "token")
470
+
471
+ @_builtins.property
472
+ @pulumi.getter
473
+ def tags(self) -> Optional[_builtins.str]:
474
+ """
475
+ Additional tags to attach to metrics. Format: `key=value,key2=value2`.
476
+ """
477
+ return pulumi.get(self, "tags")
478
+
479
+
480
+ @pulumi.output_type
481
+ class IntegrationMetricPrometheusStackdriverV2(dict):
482
+ @staticmethod
483
+ def __key_warning(key: str):
484
+ suggest = None
485
+ if key == "credentialsFile":
486
+ suggest = "credentials_file"
487
+ elif key == "clientEmail":
488
+ suggest = "client_email"
489
+ elif key == "privateKey":
490
+ suggest = "private_key"
491
+ elif key == "privateKeyId":
492
+ suggest = "private_key_id"
493
+ elif key == "projectId":
494
+ suggest = "project_id"
495
+
496
+ if suggest:
497
+ pulumi.log.warn(f"Key '{key}' not found in IntegrationMetricPrometheusStackdriverV2. Access the value via the '{suggest}' property getter instead.")
498
+
499
+ def __getitem__(self, key: str) -> Any:
500
+ IntegrationMetricPrometheusStackdriverV2.__key_warning(key)
501
+ return super().__getitem__(key)
502
+
503
+ def get(self, key: str, default = None) -> Any:
504
+ IntegrationMetricPrometheusStackdriverV2.__key_warning(key)
505
+ return super().get(key, default)
506
+
507
+ def __init__(__self__, *,
508
+ credentials_file: _builtins.str,
509
+ client_email: Optional[_builtins.str] = None,
510
+ private_key: Optional[_builtins.str] = None,
511
+ private_key_id: Optional[_builtins.str] = None,
512
+ project_id: Optional[_builtins.str] = None,
513
+ tags: Optional[_builtins.str] = None):
514
+ """
515
+ :param _builtins.str credentials_file: Base64-encoded Google service account key JSON file with 'Monitoring Metric Writer' permission.
516
+ :param _builtins.str client_email: Google service account client email (extracted from credentials file).
517
+ :param _builtins.str private_key: Google service account private key (extracted from credentials file).
518
+ :param _builtins.str private_key_id: Google service account private key ID (extracted from credentials file).
519
+ :param _builtins.str project_id: Google Cloud project ID (extracted from credentials file).
520
+ :param _builtins.str tags: Additional tags to attach to metrics. Format: `key=value,key2=value2`.
521
+
522
+ The following computed attributes are available:
523
+ """
524
+ pulumi.set(__self__, "credentials_file", credentials_file)
525
+ if client_email is not None:
526
+ pulumi.set(__self__, "client_email", client_email)
527
+ if private_key is not None:
528
+ pulumi.set(__self__, "private_key", private_key)
529
+ if private_key_id is not None:
530
+ pulumi.set(__self__, "private_key_id", private_key_id)
531
+ if project_id is not None:
532
+ pulumi.set(__self__, "project_id", project_id)
533
+ if tags is not None:
534
+ pulumi.set(__self__, "tags", tags)
535
+
536
+ @_builtins.property
537
+ @pulumi.getter(name="credentialsFile")
538
+ def credentials_file(self) -> _builtins.str:
539
+ """
540
+ Base64-encoded Google service account key JSON file with 'Monitoring Metric Writer' permission.
541
+ """
542
+ return pulumi.get(self, "credentials_file")
543
+
544
+ @_builtins.property
545
+ @pulumi.getter(name="clientEmail")
546
+ def client_email(self) -> Optional[_builtins.str]:
547
+ """
548
+ Google service account client email (extracted from credentials file).
549
+ """
550
+ return pulumi.get(self, "client_email")
551
+
552
+ @_builtins.property
553
+ @pulumi.getter(name="privateKey")
554
+ def private_key(self) -> Optional[_builtins.str]:
555
+ """
556
+ Google service account private key (extracted from credentials file).
557
+ """
558
+ return pulumi.get(self, "private_key")
559
+
560
+ @_builtins.property
561
+ @pulumi.getter(name="privateKeyId")
562
+ def private_key_id(self) -> Optional[_builtins.str]:
563
+ """
564
+ Google service account private key ID (extracted from credentials file).
565
+ """
566
+ return pulumi.get(self, "private_key_id")
567
+
568
+ @_builtins.property
569
+ @pulumi.getter(name="projectId")
570
+ def project_id(self) -> Optional[_builtins.str]:
571
+ """
572
+ Google Cloud project ID (extracted from credentials file).
573
+ """
574
+ return pulumi.get(self, "project_id")
575
+
576
+ @_builtins.property
577
+ @pulumi.getter
578
+ def tags(self) -> Optional[_builtins.str]:
579
+ """
580
+ Additional tags to attach to metrics. Format: `key=value,key2=value2`.
581
+
582
+ The following computed attributes are available:
583
+ """
584
+ return pulumi.get(self, "tags")
585
+
586
+
148
587
  @pulumi.output_type
149
588
  class NotificationResponder(dict):
150
589
  def __init__(__self__, *,
151
- type: builtins.str,
152
- id: Optional[builtins.str] = None,
153
- name: Optional[builtins.str] = None,
154
- username: Optional[builtins.str] = None):
155
- """
156
- :param builtins.str type: Type of responder. [`team`, `user`, `escalation`, `schedule`]
157
- :param builtins.str id: Identifier in UUID format
158
- :param builtins.str name: Name of the responder
159
- :param builtins.str username: Username of the responder
590
+ type: _builtins.str,
591
+ id: Optional[_builtins.str] = None,
592
+ name: Optional[_builtins.str] = None,
593
+ username: Optional[_builtins.str] = None):
594
+ """
595
+ :param _builtins.str type: Type of responder. [`team`, `user`, `escalation`, `schedule`]
596
+ :param _builtins.str id: Identifier in UUID format
597
+ :param _builtins.str name: Name of the responder
598
+ :param _builtins.str username: Username of the responder
160
599
 
161
600
  Responders of type `team`, `escalation` and `schedule` can use either id or name.
162
601
  While `user` can use either id or username.
@@ -169,33 +608,33 @@ class NotificationResponder(dict):
169
608
  if username is not None:
170
609
  pulumi.set(__self__, "username", username)
171
610
 
172
- @property
611
+ @_builtins.property
173
612
  @pulumi.getter
174
- def type(self) -> builtins.str:
613
+ def type(self) -> _builtins.str:
175
614
  """
176
615
  Type of responder. [`team`, `user`, `escalation`, `schedule`]
177
616
  """
178
617
  return pulumi.get(self, "type")
179
618
 
180
- @property
619
+ @_builtins.property
181
620
  @pulumi.getter
182
- def id(self) -> Optional[builtins.str]:
621
+ def id(self) -> Optional[_builtins.str]:
183
622
  """
184
623
  Identifier in UUID format
185
624
  """
186
625
  return pulumi.get(self, "id")
187
626
 
188
- @property
627
+ @_builtins.property
189
628
  @pulumi.getter
190
- def name(self) -> Optional[builtins.str]:
629
+ def name(self) -> Optional[_builtins.str]:
191
630
  """
192
631
  Name of the responder
193
632
  """
194
633
  return pulumi.get(self, "name")
195
634
 
196
- @property
635
+ @_builtins.property
197
636
  @pulumi.getter
198
- def username(self) -> Optional[builtins.str]:
637
+ def username(self) -> Optional[_builtins.str]:
199
638
  """
200
639
  Username of the responder
201
640
 
@@ -208,13 +647,13 @@ class NotificationResponder(dict):
208
647
  @pulumi.output_type
209
648
  class SecurityFirewallRule(dict):
210
649
  def __init__(__self__, *,
211
- ip: builtins.str,
212
- description: Optional[builtins.str] = None,
213
- ports: Optional[Sequence[builtins.int]] = None,
214
- services: Optional[Sequence[builtins.str]] = None):
650
+ ip: _builtins.str,
651
+ description: Optional[_builtins.str] = None,
652
+ ports: Optional[Sequence[_builtins.int]] = None,
653
+ services: Optional[Sequence[_builtins.str]] = None):
215
654
  """
216
- :param builtins.str ip: CIDR address: IP address with CIDR notation (e.g. 10.56.72.0/24)
217
- :param builtins.str description: Description name of the rule. e.g. Default.
655
+ :param _builtins.str ip: CIDR address: IP address with CIDR notation (e.g. 10.56.72.0/24)
656
+ :param _builtins.str description: Description name of the rule. e.g. Default.
218
657
 
219
658
  Pre-defined services for RabbitMQ:
220
659
 
@@ -239,8 +678,8 @@ class SecurityFirewallRule(dict):
239
678
  | HTTPS | 443 |
240
679
  | MQTT | 1883 |
241
680
  | MQTTS | 8883 |
242
- :param Sequence[builtins.int] ports: Custom ports to be opened
243
- :param Sequence[builtins.str] services: Pre-defined service ports, see table below
681
+ :param Sequence[_builtins.int] ports: Custom ports to be opened
682
+ :param Sequence[_builtins.str] services: Pre-defined service ports, see table below
244
683
  """
245
684
  pulumi.set(__self__, "ip", ip)
246
685
  if description is not None:
@@ -250,17 +689,17 @@ class SecurityFirewallRule(dict):
250
689
  if services is not None:
251
690
  pulumi.set(__self__, "services", services)
252
691
 
253
- @property
692
+ @_builtins.property
254
693
  @pulumi.getter
255
- def ip(self) -> builtins.str:
694
+ def ip(self) -> _builtins.str:
256
695
  """
257
696
  CIDR address: IP address with CIDR notation (e.g. 10.56.72.0/24)
258
697
  """
259
698
  return pulumi.get(self, "ip")
260
699
 
261
- @property
700
+ @_builtins.property
262
701
  @pulumi.getter
263
- def description(self) -> Optional[builtins.str]:
702
+ def description(self) -> Optional[_builtins.str]:
264
703
  """
265
704
  Description name of the rule. e.g. Default.
266
705
 
@@ -290,17 +729,17 @@ class SecurityFirewallRule(dict):
290
729
  """
291
730
  return pulumi.get(self, "description")
292
731
 
293
- @property
732
+ @_builtins.property
294
733
  @pulumi.getter
295
- def ports(self) -> Optional[Sequence[builtins.int]]:
734
+ def ports(self) -> Optional[Sequence[_builtins.int]]:
296
735
  """
297
736
  Custom ports to be opened
298
737
  """
299
738
  return pulumi.get(self, "ports")
300
739
 
301
- @property
740
+ @_builtins.property
302
741
  @pulumi.getter
303
- def services(self) -> Optional[Sequence[builtins.str]]:
742
+ def services(self) -> Optional[Sequence[_builtins.str]]:
304
743
  """
305
744
  Pre-defined service ports, see table below
306
745
  """
@@ -310,17 +749,17 @@ class SecurityFirewallRule(dict):
310
749
  @pulumi.output_type
311
750
  class GetAccountInstanceResult(dict):
312
751
  def __init__(__self__, *,
313
- id: builtins.int,
314
- name: builtins.str,
315
- plan: builtins.str,
316
- region: builtins.str,
317
- tags: Optional[Sequence[builtins.str]] = None):
318
- """
319
- :param builtins.int id: The instance identifier.
320
- :param builtins.str name: The name of the instance.
321
- :param builtins.str plan: The subscription plan used for the instance.
322
- :param builtins.str region: The region were the instanece is located in.
323
- :param Sequence[builtins.str] tags: Optional tags set for the instance.
752
+ id: _builtins.int,
753
+ name: _builtins.str,
754
+ plan: _builtins.str,
755
+ region: _builtins.str,
756
+ tags: Optional[Sequence[_builtins.str]] = None):
757
+ """
758
+ :param _builtins.int id: The instance identifier.
759
+ :param _builtins.str name: The name of the instance.
760
+ :param _builtins.str plan: The subscription plan used for the instance.
761
+ :param _builtins.str region: The region were the instanece is located in.
762
+ :param Sequence[_builtins.str] tags: Optional tags set for the instance.
324
763
  """
325
764
  pulumi.set(__self__, "id", id)
326
765
  pulumi.set(__self__, "name", name)
@@ -329,41 +768,41 @@ class GetAccountInstanceResult(dict):
329
768
  if tags is not None:
330
769
  pulumi.set(__self__, "tags", tags)
331
770
 
332
- @property
771
+ @_builtins.property
333
772
  @pulumi.getter
334
- def id(self) -> builtins.int:
773
+ def id(self) -> _builtins.int:
335
774
  """
336
775
  The instance identifier.
337
776
  """
338
777
  return pulumi.get(self, "id")
339
778
 
340
- @property
779
+ @_builtins.property
341
780
  @pulumi.getter
342
- def name(self) -> builtins.str:
781
+ def name(self) -> _builtins.str:
343
782
  """
344
783
  The name of the instance.
345
784
  """
346
785
  return pulumi.get(self, "name")
347
786
 
348
- @property
787
+ @_builtins.property
349
788
  @pulumi.getter
350
- def plan(self) -> builtins.str:
789
+ def plan(self) -> _builtins.str:
351
790
  """
352
791
  The subscription plan used for the instance.
353
792
  """
354
793
  return pulumi.get(self, "plan")
355
794
 
356
- @property
795
+ @_builtins.property
357
796
  @pulumi.getter
358
- def region(self) -> builtins.str:
797
+ def region(self) -> _builtins.str:
359
798
  """
360
799
  The region were the instanece is located in.
361
800
  """
362
801
  return pulumi.get(self, "region")
363
802
 
364
- @property
803
+ @_builtins.property
365
804
  @pulumi.getter
366
- def tags(self) -> Optional[Sequence[builtins.str]]:
805
+ def tags(self) -> Optional[Sequence[_builtins.str]]:
367
806
  """
368
807
  Optional tags set for the instance.
369
808
  """
@@ -373,19 +812,19 @@ class GetAccountInstanceResult(dict):
373
812
  @pulumi.output_type
374
813
  class GetAccountVpcsVpcResult(dict):
375
814
  def __init__(__self__, *,
376
- id: builtins.int,
377
- name: builtins.str,
378
- region: builtins.str,
379
- subnet: builtins.str,
380
- vpc_name: builtins.str,
381
- tags: Optional[Sequence[builtins.str]] = None):
382
- """
383
- :param builtins.int id: The VPC identifier.
384
- :param builtins.str name: The VPC instance name.
385
- :param builtins.str region: The region the VPC is hosted in.
386
- :param builtins.str subnet: The VPC subnet.
387
- :param builtins.str vpc_name: VPC name given when hosted at the cloud provider.
388
- :param Sequence[builtins.str] tags: Optional tags set for the VPC.
815
+ id: _builtins.int,
816
+ name: _builtins.str,
817
+ region: _builtins.str,
818
+ subnet: _builtins.str,
819
+ vpc_name: _builtins.str,
820
+ tags: Optional[Sequence[_builtins.str]] = None):
821
+ """
822
+ :param _builtins.int id: The VPC identifier.
823
+ :param _builtins.str name: The VPC instance name.
824
+ :param _builtins.str region: The region the VPC is hosted in.
825
+ :param _builtins.str subnet: The VPC subnet.
826
+ :param _builtins.str vpc_name: VPC name given when hosted at the cloud provider.
827
+ :param Sequence[_builtins.str] tags: Optional tags set for the VPC.
389
828
  """
390
829
  pulumi.set(__self__, "id", id)
391
830
  pulumi.set(__self__, "name", name)
@@ -395,49 +834,49 @@ class GetAccountVpcsVpcResult(dict):
395
834
  if tags is not None:
396
835
  pulumi.set(__self__, "tags", tags)
397
836
 
398
- @property
837
+ @_builtins.property
399
838
  @pulumi.getter
400
- def id(self) -> builtins.int:
839
+ def id(self) -> _builtins.int:
401
840
  """
402
841
  The VPC identifier.
403
842
  """
404
843
  return pulumi.get(self, "id")
405
844
 
406
- @property
845
+ @_builtins.property
407
846
  @pulumi.getter
408
- def name(self) -> builtins.str:
847
+ def name(self) -> _builtins.str:
409
848
  """
410
849
  The VPC instance name.
411
850
  """
412
851
  return pulumi.get(self, "name")
413
852
 
414
- @property
853
+ @_builtins.property
415
854
  @pulumi.getter
416
- def region(self) -> builtins.str:
855
+ def region(self) -> _builtins.str:
417
856
  """
418
857
  The region the VPC is hosted in.
419
858
  """
420
859
  return pulumi.get(self, "region")
421
860
 
422
- @property
861
+ @_builtins.property
423
862
  @pulumi.getter
424
- def subnet(self) -> builtins.str:
863
+ def subnet(self) -> _builtins.str:
425
864
  """
426
865
  The VPC subnet.
427
866
  """
428
867
  return pulumi.get(self, "subnet")
429
868
 
430
- @property
869
+ @_builtins.property
431
870
  @pulumi.getter(name="vpcName")
432
- def vpc_name(self) -> builtins.str:
871
+ def vpc_name(self) -> _builtins.str:
433
872
  """
434
873
  VPC name given when hosted at the cloud provider.
435
874
  """
436
875
  return pulumi.get(self, "vpc_name")
437
876
 
438
- @property
877
+ @_builtins.property
439
878
  @pulumi.getter
440
- def tags(self) -> Optional[Sequence[builtins.str]]:
879
+ def tags(self) -> Optional[Sequence[_builtins.str]]:
441
880
  """
442
881
  Optional tags set for the VPC.
443
882
  """
@@ -447,32 +886,32 @@ class GetAccountVpcsVpcResult(dict):
447
886
  @pulumi.output_type
448
887
  class GetAlarmsAlarmResult(dict):
449
888
  def __init__(__self__, *,
450
- enabled: builtins.bool,
451
- message_type: builtins.str,
452
- queue_regex: builtins.str,
453
- recipients: Sequence[builtins.int],
454
- reminder_interval: builtins.int,
455
- time_threshold: builtins.int,
456
- value_threshold: builtins.int,
457
- vhost_regex: builtins.str,
458
- alarm_id: Optional[builtins.int] = None,
459
- type: Optional[builtins.str] = None,
460
- value_calculation: Optional[builtins.str] = None):
461
- """
462
- :param builtins.bool enabled: Enable/disable status of the alarm.
463
- :param builtins.str message_type: Message type `(total, unacked, ready)` used by queue alarm type.
464
- :param builtins.str queue_regex: Regular expression for which queue to check.
465
- :param Sequence[builtins.int] recipients: Identifier for recipient to be notified.
466
- :param builtins.int reminder_interval: The reminder interval (in seconds) to resend the alarm if not resolved.
889
+ enabled: _builtins.bool,
890
+ message_type: _builtins.str,
891
+ queue_regex: _builtins.str,
892
+ recipients: Sequence[_builtins.int],
893
+ reminder_interval: _builtins.int,
894
+ time_threshold: _builtins.int,
895
+ value_threshold: _builtins.int,
896
+ vhost_regex: _builtins.str,
897
+ alarm_id: Optional[_builtins.int] = None,
898
+ type: Optional[_builtins.str] = None,
899
+ value_calculation: Optional[_builtins.str] = None):
900
+ """
901
+ :param _builtins.bool enabled: Enable/disable status of the alarm.
902
+ :param _builtins.str message_type: Message type `(total, unacked, ready)` used by queue alarm type.
903
+ :param _builtins.str queue_regex: Regular expression for which queue to check.
904
+ :param Sequence[_builtins.int] recipients: Identifier for recipient to be notified.
905
+ :param _builtins.int reminder_interval: The reminder interval (in seconds) to resend the alarm if not resolved.
467
906
  Set to 0 for no reminders.
468
- :param builtins.int time_threshold: The time interval (in seconds) the `value_threshold` should be active
907
+ :param _builtins.int time_threshold: The time interval (in seconds) the `value_threshold` should be active
469
908
  before trigger an alarm.
470
- :param builtins.int value_threshold: The value threshold that triggers the alarm.
471
- :param builtins.str vhost_regex: Regular expression for which vhost to check
472
- :param builtins.int alarm_id: The alarm identifier.
473
- :param builtins.str type: The alarm type to filter for. Supported
909
+ :param _builtins.int value_threshold: The value threshold that triggers the alarm.
910
+ :param _builtins.str vhost_regex: Regular expression for which vhost to check
911
+ :param _builtins.int alarm_id: The alarm identifier.
912
+ :param _builtins.str type: The alarm type to filter for. Supported
474
913
  alarm types.
475
- :param builtins.str value_calculation: Disk value threshold calculation, `(fixed, percentage)` of disk space
914
+ :param _builtins.str value_calculation: Disk value threshold calculation, `(fixed, percentage)` of disk space
476
915
  remaining.
477
916
  """
478
917
  pulumi.set(__self__, "enabled", enabled)
@@ -490,92 +929,92 @@ class GetAlarmsAlarmResult(dict):
490
929
  if value_calculation is not None:
491
930
  pulumi.set(__self__, "value_calculation", value_calculation)
492
931
 
493
- @property
932
+ @_builtins.property
494
933
  @pulumi.getter
495
- def enabled(self) -> builtins.bool:
934
+ def enabled(self) -> _builtins.bool:
496
935
  """
497
936
  Enable/disable status of the alarm.
498
937
  """
499
938
  return pulumi.get(self, "enabled")
500
939
 
501
- @property
940
+ @_builtins.property
502
941
  @pulumi.getter(name="messageType")
503
- def message_type(self) -> builtins.str:
942
+ def message_type(self) -> _builtins.str:
504
943
  """
505
944
  Message type `(total, unacked, ready)` used by queue alarm type.
506
945
  """
507
946
  return pulumi.get(self, "message_type")
508
947
 
509
- @property
948
+ @_builtins.property
510
949
  @pulumi.getter(name="queueRegex")
511
- def queue_regex(self) -> builtins.str:
950
+ def queue_regex(self) -> _builtins.str:
512
951
  """
513
952
  Regular expression for which queue to check.
514
953
  """
515
954
  return pulumi.get(self, "queue_regex")
516
955
 
517
- @property
956
+ @_builtins.property
518
957
  @pulumi.getter
519
- def recipients(self) -> Sequence[builtins.int]:
958
+ def recipients(self) -> Sequence[_builtins.int]:
520
959
  """
521
960
  Identifier for recipient to be notified.
522
961
  """
523
962
  return pulumi.get(self, "recipients")
524
963
 
525
- @property
964
+ @_builtins.property
526
965
  @pulumi.getter(name="reminderInterval")
527
- def reminder_interval(self) -> builtins.int:
966
+ def reminder_interval(self) -> _builtins.int:
528
967
  """
529
968
  The reminder interval (in seconds) to resend the alarm if not resolved.
530
969
  Set to 0 for no reminders.
531
970
  """
532
971
  return pulumi.get(self, "reminder_interval")
533
972
 
534
- @property
973
+ @_builtins.property
535
974
  @pulumi.getter(name="timeThreshold")
536
- def time_threshold(self) -> builtins.int:
975
+ def time_threshold(self) -> _builtins.int:
537
976
  """
538
977
  The time interval (in seconds) the `value_threshold` should be active
539
978
  before trigger an alarm.
540
979
  """
541
980
  return pulumi.get(self, "time_threshold")
542
981
 
543
- @property
982
+ @_builtins.property
544
983
  @pulumi.getter(name="valueThreshold")
545
- def value_threshold(self) -> builtins.int:
984
+ def value_threshold(self) -> _builtins.int:
546
985
  """
547
986
  The value threshold that triggers the alarm.
548
987
  """
549
988
  return pulumi.get(self, "value_threshold")
550
989
 
551
- @property
990
+ @_builtins.property
552
991
  @pulumi.getter(name="vhostRegex")
553
- def vhost_regex(self) -> builtins.str:
992
+ def vhost_regex(self) -> _builtins.str:
554
993
  """
555
994
  Regular expression for which vhost to check
556
995
  """
557
996
  return pulumi.get(self, "vhost_regex")
558
997
 
559
- @property
998
+ @_builtins.property
560
999
  @pulumi.getter(name="alarmId")
561
- def alarm_id(self) -> Optional[builtins.int]:
1000
+ def alarm_id(self) -> Optional[_builtins.int]:
562
1001
  """
563
1002
  The alarm identifier.
564
1003
  """
565
1004
  return pulumi.get(self, "alarm_id")
566
1005
 
567
- @property
1006
+ @_builtins.property
568
1007
  @pulumi.getter
569
- def type(self) -> Optional[builtins.str]:
1008
+ def type(self) -> Optional[_builtins.str]:
570
1009
  """
571
1010
  The alarm type to filter for. Supported
572
1011
  alarm types.
573
1012
  """
574
1013
  return pulumi.get(self, "type")
575
1014
 
576
- @property
1015
+ @_builtins.property
577
1016
  @pulumi.getter(name="valueCalculation")
578
- def value_calculation(self) -> Optional[builtins.str]:
1017
+ def value_calculation(self) -> Optional[_builtins.str]:
579
1018
  """
580
1019
  Disk value threshold calculation, `(fixed, percentage)` of disk space
581
1020
  remaining.
@@ -586,29 +1025,29 @@ class GetAlarmsAlarmResult(dict):
586
1025
  @pulumi.output_type
587
1026
  class GetNodesNodeResult(dict):
588
1027
  def __init__(__self__, *,
589
- additional_disk_size: builtins.int,
590
- availability_zone: builtins.str,
591
- configured: builtins.bool,
592
- disk_size: builtins.int,
593
- erlang_version: builtins.str,
594
- hipe: builtins.bool,
595
- hostname: builtins.str,
596
- hostname_internal: builtins.str,
597
- name: builtins.str,
598
- rabbitmq_version: builtins.str,
599
- running: builtins.bool):
600
- """
601
- :param builtins.int additional_disk_size: Additional added disk size
602
- :param builtins.str availability_zone: Availability zone the node is hosted in.
603
- :param builtins.bool configured: Is the node configured?
604
- :param builtins.int disk_size: Subscription plan disk size
605
- :param builtins.str erlang_version: Currently used Erlang version on the node.
606
- :param builtins.bool hipe: Enable or disable High-performance Erlang.
607
- :param builtins.str hostname: External hostname assigned to the node.
608
- :param builtins.str hostname_internal: Internal hostname assigned to the node.
609
- :param builtins.str name: Name of the node.
610
- :param builtins.str rabbitmq_version: Currently configured Rabbit MQ version on the node.
611
- :param builtins.bool running: Is the node running?
1028
+ additional_disk_size: _builtins.int,
1029
+ availability_zone: _builtins.str,
1030
+ configured: _builtins.bool,
1031
+ disk_size: _builtins.int,
1032
+ erlang_version: _builtins.str,
1033
+ hipe: _builtins.bool,
1034
+ hostname: _builtins.str,
1035
+ hostname_internal: _builtins.str,
1036
+ name: _builtins.str,
1037
+ rabbitmq_version: _builtins.str,
1038
+ running: _builtins.bool):
1039
+ """
1040
+ :param _builtins.int additional_disk_size: Additional added disk size
1041
+ :param _builtins.str availability_zone: Availability zone the node is hosted in.
1042
+ :param _builtins.bool configured: Is the node configured?
1043
+ :param _builtins.int disk_size: Subscription plan disk size
1044
+ :param _builtins.str erlang_version: Currently used Erlang version on the node.
1045
+ :param _builtins.bool hipe: Enable or disable High-performance Erlang.
1046
+ :param _builtins.str hostname: External hostname assigned to the node.
1047
+ :param _builtins.str hostname_internal: Internal hostname assigned to the node.
1048
+ :param _builtins.str name: Name of the node.
1049
+ :param _builtins.str rabbitmq_version: Currently configured Rabbit MQ version on the node.
1050
+ :param _builtins.bool running: Is the node running?
612
1051
  """
613
1052
  pulumi.set(__self__, "additional_disk_size", additional_disk_size)
614
1053
  pulumi.set(__self__, "availability_zone", availability_zone)
@@ -622,89 +1061,89 @@ class GetNodesNodeResult(dict):
622
1061
  pulumi.set(__self__, "rabbitmq_version", rabbitmq_version)
623
1062
  pulumi.set(__self__, "running", running)
624
1063
 
625
- @property
1064
+ @_builtins.property
626
1065
  @pulumi.getter(name="additionalDiskSize")
627
- def additional_disk_size(self) -> builtins.int:
1066
+ def additional_disk_size(self) -> _builtins.int:
628
1067
  """
629
1068
  Additional added disk size
630
1069
  """
631
1070
  return pulumi.get(self, "additional_disk_size")
632
1071
 
633
- @property
1072
+ @_builtins.property
634
1073
  @pulumi.getter(name="availabilityZone")
635
- def availability_zone(self) -> builtins.str:
1074
+ def availability_zone(self) -> _builtins.str:
636
1075
  """
637
1076
  Availability zone the node is hosted in.
638
1077
  """
639
1078
  return pulumi.get(self, "availability_zone")
640
1079
 
641
- @property
1080
+ @_builtins.property
642
1081
  @pulumi.getter
643
- def configured(self) -> builtins.bool:
1082
+ def configured(self) -> _builtins.bool:
644
1083
  """
645
1084
  Is the node configured?
646
1085
  """
647
1086
  return pulumi.get(self, "configured")
648
1087
 
649
- @property
1088
+ @_builtins.property
650
1089
  @pulumi.getter(name="diskSize")
651
- def disk_size(self) -> builtins.int:
1090
+ def disk_size(self) -> _builtins.int:
652
1091
  """
653
1092
  Subscription plan disk size
654
1093
  """
655
1094
  return pulumi.get(self, "disk_size")
656
1095
 
657
- @property
1096
+ @_builtins.property
658
1097
  @pulumi.getter(name="erlangVersion")
659
- def erlang_version(self) -> builtins.str:
1098
+ def erlang_version(self) -> _builtins.str:
660
1099
  """
661
1100
  Currently used Erlang version on the node.
662
1101
  """
663
1102
  return pulumi.get(self, "erlang_version")
664
1103
 
665
- @property
1104
+ @_builtins.property
666
1105
  @pulumi.getter
667
- def hipe(self) -> builtins.bool:
1106
+ def hipe(self) -> _builtins.bool:
668
1107
  """
669
1108
  Enable or disable High-performance Erlang.
670
1109
  """
671
1110
  return pulumi.get(self, "hipe")
672
1111
 
673
- @property
1112
+ @_builtins.property
674
1113
  @pulumi.getter
675
- def hostname(self) -> builtins.str:
1114
+ def hostname(self) -> _builtins.str:
676
1115
  """
677
1116
  External hostname assigned to the node.
678
1117
  """
679
1118
  return pulumi.get(self, "hostname")
680
1119
 
681
- @property
1120
+ @_builtins.property
682
1121
  @pulumi.getter(name="hostnameInternal")
683
- def hostname_internal(self) -> builtins.str:
1122
+ def hostname_internal(self) -> _builtins.str:
684
1123
  """
685
1124
  Internal hostname assigned to the node.
686
1125
  """
687
1126
  return pulumi.get(self, "hostname_internal")
688
1127
 
689
- @property
1128
+ @_builtins.property
690
1129
  @pulumi.getter
691
- def name(self) -> builtins.str:
1130
+ def name(self) -> _builtins.str:
692
1131
  """
693
1132
  Name of the node.
694
1133
  """
695
1134
  return pulumi.get(self, "name")
696
1135
 
697
- @property
1136
+ @_builtins.property
698
1137
  @pulumi.getter(name="rabbitmqVersion")
699
- def rabbitmq_version(self) -> builtins.str:
1138
+ def rabbitmq_version(self) -> _builtins.str:
700
1139
  """
701
1140
  Currently configured Rabbit MQ version on the node.
702
1141
  """
703
1142
  return pulumi.get(self, "rabbitmq_version")
704
1143
 
705
- @property
1144
+ @_builtins.property
706
1145
  @pulumi.getter
707
- def running(self) -> builtins.bool:
1146
+ def running(self) -> _builtins.bool:
708
1147
  """
709
1148
  Is the node running?
710
1149
  """
@@ -714,17 +1153,17 @@ class GetNodesNodeResult(dict):
714
1153
  @pulumi.output_type
715
1154
  class GetNotificationsRecipientResult(dict):
716
1155
  def __init__(__self__, *,
717
- name: builtins.str,
718
- options: Mapping[str, builtins.str],
719
- recipient_id: builtins.int,
720
- type: builtins.str,
721
- value: builtins.str):
722
- """
723
- :param builtins.str name: The name of the recipient.
724
- :param Mapping[str, builtins.str] options: Options argument (e.g. `rk` used for VictorOps routing key).
725
- :param builtins.int recipient_id: The identifier for the recipient.
726
- :param builtins.str type: The type of the recipient.
727
- :param builtins.str value: The notification endpoint, where to send the notification.
1156
+ name: _builtins.str,
1157
+ options: Mapping[str, _builtins.str],
1158
+ recipient_id: _builtins.int,
1159
+ type: _builtins.str,
1160
+ value: _builtins.str):
1161
+ """
1162
+ :param _builtins.str name: The name of the recipient.
1163
+ :param Mapping[str, _builtins.str] options: Options argument (e.g. `rk` used for VictorOps routing key).
1164
+ :param _builtins.int recipient_id: The identifier for the recipient.
1165
+ :param _builtins.str type: The type of the recipient.
1166
+ :param _builtins.str value: The notification endpoint, where to send the notification.
728
1167
  """
729
1168
  pulumi.set(__self__, "name", name)
730
1169
  pulumi.set(__self__, "options", options)
@@ -732,41 +1171,41 @@ class GetNotificationsRecipientResult(dict):
732
1171
  pulumi.set(__self__, "type", type)
733
1172
  pulumi.set(__self__, "value", value)
734
1173
 
735
- @property
1174
+ @_builtins.property
736
1175
  @pulumi.getter
737
- def name(self) -> builtins.str:
1176
+ def name(self) -> _builtins.str:
738
1177
  """
739
1178
  The name of the recipient.
740
1179
  """
741
1180
  return pulumi.get(self, "name")
742
1181
 
743
- @property
1182
+ @_builtins.property
744
1183
  @pulumi.getter
745
- def options(self) -> Mapping[str, builtins.str]:
1184
+ def options(self) -> Mapping[str, _builtins.str]:
746
1185
  """
747
1186
  Options argument (e.g. `rk` used for VictorOps routing key).
748
1187
  """
749
1188
  return pulumi.get(self, "options")
750
1189
 
751
- @property
1190
+ @_builtins.property
752
1191
  @pulumi.getter(name="recipientId")
753
- def recipient_id(self) -> builtins.int:
1192
+ def recipient_id(self) -> _builtins.int:
754
1193
  """
755
1194
  The identifier for the recipient.
756
1195
  """
757
1196
  return pulumi.get(self, "recipient_id")
758
1197
 
759
- @property
1198
+ @_builtins.property
760
1199
  @pulumi.getter
761
- def type(self) -> builtins.str:
1200
+ def type(self) -> _builtins.str:
762
1201
  """
763
1202
  The type of the recipient.
764
1203
  """
765
1204
  return pulumi.get(self, "type")
766
1205
 
767
- @property
1206
+ @_builtins.property
768
1207
  @pulumi.getter
769
- def value(self) -> builtins.str:
1208
+ def value(self) -> _builtins.str:
770
1209
  """
771
1210
  The notification endpoint, where to send the notification.
772
1211
  """
@@ -776,37 +1215,37 @@ class GetNotificationsRecipientResult(dict):
776
1215
  @pulumi.output_type
777
1216
  class GetPluginsCommunityPluginResult(dict):
778
1217
  def __init__(__self__, *,
779
- description: builtins.str,
780
- name: builtins.str,
781
- require: builtins.str):
1218
+ description: _builtins.str,
1219
+ name: _builtins.str,
1220
+ require: _builtins.str):
782
1221
  """
783
- :param builtins.str description: Description of what the plugin does.
784
- :param builtins.str name: The type of the recipient.
785
- :param builtins.str require: Min. required Rabbit MQ version to be used.
1222
+ :param _builtins.str description: Description of what the plugin does.
1223
+ :param _builtins.str name: The type of the recipient.
1224
+ :param _builtins.str require: Min. required Rabbit MQ version to be used.
786
1225
  """
787
1226
  pulumi.set(__self__, "description", description)
788
1227
  pulumi.set(__self__, "name", name)
789
1228
  pulumi.set(__self__, "require", require)
790
1229
 
791
- @property
1230
+ @_builtins.property
792
1231
  @pulumi.getter
793
- def description(self) -> builtins.str:
1232
+ def description(self) -> _builtins.str:
794
1233
  """
795
1234
  Description of what the plugin does.
796
1235
  """
797
1236
  return pulumi.get(self, "description")
798
1237
 
799
- @property
1238
+ @_builtins.property
800
1239
  @pulumi.getter
801
- def name(self) -> builtins.str:
1240
+ def name(self) -> _builtins.str:
802
1241
  """
803
1242
  The type of the recipient.
804
1243
  """
805
1244
  return pulumi.get(self, "name")
806
1245
 
807
- @property
1246
+ @_builtins.property
808
1247
  @pulumi.getter
809
- def require(self) -> builtins.str:
1248
+ def require(self) -> _builtins.str:
810
1249
  """
811
1250
  Min. required Rabbit MQ version to be used.
812
1251
  """
@@ -816,48 +1255,48 @@ class GetPluginsCommunityPluginResult(dict):
816
1255
  @pulumi.output_type
817
1256
  class GetPluginsPluginResult(dict):
818
1257
  def __init__(__self__, *,
819
- description: builtins.str,
820
- enabled: builtins.bool,
821
- name: builtins.str,
822
- version: builtins.str):
1258
+ description: _builtins.str,
1259
+ enabled: _builtins.bool,
1260
+ name: _builtins.str,
1261
+ version: _builtins.str):
823
1262
  """
824
- :param builtins.str description: Description of what the plugin does.
825
- :param builtins.bool enabled: Enable or disable information for the plugin.
826
- :param builtins.str name: The type of the recipient.
827
- :param builtins.str version: Rabbit MQ version that the plugins are shipped with.
1263
+ :param _builtins.str description: Description of what the plugin does.
1264
+ :param _builtins.bool enabled: Enable or disable information for the plugin.
1265
+ :param _builtins.str name: The type of the recipient.
1266
+ :param _builtins.str version: Rabbit MQ version that the plugins are shipped with.
828
1267
  """
829
1268
  pulumi.set(__self__, "description", description)
830
1269
  pulumi.set(__self__, "enabled", enabled)
831
1270
  pulumi.set(__self__, "name", name)
832
1271
  pulumi.set(__self__, "version", version)
833
1272
 
834
- @property
1273
+ @_builtins.property
835
1274
  @pulumi.getter
836
- def description(self) -> builtins.str:
1275
+ def description(self) -> _builtins.str:
837
1276
  """
838
1277
  Description of what the plugin does.
839
1278
  """
840
1279
  return pulumi.get(self, "description")
841
1280
 
842
- @property
1281
+ @_builtins.property
843
1282
  @pulumi.getter
844
- def enabled(self) -> builtins.bool:
1283
+ def enabled(self) -> _builtins.bool:
845
1284
  """
846
1285
  Enable or disable information for the plugin.
847
1286
  """
848
1287
  return pulumi.get(self, "enabled")
849
1288
 
850
- @property
1289
+ @_builtins.property
851
1290
  @pulumi.getter
852
- def name(self) -> builtins.str:
1291
+ def name(self) -> _builtins.str:
853
1292
  """
854
1293
  The type of the recipient.
855
1294
  """
856
1295
  return pulumi.get(self, "name")
857
1296
 
858
- @property
1297
+ @_builtins.property
859
1298
  @pulumi.getter
860
- def version(self) -> builtins.str:
1299
+ def version(self) -> _builtins.str:
861
1300
  """
862
1301
  Rabbit MQ version that the plugins are shipped with.
863
1302
  """