pulumi-gcp 7.21.0__py3-none-any.whl → 7.21.0a1714002516__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/__init__.py +0 -40
- pulumi_gcp/alloydb/_inputs.py +0 -74
- pulumi_gcp/alloydb/backup.py +12 -0
- pulumi_gcp/alloydb/cluster.py +12 -0
- pulumi_gcp/alloydb/instance.py +81 -90
- pulumi_gcp/alloydb/outputs.py +0 -98
- pulumi_gcp/apigee/environment.py +0 -47
- pulumi_gcp/apigee/sharedflow.py +20 -0
- pulumi_gcp/appengine/flexible_app_version.py +20 -0
- pulumi_gcp/applicationintegration/__init__.py +0 -1
- pulumi_gcp/applicationintegration/_inputs.py +0 -843
- pulumi_gcp/applicationintegration/outputs.py +0 -891
- pulumi_gcp/bigquerydatapolicy/_inputs.py +4 -21
- pulumi_gcp/bigquerydatapolicy/data_policy.py +0 -78
- pulumi_gcp/bigquerydatapolicy/outputs.py +3 -16
- pulumi_gcp/certificateauthority/_inputs.py +12 -92
- pulumi_gcp/certificateauthority/authority.py +27 -117
- pulumi_gcp/certificateauthority/certificate.py +0 -176
- pulumi_gcp/certificateauthority/outputs.py +12 -144
- pulumi_gcp/cloudbuild/worker_pool.py +12 -0
- pulumi_gcp/cloudbuildv2/connection.py +12 -0
- pulumi_gcp/cloudbuildv2/repository.py +12 -0
- pulumi_gcp/clouddeploy/automation.py +12 -0
- pulumi_gcp/clouddeploy/custom_target_type.py +12 -0
- pulumi_gcp/clouddeploy/delivery_pipeline.py +12 -0
- pulumi_gcp/clouddeploy/target.py +12 -0
- pulumi_gcp/cloudrunv2/job.py +12 -0
- pulumi_gcp/cloudrunv2/service.py +12 -0
- pulumi_gcp/composer/__init__.py +0 -1
- pulumi_gcp/composer/environment.py +47 -35
- pulumi_gcp/compute/__init__.py +0 -1
- pulumi_gcp/compute/_inputs.py +58 -121
- pulumi_gcp/compute/forwarding_rule.py +13 -0
- pulumi_gcp/compute/global_address.py +12 -0
- pulumi_gcp/compute/global_forwarding_rule.py +282 -0
- pulumi_gcp/compute/instance_from_machine_image.py +46 -14
- pulumi_gcp/compute/instance_from_template.py +46 -14
- pulumi_gcp/compute/outputs.py +65 -120
- pulumi_gcp/compute/region_instance_template.py +13 -0
- pulumi_gcp/compute/region_target_https_proxy.py +0 -257
- pulumi_gcp/compute/region_url_map.py +470 -0
- pulumi_gcp/container/attached_cluster.py +12 -0
- pulumi_gcp/container/aws_cluster.py +12 -0
- pulumi_gcp/container/aws_node_pool.py +12 -0
- pulumi_gcp/container/azure_cluster.py +12 -0
- pulumi_gcp/container/azure_node_pool.py +12 -0
- pulumi_gcp/container/cluster.py +20 -0
- pulumi_gcp/dataflow/flex_template_job.py +39 -0
- pulumi_gcp/dataloss/__init__.py +0 -1
- pulumi_gcp/dataloss/_inputs.py +0 -1040
- pulumi_gcp/dataloss/outputs.py +0 -1123
- pulumi_gcp/dataproc/cluster.py +20 -0
- pulumi_gcp/dataproc/workflow_template.py +26 -21
- pulumi_gcp/deploymentmanager/deployment.py +34 -0
- pulumi_gcp/dns/_inputs.py +2 -2
- pulumi_gcp/dns/outputs.py +2 -2
- pulumi_gcp/dns/record_set.py +36 -2
- pulumi_gcp/filestore/get_instance.py +1 -11
- pulumi_gcp/filestore/instance.py +0 -101
- pulumi_gcp/firebase/_inputs.py +0 -16
- pulumi_gcp/firebase/android_app.py +27 -0
- pulumi_gcp/firebase/app_check_play_integrity_config.py +0 -20
- pulumi_gcp/firebase/app_check_recaptcha_enterprise_config.py +0 -10
- pulumi_gcp/firebase/app_check_service_config.py +125 -0
- pulumi_gcp/firebase/apple_app.py +27 -0
- pulumi_gcp/firebase/hosting_custom_domain.py +27 -0
- pulumi_gcp/firebase/hosting_version.py +0 -44
- pulumi_gcp/firebase/outputs.py +0 -12
- pulumi_gcp/firebase/web_app.py +20 -0
- pulumi_gcp/firestore/database.py +68 -0
- pulumi_gcp/gkeonprem/bare_metal_admin_cluster.py +12 -0
- pulumi_gcp/gkeonprem/bare_metal_cluster.py +12 -0
- pulumi_gcp/gkeonprem/bare_metal_node_pool.py +12 -0
- pulumi_gcp/gkeonprem/v_mware_cluster.py +12 -0
- pulumi_gcp/gkeonprem/v_mware_node_pool.py +12 -0
- pulumi_gcp/logging/folder_sink.py +0 -54
- pulumi_gcp/logging/organization_sink.py +0 -54
- pulumi_gcp/monitoring/_inputs.py +2 -46
- pulumi_gcp/monitoring/outputs.py +2 -40
- pulumi_gcp/monitoring/uptime_check_config.py +0 -6
- pulumi_gcp/netapp/active_directory.py +20 -0
- pulumi_gcp/netapp/volume_replication.py +68 -0
- pulumi_gcp/networkconnectivity/__init__.py +0 -1
- pulumi_gcp/provider.py +1 -3
- pulumi_gcp/secretmanager/get_secret.py +3 -13
- pulumi_gcp/secretmanager/outputs.py +1 -20
- pulumi_gcp/secretmanager/secret.py +15 -90
- pulumi_gcp/servicenetworking/connection.py +20 -0
- pulumi_gcp/spanner/database.py +41 -0
- pulumi_gcp/spanner/instance.py +40 -0
- pulumi_gcp/storage/__init__.py +0 -1
- pulumi_gcp/storage/bucket.py +12 -0
- pulumi_gcp/storage/outputs.py +0 -63
- pulumi_gcp/workstations/workstation.py +12 -0
- pulumi_gcp/workstations/workstation_cluster.py +12 -0
- pulumi_gcp/workstations/workstation_config.py +12 -0
- {pulumi_gcp-7.21.0.dist-info → pulumi_gcp-7.21.0a1714002516.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.21.0.dist-info → pulumi_gcp-7.21.0a1714002516.dist-info}/RECORD +100 -106
- pulumi_gcp/applicationintegration/auth_config.py +0 -998
- pulumi_gcp/composer/user_workloads_secret.py +0 -441
- pulumi_gcp/compute/security_policy_rule.py +0 -850
- pulumi_gcp/dataloss/prevention_discovery_config.py +0 -737
- pulumi_gcp/networkconnectivity/internal_range.py +0 -1024
- pulumi_gcp/storage/get_bucket_objects.py +0 -153
- {pulumi_gcp-7.21.0.dist-info → pulumi_gcp-7.21.0a1714002516.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.21.0.dist-info → pulumi_gcp-7.21.0a1714002516.dist-info}/top_level.txt +0 -0
@@ -188,6 +188,8 @@ class _VMwareNodePoolState:
|
|
188
188
|
:param pulumi.Input[str] create_time: The time the cluster was created, in RFC3339 text format.
|
189
189
|
:param pulumi.Input[str] delete_time: The time the cluster was deleted, in RFC3339 text format.
|
190
190
|
:param pulumi.Input[str] display_name: The display name for the node pool.
|
191
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_annotations: All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
|
192
|
+
Terraform, other clients and services.
|
191
193
|
:param pulumi.Input[str] etag: This checksum is computed by the server based on the value of other
|
192
194
|
fields, and may be sent on update and delete requests to ensure the
|
193
195
|
client has an up-to-date value before proceeding.
|
@@ -312,6 +314,10 @@ class _VMwareNodePoolState:
|
|
312
314
|
@property
|
313
315
|
@pulumi.getter(name="effectiveAnnotations")
|
314
316
|
def effective_annotations(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
317
|
+
"""
|
318
|
+
All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
|
319
|
+
Terraform, other clients and services.
|
320
|
+
"""
|
315
321
|
return pulumi.get(self, "effective_annotations")
|
316
322
|
|
317
323
|
@effective_annotations.setter
|
@@ -770,6 +776,8 @@ class VMwareNodePool(pulumi.CustomResource):
|
|
770
776
|
:param pulumi.Input[str] create_time: The time the cluster was created, in RFC3339 text format.
|
771
777
|
:param pulumi.Input[str] delete_time: The time the cluster was deleted, in RFC3339 text format.
|
772
778
|
:param pulumi.Input[str] display_name: The display name for the node pool.
|
779
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_annotations: All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
|
780
|
+
Terraform, other clients and services.
|
773
781
|
:param pulumi.Input[str] etag: This checksum is computed by the server based on the value of other
|
774
782
|
fields, and may be sent on update and delete requests to ensure the
|
775
783
|
client has an up-to-date value before proceeding.
|
@@ -861,6 +869,10 @@ class VMwareNodePool(pulumi.CustomResource):
|
|
861
869
|
@property
|
862
870
|
@pulumi.getter(name="effectiveAnnotations")
|
863
871
|
def effective_annotations(self) -> pulumi.Output[Mapping[str, str]]:
|
872
|
+
"""
|
873
|
+
All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
|
874
|
+
Terraform, other clients and services.
|
875
|
+
"""
|
864
876
|
return pulumi.get(self, "effective_annotations")
|
865
877
|
|
866
878
|
@property
|
@@ -24,7 +24,6 @@ class FolderSinkArgs:
|
|
24
24
|
exclusions: Optional[pulumi.Input[Sequence[pulumi.Input['FolderSinkExclusionArgs']]]] = None,
|
25
25
|
filter: Optional[pulumi.Input[str]] = None,
|
26
26
|
include_children: Optional[pulumi.Input[bool]] = None,
|
27
|
-
intercept_children: Optional[pulumi.Input[bool]] = None,
|
28
27
|
name: Optional[pulumi.Input[str]] = None):
|
29
28
|
"""
|
30
29
|
The set of arguments for constructing a FolderSink resource.
|
@@ -48,8 +47,6 @@ class FolderSinkArgs:
|
|
48
47
|
write a filter.
|
49
48
|
:param pulumi.Input[bool] include_children: Whether or not to include children folders in the sink export. If true, logs
|
50
49
|
associated with child projects are also exported; otherwise only logs relating to the provided folder are included.
|
51
|
-
:param pulumi.Input[bool] intercept_children: Whether or not to intercept logs from child projects. If true, matching logs will not match with sinks in child
|
52
|
-
resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
53
50
|
:param pulumi.Input[str] name: The name of the logging sink.
|
54
51
|
"""
|
55
52
|
pulumi.set(__self__, "destination", destination)
|
@@ -66,8 +63,6 @@ class FolderSinkArgs:
|
|
66
63
|
pulumi.set(__self__, "filter", filter)
|
67
64
|
if include_children is not None:
|
68
65
|
pulumi.set(__self__, "include_children", include_children)
|
69
|
-
if intercept_children is not None:
|
70
|
-
pulumi.set(__self__, "intercept_children", intercept_children)
|
71
66
|
if name is not None:
|
72
67
|
pulumi.set(__self__, "name", name)
|
73
68
|
|
@@ -179,19 +174,6 @@ class FolderSinkArgs:
|
|
179
174
|
def include_children(self, value: Optional[pulumi.Input[bool]]):
|
180
175
|
pulumi.set(self, "include_children", value)
|
181
176
|
|
182
|
-
@property
|
183
|
-
@pulumi.getter(name="interceptChildren")
|
184
|
-
def intercept_children(self) -> Optional[pulumi.Input[bool]]:
|
185
|
-
"""
|
186
|
-
Whether or not to intercept logs from child projects. If true, matching logs will not match with sinks in child
|
187
|
-
resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
188
|
-
"""
|
189
|
-
return pulumi.get(self, "intercept_children")
|
190
|
-
|
191
|
-
@intercept_children.setter
|
192
|
-
def intercept_children(self, value: Optional[pulumi.Input[bool]]):
|
193
|
-
pulumi.set(self, "intercept_children", value)
|
194
|
-
|
195
177
|
@property
|
196
178
|
@pulumi.getter
|
197
179
|
def name(self) -> Optional[pulumi.Input[str]]:
|
@@ -216,7 +198,6 @@ class _FolderSinkState:
|
|
216
198
|
filter: Optional[pulumi.Input[str]] = None,
|
217
199
|
folder: Optional[pulumi.Input[str]] = None,
|
218
200
|
include_children: Optional[pulumi.Input[bool]] = None,
|
219
|
-
intercept_children: Optional[pulumi.Input[bool]] = None,
|
220
201
|
name: Optional[pulumi.Input[str]] = None,
|
221
202
|
writer_identity: Optional[pulumi.Input[str]] = None):
|
222
203
|
"""
|
@@ -241,8 +222,6 @@ class _FolderSinkState:
|
|
241
222
|
accepted.
|
242
223
|
:param pulumi.Input[bool] include_children: Whether or not to include children folders in the sink export. If true, logs
|
243
224
|
associated with child projects are also exported; otherwise only logs relating to the provided folder are included.
|
244
|
-
:param pulumi.Input[bool] intercept_children: Whether or not to intercept logs from child projects. If true, matching logs will not match with sinks in child
|
245
|
-
resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
246
225
|
:param pulumi.Input[str] name: The name of the logging sink.
|
247
226
|
:param pulumi.Input[str] writer_identity: The identity associated with this sink. This identity must be granted write access to the
|
248
227
|
configured `destination`.
|
@@ -263,8 +242,6 @@ class _FolderSinkState:
|
|
263
242
|
pulumi.set(__self__, "folder", folder)
|
264
243
|
if include_children is not None:
|
265
244
|
pulumi.set(__self__, "include_children", include_children)
|
266
|
-
if intercept_children is not None:
|
267
|
-
pulumi.set(__self__, "intercept_children", intercept_children)
|
268
245
|
if name is not None:
|
269
246
|
pulumi.set(__self__, "name", name)
|
270
247
|
if writer_identity is not None:
|
@@ -378,19 +355,6 @@ class _FolderSinkState:
|
|
378
355
|
def include_children(self, value: Optional[pulumi.Input[bool]]):
|
379
356
|
pulumi.set(self, "include_children", value)
|
380
357
|
|
381
|
-
@property
|
382
|
-
@pulumi.getter(name="interceptChildren")
|
383
|
-
def intercept_children(self) -> Optional[pulumi.Input[bool]]:
|
384
|
-
"""
|
385
|
-
Whether or not to intercept logs from child projects. If true, matching logs will not match with sinks in child
|
386
|
-
resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
387
|
-
"""
|
388
|
-
return pulumi.get(self, "intercept_children")
|
389
|
-
|
390
|
-
@intercept_children.setter
|
391
|
-
def intercept_children(self, value: Optional[pulumi.Input[bool]]):
|
392
|
-
pulumi.set(self, "intercept_children", value)
|
393
|
-
|
394
358
|
@property
|
395
359
|
@pulumi.getter
|
396
360
|
def name(self) -> Optional[pulumi.Input[str]]:
|
@@ -430,7 +394,6 @@ class FolderSink(pulumi.CustomResource):
|
|
430
394
|
filter: Optional[pulumi.Input[str]] = None,
|
431
395
|
folder: Optional[pulumi.Input[str]] = None,
|
432
396
|
include_children: Optional[pulumi.Input[bool]] = None,
|
433
|
-
intercept_children: Optional[pulumi.Input[bool]] = None,
|
434
397
|
name: Optional[pulumi.Input[str]] = None,
|
435
398
|
__props__=None):
|
436
399
|
"""
|
@@ -497,8 +460,6 @@ class FolderSink(pulumi.CustomResource):
|
|
497
460
|
accepted.
|
498
461
|
:param pulumi.Input[bool] include_children: Whether or not to include children folders in the sink export. If true, logs
|
499
462
|
associated with child projects are also exported; otherwise only logs relating to the provided folder are included.
|
500
|
-
:param pulumi.Input[bool] intercept_children: Whether or not to intercept logs from child projects. If true, matching logs will not match with sinks in child
|
501
|
-
resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
502
463
|
:param pulumi.Input[str] name: The name of the logging sink.
|
503
464
|
"""
|
504
465
|
...
|
@@ -572,7 +533,6 @@ class FolderSink(pulumi.CustomResource):
|
|
572
533
|
filter: Optional[pulumi.Input[str]] = None,
|
573
534
|
folder: Optional[pulumi.Input[str]] = None,
|
574
535
|
include_children: Optional[pulumi.Input[bool]] = None,
|
575
|
-
intercept_children: Optional[pulumi.Input[bool]] = None,
|
576
536
|
name: Optional[pulumi.Input[str]] = None,
|
577
537
|
__props__=None):
|
578
538
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
@@ -595,7 +555,6 @@ class FolderSink(pulumi.CustomResource):
|
|
595
555
|
raise TypeError("Missing required property 'folder'")
|
596
556
|
__props__.__dict__["folder"] = folder
|
597
557
|
__props__.__dict__["include_children"] = include_children
|
598
|
-
__props__.__dict__["intercept_children"] = intercept_children
|
599
558
|
__props__.__dict__["name"] = name
|
600
559
|
__props__.__dict__["writer_identity"] = None
|
601
560
|
super(FolderSink, __self__).__init__(
|
@@ -616,7 +575,6 @@ class FolderSink(pulumi.CustomResource):
|
|
616
575
|
filter: Optional[pulumi.Input[str]] = None,
|
617
576
|
folder: Optional[pulumi.Input[str]] = None,
|
618
577
|
include_children: Optional[pulumi.Input[bool]] = None,
|
619
|
-
intercept_children: Optional[pulumi.Input[bool]] = None,
|
620
578
|
name: Optional[pulumi.Input[str]] = None,
|
621
579
|
writer_identity: Optional[pulumi.Input[str]] = None) -> 'FolderSink':
|
622
580
|
"""
|
@@ -646,8 +604,6 @@ class FolderSink(pulumi.CustomResource):
|
|
646
604
|
accepted.
|
647
605
|
:param pulumi.Input[bool] include_children: Whether or not to include children folders in the sink export. If true, logs
|
648
606
|
associated with child projects are also exported; otherwise only logs relating to the provided folder are included.
|
649
|
-
:param pulumi.Input[bool] intercept_children: Whether or not to intercept logs from child projects. If true, matching logs will not match with sinks in child
|
650
|
-
resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
651
607
|
:param pulumi.Input[str] name: The name of the logging sink.
|
652
608
|
:param pulumi.Input[str] writer_identity: The identity associated with this sink. This identity must be granted write access to the
|
653
609
|
configured `destination`.
|
@@ -664,7 +620,6 @@ class FolderSink(pulumi.CustomResource):
|
|
664
620
|
__props__.__dict__["filter"] = filter
|
665
621
|
__props__.__dict__["folder"] = folder
|
666
622
|
__props__.__dict__["include_children"] = include_children
|
667
|
-
__props__.__dict__["intercept_children"] = intercept_children
|
668
623
|
__props__.__dict__["name"] = name
|
669
624
|
__props__.__dict__["writer_identity"] = writer_identity
|
670
625
|
return FolderSink(resource_name, opts=opts, __props__=__props__)
|
@@ -745,15 +700,6 @@ class FolderSink(pulumi.CustomResource):
|
|
745
700
|
"""
|
746
701
|
return pulumi.get(self, "include_children")
|
747
702
|
|
748
|
-
@property
|
749
|
-
@pulumi.getter(name="interceptChildren")
|
750
|
-
def intercept_children(self) -> pulumi.Output[Optional[bool]]:
|
751
|
-
"""
|
752
|
-
Whether or not to intercept logs from child projects. If true, matching logs will not match with sinks in child
|
753
|
-
resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
754
|
-
"""
|
755
|
-
return pulumi.get(self, "intercept_children")
|
756
|
-
|
757
703
|
@property
|
758
704
|
@pulumi.getter
|
759
705
|
def name(self) -> pulumi.Output[str]:
|
@@ -24,7 +24,6 @@ class OrganizationSinkArgs:
|
|
24
24
|
exclusions: Optional[pulumi.Input[Sequence[pulumi.Input['OrganizationSinkExclusionArgs']]]] = None,
|
25
25
|
filter: Optional[pulumi.Input[str]] = None,
|
26
26
|
include_children: Optional[pulumi.Input[bool]] = None,
|
27
|
-
intercept_children: Optional[pulumi.Input[bool]] = None,
|
28
27
|
name: Optional[pulumi.Input[str]] = None):
|
29
28
|
"""
|
30
29
|
The set of arguments for constructing a OrganizationSink resource.
|
@@ -47,8 +46,6 @@ class OrganizationSinkArgs:
|
|
47
46
|
write a filter.
|
48
47
|
:param pulumi.Input[bool] include_children: Whether or not to include children organizations in the sink export. If true, logs
|
49
48
|
associated with child projects are also exported; otherwise only logs relating to the provided organization are included.
|
50
|
-
:param pulumi.Input[bool] intercept_children: Whether or not to intercept logs from child projects. If true, matching logs will not match with sinks in child
|
51
|
-
resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
52
49
|
:param pulumi.Input[str] name: The name of the logging sink.
|
53
50
|
"""
|
54
51
|
pulumi.set(__self__, "destination", destination)
|
@@ -65,8 +62,6 @@ class OrganizationSinkArgs:
|
|
65
62
|
pulumi.set(__self__, "filter", filter)
|
66
63
|
if include_children is not None:
|
67
64
|
pulumi.set(__self__, "include_children", include_children)
|
68
|
-
if intercept_children is not None:
|
69
|
-
pulumi.set(__self__, "intercept_children", intercept_children)
|
70
65
|
if name is not None:
|
71
66
|
pulumi.set(__self__, "name", name)
|
72
67
|
|
@@ -177,19 +172,6 @@ class OrganizationSinkArgs:
|
|
177
172
|
def include_children(self, value: Optional[pulumi.Input[bool]]):
|
178
173
|
pulumi.set(self, "include_children", value)
|
179
174
|
|
180
|
-
@property
|
181
|
-
@pulumi.getter(name="interceptChildren")
|
182
|
-
def intercept_children(self) -> Optional[pulumi.Input[bool]]:
|
183
|
-
"""
|
184
|
-
Whether or not to intercept logs from child projects. If true, matching logs will not match with sinks in child
|
185
|
-
resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
186
|
-
"""
|
187
|
-
return pulumi.get(self, "intercept_children")
|
188
|
-
|
189
|
-
@intercept_children.setter
|
190
|
-
def intercept_children(self, value: Optional[pulumi.Input[bool]]):
|
191
|
-
pulumi.set(self, "intercept_children", value)
|
192
|
-
|
193
175
|
@property
|
194
176
|
@pulumi.getter
|
195
177
|
def name(self) -> Optional[pulumi.Input[str]]:
|
@@ -213,7 +195,6 @@ class _OrganizationSinkState:
|
|
213
195
|
exclusions: Optional[pulumi.Input[Sequence[pulumi.Input['OrganizationSinkExclusionArgs']]]] = None,
|
214
196
|
filter: Optional[pulumi.Input[str]] = None,
|
215
197
|
include_children: Optional[pulumi.Input[bool]] = None,
|
216
|
-
intercept_children: Optional[pulumi.Input[bool]] = None,
|
217
198
|
name: Optional[pulumi.Input[str]] = None,
|
218
199
|
org_id: Optional[pulumi.Input[str]] = None,
|
219
200
|
writer_identity: Optional[pulumi.Input[str]] = None):
|
@@ -237,8 +218,6 @@ class _OrganizationSinkState:
|
|
237
218
|
write a filter.
|
238
219
|
:param pulumi.Input[bool] include_children: Whether or not to include children organizations in the sink export. If true, logs
|
239
220
|
associated with child projects are also exported; otherwise only logs relating to the provided organization are included.
|
240
|
-
:param pulumi.Input[bool] intercept_children: Whether or not to intercept logs from child projects. If true, matching logs will not match with sinks in child
|
241
|
-
resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
242
221
|
:param pulumi.Input[str] name: The name of the logging sink.
|
243
222
|
:param pulumi.Input[str] org_id: The numeric ID of the organization to be exported to the sink.
|
244
223
|
:param pulumi.Input[str] writer_identity: The identity associated with this sink. This identity must be granted write access to the
|
@@ -258,8 +237,6 @@ class _OrganizationSinkState:
|
|
258
237
|
pulumi.set(__self__, "filter", filter)
|
259
238
|
if include_children is not None:
|
260
239
|
pulumi.set(__self__, "include_children", include_children)
|
261
|
-
if intercept_children is not None:
|
262
|
-
pulumi.set(__self__, "intercept_children", intercept_children)
|
263
240
|
if name is not None:
|
264
241
|
pulumi.set(__self__, "name", name)
|
265
242
|
if org_id is not None:
|
@@ -362,19 +339,6 @@ class _OrganizationSinkState:
|
|
362
339
|
def include_children(self, value: Optional[pulumi.Input[bool]]):
|
363
340
|
pulumi.set(self, "include_children", value)
|
364
341
|
|
365
|
-
@property
|
366
|
-
@pulumi.getter(name="interceptChildren")
|
367
|
-
def intercept_children(self) -> Optional[pulumi.Input[bool]]:
|
368
|
-
"""
|
369
|
-
Whether or not to intercept logs from child projects. If true, matching logs will not match with sinks in child
|
370
|
-
resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
371
|
-
"""
|
372
|
-
return pulumi.get(self, "intercept_children")
|
373
|
-
|
374
|
-
@intercept_children.setter
|
375
|
-
def intercept_children(self, value: Optional[pulumi.Input[bool]]):
|
376
|
-
pulumi.set(self, "intercept_children", value)
|
377
|
-
|
378
342
|
@property
|
379
343
|
@pulumi.getter
|
380
344
|
def name(self) -> Optional[pulumi.Input[str]]:
|
@@ -425,7 +389,6 @@ class OrganizationSink(pulumi.CustomResource):
|
|
425
389
|
exclusions: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OrganizationSinkExclusionArgs']]]]] = None,
|
426
390
|
filter: Optional[pulumi.Input[str]] = None,
|
427
391
|
include_children: Optional[pulumi.Input[bool]] = None,
|
428
|
-
intercept_children: Optional[pulumi.Input[bool]] = None,
|
429
392
|
name: Optional[pulumi.Input[str]] = None,
|
430
393
|
org_id: Optional[pulumi.Input[str]] = None,
|
431
394
|
__props__=None):
|
@@ -488,8 +451,6 @@ class OrganizationSink(pulumi.CustomResource):
|
|
488
451
|
write a filter.
|
489
452
|
:param pulumi.Input[bool] include_children: Whether or not to include children organizations in the sink export. If true, logs
|
490
453
|
associated with child projects are also exported; otherwise only logs relating to the provided organization are included.
|
491
|
-
:param pulumi.Input[bool] intercept_children: Whether or not to intercept logs from child projects. If true, matching logs will not match with sinks in child
|
492
|
-
resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
493
454
|
:param pulumi.Input[str] name: The name of the logging sink.
|
494
455
|
:param pulumi.Input[str] org_id: The numeric ID of the organization to be exported to the sink.
|
495
456
|
"""
|
@@ -560,7 +521,6 @@ class OrganizationSink(pulumi.CustomResource):
|
|
560
521
|
exclusions: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OrganizationSinkExclusionArgs']]]]] = None,
|
561
522
|
filter: Optional[pulumi.Input[str]] = None,
|
562
523
|
include_children: Optional[pulumi.Input[bool]] = None,
|
563
|
-
intercept_children: Optional[pulumi.Input[bool]] = None,
|
564
524
|
name: Optional[pulumi.Input[str]] = None,
|
565
525
|
org_id: Optional[pulumi.Input[str]] = None,
|
566
526
|
__props__=None):
|
@@ -581,7 +541,6 @@ class OrganizationSink(pulumi.CustomResource):
|
|
581
541
|
__props__.__dict__["exclusions"] = exclusions
|
582
542
|
__props__.__dict__["filter"] = filter
|
583
543
|
__props__.__dict__["include_children"] = include_children
|
584
|
-
__props__.__dict__["intercept_children"] = intercept_children
|
585
544
|
__props__.__dict__["name"] = name
|
586
545
|
if org_id is None and not opts.urn:
|
587
546
|
raise TypeError("Missing required property 'org_id'")
|
@@ -604,7 +563,6 @@ class OrganizationSink(pulumi.CustomResource):
|
|
604
563
|
exclusions: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OrganizationSinkExclusionArgs']]]]] = None,
|
605
564
|
filter: Optional[pulumi.Input[str]] = None,
|
606
565
|
include_children: Optional[pulumi.Input[bool]] = None,
|
607
|
-
intercept_children: Optional[pulumi.Input[bool]] = None,
|
608
566
|
name: Optional[pulumi.Input[str]] = None,
|
609
567
|
org_id: Optional[pulumi.Input[str]] = None,
|
610
568
|
writer_identity: Optional[pulumi.Input[str]] = None) -> 'OrganizationSink':
|
@@ -633,8 +591,6 @@ class OrganizationSink(pulumi.CustomResource):
|
|
633
591
|
write a filter.
|
634
592
|
:param pulumi.Input[bool] include_children: Whether or not to include children organizations in the sink export. If true, logs
|
635
593
|
associated with child projects are also exported; otherwise only logs relating to the provided organization are included.
|
636
|
-
:param pulumi.Input[bool] intercept_children: Whether or not to intercept logs from child projects. If true, matching logs will not match with sinks in child
|
637
|
-
resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
638
594
|
:param pulumi.Input[str] name: The name of the logging sink.
|
639
595
|
:param pulumi.Input[str] org_id: The numeric ID of the organization to be exported to the sink.
|
640
596
|
:param pulumi.Input[str] writer_identity: The identity associated with this sink. This identity must be granted write access to the
|
@@ -651,7 +607,6 @@ class OrganizationSink(pulumi.CustomResource):
|
|
651
607
|
__props__.__dict__["exclusions"] = exclusions
|
652
608
|
__props__.__dict__["filter"] = filter
|
653
609
|
__props__.__dict__["include_children"] = include_children
|
654
|
-
__props__.__dict__["intercept_children"] = intercept_children
|
655
610
|
__props__.__dict__["name"] = name
|
656
611
|
__props__.__dict__["org_id"] = org_id
|
657
612
|
__props__.__dict__["writer_identity"] = writer_identity
|
@@ -724,15 +679,6 @@ class OrganizationSink(pulumi.CustomResource):
|
|
724
679
|
"""
|
725
680
|
return pulumi.get(self, "include_children")
|
726
681
|
|
727
|
-
@property
|
728
|
-
@pulumi.getter(name="interceptChildren")
|
729
|
-
def intercept_children(self) -> pulumi.Output[Optional[bool]]:
|
730
|
-
"""
|
731
|
-
Whether or not to intercept logs from child projects. If true, matching logs will not match with sinks in child
|
732
|
-
resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
733
|
-
"""
|
734
|
-
return pulumi.get(self, "intercept_children")
|
735
|
-
|
736
682
|
@property
|
737
683
|
@pulumi.getter
|
738
684
|
def name(self) -> pulumi.Output[str]:
|
pulumi_gcp/monitoring/_inputs.py
CHANGED
@@ -60,7 +60,6 @@ __all__ = [
|
|
60
60
|
'UptimeCheckConfigHttpCheckAcceptedResponseStatusCodeArgs',
|
61
61
|
'UptimeCheckConfigHttpCheckAuthInfoArgs',
|
62
62
|
'UptimeCheckConfigHttpCheckPingConfigArgs',
|
63
|
-
'UptimeCheckConfigHttpCheckServiceAgentAuthenticationArgs',
|
64
63
|
'UptimeCheckConfigMonitoredResourceArgs',
|
65
64
|
'UptimeCheckConfigResourceGroupArgs',
|
66
65
|
'UptimeCheckConfigSyntheticMonitorArgs',
|
@@ -3723,13 +3722,12 @@ class UptimeCheckConfigHttpCheckArgs:
|
|
3723
3722
|
ping_config: Optional[pulumi.Input['UptimeCheckConfigHttpCheckPingConfigArgs']] = None,
|
3724
3723
|
port: Optional[pulumi.Input[int]] = None,
|
3725
3724
|
request_method: Optional[pulumi.Input[str]] = None,
|
3726
|
-
service_agent_authentication: Optional[pulumi.Input['UptimeCheckConfigHttpCheckServiceAgentAuthenticationArgs']] = None,
|
3727
3725
|
use_ssl: Optional[pulumi.Input[bool]] = None,
|
3728
3726
|
validate_ssl: Optional[pulumi.Input[bool]] = None):
|
3729
3727
|
"""
|
3730
3728
|
:param pulumi.Input[Sequence[pulumi.Input['UptimeCheckConfigHttpCheckAcceptedResponseStatusCodeArgs']]] accepted_response_status_codes: If present, the check will only pass if the HTTP response status code is in this set of status codes. If empty, the HTTP status code will only pass if the HTTP status code is 200-299.
|
3731
3729
|
Structure is documented below.
|
3732
|
-
:param pulumi.Input['UptimeCheckConfigHttpCheckAuthInfoArgs'] auth_info: The authentication information
|
3730
|
+
:param pulumi.Input['UptimeCheckConfigHttpCheckAuthInfoArgs'] auth_info: The authentication information. Optional when creating an HTTP check; defaults to empty.
|
3733
3731
|
Structure is documented below.
|
3734
3732
|
:param pulumi.Input[str] body: The request body associated with the HTTP POST request. If `content_type` is `URL_ENCODED`, the body passed in must be URL-encoded. Users can provide a `Content-Length` header via the `headers` field or the API will do so. If the `request_method` is `GET` and `body` is not empty, the API will return an error. The maximum byte size is 1 megabyte. Note - As with all bytes fields JSON representations are base64 encoded. e.g. `foo=bar` in URL-encoded form is `foo%3Dbar` and in base64 encoding is `Zm9vJTI1M0RiYXI=`.
|
3735
3733
|
:param pulumi.Input[str] content_type: The content type to use for the check.
|
@@ -3744,8 +3742,6 @@ class UptimeCheckConfigHttpCheckArgs:
|
|
3744
3742
|
:param pulumi.Input[str] request_method: The HTTP request method to use for the check. If set to `METHOD_UNSPECIFIED` then `request_method` defaults to `GET`.
|
3745
3743
|
Default value is `GET`.
|
3746
3744
|
Possible values are: `METHOD_UNSPECIFIED`, `GET`, `POST`.
|
3747
|
-
:param pulumi.Input['UptimeCheckConfigHttpCheckServiceAgentAuthenticationArgs'] service_agent_authentication: The authentication information using the Monitoring Service Agent. Optional when creating an HTTPS check; defaults to empty. Do not use with other authentication fields.
|
3748
|
-
Structure is documented below.
|
3749
3745
|
:param pulumi.Input[bool] use_ssl: If true, use HTTPS instead of HTTP to run the check.
|
3750
3746
|
:param pulumi.Input[bool] validate_ssl: Boolean specifying whether to include SSL certificate validation as a part of the Uptime check. Only applies to checks where `monitored_resource` is set to `uptime_url`. If `use_ssl` is `false`, setting `validate_ssl` to `true` has no effect.
|
3751
3747
|
"""
|
@@ -3771,8 +3767,6 @@ class UptimeCheckConfigHttpCheckArgs:
|
|
3771
3767
|
pulumi.set(__self__, "port", port)
|
3772
3768
|
if request_method is not None:
|
3773
3769
|
pulumi.set(__self__, "request_method", request_method)
|
3774
|
-
if service_agent_authentication is not None:
|
3775
|
-
pulumi.set(__self__, "service_agent_authentication", service_agent_authentication)
|
3776
3770
|
if use_ssl is not None:
|
3777
3771
|
pulumi.set(__self__, "use_ssl", use_ssl)
|
3778
3772
|
if validate_ssl is not None:
|
@@ -3795,7 +3789,7 @@ class UptimeCheckConfigHttpCheckArgs:
|
|
3795
3789
|
@pulumi.getter(name="authInfo")
|
3796
3790
|
def auth_info(self) -> Optional[pulumi.Input['UptimeCheckConfigHttpCheckAuthInfoArgs']]:
|
3797
3791
|
"""
|
3798
|
-
The authentication information
|
3792
|
+
The authentication information. Optional when creating an HTTP check; defaults to empty.
|
3799
3793
|
Structure is documented below.
|
3800
3794
|
"""
|
3801
3795
|
return pulumi.get(self, "auth_info")
|
@@ -3916,19 +3910,6 @@ class UptimeCheckConfigHttpCheckArgs:
|
|
3916
3910
|
def request_method(self, value: Optional[pulumi.Input[str]]):
|
3917
3911
|
pulumi.set(self, "request_method", value)
|
3918
3912
|
|
3919
|
-
@property
|
3920
|
-
@pulumi.getter(name="serviceAgentAuthentication")
|
3921
|
-
def service_agent_authentication(self) -> Optional[pulumi.Input['UptimeCheckConfigHttpCheckServiceAgentAuthenticationArgs']]:
|
3922
|
-
"""
|
3923
|
-
The authentication information using the Monitoring Service Agent. Optional when creating an HTTPS check; defaults to empty. Do not use with other authentication fields.
|
3924
|
-
Structure is documented below.
|
3925
|
-
"""
|
3926
|
-
return pulumi.get(self, "service_agent_authentication")
|
3927
|
-
|
3928
|
-
@service_agent_authentication.setter
|
3929
|
-
def service_agent_authentication(self, value: Optional[pulumi.Input['UptimeCheckConfigHttpCheckServiceAgentAuthenticationArgs']]):
|
3930
|
-
pulumi.set(self, "service_agent_authentication", value)
|
3931
|
-
|
3932
3913
|
@property
|
3933
3914
|
@pulumi.getter(name="useSsl")
|
3934
3915
|
def use_ssl(self) -> Optional[pulumi.Input[bool]]:
|
@@ -4056,31 +4037,6 @@ class UptimeCheckConfigHttpCheckPingConfigArgs:
|
|
4056
4037
|
pulumi.set(self, "pings_count", value)
|
4057
4038
|
|
4058
4039
|
|
4059
|
-
@pulumi.input_type
|
4060
|
-
class UptimeCheckConfigHttpCheckServiceAgentAuthenticationArgs:
|
4061
|
-
def __init__(__self__, *,
|
4062
|
-
type: Optional[pulumi.Input[str]] = None):
|
4063
|
-
"""
|
4064
|
-
:param pulumi.Input[str] type: The type of authentication to use.
|
4065
|
-
Possible values are: `SERVICE_AGENT_AUTHENTICATION_TYPE_UNSPECIFIED`, `OIDC_TOKEN`.
|
4066
|
-
"""
|
4067
|
-
if type is not None:
|
4068
|
-
pulumi.set(__self__, "type", type)
|
4069
|
-
|
4070
|
-
@property
|
4071
|
-
@pulumi.getter
|
4072
|
-
def type(self) -> Optional[pulumi.Input[str]]:
|
4073
|
-
"""
|
4074
|
-
The type of authentication to use.
|
4075
|
-
Possible values are: `SERVICE_AGENT_AUTHENTICATION_TYPE_UNSPECIFIED`, `OIDC_TOKEN`.
|
4076
|
-
"""
|
4077
|
-
return pulumi.get(self, "type")
|
4078
|
-
|
4079
|
-
@type.setter
|
4080
|
-
def type(self, value: Optional[pulumi.Input[str]]):
|
4081
|
-
pulumi.set(self, "type", value)
|
4082
|
-
|
4083
|
-
|
4084
4040
|
@pulumi.input_type
|
4085
4041
|
class UptimeCheckConfigMonitoredResourceArgs:
|
4086
4042
|
def __init__(__self__, *,
|
pulumi_gcp/monitoring/outputs.py
CHANGED
@@ -61,7 +61,6 @@ __all__ = [
|
|
61
61
|
'UptimeCheckConfigHttpCheckAcceptedResponseStatusCode',
|
62
62
|
'UptimeCheckConfigHttpCheckAuthInfo',
|
63
63
|
'UptimeCheckConfigHttpCheckPingConfig',
|
64
|
-
'UptimeCheckConfigHttpCheckServiceAgentAuthentication',
|
65
64
|
'UptimeCheckConfigMonitoredResource',
|
66
65
|
'UptimeCheckConfigResourceGroup',
|
67
66
|
'UptimeCheckConfigSyntheticMonitor',
|
@@ -3826,8 +3825,6 @@ class UptimeCheckConfigHttpCheck(dict):
|
|
3826
3825
|
suggest = "ping_config"
|
3827
3826
|
elif key == "requestMethod":
|
3828
3827
|
suggest = "request_method"
|
3829
|
-
elif key == "serviceAgentAuthentication":
|
3830
|
-
suggest = "service_agent_authentication"
|
3831
3828
|
elif key == "useSsl":
|
3832
3829
|
suggest = "use_ssl"
|
3833
3830
|
elif key == "validateSsl":
|
@@ -3856,13 +3853,12 @@ class UptimeCheckConfigHttpCheck(dict):
|
|
3856
3853
|
ping_config: Optional['outputs.UptimeCheckConfigHttpCheckPingConfig'] = None,
|
3857
3854
|
port: Optional[int] = None,
|
3858
3855
|
request_method: Optional[str] = None,
|
3859
|
-
service_agent_authentication: Optional['outputs.UptimeCheckConfigHttpCheckServiceAgentAuthentication'] = None,
|
3860
3856
|
use_ssl: Optional[bool] = None,
|
3861
3857
|
validate_ssl: Optional[bool] = None):
|
3862
3858
|
"""
|
3863
3859
|
:param Sequence['UptimeCheckConfigHttpCheckAcceptedResponseStatusCodeArgs'] accepted_response_status_codes: If present, the check will only pass if the HTTP response status code is in this set of status codes. If empty, the HTTP status code will only pass if the HTTP status code is 200-299.
|
3864
3860
|
Structure is documented below.
|
3865
|
-
:param 'UptimeCheckConfigHttpCheckAuthInfoArgs' auth_info: The authentication information
|
3861
|
+
:param 'UptimeCheckConfigHttpCheckAuthInfoArgs' auth_info: The authentication information. Optional when creating an HTTP check; defaults to empty.
|
3866
3862
|
Structure is documented below.
|
3867
3863
|
:param str body: The request body associated with the HTTP POST request. If `content_type` is `URL_ENCODED`, the body passed in must be URL-encoded. Users can provide a `Content-Length` header via the `headers` field or the API will do so. If the `request_method` is `GET` and `body` is not empty, the API will return an error. The maximum byte size is 1 megabyte. Note - As with all bytes fields JSON representations are base64 encoded. e.g. `foo=bar` in URL-encoded form is `foo%3Dbar` and in base64 encoding is `Zm9vJTI1M0RiYXI=`.
|
3868
3864
|
:param str content_type: The content type to use for the check.
|
@@ -3877,8 +3873,6 @@ class UptimeCheckConfigHttpCheck(dict):
|
|
3877
3873
|
:param str request_method: The HTTP request method to use for the check. If set to `METHOD_UNSPECIFIED` then `request_method` defaults to `GET`.
|
3878
3874
|
Default value is `GET`.
|
3879
3875
|
Possible values are: `METHOD_UNSPECIFIED`, `GET`, `POST`.
|
3880
|
-
:param 'UptimeCheckConfigHttpCheckServiceAgentAuthenticationArgs' service_agent_authentication: The authentication information using the Monitoring Service Agent. Optional when creating an HTTPS check; defaults to empty. Do not use with other authentication fields.
|
3881
|
-
Structure is documented below.
|
3882
3876
|
:param bool use_ssl: If true, use HTTPS instead of HTTP to run the check.
|
3883
3877
|
:param bool validate_ssl: Boolean specifying whether to include SSL certificate validation as a part of the Uptime check. Only applies to checks where `monitored_resource` is set to `uptime_url`. If `use_ssl` is `false`, setting `validate_ssl` to `true` has no effect.
|
3884
3878
|
"""
|
@@ -3904,8 +3898,6 @@ class UptimeCheckConfigHttpCheck(dict):
|
|
3904
3898
|
pulumi.set(__self__, "port", port)
|
3905
3899
|
if request_method is not None:
|
3906
3900
|
pulumi.set(__self__, "request_method", request_method)
|
3907
|
-
if service_agent_authentication is not None:
|
3908
|
-
pulumi.set(__self__, "service_agent_authentication", service_agent_authentication)
|
3909
3901
|
if use_ssl is not None:
|
3910
3902
|
pulumi.set(__self__, "use_ssl", use_ssl)
|
3911
3903
|
if validate_ssl is not None:
|
@@ -3924,7 +3916,7 @@ class UptimeCheckConfigHttpCheck(dict):
|
|
3924
3916
|
@pulumi.getter(name="authInfo")
|
3925
3917
|
def auth_info(self) -> Optional['outputs.UptimeCheckConfigHttpCheckAuthInfo']:
|
3926
3918
|
"""
|
3927
|
-
The authentication information
|
3919
|
+
The authentication information. Optional when creating an HTTP check; defaults to empty.
|
3928
3920
|
Structure is documented below.
|
3929
3921
|
"""
|
3930
3922
|
return pulumi.get(self, "auth_info")
|
@@ -4005,15 +3997,6 @@ class UptimeCheckConfigHttpCheck(dict):
|
|
4005
3997
|
"""
|
4006
3998
|
return pulumi.get(self, "request_method")
|
4007
3999
|
|
4008
|
-
@property
|
4009
|
-
@pulumi.getter(name="serviceAgentAuthentication")
|
4010
|
-
def service_agent_authentication(self) -> Optional['outputs.UptimeCheckConfigHttpCheckServiceAgentAuthentication']:
|
4011
|
-
"""
|
4012
|
-
The authentication information using the Monitoring Service Agent. Optional when creating an HTTPS check; defaults to empty. Do not use with other authentication fields.
|
4013
|
-
Structure is documented below.
|
4014
|
-
"""
|
4015
|
-
return pulumi.get(self, "service_agent_authentication")
|
4016
|
-
|
4017
4000
|
@property
|
4018
4001
|
@pulumi.getter(name="useSsl")
|
4019
4002
|
def use_ssl(self) -> Optional[bool]:
|
@@ -4149,27 +4132,6 @@ class UptimeCheckConfigHttpCheckPingConfig(dict):
|
|
4149
4132
|
return pulumi.get(self, "pings_count")
|
4150
4133
|
|
4151
4134
|
|
4152
|
-
@pulumi.output_type
|
4153
|
-
class UptimeCheckConfigHttpCheckServiceAgentAuthentication(dict):
|
4154
|
-
def __init__(__self__, *,
|
4155
|
-
type: Optional[str] = None):
|
4156
|
-
"""
|
4157
|
-
:param str type: The type of authentication to use.
|
4158
|
-
Possible values are: `SERVICE_AGENT_AUTHENTICATION_TYPE_UNSPECIFIED`, `OIDC_TOKEN`.
|
4159
|
-
"""
|
4160
|
-
if type is not None:
|
4161
|
-
pulumi.set(__self__, "type", type)
|
4162
|
-
|
4163
|
-
@property
|
4164
|
-
@pulumi.getter
|
4165
|
-
def type(self) -> Optional[str]:
|
4166
|
-
"""
|
4167
|
-
The type of authentication to use.
|
4168
|
-
Possible values are: `SERVICE_AGENT_AUTHENTICATION_TYPE_UNSPECIFIED`, `OIDC_TOKEN`.
|
4169
|
-
"""
|
4170
|
-
return pulumi.get(self, "type")
|
4171
|
-
|
4172
|
-
|
4173
4135
|
@pulumi.output_type
|
4174
4136
|
class UptimeCheckConfigMonitoredResource(dict):
|
4175
4137
|
def __init__(__self__, *,
|
@@ -655,9 +655,6 @@ class UptimeCheckConfig(pulumi.CustomResource):
|
|
655
655
|
port=443,
|
656
656
|
use_ssl=True,
|
657
657
|
validate_ssl=True,
|
658
|
-
service_agent_authentication=gcp.monitoring.UptimeCheckConfigHttpCheckServiceAgentAuthenticationArgs(
|
659
|
-
type="OIDC_TOKEN",
|
660
|
-
),
|
661
658
|
),
|
662
659
|
monitored_resource=gcp.monitoring.UptimeCheckConfigMonitoredResourceArgs(
|
663
660
|
type="uptime_url",
|
@@ -896,9 +893,6 @@ class UptimeCheckConfig(pulumi.CustomResource):
|
|
896
893
|
port=443,
|
897
894
|
use_ssl=True,
|
898
895
|
validate_ssl=True,
|
899
|
-
service_agent_authentication=gcp.monitoring.UptimeCheckConfigHttpCheckServiceAgentAuthenticationArgs(
|
900
|
-
type="OIDC_TOKEN",
|
901
|
-
),
|
902
896
|
),
|
903
897
|
monitored_resource=gcp.monitoring.UptimeCheckConfigMonitoredResourceArgs(
|
904
898
|
type="uptime_url",
|