pulumi-gcp 8.24.0a1743057423__py3-none-any.whl → 8.25.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 (150) hide show
  1. pulumi_gcp/__init__.py +131 -0
  2. pulumi_gcp/_inputs.py +48 -0
  3. pulumi_gcp/accesscontextmanager/_inputs.py +324 -12
  4. pulumi_gcp/accesscontextmanager/outputs.py +204 -12
  5. pulumi_gcp/accesscontextmanager/service_perimeter.py +0 -2
  6. pulumi_gcp/apigee/__init__.py +1 -0
  7. pulumi_gcp/apigee/_inputs.py +58 -0
  8. pulumi_gcp/apigee/dns_zone.py +491 -0
  9. pulumi_gcp/apigee/outputs.py +53 -0
  10. pulumi_gcp/bigquery/_inputs.py +158 -0
  11. pulumi_gcp/bigquery/outputs.py +115 -0
  12. pulumi_gcp/bigquery/reservation.py +189 -1
  13. pulumi_gcp/bigquery/reservation_assignment.py +7 -7
  14. pulumi_gcp/bigqueryanalyticshub/listing_subscription.py +11 -7
  15. pulumi_gcp/bigtable/table.py +8 -8
  16. pulumi_gcp/chronicle/data_access_label.py +16 -0
  17. pulumi_gcp/chronicle/data_access_scope.py +16 -0
  18. pulumi_gcp/chronicle/reference_list.py +16 -0
  19. pulumi_gcp/chronicle/retrohunt.py +16 -0
  20. pulumi_gcp/chronicle/rule.py +16 -0
  21. pulumi_gcp/chronicle/rule_deployment.py +16 -0
  22. pulumi_gcp/chronicle/watchlist.py +16 -0
  23. pulumi_gcp/cloudfunctionsv2/_inputs.py +20 -0
  24. pulumi_gcp/cloudfunctionsv2/outputs.py +25 -0
  25. pulumi_gcp/cloudrunv2/_inputs.py +20 -0
  26. pulumi_gcp/cloudrunv2/outputs.py +25 -0
  27. pulumi_gcp/cloudrunv2/service.py +14 -14
  28. pulumi_gcp/compute/__init__.py +2 -0
  29. pulumi_gcp/compute/_inputs.py +2627 -61
  30. pulumi_gcp/compute/backend_service.py +121 -3
  31. pulumi_gcp/compute/get_backend_service.py +15 -4
  32. pulumi_gcp/compute/get_images.py +172 -0
  33. pulumi_gcp/compute/get_instance.py +12 -1
  34. pulumi_gcp/compute/get_region_backend_service.py +482 -0
  35. pulumi_gcp/compute/get_resource_policy.py +15 -4
  36. pulumi_gcp/compute/get_router.py +12 -1
  37. pulumi_gcp/compute/get_subnetwork.py +43 -1
  38. pulumi_gcp/compute/image.py +54 -0
  39. pulumi_gcp/compute/instance.py +47 -0
  40. pulumi_gcp/compute/instance_from_machine_image.py +94 -0
  41. pulumi_gcp/compute/instance_from_template.py +47 -0
  42. pulumi_gcp/compute/interconnect.py +14 -7
  43. pulumi_gcp/compute/outputs.py +4522 -391
  44. pulumi_gcp/compute/public_delegated_prefix.py +69 -15
  45. pulumi_gcp/compute/resource_policy.py +169 -3
  46. pulumi_gcp/compute/router.py +54 -0
  47. pulumi_gcp/compute/router_route_policy.py +16 -0
  48. pulumi_gcp/compute/subnetwork.py +35 -5
  49. pulumi_gcp/config/__init__.pyi +8 -0
  50. pulumi_gcp/config/outputs.py +27 -0
  51. pulumi_gcp/config/vars.py +16 -0
  52. pulumi_gcp/container/_inputs.py +274 -13
  53. pulumi_gcp/container/cluster.py +101 -0
  54. pulumi_gcp/container/get_cluster.py +23 -1
  55. pulumi_gcp/container/get_registry_image.py +4 -0
  56. pulumi_gcp/container/get_registry_repository.py +4 -0
  57. pulumi_gcp/container/outputs.py +305 -10
  58. pulumi_gcp/container/registry.py +4 -0
  59. pulumi_gcp/datafusion/instance.py +68 -0
  60. pulumi_gcp/dataproc/__init__.py +8 -0
  61. pulumi_gcp/dataproc/_inputs.py +219 -0
  62. pulumi_gcp/dataproc/get_metastore_database_iam_policy.py +193 -0
  63. pulumi_gcp/dataproc/get_metastore_table_iam_policy.py +210 -0
  64. pulumi_gcp/dataproc/metastore_database_iam_binding.py +848 -0
  65. pulumi_gcp/dataproc/metastore_database_iam_member.py +848 -0
  66. pulumi_gcp/dataproc/metastore_database_iam_policy.py +687 -0
  67. pulumi_gcp/dataproc/metastore_federation.py +38 -2
  68. pulumi_gcp/dataproc/metastore_table_iam_binding.py +895 -0
  69. pulumi_gcp/dataproc/metastore_table_iam_member.py +895 -0
  70. pulumi_gcp/dataproc/metastore_table_iam_policy.py +734 -0
  71. pulumi_gcp/dataproc/outputs.py +139 -0
  72. pulumi_gcp/datastream/_inputs.py +311 -94
  73. pulumi_gcp/datastream/connection_profile.py +40 -0
  74. pulumi_gcp/datastream/outputs.py +244 -51
  75. pulumi_gcp/datastream/stream.py +216 -0
  76. pulumi_gcp/discoveryengine/__init__.py +1 -0
  77. pulumi_gcp/discoveryengine/sitemap.py +504 -0
  78. pulumi_gcp/eventarc/__init__.py +1 -0
  79. pulumi_gcp/eventarc/enrollment.py +980 -0
  80. pulumi_gcp/firebase/__init__.py +1 -0
  81. pulumi_gcp/firebase/_inputs.py +484 -0
  82. pulumi_gcp/firebase/app_hosting_build.py +1232 -0
  83. pulumi_gcp/firebase/outputs.py +333 -0
  84. pulumi_gcp/identityplatform/_inputs.py +91 -0
  85. pulumi_gcp/identityplatform/outputs.py +73 -0
  86. pulumi_gcp/identityplatform/tenant.py +56 -0
  87. pulumi_gcp/lustre/__init__.py +8 -0
  88. pulumi_gcp/lustre/instance.py +983 -0
  89. pulumi_gcp/managedkafka/cluster.py +2 -2
  90. pulumi_gcp/memorystore/__init__.py +1 -0
  91. pulumi_gcp/memorystore/_inputs.py +1252 -7
  92. pulumi_gcp/memorystore/get_instance.py +45 -1
  93. pulumi_gcp/memorystore/instance.py +481 -30
  94. pulumi_gcp/memorystore/instance_desired_user_created_endpoints.py +843 -0
  95. pulumi_gcp/memorystore/outputs.py +1440 -15
  96. pulumi_gcp/networkmanagement/_inputs.py +422 -91
  97. pulumi_gcp/networkmanagement/connectivity_test.py +233 -211
  98. pulumi_gcp/networkmanagement/outputs.py +280 -61
  99. pulumi_gcp/networksecurity/_inputs.py +891 -26
  100. pulumi_gcp/networksecurity/intercept_deployment_group.py +44 -16
  101. pulumi_gcp/networksecurity/intercept_endpoint_group.py +90 -36
  102. pulumi_gcp/networksecurity/intercept_endpoint_group_association.py +53 -8
  103. pulumi_gcp/networksecurity/mirroring_deployment_group.py +44 -16
  104. pulumi_gcp/networksecurity/mirroring_endpoint_group.py +94 -36
  105. pulumi_gcp/networksecurity/mirroring_endpoint_group_association.py +53 -8
  106. pulumi_gcp/networksecurity/outputs.py +531 -1
  107. pulumi_gcp/networksecurity/security_profile.py +8 -0
  108. pulumi_gcp/organizations/__init__.py +2 -0
  109. pulumi_gcp/organizations/get_iam_custom_role.py +198 -0
  110. pulumi_gcp/organizations/get_iam_custom_roles.py +164 -0
  111. pulumi_gcp/organizations/outputs.py +96 -0
  112. pulumi_gcp/osconfig/__init__.py +1 -0
  113. pulumi_gcp/osconfig/_inputs.py +5413 -0
  114. pulumi_gcp/osconfig/outputs.py +3962 -0
  115. pulumi_gcp/osconfig/v2_policy_orchestrator.py +971 -0
  116. pulumi_gcp/parametermanager/get_parameter.py +16 -1
  117. pulumi_gcp/parametermanager/get_parameter_version.py +19 -1
  118. pulumi_gcp/parametermanager/get_parameter_version_render.py +4 -0
  119. pulumi_gcp/parametermanager/get_parameters.py +4 -0
  120. pulumi_gcp/parametermanager/get_regional_parameter.py +4 -0
  121. pulumi_gcp/parametermanager/get_regional_parameter_version.py +4 -0
  122. pulumi_gcp/parametermanager/get_regional_parameter_version_render.py +8 -0
  123. pulumi_gcp/parametermanager/get_regional_parameters.py +4 -0
  124. pulumi_gcp/parametermanager/outputs.py +11 -0
  125. pulumi_gcp/parametermanager/parameter.py +88 -0
  126. pulumi_gcp/parametermanager/parameter_version.py +74 -0
  127. pulumi_gcp/parametermanager/regional_parameter.py +12 -0
  128. pulumi_gcp/parametermanager/regional_parameter_version.py +12 -0
  129. pulumi_gcp/provider.py +75 -0
  130. pulumi_gcp/pulumi-plugin.json +1 -1
  131. pulumi_gcp/redis/_inputs.py +136 -0
  132. pulumi_gcp/redis/cluster.py +54 -0
  133. pulumi_gcp/redis/outputs.py +114 -0
  134. pulumi_gcp/secretmanager/regional_secret_version.py +0 -16
  135. pulumi_gcp/storage/__init__.py +6 -0
  136. pulumi_gcp/storage/_inputs.py +1322 -0
  137. pulumi_gcp/storage/bucket.py +7 -7
  138. pulumi_gcp/storage/control_folder_intelligence_config.py +420 -0
  139. pulumi_gcp/storage/control_organization_intelligence_config.py +420 -0
  140. pulumi_gcp/storage/control_project_intelligence_config.py +408 -0
  141. pulumi_gcp/storage/get_bucket_object_content.py +16 -1
  142. pulumi_gcp/storage/get_control_folder_intelligence_config.py +160 -0
  143. pulumi_gcp/storage/get_control_organization_intelligence_config.py +160 -0
  144. pulumi_gcp/storage/get_control_project_intelligence_config.py +160 -0
  145. pulumi_gcp/storage/outputs.py +1553 -17
  146. pulumi_gcp/workbench/instance.py +14 -2
  147. {pulumi_gcp-8.24.0a1743057423.dist-info → pulumi_gcp-8.25.0.dist-info}/METADATA +1 -1
  148. {pulumi_gcp-8.24.0a1743057423.dist-info → pulumi_gcp-8.25.0.dist-info}/RECORD +150 -124
  149. {pulumi_gcp-8.24.0a1743057423.dist-info → pulumi_gcp-8.25.0.dist-info}/WHEEL +0 -0
  150. {pulumi_gcp-8.24.0a1743057423.dist-info → pulumi_gcp-8.25.0.dist-info}/top_level.txt +0 -0
@@ -27,7 +27,7 @@ class ReservationAssignmentArgs:
27
27
  """
28
28
  The set of arguments for constructing a ReservationAssignment resource.
29
29
  :param pulumi.Input[str] assignee: The resource which will use the reservation. E.g. projects/myproject, folders/123, organizations/456.
30
- :param pulumi.Input[str] job_type: Types of job, which could be specified when using the reservation. Possible values: JOB_TYPE_UNSPECIFIED, PIPELINE, QUERY
30
+ :param pulumi.Input[str] job_type: Types of job, which could be specified when using the reservation. Possible values: JOB_TYPE_UNSPECIFIED, PIPELINE, QUERY, CONTINUOUS
31
31
  :param pulumi.Input[str] reservation: The reservation for the resource
32
32
 
33
33
 
@@ -60,7 +60,7 @@ class ReservationAssignmentArgs:
60
60
  @pulumi.getter(name="jobType")
61
61
  def job_type(self) -> pulumi.Input[str]:
62
62
  """
63
- Types of job, which could be specified when using the reservation. Possible values: JOB_TYPE_UNSPECIFIED, PIPELINE, QUERY
63
+ Types of job, which could be specified when using the reservation. Possible values: JOB_TYPE_UNSPECIFIED, PIPELINE, QUERY, CONTINUOUS
64
64
  """
65
65
  return pulumi.get(self, "job_type")
66
66
 
@@ -122,7 +122,7 @@ class _ReservationAssignmentState:
122
122
  """
123
123
  Input properties used for looking up and filtering ReservationAssignment resources.
124
124
  :param pulumi.Input[str] assignee: The resource which will use the reservation. E.g. projects/myproject, folders/123, organizations/456.
125
- :param pulumi.Input[str] job_type: Types of job, which could be specified when using the reservation. Possible values: JOB_TYPE_UNSPECIFIED, PIPELINE, QUERY
125
+ :param pulumi.Input[str] job_type: Types of job, which could be specified when using the reservation. Possible values: JOB_TYPE_UNSPECIFIED, PIPELINE, QUERY, CONTINUOUS
126
126
  :param pulumi.Input[str] location: The location for the resource
127
127
  :param pulumi.Input[str] name: Output only. The resource name of the assignment.
128
128
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
@@ -165,7 +165,7 @@ class _ReservationAssignmentState:
165
165
  @pulumi.getter(name="jobType")
166
166
  def job_type(self) -> Optional[pulumi.Input[str]]:
167
167
  """
168
- Types of job, which could be specified when using the reservation. Possible values: JOB_TYPE_UNSPECIFIED, PIPELINE, QUERY
168
+ Types of job, which could be specified when using the reservation. Possible values: JOB_TYPE_UNSPECIFIED, PIPELINE, QUERY, CONTINUOUS
169
169
  """
170
170
  return pulumi.get(self, "job_type")
171
171
 
@@ -306,7 +306,7 @@ class ReservationAssignment(pulumi.CustomResource):
306
306
  :param str resource_name: The name of the resource.
307
307
  :param pulumi.ResourceOptions opts: Options for the resource.
308
308
  :param pulumi.Input[str] assignee: The resource which will use the reservation. E.g. projects/myproject, folders/123, organizations/456.
309
- :param pulumi.Input[str] job_type: Types of job, which could be specified when using the reservation. Possible values: JOB_TYPE_UNSPECIFIED, PIPELINE, QUERY
309
+ :param pulumi.Input[str] job_type: Types of job, which could be specified when using the reservation. Possible values: JOB_TYPE_UNSPECIFIED, PIPELINE, QUERY, CONTINUOUS
310
310
  :param pulumi.Input[str] location: The location for the resource
311
311
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
312
312
  If it is not provided, the provider project is used.
@@ -441,7 +441,7 @@ class ReservationAssignment(pulumi.CustomResource):
441
441
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
442
442
  :param pulumi.ResourceOptions opts: Options for the resource.
443
443
  :param pulumi.Input[str] assignee: The resource which will use the reservation. E.g. projects/myproject, folders/123, organizations/456.
444
- :param pulumi.Input[str] job_type: Types of job, which could be specified when using the reservation. Possible values: JOB_TYPE_UNSPECIFIED, PIPELINE, QUERY
444
+ :param pulumi.Input[str] job_type: Types of job, which could be specified when using the reservation. Possible values: JOB_TYPE_UNSPECIFIED, PIPELINE, QUERY, CONTINUOUS
445
445
  :param pulumi.Input[str] location: The location for the resource
446
446
  :param pulumi.Input[str] name: Output only. The resource name of the assignment.
447
447
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
@@ -478,7 +478,7 @@ class ReservationAssignment(pulumi.CustomResource):
478
478
  @pulumi.getter(name="jobType")
479
479
  def job_type(self) -> pulumi.Output[str]:
480
480
  """
481
- Types of job, which could be specified when using the reservation. Possible values: JOB_TYPE_UNSPECIFIED, PIPELINE, QUERY
481
+ Types of job, which could be specified when using the reservation. Possible values: JOB_TYPE_UNSPECIFIED, PIPELINE, QUERY, CONTINUOUS
482
482
  """
483
483
  return pulumi.get(self, "job_type")
484
484
 
@@ -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 _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.
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". If this argument is not provided in the configuration on update, the resource's automated backup policy will _not_ be modified.
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 _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.
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". If this argument is not provided in the configuration on update, the resource's automated backup policy will _not_ be modified.
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 _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.
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". If this argument is not provided in the configuration on update, the resource's automated backup policy will _not_ be modified.
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 _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.
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". If this argument is not provided in the configuration on update, the resource's automated backup policy will _not_ be modified.
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 _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.
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". If this argument is not provided in the configuration on update, the resource's automated backup policy will _not_ be modified.
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 _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.
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". If this argument is not provided in the configuration on update, the resource's automated backup policy will _not_ be modified.
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.
@@ -612,9 +612,9 @@ class Table(pulumi.CustomResource):
612
612
 
613
613
  @property
614
614
  @pulumi.getter(name="automatedBackupPolicy")
615
- def automated_backup_policy(self) -> pulumi.Output[Optional['outputs.TableAutomatedBackupPolicy']]:
615
+ def automated_backup_policy(self) -> pulumi.Output['outputs.TableAutomatedBackupPolicy']:
616
616
  """
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.
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". If this argument is not provided in the configuration on update, the resource's automated backup policy will _not_ be modified.
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/v1/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/v1/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
@@ -498,6 +498,14 @@ class DataAccessScope(pulumi.CustomResource):
498
498
  project: Optional[pulumi.Input[str]] = None,
499
499
  __props__=None):
500
500
  """
501
+ A DataAccessScope is a boolean expression of data access labels used to restrict access to data for users.
502
+
503
+ To get more information about DataAccessScope, see:
504
+
505
+ * [API documentation](https://cloud.google.com/chronicle/docs/reference/rest/v1/projects.locations.instances.dataAccessScopes)
506
+ * How-to Guides
507
+ * [Introduction to data RBAC](https://cloud.google.com/chronicle/docs/onboard/onboard-datarbac)
508
+
501
509
  ## Example Usage
502
510
 
503
511
  ### Chronicle Dataaccessscope With Logtype
@@ -675,6 +683,14 @@ class DataAccessScope(pulumi.CustomResource):
675
683
  args: DataAccessScopeArgs,
676
684
  opts: Optional[pulumi.ResourceOptions] = None):
677
685
  """
686
+ A DataAccessScope is a boolean expression of data access labels used to restrict access to data for users.
687
+
688
+ To get more information about DataAccessScope, see:
689
+
690
+ * [API documentation](https://cloud.google.com/chronicle/docs/reference/rest/v1/projects.locations.instances.dataAccessScopes)
691
+ * How-to Guides
692
+ * [Introduction to data RBAC](https://cloud.google.com/chronicle/docs/onboard/onboard-datarbac)
693
+
678
694
  ## Example Usage
679
695
 
680
696
  ### Chronicle Dataaccessscope With Logtype
@@ -416,6 +416,14 @@ class ReferenceList(pulumi.CustomResource):
416
416
  syntax_type: Optional[pulumi.Input[str]] = None,
417
417
  __props__=None):
418
418
  """
419
+ Reference lists are user-defined lists of values which users can use in multiple Rules.
420
+
421
+ To get more information about ReferenceList, see:
422
+
423
+ * [API documentation](https://cloud.google.com/chronicle/docs/reference/rest/v1/projects.locations.instances.referenceLists)
424
+ * How-to Guides
425
+ * [Google SecOps Guides](https://cloud.google.com/chronicle/docs/secops/secops-overview)
426
+
419
427
  ## Example Usage
420
428
 
421
429
  ### Chronicle Referencelist Basic
@@ -488,6 +496,14 @@ class ReferenceList(pulumi.CustomResource):
488
496
  args: ReferenceListArgs,
489
497
  opts: Optional[pulumi.ResourceOptions] = None):
490
498
  """
499
+ Reference lists are user-defined lists of values which users can use in multiple Rules.
500
+
501
+ To get more information about ReferenceList, see:
502
+
503
+ * [API documentation](https://cloud.google.com/chronicle/docs/reference/rest/v1/projects.locations.instances.referenceLists)
504
+ * How-to Guides
505
+ * [Google SecOps Guides](https://cloud.google.com/chronicle/docs/secops/secops-overview)
506
+
491
507
  ## Example Usage
492
508
 
493
509
  ### Chronicle Referencelist Basic
@@ -339,6 +339,14 @@ class Retrohunt(pulumi.CustomResource):
339
339
  rule: Optional[pulumi.Input[str]] = None,
340
340
  __props__=None):
341
341
  """
342
+ Retrohunt is an execution of a Rule over a time range in the past.
343
+
344
+ To get more information about Retrohunt, see:
345
+
346
+ * [API documentation](https://cloud.google.com/chronicle/docs/reference/rest/v1/projects.locations.instances.rules.retrohunts)
347
+ * How-to Guides
348
+ * [Google SecOps Guides](https://cloud.google.com/chronicle/docs/secops/secops-overview)
349
+
342
350
  ## Example Usage
343
351
 
344
352
  ## Import
@@ -385,6 +393,14 @@ class Retrohunt(pulumi.CustomResource):
385
393
  args: RetrohuntArgs,
386
394
  opts: Optional[pulumi.ResourceOptions] = None):
387
395
  """
396
+ Retrohunt is an execution of a Rule over a time range in the past.
397
+
398
+ To get more information about Retrohunt, see:
399
+
400
+ * [API documentation](https://cloud.google.com/chronicle/docs/reference/rest/v1/projects.locations.instances.rules.retrohunts)
401
+ * How-to Guides
402
+ * [Google SecOps Guides](https://cloud.google.com/chronicle/docs/secops/secops-overview)
403
+
388
404
  ## Example Usage
389
405
 
390
406
  ## Import
@@ -687,6 +687,14 @@ class Rule(pulumi.CustomResource):
687
687
  text: Optional[pulumi.Input[str]] = None,
688
688
  __props__=None):
689
689
  """
690
+ The Rule resource represents a user-created rule.
691
+
692
+ To get more information about Rule, see:
693
+
694
+ * [API documentation](https://cloud.google.com/chronicle/docs/reference/rest/v1/projects.locations.instances.rules)
695
+ * How-to Guides
696
+ * [Google SecOps Guides](https://cloud.google.com/chronicle/docs/secops/secops-overview)
697
+
690
698
  ## Example Usage
691
699
 
692
700
  ### Chronicle Rule Basic
@@ -797,6 +805,14 @@ class Rule(pulumi.CustomResource):
797
805
  args: RuleArgs,
798
806
  opts: Optional[pulumi.ResourceOptions] = None):
799
807
  """
808
+ The Rule resource represents a user-created rule.
809
+
810
+ To get more information about Rule, see:
811
+
812
+ * [API documentation](https://cloud.google.com/chronicle/docs/reference/rest/v1/projects.locations.instances.rules)
813
+ * How-to Guides
814
+ * [Google SecOps Guides](https://cloud.google.com/chronicle/docs/secops/secops-overview)
815
+
800
816
  ## Example Usage
801
817
 
802
818
  ### Chronicle Rule Basic
@@ -486,6 +486,14 @@ class RuleDeployment(pulumi.CustomResource):
486
486
  run_frequency: Optional[pulumi.Input[str]] = None,
487
487
  __props__=None):
488
488
  """
489
+ The RuleDeployment resource represents the deployment state of a Rule.
490
+
491
+ To get more information about RuleDeployment, see:
492
+
493
+ * [API documentation](https://cloud.google.com/chronicle/docs/reference/rest/v1/RuleDeployment)
494
+ * How-to Guides
495
+ * [Google SecOps Guides](https://cloud.google.com/chronicle/docs/secops/secops-overview)
496
+
489
497
  ## Example Usage
490
498
 
491
499
  ## Import
@@ -545,6 +553,14 @@ class RuleDeployment(pulumi.CustomResource):
545
553
  args: RuleDeploymentArgs,
546
554
  opts: Optional[pulumi.ResourceOptions] = None):
547
555
  """
556
+ The RuleDeployment resource represents the deployment state of a Rule.
557
+
558
+ To get more information about RuleDeployment, see:
559
+
560
+ * [API documentation](https://cloud.google.com/chronicle/docs/reference/rest/v1/RuleDeployment)
561
+ * How-to Guides
562
+ * [Google SecOps Guides](https://cloud.google.com/chronicle/docs/secops/secops-overview)
563
+
548
564
  ## Example Usage
549
565
 
550
566
  ## Import
@@ -412,6 +412,14 @@ class Watchlist(pulumi.CustomResource):
412
412
  watchlist_user_preferences: Optional[pulumi.Input[Union['WatchlistWatchlistUserPreferencesArgs', 'WatchlistWatchlistUserPreferencesArgsDict']]] = None,
413
413
  __props__=None):
414
414
  """
415
+ A watchlist is a list of entities that allows for bulk operations over the included entities.
416
+
417
+ To get more information about Watchlist, see:
418
+
419
+ * [API documentation](https://cloud.google.com/chronicle/docs/reference/rest/v1/projects.locations.instances.watchlists)
420
+ * How-to Guides
421
+ * [Google SecOps Guides](https://cloud.google.com/chronicle/docs/secops/secops-overview)
422
+
415
423
  ## Example Usage
416
424
 
417
425
  ### Chronicle Watchlist Basic
@@ -500,6 +508,14 @@ class Watchlist(pulumi.CustomResource):
500
508
  args: WatchlistArgs,
501
509
  opts: Optional[pulumi.ResourceOptions] = None):
502
510
  """
511
+ A watchlist is a list of entities that allows for bulk operations over the included entities.
512
+
513
+ To get more information about Watchlist, see:
514
+
515
+ * [API documentation](https://cloud.google.com/chronicle/docs/reference/rest/v1/projects.locations.instances.watchlists)
516
+ * How-to Guides
517
+ * [Google SecOps Guides](https://cloud.google.com/chronicle/docs/secops/secops-overview)
518
+
503
519
  ## Example Usage
504
520
 
505
521
  ### Chronicle Watchlist Basic
@@ -1010,6 +1010,10 @@ if not MYPY:
1010
1010
  Defaults to 256M. Supported units are k, M, G, Mi, Gi. If no unit is
1011
1011
  supplied the value is interpreted as bytes.
1012
1012
  """
1013
+ binary_authorization_policy: NotRequired[pulumi.Input[str]]
1014
+ """
1015
+ The binary authorization policy to be checked when deploying the Cloud Run service.
1016
+ """
1013
1017
  environment_variables: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
1014
1018
  """
1015
1019
  Environment variables that shall be available during function execution.
@@ -1086,6 +1090,7 @@ class FunctionServiceConfigArgs:
1086
1090
  all_traffic_on_latest_revision: Optional[pulumi.Input[bool]] = None,
1087
1091
  available_cpu: Optional[pulumi.Input[str]] = None,
1088
1092
  available_memory: Optional[pulumi.Input[str]] = None,
1093
+ binary_authorization_policy: Optional[pulumi.Input[str]] = None,
1089
1094
  environment_variables: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1090
1095
  gcf_uri: Optional[pulumi.Input[str]] = None,
1091
1096
  ingress_settings: Optional[pulumi.Input[str]] = None,
@@ -1106,6 +1111,7 @@ class FunctionServiceConfigArgs:
1106
1111
  :param pulumi.Input[str] available_memory: The amount of memory available for a function.
1107
1112
  Defaults to 256M. Supported units are k, M, G, Mi, Gi. If no unit is
1108
1113
  supplied the value is interpreted as bytes.
1114
+ :param pulumi.Input[str] binary_authorization_policy: The binary authorization policy to be checked when deploying the Cloud Run service.
1109
1115
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] environment_variables: Environment variables that shall be available during function execution.
1110
1116
  :param pulumi.Input[str] gcf_uri: (Output)
1111
1117
  URIs of the Service deployed
@@ -1138,6 +1144,8 @@ class FunctionServiceConfigArgs:
1138
1144
  pulumi.set(__self__, "available_cpu", available_cpu)
1139
1145
  if available_memory is not None:
1140
1146
  pulumi.set(__self__, "available_memory", available_memory)
1147
+ if binary_authorization_policy is not None:
1148
+ pulumi.set(__self__, "binary_authorization_policy", binary_authorization_policy)
1141
1149
  if environment_variables is not None:
1142
1150
  pulumi.set(__self__, "environment_variables", environment_variables)
1143
1151
  if gcf_uri is not None:
@@ -1205,6 +1213,18 @@ class FunctionServiceConfigArgs:
1205
1213
  def available_memory(self, value: Optional[pulumi.Input[str]]):
1206
1214
  pulumi.set(self, "available_memory", value)
1207
1215
 
1216
+ @property
1217
+ @pulumi.getter(name="binaryAuthorizationPolicy")
1218
+ def binary_authorization_policy(self) -> Optional[pulumi.Input[str]]:
1219
+ """
1220
+ The binary authorization policy to be checked when deploying the Cloud Run service.
1221
+ """
1222
+ return pulumi.get(self, "binary_authorization_policy")
1223
+
1224
+ @binary_authorization_policy.setter
1225
+ def binary_authorization_policy(self, value: Optional[pulumi.Input[str]]):
1226
+ pulumi.set(self, "binary_authorization_policy", value)
1227
+
1208
1228
  @property
1209
1229
  @pulumi.getter(name="environmentVariables")
1210
1230
  def environment_variables(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
@@ -743,6 +743,8 @@ class FunctionServiceConfig(dict):
743
743
  suggest = "available_cpu"
744
744
  elif key == "availableMemory":
745
745
  suggest = "available_memory"
746
+ elif key == "binaryAuthorizationPolicy":
747
+ suggest = "binary_authorization_policy"
746
748
  elif key == "environmentVariables":
747
749
  suggest = "environment_variables"
748
750
  elif key == "gcfUri":
@@ -783,6 +785,7 @@ class FunctionServiceConfig(dict):
783
785
  all_traffic_on_latest_revision: Optional[bool] = None,
784
786
  available_cpu: Optional[str] = None,
785
787
  available_memory: Optional[str] = None,
788
+ binary_authorization_policy: Optional[str] = None,
786
789
  environment_variables: Optional[Mapping[str, str]] = None,
787
790
  gcf_uri: Optional[str] = None,
788
791
  ingress_settings: Optional[str] = None,
@@ -803,6 +806,7 @@ class FunctionServiceConfig(dict):
803
806
  :param str available_memory: The amount of memory available for a function.
804
807
  Defaults to 256M. Supported units are k, M, G, Mi, Gi. If no unit is
805
808
  supplied the value is interpreted as bytes.
809
+ :param str binary_authorization_policy: The binary authorization policy to be checked when deploying the Cloud Run service.
806
810
  :param Mapping[str, str] environment_variables: Environment variables that shall be available during function execution.
807
811
  :param str gcf_uri: (Output)
808
812
  URIs of the Service deployed
@@ -835,6 +839,8 @@ class FunctionServiceConfig(dict):
835
839
  pulumi.set(__self__, "available_cpu", available_cpu)
836
840
  if available_memory is not None:
837
841
  pulumi.set(__self__, "available_memory", available_memory)
842
+ if binary_authorization_policy is not None:
843
+ pulumi.set(__self__, "binary_authorization_policy", binary_authorization_policy)
838
844
  if environment_variables is not None:
839
845
  pulumi.set(__self__, "environment_variables", environment_variables)
840
846
  if gcf_uri is not None:
@@ -890,6 +896,14 @@ class FunctionServiceConfig(dict):
890
896
  """
891
897
  return pulumi.get(self, "available_memory")
892
898
 
899
+ @property
900
+ @pulumi.getter(name="binaryAuthorizationPolicy")
901
+ def binary_authorization_policy(self) -> Optional[str]:
902
+ """
903
+ The binary authorization policy to be checked when deploying the Cloud Run service.
904
+ """
905
+ return pulumi.get(self, "binary_authorization_policy")
906
+
893
907
  @property
894
908
  @pulumi.getter(name="environmentVariables")
895
909
  def environment_variables(self) -> Optional[Mapping[str, str]]:
@@ -1656,6 +1670,7 @@ class GetFunctionServiceConfigResult(dict):
1656
1670
  all_traffic_on_latest_revision: bool,
1657
1671
  available_cpu: str,
1658
1672
  available_memory: str,
1673
+ binary_authorization_policy: str,
1659
1674
  environment_variables: Mapping[str, str],
1660
1675
  gcf_uri: str,
1661
1676
  ingress_settings: str,
@@ -1676,6 +1691,7 @@ class GetFunctionServiceConfigResult(dict):
1676
1691
  :param str available_memory: The amount of memory available for a function.
1677
1692
  Defaults to 256M. Supported units are k, M, G, Mi, Gi. If no unit is
1678
1693
  supplied the value is interpreted as bytes.
1694
+ :param str binary_authorization_policy: The binary authorization policy to be checked when deploying the Cloud Run service.
1679
1695
  :param Mapping[str, str] environment_variables: Environment variables that shall be available during function execution.
1680
1696
  :param str gcf_uri: URIs of the Service deployed
1681
1697
  :param str ingress_settings: Available ingress settings. Defaults to "ALLOW_ALL" if unspecified. Default value: "ALLOW_ALL" Possible values: ["ALLOW_ALL", "ALLOW_INTERNAL_ONLY", "ALLOW_INTERNAL_AND_GCLB"]
@@ -1698,6 +1714,7 @@ class GetFunctionServiceConfigResult(dict):
1698
1714
  pulumi.set(__self__, "all_traffic_on_latest_revision", all_traffic_on_latest_revision)
1699
1715
  pulumi.set(__self__, "available_cpu", available_cpu)
1700
1716
  pulumi.set(__self__, "available_memory", available_memory)
1717
+ pulumi.set(__self__, "binary_authorization_policy", binary_authorization_policy)
1701
1718
  pulumi.set(__self__, "environment_variables", environment_variables)
1702
1719
  pulumi.set(__self__, "gcf_uri", gcf_uri)
1703
1720
  pulumi.set(__self__, "ingress_settings", ingress_settings)
@@ -1739,6 +1756,14 @@ class GetFunctionServiceConfigResult(dict):
1739
1756
  """
1740
1757
  return pulumi.get(self, "available_memory")
1741
1758
 
1759
+ @property
1760
+ @pulumi.getter(name="binaryAuthorizationPolicy")
1761
+ def binary_authorization_policy(self) -> str:
1762
+ """
1763
+ The binary authorization policy to be checked when deploying the Cloud Run service.
1764
+ """
1765
+ return pulumi.get(self, "binary_authorization_policy")
1766
+
1742
1767
  @property
1743
1768
  @pulumi.getter(name="environmentVariables")
1744
1769
  def environment_variables(self) -> Mapping[str, str]:
@@ -2924,6 +2924,10 @@ if not MYPY:
2924
2924
  The sandbox environment to host this Revision.
2925
2925
  Possible values are: `EXECUTION_ENVIRONMENT_GEN1`, `EXECUTION_ENVIRONMENT_GEN2`.
2926
2926
  """
2927
+ gpu_zonal_redundancy_disabled: NotRequired[pulumi.Input[bool]]
2928
+ """
2929
+ True if GPU zonal redundancy is disabled on this revision.
2930
+ """
2927
2931
  labels: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
2928
2932
  """
2929
2933
  Unstructured key value map that can be used to organize and categorize objects. User-provided labels are shared with Google's billing system, so they can be used to filter, or break down billing charges by team, component, environment, state, etc.
@@ -2988,6 +2992,7 @@ class ServiceTemplateArgs:
2988
2992
  containers: Optional[pulumi.Input[Sequence[pulumi.Input['ServiceTemplateContainerArgs']]]] = None,
2989
2993
  encryption_key: Optional[pulumi.Input[str]] = None,
2990
2994
  execution_environment: Optional[pulumi.Input[str]] = None,
2995
+ gpu_zonal_redundancy_disabled: Optional[pulumi.Input[bool]] = None,
2991
2996
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
2992
2997
  max_instance_request_concurrency: Optional[pulumi.Input[int]] = None,
2993
2998
  node_selector: Optional[pulumi.Input['ServiceTemplateNodeSelectorArgs']] = None,
@@ -3009,6 +3014,7 @@ class ServiceTemplateArgs:
3009
3014
  :param pulumi.Input[str] encryption_key: A reference to a customer managed encryption key (CMEK) to use to encrypt this container image. For more information, go to https://cloud.google.com/run/docs/securing/using-cmek
3010
3015
  :param pulumi.Input[str] execution_environment: The sandbox environment to host this Revision.
3011
3016
  Possible values are: `EXECUTION_ENVIRONMENT_GEN1`, `EXECUTION_ENVIRONMENT_GEN2`.
3017
+ :param pulumi.Input[bool] gpu_zonal_redundancy_disabled: True if GPU zonal redundancy is disabled on this revision.
3012
3018
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Unstructured key value map that can be used to organize and categorize objects. User-provided labels are shared with Google's billing system, so they can be used to filter, or break down billing charges by team, component, environment, state, etc.
3013
3019
  For more information, visit https://cloud.google.com/resource-manager/docs/creating-managing-labels or https://cloud.google.com/run/docs/configuring/labels.
3014
3020
  Cloud Run API v2 does not support labels with `run.googleapis.com`, `cloud.googleapis.com`, `serving.knative.dev`, or `autoscaling.knative.dev` namespaces, and they will be rejected.
@@ -3039,6 +3045,8 @@ class ServiceTemplateArgs:
3039
3045
  pulumi.set(__self__, "encryption_key", encryption_key)
3040
3046
  if execution_environment is not None:
3041
3047
  pulumi.set(__self__, "execution_environment", execution_environment)
3048
+ if gpu_zonal_redundancy_disabled is not None:
3049
+ pulumi.set(__self__, "gpu_zonal_redundancy_disabled", gpu_zonal_redundancy_disabled)
3042
3050
  if labels is not None:
3043
3051
  pulumi.set(__self__, "labels", labels)
3044
3052
  if max_instance_request_concurrency is not None:
@@ -3115,6 +3123,18 @@ class ServiceTemplateArgs:
3115
3123
  def execution_environment(self, value: Optional[pulumi.Input[str]]):
3116
3124
  pulumi.set(self, "execution_environment", value)
3117
3125
 
3126
+ @property
3127
+ @pulumi.getter(name="gpuZonalRedundancyDisabled")
3128
+ def gpu_zonal_redundancy_disabled(self) -> Optional[pulumi.Input[bool]]:
3129
+ """
3130
+ True if GPU zonal redundancy is disabled on this revision.
3131
+ """
3132
+ return pulumi.get(self, "gpu_zonal_redundancy_disabled")
3133
+
3134
+ @gpu_zonal_redundancy_disabled.setter
3135
+ def gpu_zonal_redundancy_disabled(self, value: Optional[pulumi.Input[bool]]):
3136
+ pulumi.set(self, "gpu_zonal_redundancy_disabled", value)
3137
+
3118
3138
  @property
3119
3139
  @pulumi.getter
3120
3140
  def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]: