pulumi-gcp 8.28.0a1745598508__py3-none-any.whl → 8.29.0a1746076904__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 (78) hide show
  1. pulumi_gcp/__init__.py +88 -0
  2. pulumi_gcp/accesscontextmanager/_inputs.py +399 -0
  3. pulumi_gcp/accesscontextmanager/gcp_user_access_binding.py +54 -0
  4. pulumi_gcp/accesscontextmanager/outputs.py +369 -0
  5. pulumi_gcp/alloydb/_inputs.py +47 -1
  6. pulumi_gcp/alloydb/outputs.py +61 -3
  7. pulumi_gcp/apigee/keystores_aliases_self_signed_cert.py +8 -2
  8. pulumi_gcp/applicationintegration/client.py +34 -12
  9. pulumi_gcp/artifactregistry/outputs.py +2 -2
  10. pulumi_gcp/certificateauthority/_inputs.py +32 -0
  11. pulumi_gcp/certificateauthority/ca_pool.py +2 -0
  12. pulumi_gcp/certificateauthority/outputs.py +22 -0
  13. pulumi_gcp/clouddeploy/_inputs.py +0 -6
  14. pulumi_gcp/clouddeploy/delivery_pipeline.py +84 -77
  15. pulumi_gcp/clouddeploy/outputs.py +0 -4
  16. pulumi_gcp/cloudrunv2/_inputs.py +3 -3
  17. pulumi_gcp/cloudrunv2/outputs.py +4 -4
  18. pulumi_gcp/colab/runtime_template.py +3 -3
  19. pulumi_gcp/compute/__init__.py +7 -0
  20. pulumi_gcp/compute/_inputs.py +809 -1
  21. pulumi_gcp/compute/backend_service.py +89 -0
  22. pulumi_gcp/compute/firewall_policy_with_rules.py +2 -2
  23. pulumi_gcp/compute/get_backend_service.py +12 -1
  24. pulumi_gcp/compute/get_storage_pool_iam_policy.py +183 -0
  25. pulumi_gcp/compute/get_storage_pool_types.py +268 -0
  26. pulumi_gcp/compute/outputs.py +743 -3
  27. pulumi_gcp/compute/resource_policy_attachment.py +476 -0
  28. pulumi_gcp/compute/storage_pool.py +1045 -0
  29. pulumi_gcp/compute/storage_pool_iam_binding.py +1088 -0
  30. pulumi_gcp/compute/storage_pool_iam_member.py +1088 -0
  31. pulumi_gcp/compute/storage_pool_iam_policy.py +907 -0
  32. pulumi_gcp/config/__init__.pyi +2 -0
  33. pulumi_gcp/config/vars.py +4 -0
  34. pulumi_gcp/container/_inputs.py +63 -3
  35. pulumi_gcp/container/outputs.py +70 -6
  36. pulumi_gcp/dataproc/get_metastore_service.py +12 -1
  37. pulumi_gcp/dataproc/metastore_service.py +61 -0
  38. pulumi_gcp/datastream/connection_profile.py +40 -0
  39. pulumi_gcp/discoveryengine/_inputs.py +38 -0
  40. pulumi_gcp/discoveryengine/chat_engine.py +6 -4
  41. pulumi_gcp/discoveryengine/outputs.py +26 -0
  42. pulumi_gcp/firebaserules/_inputs.py +6 -6
  43. pulumi_gcp/firebaserules/outputs.py +4 -4
  44. pulumi_gcp/gkebackup/__init__.py +2 -0
  45. pulumi_gcp/gkebackup/backup_channel.py +737 -0
  46. pulumi_gcp/gkebackup/restore_channel.py +737 -0
  47. pulumi_gcp/gkehub/_inputs.py +208 -0
  48. pulumi_gcp/gkehub/outputs.py +171 -1
  49. pulumi_gcp/healthcare/pipeline_job.py +2 -2
  50. pulumi_gcp/iap/__init__.py +4 -0
  51. pulumi_gcp/iap/_inputs.py +130 -0
  52. pulumi_gcp/iap/get_web_cloud_run_service_iam_policy.py +183 -0
  53. pulumi_gcp/iap/outputs.py +76 -0
  54. pulumi_gcp/iap/web_cloud_run_service_iam_binding.py +1089 -0
  55. pulumi_gcp/iap/web_cloud_run_service_iam_member.py +1089 -0
  56. pulumi_gcp/iap/web_cloud_run_service_iam_policy.py +908 -0
  57. pulumi_gcp/kms/key_ring_import_job.py +7 -7
  58. pulumi_gcp/managedkafka/connect_cluster.py +8 -4
  59. pulumi_gcp/managedkafka/connector.py +8 -4
  60. pulumi_gcp/monitoring/uptime_check_config.py +49 -0
  61. pulumi_gcp/networkconnectivity/internal_range.py +82 -0
  62. pulumi_gcp/projects/_inputs.py +0 -6
  63. pulumi_gcp/projects/api_key.py +28 -0
  64. pulumi_gcp/projects/outputs.py +0 -4
  65. pulumi_gcp/provider.py +20 -0
  66. pulumi_gcp/pulumi-plugin.json +1 -1
  67. pulumi_gcp/redis/get_instance.py +12 -1
  68. pulumi_gcp/redis/instance.py +61 -0
  69. pulumi_gcp/sql/_inputs.py +86 -6
  70. pulumi_gcp/sql/outputs.py +156 -12
  71. pulumi_gcp/storage/__init__.py +1 -0
  72. pulumi_gcp/storage/_inputs.py +457 -0
  73. pulumi_gcp/storage/batch_operations_job.py +776 -0
  74. pulumi_gcp/storage/outputs.py +403 -0
  75. {pulumi_gcp-8.28.0a1745598508.dist-info → pulumi_gcp-8.29.0a1746076904.dist-info}/METADATA +1 -1
  76. {pulumi_gcp-8.28.0a1745598508.dist-info → pulumi_gcp-8.29.0a1746076904.dist-info}/RECORD +78 -64
  77. {pulumi_gcp-8.28.0a1745598508.dist-info → pulumi_gcp-8.29.0a1746076904.dist-info}/WHEEL +1 -1
  78. {pulumi_gcp-8.28.0a1745598508.dist-info → pulumi_gcp-8.29.0a1746076904.dist-info}/top_level.txt +0 -0
@@ -33,19 +33,20 @@ class DeliveryPipelineArgs:
33
33
  """
34
34
  The set of arguments for constructing a DeliveryPipeline resource.
35
35
  :param pulumi.Input[builtins.str] location: The location for the resource
36
- :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] annotations: User annotations. These attributes can only be set and used by the user, and not by Google Cloud Deploy. See
37
- https://google.aip.dev/128#annotations for more details such as format and size limitations. **Note**: This field is
38
- non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field
39
- `effective_annotations` for all of the annotations present on the resource.
36
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] annotations: User annotations. These attributes can only be set and used by the user, and not by Google Cloud Deploy. See https://google.aip.dev/128#annotations for more details such as format and size limitations.
37
+
38
+ **Note**: This field is non-authoritative, and will only manage the annotations present in your configuration.
39
+ Please refer to the field `effective_annotations` for all of the annotations present on the resource.
40
40
  :param pulumi.Input[builtins.str] description: Description of the `DeliveryPipeline`. Max length is 255 characters.
41
- :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] labels: Labels are attributes that can be set and used by both the user and by Google Cloud Deploy. Labels must meet the
42
- following constraints: * Keys and values can contain only lowercase letters, numeric characters, underscores, and
43
- dashes. * All characters must use UTF-8 encoding, and international characters are allowed. * Keys must start with a
44
- lowercase letter or international character. * Each resource is limited to a maximum of 64 labels. Both keys and values
45
- are additionally constrained to be <= 128 bytes. **Note**: This field is non-authoritative, and will only manage the
46
- labels present in your configuration. Please refer to the field `effective_labels` for all of the labels present on the
47
- resource.
41
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] labels: Labels are attributes that can be set and used by both the user and by Google Cloud Deploy. Labels must meet the following constraints: * Keys and values can contain only lowercase letters, numeric characters, underscores, and dashes. * All characters must use UTF-8 encoding, and international characters are allowed. * Keys must start with a lowercase letter or international character. * Each resource is limited to a maximum of 64 labels. Both keys and values are additionally constrained to be <= 128 bytes.
42
+
43
+ **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
44
+ Please refer to the field `effective_labels` for all of the labels present on the resource.
48
45
  :param pulumi.Input[builtins.str] name: Name of the `DeliveryPipeline`. Format is `a-z?`.
46
+
47
+
48
+
49
+ - - -
49
50
  :param pulumi.Input[builtins.str] project: The project for the resource
50
51
  :param pulumi.Input['DeliveryPipelineSerialPipelineArgs'] serial_pipeline: SerialPipeline defines a sequential set of stages for a `DeliveryPipeline`.
51
52
  :param pulumi.Input[builtins.bool] suspended: When suspended, no new releases or rollouts can be created, but in-progress ones will complete.
@@ -82,10 +83,10 @@ class DeliveryPipelineArgs:
82
83
  @pulumi.getter
83
84
  def annotations(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
84
85
  """
85
- User annotations. These attributes can only be set and used by the user, and not by Google Cloud Deploy. See
86
- https://google.aip.dev/128#annotations for more details such as format and size limitations. **Note**: This field is
87
- non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field
88
- `effective_annotations` for all of the annotations present on the resource.
86
+ User annotations. These attributes can only be set and used by the user, and not by Google Cloud Deploy. See https://google.aip.dev/128#annotations for more details such as format and size limitations.
87
+
88
+ **Note**: This field is non-authoritative, and will only manage the annotations present in your configuration.
89
+ Please refer to the field `effective_annotations` for all of the annotations present on the resource.
89
90
  """
90
91
  return pulumi.get(self, "annotations")
91
92
 
@@ -109,13 +110,10 @@ class DeliveryPipelineArgs:
109
110
  @pulumi.getter
110
111
  def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
111
112
  """
112
- Labels are attributes that can be set and used by both the user and by Google Cloud Deploy. Labels must meet the
113
- following constraints: * Keys and values can contain only lowercase letters, numeric characters, underscores, and
114
- dashes. * All characters must use UTF-8 encoding, and international characters are allowed. * Keys must start with a
115
- lowercase letter or international character. * Each resource is limited to a maximum of 64 labels. Both keys and values
116
- are additionally constrained to be <= 128 bytes. **Note**: This field is non-authoritative, and will only manage the
117
- labels present in your configuration. Please refer to the field `effective_labels` for all of the labels present on the
118
- resource.
113
+ Labels are attributes that can be set and used by both the user and by Google Cloud Deploy. Labels must meet the following constraints: * Keys and values can contain only lowercase letters, numeric characters, underscores, and dashes. * All characters must use UTF-8 encoding, and international characters are allowed. * Keys must start with a lowercase letter or international character. * Each resource is limited to a maximum of 64 labels. Both keys and values are additionally constrained to be <= 128 bytes.
114
+
115
+ **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
116
+ Please refer to the field `effective_labels` for all of the labels present on the resource.
119
117
  """
120
118
  return pulumi.get(self, "labels")
121
119
 
@@ -128,6 +126,10 @@ class DeliveryPipelineArgs:
128
126
  def name(self) -> Optional[pulumi.Input[builtins.str]]:
129
127
  """
130
128
  Name of the `DeliveryPipeline`. Format is `a-z?`.
129
+
130
+
131
+
132
+ - - -
131
133
  """
132
134
  return pulumi.get(self, "name")
133
135
 
@@ -193,24 +195,25 @@ class _DeliveryPipelineState:
193
195
  update_time: Optional[pulumi.Input[builtins.str]] = None):
194
196
  """
195
197
  Input properties used for looking up and filtering DeliveryPipeline resources.
196
- :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] annotations: User annotations. These attributes can only be set and used by the user, and not by Google Cloud Deploy. See
197
- https://google.aip.dev/128#annotations for more details such as format and size limitations. **Note**: This field is
198
- non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field
199
- `effective_annotations` for all of the annotations present on the resource.
198
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] annotations: User annotations. These attributes can only be set and used by the user, and not by Google Cloud Deploy. See https://google.aip.dev/128#annotations for more details such as format and size limitations.
199
+
200
+ **Note**: This field is non-authoritative, and will only manage the annotations present in your configuration.
201
+ Please refer to the field `effective_annotations` for all of the annotations present on the resource.
200
202
  :param pulumi.Input[Sequence[pulumi.Input['DeliveryPipelineConditionArgs']]] conditions: Output only. Information around the state of the Delivery Pipeline.
201
203
  :param pulumi.Input[builtins.str] create_time: Output only. Time at which the pipeline was created.
202
204
  :param pulumi.Input[builtins.str] description: Description of the `DeliveryPipeline`. Max length is 255 characters.
203
205
  :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
204
206
  :param pulumi.Input[builtins.str] etag: This checksum is computed by the server based on the value of other fields, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding.
205
- :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] labels: Labels are attributes that can be set and used by both the user and by Google Cloud Deploy. Labels must meet the
206
- following constraints: * Keys and values can contain only lowercase letters, numeric characters, underscores, and
207
- dashes. * All characters must use UTF-8 encoding, and international characters are allowed. * Keys must start with a
208
- lowercase letter or international character. * Each resource is limited to a maximum of 64 labels. Both keys and values
209
- are additionally constrained to be <= 128 bytes. **Note**: This field is non-authoritative, and will only manage the
210
- labels present in your configuration. Please refer to the field `effective_labels` for all of the labels present on the
211
- resource.
207
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] labels: Labels are attributes that can be set and used by both the user and by Google Cloud Deploy. Labels must meet the following constraints: * Keys and values can contain only lowercase letters, numeric characters, underscores, and dashes. * All characters must use UTF-8 encoding, and international characters are allowed. * Keys must start with a lowercase letter or international character. * Each resource is limited to a maximum of 64 labels. Both keys and values are additionally constrained to be <= 128 bytes.
208
+
209
+ **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
210
+ Please refer to the field `effective_labels` for all of the labels present on the resource.
212
211
  :param pulumi.Input[builtins.str] location: The location for the resource
213
212
  :param pulumi.Input[builtins.str] name: Name of the `DeliveryPipeline`. Format is `a-z?`.
213
+
214
+
215
+
216
+ - - -
214
217
  :param pulumi.Input[builtins.str] project: The project for the resource
215
218
  :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] pulumi_labels: The combination of labels configured directly on the resource and default labels configured on the provider.
216
219
  :param pulumi.Input['DeliveryPipelineSerialPipelineArgs'] serial_pipeline: SerialPipeline defines a sequential set of stages for a `DeliveryPipeline`.
@@ -255,10 +258,10 @@ class _DeliveryPipelineState:
255
258
  @pulumi.getter
256
259
  def annotations(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
257
260
  """
258
- User annotations. These attributes can only be set and used by the user, and not by Google Cloud Deploy. See
259
- https://google.aip.dev/128#annotations for more details such as format and size limitations. **Note**: This field is
260
- non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field
261
- `effective_annotations` for all of the annotations present on the resource.
261
+ User annotations. These attributes can only be set and used by the user, and not by Google Cloud Deploy. See https://google.aip.dev/128#annotations for more details such as format and size limitations.
262
+
263
+ **Note**: This field is non-authoritative, and will only manage the annotations present in your configuration.
264
+ Please refer to the field `effective_annotations` for all of the annotations present on the resource.
262
265
  """
263
266
  return pulumi.get(self, "annotations")
264
267
 
@@ -339,13 +342,10 @@ class _DeliveryPipelineState:
339
342
  @pulumi.getter
340
343
  def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
341
344
  """
342
- Labels are attributes that can be set and used by both the user and by Google Cloud Deploy. Labels must meet the
343
- following constraints: * Keys and values can contain only lowercase letters, numeric characters, underscores, and
344
- dashes. * All characters must use UTF-8 encoding, and international characters are allowed. * Keys must start with a
345
- lowercase letter or international character. * Each resource is limited to a maximum of 64 labels. Both keys and values
346
- are additionally constrained to be <= 128 bytes. **Note**: This field is non-authoritative, and will only manage the
347
- labels present in your configuration. Please refer to the field `effective_labels` for all of the labels present on the
348
- resource.
345
+ Labels are attributes that can be set and used by both the user and by Google Cloud Deploy. Labels must meet the following constraints: * Keys and values can contain only lowercase letters, numeric characters, underscores, and dashes. * All characters must use UTF-8 encoding, and international characters are allowed. * Keys must start with a lowercase letter or international character. * Each resource is limited to a maximum of 64 labels. Both keys and values are additionally constrained to be <= 128 bytes.
346
+
347
+ **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
348
+ Please refer to the field `effective_labels` for all of the labels present on the resource.
349
349
  """
350
350
  return pulumi.get(self, "labels")
351
351
 
@@ -370,6 +370,10 @@ class _DeliveryPipelineState:
370
370
  def name(self) -> Optional[pulumi.Input[builtins.str]]:
371
371
  """
372
372
  Name of the `DeliveryPipeline`. Format is `a-z?`.
373
+
374
+
375
+
376
+ - - -
373
377
  """
374
378
  return pulumi.get(self, "name")
375
379
 
@@ -701,20 +705,21 @@ class DeliveryPipeline(pulumi.CustomResource):
701
705
 
702
706
  :param str resource_name: The name of the resource.
703
707
  :param pulumi.ResourceOptions opts: Options for the resource.
704
- :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] annotations: User annotations. These attributes can only be set and used by the user, and not by Google Cloud Deploy. See
705
- https://google.aip.dev/128#annotations for more details such as format and size limitations. **Note**: This field is
706
- non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field
707
- `effective_annotations` for all of the annotations present on the resource.
708
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] annotations: User annotations. These attributes can only be set and used by the user, and not by Google Cloud Deploy. See https://google.aip.dev/128#annotations for more details such as format and size limitations.
709
+
710
+ **Note**: This field is non-authoritative, and will only manage the annotations present in your configuration.
711
+ Please refer to the field `effective_annotations` for all of the annotations present on the resource.
708
712
  :param pulumi.Input[builtins.str] description: Description of the `DeliveryPipeline`. Max length is 255 characters.
709
- :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] labels: Labels are attributes that can be set and used by both the user and by Google Cloud Deploy. Labels must meet the
710
- following constraints: * Keys and values can contain only lowercase letters, numeric characters, underscores, and
711
- dashes. * All characters must use UTF-8 encoding, and international characters are allowed. * Keys must start with a
712
- lowercase letter or international character. * Each resource is limited to a maximum of 64 labels. Both keys and values
713
- are additionally constrained to be <= 128 bytes. **Note**: This field is non-authoritative, and will only manage the
714
- labels present in your configuration. Please refer to the field `effective_labels` for all of the labels present on the
715
- resource.
713
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] labels: Labels are attributes that can be set and used by both the user and by Google Cloud Deploy. Labels must meet the following constraints: * Keys and values can contain only lowercase letters, numeric characters, underscores, and dashes. * All characters must use UTF-8 encoding, and international characters are allowed. * Keys must start with a lowercase letter or international character. * Each resource is limited to a maximum of 64 labels. Both keys and values are additionally constrained to be <= 128 bytes.
714
+
715
+ **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
716
+ Please refer to the field `effective_labels` for all of the labels present on the resource.
716
717
  :param pulumi.Input[builtins.str] location: The location for the resource
717
718
  :param pulumi.Input[builtins.str] name: Name of the `DeliveryPipeline`. Format is `a-z?`.
719
+
720
+
721
+
722
+ - - -
718
723
  :param pulumi.Input[builtins.str] project: The project for the resource
719
724
  :param pulumi.Input[Union['DeliveryPipelineSerialPipelineArgs', 'DeliveryPipelineSerialPipelineArgsDict']] serial_pipeline: SerialPipeline defines a sequential set of stages for a `DeliveryPipeline`.
720
725
  :param pulumi.Input[builtins.bool] suspended: When suspended, no new releases or rollouts can be created, but in-progress ones will complete.
@@ -1045,24 +1050,25 @@ class DeliveryPipeline(pulumi.CustomResource):
1045
1050
  :param str resource_name: The unique name of the resulting resource.
1046
1051
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
1047
1052
  :param pulumi.ResourceOptions opts: Options for the resource.
1048
- :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] annotations: User annotations. These attributes can only be set and used by the user, and not by Google Cloud Deploy. See
1049
- https://google.aip.dev/128#annotations for more details such as format and size limitations. **Note**: This field is
1050
- non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field
1051
- `effective_annotations` for all of the annotations present on the resource.
1053
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] annotations: User annotations. These attributes can only be set and used by the user, and not by Google Cloud Deploy. See https://google.aip.dev/128#annotations for more details such as format and size limitations.
1054
+
1055
+ **Note**: This field is non-authoritative, and will only manage the annotations present in your configuration.
1056
+ Please refer to the field `effective_annotations` for all of the annotations present on the resource.
1052
1057
  :param pulumi.Input[Sequence[pulumi.Input[Union['DeliveryPipelineConditionArgs', 'DeliveryPipelineConditionArgsDict']]]] conditions: Output only. Information around the state of the Delivery Pipeline.
1053
1058
  :param pulumi.Input[builtins.str] create_time: Output only. Time at which the pipeline was created.
1054
1059
  :param pulumi.Input[builtins.str] description: Description of the `DeliveryPipeline`. Max length is 255 characters.
1055
1060
  :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
1056
1061
  :param pulumi.Input[builtins.str] etag: This checksum is computed by the server based on the value of other fields, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding.
1057
- :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] labels: Labels are attributes that can be set and used by both the user and by Google Cloud Deploy. Labels must meet the
1058
- following constraints: * Keys and values can contain only lowercase letters, numeric characters, underscores, and
1059
- dashes. * All characters must use UTF-8 encoding, and international characters are allowed. * Keys must start with a
1060
- lowercase letter or international character. * Each resource is limited to a maximum of 64 labels. Both keys and values
1061
- are additionally constrained to be <= 128 bytes. **Note**: This field is non-authoritative, and will only manage the
1062
- labels present in your configuration. Please refer to the field `effective_labels` for all of the labels present on the
1063
- resource.
1062
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] labels: Labels are attributes that can be set and used by both the user and by Google Cloud Deploy. Labels must meet the following constraints: * Keys and values can contain only lowercase letters, numeric characters, underscores, and dashes. * All characters must use UTF-8 encoding, and international characters are allowed. * Keys must start with a lowercase letter or international character. * Each resource is limited to a maximum of 64 labels. Both keys and values are additionally constrained to be <= 128 bytes.
1063
+
1064
+ **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
1065
+ Please refer to the field `effective_labels` for all of the labels present on the resource.
1064
1066
  :param pulumi.Input[builtins.str] location: The location for the resource
1065
1067
  :param pulumi.Input[builtins.str] name: Name of the `DeliveryPipeline`. Format is `a-z?`.
1068
+
1069
+
1070
+
1071
+ - - -
1066
1072
  :param pulumi.Input[builtins.str] project: The project for the resource
1067
1073
  :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] pulumi_labels: The combination of labels configured directly on the resource and default labels configured on the provider.
1068
1074
  :param pulumi.Input[Union['DeliveryPipelineSerialPipelineArgs', 'DeliveryPipelineSerialPipelineArgsDict']] serial_pipeline: SerialPipeline defines a sequential set of stages for a `DeliveryPipeline`.
@@ -1096,10 +1102,10 @@ class DeliveryPipeline(pulumi.CustomResource):
1096
1102
  @pulumi.getter
1097
1103
  def annotations(self) -> pulumi.Output[Optional[Mapping[str, builtins.str]]]:
1098
1104
  """
1099
- User annotations. These attributes can only be set and used by the user, and not by Google Cloud Deploy. See
1100
- https://google.aip.dev/128#annotations for more details such as format and size limitations. **Note**: This field is
1101
- non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field
1102
- `effective_annotations` for all of the annotations present on the resource.
1105
+ User annotations. These attributes can only be set and used by the user, and not by Google Cloud Deploy. See https://google.aip.dev/128#annotations for more details such as format and size limitations.
1106
+
1107
+ **Note**: This field is non-authoritative, and will only manage the annotations present in your configuration.
1108
+ Please refer to the field `effective_annotations` for all of the annotations present on the resource.
1103
1109
  """
1104
1110
  return pulumi.get(self, "annotations")
1105
1111
 
@@ -1152,13 +1158,10 @@ class DeliveryPipeline(pulumi.CustomResource):
1152
1158
  @pulumi.getter
1153
1159
  def labels(self) -> pulumi.Output[Optional[Mapping[str, builtins.str]]]:
1154
1160
  """
1155
- Labels are attributes that can be set and used by both the user and by Google Cloud Deploy. Labels must meet the
1156
- following constraints: * Keys and values can contain only lowercase letters, numeric characters, underscores, and
1157
- dashes. * All characters must use UTF-8 encoding, and international characters are allowed. * Keys must start with a
1158
- lowercase letter or international character. * Each resource is limited to a maximum of 64 labels. Both keys and values
1159
- are additionally constrained to be <= 128 bytes. **Note**: This field is non-authoritative, and will only manage the
1160
- labels present in your configuration. Please refer to the field `effective_labels` for all of the labels present on the
1161
- resource.
1161
+ Labels are attributes that can be set and used by both the user and by Google Cloud Deploy. Labels must meet the following constraints: * Keys and values can contain only lowercase letters, numeric characters, underscores, and dashes. * All characters must use UTF-8 encoding, and international characters are allowed. * Keys must start with a lowercase letter or international character. * Each resource is limited to a maximum of 64 labels. Both keys and values are additionally constrained to be <= 128 bytes.
1162
+
1163
+ **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
1164
+ Please refer to the field `effective_labels` for all of the labels present on the resource.
1162
1165
  """
1163
1166
  return pulumi.get(self, "labels")
1164
1167
 
@@ -1175,6 +1178,10 @@ class DeliveryPipeline(pulumi.CustomResource):
1175
1178
  def name(self) -> pulumi.Output[builtins.str]:
1176
1179
  """
1177
1180
  Name of the `DeliveryPipeline`. Format is `a-z?`.
1181
+
1182
+
1183
+
1184
+ - - -
1178
1185
  """
1179
1186
  return pulumi.get(self, "name")
1180
1187
 
@@ -1653,8 +1653,6 @@ class DeliveryPipelineSerialPipelineStageStrategyCanaryCustomCanaryDeploymentPha
1653
1653
  :param 'DeliveryPipelineSerialPipelineStageStrategyCanaryCustomCanaryDeploymentPhaseConfigPredeployArgs' predeploy: Optional. Configuration for the predeploy job of this phase. If this is not configured, predeploy job will not be present for this phase.
1654
1654
  :param Sequence[builtins.str] profiles: Skaffold profiles to use when rendering the manifest for this phase. These are in addition to the profiles list specified in the `DeliveryPipeline` stage.
1655
1655
  :param builtins.bool verify: Whether to run verify tests after the deployment.
1656
-
1657
- - - -
1658
1656
  """
1659
1657
  pulumi.set(__self__, "percentage", percentage)
1660
1658
  pulumi.set(__self__, "phase_id", phase_id)
@@ -1712,8 +1710,6 @@ class DeliveryPipelineSerialPipelineStageStrategyCanaryCustomCanaryDeploymentPha
1712
1710
  def verify(self) -> Optional[builtins.bool]:
1713
1711
  """
1714
1712
  Whether to run verify tests after the deployment.
1715
-
1716
- - - -
1717
1713
  """
1718
1714
  return pulumi.get(self, "verify")
1719
1715
 
@@ -750,7 +750,7 @@ if not MYPY:
750
750
  """
751
751
  max_retries: NotRequired[pulumi.Input[builtins.int]]
752
752
  """
753
- Number of retries allowed per Task, before marking this Task failed.
753
+ Number of retries allowed per Task, before marking this Task failed. Defaults to 3. Minimum value is 0.
754
754
  """
755
755
  service_account: NotRequired[pulumi.Input[builtins.str]]
756
756
  """
@@ -791,7 +791,7 @@ class JobTemplateTemplateArgs:
791
791
  :param pulumi.Input[builtins.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
792
792
  :param pulumi.Input[builtins.str] execution_environment: The execution environment being used to host this Task.
793
793
  Possible values are: `EXECUTION_ENVIRONMENT_GEN1`, `EXECUTION_ENVIRONMENT_GEN2`.
794
- :param pulumi.Input[builtins.int] max_retries: Number of retries allowed per Task, before marking this Task failed.
794
+ :param pulumi.Input[builtins.int] max_retries: Number of retries allowed per Task, before marking this Task failed. Defaults to 3. Minimum value is 0.
795
795
  :param pulumi.Input[builtins.str] service_account: Email address of the IAM service account associated with the Task of a Job. The service account represents the identity of the running task, and determines what permissions the task has. If not provided, the task will use the project's default service account.
796
796
  :param pulumi.Input[builtins.str] timeout: Max allowed time duration the Task may be active before the system will actively try to mark it failed and kill associated containers. This applies per attempt of a task, meaning each retry can run for the full timeout.
797
797
  A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s".
@@ -859,7 +859,7 @@ class JobTemplateTemplateArgs:
859
859
  @pulumi.getter(name="maxRetries")
860
860
  def max_retries(self) -> Optional[pulumi.Input[builtins.int]]:
861
861
  """
862
- Number of retries allowed per Task, before marking this Task failed.
862
+ Number of retries allowed per Task, before marking this Task failed. Defaults to 3. Minimum value is 0.
863
863
  """
864
864
  return pulumi.get(self, "max_retries")
865
865
 
@@ -612,7 +612,7 @@ class JobTemplateTemplate(dict):
612
612
  :param builtins.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
613
613
  :param builtins.str execution_environment: The execution environment being used to host this Task.
614
614
  Possible values are: `EXECUTION_ENVIRONMENT_GEN1`, `EXECUTION_ENVIRONMENT_GEN2`.
615
- :param builtins.int max_retries: Number of retries allowed per Task, before marking this Task failed.
615
+ :param builtins.int max_retries: Number of retries allowed per Task, before marking this Task failed. Defaults to 3. Minimum value is 0.
616
616
  :param builtins.str service_account: Email address of the IAM service account associated with the Task of a Job. The service account represents the identity of the running task, and determines what permissions the task has. If not provided, the task will use the project's default service account.
617
617
  :param builtins.str timeout: Max allowed time duration the Task may be active before the system will actively try to mark it failed and kill associated containers. This applies per attempt of a task, meaning each retry can run for the full timeout.
618
618
  A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s".
@@ -668,7 +668,7 @@ class JobTemplateTemplate(dict):
668
668
  @pulumi.getter(name="maxRetries")
669
669
  def max_retries(self) -> Optional[builtins.int]:
670
670
  """
671
- Number of retries allowed per Task, before marking this Task failed.
671
+ Number of retries allowed per Task, before marking this Task failed. Defaults to 3. Minimum value is 0.
672
672
  """
673
673
  return pulumi.get(self, "max_retries")
674
674
 
@@ -4746,7 +4746,7 @@ class GetJobTemplateTemplateResult(dict):
4746
4746
  :param Sequence['GetJobTemplateTemplateContainerArgs'] containers: Holds the single container that defines the unit of execution for this task.
4747
4747
  :param builtins.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
4748
4748
  :param builtins.str execution_environment: The execution environment being used to host this Task. Possible values: ["EXECUTION_ENVIRONMENT_GEN1", "EXECUTION_ENVIRONMENT_GEN2"]
4749
- :param builtins.int max_retries: Number of retries allowed per Task, before marking this Task failed.
4749
+ :param builtins.int max_retries: Number of retries allowed per Task, before marking this Task failed. Defaults to 3. Minimum value is 0.
4750
4750
  :param builtins.str service_account: Email address of the IAM service account associated with the Task of a Job. The service account represents the identity of the running task, and determines what permissions the task has. If not provided, the task will use the project's default service account.
4751
4751
  :param builtins.str timeout: Max allowed time duration the Task may be active before the system will actively try to mark it failed and kill associated containers. This applies per attempt of a task, meaning each retry can run for the full timeout.
4752
4752
 
@@ -4791,7 +4791,7 @@ class GetJobTemplateTemplateResult(dict):
4791
4791
  @pulumi.getter(name="maxRetries")
4792
4792
  def max_retries(self) -> builtins.int:
4793
4793
  """
4794
- Number of retries allowed per Task, before marking this Task failed.
4794
+ Number of retries allowed per Task, before marking this Task failed. Defaults to 3. Minimum value is 0.
4795
4795
  """
4796
4796
  return pulumi.get(self, "max_retries")
4797
4797
 
@@ -1128,7 +1128,7 @@ class RuntimeTemplate(pulumi.CustomResource):
1128
1128
 
1129
1129
  @property
1130
1130
  @pulumi.getter(name="eucConfig")
1131
- def euc_config(self) -> pulumi.Output[Optional['outputs.RuntimeTemplateEucConfig']]:
1131
+ def euc_config(self) -> pulumi.Output['outputs.RuntimeTemplateEucConfig']:
1132
1132
  """
1133
1133
  EUC configuration of the NotebookRuntimeTemplate.
1134
1134
  Structure is documented below.
@@ -1146,7 +1146,7 @@ class RuntimeTemplate(pulumi.CustomResource):
1146
1146
 
1147
1147
  @property
1148
1148
  @pulumi.getter
1149
- def labels(self) -> pulumi.Output[Optional[Mapping[str, builtins.str]]]:
1149
+ def labels(self) -> pulumi.Output[Mapping[str, builtins.str]]:
1150
1150
  """
1151
1151
  Labels to identify and group the runtime template.
1152
1152
  **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
@@ -1219,7 +1219,7 @@ class RuntimeTemplate(pulumi.CustomResource):
1219
1219
 
1220
1220
  @property
1221
1221
  @pulumi.getter(name="shieldedVmConfig")
1222
- def shielded_vm_config(self) -> pulumi.Output[Optional['outputs.RuntimeTemplateShieldedVmConfig']]:
1222
+ def shielded_vm_config(self) -> pulumi.Output['outputs.RuntimeTemplateShieldedVmConfig']:
1223
1223
  """
1224
1224
  Runtime Shielded VM spec.
1225
1225
  Structure is documented below.
@@ -90,6 +90,8 @@ from .get_security_policy import *
90
90
  from .get_snapshot import *
91
91
  from .get_snapshot_iam_policy import *
92
92
  from .get_ssl_policy import *
93
+ from .get_storage_pool_iam_policy import *
94
+ from .get_storage_pool_types import *
93
95
  from .get_subnetwork import *
94
96
  from .get_subnetwork_iam_policy import *
95
97
  from .get_subnetworks import *
@@ -193,6 +195,7 @@ from .region_url_map import *
193
195
  from .reservation import *
194
196
  from .resize_request import *
195
197
  from .resource_policy import *
198
+ from .resource_policy_attachment import *
196
199
  from .route import *
197
200
  from .router import *
198
201
  from .router_interface import *
@@ -213,6 +216,10 @@ from .snapshot_iam_member import *
213
216
  from .snapshot_iam_policy import *
214
217
  from .ssl_certificate import *
215
218
  from .ssl_policy import *
219
+ from .storage_pool import *
220
+ from .storage_pool_iam_binding import *
221
+ from .storage_pool_iam_member import *
222
+ from .storage_pool_iam_policy import *
216
223
  from .subnetwork import *
217
224
  from .subnetwork_iam_binding import *
218
225
  from .subnetwork_iam_member import *