pulumi-gcp 8.42.0a1756709266__py3-none-any.whl → 8.42.0a1756968228__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.
- pulumi_gcp/bigquery/app_profile.py +14 -49
- pulumi_gcp/bigquery/dataset_access.py +4 -8
- pulumi_gcp/bigquery/table.py +7 -21
- pulumi_gcp/bigtable/app_profile.py +14 -49
- pulumi_gcp/bigtable/table.py +42 -42
- pulumi_gcp/cloudbuild/worker_pool.py +28 -21
- pulumi_gcp/cloudfunctions/function.py +4 -8
- pulumi_gcp/composer/environment.py +28 -49
- pulumi_gcp/compute/instance_from_machine_image.py +75 -110
- pulumi_gcp/compute/instance_from_template.py +75 -110
- pulumi_gcp/compute/instance_group_manager.py +7 -14
- pulumi_gcp/compute/instance_template.py +7 -14
- pulumi_gcp/compute/interconnect.py +4 -8
- pulumi_gcp/compute/region_instance_group_manager.py +7 -14
- pulumi_gcp/container/aws_cluster.py +28 -42
- pulumi_gcp/container/aws_node_pool.py +28 -42
- pulumi_gcp/container/azure_cluster.py +35 -70
- pulumi_gcp/container/azure_node_pool.py +28 -42
- pulumi_gcp/dataplex/asset.py +28 -21
- pulumi_gcp/dataplex/zone.py +28 -21
- pulumi_gcp/dataproc/cluster.py +21 -14
- pulumi_gcp/dataproc/workflow_template.py +42 -105
- pulumi_gcp/logging/billing_account_bucket_config.py +7 -21
- pulumi_gcp/logging/folder_bucket_config.py +7 -21
- pulumi_gcp/logging/organization_bucket_config.py +7 -21
- pulumi_gcp/monitoring/dashboard.py +7 -14
- pulumi_gcp/organizations/project.py +7 -21
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/sql/database_instance.py +7 -14
- pulumi_gcp/storage/bucket.py +7 -14
- {pulumi_gcp-8.42.0a1756709266.dist-info → pulumi_gcp-8.42.0a1756968228.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.42.0a1756709266.dist-info → pulumi_gcp-8.42.0a1756968228.dist-info}/RECORD +34 -34
- {pulumi_gcp-8.42.0a1756709266.dist-info → pulumi_gcp-8.42.0a1756968228.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.42.0a1756709266.dist-info → pulumi_gcp-8.42.0a1756968228.dist-info}/top_level.txt +0 -0
@@ -36,23 +36,14 @@ class WorkflowTemplateArgs:
|
|
36
36
|
:param pulumi.Input[Sequence[pulumi.Input['WorkflowTemplateJobArgs']]] jobs: Required. The Directed Acyclic Graph of Jobs to submit.
|
37
37
|
:param pulumi.Input[_builtins.str] location: The location for the resource
|
38
38
|
:param pulumi.Input['WorkflowTemplatePlacementArgs'] placement: Required. WorkflowTemplate scheduling information.
|
39
|
-
:param pulumi.Input[_builtins.str] dag_timeout: Optional. Timeout duration for the DAG of jobs, expressed in seconds (see [JSON representation of
|
40
|
-
duration](https://developers.google.com/protocol-buffers/docs/proto3#json)). The timeout duration must be from 10
|
41
|
-
minutes ("600s") to 24 hours ("86400s"). The timer begins when the first job is submitted. If the workflow is running at
|
42
|
-
the end of the timeout period, any remaining jobs are cancelled, the workflow is ended, and if the workflow was running
|
43
|
-
on a [managed
|
44
|
-
cluster](https://www.terraform.io/dataproc/docs/concepts/workflows/using-workflows#configuring_or_selecting_a_cluster),
|
45
|
-
the cluster is deleted.
|
39
|
+
:param pulumi.Input[_builtins.str] dag_timeout: Optional. Timeout duration for the DAG of jobs, expressed in seconds (see [JSON representation of duration](https://developers.google.com/protocol-buffers/docs/proto3#json)). The timeout duration must be from 10 minutes ("600s") to 24 hours ("86400s"). The timer begins when the first job is submitted. If the workflow is running at the end of the timeout period, any remaining jobs are cancelled, the workflow is ended, and if the workflow was running on a [managed cluster](https://www.terraform.io/dataproc/docs/concepts/workflows/using-workflows#configuring_or_selecting_a_cluster), the cluster is deleted.
|
46
40
|
:param pulumi.Input['WorkflowTemplateEncryptionConfigArgs'] encryption_config: Optional. The encryption configuration for the workflow template.
|
47
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: Optional. The labels to associate with this template. These labels will be propagated to all jobs and clusters created
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
associated with a template. **Note**: This field is non-authoritative, and will only manage the labels present in your
|
52
|
-
configuration. Please refer to the field `effective_labels` for all of the labels present on the resource.
|
41
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: Optional. The labels to associate with this template. These labels will be propagated to all jobs and clusters created by the workflow instance. Label **keys** must contain 1 to 63 characters, and must conform to [RFC 1035](https://www.ietf.org/rfc/rfc1035.txt). Label **values** may be empty, but, if present, must contain 1 to 63 characters, and must conform to [RFC 1035](https://www.ietf.org/rfc/rfc1035.txt). No more than 32 labels can be associated with a template.
|
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.
|
53
45
|
:param pulumi.Input[_builtins.str] name: Output only. The resource name of the workflow template, as described in https://cloud.google.com/apis/design/resource_names. * For `projects.regions.workflowTemplates`, the resource name of the template has the following format: `projects/{project_id}/regions/{region}/workflowTemplates/{template_id}` * For `projects.locations.workflowTemplates`, the resource name of the template has the following format: `projects/{project_id}/locations/{location}/workflowTemplates/{template_id}`
|
54
|
-
:param pulumi.Input[Sequence[pulumi.Input['WorkflowTemplateParameterArgs']]] parameters: Optional. Template parameters whose values are substituted into the template. Values for parameters must be provided
|
55
|
-
when the template is instantiated.
|
46
|
+
:param pulumi.Input[Sequence[pulumi.Input['WorkflowTemplateParameterArgs']]] parameters: Optional. Template parameters whose values are substituted into the template. Values for parameters must be provided when the template is instantiated.
|
56
47
|
:param pulumi.Input[_builtins.str] project: The project for the resource
|
57
48
|
:param pulumi.Input[_builtins.int] version: Output only. The current version of this workflow template.
|
58
49
|
"""
|
@@ -117,13 +108,7 @@ class WorkflowTemplateArgs:
|
|
117
108
|
@pulumi.getter(name="dagTimeout")
|
118
109
|
def dag_timeout(self) -> Optional[pulumi.Input[_builtins.str]]:
|
119
110
|
"""
|
120
|
-
Optional. Timeout duration for the DAG of jobs, expressed in seconds (see [JSON representation of
|
121
|
-
duration](https://developers.google.com/protocol-buffers/docs/proto3#json)). The timeout duration must be from 10
|
122
|
-
minutes ("600s") to 24 hours ("86400s"). The timer begins when the first job is submitted. If the workflow is running at
|
123
|
-
the end of the timeout period, any remaining jobs are cancelled, the workflow is ended, and if the workflow was running
|
124
|
-
on a [managed
|
125
|
-
cluster](https://www.terraform.io/dataproc/docs/concepts/workflows/using-workflows#configuring_or_selecting_a_cluster),
|
126
|
-
the cluster is deleted.
|
111
|
+
Optional. Timeout duration for the DAG of jobs, expressed in seconds (see [JSON representation of duration](https://developers.google.com/protocol-buffers/docs/proto3#json)). The timeout duration must be from 10 minutes ("600s") to 24 hours ("86400s"). The timer begins when the first job is submitted. If the workflow is running at the end of the timeout period, any remaining jobs are cancelled, the workflow is ended, and if the workflow was running on a [managed cluster](https://www.terraform.io/dataproc/docs/concepts/workflows/using-workflows#configuring_or_selecting_a_cluster), the cluster is deleted.
|
127
112
|
"""
|
128
113
|
return pulumi.get(self, "dag_timeout")
|
129
114
|
|
@@ -147,12 +132,10 @@ class WorkflowTemplateArgs:
|
|
147
132
|
@pulumi.getter
|
148
133
|
def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
149
134
|
"""
|
150
|
-
Optional. The labels to associate with this template. These labels will be propagated to all jobs and clusters created
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
associated with a template. **Note**: This field is non-authoritative, and will only manage the labels present in your
|
155
|
-
configuration. Please refer to the field `effective_labels` for all of the labels present on the resource.
|
135
|
+
Optional. The labels to associate with this template. These labels will be propagated to all jobs and clusters created by the workflow instance. Label **keys** must contain 1 to 63 characters, and must conform to [RFC 1035](https://www.ietf.org/rfc/rfc1035.txt). Label **values** may be empty, but, if present, must contain 1 to 63 characters, and must conform to [RFC 1035](https://www.ietf.org/rfc/rfc1035.txt). No more than 32 labels can be associated with a template.
|
136
|
+
|
137
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
138
|
+
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
156
139
|
"""
|
157
140
|
return pulumi.get(self, "labels")
|
158
141
|
|
@@ -176,8 +159,7 @@ class WorkflowTemplateArgs:
|
|
176
159
|
@pulumi.getter
|
177
160
|
def parameters(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['WorkflowTemplateParameterArgs']]]]:
|
178
161
|
"""
|
179
|
-
Optional. Template parameters whose values are substituted into the template. Values for parameters must be provided
|
180
|
-
when the template is instantiated.
|
162
|
+
Optional. Template parameters whose values are substituted into the template. Values for parameters must be provided when the template is instantiated.
|
181
163
|
"""
|
182
164
|
return pulumi.get(self, "parameters")
|
183
165
|
|
@@ -231,25 +213,16 @@ class _WorkflowTemplateState:
|
|
231
213
|
"""
|
232
214
|
Input properties used for looking up and filtering WorkflowTemplate resources.
|
233
215
|
:param pulumi.Input[_builtins.str] create_time: Output only. The time template was created.
|
234
|
-
:param pulumi.Input[_builtins.str] dag_timeout: Optional. Timeout duration for the DAG of jobs, expressed in seconds (see [JSON representation of
|
235
|
-
duration](https://developers.google.com/protocol-buffers/docs/proto3#json)). The timeout duration must be from 10
|
236
|
-
minutes ("600s") to 24 hours ("86400s"). The timer begins when the first job is submitted. If the workflow is running at
|
237
|
-
the end of the timeout period, any remaining jobs are cancelled, the workflow is ended, and if the workflow was running
|
238
|
-
on a [managed
|
239
|
-
cluster](https://www.terraform.io/dataproc/docs/concepts/workflows/using-workflows#configuring_or_selecting_a_cluster),
|
240
|
-
the cluster is deleted.
|
216
|
+
:param pulumi.Input[_builtins.str] dag_timeout: Optional. Timeout duration for the DAG of jobs, expressed in seconds (see [JSON representation of duration](https://developers.google.com/protocol-buffers/docs/proto3#json)). The timeout duration must be from 10 minutes ("600s") to 24 hours ("86400s"). The timer begins when the first job is submitted. If the workflow is running at the end of the timeout period, any remaining jobs are cancelled, the workflow is ended, and if the workflow was running on a [managed cluster](https://www.terraform.io/dataproc/docs/concepts/workflows/using-workflows#configuring_or_selecting_a_cluster), the cluster is deleted.
|
241
217
|
:param pulumi.Input['WorkflowTemplateEncryptionConfigArgs'] encryption_config: Optional. The encryption configuration for the workflow template.
|
242
218
|
:param pulumi.Input[Sequence[pulumi.Input['WorkflowTemplateJobArgs']]] jobs: Required. The Directed Acyclic Graph of Jobs to submit.
|
243
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: Optional. The labels to associate with this template. These labels will be propagated to all jobs and clusters created
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
associated with a template. **Note**: This field is non-authoritative, and will only manage the labels present in your
|
248
|
-
configuration. Please refer to the field `effective_labels` for all of the labels present on the resource.
|
219
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: Optional. The labels to associate with this template. These labels will be propagated to all jobs and clusters created by the workflow instance. Label **keys** must contain 1 to 63 characters, and must conform to [RFC 1035](https://www.ietf.org/rfc/rfc1035.txt). Label **values** may be empty, but, if present, must contain 1 to 63 characters, and must conform to [RFC 1035](https://www.ietf.org/rfc/rfc1035.txt). No more than 32 labels can be associated with a template.
|
220
|
+
|
221
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
222
|
+
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
249
223
|
:param pulumi.Input[_builtins.str] location: The location for the resource
|
250
224
|
:param pulumi.Input[_builtins.str] name: Output only. The resource name of the workflow template, as described in https://cloud.google.com/apis/design/resource_names. * For `projects.regions.workflowTemplates`, the resource name of the template has the following format: `projects/{project_id}/regions/{region}/workflowTemplates/{template_id}` * For `projects.locations.workflowTemplates`, the resource name of the template has the following format: `projects/{project_id}/locations/{location}/workflowTemplates/{template_id}`
|
251
|
-
:param pulumi.Input[Sequence[pulumi.Input['WorkflowTemplateParameterArgs']]] parameters: Optional. Template parameters whose values are substituted into the template. Values for parameters must be provided
|
252
|
-
when the template is instantiated.
|
225
|
+
:param pulumi.Input[Sequence[pulumi.Input['WorkflowTemplateParameterArgs']]] parameters: Optional. Template parameters whose values are substituted into the template. Values for parameters must be provided when the template is instantiated.
|
253
226
|
:param pulumi.Input['WorkflowTemplatePlacementArgs'] placement: Required. WorkflowTemplate scheduling information.
|
254
227
|
:param pulumi.Input[_builtins.str] project: The project for the resource
|
255
228
|
: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.
|
@@ -304,13 +277,7 @@ class _WorkflowTemplateState:
|
|
304
277
|
@pulumi.getter(name="dagTimeout")
|
305
278
|
def dag_timeout(self) -> Optional[pulumi.Input[_builtins.str]]:
|
306
279
|
"""
|
307
|
-
Optional. Timeout duration for the DAG of jobs, expressed in seconds (see [JSON representation of
|
308
|
-
duration](https://developers.google.com/protocol-buffers/docs/proto3#json)). The timeout duration must be from 10
|
309
|
-
minutes ("600s") to 24 hours ("86400s"). The timer begins when the first job is submitted. If the workflow is running at
|
310
|
-
the end of the timeout period, any remaining jobs are cancelled, the workflow is ended, and if the workflow was running
|
311
|
-
on a [managed
|
312
|
-
cluster](https://www.terraform.io/dataproc/docs/concepts/workflows/using-workflows#configuring_or_selecting_a_cluster),
|
313
|
-
the cluster is deleted.
|
280
|
+
Optional. Timeout duration for the DAG of jobs, expressed in seconds (see [JSON representation of duration](https://developers.google.com/protocol-buffers/docs/proto3#json)). The timeout duration must be from 10 minutes ("600s") to 24 hours ("86400s"). The timer begins when the first job is submitted. If the workflow is running at the end of the timeout period, any remaining jobs are cancelled, the workflow is ended, and if the workflow was running on a [managed cluster](https://www.terraform.io/dataproc/docs/concepts/workflows/using-workflows#configuring_or_selecting_a_cluster), the cluster is deleted.
|
314
281
|
"""
|
315
282
|
return pulumi.get(self, "dag_timeout")
|
316
283
|
|
@@ -355,12 +322,10 @@ class _WorkflowTemplateState:
|
|
355
322
|
@pulumi.getter
|
356
323
|
def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
357
324
|
"""
|
358
|
-
Optional. The labels to associate with this template. These labels will be propagated to all jobs and clusters created
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
associated with a template. **Note**: This field is non-authoritative, and will only manage the labels present in your
|
363
|
-
configuration. Please refer to the field `effective_labels` for all of the labels present on the resource.
|
325
|
+
Optional. The labels to associate with this template. These labels will be propagated to all jobs and clusters created by the workflow instance. Label **keys** must contain 1 to 63 characters, and must conform to [RFC 1035](https://www.ietf.org/rfc/rfc1035.txt). Label **values** may be empty, but, if present, must contain 1 to 63 characters, and must conform to [RFC 1035](https://www.ietf.org/rfc/rfc1035.txt). No more than 32 labels can be associated with a template.
|
326
|
+
|
327
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
328
|
+
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
364
329
|
"""
|
365
330
|
return pulumi.get(self, "labels")
|
366
331
|
|
@@ -396,8 +361,7 @@ class _WorkflowTemplateState:
|
|
396
361
|
@pulumi.getter
|
397
362
|
def parameters(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['WorkflowTemplateParameterArgs']]]]:
|
398
363
|
"""
|
399
|
-
Optional. Template parameters whose values are substituted into the template. Values for parameters must be provided
|
400
|
-
when the template is instantiated.
|
364
|
+
Optional. Template parameters whose values are substituted into the template. Values for parameters must be provided when the template is instantiated.
|
401
365
|
"""
|
402
366
|
return pulumi.get(self, "parameters")
|
403
367
|
|
@@ -575,25 +539,16 @@ class WorkflowTemplate(pulumi.CustomResource):
|
|
575
539
|
|
576
540
|
:param str resource_name: The name of the resource.
|
577
541
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
578
|
-
:param pulumi.Input[_builtins.str] dag_timeout: Optional. Timeout duration for the DAG of jobs, expressed in seconds (see [JSON representation of
|
579
|
-
duration](https://developers.google.com/protocol-buffers/docs/proto3#json)). The timeout duration must be from 10
|
580
|
-
minutes ("600s") to 24 hours ("86400s"). The timer begins when the first job is submitted. If the workflow is running at
|
581
|
-
the end of the timeout period, any remaining jobs are cancelled, the workflow is ended, and if the workflow was running
|
582
|
-
on a [managed
|
583
|
-
cluster](https://www.terraform.io/dataproc/docs/concepts/workflows/using-workflows#configuring_or_selecting_a_cluster),
|
584
|
-
the cluster is deleted.
|
542
|
+
:param pulumi.Input[_builtins.str] dag_timeout: Optional. Timeout duration for the DAG of jobs, expressed in seconds (see [JSON representation of duration](https://developers.google.com/protocol-buffers/docs/proto3#json)). The timeout duration must be from 10 minutes ("600s") to 24 hours ("86400s"). The timer begins when the first job is submitted. If the workflow is running at the end of the timeout period, any remaining jobs are cancelled, the workflow is ended, and if the workflow was running on a [managed cluster](https://www.terraform.io/dataproc/docs/concepts/workflows/using-workflows#configuring_or_selecting_a_cluster), the cluster is deleted.
|
585
543
|
:param pulumi.Input[Union['WorkflowTemplateEncryptionConfigArgs', 'WorkflowTemplateEncryptionConfigArgsDict']] encryption_config: Optional. The encryption configuration for the workflow template.
|
586
544
|
:param pulumi.Input[Sequence[pulumi.Input[Union['WorkflowTemplateJobArgs', 'WorkflowTemplateJobArgsDict']]]] jobs: Required. The Directed Acyclic Graph of Jobs to submit.
|
587
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: Optional. The labels to associate with this template. These labels will be propagated to all jobs and clusters created
|
588
|
-
|
589
|
-
|
590
|
-
|
591
|
-
associated with a template. **Note**: This field is non-authoritative, and will only manage the labels present in your
|
592
|
-
configuration. Please refer to the field `effective_labels` for all of the labels present on the resource.
|
545
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: Optional. The labels to associate with this template. These labels will be propagated to all jobs and clusters created by the workflow instance. Label **keys** must contain 1 to 63 characters, and must conform to [RFC 1035](https://www.ietf.org/rfc/rfc1035.txt). Label **values** may be empty, but, if present, must contain 1 to 63 characters, and must conform to [RFC 1035](https://www.ietf.org/rfc/rfc1035.txt). No more than 32 labels can be associated with a template.
|
546
|
+
|
547
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
548
|
+
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
593
549
|
:param pulumi.Input[_builtins.str] location: The location for the resource
|
594
550
|
:param pulumi.Input[_builtins.str] name: Output only. The resource name of the workflow template, as described in https://cloud.google.com/apis/design/resource_names. * For `projects.regions.workflowTemplates`, the resource name of the template has the following format: `projects/{project_id}/regions/{region}/workflowTemplates/{template_id}` * For `projects.locations.workflowTemplates`, the resource name of the template has the following format: `projects/{project_id}/locations/{location}/workflowTemplates/{template_id}`
|
595
|
-
:param pulumi.Input[Sequence[pulumi.Input[Union['WorkflowTemplateParameterArgs', 'WorkflowTemplateParameterArgsDict']]]] parameters: Optional. Template parameters whose values are substituted into the template. Values for parameters must be provided
|
596
|
-
when the template is instantiated.
|
551
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['WorkflowTemplateParameterArgs', 'WorkflowTemplateParameterArgsDict']]]] parameters: Optional. Template parameters whose values are substituted into the template. Values for parameters must be provided when the template is instantiated.
|
597
552
|
:param pulumi.Input[Union['WorkflowTemplatePlacementArgs', 'WorkflowTemplatePlacementArgsDict']] placement: Required. WorkflowTemplate scheduling information.
|
598
553
|
:param pulumi.Input[_builtins.str] project: The project for the resource
|
599
554
|
:param pulumi.Input[_builtins.int] version: Output only. The current version of this workflow template.
|
@@ -781,25 +736,16 @@ class WorkflowTemplate(pulumi.CustomResource):
|
|
781
736
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
782
737
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
783
738
|
:param pulumi.Input[_builtins.str] create_time: Output only. The time template was created.
|
784
|
-
:param pulumi.Input[_builtins.str] dag_timeout: Optional. Timeout duration for the DAG of jobs, expressed in seconds (see [JSON representation of
|
785
|
-
duration](https://developers.google.com/protocol-buffers/docs/proto3#json)). The timeout duration must be from 10
|
786
|
-
minutes ("600s") to 24 hours ("86400s"). The timer begins when the first job is submitted. If the workflow is running at
|
787
|
-
the end of the timeout period, any remaining jobs are cancelled, the workflow is ended, and if the workflow was running
|
788
|
-
on a [managed
|
789
|
-
cluster](https://www.terraform.io/dataproc/docs/concepts/workflows/using-workflows#configuring_or_selecting_a_cluster),
|
790
|
-
the cluster is deleted.
|
739
|
+
:param pulumi.Input[_builtins.str] dag_timeout: Optional. Timeout duration for the DAG of jobs, expressed in seconds (see [JSON representation of duration](https://developers.google.com/protocol-buffers/docs/proto3#json)). The timeout duration must be from 10 minutes ("600s") to 24 hours ("86400s"). The timer begins when the first job is submitted. If the workflow is running at the end of the timeout period, any remaining jobs are cancelled, the workflow is ended, and if the workflow was running on a [managed cluster](https://www.terraform.io/dataproc/docs/concepts/workflows/using-workflows#configuring_or_selecting_a_cluster), the cluster is deleted.
|
791
740
|
:param pulumi.Input[Union['WorkflowTemplateEncryptionConfigArgs', 'WorkflowTemplateEncryptionConfigArgsDict']] encryption_config: Optional. The encryption configuration for the workflow template.
|
792
741
|
:param pulumi.Input[Sequence[pulumi.Input[Union['WorkflowTemplateJobArgs', 'WorkflowTemplateJobArgsDict']]]] jobs: Required. The Directed Acyclic Graph of Jobs to submit.
|
793
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: Optional. The labels to associate with this template. These labels will be propagated to all jobs and clusters created
|
794
|
-
|
795
|
-
|
796
|
-
|
797
|
-
associated with a template. **Note**: This field is non-authoritative, and will only manage the labels present in your
|
798
|
-
configuration. Please refer to the field `effective_labels` for all of the labels present on the resource.
|
742
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: Optional. The labels to associate with this template. These labels will be propagated to all jobs and clusters created by the workflow instance. Label **keys** must contain 1 to 63 characters, and must conform to [RFC 1035](https://www.ietf.org/rfc/rfc1035.txt). Label **values** may be empty, but, if present, must contain 1 to 63 characters, and must conform to [RFC 1035](https://www.ietf.org/rfc/rfc1035.txt). No more than 32 labels can be associated with a template.
|
743
|
+
|
744
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
745
|
+
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
799
746
|
:param pulumi.Input[_builtins.str] location: The location for the resource
|
800
747
|
:param pulumi.Input[_builtins.str] name: Output only. The resource name of the workflow template, as described in https://cloud.google.com/apis/design/resource_names. * For `projects.regions.workflowTemplates`, the resource name of the template has the following format: `projects/{project_id}/regions/{region}/workflowTemplates/{template_id}` * For `projects.locations.workflowTemplates`, the resource name of the template has the following format: `projects/{project_id}/locations/{location}/workflowTemplates/{template_id}`
|
801
|
-
:param pulumi.Input[Sequence[pulumi.Input[Union['WorkflowTemplateParameterArgs', 'WorkflowTemplateParameterArgsDict']]]] parameters: Optional. Template parameters whose values are substituted into the template. Values for parameters must be provided
|
802
|
-
when the template is instantiated.
|
748
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['WorkflowTemplateParameterArgs', 'WorkflowTemplateParameterArgsDict']]]] parameters: Optional. Template parameters whose values are substituted into the template. Values for parameters must be provided when the template is instantiated.
|
803
749
|
:param pulumi.Input[Union['WorkflowTemplatePlacementArgs', 'WorkflowTemplatePlacementArgsDict']] placement: Required. WorkflowTemplate scheduling information.
|
804
750
|
:param pulumi.Input[_builtins.str] project: The project for the resource
|
805
751
|
: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.
|
@@ -838,13 +784,7 @@ class WorkflowTemplate(pulumi.CustomResource):
|
|
838
784
|
@pulumi.getter(name="dagTimeout")
|
839
785
|
def dag_timeout(self) -> pulumi.Output[Optional[_builtins.str]]:
|
840
786
|
"""
|
841
|
-
Optional. Timeout duration for the DAG of jobs, expressed in seconds (see [JSON representation of
|
842
|
-
duration](https://developers.google.com/protocol-buffers/docs/proto3#json)). The timeout duration must be from 10
|
843
|
-
minutes ("600s") to 24 hours ("86400s"). The timer begins when the first job is submitted. If the workflow is running at
|
844
|
-
the end of the timeout period, any remaining jobs are cancelled, the workflow is ended, and if the workflow was running
|
845
|
-
on a [managed
|
846
|
-
cluster](https://www.terraform.io/dataproc/docs/concepts/workflows/using-workflows#configuring_or_selecting_a_cluster),
|
847
|
-
the cluster is deleted.
|
787
|
+
Optional. Timeout duration for the DAG of jobs, expressed in seconds (see [JSON representation of duration](https://developers.google.com/protocol-buffers/docs/proto3#json)). The timeout duration must be from 10 minutes ("600s") to 24 hours ("86400s"). The timer begins when the first job is submitted. If the workflow is running at the end of the timeout period, any remaining jobs are cancelled, the workflow is ended, and if the workflow was running on a [managed cluster](https://www.terraform.io/dataproc/docs/concepts/workflows/using-workflows#configuring_or_selecting_a_cluster), the cluster is deleted.
|
848
788
|
"""
|
849
789
|
return pulumi.get(self, "dag_timeout")
|
850
790
|
|
@@ -873,12 +813,10 @@ class WorkflowTemplate(pulumi.CustomResource):
|
|
873
813
|
@pulumi.getter
|
874
814
|
def labels(self) -> pulumi.Output[Optional[Mapping[str, _builtins.str]]]:
|
875
815
|
"""
|
876
|
-
Optional. The labels to associate with this template. These labels will be propagated to all jobs and clusters created
|
877
|
-
|
878
|
-
|
879
|
-
|
880
|
-
associated with a template. **Note**: This field is non-authoritative, and will only manage the labels present in your
|
881
|
-
configuration. Please refer to the field `effective_labels` for all of the labels present on the resource.
|
816
|
+
Optional. The labels to associate with this template. These labels will be propagated to all jobs and clusters created by the workflow instance. Label **keys** must contain 1 to 63 characters, and must conform to [RFC 1035](https://www.ietf.org/rfc/rfc1035.txt). Label **values** may be empty, but, if present, must contain 1 to 63 characters, and must conform to [RFC 1035](https://www.ietf.org/rfc/rfc1035.txt). No more than 32 labels can be associated with a template.
|
817
|
+
|
818
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
819
|
+
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
882
820
|
"""
|
883
821
|
return pulumi.get(self, "labels")
|
884
822
|
|
@@ -902,8 +840,7 @@ class WorkflowTemplate(pulumi.CustomResource):
|
|
902
840
|
@pulumi.getter
|
903
841
|
def parameters(self) -> pulumi.Output[Optional[Sequence['outputs.WorkflowTemplateParameter']]]:
|
904
842
|
"""
|
905
|
-
Optional. Template parameters whose values are substituted into the template. Values for parameters must be provided
|
906
|
-
when the template is instantiated.
|
843
|
+
Optional. Template parameters whose values are substituted into the template. Values for parameters must be provided when the template is instantiated.
|
907
844
|
"""
|
908
845
|
return pulumi.get(self, "parameters")
|
909
846
|
|
@@ -33,9 +33,7 @@ class BillingAccountBucketConfigArgs:
|
|
33
33
|
:param pulumi.Input[_builtins.str] billing_account: The parent resource that contains the logging bucket.
|
34
34
|
:param pulumi.Input[_builtins.str] bucket_id: The name of the logging bucket. Logging automatically creates two log buckets: `_Required` and `_Default`.
|
35
35
|
:param pulumi.Input[_builtins.str] location: The location of the bucket.
|
36
|
-
:param pulumi.Input['BillingAccountBucketConfigCmekSettingsArgs'] cmek_settings: The CMEK settings of the log bucket. If present, new log entries written to this log bucket are encrypted using the CMEK
|
37
|
-
key provided in this configuration. If a log bucket has CMEK settings, the CMEK settings cannot be disabled later by
|
38
|
-
updating the log bucket. Changing the KMS key is allowed.
|
36
|
+
:param pulumi.Input['BillingAccountBucketConfigCmekSettingsArgs'] cmek_settings: The CMEK settings of the log bucket. If present, new log entries written to this log bucket are encrypted using the CMEK key provided in this configuration. If a log bucket has CMEK settings, the CMEK settings cannot be disabled later by updating the log bucket. Changing the KMS key is allowed.
|
39
37
|
:param pulumi.Input[_builtins.str] description: Describes this bucket.
|
40
38
|
:param pulumi.Input[Sequence[pulumi.Input['BillingAccountBucketConfigIndexConfigArgs']]] index_configs: A list of indexed fields and related configuration data. Structure is documented below.
|
41
39
|
:param pulumi.Input[_builtins.int] retention_days: Logs will be retained by default for this amount of time, after which they will automatically be deleted. The minimum retention period is 1 day. If this value is set to zero at bucket creation time, the default time of 30 days will be used. Bucket retention can not be increased on buckets outside of projects.
|
@@ -92,9 +90,7 @@ class BillingAccountBucketConfigArgs:
|
|
92
90
|
@pulumi.getter(name="cmekSettings")
|
93
91
|
def cmek_settings(self) -> Optional[pulumi.Input['BillingAccountBucketConfigCmekSettingsArgs']]:
|
94
92
|
"""
|
95
|
-
The CMEK settings of the log bucket. If present, new log entries written to this log bucket are encrypted using the CMEK
|
96
|
-
key provided in this configuration. If a log bucket has CMEK settings, the CMEK settings cannot be disabled later by
|
97
|
-
updating the log bucket. Changing the KMS key is allowed.
|
93
|
+
The CMEK settings of the log bucket. If present, new log entries written to this log bucket are encrypted using the CMEK key provided in this configuration. If a log bucket has CMEK settings, the CMEK settings cannot be disabled later by updating the log bucket. Changing the KMS key is allowed.
|
98
94
|
"""
|
99
95
|
return pulumi.get(self, "cmek_settings")
|
100
96
|
|
@@ -155,9 +151,7 @@ class _BillingAccountBucketConfigState:
|
|
155
151
|
Input properties used for looking up and filtering BillingAccountBucketConfig resources.
|
156
152
|
:param pulumi.Input[_builtins.str] billing_account: The parent resource that contains the logging bucket.
|
157
153
|
:param pulumi.Input[_builtins.str] bucket_id: The name of the logging bucket. Logging automatically creates two log buckets: `_Required` and `_Default`.
|
158
|
-
:param pulumi.Input['BillingAccountBucketConfigCmekSettingsArgs'] cmek_settings: The CMEK settings of the log bucket. If present, new log entries written to this log bucket are encrypted using the CMEK
|
159
|
-
key provided in this configuration. If a log bucket has CMEK settings, the CMEK settings cannot be disabled later by
|
160
|
-
updating the log bucket. Changing the KMS key is allowed.
|
154
|
+
:param pulumi.Input['BillingAccountBucketConfigCmekSettingsArgs'] cmek_settings: The CMEK settings of the log bucket. If present, new log entries written to this log bucket are encrypted using the CMEK key provided in this configuration. If a log bucket has CMEK settings, the CMEK settings cannot be disabled later by updating the log bucket. Changing the KMS key is allowed.
|
161
155
|
:param pulumi.Input[_builtins.str] description: Describes this bucket.
|
162
156
|
:param pulumi.Input[Sequence[pulumi.Input['BillingAccountBucketConfigIndexConfigArgs']]] index_configs: A list of indexed fields and related configuration data. Structure is documented below.
|
163
157
|
:param pulumi.Input[_builtins.str] lifecycle_state: The bucket's lifecycle such as active or deleted. See [LifecycleState](https://cloud.google.com/logging/docs/reference/v2/rest/v2/billingAccounts.buckets#LogBucket.LifecycleState).
|
@@ -212,9 +206,7 @@ class _BillingAccountBucketConfigState:
|
|
212
206
|
@pulumi.getter(name="cmekSettings")
|
213
207
|
def cmek_settings(self) -> Optional[pulumi.Input['BillingAccountBucketConfigCmekSettingsArgs']]:
|
214
208
|
"""
|
215
|
-
The CMEK settings of the log bucket. If present, new log entries written to this log bucket are encrypted using the CMEK
|
216
|
-
key provided in this configuration. If a log bucket has CMEK settings, the CMEK settings cannot be disabled later by
|
217
|
-
updating the log bucket. Changing the KMS key is allowed.
|
209
|
+
The CMEK settings of the log bucket. If present, new log entries written to this log bucket are encrypted using the CMEK key provided in this configuration. If a log bucket has CMEK settings, the CMEK settings cannot be disabled later by updating the log bucket. Changing the KMS key is allowed.
|
218
210
|
"""
|
219
211
|
return pulumi.get(self, "cmek_settings")
|
220
212
|
|
@@ -348,9 +340,7 @@ class BillingAccountBucketConfig(pulumi.CustomResource):
|
|
348
340
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
349
341
|
:param pulumi.Input[_builtins.str] billing_account: The parent resource that contains the logging bucket.
|
350
342
|
:param pulumi.Input[_builtins.str] bucket_id: The name of the logging bucket. Logging automatically creates two log buckets: `_Required` and `_Default`.
|
351
|
-
:param pulumi.Input[Union['BillingAccountBucketConfigCmekSettingsArgs', 'BillingAccountBucketConfigCmekSettingsArgsDict']] cmek_settings: The CMEK settings of the log bucket. If present, new log entries written to this log bucket are encrypted using the CMEK
|
352
|
-
key provided in this configuration. If a log bucket has CMEK settings, the CMEK settings cannot be disabled later by
|
353
|
-
updating the log bucket. Changing the KMS key is allowed.
|
343
|
+
:param pulumi.Input[Union['BillingAccountBucketConfigCmekSettingsArgs', 'BillingAccountBucketConfigCmekSettingsArgsDict']] cmek_settings: The CMEK settings of the log bucket. If present, new log entries written to this log bucket are encrypted using the CMEK key provided in this configuration. If a log bucket has CMEK settings, the CMEK settings cannot be disabled later by updating the log bucket. Changing the KMS key is allowed.
|
354
344
|
:param pulumi.Input[_builtins.str] description: Describes this bucket.
|
355
345
|
:param pulumi.Input[Sequence[pulumi.Input[Union['BillingAccountBucketConfigIndexConfigArgs', 'BillingAccountBucketConfigIndexConfigArgsDict']]]] index_configs: A list of indexed fields and related configuration data. Structure is documented below.
|
356
346
|
:param pulumi.Input[_builtins.str] location: The location of the bucket.
|
@@ -471,9 +461,7 @@ class BillingAccountBucketConfig(pulumi.CustomResource):
|
|
471
461
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
472
462
|
:param pulumi.Input[_builtins.str] billing_account: The parent resource that contains the logging bucket.
|
473
463
|
:param pulumi.Input[_builtins.str] bucket_id: The name of the logging bucket. Logging automatically creates two log buckets: `_Required` and `_Default`.
|
474
|
-
:param pulumi.Input[Union['BillingAccountBucketConfigCmekSettingsArgs', 'BillingAccountBucketConfigCmekSettingsArgsDict']] cmek_settings: The CMEK settings of the log bucket. If present, new log entries written to this log bucket are encrypted using the CMEK
|
475
|
-
key provided in this configuration. If a log bucket has CMEK settings, the CMEK settings cannot be disabled later by
|
476
|
-
updating the log bucket. Changing the KMS key is allowed.
|
464
|
+
:param pulumi.Input[Union['BillingAccountBucketConfigCmekSettingsArgs', 'BillingAccountBucketConfigCmekSettingsArgsDict']] cmek_settings: The CMEK settings of the log bucket. If present, new log entries written to this log bucket are encrypted using the CMEK key provided in this configuration. If a log bucket has CMEK settings, the CMEK settings cannot be disabled later by updating the log bucket. Changing the KMS key is allowed.
|
477
465
|
:param pulumi.Input[_builtins.str] description: Describes this bucket.
|
478
466
|
:param pulumi.Input[Sequence[pulumi.Input[Union['BillingAccountBucketConfigIndexConfigArgs', 'BillingAccountBucketConfigIndexConfigArgsDict']]]] index_configs: A list of indexed fields and related configuration data. Structure is documented below.
|
479
467
|
:param pulumi.Input[_builtins.str] lifecycle_state: The bucket's lifecycle such as active or deleted. See [LifecycleState](https://cloud.google.com/logging/docs/reference/v2/rest/v2/billingAccounts.buckets#LogBucket.LifecycleState).
|
@@ -516,9 +504,7 @@ class BillingAccountBucketConfig(pulumi.CustomResource):
|
|
516
504
|
@pulumi.getter(name="cmekSettings")
|
517
505
|
def cmek_settings(self) -> pulumi.Output[Optional['outputs.BillingAccountBucketConfigCmekSettings']]:
|
518
506
|
"""
|
519
|
-
The CMEK settings of the log bucket. If present, new log entries written to this log bucket are encrypted using the CMEK
|
520
|
-
key provided in this configuration. If a log bucket has CMEK settings, the CMEK settings cannot be disabled later by
|
521
|
-
updating the log bucket. Changing the KMS key is allowed.
|
507
|
+
The CMEK settings of the log bucket. If present, new log entries written to this log bucket are encrypted using the CMEK key provided in this configuration. If a log bucket has CMEK settings, the CMEK settings cannot be disabled later by updating the log bucket. Changing the KMS key is allowed.
|
522
508
|
"""
|
523
509
|
return pulumi.get(self, "cmek_settings")
|
524
510
|
|
@@ -33,9 +33,7 @@ class FolderBucketConfigArgs:
|
|
33
33
|
:param pulumi.Input[_builtins.str] bucket_id: The name of the logging bucket. Logging automatically creates two log buckets: `_Required` and `_Default`.
|
34
34
|
:param pulumi.Input[_builtins.str] folder: The parent resource that contains the logging bucket.
|
35
35
|
:param pulumi.Input[_builtins.str] location: The location of the bucket.
|
36
|
-
:param pulumi.Input['FolderBucketConfigCmekSettingsArgs'] cmek_settings: The CMEK settings of the log bucket. If present, new log entries written to this log bucket are encrypted using the CMEK
|
37
|
-
key provided in this configuration. If a log bucket has CMEK settings, the CMEK settings cannot be disabled later by
|
38
|
-
updating the log bucket. Changing the KMS key is allowed.
|
36
|
+
:param pulumi.Input['FolderBucketConfigCmekSettingsArgs'] cmek_settings: The CMEK settings of the log bucket. If present, new log entries written to this log bucket are encrypted using the CMEK key provided in this configuration. If a log bucket has CMEK settings, the CMEK settings cannot be disabled later by updating the log bucket. Changing the KMS key is allowed.
|
39
37
|
:param pulumi.Input[_builtins.str] description: Describes this bucket.
|
40
38
|
:param pulumi.Input[Sequence[pulumi.Input['FolderBucketConfigIndexConfigArgs']]] index_configs: A list of indexed fields and related configuration data. Structure is documented below.
|
41
39
|
:param pulumi.Input[_builtins.int] retention_days: Logs will be retained by default for this amount of time, after which they will automatically be deleted. The minimum retention period is 1 day. If this value is set to zero at bucket creation time, the default time of 30 days will be used. Bucket retention can not be increased on buckets outside of projects.
|
@@ -92,9 +90,7 @@ class FolderBucketConfigArgs:
|
|
92
90
|
@pulumi.getter(name="cmekSettings")
|
93
91
|
def cmek_settings(self) -> Optional[pulumi.Input['FolderBucketConfigCmekSettingsArgs']]:
|
94
92
|
"""
|
95
|
-
The CMEK settings of the log bucket. If present, new log entries written to this log bucket are encrypted using the CMEK
|
96
|
-
key provided in this configuration. If a log bucket has CMEK settings, the CMEK settings cannot be disabled later by
|
97
|
-
updating the log bucket. Changing the KMS key is allowed.
|
93
|
+
The CMEK settings of the log bucket. If present, new log entries written to this log bucket are encrypted using the CMEK key provided in this configuration. If a log bucket has CMEK settings, the CMEK settings cannot be disabled later by updating the log bucket. Changing the KMS key is allowed.
|
98
94
|
"""
|
99
95
|
return pulumi.get(self, "cmek_settings")
|
100
96
|
|
@@ -154,9 +150,7 @@ class _FolderBucketConfigState:
|
|
154
150
|
"""
|
155
151
|
Input properties used for looking up and filtering FolderBucketConfig resources.
|
156
152
|
:param pulumi.Input[_builtins.str] bucket_id: The name of the logging bucket. Logging automatically creates two log buckets: `_Required` and `_Default`.
|
157
|
-
:param pulumi.Input['FolderBucketConfigCmekSettingsArgs'] cmek_settings: The CMEK settings of the log bucket. If present, new log entries written to this log bucket are encrypted using the CMEK
|
158
|
-
key provided in this configuration. If a log bucket has CMEK settings, the CMEK settings cannot be disabled later by
|
159
|
-
updating the log bucket. Changing the KMS key is allowed.
|
153
|
+
:param pulumi.Input['FolderBucketConfigCmekSettingsArgs'] cmek_settings: The CMEK settings of the log bucket. If present, new log entries written to this log bucket are encrypted using the CMEK key provided in this configuration. If a log bucket has CMEK settings, the CMEK settings cannot be disabled later by updating the log bucket. Changing the KMS key is allowed.
|
160
154
|
:param pulumi.Input[_builtins.str] description: Describes this bucket.
|
161
155
|
:param pulumi.Input[_builtins.str] folder: The parent resource that contains the logging bucket.
|
162
156
|
:param pulumi.Input[Sequence[pulumi.Input['FolderBucketConfigIndexConfigArgs']]] index_configs: A list of indexed fields and related configuration data. Structure is documented below.
|
@@ -200,9 +194,7 @@ class _FolderBucketConfigState:
|
|
200
194
|
@pulumi.getter(name="cmekSettings")
|
201
195
|
def cmek_settings(self) -> Optional[pulumi.Input['FolderBucketConfigCmekSettingsArgs']]:
|
202
196
|
"""
|
203
|
-
The CMEK settings of the log bucket. If present, new log entries written to this log bucket are encrypted using the CMEK
|
204
|
-
key provided in this configuration. If a log bucket has CMEK settings, the CMEK settings cannot be disabled later by
|
205
|
-
updating the log bucket. Changing the KMS key is allowed.
|
197
|
+
The CMEK settings of the log bucket. If present, new log entries written to this log bucket are encrypted using the CMEK key provided in this configuration. If a log bucket has CMEK settings, the CMEK settings cannot be disabled later by updating the log bucket. Changing the KMS key is allowed.
|
206
198
|
"""
|
207
199
|
return pulumi.get(self, "cmek_settings")
|
208
200
|
|
@@ -351,9 +343,7 @@ class FolderBucketConfig(pulumi.CustomResource):
|
|
351
343
|
:param str resource_name: The name of the resource.
|
352
344
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
353
345
|
:param pulumi.Input[_builtins.str] bucket_id: The name of the logging bucket. Logging automatically creates two log buckets: `_Required` and `_Default`.
|
354
|
-
:param pulumi.Input[Union['FolderBucketConfigCmekSettingsArgs', 'FolderBucketConfigCmekSettingsArgsDict']] cmek_settings: The CMEK settings of the log bucket. If present, new log entries written to this log bucket are encrypted using the CMEK
|
355
|
-
key provided in this configuration. If a log bucket has CMEK settings, the CMEK settings cannot be disabled later by
|
356
|
-
updating the log bucket. Changing the KMS key is allowed.
|
346
|
+
:param pulumi.Input[Union['FolderBucketConfigCmekSettingsArgs', 'FolderBucketConfigCmekSettingsArgsDict']] cmek_settings: The CMEK settings of the log bucket. If present, new log entries written to this log bucket are encrypted using the CMEK key provided in this configuration. If a log bucket has CMEK settings, the CMEK settings cannot be disabled later by updating the log bucket. Changing the KMS key is allowed.
|
357
347
|
:param pulumi.Input[_builtins.str] description: Describes this bucket.
|
358
348
|
:param pulumi.Input[_builtins.str] folder: The parent resource that contains the logging bucket.
|
359
349
|
:param pulumi.Input[Sequence[pulumi.Input[Union['FolderBucketConfigIndexConfigArgs', 'FolderBucketConfigIndexConfigArgsDict']]]] index_configs: A list of indexed fields and related configuration data. Structure is documented below.
|
@@ -478,9 +468,7 @@ class FolderBucketConfig(pulumi.CustomResource):
|
|
478
468
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
479
469
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
480
470
|
:param pulumi.Input[_builtins.str] bucket_id: The name of the logging bucket. Logging automatically creates two log buckets: `_Required` and `_Default`.
|
481
|
-
:param pulumi.Input[Union['FolderBucketConfigCmekSettingsArgs', 'FolderBucketConfigCmekSettingsArgsDict']] cmek_settings: The CMEK settings of the log bucket. If present, new log entries written to this log bucket are encrypted using the CMEK
|
482
|
-
key provided in this configuration. If a log bucket has CMEK settings, the CMEK settings cannot be disabled later by
|
483
|
-
updating the log bucket. Changing the KMS key is allowed.
|
471
|
+
:param pulumi.Input[Union['FolderBucketConfigCmekSettingsArgs', 'FolderBucketConfigCmekSettingsArgsDict']] cmek_settings: The CMEK settings of the log bucket. If present, new log entries written to this log bucket are encrypted using the CMEK key provided in this configuration. If a log bucket has CMEK settings, the CMEK settings cannot be disabled later by updating the log bucket. Changing the KMS key is allowed.
|
484
472
|
:param pulumi.Input[_builtins.str] description: Describes this bucket.
|
485
473
|
:param pulumi.Input[_builtins.str] folder: The parent resource that contains the logging bucket.
|
486
474
|
:param pulumi.Input[Sequence[pulumi.Input[Union['FolderBucketConfigIndexConfigArgs', 'FolderBucketConfigIndexConfigArgsDict']]]] index_configs: A list of indexed fields and related configuration data. Structure is documented below.
|
@@ -516,9 +504,7 @@ class FolderBucketConfig(pulumi.CustomResource):
|
|
516
504
|
@pulumi.getter(name="cmekSettings")
|
517
505
|
def cmek_settings(self) -> pulumi.Output[Optional['outputs.FolderBucketConfigCmekSettings']]:
|
518
506
|
"""
|
519
|
-
The CMEK settings of the log bucket. If present, new log entries written to this log bucket are encrypted using the CMEK
|
520
|
-
key provided in this configuration. If a log bucket has CMEK settings, the CMEK settings cannot be disabled later by
|
521
|
-
updating the log bucket. Changing the KMS key is allowed.
|
507
|
+
The CMEK settings of the log bucket. If present, new log entries written to this log bucket are encrypted using the CMEK key provided in this configuration. If a log bucket has CMEK settings, the CMEK settings cannot be disabled later by updating the log bucket. Changing the KMS key is allowed.
|
522
508
|
"""
|
523
509
|
return pulumi.get(self, "cmek_settings")
|
524
510
|
|
@@ -33,9 +33,7 @@ class OrganizationBucketConfigArgs:
|
|
33
33
|
:param pulumi.Input[_builtins.str] bucket_id: The name of the logging bucket. Logging automatically creates two log buckets: `_Required` and `_Default`.
|
34
34
|
:param pulumi.Input[_builtins.str] location: The location of the bucket. The supported locations are: "global" "us-central1"
|
35
35
|
:param pulumi.Input[_builtins.str] organization: The parent resource that contains the logging bucket.
|
36
|
-
:param pulumi.Input['OrganizationBucketConfigCmekSettingsArgs'] cmek_settings: The CMEK settings of the log bucket. If present, new log entries written to this log bucket are encrypted using the CMEK
|
37
|
-
key provided in this configuration. If a log bucket has CMEK settings, the CMEK settings cannot be disabled later by
|
38
|
-
updating the log bucket. Changing the KMS key is allowed.
|
36
|
+
:param pulumi.Input['OrganizationBucketConfigCmekSettingsArgs'] cmek_settings: The CMEK settings of the log bucket. If present, new log entries written to this log bucket are encrypted using the CMEK key provided in this configuration. If a log bucket has CMEK settings, the CMEK settings cannot be disabled later by updating the log bucket. Changing the KMS key is allowed.
|
39
37
|
:param pulumi.Input[_builtins.str] description: Describes this bucket.
|
40
38
|
:param pulumi.Input[Sequence[pulumi.Input['OrganizationBucketConfigIndexConfigArgs']]] index_configs: A list of indexed fields and related configuration data. Structure is documented below.
|
41
39
|
:param pulumi.Input[_builtins.int] retention_days: Logs will be retained by default for this amount of time, after which they will automatically be deleted. The minimum retention period is 1 day. If this value is set to zero at bucket creation time, the default time of 30 days will be used. Bucket retention can not be increased on buckets outside of projects.
|
@@ -92,9 +90,7 @@ class OrganizationBucketConfigArgs:
|
|
92
90
|
@pulumi.getter(name="cmekSettings")
|
93
91
|
def cmek_settings(self) -> Optional[pulumi.Input['OrganizationBucketConfigCmekSettingsArgs']]:
|
94
92
|
"""
|
95
|
-
The CMEK settings of the log bucket. If present, new log entries written to this log bucket are encrypted using the CMEK
|
96
|
-
key provided in this configuration. If a log bucket has CMEK settings, the CMEK settings cannot be disabled later by
|
97
|
-
updating the log bucket. Changing the KMS key is allowed.
|
93
|
+
The CMEK settings of the log bucket. If present, new log entries written to this log bucket are encrypted using the CMEK key provided in this configuration. If a log bucket has CMEK settings, the CMEK settings cannot be disabled later by updating the log bucket. Changing the KMS key is allowed.
|
98
94
|
"""
|
99
95
|
return pulumi.get(self, "cmek_settings")
|
100
96
|
|
@@ -154,9 +150,7 @@ class _OrganizationBucketConfigState:
|
|
154
150
|
"""
|
155
151
|
Input properties used for looking up and filtering OrganizationBucketConfig resources.
|
156
152
|
:param pulumi.Input[_builtins.str] bucket_id: The name of the logging bucket. Logging automatically creates two log buckets: `_Required` and `_Default`.
|
157
|
-
:param pulumi.Input['OrganizationBucketConfigCmekSettingsArgs'] cmek_settings: The CMEK settings of the log bucket. If present, new log entries written to this log bucket are encrypted using the CMEK
|
158
|
-
key provided in this configuration. If a log bucket has CMEK settings, the CMEK settings cannot be disabled later by
|
159
|
-
updating the log bucket. Changing the KMS key is allowed.
|
153
|
+
:param pulumi.Input['OrganizationBucketConfigCmekSettingsArgs'] cmek_settings: The CMEK settings of the log bucket. If present, new log entries written to this log bucket are encrypted using the CMEK key provided in this configuration. If a log bucket has CMEK settings, the CMEK settings cannot be disabled later by updating the log bucket. Changing the KMS key is allowed.
|
160
154
|
:param pulumi.Input[_builtins.str] description: Describes this bucket.
|
161
155
|
:param pulumi.Input[Sequence[pulumi.Input['OrganizationBucketConfigIndexConfigArgs']]] index_configs: A list of indexed fields and related configuration data. Structure is documented below.
|
162
156
|
:param pulumi.Input[_builtins.str] lifecycle_state: The bucket's lifecycle such as active or deleted. See [LifecycleState](https://cloud.google.com/logging/docs/reference/v2/rest/v2/billingAccounts.buckets#LogBucket.LifecycleState).
|
@@ -200,9 +194,7 @@ class _OrganizationBucketConfigState:
|
|
200
194
|
@pulumi.getter(name="cmekSettings")
|
201
195
|
def cmek_settings(self) -> Optional[pulumi.Input['OrganizationBucketConfigCmekSettingsArgs']]:
|
202
196
|
"""
|
203
|
-
The CMEK settings of the log bucket. If present, new log entries written to this log bucket are encrypted using the CMEK
|
204
|
-
key provided in this configuration. If a log bucket has CMEK settings, the CMEK settings cannot be disabled later by
|
205
|
-
updating the log bucket. Changing the KMS key is allowed.
|
197
|
+
The CMEK settings of the log bucket. If present, new log entries written to this log bucket are encrypted using the CMEK key provided in this configuration. If a log bucket has CMEK settings, the CMEK settings cannot be disabled later by updating the log bucket. Changing the KMS key is allowed.
|
206
198
|
"""
|
207
199
|
return pulumi.get(self, "cmek_settings")
|
208
200
|
|
@@ -349,9 +341,7 @@ class OrganizationBucketConfig(pulumi.CustomResource):
|
|
349
341
|
:param str resource_name: The name of the resource.
|
350
342
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
351
343
|
:param pulumi.Input[_builtins.str] bucket_id: The name of the logging bucket. Logging automatically creates two log buckets: `_Required` and `_Default`.
|
352
|
-
:param pulumi.Input[Union['OrganizationBucketConfigCmekSettingsArgs', 'OrganizationBucketConfigCmekSettingsArgsDict']] cmek_settings: The CMEK settings of the log bucket. If present, new log entries written to this log bucket are encrypted using the CMEK
|
353
|
-
key provided in this configuration. If a log bucket has CMEK settings, the CMEK settings cannot be disabled later by
|
354
|
-
updating the log bucket. Changing the KMS key is allowed.
|
344
|
+
:param pulumi.Input[Union['OrganizationBucketConfigCmekSettingsArgs', 'OrganizationBucketConfigCmekSettingsArgsDict']] cmek_settings: The CMEK settings of the log bucket. If present, new log entries written to this log bucket are encrypted using the CMEK key provided in this configuration. If a log bucket has CMEK settings, the CMEK settings cannot be disabled later by updating the log bucket. Changing the KMS key is allowed.
|
355
345
|
:param pulumi.Input[_builtins.str] description: Describes this bucket.
|
356
346
|
:param pulumi.Input[Sequence[pulumi.Input[Union['OrganizationBucketConfigIndexConfigArgs', 'OrganizationBucketConfigIndexConfigArgsDict']]]] index_configs: A list of indexed fields and related configuration data. Structure is documented below.
|
357
347
|
:param pulumi.Input[_builtins.str] location: The location of the bucket. The supported locations are: "global" "us-central1"
|
@@ -474,9 +464,7 @@ class OrganizationBucketConfig(pulumi.CustomResource):
|
|
474
464
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
475
465
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
476
466
|
:param pulumi.Input[_builtins.str] bucket_id: The name of the logging bucket. Logging automatically creates two log buckets: `_Required` and `_Default`.
|
477
|
-
:param pulumi.Input[Union['OrganizationBucketConfigCmekSettingsArgs', 'OrganizationBucketConfigCmekSettingsArgsDict']] cmek_settings: The CMEK settings of the log bucket. If present, new log entries written to this log bucket are encrypted using the CMEK
|
478
|
-
key provided in this configuration. If a log bucket has CMEK settings, the CMEK settings cannot be disabled later by
|
479
|
-
updating the log bucket. Changing the KMS key is allowed.
|
467
|
+
:param pulumi.Input[Union['OrganizationBucketConfigCmekSettingsArgs', 'OrganizationBucketConfigCmekSettingsArgsDict']] cmek_settings: The CMEK settings of the log bucket. If present, new log entries written to this log bucket are encrypted using the CMEK key provided in this configuration. If a log bucket has CMEK settings, the CMEK settings cannot be disabled later by updating the log bucket. Changing the KMS key is allowed.
|
480
468
|
:param pulumi.Input[_builtins.str] description: Describes this bucket.
|
481
469
|
:param pulumi.Input[Sequence[pulumi.Input[Union['OrganizationBucketConfigIndexConfigArgs', 'OrganizationBucketConfigIndexConfigArgsDict']]]] index_configs: A list of indexed fields and related configuration data. Structure is documented below.
|
482
470
|
:param pulumi.Input[_builtins.str] lifecycle_state: The bucket's lifecycle such as active or deleted. See [LifecycleState](https://cloud.google.com/logging/docs/reference/v2/rest/v2/billingAccounts.buckets#LogBucket.LifecycleState).
|
@@ -512,9 +500,7 @@ class OrganizationBucketConfig(pulumi.CustomResource):
|
|
512
500
|
@pulumi.getter(name="cmekSettings")
|
513
501
|
def cmek_settings(self) -> pulumi.Output[Optional['outputs.OrganizationBucketConfigCmekSettings']]:
|
514
502
|
"""
|
515
|
-
The CMEK settings of the log bucket. If present, new log entries written to this log bucket are encrypted using the CMEK
|
516
|
-
key provided in this configuration. If a log bucket has CMEK settings, the CMEK settings cannot be disabled later by
|
517
|
-
updating the log bucket. Changing the KMS key is allowed.
|
503
|
+
The CMEK settings of the log bucket. If present, new log entries written to this log bucket are encrypted using the CMEK key provided in this configuration. If a log bucket has CMEK settings, the CMEK settings cannot be disabled later by updating the log bucket. Changing the KMS key is allowed.
|
518
504
|
"""
|
519
505
|
return pulumi.get(self, "cmek_settings")
|
520
506
|
|
@@ -23,8 +23,7 @@ class DashboardArgs:
|
|
23
23
|
project: Optional[pulumi.Input[_builtins.str]] = None):
|
24
24
|
"""
|
25
25
|
The set of arguments for constructing a Dashboard resource.
|
26
|
-
:param pulumi.Input[_builtins.str] dashboard_json: The JSON representation of a dashboard, following the format at
|
27
|
-
https://cloud.google.com/monitoring/api/ref_v3/rest/v1/projects.dashboards.
|
26
|
+
:param pulumi.Input[_builtins.str] dashboard_json: The JSON representation of a dashboard, following the format at https://cloud.google.com/monitoring/api/ref_v3/rest/v1/projects.dashboards.
|
28
27
|
:param pulumi.Input[_builtins.str] project: The ID of the project in which the resource belongs.
|
29
28
|
If it is not provided, the provider project is used.
|
30
29
|
"""
|
@@ -36,8 +35,7 @@ class DashboardArgs:
|
|
36
35
|
@pulumi.getter(name="dashboardJson")
|
37
36
|
def dashboard_json(self) -> pulumi.Input[_builtins.str]:
|
38
37
|
"""
|
39
|
-
The JSON representation of a dashboard, following the format at
|
40
|
-
https://cloud.google.com/monitoring/api/ref_v3/rest/v1/projects.dashboards.
|
38
|
+
The JSON representation of a dashboard, following the format at https://cloud.google.com/monitoring/api/ref_v3/rest/v1/projects.dashboards.
|
41
39
|
"""
|
42
40
|
return pulumi.get(self, "dashboard_json")
|
43
41
|
|
@@ -66,8 +64,7 @@ class _DashboardState:
|
|
66
64
|
project: Optional[pulumi.Input[_builtins.str]] = None):
|
67
65
|
"""
|
68
66
|
Input properties used for looking up and filtering Dashboard resources.
|
69
|
-
:param pulumi.Input[_builtins.str] dashboard_json: The JSON representation of a dashboard, following the format at
|
70
|
-
https://cloud.google.com/monitoring/api/ref_v3/rest/v1/projects.dashboards.
|
67
|
+
:param pulumi.Input[_builtins.str] dashboard_json: The JSON representation of a dashboard, following the format at https://cloud.google.com/monitoring/api/ref_v3/rest/v1/projects.dashboards.
|
71
68
|
:param pulumi.Input[_builtins.str] project: The ID of the project in which the resource belongs.
|
72
69
|
If it is not provided, the provider project is used.
|
73
70
|
"""
|
@@ -80,8 +77,7 @@ class _DashboardState:
|
|
80
77
|
@pulumi.getter(name="dashboardJson")
|
81
78
|
def dashboard_json(self) -> Optional[pulumi.Input[_builtins.str]]:
|
82
79
|
"""
|
83
|
-
The JSON representation of a dashboard, following the format at
|
84
|
-
https://cloud.google.com/monitoring/api/ref_v3/rest/v1/projects.dashboards.
|
80
|
+
The JSON representation of a dashboard, following the format at https://cloud.google.com/monitoring/api/ref_v3/rest/v1/projects.dashboards.
|
85
81
|
"""
|
86
82
|
return pulumi.get(self, "dashboard_json")
|
87
83
|
|
@@ -231,8 +227,7 @@ class Dashboard(pulumi.CustomResource):
|
|
231
227
|
|
232
228
|
:param str resource_name: The name of the resource.
|
233
229
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
234
|
-
:param pulumi.Input[_builtins.str] dashboard_json: The JSON representation of a dashboard, following the format at
|
235
|
-
https://cloud.google.com/monitoring/api/ref_v3/rest/v1/projects.dashboards.
|
230
|
+
:param pulumi.Input[_builtins.str] dashboard_json: The JSON representation of a dashboard, following the format at https://cloud.google.com/monitoring/api/ref_v3/rest/v1/projects.dashboards.
|
236
231
|
:param pulumi.Input[_builtins.str] project: The ID of the project in which the resource belongs.
|
237
232
|
If it is not provided, the provider project is used.
|
238
233
|
"""
|
@@ -408,8 +403,7 @@ class Dashboard(pulumi.CustomResource):
|
|
408
403
|
:param str resource_name: The unique name of the resulting resource.
|
409
404
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
410
405
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
411
|
-
:param pulumi.Input[_builtins.str] dashboard_json: The JSON representation of a dashboard, following the format at
|
412
|
-
https://cloud.google.com/monitoring/api/ref_v3/rest/v1/projects.dashboards.
|
406
|
+
:param pulumi.Input[_builtins.str] dashboard_json: The JSON representation of a dashboard, following the format at https://cloud.google.com/monitoring/api/ref_v3/rest/v1/projects.dashboards.
|
413
407
|
:param pulumi.Input[_builtins.str] project: The ID of the project in which the resource belongs.
|
414
408
|
If it is not provided, the provider project is used.
|
415
409
|
"""
|
@@ -425,8 +419,7 @@ class Dashboard(pulumi.CustomResource):
|
|
425
419
|
@pulumi.getter(name="dashboardJson")
|
426
420
|
def dashboard_json(self) -> pulumi.Output[_builtins.str]:
|
427
421
|
"""
|
428
|
-
The JSON representation of a dashboard, following the format at
|
429
|
-
https://cloud.google.com/monitoring/api/ref_v3/rest/v1/projects.dashboards.
|
422
|
+
The JSON representation of a dashboard, following the format at https://cloud.google.com/monitoring/api/ref_v3/rest/v1/projects.dashboards.
|
430
423
|
"""
|
431
424
|
return pulumi.get(self, "dashboard_json")
|
432
425
|
|