pulumi-gcp 8.2.0__py3-none-any.whl → 8.2.0a1726671837__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.
Files changed (43) hide show
  1. pulumi_gcp/__init__.py +0 -38
  2. pulumi_gcp/bigquery/__init__.py +0 -1
  3. pulumi_gcp/bigquery/outputs.py +0 -30
  4. pulumi_gcp/compute/__init__.py +0 -1
  5. pulumi_gcp/compute/_inputs.py +286 -2209
  6. pulumi_gcp/compute/get_instance.py +0 -3
  7. pulumi_gcp/compute/outputs.py +0 -1383
  8. pulumi_gcp/compute/region_target_http_proxy.py +0 -159
  9. pulumi_gcp/compute/region_target_https_proxy.py +0 -175
  10. pulumi_gcp/compute/service_attachment.py +0 -75
  11. pulumi_gcp/compute/target_http_proxy.py +28 -49
  12. pulumi_gcp/compute/target_https_proxy.py +28 -49
  13. pulumi_gcp/config/__init__.pyi +0 -4
  14. pulumi_gcp/config/vars.py +0 -8
  15. pulumi_gcp/container/_inputs.py +0 -96
  16. pulumi_gcp/container/attached_cluster.py +1 -54
  17. pulumi_gcp/container/outputs.py +0 -102
  18. pulumi_gcp/dataproc/metastore_federation.py +8 -8
  19. pulumi_gcp/dataproc/metastore_service.py +0 -2
  20. pulumi_gcp/datastream/stream.py +14 -21
  21. pulumi_gcp/gkeonprem/_inputs.py +3 -3
  22. pulumi_gcp/gkeonprem/outputs.py +2 -2
  23. pulumi_gcp/netapp/volume.py +0 -101
  24. pulumi_gcp/organizations/folder.py +33 -52
  25. pulumi_gcp/provider.py +0 -40
  26. pulumi_gcp/pulumi-plugin.json +1 -1
  27. pulumi_gcp/securitycenter/v2_project_mute_config.py +2 -2
  28. pulumi_gcp/vpcaccess/connector.py +28 -21
  29. {pulumi_gcp-8.2.0.dist-info → pulumi_gcp-8.2.0a1726671837.dist-info}/METADATA +1 -1
  30. {pulumi_gcp-8.2.0.dist-info → pulumi_gcp-8.2.0a1726671837.dist-info}/RECORD +32 -43
  31. pulumi_gcp/bigquery/get_tables.py +0 -143
  32. pulumi_gcp/compute/network_firewall_policy_with_rules.py +0 -826
  33. pulumi_gcp/developerconnect/__init__.py +0 -11
  34. pulumi_gcp/developerconnect/_inputs.py +0 -301
  35. pulumi_gcp/developerconnect/connection.py +0 -1034
  36. pulumi_gcp/developerconnect/git_repository_link.py +0 -873
  37. pulumi_gcp/developerconnect/outputs.py +0 -247
  38. pulumi_gcp/memorystore/__init__.py +0 -10
  39. pulumi_gcp/memorystore/_inputs.py +0 -731
  40. pulumi_gcp/memorystore/instance.py +0 -1663
  41. pulumi_gcp/memorystore/outputs.py +0 -598
  42. {pulumi_gcp-8.2.0.dist-info → pulumi_gcp-8.2.0a1726671837.dist-info}/WHEEL +0 -0
  43. {pulumi_gcp-8.2.0.dist-info → pulumi_gcp-8.2.0a1726671837.dist-info}/top_level.txt +0 -0
@@ -21,22 +21,18 @@ class FolderArgs:
21
21
  def __init__(__self__, *,
22
22
  display_name: pulumi.Input[str],
23
23
  parent: pulumi.Input[str],
24
- deletion_protection: Optional[pulumi.Input[bool]] = None,
25
- tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
24
+ deletion_protection: Optional[pulumi.Input[bool]] = None):
26
25
  """
27
26
  The set of arguments for constructing a Folder resource.
28
27
  :param pulumi.Input[str] display_name: The folder’s display name.
29
28
  A folder’s display name must be unique amongst its siblings, e.g. no two folders with the same parent can share the same display name. The display name must start and end with a letter or digit, may contain letters, digits, spaces, hyphens and underscores and can be no longer than 30 characters.
30
29
  :param pulumi.Input[str] parent: The resource name of the parent Folder or Organization.
31
30
  Must be of the form `folders/{folder_id}` or `organizations/{org_id}`.
32
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored when empty. The field is immutable and causes resource replacement when mutated.
33
31
  """
34
32
  pulumi.set(__self__, "display_name", display_name)
35
33
  pulumi.set(__self__, "parent", parent)
36
34
  if deletion_protection is not None:
37
35
  pulumi.set(__self__, "deletion_protection", deletion_protection)
38
- if tags is not None:
39
- pulumi.set(__self__, "tags", tags)
40
36
 
41
37
  @property
42
38
  @pulumi.getter(name="displayName")
@@ -73,18 +69,6 @@ class FolderArgs:
73
69
  def deletion_protection(self, value: Optional[pulumi.Input[bool]]):
74
70
  pulumi.set(self, "deletion_protection", value)
75
71
 
76
- @property
77
- @pulumi.getter
78
- def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
79
- """
80
- A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored when empty. The field is immutable and causes resource replacement when mutated.
81
- """
82
- return pulumi.get(self, "tags")
83
-
84
- @tags.setter
85
- def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
86
- pulumi.set(self, "tags", value)
87
-
88
72
 
89
73
  @pulumi.input_type
90
74
  class _FolderState:
@@ -95,8 +79,7 @@ class _FolderState:
95
79
  folder_id: Optional[pulumi.Input[str]] = None,
96
80
  lifecycle_state: Optional[pulumi.Input[str]] = None,
97
81
  name: Optional[pulumi.Input[str]] = None,
98
- parent: Optional[pulumi.Input[str]] = None,
99
- tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
82
+ parent: Optional[pulumi.Input[str]] = None):
100
83
  """
101
84
  Input properties used for looking up and filtering Folder resources.
102
85
  :param pulumi.Input[str] create_time: Timestamp when the Folder was created. Assigned by the server.
@@ -108,7 +91,6 @@ class _FolderState:
108
91
  :param pulumi.Input[str] name: The resource name of the Folder. Its format is folders/{folder_id}.
109
92
  :param pulumi.Input[str] parent: The resource name of the parent Folder or Organization.
110
93
  Must be of the form `folders/{folder_id}` or `organizations/{org_id}`.
111
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored when empty. The field is immutable and causes resource replacement when mutated.
112
94
  """
113
95
  if create_time is not None:
114
96
  pulumi.set(__self__, "create_time", create_time)
@@ -124,8 +106,6 @@ class _FolderState:
124
106
  pulumi.set(__self__, "name", name)
125
107
  if parent is not None:
126
108
  pulumi.set(__self__, "parent", parent)
127
- if tags is not None:
128
- pulumi.set(__self__, "tags", tags)
129
109
 
130
110
  @property
131
111
  @pulumi.getter(name="createTime")
@@ -211,18 +191,6 @@ class _FolderState:
211
191
  def parent(self, value: Optional[pulumi.Input[str]]):
212
192
  pulumi.set(self, "parent", value)
213
193
 
214
- @property
215
- @pulumi.getter
216
- def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
217
- """
218
- A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored when empty. The field is immutable and causes resource replacement when mutated.
219
- """
220
- return pulumi.get(self, "tags")
221
-
222
- @tags.setter
223
- def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
224
- pulumi.set(self, "tags", value)
225
-
226
194
 
227
195
  class Folder(pulumi.CustomResource):
228
196
  @overload
@@ -232,7 +200,6 @@ class Folder(pulumi.CustomResource):
232
200
  deletion_protection: Optional[pulumi.Input[bool]] = None,
233
201
  display_name: Optional[pulumi.Input[str]] = None,
234
202
  parent: Optional[pulumi.Input[str]] = None,
235
- tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
236
203
  __props__=None):
237
204
  """
238
205
  Allows management of a Google Cloud Platform folder. For more information see
@@ -249,7 +216,21 @@ class Folder(pulumi.CustomResource):
249
216
  [Access Control for Folders Using IAM](https://cloud.google.com/resource-manager/docs/access-control-folders)
250
217
  doc for more information.
251
218
 
252
- > It may take a while for the attached tag bindings to be deleted after the folder is scheduled to be deleted.
219
+ ## Example Usage
220
+
221
+ ```python
222
+ import pulumi
223
+ import pulumi_gcp as gcp
224
+
225
+ # Top-level folder under an organization.
226
+ department1 = gcp.organizations.Folder("department1",
227
+ display_name="Department 1",
228
+ parent="organizations/1234567")
229
+ # Folder nested under another folder.
230
+ team_abc = gcp.organizations.Folder("team-abc",
231
+ display_name="Team ABC",
232
+ parent=department1.name)
233
+ ```
253
234
 
254
235
  ## Import
255
236
 
@@ -275,7 +256,6 @@ class Folder(pulumi.CustomResource):
275
256
  A folder’s display name must be unique amongst its siblings, e.g. no two folders with the same parent can share the same display name. The display name must start and end with a letter or digit, may contain letters, digits, spaces, hyphens and underscores and can be no longer than 30 characters.
276
257
  :param pulumi.Input[str] parent: The resource name of the parent Folder or Organization.
277
258
  Must be of the form `folders/{folder_id}` or `organizations/{org_id}`.
278
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored when empty. The field is immutable and causes resource replacement when mutated.
279
259
  """
280
260
  ...
281
261
  @overload
@@ -298,7 +278,21 @@ class Folder(pulumi.CustomResource):
298
278
  [Access Control for Folders Using IAM](https://cloud.google.com/resource-manager/docs/access-control-folders)
299
279
  doc for more information.
300
280
 
301
- > It may take a while for the attached tag bindings to be deleted after the folder is scheduled to be deleted.
281
+ ## Example Usage
282
+
283
+ ```python
284
+ import pulumi
285
+ import pulumi_gcp as gcp
286
+
287
+ # Top-level folder under an organization.
288
+ department1 = gcp.organizations.Folder("department1",
289
+ display_name="Department 1",
290
+ parent="organizations/1234567")
291
+ # Folder nested under another folder.
292
+ team_abc = gcp.organizations.Folder("team-abc",
293
+ display_name="Team ABC",
294
+ parent=department1.name)
295
+ ```
302
296
 
303
297
  ## Import
304
298
 
@@ -336,7 +330,6 @@ class Folder(pulumi.CustomResource):
336
330
  deletion_protection: Optional[pulumi.Input[bool]] = None,
337
331
  display_name: Optional[pulumi.Input[str]] = None,
338
332
  parent: Optional[pulumi.Input[str]] = None,
339
- tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
340
333
  __props__=None):
341
334
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
342
335
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -353,7 +346,6 @@ class Folder(pulumi.CustomResource):
353
346
  if parent is None and not opts.urn:
354
347
  raise TypeError("Missing required property 'parent'")
355
348
  __props__.__dict__["parent"] = parent
356
- __props__.__dict__["tags"] = tags
357
349
  __props__.__dict__["create_time"] = None
358
350
  __props__.__dict__["folder_id"] = None
359
351
  __props__.__dict__["lifecycle_state"] = None
@@ -374,8 +366,7 @@ class Folder(pulumi.CustomResource):
374
366
  folder_id: Optional[pulumi.Input[str]] = None,
375
367
  lifecycle_state: Optional[pulumi.Input[str]] = None,
376
368
  name: Optional[pulumi.Input[str]] = None,
377
- parent: Optional[pulumi.Input[str]] = None,
378
- tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None) -> 'Folder':
369
+ parent: Optional[pulumi.Input[str]] = None) -> 'Folder':
379
370
  """
380
371
  Get an existing Folder resource's state with the given name, id, and optional extra
381
372
  properties used to qualify the lookup.
@@ -392,7 +383,6 @@ class Folder(pulumi.CustomResource):
392
383
  :param pulumi.Input[str] name: The resource name of the Folder. Its format is folders/{folder_id}.
393
384
  :param pulumi.Input[str] parent: The resource name of the parent Folder or Organization.
394
385
  Must be of the form `folders/{folder_id}` or `organizations/{org_id}`.
395
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored when empty. The field is immutable and causes resource replacement when mutated.
396
386
  """
397
387
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
398
388
 
@@ -405,7 +395,6 @@ class Folder(pulumi.CustomResource):
405
395
  __props__.__dict__["lifecycle_state"] = lifecycle_state
406
396
  __props__.__dict__["name"] = name
407
397
  __props__.__dict__["parent"] = parent
408
- __props__.__dict__["tags"] = tags
409
398
  return Folder(resource_name, opts=opts, __props__=__props__)
410
399
 
411
400
  @property
@@ -464,11 +453,3 @@ class Folder(pulumi.CustomResource):
464
453
  """
465
454
  return pulumi.get(self, "parent")
466
455
 
467
- @property
468
- @pulumi.getter
469
- def tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
470
- """
471
- A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored when empty. The field is immutable and causes resource replacement when mutated.
472
- """
473
- return pulumi.get(self, "tags")
474
-
pulumi_gcp/provider.py CHANGED
@@ -88,7 +88,6 @@ class ProviderArgs:
88
88
  datastream_custom_endpoint: Optional[pulumi.Input[str]] = None,
89
89
  default_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
90
90
  deployment_manager_custom_endpoint: Optional[pulumi.Input[str]] = None,
91
- developer_connect_custom_endpoint: Optional[pulumi.Input[str]] = None,
92
91
  dialogflow_custom_endpoint: Optional[pulumi.Input[str]] = None,
93
92
  dialogflow_cx_custom_endpoint: Optional[pulumi.Input[str]] = None,
94
93
  disable_google_partner_name: Optional[pulumi.Input[bool]] = None,
@@ -132,7 +131,6 @@ class ProviderArgs:
132
131
  looker_custom_endpoint: Optional[pulumi.Input[str]] = None,
133
132
  managed_kafka_custom_endpoint: Optional[pulumi.Input[str]] = None,
134
133
  memcache_custom_endpoint: Optional[pulumi.Input[str]] = None,
135
- memorystore_custom_endpoint: Optional[pulumi.Input[str]] = None,
136
134
  migration_center_custom_endpoint: Optional[pulumi.Input[str]] = None,
137
135
  ml_engine_custom_endpoint: Optional[pulumi.Input[str]] = None,
138
136
  monitoring_custom_endpoint: Optional[pulumi.Input[str]] = None,
@@ -333,8 +331,6 @@ class ProviderArgs:
333
331
  pulumi.set(__self__, "default_labels", default_labels)
334
332
  if deployment_manager_custom_endpoint is not None:
335
333
  pulumi.set(__self__, "deployment_manager_custom_endpoint", deployment_manager_custom_endpoint)
336
- if developer_connect_custom_endpoint is not None:
337
- pulumi.set(__self__, "developer_connect_custom_endpoint", developer_connect_custom_endpoint)
338
334
  if dialogflow_custom_endpoint is not None:
339
335
  pulumi.set(__self__, "dialogflow_custom_endpoint", dialogflow_custom_endpoint)
340
336
  if dialogflow_cx_custom_endpoint is not None:
@@ -421,8 +417,6 @@ class ProviderArgs:
421
417
  pulumi.set(__self__, "managed_kafka_custom_endpoint", managed_kafka_custom_endpoint)
422
418
  if memcache_custom_endpoint is not None:
423
419
  pulumi.set(__self__, "memcache_custom_endpoint", memcache_custom_endpoint)
424
- if memorystore_custom_endpoint is not None:
425
- pulumi.set(__self__, "memorystore_custom_endpoint", memorystore_custom_endpoint)
426
420
  if migration_center_custom_endpoint is not None:
427
421
  pulumi.set(__self__, "migration_center_custom_endpoint", migration_center_custom_endpoint)
428
422
  if ml_engine_custom_endpoint is not None:
@@ -1164,15 +1158,6 @@ class ProviderArgs:
1164
1158
  def deployment_manager_custom_endpoint(self, value: Optional[pulumi.Input[str]]):
1165
1159
  pulumi.set(self, "deployment_manager_custom_endpoint", value)
1166
1160
 
1167
- @property
1168
- @pulumi.getter(name="developerConnectCustomEndpoint")
1169
- def developer_connect_custom_endpoint(self) -> Optional[pulumi.Input[str]]:
1170
- return pulumi.get(self, "developer_connect_custom_endpoint")
1171
-
1172
- @developer_connect_custom_endpoint.setter
1173
- def developer_connect_custom_endpoint(self, value: Optional[pulumi.Input[str]]):
1174
- pulumi.set(self, "developer_connect_custom_endpoint", value)
1175
-
1176
1161
  @property
1177
1162
  @pulumi.getter(name="dialogflowCustomEndpoint")
1178
1163
  def dialogflow_custom_endpoint(self) -> Optional[pulumi.Input[str]]:
@@ -1560,15 +1545,6 @@ class ProviderArgs:
1560
1545
  def memcache_custom_endpoint(self, value: Optional[pulumi.Input[str]]):
1561
1546
  pulumi.set(self, "memcache_custom_endpoint", value)
1562
1547
 
1563
- @property
1564
- @pulumi.getter(name="memorystoreCustomEndpoint")
1565
- def memorystore_custom_endpoint(self) -> Optional[pulumi.Input[str]]:
1566
- return pulumi.get(self, "memorystore_custom_endpoint")
1567
-
1568
- @memorystore_custom_endpoint.setter
1569
- def memorystore_custom_endpoint(self, value: Optional[pulumi.Input[str]]):
1570
- pulumi.set(self, "memorystore_custom_endpoint", value)
1571
-
1572
1548
  @property
1573
1549
  @pulumi.getter(name="migrationCenterCustomEndpoint")
1574
1550
  def migration_center_custom_endpoint(self) -> Optional[pulumi.Input[str]]:
@@ -2192,7 +2168,6 @@ class Provider(pulumi.ProviderResource):
2192
2168
  datastream_custom_endpoint: Optional[pulumi.Input[str]] = None,
2193
2169
  default_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
2194
2170
  deployment_manager_custom_endpoint: Optional[pulumi.Input[str]] = None,
2195
- developer_connect_custom_endpoint: Optional[pulumi.Input[str]] = None,
2196
2171
  dialogflow_custom_endpoint: Optional[pulumi.Input[str]] = None,
2197
2172
  dialogflow_cx_custom_endpoint: Optional[pulumi.Input[str]] = None,
2198
2173
  disable_google_partner_name: Optional[pulumi.Input[bool]] = None,
@@ -2236,7 +2211,6 @@ class Provider(pulumi.ProviderResource):
2236
2211
  looker_custom_endpoint: Optional[pulumi.Input[str]] = None,
2237
2212
  managed_kafka_custom_endpoint: Optional[pulumi.Input[str]] = None,
2238
2213
  memcache_custom_endpoint: Optional[pulumi.Input[str]] = None,
2239
- memorystore_custom_endpoint: Optional[pulumi.Input[str]] = None,
2240
2214
  migration_center_custom_endpoint: Optional[pulumi.Input[str]] = None,
2241
2215
  ml_engine_custom_endpoint: Optional[pulumi.Input[str]] = None,
2242
2216
  monitoring_custom_endpoint: Optional[pulumi.Input[str]] = None,
@@ -2403,7 +2377,6 @@ class Provider(pulumi.ProviderResource):
2403
2377
  datastream_custom_endpoint: Optional[pulumi.Input[str]] = None,
2404
2378
  default_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
2405
2379
  deployment_manager_custom_endpoint: Optional[pulumi.Input[str]] = None,
2406
- developer_connect_custom_endpoint: Optional[pulumi.Input[str]] = None,
2407
2380
  dialogflow_custom_endpoint: Optional[pulumi.Input[str]] = None,
2408
2381
  dialogflow_cx_custom_endpoint: Optional[pulumi.Input[str]] = None,
2409
2382
  disable_google_partner_name: Optional[pulumi.Input[bool]] = None,
@@ -2447,7 +2420,6 @@ class Provider(pulumi.ProviderResource):
2447
2420
  looker_custom_endpoint: Optional[pulumi.Input[str]] = None,
2448
2421
  managed_kafka_custom_endpoint: Optional[pulumi.Input[str]] = None,
2449
2422
  memcache_custom_endpoint: Optional[pulumi.Input[str]] = None,
2450
- memorystore_custom_endpoint: Optional[pulumi.Input[str]] = None,
2451
2423
  migration_center_custom_endpoint: Optional[pulumi.Input[str]] = None,
2452
2424
  ml_engine_custom_endpoint: Optional[pulumi.Input[str]] = None,
2453
2425
  monitoring_custom_endpoint: Optional[pulumi.Input[str]] = None,
@@ -2586,7 +2558,6 @@ class Provider(pulumi.ProviderResource):
2586
2558
  __props__.__dict__["datastream_custom_endpoint"] = datastream_custom_endpoint
2587
2559
  __props__.__dict__["default_labels"] = pulumi.Output.from_input(default_labels).apply(pulumi.runtime.to_json) if default_labels is not None else None
2588
2560
  __props__.__dict__["deployment_manager_custom_endpoint"] = deployment_manager_custom_endpoint
2589
- __props__.__dict__["developer_connect_custom_endpoint"] = developer_connect_custom_endpoint
2590
2561
  __props__.__dict__["dialogflow_custom_endpoint"] = dialogflow_custom_endpoint
2591
2562
  __props__.__dict__["dialogflow_cx_custom_endpoint"] = dialogflow_cx_custom_endpoint
2592
2563
  __props__.__dict__["disable_google_partner_name"] = pulumi.Output.from_input(disable_google_partner_name).apply(pulumi.runtime.to_json) if disable_google_partner_name is not None else None
@@ -2630,7 +2601,6 @@ class Provider(pulumi.ProviderResource):
2630
2601
  __props__.__dict__["looker_custom_endpoint"] = looker_custom_endpoint
2631
2602
  __props__.__dict__["managed_kafka_custom_endpoint"] = managed_kafka_custom_endpoint
2632
2603
  __props__.__dict__["memcache_custom_endpoint"] = memcache_custom_endpoint
2633
- __props__.__dict__["memorystore_custom_endpoint"] = memorystore_custom_endpoint
2634
2604
  __props__.__dict__["migration_center_custom_endpoint"] = migration_center_custom_endpoint
2635
2605
  __props__.__dict__["ml_engine_custom_endpoint"] = ml_engine_custom_endpoint
2636
2606
  __props__.__dict__["monitoring_custom_endpoint"] = monitoring_custom_endpoint
@@ -3031,11 +3001,6 @@ class Provider(pulumi.ProviderResource):
3031
3001
  def deployment_manager_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
3032
3002
  return pulumi.get(self, "deployment_manager_custom_endpoint")
3033
3003
 
3034
- @property
3035
- @pulumi.getter(name="developerConnectCustomEndpoint")
3036
- def developer_connect_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
3037
- return pulumi.get(self, "developer_connect_custom_endpoint")
3038
-
3039
3004
  @property
3040
3005
  @pulumi.getter(name="dialogflowCustomEndpoint")
3041
3006
  def dialogflow_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
@@ -3241,11 +3206,6 @@ class Provider(pulumi.ProviderResource):
3241
3206
  def memcache_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
3242
3207
  return pulumi.get(self, "memcache_custom_endpoint")
3243
3208
 
3244
- @property
3245
- @pulumi.getter(name="memorystoreCustomEndpoint")
3246
- def memorystore_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
3247
- return pulumi.get(self, "memorystore_custom_endpoint")
3248
-
3249
3209
  @property
3250
3210
  @pulumi.getter(name="migrationCenterCustomEndpoint")
3251
3211
  def migration_center_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "gcp",
4
- "version": "8.2.0"
4
+ "version": "8.2.0-alpha.1726671837"
5
5
  }
@@ -365,7 +365,7 @@ class V2ProjectMuteConfig(pulumi.CustomResource):
365
365
 
366
366
  default = gcp.securitycenter.V2ProjectMuteConfig("default",
367
367
  mute_config_id="my-config",
368
- project="my-project-name",
368
+ project="",
369
369
  location="global",
370
370
  description="My custom Cloud Security Command Center Finding Project mute Configuration",
371
371
  filter="severity = \\"HIGH\\"",
@@ -439,7 +439,7 @@ class V2ProjectMuteConfig(pulumi.CustomResource):
439
439
 
440
440
  default = gcp.securitycenter.V2ProjectMuteConfig("default",
441
441
  mute_config_id="my-config",
442
- project="my-project-name",
442
+ project="",
443
443
  location="global",
444
444
  description="My custom Cloud Security Command Center Finding Project mute Configuration",
445
445
  filter="severity = \\"HIGH\\"",
@@ -40,12 +40,13 @@ class ConnectorArgs:
40
40
  higher than the value specified by min_instances.
41
41
  :param pulumi.Input[int] max_throughput: Maximum throughput of the connector in Mbps, must be greater than `min_throughput`. Default is 300. Refers to the expected throughput
42
42
  when using an e2-micro machine type. Value must be a multiple of 100 from 300 through 1000. Must be higher than the value specified by
43
- min_throughput. Only one of `max_throughput` and `max_instances` can be specified. The use of max_throughput is discouraged in favor of max_instances.
43
+ min_throughput. If both max_throughput and max_instances are provided, max_instances takes precedence over max_throughput. The use of
44
+ max_throughput is discouraged in favor of max_instances.
44
45
  :param pulumi.Input[int] min_instances: Minimum value of instances in autoscaling group underlying the connector. Value must be between 2 and 9, inclusive. Must be
45
46
  lower than the value specified by max_instances.
46
47
  :param pulumi.Input[int] min_throughput: Minimum throughput of the connector in Mbps. Default and min is 200. Refers to the expected throughput when using an e2-micro machine type.
47
- Value must be a multiple of 100 from 200 through 900. Must be lower than the value specified by max_throughput.
48
- Only one of `min_throughput` and `min_instances` can be specified. The use of min_throughput is discouraged in favor of min_instances.
48
+ Value must be a multiple of 100 from 200 through 900. Must be lower than the value specified by max_throughput. If both min_throughput and
49
+ min_instances are provided, min_instances takes precedence over min_throughput. The use of min_throughput is discouraged in favor of min_instances.
49
50
  :param pulumi.Input[str] name: The name of the resource (Max 25 characters).
50
51
 
51
52
 
@@ -123,7 +124,8 @@ class ConnectorArgs:
123
124
  """
124
125
  Maximum throughput of the connector in Mbps, must be greater than `min_throughput`. Default is 300. Refers to the expected throughput
125
126
  when using an e2-micro machine type. Value must be a multiple of 100 from 300 through 1000. Must be higher than the value specified by
126
- min_throughput. Only one of `max_throughput` and `max_instances` can be specified. The use of max_throughput is discouraged in favor of max_instances.
127
+ min_throughput. If both max_throughput and max_instances are provided, max_instances takes precedence over max_throughput. The use of
128
+ max_throughput is discouraged in favor of max_instances.
127
129
  """
128
130
  return pulumi.get(self, "max_throughput")
129
131
 
@@ -149,8 +151,8 @@ class ConnectorArgs:
149
151
  def min_throughput(self) -> Optional[pulumi.Input[int]]:
150
152
  """
151
153
  Minimum throughput of the connector in Mbps. Default and min is 200. Refers to the expected throughput when using an e2-micro machine type.
152
- Value must be a multiple of 100 from 200 through 900. Must be lower than the value specified by max_throughput.
153
- Only one of `min_throughput` and `min_instances` can be specified. The use of min_throughput is discouraged in favor of min_instances.
154
+ Value must be a multiple of 100 from 200 through 900. Must be lower than the value specified by max_throughput. If both min_throughput and
155
+ min_instances are provided, min_instances takes precedence over min_throughput. The use of min_throughput is discouraged in favor of min_instances.
154
156
  """
155
157
  return pulumi.get(self, "min_throughput")
156
158
 
@@ -250,12 +252,13 @@ class _ConnectorState:
250
252
  higher than the value specified by min_instances.
251
253
  :param pulumi.Input[int] max_throughput: Maximum throughput of the connector in Mbps, must be greater than `min_throughput`. Default is 300. Refers to the expected throughput
252
254
  when using an e2-micro machine type. Value must be a multiple of 100 from 300 through 1000. Must be higher than the value specified by
253
- min_throughput. Only one of `max_throughput` and `max_instances` can be specified. The use of max_throughput is discouraged in favor of max_instances.
255
+ min_throughput. If both max_throughput and max_instances are provided, max_instances takes precedence over max_throughput. The use of
256
+ max_throughput is discouraged in favor of max_instances.
254
257
  :param pulumi.Input[int] min_instances: Minimum value of instances in autoscaling group underlying the connector. Value must be between 2 and 9, inclusive. Must be
255
258
  lower than the value specified by max_instances.
256
259
  :param pulumi.Input[int] min_throughput: Minimum throughput of the connector in Mbps. Default and min is 200. Refers to the expected throughput when using an e2-micro machine type.
257
- Value must be a multiple of 100 from 200 through 900. Must be lower than the value specified by max_throughput.
258
- Only one of `min_throughput` and `min_instances` can be specified. The use of min_throughput is discouraged in favor of min_instances.
260
+ Value must be a multiple of 100 from 200 through 900. Must be lower than the value specified by max_throughput. If both min_throughput and
261
+ min_instances are provided, min_instances takes precedence over min_throughput. The use of min_throughput is discouraged in favor of min_instances.
259
262
  :param pulumi.Input[str] name: The name of the resource (Max 25 characters).
260
263
 
261
264
 
@@ -353,7 +356,8 @@ class _ConnectorState:
353
356
  """
354
357
  Maximum throughput of the connector in Mbps, must be greater than `min_throughput`. Default is 300. Refers to the expected throughput
355
358
  when using an e2-micro machine type. Value must be a multiple of 100 from 300 through 1000. Must be higher than the value specified by
356
- min_throughput. Only one of `max_throughput` and `max_instances` can be specified. The use of max_throughput is discouraged in favor of max_instances.
359
+ min_throughput. If both max_throughput and max_instances are provided, max_instances takes precedence over max_throughput. The use of
360
+ max_throughput is discouraged in favor of max_instances.
357
361
  """
358
362
  return pulumi.get(self, "max_throughput")
359
363
 
@@ -379,8 +383,8 @@ class _ConnectorState:
379
383
  def min_throughput(self) -> Optional[pulumi.Input[int]]:
380
384
  """
381
385
  Minimum throughput of the connector in Mbps. Default and min is 200. Refers to the expected throughput when using an e2-micro machine type.
382
- Value must be a multiple of 100 from 200 through 900. Must be lower than the value specified by max_throughput.
383
- Only one of `min_throughput` and `min_instances` can be specified. The use of min_throughput is discouraged in favor of min_instances.
386
+ Value must be a multiple of 100 from 200 through 900. Must be lower than the value specified by max_throughput. If both min_throughput and
387
+ min_instances are provided, min_instances takes precedence over min_throughput. The use of min_throughput is discouraged in favor of min_instances.
384
388
  """
385
389
  return pulumi.get(self, "min_throughput")
386
390
 
@@ -578,12 +582,13 @@ class Connector(pulumi.CustomResource):
578
582
  higher than the value specified by min_instances.
579
583
  :param pulumi.Input[int] max_throughput: Maximum throughput of the connector in Mbps, must be greater than `min_throughput`. Default is 300. Refers to the expected throughput
580
584
  when using an e2-micro machine type. Value must be a multiple of 100 from 300 through 1000. Must be higher than the value specified by
581
- min_throughput. Only one of `max_throughput` and `max_instances` can be specified. The use of max_throughput is discouraged in favor of max_instances.
585
+ min_throughput. If both max_throughput and max_instances are provided, max_instances takes precedence over max_throughput. The use of
586
+ max_throughput is discouraged in favor of max_instances.
582
587
  :param pulumi.Input[int] min_instances: Minimum value of instances in autoscaling group underlying the connector. Value must be between 2 and 9, inclusive. Must be
583
588
  lower than the value specified by max_instances.
584
589
  :param pulumi.Input[int] min_throughput: Minimum throughput of the connector in Mbps. Default and min is 200. Refers to the expected throughput when using an e2-micro machine type.
585
- Value must be a multiple of 100 from 200 through 900. Must be lower than the value specified by max_throughput.
586
- Only one of `min_throughput` and `min_instances` can be specified. The use of min_throughput is discouraged in favor of min_instances.
590
+ Value must be a multiple of 100 from 200 through 900. Must be lower than the value specified by max_throughput. If both min_throughput and
591
+ min_instances are provided, min_instances takes precedence over min_throughput. The use of min_throughput is discouraged in favor of min_instances.
587
592
  :param pulumi.Input[str] name: The name of the resource (Max 25 characters).
588
593
 
589
594
 
@@ -763,12 +768,13 @@ class Connector(pulumi.CustomResource):
763
768
  higher than the value specified by min_instances.
764
769
  :param pulumi.Input[int] max_throughput: Maximum throughput of the connector in Mbps, must be greater than `min_throughput`. Default is 300. Refers to the expected throughput
765
770
  when using an e2-micro machine type. Value must be a multiple of 100 from 300 through 1000. Must be higher than the value specified by
766
- min_throughput. Only one of `max_throughput` and `max_instances` can be specified. The use of max_throughput is discouraged in favor of max_instances.
771
+ min_throughput. If both max_throughput and max_instances are provided, max_instances takes precedence over max_throughput. The use of
772
+ max_throughput is discouraged in favor of max_instances.
767
773
  :param pulumi.Input[int] min_instances: Minimum value of instances in autoscaling group underlying the connector. Value must be between 2 and 9, inclusive. Must be
768
774
  lower than the value specified by max_instances.
769
775
  :param pulumi.Input[int] min_throughput: Minimum throughput of the connector in Mbps. Default and min is 200. Refers to the expected throughput when using an e2-micro machine type.
770
- Value must be a multiple of 100 from 200 through 900. Must be lower than the value specified by max_throughput.
771
- Only one of `min_throughput` and `min_instances` can be specified. The use of min_throughput is discouraged in favor of min_instances.
776
+ Value must be a multiple of 100 from 200 through 900. Must be lower than the value specified by max_throughput. If both min_throughput and
777
+ min_instances are provided, min_instances takes precedence over min_throughput. The use of min_throughput is discouraged in favor of min_instances.
772
778
  :param pulumi.Input[str] name: The name of the resource (Max 25 characters).
773
779
 
774
780
 
@@ -841,7 +847,8 @@ class Connector(pulumi.CustomResource):
841
847
  """
842
848
  Maximum throughput of the connector in Mbps, must be greater than `min_throughput`. Default is 300. Refers to the expected throughput
843
849
  when using an e2-micro machine type. Value must be a multiple of 100 from 300 through 1000. Must be higher than the value specified by
844
- min_throughput. Only one of `max_throughput` and `max_instances` can be specified. The use of max_throughput is discouraged in favor of max_instances.
850
+ min_throughput. If both max_throughput and max_instances are provided, max_instances takes precedence over max_throughput. The use of
851
+ max_throughput is discouraged in favor of max_instances.
845
852
  """
846
853
  return pulumi.get(self, "max_throughput")
847
854
 
@@ -859,8 +866,8 @@ class Connector(pulumi.CustomResource):
859
866
  def min_throughput(self) -> pulumi.Output[int]:
860
867
  """
861
868
  Minimum throughput of the connector in Mbps. Default and min is 200. Refers to the expected throughput when using an e2-micro machine type.
862
- Value must be a multiple of 100 from 200 through 900. Must be lower than the value specified by max_throughput.
863
- Only one of `min_throughput` and `min_instances` can be specified. The use of min_throughput is discouraged in favor of min_instances.
869
+ Value must be a multiple of 100 from 200 through 900. Must be lower than the value specified by max_throughput. If both min_throughput and
870
+ min_instances are provided, min_instances takes precedence over min_throughput. The use of min_throughput is discouraged in favor of min_instances.
864
871
  """
865
872
  return pulumi.get(self, "min_throughput")
866
873
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_gcp
3
- Version: 8.2.0
3
+ Version: 8.2.0a1726671837
4
4
  Summary: A Pulumi package for creating and managing Google Cloud Platform resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io