pulumi-cloudamqp 3.21.0a1743571485__py3-none-any.whl → 3.22.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-cloudamqp might be problematic. Click here for more details.

Files changed (51) hide show
  1. pulumi_cloudamqp/__init__.py +12 -0
  2. pulumi_cloudamqp/_inputs.py +92 -72
  3. pulumi_cloudamqp/account_action.py +42 -31
  4. pulumi_cloudamqp/alarm.py +232 -168
  5. pulumi_cloudamqp/config/__init__.py +1 -0
  6. pulumi_cloudamqp/config/__init__.pyi +1 -0
  7. pulumi_cloudamqp/config/vars.py +1 -0
  8. pulumi_cloudamqp/custom_domain.py +84 -38
  9. pulumi_cloudamqp/extra_disk_size.py +175 -155
  10. pulumi_cloudamqp/get_account.py +10 -3
  11. pulumi_cloudamqp/get_account_vpcs.py +15 -41
  12. pulumi_cloudamqp/get_alarm.py +74 -67
  13. pulumi_cloudamqp/get_alarms.py +165 -0
  14. pulumi_cloudamqp/get_credentials.py +19 -26
  15. pulumi_cloudamqp/get_instance.py +75 -25
  16. pulumi_cloudamqp/get_nodes.py +10 -56
  17. pulumi_cloudamqp/get_notification.py +39 -41
  18. pulumi_cloudamqp/get_notifications.py +135 -0
  19. pulumi_cloudamqp/get_plugins.py +28 -54
  20. pulumi_cloudamqp/get_plugins_community.py +29 -52
  21. pulumi_cloudamqp/get_upgradable_versions.py +19 -24
  22. pulumi_cloudamqp/get_vpc_gcp_info.py +44 -138
  23. pulumi_cloudamqp/get_vpc_info.py +34 -127
  24. pulumi_cloudamqp/instance.py +560 -333
  25. pulumi_cloudamqp/integration_aws_eventbridge.py +185 -117
  26. pulumi_cloudamqp/integration_log.py +491 -402
  27. pulumi_cloudamqp/integration_metric.py +348 -296
  28. pulumi_cloudamqp/maintenance_window.py +519 -0
  29. pulumi_cloudamqp/node_actions.py +85 -59
  30. pulumi_cloudamqp/notification.py +177 -92
  31. pulumi_cloudamqp/outputs.py +419 -125
  32. pulumi_cloudamqp/plugin.py +173 -105
  33. pulumi_cloudamqp/plugin_community.py +171 -107
  34. pulumi_cloudamqp/privatelink_aws.py +143 -347
  35. pulumi_cloudamqp/privatelink_azure.py +145 -345
  36. pulumi_cloudamqp/provider.py +25 -21
  37. pulumi_cloudamqp/pulumi-plugin.json +1 -1
  38. pulumi_cloudamqp/rabbit_configuration.py +337 -210
  39. pulumi_cloudamqp/security_firewall.py +114 -57
  40. pulumi_cloudamqp/upgrade_lavinmq.py +32 -102
  41. pulumi_cloudamqp/upgrade_rabbitmq.py +56 -299
  42. pulumi_cloudamqp/vpc.py +115 -79
  43. pulumi_cloudamqp/vpc_connect.py +222 -606
  44. pulumi_cloudamqp/vpc_gcp_peering.py +230 -591
  45. pulumi_cloudamqp/vpc_peering.py +123 -105
  46. pulumi_cloudamqp/webhook.py +146 -103
  47. {pulumi_cloudamqp-3.21.0a1743571485.dist-info → pulumi_cloudamqp-3.22.0.dist-info}/METADATA +1 -1
  48. pulumi_cloudamqp-3.22.0.dist-info/RECORD +52 -0
  49. {pulumi_cloudamqp-3.21.0a1743571485.dist-info → pulumi_cloudamqp-3.22.0.dist-info}/WHEEL +1 -1
  50. pulumi_cloudamqp-3.21.0a1743571485.dist-info/RECORD +0 -49
  51. {pulumi_cloudamqp-3.21.0a1743571485.dist-info → pulumi_cloudamqp-3.22.0.dist-info}/top_level.txt +0 -0
pulumi_cloudamqp/vpc.py CHANGED
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -19,16 +20,16 @@ __all__ = ['VpcArgs', 'Vpc']
19
20
  @pulumi.input_type
20
21
  class VpcArgs:
21
22
  def __init__(__self__, *,
22
- region: pulumi.Input[str],
23
- subnet: pulumi.Input[str],
24
- name: Optional[pulumi.Input[str]] = None,
25
- tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
23
+ region: pulumi.Input[builtins.str],
24
+ subnet: pulumi.Input[builtins.str],
25
+ name: Optional[pulumi.Input[builtins.str]] = None,
26
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None):
26
27
  """
27
28
  The set of arguments for constructing a Vpc resource.
28
- :param pulumi.Input[str] region: The hosted region for the managed standalone VPC
29
- :param pulumi.Input[str] subnet: The VPC subnet
30
- :param pulumi.Input[str] name: The name of the VPC.
31
- :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: Tag the VPC with optional tags
29
+ :param pulumi.Input[builtins.str] region: The hosted region for the managed standalone VPC
30
+ :param pulumi.Input[builtins.str] subnet: The VPC subnet
31
+ :param pulumi.Input[builtins.str] name: The name of the VPC.
32
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] tags: Tag the VPC with optional tags
32
33
  """
33
34
  pulumi.set(__self__, "region", region)
34
35
  pulumi.set(__self__, "subnet", subnet)
@@ -39,68 +40,68 @@ class VpcArgs:
39
40
 
40
41
  @property
41
42
  @pulumi.getter
42
- def region(self) -> pulumi.Input[str]:
43
+ def region(self) -> pulumi.Input[builtins.str]:
43
44
  """
44
45
  The hosted region for the managed standalone VPC
45
46
  """
46
47
  return pulumi.get(self, "region")
47
48
 
48
49
  @region.setter
49
- def region(self, value: pulumi.Input[str]):
50
+ def region(self, value: pulumi.Input[builtins.str]):
50
51
  pulumi.set(self, "region", value)
51
52
 
52
53
  @property
53
54
  @pulumi.getter
54
- def subnet(self) -> pulumi.Input[str]:
55
+ def subnet(self) -> pulumi.Input[builtins.str]:
55
56
  """
56
57
  The VPC subnet
57
58
  """
58
59
  return pulumi.get(self, "subnet")
59
60
 
60
61
  @subnet.setter
61
- def subnet(self, value: pulumi.Input[str]):
62
+ def subnet(self, value: pulumi.Input[builtins.str]):
62
63
  pulumi.set(self, "subnet", value)
63
64
 
64
65
  @property
65
66
  @pulumi.getter
66
- def name(self) -> Optional[pulumi.Input[str]]:
67
+ def name(self) -> Optional[pulumi.Input[builtins.str]]:
67
68
  """
68
69
  The name of the VPC.
69
70
  """
70
71
  return pulumi.get(self, "name")
71
72
 
72
73
  @name.setter
73
- def name(self, value: Optional[pulumi.Input[str]]):
74
+ def name(self, value: Optional[pulumi.Input[builtins.str]]):
74
75
  pulumi.set(self, "name", value)
75
76
 
76
77
  @property
77
78
  @pulumi.getter
78
- def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
79
+ def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
79
80
  """
80
81
  Tag the VPC with optional tags
81
82
  """
82
83
  return pulumi.get(self, "tags")
83
84
 
84
85
  @tags.setter
85
- def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
86
+ def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
86
87
  pulumi.set(self, "tags", value)
87
88
 
88
89
 
89
90
  @pulumi.input_type
90
91
  class _VpcState:
91
92
  def __init__(__self__, *,
92
- name: Optional[pulumi.Input[str]] = None,
93
- region: Optional[pulumi.Input[str]] = None,
94
- subnet: Optional[pulumi.Input[str]] = None,
95
- tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
96
- vpc_name: Optional[pulumi.Input[str]] = None):
93
+ name: Optional[pulumi.Input[builtins.str]] = None,
94
+ region: Optional[pulumi.Input[builtins.str]] = None,
95
+ subnet: Optional[pulumi.Input[builtins.str]] = None,
96
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
97
+ vpc_name: Optional[pulumi.Input[builtins.str]] = None):
97
98
  """
98
99
  Input properties used for looking up and filtering Vpc resources.
99
- :param pulumi.Input[str] name: The name of the VPC.
100
- :param pulumi.Input[str] region: The hosted region for the managed standalone VPC
101
- :param pulumi.Input[str] subnet: The VPC subnet
102
- :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: Tag the VPC with optional tags
103
- :param pulumi.Input[str] vpc_name: VPC name given when hosted at the cloud provider
100
+ :param pulumi.Input[builtins.str] name: The name of the VPC.
101
+ :param pulumi.Input[builtins.str] region: The hosted region for the managed standalone VPC
102
+ :param pulumi.Input[builtins.str] subnet: The VPC subnet
103
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] tags: Tag the VPC with optional tags
104
+ :param pulumi.Input[builtins.str] vpc_name: VPC name given when hosted at the cloud provider
104
105
  """
105
106
  if name is not None:
106
107
  pulumi.set(__self__, "name", name)
@@ -115,83 +116,87 @@ class _VpcState:
115
116
 
116
117
  @property
117
118
  @pulumi.getter
118
- def name(self) -> Optional[pulumi.Input[str]]:
119
+ def name(self) -> Optional[pulumi.Input[builtins.str]]:
119
120
  """
120
121
  The name of the VPC.
121
122
  """
122
123
  return pulumi.get(self, "name")
123
124
 
124
125
  @name.setter
125
- def name(self, value: Optional[pulumi.Input[str]]):
126
+ def name(self, value: Optional[pulumi.Input[builtins.str]]):
126
127
  pulumi.set(self, "name", value)
127
128
 
128
129
  @property
129
130
  @pulumi.getter
130
- def region(self) -> Optional[pulumi.Input[str]]:
131
+ def region(self) -> Optional[pulumi.Input[builtins.str]]:
131
132
  """
132
133
  The hosted region for the managed standalone VPC
133
134
  """
134
135
  return pulumi.get(self, "region")
135
136
 
136
137
  @region.setter
137
- def region(self, value: Optional[pulumi.Input[str]]):
138
+ def region(self, value: Optional[pulumi.Input[builtins.str]]):
138
139
  pulumi.set(self, "region", value)
139
140
 
140
141
  @property
141
142
  @pulumi.getter
142
- def subnet(self) -> Optional[pulumi.Input[str]]:
143
+ def subnet(self) -> Optional[pulumi.Input[builtins.str]]:
143
144
  """
144
145
  The VPC subnet
145
146
  """
146
147
  return pulumi.get(self, "subnet")
147
148
 
148
149
  @subnet.setter
149
- def subnet(self, value: Optional[pulumi.Input[str]]):
150
+ def subnet(self, value: Optional[pulumi.Input[builtins.str]]):
150
151
  pulumi.set(self, "subnet", value)
151
152
 
152
153
  @property
153
154
  @pulumi.getter
154
- def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
155
+ def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
155
156
  """
156
157
  Tag the VPC with optional tags
157
158
  """
158
159
  return pulumi.get(self, "tags")
159
160
 
160
161
  @tags.setter
161
- def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
162
+ def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
162
163
  pulumi.set(self, "tags", value)
163
164
 
164
165
  @property
165
166
  @pulumi.getter(name="vpcName")
166
- def vpc_name(self) -> Optional[pulumi.Input[str]]:
167
+ def vpc_name(self) -> Optional[pulumi.Input[builtins.str]]:
167
168
  """
168
169
  VPC name given when hosted at the cloud provider
169
170
  """
170
171
  return pulumi.get(self, "vpc_name")
171
172
 
172
173
  @vpc_name.setter
173
- def vpc_name(self, value: Optional[pulumi.Input[str]]):
174
+ def vpc_name(self, value: Optional[pulumi.Input[builtins.str]]):
174
175
  pulumi.set(self, "vpc_name", value)
175
176
 
176
177
 
177
178
  class Vpc(pulumi.CustomResource):
179
+
180
+ pulumi_type = "cloudamqp:index/vpc:Vpc"
181
+
178
182
  @overload
179
183
  def __init__(__self__,
180
184
  resource_name: str,
181
185
  opts: Optional[pulumi.ResourceOptions] = None,
182
- name: Optional[pulumi.Input[str]] = None,
183
- region: Optional[pulumi.Input[str]] = None,
184
- subnet: Optional[pulumi.Input[str]] = None,
185
- tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
186
+ name: Optional[pulumi.Input[builtins.str]] = None,
187
+ region: Optional[pulumi.Input[builtins.str]] = None,
188
+ subnet: Optional[pulumi.Input[builtins.str]] = None,
189
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
186
190
  __props__=None):
187
191
  """
188
192
  This resource allows you to manage standalone VPC.
189
193
 
190
- New Cloudamqp instances can be added to the managed VPC. Set the instance *vpc_id* attribute to the managed vpc identifier , see example below, when creating the instance.
194
+ New Cloudamqp instances can be added to the managed VPC. Set the instance *vpc_id* attribute to the
195
+ managed vpc identifier, see example below, when creating the instance.
191
196
 
192
197
  Only available for dedicated subscription plans.
193
198
 
194
- Pricing is available at [cloudamqp.com](https://www.cloudamqp.com/plans.html).
199
+ Pricing is available at [CloudAMQP plans].
195
200
 
196
201
  ## Example Usage
197
202
 
@@ -208,11 +213,10 @@ class Vpc(pulumi.CustomResource):
208
213
  # New instance, need to be created with a vpc
209
214
  instance = cloudamqp.Instance("instance",
210
215
  name="<Instance name>",
211
- plan="bunny-1",
216
+ plan="penguin-1",
212
217
  region="amazon-web-services::us-east-1",
213
218
  nodes=1,
214
219
  tags=[],
215
- rmq_version="3.9.13",
216
220
  vpc_id=vpc_cloudamq_vpc["id"],
217
221
  keep_associated_vpc=True)
218
222
  # Additional VPC information
@@ -221,22 +225,38 @@ class Vpc(pulumi.CustomResource):
221
225
 
222
226
  ## Import
223
227
 
224
- `cloudamqp_vpc` can be imported using the CloudAMQP VPC identifier.
228
+ `cloudamqp_vpc` can be imported using the CloudAMQP VPC identifier. To retrieve the identifier of an
229
+
230
+ instance, use [CloudAMQP API list vpcs].
231
+
232
+ From Terraform v1.5.0, the `import` block can be used to import this resource:
233
+
234
+ hcl
235
+
236
+ import {
237
+
238
+ to = cloudamqp_vpc.vpc
239
+
240
+ id = <vpc_id>
241
+
242
+ }
243
+
244
+ Or with Terraform CLI:
225
245
 
226
246
  ```sh
227
- $ pulumi import cloudamqp:index/vpc:Vpc <resource_name> <vpc_id>`
247
+ $ pulumi import cloudamqp:index/vpc:Vpc vpc <vpc_id>`
228
248
  ```
229
249
 
230
- To retrieve the identifier for a VPC, either use [CloudAMQP customer API](https://docs.cloudamqp.com/#list-vpcs).
250
+ [CloudAMQP API list vpcs]: https://docs.cloudamqp.com/#list-vpcs
231
251
 
232
- Or use the data source `cloudamqp_account_vpcs` to list all available standalone VPCs for an account.
252
+ [CloudAMQP plans]: https://www.cloudamqp.com/plans.html
233
253
 
234
254
  :param str resource_name: The name of the resource.
235
255
  :param pulumi.ResourceOptions opts: Options for the resource.
236
- :param pulumi.Input[str] name: The name of the VPC.
237
- :param pulumi.Input[str] region: The hosted region for the managed standalone VPC
238
- :param pulumi.Input[str] subnet: The VPC subnet
239
- :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: Tag the VPC with optional tags
256
+ :param pulumi.Input[builtins.str] name: The name of the VPC.
257
+ :param pulumi.Input[builtins.str] region: The hosted region for the managed standalone VPC
258
+ :param pulumi.Input[builtins.str] subnet: The VPC subnet
259
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] tags: Tag the VPC with optional tags
240
260
  """
241
261
  ...
242
262
  @overload
@@ -247,11 +267,12 @@ class Vpc(pulumi.CustomResource):
247
267
  """
248
268
  This resource allows you to manage standalone VPC.
249
269
 
250
- New Cloudamqp instances can be added to the managed VPC. Set the instance *vpc_id* attribute to the managed vpc identifier , see example below, when creating the instance.
270
+ New Cloudamqp instances can be added to the managed VPC. Set the instance *vpc_id* attribute to the
271
+ managed vpc identifier, see example below, when creating the instance.
251
272
 
252
273
  Only available for dedicated subscription plans.
253
274
 
254
- Pricing is available at [cloudamqp.com](https://www.cloudamqp.com/plans.html).
275
+ Pricing is available at [CloudAMQP plans].
255
276
 
256
277
  ## Example Usage
257
278
 
@@ -268,11 +289,10 @@ class Vpc(pulumi.CustomResource):
268
289
  # New instance, need to be created with a vpc
269
290
  instance = cloudamqp.Instance("instance",
270
291
  name="<Instance name>",
271
- plan="bunny-1",
292
+ plan="penguin-1",
272
293
  region="amazon-web-services::us-east-1",
273
294
  nodes=1,
274
295
  tags=[],
275
- rmq_version="3.9.13",
276
296
  vpc_id=vpc_cloudamq_vpc["id"],
277
297
  keep_associated_vpc=True)
278
298
  # Additional VPC information
@@ -281,15 +301,31 @@ class Vpc(pulumi.CustomResource):
281
301
 
282
302
  ## Import
283
303
 
284
- `cloudamqp_vpc` can be imported using the CloudAMQP VPC identifier.
304
+ `cloudamqp_vpc` can be imported using the CloudAMQP VPC identifier. To retrieve the identifier of an
305
+
306
+ instance, use [CloudAMQP API list vpcs].
307
+
308
+ From Terraform v1.5.0, the `import` block can be used to import this resource:
309
+
310
+ hcl
311
+
312
+ import {
313
+
314
+ to = cloudamqp_vpc.vpc
315
+
316
+ id = <vpc_id>
317
+
318
+ }
319
+
320
+ Or with Terraform CLI:
285
321
 
286
322
  ```sh
287
- $ pulumi import cloudamqp:index/vpc:Vpc <resource_name> <vpc_id>`
323
+ $ pulumi import cloudamqp:index/vpc:Vpc vpc <vpc_id>`
288
324
  ```
289
325
 
290
- To retrieve the identifier for a VPC, either use [CloudAMQP customer API](https://docs.cloudamqp.com/#list-vpcs).
326
+ [CloudAMQP API list vpcs]: https://docs.cloudamqp.com/#list-vpcs
291
327
 
292
- Or use the data source `cloudamqp_account_vpcs` to list all available standalone VPCs for an account.
328
+ [CloudAMQP plans]: https://www.cloudamqp.com/plans.html
293
329
 
294
330
  :param str resource_name: The name of the resource.
295
331
  :param VpcArgs args: The arguments to use to populate this resource's properties.
@@ -306,10 +342,10 @@ class Vpc(pulumi.CustomResource):
306
342
  def _internal_init(__self__,
307
343
  resource_name: str,
308
344
  opts: Optional[pulumi.ResourceOptions] = None,
309
- name: Optional[pulumi.Input[str]] = None,
310
- region: Optional[pulumi.Input[str]] = None,
311
- subnet: Optional[pulumi.Input[str]] = None,
312
- tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
345
+ name: Optional[pulumi.Input[builtins.str]] = None,
346
+ region: Optional[pulumi.Input[builtins.str]] = None,
347
+ subnet: Optional[pulumi.Input[builtins.str]] = None,
348
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
313
349
  __props__=None):
314
350
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
315
351
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -338,11 +374,11 @@ class Vpc(pulumi.CustomResource):
338
374
  def get(resource_name: str,
339
375
  id: pulumi.Input[str],
340
376
  opts: Optional[pulumi.ResourceOptions] = None,
341
- name: Optional[pulumi.Input[str]] = None,
342
- region: Optional[pulumi.Input[str]] = None,
343
- subnet: Optional[pulumi.Input[str]] = None,
344
- tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
345
- vpc_name: Optional[pulumi.Input[str]] = None) -> 'Vpc':
377
+ name: Optional[pulumi.Input[builtins.str]] = None,
378
+ region: Optional[pulumi.Input[builtins.str]] = None,
379
+ subnet: Optional[pulumi.Input[builtins.str]] = None,
380
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
381
+ vpc_name: Optional[pulumi.Input[builtins.str]] = None) -> 'Vpc':
346
382
  """
347
383
  Get an existing Vpc resource's state with the given name, id, and optional extra
348
384
  properties used to qualify the lookup.
@@ -350,11 +386,11 @@ class Vpc(pulumi.CustomResource):
350
386
  :param str resource_name: The unique name of the resulting resource.
351
387
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
352
388
  :param pulumi.ResourceOptions opts: Options for the resource.
353
- :param pulumi.Input[str] name: The name of the VPC.
354
- :param pulumi.Input[str] region: The hosted region for the managed standalone VPC
355
- :param pulumi.Input[str] subnet: The VPC subnet
356
- :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: Tag the VPC with optional tags
357
- :param pulumi.Input[str] vpc_name: VPC name given when hosted at the cloud provider
389
+ :param pulumi.Input[builtins.str] name: The name of the VPC.
390
+ :param pulumi.Input[builtins.str] region: The hosted region for the managed standalone VPC
391
+ :param pulumi.Input[builtins.str] subnet: The VPC subnet
392
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] tags: Tag the VPC with optional tags
393
+ :param pulumi.Input[builtins.str] vpc_name: VPC name given when hosted at the cloud provider
358
394
  """
359
395
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
360
396
 
@@ -369,7 +405,7 @@ class Vpc(pulumi.CustomResource):
369
405
 
370
406
  @property
371
407
  @pulumi.getter
372
- def name(self) -> pulumi.Output[str]:
408
+ def name(self) -> pulumi.Output[builtins.str]:
373
409
  """
374
410
  The name of the VPC.
375
411
  """
@@ -377,7 +413,7 @@ class Vpc(pulumi.CustomResource):
377
413
 
378
414
  @property
379
415
  @pulumi.getter
380
- def region(self) -> pulumi.Output[str]:
416
+ def region(self) -> pulumi.Output[builtins.str]:
381
417
  """
382
418
  The hosted region for the managed standalone VPC
383
419
  """
@@ -385,7 +421,7 @@ class Vpc(pulumi.CustomResource):
385
421
 
386
422
  @property
387
423
  @pulumi.getter
388
- def subnet(self) -> pulumi.Output[str]:
424
+ def subnet(self) -> pulumi.Output[builtins.str]:
389
425
  """
390
426
  The VPC subnet
391
427
  """
@@ -393,7 +429,7 @@ class Vpc(pulumi.CustomResource):
393
429
 
394
430
  @property
395
431
  @pulumi.getter
396
- def tags(self) -> pulumi.Output[Optional[Sequence[str]]]:
432
+ def tags(self) -> pulumi.Output[Optional[Sequence[builtins.str]]]:
397
433
  """
398
434
  Tag the VPC with optional tags
399
435
  """
@@ -401,7 +437,7 @@ class Vpc(pulumi.CustomResource):
401
437
 
402
438
  @property
403
439
  @pulumi.getter(name="vpcName")
404
- def vpc_name(self) -> pulumi.Output[str]:
440
+ def vpc_name(self) -> pulumi.Output[builtins.str]:
405
441
  """
406
442
  VPC name given when hosted at the cloud provider
407
443
  """