pulumi-gcp 8.21.0a1741103856__py3-none-any.whl → 8.21.0a1741183435__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 (56) hide show
  1. pulumi_gcp/__init__.py +64 -0
  2. pulumi_gcp/alloydb/cluster.py +148 -0
  3. pulumi_gcp/alloydb/instance.py +28 -28
  4. pulumi_gcp/apihub/__init__.py +1 -0
  5. pulumi_gcp/apihub/host_project_registration.py +535 -0
  6. pulumi_gcp/bigquery/table.py +1 -1
  7. pulumi_gcp/compute/__init__.py +5 -0
  8. pulumi_gcp/compute/_inputs.py +770 -0
  9. pulumi_gcp/compute/backend_service.py +14 -7
  10. pulumi_gcp/compute/ca_external_account_key.py +48 -3
  11. pulumi_gcp/compute/disk.py +295 -0
  12. pulumi_gcp/compute/get_disk.py +56 -1
  13. pulumi_gcp/compute/get_instant_snapshot_iam_policy.py +182 -0
  14. pulumi_gcp/compute/instant_snapshot.py +796 -0
  15. pulumi_gcp/compute/instant_snapshot_iam_binding.py +1087 -0
  16. pulumi_gcp/compute/instant_snapshot_iam_member.py +1087 -0
  17. pulumi_gcp/compute/instant_snapshot_iam_policy.py +906 -0
  18. pulumi_gcp/compute/outputs.py +1329 -6
  19. pulumi_gcp/compute/region_backend_service.py +14 -7
  20. pulumi_gcp/compute/route.py +228 -2
  21. pulumi_gcp/compute/url_map.py +8 -0
  22. pulumi_gcp/container/_inputs.py +3 -3
  23. pulumi_gcp/container/outputs.py +4 -4
  24. pulumi_gcp/datacatalog/entry.py +4 -0
  25. pulumi_gcp/datacatalog/tag.py +4 -0
  26. pulumi_gcp/dataproc/_inputs.py +12 -15
  27. pulumi_gcp/dataproc/outputs.py +8 -10
  28. pulumi_gcp/discoveryengine/target_site.py +4 -4
  29. pulumi_gcp/eventarc/__init__.py +1 -0
  30. pulumi_gcp/eventarc/_inputs.py +40 -0
  31. pulumi_gcp/eventarc/message_bus.py +927 -0
  32. pulumi_gcp/eventarc/outputs.py +41 -0
  33. pulumi_gcp/gemini/__init__.py +1 -0
  34. pulumi_gcp/gemini/data_sharing_with_google_setting_binding.py +20 -8
  35. pulumi_gcp/gemini/gemini_gcp_enablement_setting.py +6 -0
  36. pulumi_gcp/gemini/gemini_gcp_enablement_setting_binding.py +734 -0
  37. pulumi_gcp/gemini/logging_setting_binding.py +7 -7
  38. pulumi_gcp/iam/_inputs.py +33 -9
  39. pulumi_gcp/iam/outputs.py +22 -6
  40. pulumi_gcp/iam/workforce_pool_provider.py +2 -2
  41. pulumi_gcp/memorystore/__init__.py +1 -0
  42. pulumi_gcp/memorystore/get_instance.py +425 -0
  43. pulumi_gcp/memorystore/outputs.py +582 -0
  44. pulumi_gcp/networkconnectivity/hub.py +84 -0
  45. pulumi_gcp/networkservices/grpc_route.py +116 -12
  46. pulumi_gcp/notebooks/location.py +4 -0
  47. pulumi_gcp/pulumi-plugin.json +1 -1
  48. pulumi_gcp/storage/__init__.py +1 -0
  49. pulumi_gcp/storage/_inputs.py +74 -0
  50. pulumi_gcp/storage/anywhere_cache.py +552 -0
  51. pulumi_gcp/storage/outputs.py +65 -0
  52. pulumi_gcp/storage/transfer_job.py +67 -0
  53. {pulumi_gcp-8.21.0a1741103856.dist-info → pulumi_gcp-8.21.0a1741183435.dist-info}/METADATA +1 -1
  54. {pulumi_gcp-8.21.0a1741103856.dist-info → pulumi_gcp-8.21.0a1741183435.dist-info}/RECORD +56 -46
  55. {pulumi_gcp-8.21.0a1741103856.dist-info → pulumi_gcp-8.21.0a1741183435.dist-info}/WHEEL +0 -0
  56. {pulumi_gcp-8.21.0a1741103856.dist-info → pulumi_gcp-8.21.0a1741183435.dist-info}/top_level.txt +0 -0
@@ -16,6 +16,7 @@ from .. import _utilities
16
16
  from . import outputs
17
17
 
18
18
  __all__ = [
19
+ 'MessageBusLoggingConfig',
19
20
  'TriggerDestination',
20
21
  'TriggerDestinationCloudRunService',
21
22
  'TriggerDestinationGke',
@@ -26,6 +27,46 @@ __all__ = [
26
27
  'TriggerTransportPubsub',
27
28
  ]
28
29
 
30
+ @pulumi.output_type
31
+ class MessageBusLoggingConfig(dict):
32
+ @staticmethod
33
+ def __key_warning(key: str):
34
+ suggest = None
35
+ if key == "logSeverity":
36
+ suggest = "log_severity"
37
+
38
+ if suggest:
39
+ pulumi.log.warn(f"Key '{key}' not found in MessageBusLoggingConfig. Access the value via the '{suggest}' property getter instead.")
40
+
41
+ def __getitem__(self, key: str) -> Any:
42
+ MessageBusLoggingConfig.__key_warning(key)
43
+ return super().__getitem__(key)
44
+
45
+ def get(self, key: str, default = None) -> Any:
46
+ MessageBusLoggingConfig.__key_warning(key)
47
+ return super().get(key, default)
48
+
49
+ def __init__(__self__, *,
50
+ log_severity: Optional[str] = None):
51
+ """
52
+ :param str log_severity: Optional. The minimum severity of logs that will be sent to Stackdriver/Platform
53
+ Telemetry. Logs at severitiy ≥ this value will be sent, unless it is NONE.
54
+ Possible values are: `NONE`, `DEBUG`, `INFO`, `NOTICE`, `WARNING`, `ERROR`, `CRITICAL`, `ALERT`, `EMERGENCY`.
55
+ """
56
+ if log_severity is not None:
57
+ pulumi.set(__self__, "log_severity", log_severity)
58
+
59
+ @property
60
+ @pulumi.getter(name="logSeverity")
61
+ def log_severity(self) -> Optional[str]:
62
+ """
63
+ Optional. The minimum severity of logs that will be sent to Stackdriver/Platform
64
+ Telemetry. Logs at severitiy ≥ this value will be sent, unless it is NONE.
65
+ Possible values are: `NONE`, `DEBUG`, `INFO`, `NOTICE`, `WARNING`, `ERROR`, `CRITICAL`, `ALERT`, `EMERGENCY`.
66
+ """
67
+ return pulumi.get(self, "log_severity")
68
+
69
+
29
70
  @pulumi.output_type
30
71
  class TriggerDestination(dict):
31
72
  @staticmethod
@@ -9,6 +9,7 @@ from .code_repository_index import *
9
9
  from .data_sharing_with_google_setting import *
10
10
  from .data_sharing_with_google_setting_binding import *
11
11
  from .gemini_gcp_enablement_setting import *
12
+ from .gemini_gcp_enablement_setting_binding import *
12
13
  from .get_repository_group_iam_policy import *
13
14
  from .logging_setting import *
14
15
  from .logging_setting_binding import *
@@ -39,7 +39,7 @@ class DataSharingWithGoogleSettingBindingArgs:
39
39
  Please refer to the field `effective_labels` for all of the labels present on the resource.
40
40
  :param pulumi.Input[str] location: Resource ID segment making up resource `name`. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
41
41
  :param pulumi.Input[str] product: Product type of the setting binding.
42
- Possible values are: `GEMINI_CLOUD_ASSIST`, `GEMINI_CODE_ASSIST`.
42
+ Possible values are: `GEMINI_CLOUD_ASSIST`.
43
43
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
44
44
  If it is not provided, the provider project is used.
45
45
  """
@@ -125,7 +125,7 @@ class DataSharingWithGoogleSettingBindingArgs:
125
125
  def product(self) -> Optional[pulumi.Input[str]]:
126
126
  """
127
127
  Product type of the setting binding.
128
- Possible values are: `GEMINI_CLOUD_ASSIST`, `GEMINI_CODE_ASSIST`.
128
+ Possible values are: `GEMINI_CLOUD_ASSIST`.
129
129
  """
130
130
  return pulumi.get(self, "product")
131
131
 
@@ -174,7 +174,7 @@ class _DataSharingWithGoogleSettingBindingState:
174
174
  :param pulumi.Input[str] name: Identifier. Name of the resource.
175
175
  Format:projects/{project}/locations/{location}/dataSharingWithGoogleSettings/{setting}/settingBindings/{setting_binding}
176
176
  :param pulumi.Input[str] product: Product type of the setting binding.
177
- Possible values are: `GEMINI_CLOUD_ASSIST`, `GEMINI_CODE_ASSIST`.
177
+ Possible values are: `GEMINI_CLOUD_ASSIST`.
178
178
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
179
179
  If it is not provided, the provider project is used.
180
180
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
@@ -291,7 +291,7 @@ class _DataSharingWithGoogleSettingBindingState:
291
291
  def product(self) -> Optional[pulumi.Input[str]]:
292
292
  """
293
293
  Product type of the setting binding.
294
- Possible values are: `GEMINI_CLOUD_ASSIST`, `GEMINI_CODE_ASSIST`.
294
+ Possible values are: `GEMINI_CLOUD_ASSIST`.
295
295
  """
296
296
  return pulumi.get(self, "product")
297
297
 
@@ -379,6 +379,12 @@ class DataSharingWithGoogleSettingBinding(pulumi.CustomResource):
379
379
  target: Optional[pulumi.Input[str]] = None,
380
380
  __props__=None):
381
381
  """
382
+ The resource for managing DataSharingWithGoogle setting bindings for Admin Control.
383
+
384
+ To get more information about DataSharingWithGoogleSettingBinding, see:
385
+ * How-to Guides
386
+ * [Gemini Cloud Assist overview](https://cloud.google.com/gemini/docs/cloud-assist/overview)
387
+
382
388
  ## Example Usage
383
389
 
384
390
  ### Gemini Data Sharing With Google Setting Binding Basic
@@ -433,7 +439,7 @@ class DataSharingWithGoogleSettingBinding(pulumi.CustomResource):
433
439
  Please refer to the field `effective_labels` for all of the labels present on the resource.
434
440
  :param pulumi.Input[str] location: Resource ID segment making up resource `name`. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
435
441
  :param pulumi.Input[str] product: Product type of the setting binding.
436
- Possible values are: `GEMINI_CLOUD_ASSIST`, `GEMINI_CODE_ASSIST`.
442
+ Possible values are: `GEMINI_CLOUD_ASSIST`.
437
443
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
438
444
  If it is not provided, the provider project is used.
439
445
  :param pulumi.Input[str] setting_binding_id: Required. Id of the setting binding.
@@ -449,6 +455,12 @@ class DataSharingWithGoogleSettingBinding(pulumi.CustomResource):
449
455
  args: DataSharingWithGoogleSettingBindingArgs,
450
456
  opts: Optional[pulumi.ResourceOptions] = None):
451
457
  """
458
+ The resource for managing DataSharingWithGoogle setting bindings for Admin Control.
459
+
460
+ To get more information about DataSharingWithGoogleSettingBinding, see:
461
+ * How-to Guides
462
+ * [Gemini Cloud Assist overview](https://cloud.google.com/gemini/docs/cloud-assist/overview)
463
+
452
464
  ## Example Usage
453
465
 
454
466
  ### Gemini Data Sharing With Google Setting Binding Basic
@@ -585,7 +597,7 @@ class DataSharingWithGoogleSettingBinding(pulumi.CustomResource):
585
597
  :param pulumi.Input[str] name: Identifier. Name of the resource.
586
598
  Format:projects/{project}/locations/{location}/dataSharingWithGoogleSettings/{setting}/settingBindings/{setting_binding}
587
599
  :param pulumi.Input[str] product: Product type of the setting binding.
588
- Possible values are: `GEMINI_CLOUD_ASSIST`, `GEMINI_CODE_ASSIST`.
600
+ Possible values are: `GEMINI_CLOUD_ASSIST`.
589
601
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
590
602
  If it is not provided, the provider project is used.
591
603
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
@@ -668,10 +680,10 @@ class DataSharingWithGoogleSettingBinding(pulumi.CustomResource):
668
680
 
669
681
  @property
670
682
  @pulumi.getter
671
- def product(self) -> pulumi.Output[Optional[str]]:
683
+ def product(self) -> pulumi.Output[str]:
672
684
  """
673
685
  Product type of the setting binding.
674
- Possible values are: `GEMINI_CLOUD_ASSIST`, `GEMINI_CODE_ASSIST`.
686
+ Possible values are: `GEMINI_CLOUD_ASSIST`.
675
687
  """
676
688
  return pulumi.get(self, "product")
677
689
 
@@ -323,6 +323,9 @@ class GeminiGcpEnablementSetting(pulumi.CustomResource):
323
323
  example = gcp.gemini.GeminiGcpEnablementSetting("example",
324
324
  gemini_gcp_enablement_setting_id="ls1-tf",
325
325
  location="global",
326
+ labels={
327
+ "my_key": "my_value",
328
+ },
326
329
  enable_customer_data_sharing=True)
327
330
  ```
328
331
 
@@ -384,6 +387,9 @@ class GeminiGcpEnablementSetting(pulumi.CustomResource):
384
387
  example = gcp.gemini.GeminiGcpEnablementSetting("example",
385
388
  gemini_gcp_enablement_setting_id="ls1-tf",
386
389
  location="global",
390
+ labels={
391
+ "my_key": "my_value",
392
+ },
387
393
  enable_customer_data_sharing=True)
388
394
  ```
389
395