pulumi-gcp 8.23.0a1742538920__py3-none-any.whl → 8.24.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.
Files changed (106) hide show
  1. pulumi_gcp/__init__.py +59 -0
  2. pulumi_gcp/alloydb/_inputs.py +27 -1
  3. pulumi_gcp/alloydb/outputs.py +33 -2
  4. pulumi_gcp/applicationintegration/client.py +18 -24
  5. pulumi_gcp/bigquery/_inputs.py +178 -0
  6. pulumi_gcp/bigquery/outputs.py +127 -0
  7. pulumi_gcp/bigquery/reservation.py +189 -1
  8. pulumi_gcp/bigquery/table.py +61 -0
  9. pulumi_gcp/bigqueryanalyticshub/listing_subscription.py +11 -7
  10. pulumi_gcp/bigtable/table.py +7 -7
  11. pulumi_gcp/chronicle/data_access_label.py +16 -0
  12. pulumi_gcp/clouddeploy/_inputs.py +20 -0
  13. pulumi_gcp/clouddeploy/outputs.py +15 -1
  14. pulumi_gcp/cloudfunctions/function.py +11 -11
  15. pulumi_gcp/cloudfunctionsv2/function.py +24 -24
  16. pulumi_gcp/cloudidentity/get_group_transitive_memberships.py +41 -2
  17. pulumi_gcp/cloudidentity/outputs.py +18 -38
  18. pulumi_gcp/cloudrunv2/service.py +14 -14
  19. pulumi_gcp/compute/__init__.py +1 -0
  20. pulumi_gcp/compute/_inputs.py +616 -18
  21. pulumi_gcp/compute/firewall_policy.py +20 -0
  22. pulumi_gcp/compute/get_images.py +172 -0
  23. pulumi_gcp/compute/get_resource_policy.py +15 -4
  24. pulumi_gcp/compute/image.py +54 -0
  25. pulumi_gcp/compute/interconnect.py +14 -7
  26. pulumi_gcp/compute/outputs.py +710 -18
  27. pulumi_gcp/compute/region_network_endpoint_group.py +2 -2
  28. pulumi_gcp/compute/resource_policy.py +169 -3
  29. pulumi_gcp/compute/router_route_policy.py +16 -0
  30. pulumi_gcp/compute/subnetwork.py +109 -1
  31. pulumi_gcp/compute/target_https_proxy.py +7 -7
  32. pulumi_gcp/config/__init__.pyi +8 -0
  33. pulumi_gcp/config/vars.py +16 -0
  34. pulumi_gcp/container/_inputs.py +265 -4
  35. pulumi_gcp/container/cluster.py +54 -0
  36. pulumi_gcp/container/get_attached_versions.py +2 -2
  37. pulumi_gcp/container/get_cluster.py +12 -1
  38. pulumi_gcp/container/outputs.py +301 -6
  39. pulumi_gcp/dataform/repository.py +49 -0
  40. pulumi_gcp/dataproc/_inputs.py +23 -0
  41. pulumi_gcp/dataproc/get_metastore_service.py +26 -4
  42. pulumi_gcp/dataproc/metastore_federation.py +56 -0
  43. pulumi_gcp/dataproc/metastore_service.py +58 -2
  44. pulumi_gcp/dataproc/outputs.py +27 -0
  45. pulumi_gcp/eventarc/__init__.py +1 -0
  46. pulumi_gcp/eventarc/_inputs.py +1758 -0
  47. pulumi_gcp/eventarc/outputs.py +1337 -0
  48. pulumi_gcp/eventarc/pipeline.py +1596 -0
  49. pulumi_gcp/firebase/__init__.py +1 -0
  50. pulumi_gcp/firebase/_inputs.py +154 -0
  51. pulumi_gcp/firebase/app_hosting_backend.py +1303 -0
  52. pulumi_gcp/firebase/hosting_version.py +2 -2
  53. pulumi_gcp/firebase/outputs.py +127 -0
  54. pulumi_gcp/kms/get_key_rings.py +39 -2
  55. pulumi_gcp/lustre/__init__.py +8 -0
  56. pulumi_gcp/lustre/instance.py +983 -0
  57. pulumi_gcp/managedkafka/__init__.py +2 -0
  58. pulumi_gcp/managedkafka/_inputs.py +263 -0
  59. pulumi_gcp/managedkafka/connect_cluster.py +795 -0
  60. pulumi_gcp/managedkafka/connector.py +695 -0
  61. pulumi_gcp/managedkafka/outputs.py +248 -0
  62. pulumi_gcp/memorystore/_inputs.py +419 -0
  63. pulumi_gcp/memorystore/get_instance.py +23 -1
  64. pulumi_gcp/memorystore/instance.py +144 -14
  65. pulumi_gcp/memorystore/outputs.py +544 -0
  66. pulumi_gcp/monitoring/uptime_check_config.py +2 -2
  67. pulumi_gcp/networkmanagement/_inputs.py +422 -91
  68. pulumi_gcp/networkmanagement/connectivity_test.py +233 -211
  69. pulumi_gcp/networkmanagement/outputs.py +280 -61
  70. pulumi_gcp/networksecurity/_inputs.py +1277 -242
  71. pulumi_gcp/networksecurity/gateway_security_policy.py +0 -7
  72. pulumi_gcp/networksecurity/intercept_deployment_group.py +44 -16
  73. pulumi_gcp/networksecurity/intercept_endpoint_group.py +90 -36
  74. pulumi_gcp/networksecurity/intercept_endpoint_group_association.py +53 -8
  75. pulumi_gcp/networksecurity/mirroring_deployment.py +22 -0
  76. pulumi_gcp/networksecurity/mirroring_deployment_group.py +20 -0
  77. pulumi_gcp/networksecurity/mirroring_endpoint_group.py +24 -0
  78. pulumi_gcp/networksecurity/mirroring_endpoint_group_association.py +28 -0
  79. pulumi_gcp/networksecurity/outputs.py +723 -8
  80. pulumi_gcp/networksecurity/tls_inspection_policy.py +14 -0
  81. pulumi_gcp/networkservices/gateway.py +242 -120
  82. pulumi_gcp/organizations/__init__.py +1 -0
  83. pulumi_gcp/organizations/get_iam_custom_role.py +198 -0
  84. pulumi_gcp/osconfig/__init__.py +1 -0
  85. pulumi_gcp/osconfig/_inputs.py +5413 -0
  86. pulumi_gcp/osconfig/outputs.py +3962 -0
  87. pulumi_gcp/osconfig/v2_policy_orchestrator.py +971 -0
  88. pulumi_gcp/projects/__init__.py +2 -0
  89. pulumi_gcp/projects/get_iam_custom_role.py +198 -0
  90. pulumi_gcp/projects/get_iam_custom_roles.py +164 -0
  91. pulumi_gcp/projects/outputs.py +96 -0
  92. pulumi_gcp/provider.py +80 -0
  93. pulumi_gcp/pulumi-plugin.json +1 -1
  94. pulumi_gcp/servicenetworking/peered_dns_domain.py +4 -0
  95. pulumi_gcp/sql/outputs.py +8 -8
  96. pulumi_gcp/storage/__init__.py +2 -0
  97. pulumi_gcp/storage/_inputs.py +740 -6
  98. pulumi_gcp/storage/control_project_intelligence_config.py +366 -0
  99. pulumi_gcp/storage/get_control_project_intelligence_config.py +130 -0
  100. pulumi_gcp/storage/insights_report_config.py +121 -20
  101. pulumi_gcp/storage/outputs.py +723 -4
  102. pulumi_gcp/workflows/workflow.py +75 -7
  103. {pulumi_gcp-8.23.0a1742538920.dist-info → pulumi_gcp-8.24.0.dist-info}/METADATA +1 -1
  104. {pulumi_gcp-8.23.0a1742538920.dist-info → pulumi_gcp-8.24.0.dist-info}/RECORD +106 -93
  105. {pulumi_gcp-8.23.0a1742538920.dist-info → pulumi_gcp-8.24.0.dist-info}/WHEEL +1 -1
  106. {pulumi_gcp-8.23.0a1742538920.dist-info → pulumi_gcp-8.24.0.dist-info}/top_level.txt +0 -0
@@ -32,7 +32,7 @@ class ListingSubscriptionArgs:
32
32
  :param pulumi.Input['ListingSubscriptionDestinationDatasetArgs'] destination_dataset: The destination dataset for this subscription.
33
33
  Structure is documented below.
34
34
  :param pulumi.Input[str] listing_id: The ID of the listing. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces.
35
- :param pulumi.Input[str] location: The name of the location for this subscription.
35
+ :param pulumi.Input[str] location: The name of the location of the data exchange. Distinct from the location of the destination data set.
36
36
  """
37
37
  pulumi.set(__self__, "data_exchange_id", data_exchange_id)
38
38
  pulumi.set(__self__, "destination_dataset", destination_dataset)
@@ -82,7 +82,7 @@ class ListingSubscriptionArgs:
82
82
  @pulumi.getter
83
83
  def location(self) -> pulumi.Input[str]:
84
84
  """
85
- The name of the location for this subscription.
85
+ The name of the location of the data exchange. Distinct from the location of the destination data set.
86
86
  """
87
87
  return pulumi.get(self, "location")
88
88
 
@@ -132,7 +132,7 @@ class _ListingSubscriptionState:
132
132
  :param pulumi.Input[Sequence[pulumi.Input['ListingSubscriptionLinkedResourceArgs']]] linked_resources: Output only. Linked resources created in the subscription. Only contains values if state = STATE_ACTIVE.
133
133
  Structure is documented below.
134
134
  :param pulumi.Input[str] listing_id: The ID of the listing. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces.
135
- :param pulumi.Input[str] location: The name of the location for this subscription.
135
+ :param pulumi.Input[str] location: The name of the location of the data exchange. Distinct from the location of the destination data set.
136
136
  :param pulumi.Input[str] name: The resource name of the subscription. e.g. "projects/myproject/locations/US/subscriptions/123"
137
137
  :param pulumi.Input[str] organization_display_name: Display name of the project of this subscription.
138
138
  :param pulumi.Input[str] organization_id: Organization of the project this subscription belongs to.
@@ -266,7 +266,7 @@ class _ListingSubscriptionState:
266
266
  @pulumi.getter
267
267
  def location(self) -> Optional[pulumi.Input[str]]:
268
268
  """
269
- The name of the location for this subscription.
269
+ The name of the location of the data exchange. Distinct from the location of the destination data set.
270
270
  """
271
271
  return pulumi.get(self, "location")
272
272
 
@@ -388,6 +388,8 @@ class ListingSubscription(pulumi.CustomResource):
388
388
  * How-to Guides
389
389
  * [Official Documentation](https://cloud.google.com/bigquery/docs/analytics-hub-introduction)
390
390
 
391
+ > **Note:** When importing the resource with `pulumi import`, provide the destination project and location
392
+ in the format projects/{{destination_project}}/locations/{{destination_location}}/subscriptions/{{subscription_id}}
391
393
  ## Example Usage
392
394
 
393
395
  ### Bigquery Analyticshub Listing Subscription Basic
@@ -463,7 +465,7 @@ class ListingSubscription(pulumi.CustomResource):
463
465
  :param pulumi.Input[Union['ListingSubscriptionDestinationDatasetArgs', 'ListingSubscriptionDestinationDatasetArgsDict']] destination_dataset: The destination dataset for this subscription.
464
466
  Structure is documented below.
465
467
  :param pulumi.Input[str] listing_id: The ID of the listing. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces.
466
- :param pulumi.Input[str] location: The name of the location for this subscription.
468
+ :param pulumi.Input[str] location: The name of the location of the data exchange. Distinct from the location of the destination data set.
467
469
  """
468
470
  ...
469
471
  @overload
@@ -480,6 +482,8 @@ class ListingSubscription(pulumi.CustomResource):
480
482
  * How-to Guides
481
483
  * [Official Documentation](https://cloud.google.com/bigquery/docs/analytics-hub-introduction)
482
484
 
485
+ > **Note:** When importing the resource with `pulumi import`, provide the destination project and location
486
+ in the format projects/{{destination_project}}/locations/{{destination_location}}/subscriptions/{{subscription_id}}
483
487
  ## Example Usage
484
488
 
485
489
  ### Bigquery Analyticshub Listing Subscription Basic
@@ -646,7 +650,7 @@ class ListingSubscription(pulumi.CustomResource):
646
650
  :param pulumi.Input[Sequence[pulumi.Input[Union['ListingSubscriptionLinkedResourceArgs', 'ListingSubscriptionLinkedResourceArgsDict']]]] linked_resources: Output only. Linked resources created in the subscription. Only contains values if state = STATE_ACTIVE.
647
651
  Structure is documented below.
648
652
  :param pulumi.Input[str] listing_id: The ID of the listing. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces.
649
- :param pulumi.Input[str] location: The name of the location for this subscription.
653
+ :param pulumi.Input[str] location: The name of the location of the data exchange. Distinct from the location of the destination data set.
650
654
  :param pulumi.Input[str] name: The resource name of the subscription. e.g. "projects/myproject/locations/US/subscriptions/123"
651
655
  :param pulumi.Input[str] organization_display_name: Display name of the project of this subscription.
652
656
  :param pulumi.Input[str] organization_id: Organization of the project this subscription belongs to.
@@ -741,7 +745,7 @@ class ListingSubscription(pulumi.CustomResource):
741
745
  @pulumi.getter
742
746
  def location(self) -> pulumi.Output[str]:
743
747
  """
744
- The name of the location for this subscription.
748
+ The name of the location of the data exchange. Distinct from the location of the destination data set.
745
749
  """
746
750
  return pulumi.get(self, "location")
747
751
 
@@ -32,7 +32,7 @@ class TableArgs:
32
32
  """
33
33
  The set of arguments for constructing a Table resource.
34
34
  :param pulumi.Input[str] instance_name: The name of the Bigtable instance.
35
- :param pulumi.Input['TableAutomatedBackupPolicyArgs'] automated_backup_policy: Defines an automated backup policy for a table, specified by Retention Period and Frequency. To disable, set both Retention Period and Frequency to 0.
35
+ :param pulumi.Input['TableAutomatedBackupPolicyArgs'] automated_backup_policy: Defines an automated backup policy for a table, specified by Retention Period and Frequency. To _create_ a table with automated backup disabled, omit this argument. To disable automated backup on an _existing_ table that has automated backup enabled, set both Retention Period and Frequency to 0.
36
36
 
37
37
  -----
38
38
  :param pulumi.Input[str] change_stream_retention: Duration to retain change stream data for the table. Set to 0 to disable. Must be between 1 and 7 days.
@@ -77,7 +77,7 @@ class TableArgs:
77
77
  @pulumi.getter(name="automatedBackupPolicy")
78
78
  def automated_backup_policy(self) -> Optional[pulumi.Input['TableAutomatedBackupPolicyArgs']]:
79
79
  """
80
- Defines an automated backup policy for a table, specified by Retention Period and Frequency. To disable, set both Retention Period and Frequency to 0.
80
+ Defines an automated backup policy for a table, specified by Retention Period and Frequency. To _create_ a table with automated backup disabled, omit this argument. To disable automated backup on an _existing_ table that has automated backup enabled, set both Retention Period and Frequency to 0.
81
81
 
82
82
  -----
83
83
  """
@@ -176,7 +176,7 @@ class _TableState:
176
176
  split_keys: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
177
177
  """
178
178
  Input properties used for looking up and filtering Table resources.
179
- :param pulumi.Input['TableAutomatedBackupPolicyArgs'] automated_backup_policy: Defines an automated backup policy for a table, specified by Retention Period and Frequency. To disable, set both Retention Period and Frequency to 0.
179
+ :param pulumi.Input['TableAutomatedBackupPolicyArgs'] automated_backup_policy: Defines an automated backup policy for a table, specified by Retention Period and Frequency. To _create_ a table with automated backup disabled, omit this argument. To disable automated backup on an _existing_ table that has automated backup enabled, set both Retention Period and Frequency to 0.
180
180
 
181
181
  -----
182
182
  :param pulumi.Input[str] change_stream_retention: Duration to retain change stream data for the table. Set to 0 to disable. Must be between 1 and 7 days.
@@ -211,7 +211,7 @@ class _TableState:
211
211
  @pulumi.getter(name="automatedBackupPolicy")
212
212
  def automated_backup_policy(self) -> Optional[pulumi.Input['TableAutomatedBackupPolicyArgs']]:
213
213
  """
214
- Defines an automated backup policy for a table, specified by Retention Period and Frequency. To disable, set both Retention Period and Frequency to 0.
214
+ Defines an automated backup policy for a table, specified by Retention Period and Frequency. To _create_ a table with automated backup disabled, omit this argument. To disable automated backup on an _existing_ table that has automated backup enabled, set both Retention Period and Frequency to 0.
215
215
 
216
216
  -----
217
217
  """
@@ -410,7 +410,7 @@ class Table(pulumi.CustomResource):
410
410
 
411
411
  :param str resource_name: The name of the resource.
412
412
  :param pulumi.ResourceOptions opts: Options for the resource.
413
- :param pulumi.Input[Union['TableAutomatedBackupPolicyArgs', 'TableAutomatedBackupPolicyArgsDict']] automated_backup_policy: Defines an automated backup policy for a table, specified by Retention Period and Frequency. To disable, set both Retention Period and Frequency to 0.
413
+ :param pulumi.Input[Union['TableAutomatedBackupPolicyArgs', 'TableAutomatedBackupPolicyArgsDict']] automated_backup_policy: Defines an automated backup policy for a table, specified by Retention Period and Frequency. To _create_ a table with automated backup disabled, omit this argument. To disable automated backup on an _existing_ table that has automated backup enabled, set both Retention Period and Frequency to 0.
414
414
 
415
415
  -----
416
416
  :param pulumi.Input[str] change_stream_retention: Duration to retain change stream data for the table. Set to 0 to disable. Must be between 1 and 7 days.
@@ -582,7 +582,7 @@ class Table(pulumi.CustomResource):
582
582
  :param str resource_name: The unique name of the resulting resource.
583
583
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
584
584
  :param pulumi.ResourceOptions opts: Options for the resource.
585
- :param pulumi.Input[Union['TableAutomatedBackupPolicyArgs', 'TableAutomatedBackupPolicyArgsDict']] automated_backup_policy: Defines an automated backup policy for a table, specified by Retention Period and Frequency. To disable, set both Retention Period and Frequency to 0.
585
+ :param pulumi.Input[Union['TableAutomatedBackupPolicyArgs', 'TableAutomatedBackupPolicyArgsDict']] automated_backup_policy: Defines an automated backup policy for a table, specified by Retention Period and Frequency. To _create_ a table with automated backup disabled, omit this argument. To disable automated backup on an _existing_ table that has automated backup enabled, set both Retention Period and Frequency to 0.
586
586
 
587
587
  -----
588
588
  :param pulumi.Input[str] change_stream_retention: Duration to retain change stream data for the table. Set to 0 to disable. Must be between 1 and 7 days.
@@ -614,7 +614,7 @@ class Table(pulumi.CustomResource):
614
614
  @pulumi.getter(name="automatedBackupPolicy")
615
615
  def automated_backup_policy(self) -> pulumi.Output[Optional['outputs.TableAutomatedBackupPolicy']]:
616
616
  """
617
- Defines an automated backup policy for a table, specified by Retention Period and Frequency. To disable, set both Retention Period and Frequency to 0.
617
+ Defines an automated backup policy for a table, specified by Retention Period and Frequency. To _create_ a table with automated backup disabled, omit this argument. To disable automated backup on an _existing_ table that has automated backup enabled, set both Retention Period and Frequency to 0.
618
618
 
619
619
  -----
620
620
  """
@@ -361,6 +361,14 @@ class DataAccessLabel(pulumi.CustomResource):
361
361
  udm_query: Optional[pulumi.Input[str]] = None,
362
362
  __props__=None):
363
363
  """
364
+ A DataAccessLabel is a label on events to define user access to data.
365
+
366
+ To get more information about DataAccessLabel, see:
367
+
368
+ * [API documentation](https://cloud.google.com/chronicle/docs/reference/rest/v1alpha/projects.locations.instances.dataAccessLabels)
369
+ * How-to Guides
370
+ * [Introduction to data RBAC](https://cloud.google.com/chronicle/docs/onboard/onboard-datarbac)
371
+
364
372
  ## Example Usage
365
373
 
366
374
  ### Chronicle Dataaccesslabel Basic
@@ -424,6 +432,14 @@ class DataAccessLabel(pulumi.CustomResource):
424
432
  args: DataAccessLabelArgs,
425
433
  opts: Optional[pulumi.ResourceOptions] = None):
426
434
  """
435
+ A DataAccessLabel is a label on events to define user access to data.
436
+
437
+ To get more information about DataAccessLabel, see:
438
+
439
+ * [API documentation](https://cloud.google.com/chronicle/docs/reference/rest/v1alpha/projects.locations.instances.dataAccessLabels)
440
+ * How-to Guides
441
+ * [Introduction to data RBAC](https://cloud.google.com/chronicle/docs/onboard/onboard-datarbac)
442
+
427
443
  ## Example Usage
428
444
 
429
445
  ### Chronicle Dataaccesslabel Basic
@@ -2917,6 +2917,10 @@ if not MYPY:
2917
2917
  """
2918
2918
  Information specifying a GKE Cluster. Format is `projects/{project_id}/locations/{location_id}/clusters/{cluster_id}.
2919
2919
  """
2920
+ dns_endpoint: NotRequired[pulumi.Input[bool]]
2921
+ """
2922
+ Optional. If set, the cluster will be accessed using the DNS endpoint. Note that both `dns_endpoint` and `internal_ip` cannot be set to true.
2923
+ """
2920
2924
  internal_ip: NotRequired[pulumi.Input[bool]]
2921
2925
  """
2922
2926
  Optional. If true, `cluster` is accessed using the private IP address of the control plane endpoint. Otherwise, the default IP address of the control plane endpoint is used. The default IP address is the private IP address for clusters with private control-plane endpoints and the public IP address otherwise. Only specify this option when `cluster` is a [private GKE cluster](https://cloud.google.com/kubernetes-engine/docs/concepts/private-cluster-concept).
@@ -2932,15 +2936,19 @@ elif False:
2932
2936
  class TargetGkeArgs:
2933
2937
  def __init__(__self__, *,
2934
2938
  cluster: Optional[pulumi.Input[str]] = None,
2939
+ dns_endpoint: Optional[pulumi.Input[bool]] = None,
2935
2940
  internal_ip: Optional[pulumi.Input[bool]] = None,
2936
2941
  proxy_url: Optional[pulumi.Input[str]] = None):
2937
2942
  """
2938
2943
  :param pulumi.Input[str] cluster: Information specifying a GKE Cluster. Format is `projects/{project_id}/locations/{location_id}/clusters/{cluster_id}.
2944
+ :param pulumi.Input[bool] dns_endpoint: Optional. If set, the cluster will be accessed using the DNS endpoint. Note that both `dns_endpoint` and `internal_ip` cannot be set to true.
2939
2945
  :param pulumi.Input[bool] internal_ip: Optional. If true, `cluster` is accessed using the private IP address of the control plane endpoint. Otherwise, the default IP address of the control plane endpoint is used. The default IP address is the private IP address for clusters with private control-plane endpoints and the public IP address otherwise. Only specify this option when `cluster` is a [private GKE cluster](https://cloud.google.com/kubernetes-engine/docs/concepts/private-cluster-concept).
2940
2946
  :param pulumi.Input[str] proxy_url: Optional. If set, used to configure a [proxy](https://kubernetes.io/docs/concepts/configuration/organize-cluster-access-kubeconfig/#proxy) to the Kubernetes server.
2941
2947
  """
2942
2948
  if cluster is not None:
2943
2949
  pulumi.set(__self__, "cluster", cluster)
2950
+ if dns_endpoint is not None:
2951
+ pulumi.set(__self__, "dns_endpoint", dns_endpoint)
2944
2952
  if internal_ip is not None:
2945
2953
  pulumi.set(__self__, "internal_ip", internal_ip)
2946
2954
  if proxy_url is not None:
@@ -2958,6 +2966,18 @@ class TargetGkeArgs:
2958
2966
  def cluster(self, value: Optional[pulumi.Input[str]]):
2959
2967
  pulumi.set(self, "cluster", value)
2960
2968
 
2969
+ @property
2970
+ @pulumi.getter(name="dnsEndpoint")
2971
+ def dns_endpoint(self) -> Optional[pulumi.Input[bool]]:
2972
+ """
2973
+ Optional. If set, the cluster will be accessed using the DNS endpoint. Note that both `dns_endpoint` and `internal_ip` cannot be set to true.
2974
+ """
2975
+ return pulumi.get(self, "dns_endpoint")
2976
+
2977
+ @dns_endpoint.setter
2978
+ def dns_endpoint(self, value: Optional[pulumi.Input[bool]]):
2979
+ pulumi.set(self, "dns_endpoint", value)
2980
+
2961
2981
  @property
2962
2982
  @pulumi.getter(name="internalIp")
2963
2983
  def internal_ip(self) -> Optional[pulumi.Input[bool]]:
@@ -2191,7 +2191,9 @@ class TargetGke(dict):
2191
2191
  @staticmethod
2192
2192
  def __key_warning(key: str):
2193
2193
  suggest = None
2194
- if key == "internalIp":
2194
+ if key == "dnsEndpoint":
2195
+ suggest = "dns_endpoint"
2196
+ elif key == "internalIp":
2195
2197
  suggest = "internal_ip"
2196
2198
  elif key == "proxyUrl":
2197
2199
  suggest = "proxy_url"
@@ -2209,15 +2211,19 @@ class TargetGke(dict):
2209
2211
 
2210
2212
  def __init__(__self__, *,
2211
2213
  cluster: Optional[str] = None,
2214
+ dns_endpoint: Optional[bool] = None,
2212
2215
  internal_ip: Optional[bool] = None,
2213
2216
  proxy_url: Optional[str] = None):
2214
2217
  """
2215
2218
  :param str cluster: Information specifying a GKE Cluster. Format is `projects/{project_id}/locations/{location_id}/clusters/{cluster_id}.
2219
+ :param bool dns_endpoint: Optional. If set, the cluster will be accessed using the DNS endpoint. Note that both `dns_endpoint` and `internal_ip` cannot be set to true.
2216
2220
  :param bool internal_ip: Optional. If true, `cluster` is accessed using the private IP address of the control plane endpoint. Otherwise, the default IP address of the control plane endpoint is used. The default IP address is the private IP address for clusters with private control-plane endpoints and the public IP address otherwise. Only specify this option when `cluster` is a [private GKE cluster](https://cloud.google.com/kubernetes-engine/docs/concepts/private-cluster-concept).
2217
2221
  :param str proxy_url: Optional. If set, used to configure a [proxy](https://kubernetes.io/docs/concepts/configuration/organize-cluster-access-kubeconfig/#proxy) to the Kubernetes server.
2218
2222
  """
2219
2223
  if cluster is not None:
2220
2224
  pulumi.set(__self__, "cluster", cluster)
2225
+ if dns_endpoint is not None:
2226
+ pulumi.set(__self__, "dns_endpoint", dns_endpoint)
2221
2227
  if internal_ip is not None:
2222
2228
  pulumi.set(__self__, "internal_ip", internal_ip)
2223
2229
  if proxy_url is not None:
@@ -2231,6 +2237,14 @@ class TargetGke(dict):
2231
2237
  """
2232
2238
  return pulumi.get(self, "cluster")
2233
2239
 
2240
+ @property
2241
+ @pulumi.getter(name="dnsEndpoint")
2242
+ def dns_endpoint(self) -> Optional[bool]:
2243
+ """
2244
+ Optional. If set, the cluster will be accessed using the DNS endpoint. Note that both `dns_endpoint` and `internal_ip` cannot be set to true.
2245
+ """
2246
+ return pulumi.get(self, "dns_endpoint")
2247
+
2234
2248
  @property
2235
2249
  @pulumi.getter(name="internalIp")
2236
2250
  def internal_ip(self) -> Optional[bool]:
@@ -55,7 +55,7 @@ class FunctionArgs:
55
55
  """
56
56
  The set of arguments for constructing a Function resource.
57
57
  :param pulumi.Input[str] runtime: The runtime in which the function is going to run.
58
- Eg. `"nodejs16"`, `"python39"`, `"dotnet3"`, `"go116"`, `"java11"`, `"ruby30"`, `"php74"`, etc. Check the [official doc](https://cloud.google.com/functions/docs/concepts/exec#runtimes) for the up-to-date list.
58
+ Eg. `"nodejs20"`, `"python39"`, `"dotnet3"`, `"go116"`, `"java11"`, `"ruby30"`, `"php74"`, etc. Check the [official doc](https://cloud.google.com/functions/docs/concepts/exec#runtimes) for the up-to-date list.
59
59
 
60
60
  - - -
61
61
  :param pulumi.Input[int] available_memory_mb: Memory (in MB), available to the function. Default value is `256`. Possible values include `128`, `256`, `512`, `1024`, etc.
@@ -164,7 +164,7 @@ class FunctionArgs:
164
164
  def runtime(self) -> pulumi.Input[str]:
165
165
  """
166
166
  The runtime in which the function is going to run.
167
- Eg. `"nodejs16"`, `"python39"`, `"dotnet3"`, `"go116"`, `"java11"`, `"ruby30"`, `"php74"`, etc. Check the [official doc](https://cloud.google.com/functions/docs/concepts/exec#runtimes) for the up-to-date list.
167
+ Eg. `"nodejs20"`, `"python39"`, `"dotnet3"`, `"go116"`, `"java11"`, `"ruby30"`, `"php74"`, etc. Check the [official doc](https://cloud.google.com/functions/docs/concepts/exec#runtimes) for the up-to-date list.
168
168
 
169
169
  - - -
170
170
  """
@@ -613,7 +613,7 @@ class _FunctionState:
613
613
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource and default labels configured on the provider.
614
614
  :param pulumi.Input[str] region: Region of function. If it is not provided, the provider region is used.
615
615
  :param pulumi.Input[str] runtime: The runtime in which the function is going to run.
616
- Eg. `"nodejs16"`, `"python39"`, `"dotnet3"`, `"go116"`, `"java11"`, `"ruby30"`, `"php74"`, etc. Check the [official doc](https://cloud.google.com/functions/docs/concepts/exec#runtimes) for the up-to-date list.
616
+ Eg. `"nodejs20"`, `"python39"`, `"dotnet3"`, `"go116"`, `"java11"`, `"ruby30"`, `"php74"`, etc. Check the [official doc](https://cloud.google.com/functions/docs/concepts/exec#runtimes) for the up-to-date list.
617
617
 
618
618
  - - -
619
619
  :param pulumi.Input[Sequence[pulumi.Input['FunctionSecretEnvironmentVariableArgs']]] secret_environment_variables: Secret environment variables configuration. Structure is documented below.
@@ -978,7 +978,7 @@ class _FunctionState:
978
978
  def runtime(self) -> Optional[pulumi.Input[str]]:
979
979
  """
980
980
  The runtime in which the function is going to run.
981
- Eg. `"nodejs16"`, `"python39"`, `"dotnet3"`, `"go116"`, `"java11"`, `"ruby30"`, `"php74"`, etc. Check the [official doc](https://cloud.google.com/functions/docs/concepts/exec#runtimes) for the up-to-date list.
981
+ Eg. `"nodejs20"`, `"python39"`, `"dotnet3"`, `"go116"`, `"java11"`, `"ruby30"`, `"php74"`, etc. Check the [official doc](https://cloud.google.com/functions/docs/concepts/exec#runtimes) for the up-to-date list.
982
982
 
983
983
  - - -
984
984
  """
@@ -1203,7 +1203,7 @@ class Function(pulumi.CustomResource):
1203
1203
  function = gcp.cloudfunctions.Function("function",
1204
1204
  name="function-test",
1205
1205
  description="My function",
1206
- runtime="nodejs16",
1206
+ runtime="nodejs20",
1207
1207
  available_memory_mb=128,
1208
1208
  source_archive_bucket=bucket.name,
1209
1209
  source_archive_object=archive.name,
@@ -1234,7 +1234,7 @@ class Function(pulumi.CustomResource):
1234
1234
  function = gcp.cloudfunctions.Function("function",
1235
1235
  name="function-test",
1236
1236
  description="My function",
1237
- runtime="nodejs16",
1237
+ runtime="nodejs20",
1238
1238
  available_memory_mb=128,
1239
1239
  source_archive_bucket=bucket.name,
1240
1240
  source_archive_object=archive.name,
@@ -1305,7 +1305,7 @@ class Function(pulumi.CustomResource):
1305
1305
  :param pulumi.Input[str] project: Project of the function. If it is not provided, the provider project is used.
1306
1306
  :param pulumi.Input[str] region: Region of function. If it is not provided, the provider region is used.
1307
1307
  :param pulumi.Input[str] runtime: The runtime in which the function is going to run.
1308
- Eg. `"nodejs16"`, `"python39"`, `"dotnet3"`, `"go116"`, `"java11"`, `"ruby30"`, `"php74"`, etc. Check the [official doc](https://cloud.google.com/functions/docs/concepts/exec#runtimes) for the up-to-date list.
1308
+ Eg. `"nodejs20"`, `"python39"`, `"dotnet3"`, `"go116"`, `"java11"`, `"ruby30"`, `"php74"`, etc. Check the [official doc](https://cloud.google.com/functions/docs/concepts/exec#runtimes) for the up-to-date list.
1309
1309
 
1310
1310
  - - -
1311
1311
  :param pulumi.Input[Sequence[pulumi.Input[Union['FunctionSecretEnvironmentVariableArgs', 'FunctionSecretEnvironmentVariableArgsDict']]]] secret_environment_variables: Secret environment variables configuration. Structure is documented below.
@@ -1357,7 +1357,7 @@ class Function(pulumi.CustomResource):
1357
1357
  function = gcp.cloudfunctions.Function("function",
1358
1358
  name="function-test",
1359
1359
  description="My function",
1360
- runtime="nodejs16",
1360
+ runtime="nodejs20",
1361
1361
  available_memory_mb=128,
1362
1362
  source_archive_bucket=bucket.name,
1363
1363
  source_archive_object=archive.name,
@@ -1388,7 +1388,7 @@ class Function(pulumi.CustomResource):
1388
1388
  function = gcp.cloudfunctions.Function("function",
1389
1389
  name="function-test",
1390
1390
  description="My function",
1391
- runtime="nodejs16",
1391
+ runtime="nodejs20",
1392
1392
  available_memory_mb=128,
1393
1393
  source_archive_bucket=bucket.name,
1394
1394
  source_archive_object=archive.name,
@@ -1605,7 +1605,7 @@ class Function(pulumi.CustomResource):
1605
1605
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource and default labels configured on the provider.
1606
1606
  :param pulumi.Input[str] region: Region of function. If it is not provided, the provider region is used.
1607
1607
  :param pulumi.Input[str] runtime: The runtime in which the function is going to run.
1608
- Eg. `"nodejs16"`, `"python39"`, `"dotnet3"`, `"go116"`, `"java11"`, `"ruby30"`, `"php74"`, etc. Check the [official doc](https://cloud.google.com/functions/docs/concepts/exec#runtimes) for the up-to-date list.
1608
+ Eg. `"nodejs20"`, `"python39"`, `"dotnet3"`, `"go116"`, `"java11"`, `"ruby30"`, `"php74"`, etc. Check the [official doc](https://cloud.google.com/functions/docs/concepts/exec#runtimes) for the up-to-date list.
1609
1609
 
1610
1610
  - - -
1611
1611
  :param pulumi.Input[Sequence[pulumi.Input[Union['FunctionSecretEnvironmentVariableArgs', 'FunctionSecretEnvironmentVariableArgsDict']]]] secret_environment_variables: Secret environment variables configuration. Structure is documented below.
@@ -1852,7 +1852,7 @@ class Function(pulumi.CustomResource):
1852
1852
  def runtime(self) -> pulumi.Output[str]:
1853
1853
  """
1854
1854
  The runtime in which the function is going to run.
1855
- Eg. `"nodejs16"`, `"python39"`, `"dotnet3"`, `"go116"`, `"java11"`, `"ruby30"`, `"php74"`, etc. Check the [official doc](https://cloud.google.com/functions/docs/concepts/exec#runtimes) for the up-to-date list.
1855
+ Eg. `"nodejs20"`, `"python39"`, `"dotnet3"`, `"go116"`, `"java11"`, `"ruby30"`, `"php74"`, etc. Check the [official doc](https://cloud.google.com/functions/docs/concepts/exec#runtimes) for the up-to-date list.
1856
1856
 
1857
1857
  - - -
1858
1858
  """
@@ -519,7 +519,7 @@ class Function(pulumi.CustomResource):
519
519
  location="us-central1",
520
520
  description="a new function",
521
521
  build_config={
522
- "runtime": "nodejs16",
522
+ "runtime": "nodejs20",
523
523
  "entry_point": "helloHttp",
524
524
  "source": {
525
525
  "storage_source": {
@@ -558,7 +558,7 @@ class Function(pulumi.CustomResource):
558
558
  location="us-central1",
559
559
  description="a new function",
560
560
  build_config={
561
- "runtime": "nodejs16",
561
+ "runtime": "nodejs20",
562
562
  "entry_point": "helloPubSub",
563
563
  "environment_variables": {
564
564
  "BUILD_CONFIG_TEST": "build_test",
@@ -615,7 +615,7 @@ class Function(pulumi.CustomResource):
615
615
  location="us-central1",
616
616
  description="a new function",
617
617
  build_config={
618
- "runtime": "nodejs16",
618
+ "runtime": "nodejs20",
619
619
  "entry_point": "helloHttp",
620
620
  "source": {
621
621
  "storage_source": {
@@ -706,7 +706,7 @@ class Function(pulumi.CustomResource):
706
706
  location="us-central1",
707
707
  description="a new function",
708
708
  build_config={
709
- "runtime": "nodejs12",
709
+ "runtime": "nodejs20",
710
710
  "entry_point": "entryPoint",
711
711
  "environment_variables": {
712
712
  "BUILD_CONFIG_TEST": "build_test",
@@ -792,7 +792,7 @@ class Function(pulumi.CustomResource):
792
792
  location="us-central1",
793
793
  description="a new function",
794
794
  build_config={
795
- "runtime": "nodejs12",
795
+ "runtime": "nodejs20",
796
796
  "entry_point": "entryPoint",
797
797
  "environment_variables": {
798
798
  "BUILD_CONFIG_TEST": "build_test",
@@ -885,7 +885,7 @@ class Function(pulumi.CustomResource):
885
885
  location="us-central1",
886
886
  description="a new function",
887
887
  build_config={
888
- "runtime": "nodejs16",
888
+ "runtime": "nodejs20",
889
889
  "entry_point": "helloHttp",
890
890
  "source": {
891
891
  "storage_source": {
@@ -935,7 +935,7 @@ class Function(pulumi.CustomResource):
935
935
  location="us-central1",
936
936
  description="a new function",
937
937
  build_config={
938
- "runtime": "nodejs16",
938
+ "runtime": "nodejs20",
939
939
  "entry_point": "helloHttp",
940
940
  "source": {
941
941
  "storage_source": {
@@ -990,7 +990,7 @@ class Function(pulumi.CustomResource):
990
990
  location="us-central1",
991
991
  description="a new function",
992
992
  build_config={
993
- "runtime": "nodejs16",
993
+ "runtime": "nodejs20",
994
994
  "entry_point": "helloHttp",
995
995
  "source": {
996
996
  "storage_source": {
@@ -1039,7 +1039,7 @@ class Function(pulumi.CustomResource):
1039
1039
  location="us-central1",
1040
1040
  description="a new function",
1041
1041
  build_config={
1042
- "runtime": "nodejs16",
1042
+ "runtime": "nodejs20",
1043
1043
  "entry_point": "helloHttp",
1044
1044
  "source": {
1045
1045
  "storage_source": {
@@ -1106,7 +1106,7 @@ class Function(pulumi.CustomResource):
1106
1106
  description="CMEK function",
1107
1107
  kms_key_name="cmek-key",
1108
1108
  build_config={
1109
- "runtime": "nodejs16",
1109
+ "runtime": "nodejs20",
1110
1110
  "entry_point": "helloHttp",
1111
1111
  "docker_repository": encoded_ar_repo.id,
1112
1112
  "source": {
@@ -1147,7 +1147,7 @@ class Function(pulumi.CustomResource):
1147
1147
  location="europe-west6",
1148
1148
  description="a new function",
1149
1149
  build_config={
1150
- "runtime": "nodejs16",
1150
+ "runtime": "nodejs20",
1151
1151
  "entry_point": "helloPubSub",
1152
1152
  "environment_variables": {
1153
1153
  "BUILD_CONFIG_TEST": "build_test",
@@ -1205,7 +1205,7 @@ class Function(pulumi.CustomResource):
1205
1205
  location="europe-west6",
1206
1206
  description="a new function",
1207
1207
  build_config={
1208
- "runtime": "nodejs16",
1208
+ "runtime": "nodejs20",
1209
1209
  "entry_point": "helloPubSub",
1210
1210
  "environment_variables": {
1211
1211
  "BUILD_CONFIG_TEST": "build_test",
@@ -1325,7 +1325,7 @@ class Function(pulumi.CustomResource):
1325
1325
  location="us-central1",
1326
1326
  description="a new function",
1327
1327
  build_config={
1328
- "runtime": "nodejs16",
1328
+ "runtime": "nodejs20",
1329
1329
  "entry_point": "helloHttp",
1330
1330
  "source": {
1331
1331
  "storage_source": {
@@ -1364,7 +1364,7 @@ class Function(pulumi.CustomResource):
1364
1364
  location="us-central1",
1365
1365
  description="a new function",
1366
1366
  build_config={
1367
- "runtime": "nodejs16",
1367
+ "runtime": "nodejs20",
1368
1368
  "entry_point": "helloPubSub",
1369
1369
  "environment_variables": {
1370
1370
  "BUILD_CONFIG_TEST": "build_test",
@@ -1421,7 +1421,7 @@ class Function(pulumi.CustomResource):
1421
1421
  location="us-central1",
1422
1422
  description="a new function",
1423
1423
  build_config={
1424
- "runtime": "nodejs16",
1424
+ "runtime": "nodejs20",
1425
1425
  "entry_point": "helloHttp",
1426
1426
  "source": {
1427
1427
  "storage_source": {
@@ -1512,7 +1512,7 @@ class Function(pulumi.CustomResource):
1512
1512
  location="us-central1",
1513
1513
  description="a new function",
1514
1514
  build_config={
1515
- "runtime": "nodejs12",
1515
+ "runtime": "nodejs20",
1516
1516
  "entry_point": "entryPoint",
1517
1517
  "environment_variables": {
1518
1518
  "BUILD_CONFIG_TEST": "build_test",
@@ -1598,7 +1598,7 @@ class Function(pulumi.CustomResource):
1598
1598
  location="us-central1",
1599
1599
  description="a new function",
1600
1600
  build_config={
1601
- "runtime": "nodejs12",
1601
+ "runtime": "nodejs20",
1602
1602
  "entry_point": "entryPoint",
1603
1603
  "environment_variables": {
1604
1604
  "BUILD_CONFIG_TEST": "build_test",
@@ -1691,7 +1691,7 @@ class Function(pulumi.CustomResource):
1691
1691
  location="us-central1",
1692
1692
  description="a new function",
1693
1693
  build_config={
1694
- "runtime": "nodejs16",
1694
+ "runtime": "nodejs20",
1695
1695
  "entry_point": "helloHttp",
1696
1696
  "source": {
1697
1697
  "storage_source": {
@@ -1741,7 +1741,7 @@ class Function(pulumi.CustomResource):
1741
1741
  location="us-central1",
1742
1742
  description="a new function",
1743
1743
  build_config={
1744
- "runtime": "nodejs16",
1744
+ "runtime": "nodejs20",
1745
1745
  "entry_point": "helloHttp",
1746
1746
  "source": {
1747
1747
  "storage_source": {
@@ -1796,7 +1796,7 @@ class Function(pulumi.CustomResource):
1796
1796
  location="us-central1",
1797
1797
  description="a new function",
1798
1798
  build_config={
1799
- "runtime": "nodejs16",
1799
+ "runtime": "nodejs20",
1800
1800
  "entry_point": "helloHttp",
1801
1801
  "source": {
1802
1802
  "storage_source": {
@@ -1845,7 +1845,7 @@ class Function(pulumi.CustomResource):
1845
1845
  location="us-central1",
1846
1846
  description="a new function",
1847
1847
  build_config={
1848
- "runtime": "nodejs16",
1848
+ "runtime": "nodejs20",
1849
1849
  "entry_point": "helloHttp",
1850
1850
  "source": {
1851
1851
  "storage_source": {
@@ -1912,7 +1912,7 @@ class Function(pulumi.CustomResource):
1912
1912
  description="CMEK function",
1913
1913
  kms_key_name="cmek-key",
1914
1914
  build_config={
1915
- "runtime": "nodejs16",
1915
+ "runtime": "nodejs20",
1916
1916
  "entry_point": "helloHttp",
1917
1917
  "docker_repository": encoded_ar_repo.id,
1918
1918
  "source": {
@@ -1953,7 +1953,7 @@ class Function(pulumi.CustomResource):
1953
1953
  location="europe-west6",
1954
1954
  description="a new function",
1955
1955
  build_config={
1956
- "runtime": "nodejs16",
1956
+ "runtime": "nodejs20",
1957
1957
  "entry_point": "helloPubSub",
1958
1958
  "environment_variables": {
1959
1959
  "BUILD_CONFIG_TEST": "build_test",
@@ -2011,7 +2011,7 @@ class Function(pulumi.CustomResource):
2011
2011
  location="europe-west6",
2012
2012
  description="a new function",
2013
2013
  build_config={
2014
- "runtime": "nodejs16",
2014
+ "runtime": "nodejs20",
2015
2015
  "entry_point": "helloPubSub",
2016
2016
  "environment_variables": {
2017
2017
  "BUILD_CONFIG_TEST": "build_test",