pulumi-gcp 7.21.0a1714565535__py3-none-any.whl → 7.21.0a1714768411__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 +40 -0
- pulumi_gcp/alloydb/_inputs.py +74 -0
- pulumi_gcp/alloydb/instance.py +90 -0
- pulumi_gcp/alloydb/outputs.py +98 -0
- pulumi_gcp/apigee/environment.py +47 -0
- pulumi_gcp/applicationintegration/__init__.py +1 -0
- pulumi_gcp/applicationintegration/_inputs.py +843 -0
- pulumi_gcp/applicationintegration/auth_config.py +998 -0
- pulumi_gcp/applicationintegration/outputs.py +891 -0
- pulumi_gcp/bigquerydatapolicy/_inputs.py +21 -4
- pulumi_gcp/bigquerydatapolicy/data_policy.py +78 -0
- pulumi_gcp/bigquerydatapolicy/outputs.py +16 -3
- pulumi_gcp/certificateauthority/_inputs.py +92 -12
- pulumi_gcp/certificateauthority/authority.py +110 -0
- pulumi_gcp/certificateauthority/certificate.py +176 -0
- pulumi_gcp/certificateauthority/outputs.py +144 -12
- pulumi_gcp/composer/__init__.py +1 -0
- pulumi_gcp/composer/user_workloads_secret.py +441 -0
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +121 -58
- pulumi_gcp/compute/global_forwarding_rule.py +0 -282
- pulumi_gcp/compute/outputs.py +120 -57
- pulumi_gcp/compute/region_target_https_proxy.py +257 -0
- pulumi_gcp/compute/region_url_map.py +0 -470
- pulumi_gcp/compute/security_policy_rule.py +850 -0
- pulumi_gcp/dataloss/__init__.py +1 -0
- pulumi_gcp/dataloss/_inputs.py +1040 -0
- pulumi_gcp/dataloss/outputs.py +1123 -0
- pulumi_gcp/dataloss/prevention_discovery_config.py +737 -0
- pulumi_gcp/dns/_inputs.py +2 -2
- pulumi_gcp/dns/outputs.py +2 -2
- pulumi_gcp/dns/record_set.py +2 -2
- pulumi_gcp/filestore/get_instance.py +11 -1
- pulumi_gcp/filestore/instance.py +101 -0
- pulumi_gcp/firebase/_inputs.py +16 -0
- pulumi_gcp/firebase/app_check_play_integrity_config.py +20 -0
- pulumi_gcp/firebase/app_check_recaptcha_enterprise_config.py +10 -0
- pulumi_gcp/firebase/hosting_version.py +44 -0
- pulumi_gcp/firebase/outputs.py +12 -0
- pulumi_gcp/logging/folder_sink.py +54 -0
- pulumi_gcp/logging/organization_sink.py +54 -0
- pulumi_gcp/monitoring/_inputs.py +46 -2
- pulumi_gcp/monitoring/outputs.py +40 -2
- pulumi_gcp/monitoring/uptime_check_config.py +6 -0
- pulumi_gcp/networkconnectivity/__init__.py +1 -0
- pulumi_gcp/networkconnectivity/internal_range.py +1024 -0
- pulumi_gcp/secretmanager/get_secret.py +13 -3
- pulumi_gcp/secretmanager/outputs.py +20 -1
- pulumi_gcp/secretmanager/secret.py +90 -3
- pulumi_gcp/storage/__init__.py +1 -0
- pulumi_gcp/storage/get_bucket_objects.py +153 -0
- pulumi_gcp/storage/outputs.py +63 -0
- {pulumi_gcp-7.21.0a1714565535.dist-info → pulumi_gcp-7.21.0a1714768411.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.21.0a1714565535.dist-info → pulumi_gcp-7.21.0a1714768411.dist-info}/RECORD +56 -50
- {pulumi_gcp-7.21.0a1714565535.dist-info → pulumi_gcp-7.21.0a1714768411.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.21.0a1714565535.dist-info → pulumi_gcp-7.21.0a1714768411.dist-info}/top_level.txt +0 -0
@@ -24,6 +24,7 @@ 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,
|
27
28
|
name: Optional[pulumi.Input[str]] = None):
|
28
29
|
"""
|
29
30
|
The set of arguments for constructing a FolderSink resource.
|
@@ -47,6 +48,8 @@ class FolderSinkArgs:
|
|
47
48
|
write a filter.
|
48
49
|
:param pulumi.Input[bool] include_children: Whether or not to include children folders in the sink export. If true, logs
|
49
50
|
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.
|
50
53
|
:param pulumi.Input[str] name: The name of the logging sink.
|
51
54
|
"""
|
52
55
|
pulumi.set(__self__, "destination", destination)
|
@@ -63,6 +66,8 @@ class FolderSinkArgs:
|
|
63
66
|
pulumi.set(__self__, "filter", filter)
|
64
67
|
if include_children is not None:
|
65
68
|
pulumi.set(__self__, "include_children", include_children)
|
69
|
+
if intercept_children is not None:
|
70
|
+
pulumi.set(__self__, "intercept_children", intercept_children)
|
66
71
|
if name is not None:
|
67
72
|
pulumi.set(__self__, "name", name)
|
68
73
|
|
@@ -174,6 +179,19 @@ class FolderSinkArgs:
|
|
174
179
|
def include_children(self, value: Optional[pulumi.Input[bool]]):
|
175
180
|
pulumi.set(self, "include_children", value)
|
176
181
|
|
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
|
+
|
177
195
|
@property
|
178
196
|
@pulumi.getter
|
179
197
|
def name(self) -> Optional[pulumi.Input[str]]:
|
@@ -198,6 +216,7 @@ class _FolderSinkState:
|
|
198
216
|
filter: Optional[pulumi.Input[str]] = None,
|
199
217
|
folder: Optional[pulumi.Input[str]] = None,
|
200
218
|
include_children: Optional[pulumi.Input[bool]] = None,
|
219
|
+
intercept_children: Optional[pulumi.Input[bool]] = None,
|
201
220
|
name: Optional[pulumi.Input[str]] = None,
|
202
221
|
writer_identity: Optional[pulumi.Input[str]] = None):
|
203
222
|
"""
|
@@ -222,6 +241,8 @@ class _FolderSinkState:
|
|
222
241
|
accepted.
|
223
242
|
:param pulumi.Input[bool] include_children: Whether or not to include children folders in the sink export. If true, logs
|
224
243
|
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.
|
225
246
|
:param pulumi.Input[str] name: The name of the logging sink.
|
226
247
|
:param pulumi.Input[str] writer_identity: The identity associated with this sink. This identity must be granted write access to the
|
227
248
|
configured `destination`.
|
@@ -242,6 +263,8 @@ class _FolderSinkState:
|
|
242
263
|
pulumi.set(__self__, "folder", folder)
|
243
264
|
if include_children is not None:
|
244
265
|
pulumi.set(__self__, "include_children", include_children)
|
266
|
+
if intercept_children is not None:
|
267
|
+
pulumi.set(__self__, "intercept_children", intercept_children)
|
245
268
|
if name is not None:
|
246
269
|
pulumi.set(__self__, "name", name)
|
247
270
|
if writer_identity is not None:
|
@@ -355,6 +378,19 @@ class _FolderSinkState:
|
|
355
378
|
def include_children(self, value: Optional[pulumi.Input[bool]]):
|
356
379
|
pulumi.set(self, "include_children", value)
|
357
380
|
|
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
|
+
|
358
394
|
@property
|
359
395
|
@pulumi.getter
|
360
396
|
def name(self) -> Optional[pulumi.Input[str]]:
|
@@ -394,6 +430,7 @@ class FolderSink(pulumi.CustomResource):
|
|
394
430
|
filter: Optional[pulumi.Input[str]] = None,
|
395
431
|
folder: Optional[pulumi.Input[str]] = None,
|
396
432
|
include_children: Optional[pulumi.Input[bool]] = None,
|
433
|
+
intercept_children: Optional[pulumi.Input[bool]] = None,
|
397
434
|
name: Optional[pulumi.Input[str]] = None,
|
398
435
|
__props__=None):
|
399
436
|
"""
|
@@ -460,6 +497,8 @@ class FolderSink(pulumi.CustomResource):
|
|
460
497
|
accepted.
|
461
498
|
:param pulumi.Input[bool] include_children: Whether or not to include children folders in the sink export. If true, logs
|
462
499
|
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.
|
463
502
|
:param pulumi.Input[str] name: The name of the logging sink.
|
464
503
|
"""
|
465
504
|
...
|
@@ -533,6 +572,7 @@ class FolderSink(pulumi.CustomResource):
|
|
533
572
|
filter: Optional[pulumi.Input[str]] = None,
|
534
573
|
folder: Optional[pulumi.Input[str]] = None,
|
535
574
|
include_children: Optional[pulumi.Input[bool]] = None,
|
575
|
+
intercept_children: Optional[pulumi.Input[bool]] = None,
|
536
576
|
name: Optional[pulumi.Input[str]] = None,
|
537
577
|
__props__=None):
|
538
578
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
@@ -555,6 +595,7 @@ class FolderSink(pulumi.CustomResource):
|
|
555
595
|
raise TypeError("Missing required property 'folder'")
|
556
596
|
__props__.__dict__["folder"] = folder
|
557
597
|
__props__.__dict__["include_children"] = include_children
|
598
|
+
__props__.__dict__["intercept_children"] = intercept_children
|
558
599
|
__props__.__dict__["name"] = name
|
559
600
|
__props__.__dict__["writer_identity"] = None
|
560
601
|
super(FolderSink, __self__).__init__(
|
@@ -575,6 +616,7 @@ class FolderSink(pulumi.CustomResource):
|
|
575
616
|
filter: Optional[pulumi.Input[str]] = None,
|
576
617
|
folder: Optional[pulumi.Input[str]] = None,
|
577
618
|
include_children: Optional[pulumi.Input[bool]] = None,
|
619
|
+
intercept_children: Optional[pulumi.Input[bool]] = None,
|
578
620
|
name: Optional[pulumi.Input[str]] = None,
|
579
621
|
writer_identity: Optional[pulumi.Input[str]] = None) -> 'FolderSink':
|
580
622
|
"""
|
@@ -604,6 +646,8 @@ class FolderSink(pulumi.CustomResource):
|
|
604
646
|
accepted.
|
605
647
|
:param pulumi.Input[bool] include_children: Whether or not to include children folders in the sink export. If true, logs
|
606
648
|
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.
|
607
651
|
:param pulumi.Input[str] name: The name of the logging sink.
|
608
652
|
:param pulumi.Input[str] writer_identity: The identity associated with this sink. This identity must be granted write access to the
|
609
653
|
configured `destination`.
|
@@ -620,6 +664,7 @@ class FolderSink(pulumi.CustomResource):
|
|
620
664
|
__props__.__dict__["filter"] = filter
|
621
665
|
__props__.__dict__["folder"] = folder
|
622
666
|
__props__.__dict__["include_children"] = include_children
|
667
|
+
__props__.__dict__["intercept_children"] = intercept_children
|
623
668
|
__props__.__dict__["name"] = name
|
624
669
|
__props__.__dict__["writer_identity"] = writer_identity
|
625
670
|
return FolderSink(resource_name, opts=opts, __props__=__props__)
|
@@ -700,6 +745,15 @@ class FolderSink(pulumi.CustomResource):
|
|
700
745
|
"""
|
701
746
|
return pulumi.get(self, "include_children")
|
702
747
|
|
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
|
+
|
703
757
|
@property
|
704
758
|
@pulumi.getter
|
705
759
|
def name(self) -> pulumi.Output[str]:
|
@@ -24,6 +24,7 @@ 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,
|
27
28
|
name: Optional[pulumi.Input[str]] = None):
|
28
29
|
"""
|
29
30
|
The set of arguments for constructing a OrganizationSink resource.
|
@@ -46,6 +47,8 @@ class OrganizationSinkArgs:
|
|
46
47
|
write a filter.
|
47
48
|
:param pulumi.Input[bool] include_children: Whether or not to include children organizations in the sink export. If true, logs
|
48
49
|
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.
|
49
52
|
:param pulumi.Input[str] name: The name of the logging sink.
|
50
53
|
"""
|
51
54
|
pulumi.set(__self__, "destination", destination)
|
@@ -62,6 +65,8 @@ class OrganizationSinkArgs:
|
|
62
65
|
pulumi.set(__self__, "filter", filter)
|
63
66
|
if include_children is not None:
|
64
67
|
pulumi.set(__self__, "include_children", include_children)
|
68
|
+
if intercept_children is not None:
|
69
|
+
pulumi.set(__self__, "intercept_children", intercept_children)
|
65
70
|
if name is not None:
|
66
71
|
pulumi.set(__self__, "name", name)
|
67
72
|
|
@@ -172,6 +177,19 @@ class OrganizationSinkArgs:
|
|
172
177
|
def include_children(self, value: Optional[pulumi.Input[bool]]):
|
173
178
|
pulumi.set(self, "include_children", value)
|
174
179
|
|
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
|
+
|
175
193
|
@property
|
176
194
|
@pulumi.getter
|
177
195
|
def name(self) -> Optional[pulumi.Input[str]]:
|
@@ -195,6 +213,7 @@ class _OrganizationSinkState:
|
|
195
213
|
exclusions: Optional[pulumi.Input[Sequence[pulumi.Input['OrganizationSinkExclusionArgs']]]] = None,
|
196
214
|
filter: Optional[pulumi.Input[str]] = None,
|
197
215
|
include_children: Optional[pulumi.Input[bool]] = None,
|
216
|
+
intercept_children: Optional[pulumi.Input[bool]] = None,
|
198
217
|
name: Optional[pulumi.Input[str]] = None,
|
199
218
|
org_id: Optional[pulumi.Input[str]] = None,
|
200
219
|
writer_identity: Optional[pulumi.Input[str]] = None):
|
@@ -218,6 +237,8 @@ class _OrganizationSinkState:
|
|
218
237
|
write a filter.
|
219
238
|
:param pulumi.Input[bool] include_children: Whether or not to include children organizations in the sink export. If true, logs
|
220
239
|
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.
|
221
242
|
:param pulumi.Input[str] name: The name of the logging sink.
|
222
243
|
:param pulumi.Input[str] org_id: The numeric ID of the organization to be exported to the sink.
|
223
244
|
:param pulumi.Input[str] writer_identity: The identity associated with this sink. This identity must be granted write access to the
|
@@ -237,6 +258,8 @@ class _OrganizationSinkState:
|
|
237
258
|
pulumi.set(__self__, "filter", filter)
|
238
259
|
if include_children is not None:
|
239
260
|
pulumi.set(__self__, "include_children", include_children)
|
261
|
+
if intercept_children is not None:
|
262
|
+
pulumi.set(__self__, "intercept_children", intercept_children)
|
240
263
|
if name is not None:
|
241
264
|
pulumi.set(__self__, "name", name)
|
242
265
|
if org_id is not None:
|
@@ -339,6 +362,19 @@ class _OrganizationSinkState:
|
|
339
362
|
def include_children(self, value: Optional[pulumi.Input[bool]]):
|
340
363
|
pulumi.set(self, "include_children", value)
|
341
364
|
|
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
|
+
|
342
378
|
@property
|
343
379
|
@pulumi.getter
|
344
380
|
def name(self) -> Optional[pulumi.Input[str]]:
|
@@ -389,6 +425,7 @@ class OrganizationSink(pulumi.CustomResource):
|
|
389
425
|
exclusions: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OrganizationSinkExclusionArgs']]]]] = None,
|
390
426
|
filter: Optional[pulumi.Input[str]] = None,
|
391
427
|
include_children: Optional[pulumi.Input[bool]] = None,
|
428
|
+
intercept_children: Optional[pulumi.Input[bool]] = None,
|
392
429
|
name: Optional[pulumi.Input[str]] = None,
|
393
430
|
org_id: Optional[pulumi.Input[str]] = None,
|
394
431
|
__props__=None):
|
@@ -451,6 +488,8 @@ class OrganizationSink(pulumi.CustomResource):
|
|
451
488
|
write a filter.
|
452
489
|
:param pulumi.Input[bool] include_children: Whether or not to include children organizations in the sink export. If true, logs
|
453
490
|
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.
|
454
493
|
:param pulumi.Input[str] name: The name of the logging sink.
|
455
494
|
:param pulumi.Input[str] org_id: The numeric ID of the organization to be exported to the sink.
|
456
495
|
"""
|
@@ -521,6 +560,7 @@ class OrganizationSink(pulumi.CustomResource):
|
|
521
560
|
exclusions: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OrganizationSinkExclusionArgs']]]]] = None,
|
522
561
|
filter: Optional[pulumi.Input[str]] = None,
|
523
562
|
include_children: Optional[pulumi.Input[bool]] = None,
|
563
|
+
intercept_children: Optional[pulumi.Input[bool]] = None,
|
524
564
|
name: Optional[pulumi.Input[str]] = None,
|
525
565
|
org_id: Optional[pulumi.Input[str]] = None,
|
526
566
|
__props__=None):
|
@@ -541,6 +581,7 @@ class OrganizationSink(pulumi.CustomResource):
|
|
541
581
|
__props__.__dict__["exclusions"] = exclusions
|
542
582
|
__props__.__dict__["filter"] = filter
|
543
583
|
__props__.__dict__["include_children"] = include_children
|
584
|
+
__props__.__dict__["intercept_children"] = intercept_children
|
544
585
|
__props__.__dict__["name"] = name
|
545
586
|
if org_id is None and not opts.urn:
|
546
587
|
raise TypeError("Missing required property 'org_id'")
|
@@ -563,6 +604,7 @@ class OrganizationSink(pulumi.CustomResource):
|
|
563
604
|
exclusions: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OrganizationSinkExclusionArgs']]]]] = None,
|
564
605
|
filter: Optional[pulumi.Input[str]] = None,
|
565
606
|
include_children: Optional[pulumi.Input[bool]] = None,
|
607
|
+
intercept_children: Optional[pulumi.Input[bool]] = None,
|
566
608
|
name: Optional[pulumi.Input[str]] = None,
|
567
609
|
org_id: Optional[pulumi.Input[str]] = None,
|
568
610
|
writer_identity: Optional[pulumi.Input[str]] = None) -> 'OrganizationSink':
|
@@ -591,6 +633,8 @@ class OrganizationSink(pulumi.CustomResource):
|
|
591
633
|
write a filter.
|
592
634
|
:param pulumi.Input[bool] include_children: Whether or not to include children organizations in the sink export. If true, logs
|
593
635
|
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.
|
594
638
|
:param pulumi.Input[str] name: The name of the logging sink.
|
595
639
|
:param pulumi.Input[str] org_id: The numeric ID of the organization to be exported to the sink.
|
596
640
|
:param pulumi.Input[str] writer_identity: The identity associated with this sink. This identity must be granted write access to the
|
@@ -607,6 +651,7 @@ class OrganizationSink(pulumi.CustomResource):
|
|
607
651
|
__props__.__dict__["exclusions"] = exclusions
|
608
652
|
__props__.__dict__["filter"] = filter
|
609
653
|
__props__.__dict__["include_children"] = include_children
|
654
|
+
__props__.__dict__["intercept_children"] = intercept_children
|
610
655
|
__props__.__dict__["name"] = name
|
611
656
|
__props__.__dict__["org_id"] = org_id
|
612
657
|
__props__.__dict__["writer_identity"] = writer_identity
|
@@ -679,6 +724,15 @@ class OrganizationSink(pulumi.CustomResource):
|
|
679
724
|
"""
|
680
725
|
return pulumi.get(self, "include_children")
|
681
726
|
|
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
|
+
|
682
736
|
@property
|
683
737
|
@pulumi.getter
|
684
738
|
def name(self) -> pulumi.Output[str]:
|
pulumi_gcp/monitoring/_inputs.py
CHANGED
@@ -60,6 +60,7 @@ __all__ = [
|
|
60
60
|
'UptimeCheckConfigHttpCheckAcceptedResponseStatusCodeArgs',
|
61
61
|
'UptimeCheckConfigHttpCheckAuthInfoArgs',
|
62
62
|
'UptimeCheckConfigHttpCheckPingConfigArgs',
|
63
|
+
'UptimeCheckConfigHttpCheckServiceAgentAuthenticationArgs',
|
63
64
|
'UptimeCheckConfigMonitoredResourceArgs',
|
64
65
|
'UptimeCheckConfigResourceGroupArgs',
|
65
66
|
'UptimeCheckConfigSyntheticMonitorArgs',
|
@@ -3722,12 +3723,13 @@ class UptimeCheckConfigHttpCheckArgs:
|
|
3722
3723
|
ping_config: Optional[pulumi.Input['UptimeCheckConfigHttpCheckPingConfigArgs']] = None,
|
3723
3724
|
port: Optional[pulumi.Input[int]] = None,
|
3724
3725
|
request_method: Optional[pulumi.Input[str]] = None,
|
3726
|
+
service_agent_authentication: Optional[pulumi.Input['UptimeCheckConfigHttpCheckServiceAgentAuthenticationArgs']] = None,
|
3725
3727
|
use_ssl: Optional[pulumi.Input[bool]] = None,
|
3726
3728
|
validate_ssl: Optional[pulumi.Input[bool]] = None):
|
3727
3729
|
"""
|
3728
3730
|
: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.
|
3729
3731
|
Structure is documented below.
|
3730
|
-
:param pulumi.Input['UptimeCheckConfigHttpCheckAuthInfoArgs'] auth_info: The authentication information. Optional when creating an HTTP check; defaults to empty.
|
3732
|
+
:param pulumi.Input['UptimeCheckConfigHttpCheckAuthInfoArgs'] auth_info: The authentication information using username and password. Optional when creating an HTTP check; defaults to empty. Do not use with other authentication fields.
|
3731
3733
|
Structure is documented below.
|
3732
3734
|
: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=`.
|
3733
3735
|
:param pulumi.Input[str] content_type: The content type to use for the check.
|
@@ -3742,6 +3744,8 @@ class UptimeCheckConfigHttpCheckArgs:
|
|
3742
3744
|
: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`.
|
3743
3745
|
Default value is `GET`.
|
3744
3746
|
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.
|
3745
3749
|
:param pulumi.Input[bool] use_ssl: If true, use HTTPS instead of HTTP to run the check.
|
3746
3750
|
: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.
|
3747
3751
|
"""
|
@@ -3767,6 +3771,8 @@ class UptimeCheckConfigHttpCheckArgs:
|
|
3767
3771
|
pulumi.set(__self__, "port", port)
|
3768
3772
|
if request_method is not None:
|
3769
3773
|
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)
|
3770
3776
|
if use_ssl is not None:
|
3771
3777
|
pulumi.set(__self__, "use_ssl", use_ssl)
|
3772
3778
|
if validate_ssl is not None:
|
@@ -3789,7 +3795,7 @@ class UptimeCheckConfigHttpCheckArgs:
|
|
3789
3795
|
@pulumi.getter(name="authInfo")
|
3790
3796
|
def auth_info(self) -> Optional[pulumi.Input['UptimeCheckConfigHttpCheckAuthInfoArgs']]:
|
3791
3797
|
"""
|
3792
|
-
The authentication information. Optional when creating an HTTP check; defaults to empty.
|
3798
|
+
The authentication information using username and password. Optional when creating an HTTP check; defaults to empty. Do not use with other authentication fields.
|
3793
3799
|
Structure is documented below.
|
3794
3800
|
"""
|
3795
3801
|
return pulumi.get(self, "auth_info")
|
@@ -3910,6 +3916,19 @@ class UptimeCheckConfigHttpCheckArgs:
|
|
3910
3916
|
def request_method(self, value: Optional[pulumi.Input[str]]):
|
3911
3917
|
pulumi.set(self, "request_method", value)
|
3912
3918
|
|
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
|
+
|
3913
3932
|
@property
|
3914
3933
|
@pulumi.getter(name="useSsl")
|
3915
3934
|
def use_ssl(self) -> Optional[pulumi.Input[bool]]:
|
@@ -4037,6 +4056,31 @@ class UptimeCheckConfigHttpCheckPingConfigArgs:
|
|
4037
4056
|
pulumi.set(self, "pings_count", value)
|
4038
4057
|
|
4039
4058
|
|
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
|
+
|
4040
4084
|
@pulumi.input_type
|
4041
4085
|
class UptimeCheckConfigMonitoredResourceArgs:
|
4042
4086
|
def __init__(__self__, *,
|
pulumi_gcp/monitoring/outputs.py
CHANGED
@@ -61,6 +61,7 @@ __all__ = [
|
|
61
61
|
'UptimeCheckConfigHttpCheckAcceptedResponseStatusCode',
|
62
62
|
'UptimeCheckConfigHttpCheckAuthInfo',
|
63
63
|
'UptimeCheckConfigHttpCheckPingConfig',
|
64
|
+
'UptimeCheckConfigHttpCheckServiceAgentAuthentication',
|
64
65
|
'UptimeCheckConfigMonitoredResource',
|
65
66
|
'UptimeCheckConfigResourceGroup',
|
66
67
|
'UptimeCheckConfigSyntheticMonitor',
|
@@ -3825,6 +3826,8 @@ class UptimeCheckConfigHttpCheck(dict):
|
|
3825
3826
|
suggest = "ping_config"
|
3826
3827
|
elif key == "requestMethod":
|
3827
3828
|
suggest = "request_method"
|
3829
|
+
elif key == "serviceAgentAuthentication":
|
3830
|
+
suggest = "service_agent_authentication"
|
3828
3831
|
elif key == "useSsl":
|
3829
3832
|
suggest = "use_ssl"
|
3830
3833
|
elif key == "validateSsl":
|
@@ -3853,12 +3856,13 @@ class UptimeCheckConfigHttpCheck(dict):
|
|
3853
3856
|
ping_config: Optional['outputs.UptimeCheckConfigHttpCheckPingConfig'] = None,
|
3854
3857
|
port: Optional[int] = None,
|
3855
3858
|
request_method: Optional[str] = None,
|
3859
|
+
service_agent_authentication: Optional['outputs.UptimeCheckConfigHttpCheckServiceAgentAuthentication'] = None,
|
3856
3860
|
use_ssl: Optional[bool] = None,
|
3857
3861
|
validate_ssl: Optional[bool] = None):
|
3858
3862
|
"""
|
3859
3863
|
: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.
|
3860
3864
|
Structure is documented below.
|
3861
|
-
:param 'UptimeCheckConfigHttpCheckAuthInfoArgs' auth_info: The authentication information. Optional when creating an HTTP check; defaults to empty.
|
3865
|
+
:param 'UptimeCheckConfigHttpCheckAuthInfoArgs' auth_info: The authentication information using username and password. Optional when creating an HTTP check; defaults to empty. Do not use with other authentication fields.
|
3862
3866
|
Structure is documented below.
|
3863
3867
|
: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=`.
|
3864
3868
|
:param str content_type: The content type to use for the check.
|
@@ -3873,6 +3877,8 @@ class UptimeCheckConfigHttpCheck(dict):
|
|
3873
3877
|
:param str request_method: The HTTP request method to use for the check. If set to `METHOD_UNSPECIFIED` then `request_method` defaults to `GET`.
|
3874
3878
|
Default value is `GET`.
|
3875
3879
|
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.
|
3876
3882
|
:param bool use_ssl: If true, use HTTPS instead of HTTP to run the check.
|
3877
3883
|
: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.
|
3878
3884
|
"""
|
@@ -3898,6 +3904,8 @@ class UptimeCheckConfigHttpCheck(dict):
|
|
3898
3904
|
pulumi.set(__self__, "port", port)
|
3899
3905
|
if request_method is not None:
|
3900
3906
|
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)
|
3901
3909
|
if use_ssl is not None:
|
3902
3910
|
pulumi.set(__self__, "use_ssl", use_ssl)
|
3903
3911
|
if validate_ssl is not None:
|
@@ -3916,7 +3924,7 @@ class UptimeCheckConfigHttpCheck(dict):
|
|
3916
3924
|
@pulumi.getter(name="authInfo")
|
3917
3925
|
def auth_info(self) -> Optional['outputs.UptimeCheckConfigHttpCheckAuthInfo']:
|
3918
3926
|
"""
|
3919
|
-
The authentication information. Optional when creating an HTTP check; defaults to empty.
|
3927
|
+
The authentication information using username and password. Optional when creating an HTTP check; defaults to empty. Do not use with other authentication fields.
|
3920
3928
|
Structure is documented below.
|
3921
3929
|
"""
|
3922
3930
|
return pulumi.get(self, "auth_info")
|
@@ -3997,6 +4005,15 @@ class UptimeCheckConfigHttpCheck(dict):
|
|
3997
4005
|
"""
|
3998
4006
|
return pulumi.get(self, "request_method")
|
3999
4007
|
|
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
|
+
|
4000
4017
|
@property
|
4001
4018
|
@pulumi.getter(name="useSsl")
|
4002
4019
|
def use_ssl(self) -> Optional[bool]:
|
@@ -4132,6 +4149,27 @@ class UptimeCheckConfigHttpCheckPingConfig(dict):
|
|
4132
4149
|
return pulumi.get(self, "pings_count")
|
4133
4150
|
|
4134
4151
|
|
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
|
+
|
4135
4173
|
@pulumi.output_type
|
4136
4174
|
class UptimeCheckConfigMonitoredResource(dict):
|
4137
4175
|
def __init__(__self__, *,
|
@@ -655,6 +655,9 @@ 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
|
+
),
|
658
661
|
),
|
659
662
|
monitored_resource=gcp.monitoring.UptimeCheckConfigMonitoredResourceArgs(
|
660
663
|
type="uptime_url",
|
@@ -893,6 +896,9 @@ class UptimeCheckConfig(pulumi.CustomResource):
|
|
893
896
|
port=443,
|
894
897
|
use_ssl=True,
|
895
898
|
validate_ssl=True,
|
899
|
+
service_agent_authentication=gcp.monitoring.UptimeCheckConfigHttpCheckServiceAgentAuthenticationArgs(
|
900
|
+
type="OIDC_TOKEN",
|
901
|
+
),
|
896
902
|
),
|
897
903
|
monitored_resource=gcp.monitoring.UptimeCheckConfigMonitoredResourceArgs(
|
898
904
|
type="uptime_url",
|