pulumi-gcp 7.15.0__py3-none-any.whl → 7.15.0a1710918905__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 -94
- pulumi_gcp/accesscontextmanager/_inputs.py +58 -74
- pulumi_gcp/accesscontextmanager/outputs.py +58 -74
- pulumi_gcp/accesscontextmanager/service_perimeter.py +2 -0
- pulumi_gcp/cloudrunv2/_inputs.py +2 -26
- pulumi_gcp/cloudrunv2/get_service.py +1 -11
- pulumi_gcp/cloudrunv2/outputs.py +2 -58
- pulumi_gcp/cloudrunv2/service.py +0 -54
- pulumi_gcp/compute/_inputs.py +4 -4
- pulumi_gcp/compute/outputs.py +4 -4
- pulumi_gcp/compute/region_network_endpoint_group.py +0 -30
- pulumi_gcp/config/__init__.pyi +0 -4
- pulumi_gcp/config/vars.py +0 -8
- pulumi_gcp/firebase/__init__.py +0 -1
- pulumi_gcp/firestore/_inputs.py +0 -69
- pulumi_gcp/firestore/database.py +0 -206
- pulumi_gcp/firestore/outputs.py +0 -80
- pulumi_gcp/gkeonprem/_inputs.py +3 -1
- pulumi_gcp/gkeonprem/outputs.py +3 -1
- pulumi_gcp/gkeonprem/v_mware_cluster.py +0 -2
- pulumi_gcp/iap/__init__.py +0 -5
- pulumi_gcp/iap/_inputs.py +0 -100
- pulumi_gcp/iap/outputs.py +0 -76
- pulumi_gcp/kms/__init__.py +0 -1
- pulumi_gcp/kms/_inputs.py +0 -246
- pulumi_gcp/kms/outputs.py +0 -242
- pulumi_gcp/networksecurity/__init__.py +0 -1
- pulumi_gcp/notebooks/instance.py +0 -8
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/provider.py +0 -40
- pulumi_gcp/pubsub/subscription.py +4 -4
- pulumi_gcp/securityposture/posture.py +2 -2
- pulumi_gcp/securityposture/posture_deployment.py +2 -2
- pulumi_gcp/storage/_inputs.py +15 -32
- pulumi_gcp/storage/outputs.py +14 -29
- pulumi_gcp/workstations/_inputs.py +4 -134
- pulumi_gcp/workstations/outputs.py +4 -152
- pulumi_gcp/workstations/workstation_config.py +0 -54
- {pulumi_gcp-7.15.0.dist-info → pulumi_gcp-7.15.0a1710918905.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.15.0.dist-info → pulumi_gcp-7.15.0a1710918905.dist-info}/RECORD +42 -62
- pulumi_gcp/apphub/__init__.py +0 -15
- pulumi_gcp/apphub/_inputs.py +0 -1016
- pulumi_gcp/apphub/application.py +0 -775
- pulumi_gcp/apphub/get_discovered_service.py +0 -180
- pulumi_gcp/apphub/get_discovered_workload.py +0 -180
- pulumi_gcp/apphub/outputs.py +0 -1206
- pulumi_gcp/apphub/service.py +0 -1121
- pulumi_gcp/apphub/service_project_attachment.py +0 -516
- pulumi_gcp/apphub/workload.py +0 -1197
- pulumi_gcp/cloudquota/__init__.py +0 -9
- pulumi_gcp/cloudquota/get_s_quota_info.py +0 -322
- pulumi_gcp/cloudquota/outputs.py +0 -105
- pulumi_gcp/firebase/app_check_device_check_config.py +0 -572
- pulumi_gcp/iap/get_tunnel_dest_group_iam_policy.py +0 -172
- pulumi_gcp/iap/tunnel_dest_group.py +0 -524
- pulumi_gcp/iap/tunnel_dest_group_iam_binding.py +0 -858
- pulumi_gcp/iap/tunnel_dest_group_iam_member.py +0 -858
- pulumi_gcp/iap/tunnel_dest_group_iam_policy.py +0 -760
- pulumi_gcp/kms/ekm_connection.py +0 -610
- pulumi_gcp/networksecurity/firewall_endpoint_association.py +0 -753
- {pulumi_gcp-7.15.0.dist-info → pulumi_gcp-7.15.0a1710918905.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.15.0.dist-info → pulumi_gcp-7.15.0a1710918905.dist-info}/top_level.txt +0 -0
pulumi_gcp/iap/outputs.py
CHANGED
@@ -14,8 +14,6 @@ __all__ = [
|
|
14
14
|
'AppEngineServiceIamMemberCondition',
|
15
15
|
'AppEngineVersionIamBindingCondition',
|
16
16
|
'AppEngineVersionIamMemberCondition',
|
17
|
-
'TunnelDestGroupIamBindingCondition',
|
18
|
-
'TunnelDestGroupIamMemberCondition',
|
19
17
|
'TunnelIamBindingCondition',
|
20
18
|
'TunnelIamMemberCondition',
|
21
19
|
'TunnelInstanceIAMBindingCondition',
|
@@ -228,80 +226,6 @@ class AppEngineVersionIamMemberCondition(dict):
|
|
228
226
|
return pulumi.get(self, "description")
|
229
227
|
|
230
228
|
|
231
|
-
@pulumi.output_type
|
232
|
-
class TunnelDestGroupIamBindingCondition(dict):
|
233
|
-
def __init__(__self__, *,
|
234
|
-
expression: str,
|
235
|
-
title: str,
|
236
|
-
description: Optional[str] = None):
|
237
|
-
"""
|
238
|
-
:param str expression: Textual representation of an expression in Common Expression Language syntax.
|
239
|
-
:param str title: A title for the expression, i.e. a short string describing its purpose.
|
240
|
-
"""
|
241
|
-
pulumi.set(__self__, "expression", expression)
|
242
|
-
pulumi.set(__self__, "title", title)
|
243
|
-
if description is not None:
|
244
|
-
pulumi.set(__self__, "description", description)
|
245
|
-
|
246
|
-
@property
|
247
|
-
@pulumi.getter
|
248
|
-
def expression(self) -> str:
|
249
|
-
"""
|
250
|
-
Textual representation of an expression in Common Expression Language syntax.
|
251
|
-
"""
|
252
|
-
return pulumi.get(self, "expression")
|
253
|
-
|
254
|
-
@property
|
255
|
-
@pulumi.getter
|
256
|
-
def title(self) -> str:
|
257
|
-
"""
|
258
|
-
A title for the expression, i.e. a short string describing its purpose.
|
259
|
-
"""
|
260
|
-
return pulumi.get(self, "title")
|
261
|
-
|
262
|
-
@property
|
263
|
-
@pulumi.getter
|
264
|
-
def description(self) -> Optional[str]:
|
265
|
-
return pulumi.get(self, "description")
|
266
|
-
|
267
|
-
|
268
|
-
@pulumi.output_type
|
269
|
-
class TunnelDestGroupIamMemberCondition(dict):
|
270
|
-
def __init__(__self__, *,
|
271
|
-
expression: str,
|
272
|
-
title: str,
|
273
|
-
description: Optional[str] = None):
|
274
|
-
"""
|
275
|
-
:param str expression: Textual representation of an expression in Common Expression Language syntax.
|
276
|
-
:param str title: A title for the expression, i.e. a short string describing its purpose.
|
277
|
-
"""
|
278
|
-
pulumi.set(__self__, "expression", expression)
|
279
|
-
pulumi.set(__self__, "title", title)
|
280
|
-
if description is not None:
|
281
|
-
pulumi.set(__self__, "description", description)
|
282
|
-
|
283
|
-
@property
|
284
|
-
@pulumi.getter
|
285
|
-
def expression(self) -> str:
|
286
|
-
"""
|
287
|
-
Textual representation of an expression in Common Expression Language syntax.
|
288
|
-
"""
|
289
|
-
return pulumi.get(self, "expression")
|
290
|
-
|
291
|
-
@property
|
292
|
-
@pulumi.getter
|
293
|
-
def title(self) -> str:
|
294
|
-
"""
|
295
|
-
A title for the expression, i.e. a short string describing its purpose.
|
296
|
-
"""
|
297
|
-
return pulumi.get(self, "title")
|
298
|
-
|
299
|
-
@property
|
300
|
-
@pulumi.getter
|
301
|
-
def description(self) -> Optional[str]:
|
302
|
-
return pulumi.get(self, "description")
|
303
|
-
|
304
|
-
|
305
229
|
@pulumi.output_type
|
306
230
|
class TunnelIamBindingCondition(dict):
|
307
231
|
def __init__(__self__, *,
|
pulumi_gcp/kms/__init__.py
CHANGED
@@ -10,7 +10,6 @@ from .crypto_key_iam_binding import *
|
|
10
10
|
from .crypto_key_iam_member import *
|
11
11
|
from .crypto_key_iam_policy import *
|
12
12
|
from .crypto_key_version import *
|
13
|
-
from .ekm_connection import *
|
14
13
|
from .get_crypto_key_iam_policy import *
|
15
14
|
from .get_key_ring_iam_policy import *
|
16
15
|
from .get_kms_crypto_key import *
|
pulumi_gcp/kms/_inputs.py
CHANGED
@@ -17,8 +17,6 @@ __all__ = [
|
|
17
17
|
'CryptoKeyVersionAttestationCertChainsArgs',
|
18
18
|
'CryptoKeyVersionAttestationExternalProtectionLevelOptionsArgs',
|
19
19
|
'CryptoKeyVersionTemplateArgs',
|
20
|
-
'EkmConnectionServiceResolverArgs',
|
21
|
-
'EkmConnectionServiceResolverServerCertificateArgs',
|
22
20
|
'KeyRingIAMBindingConditionArgs',
|
23
21
|
'KeyRingIAMMemberConditionArgs',
|
24
22
|
'KeyRingImportJobAttestationArgs',
|
@@ -401,250 +399,6 @@ class CryptoKeyVersionTemplateArgs:
|
|
401
399
|
pulumi.set(self, "protection_level", value)
|
402
400
|
|
403
401
|
|
404
|
-
@pulumi.input_type
|
405
|
-
class EkmConnectionServiceResolverArgs:
|
406
|
-
def __init__(__self__, *,
|
407
|
-
hostname: pulumi.Input[str],
|
408
|
-
server_certificates: pulumi.Input[Sequence[pulumi.Input['EkmConnectionServiceResolverServerCertificateArgs']]],
|
409
|
-
service_directory_service: pulumi.Input[str],
|
410
|
-
endpoint_filter: Optional[pulumi.Input[str]] = None):
|
411
|
-
"""
|
412
|
-
:param pulumi.Input[str] hostname: Required. The hostname of the EKM replica used at TLS and HTTP layers.
|
413
|
-
:param pulumi.Input[Sequence[pulumi.Input['EkmConnectionServiceResolverServerCertificateArgs']]] server_certificates: Required. A list of leaf server certificates used to authenticate HTTPS connections to the EKM replica. Currently, a maximum of 10 Certificate is supported.
|
414
|
-
Structure is documented below.
|
415
|
-
:param pulumi.Input[str] service_directory_service: Required. The resource name of the Service Directory service pointing to an EKM replica, in the format projects/*/locations/*/namespaces/*/services/*
|
416
|
-
:param pulumi.Input[str] endpoint_filter: Optional. The filter applied to the endpoints of the resolved service. If no filter is specified, all endpoints will be considered. An endpoint will be chosen arbitrarily from the filtered list for each request. For endpoint filter syntax and examples, see https://cloud.google.com/service-directory/docs/reference/rpc/google.cloud.servicedirectory.v1#resolveservicerequest.
|
417
|
-
"""
|
418
|
-
pulumi.set(__self__, "hostname", hostname)
|
419
|
-
pulumi.set(__self__, "server_certificates", server_certificates)
|
420
|
-
pulumi.set(__self__, "service_directory_service", service_directory_service)
|
421
|
-
if endpoint_filter is not None:
|
422
|
-
pulumi.set(__self__, "endpoint_filter", endpoint_filter)
|
423
|
-
|
424
|
-
@property
|
425
|
-
@pulumi.getter
|
426
|
-
def hostname(self) -> pulumi.Input[str]:
|
427
|
-
"""
|
428
|
-
Required. The hostname of the EKM replica used at TLS and HTTP layers.
|
429
|
-
"""
|
430
|
-
return pulumi.get(self, "hostname")
|
431
|
-
|
432
|
-
@hostname.setter
|
433
|
-
def hostname(self, value: pulumi.Input[str]):
|
434
|
-
pulumi.set(self, "hostname", value)
|
435
|
-
|
436
|
-
@property
|
437
|
-
@pulumi.getter(name="serverCertificates")
|
438
|
-
def server_certificates(self) -> pulumi.Input[Sequence[pulumi.Input['EkmConnectionServiceResolverServerCertificateArgs']]]:
|
439
|
-
"""
|
440
|
-
Required. A list of leaf server certificates used to authenticate HTTPS connections to the EKM replica. Currently, a maximum of 10 Certificate is supported.
|
441
|
-
Structure is documented below.
|
442
|
-
"""
|
443
|
-
return pulumi.get(self, "server_certificates")
|
444
|
-
|
445
|
-
@server_certificates.setter
|
446
|
-
def server_certificates(self, value: pulumi.Input[Sequence[pulumi.Input['EkmConnectionServiceResolverServerCertificateArgs']]]):
|
447
|
-
pulumi.set(self, "server_certificates", value)
|
448
|
-
|
449
|
-
@property
|
450
|
-
@pulumi.getter(name="serviceDirectoryService")
|
451
|
-
def service_directory_service(self) -> pulumi.Input[str]:
|
452
|
-
"""
|
453
|
-
Required. The resource name of the Service Directory service pointing to an EKM replica, in the format projects/*/locations/*/namespaces/*/services/*
|
454
|
-
"""
|
455
|
-
return pulumi.get(self, "service_directory_service")
|
456
|
-
|
457
|
-
@service_directory_service.setter
|
458
|
-
def service_directory_service(self, value: pulumi.Input[str]):
|
459
|
-
pulumi.set(self, "service_directory_service", value)
|
460
|
-
|
461
|
-
@property
|
462
|
-
@pulumi.getter(name="endpointFilter")
|
463
|
-
def endpoint_filter(self) -> Optional[pulumi.Input[str]]:
|
464
|
-
"""
|
465
|
-
Optional. The filter applied to the endpoints of the resolved service. If no filter is specified, all endpoints will be considered. An endpoint will be chosen arbitrarily from the filtered list for each request. For endpoint filter syntax and examples, see https://cloud.google.com/service-directory/docs/reference/rpc/google.cloud.servicedirectory.v1#resolveservicerequest.
|
466
|
-
"""
|
467
|
-
return pulumi.get(self, "endpoint_filter")
|
468
|
-
|
469
|
-
@endpoint_filter.setter
|
470
|
-
def endpoint_filter(self, value: Optional[pulumi.Input[str]]):
|
471
|
-
pulumi.set(self, "endpoint_filter", value)
|
472
|
-
|
473
|
-
|
474
|
-
@pulumi.input_type
|
475
|
-
class EkmConnectionServiceResolverServerCertificateArgs:
|
476
|
-
def __init__(__self__, *,
|
477
|
-
raw_der: pulumi.Input[str],
|
478
|
-
issuer: Optional[pulumi.Input[str]] = None,
|
479
|
-
not_after_time: Optional[pulumi.Input[str]] = None,
|
480
|
-
not_before_time: Optional[pulumi.Input[str]] = None,
|
481
|
-
parsed: Optional[pulumi.Input[bool]] = None,
|
482
|
-
serial_number: Optional[pulumi.Input[str]] = None,
|
483
|
-
sha256_fingerprint: Optional[pulumi.Input[str]] = None,
|
484
|
-
subject: Optional[pulumi.Input[str]] = None,
|
485
|
-
subject_alternative_dns_names: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
486
|
-
"""
|
487
|
-
:param pulumi.Input[str] raw_der: Required. The raw certificate bytes in DER format. A base64-encoded string.
|
488
|
-
:param pulumi.Input[str] issuer: (Output)
|
489
|
-
Output only. The issuer distinguished name in RFC 2253 format. Only present if parsed is true.
|
490
|
-
:param pulumi.Input[str] not_after_time: (Output)
|
491
|
-
Output only. The certificate is not valid after this time. Only present if parsed is true.
|
492
|
-
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
|
493
|
-
:param pulumi.Input[str] not_before_time: (Output)
|
494
|
-
Output only. The certificate is not valid before this time. Only present if parsed is true.
|
495
|
-
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
|
496
|
-
:param pulumi.Input[bool] parsed: (Output)
|
497
|
-
Output only. True if the certificate was parsed successfully.
|
498
|
-
:param pulumi.Input[str] serial_number: (Output)
|
499
|
-
Output only. The certificate serial number as a hex string. Only present if parsed is true.
|
500
|
-
:param pulumi.Input[str] sha256_fingerprint: (Output)
|
501
|
-
Output only. The SHA-256 certificate fingerprint as a hex string. Only present if parsed is true.
|
502
|
-
:param pulumi.Input[str] subject: (Output)
|
503
|
-
Output only. The subject distinguished name in RFC 2253 format. Only present if parsed is true.
|
504
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] subject_alternative_dns_names: (Output)
|
505
|
-
Output only. The subject Alternative DNS names. Only present if parsed is true.
|
506
|
-
|
507
|
-
- - -
|
508
|
-
"""
|
509
|
-
pulumi.set(__self__, "raw_der", raw_der)
|
510
|
-
if issuer is not None:
|
511
|
-
pulumi.set(__self__, "issuer", issuer)
|
512
|
-
if not_after_time is not None:
|
513
|
-
pulumi.set(__self__, "not_after_time", not_after_time)
|
514
|
-
if not_before_time is not None:
|
515
|
-
pulumi.set(__self__, "not_before_time", not_before_time)
|
516
|
-
if parsed is not None:
|
517
|
-
pulumi.set(__self__, "parsed", parsed)
|
518
|
-
if serial_number is not None:
|
519
|
-
pulumi.set(__self__, "serial_number", serial_number)
|
520
|
-
if sha256_fingerprint is not None:
|
521
|
-
pulumi.set(__self__, "sha256_fingerprint", sha256_fingerprint)
|
522
|
-
if subject is not None:
|
523
|
-
pulumi.set(__self__, "subject", subject)
|
524
|
-
if subject_alternative_dns_names is not None:
|
525
|
-
pulumi.set(__self__, "subject_alternative_dns_names", subject_alternative_dns_names)
|
526
|
-
|
527
|
-
@property
|
528
|
-
@pulumi.getter(name="rawDer")
|
529
|
-
def raw_der(self) -> pulumi.Input[str]:
|
530
|
-
"""
|
531
|
-
Required. The raw certificate bytes in DER format. A base64-encoded string.
|
532
|
-
"""
|
533
|
-
return pulumi.get(self, "raw_der")
|
534
|
-
|
535
|
-
@raw_der.setter
|
536
|
-
def raw_der(self, value: pulumi.Input[str]):
|
537
|
-
pulumi.set(self, "raw_der", value)
|
538
|
-
|
539
|
-
@property
|
540
|
-
@pulumi.getter
|
541
|
-
def issuer(self) -> Optional[pulumi.Input[str]]:
|
542
|
-
"""
|
543
|
-
(Output)
|
544
|
-
Output only. The issuer distinguished name in RFC 2253 format. Only present if parsed is true.
|
545
|
-
"""
|
546
|
-
return pulumi.get(self, "issuer")
|
547
|
-
|
548
|
-
@issuer.setter
|
549
|
-
def issuer(self, value: Optional[pulumi.Input[str]]):
|
550
|
-
pulumi.set(self, "issuer", value)
|
551
|
-
|
552
|
-
@property
|
553
|
-
@pulumi.getter(name="notAfterTime")
|
554
|
-
def not_after_time(self) -> Optional[pulumi.Input[str]]:
|
555
|
-
"""
|
556
|
-
(Output)
|
557
|
-
Output only. The certificate is not valid after this time. Only present if parsed is true.
|
558
|
-
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
|
559
|
-
"""
|
560
|
-
return pulumi.get(self, "not_after_time")
|
561
|
-
|
562
|
-
@not_after_time.setter
|
563
|
-
def not_after_time(self, value: Optional[pulumi.Input[str]]):
|
564
|
-
pulumi.set(self, "not_after_time", value)
|
565
|
-
|
566
|
-
@property
|
567
|
-
@pulumi.getter(name="notBeforeTime")
|
568
|
-
def not_before_time(self) -> Optional[pulumi.Input[str]]:
|
569
|
-
"""
|
570
|
-
(Output)
|
571
|
-
Output only. The certificate is not valid before this time. Only present if parsed is true.
|
572
|
-
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
|
573
|
-
"""
|
574
|
-
return pulumi.get(self, "not_before_time")
|
575
|
-
|
576
|
-
@not_before_time.setter
|
577
|
-
def not_before_time(self, value: Optional[pulumi.Input[str]]):
|
578
|
-
pulumi.set(self, "not_before_time", value)
|
579
|
-
|
580
|
-
@property
|
581
|
-
@pulumi.getter
|
582
|
-
def parsed(self) -> Optional[pulumi.Input[bool]]:
|
583
|
-
"""
|
584
|
-
(Output)
|
585
|
-
Output only. True if the certificate was parsed successfully.
|
586
|
-
"""
|
587
|
-
return pulumi.get(self, "parsed")
|
588
|
-
|
589
|
-
@parsed.setter
|
590
|
-
def parsed(self, value: Optional[pulumi.Input[bool]]):
|
591
|
-
pulumi.set(self, "parsed", value)
|
592
|
-
|
593
|
-
@property
|
594
|
-
@pulumi.getter(name="serialNumber")
|
595
|
-
def serial_number(self) -> Optional[pulumi.Input[str]]:
|
596
|
-
"""
|
597
|
-
(Output)
|
598
|
-
Output only. The certificate serial number as a hex string. Only present if parsed is true.
|
599
|
-
"""
|
600
|
-
return pulumi.get(self, "serial_number")
|
601
|
-
|
602
|
-
@serial_number.setter
|
603
|
-
def serial_number(self, value: Optional[pulumi.Input[str]]):
|
604
|
-
pulumi.set(self, "serial_number", value)
|
605
|
-
|
606
|
-
@property
|
607
|
-
@pulumi.getter(name="sha256Fingerprint")
|
608
|
-
def sha256_fingerprint(self) -> Optional[pulumi.Input[str]]:
|
609
|
-
"""
|
610
|
-
(Output)
|
611
|
-
Output only. The SHA-256 certificate fingerprint as a hex string. Only present if parsed is true.
|
612
|
-
"""
|
613
|
-
return pulumi.get(self, "sha256_fingerprint")
|
614
|
-
|
615
|
-
@sha256_fingerprint.setter
|
616
|
-
def sha256_fingerprint(self, value: Optional[pulumi.Input[str]]):
|
617
|
-
pulumi.set(self, "sha256_fingerprint", value)
|
618
|
-
|
619
|
-
@property
|
620
|
-
@pulumi.getter
|
621
|
-
def subject(self) -> Optional[pulumi.Input[str]]:
|
622
|
-
"""
|
623
|
-
(Output)
|
624
|
-
Output only. The subject distinguished name in RFC 2253 format. Only present if parsed is true.
|
625
|
-
"""
|
626
|
-
return pulumi.get(self, "subject")
|
627
|
-
|
628
|
-
@subject.setter
|
629
|
-
def subject(self, value: Optional[pulumi.Input[str]]):
|
630
|
-
pulumi.set(self, "subject", value)
|
631
|
-
|
632
|
-
@property
|
633
|
-
@pulumi.getter(name="subjectAlternativeDnsNames")
|
634
|
-
def subject_alternative_dns_names(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
635
|
-
"""
|
636
|
-
(Output)
|
637
|
-
Output only. The subject Alternative DNS names. Only present if parsed is true.
|
638
|
-
|
639
|
-
- - -
|
640
|
-
"""
|
641
|
-
return pulumi.get(self, "subject_alternative_dns_names")
|
642
|
-
|
643
|
-
@subject_alternative_dns_names.setter
|
644
|
-
def subject_alternative_dns_names(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
645
|
-
pulumi.set(self, "subject_alternative_dns_names", value)
|
646
|
-
|
647
|
-
|
648
402
|
@pulumi.input_type
|
649
403
|
class KeyRingIAMBindingConditionArgs:
|
650
404
|
def __init__(__self__, *,
|
pulumi_gcp/kms/outputs.py
CHANGED
@@ -18,8 +18,6 @@ __all__ = [
|
|
18
18
|
'CryptoKeyVersionAttestationCertChains',
|
19
19
|
'CryptoKeyVersionAttestationExternalProtectionLevelOptions',
|
20
20
|
'CryptoKeyVersionTemplate',
|
21
|
-
'EkmConnectionServiceResolver',
|
22
|
-
'EkmConnectionServiceResolverServerCertificate',
|
23
21
|
'KeyRingIAMBindingCondition',
|
24
22
|
'KeyRingIAMMemberCondition',
|
25
23
|
'KeyRingImportJobAttestation',
|
@@ -405,246 +403,6 @@ class CryptoKeyVersionTemplate(dict):
|
|
405
403
|
return pulumi.get(self, "protection_level")
|
406
404
|
|
407
405
|
|
408
|
-
@pulumi.output_type
|
409
|
-
class EkmConnectionServiceResolver(dict):
|
410
|
-
@staticmethod
|
411
|
-
def __key_warning(key: str):
|
412
|
-
suggest = None
|
413
|
-
if key == "serverCertificates":
|
414
|
-
suggest = "server_certificates"
|
415
|
-
elif key == "serviceDirectoryService":
|
416
|
-
suggest = "service_directory_service"
|
417
|
-
elif key == "endpointFilter":
|
418
|
-
suggest = "endpoint_filter"
|
419
|
-
|
420
|
-
if suggest:
|
421
|
-
pulumi.log.warn(f"Key '{key}' not found in EkmConnectionServiceResolver. Access the value via the '{suggest}' property getter instead.")
|
422
|
-
|
423
|
-
def __getitem__(self, key: str) -> Any:
|
424
|
-
EkmConnectionServiceResolver.__key_warning(key)
|
425
|
-
return super().__getitem__(key)
|
426
|
-
|
427
|
-
def get(self, key: str, default = None) -> Any:
|
428
|
-
EkmConnectionServiceResolver.__key_warning(key)
|
429
|
-
return super().get(key, default)
|
430
|
-
|
431
|
-
def __init__(__self__, *,
|
432
|
-
hostname: str,
|
433
|
-
server_certificates: Sequence['outputs.EkmConnectionServiceResolverServerCertificate'],
|
434
|
-
service_directory_service: str,
|
435
|
-
endpoint_filter: Optional[str] = None):
|
436
|
-
"""
|
437
|
-
:param str hostname: Required. The hostname of the EKM replica used at TLS and HTTP layers.
|
438
|
-
:param Sequence['EkmConnectionServiceResolverServerCertificateArgs'] server_certificates: Required. A list of leaf server certificates used to authenticate HTTPS connections to the EKM replica. Currently, a maximum of 10 Certificate is supported.
|
439
|
-
Structure is documented below.
|
440
|
-
:param str service_directory_service: Required. The resource name of the Service Directory service pointing to an EKM replica, in the format projects/*/locations/*/namespaces/*/services/*
|
441
|
-
:param str endpoint_filter: Optional. The filter applied to the endpoints of the resolved service. If no filter is specified, all endpoints will be considered. An endpoint will be chosen arbitrarily from the filtered list for each request. For endpoint filter syntax and examples, see https://cloud.google.com/service-directory/docs/reference/rpc/google.cloud.servicedirectory.v1#resolveservicerequest.
|
442
|
-
"""
|
443
|
-
pulumi.set(__self__, "hostname", hostname)
|
444
|
-
pulumi.set(__self__, "server_certificates", server_certificates)
|
445
|
-
pulumi.set(__self__, "service_directory_service", service_directory_service)
|
446
|
-
if endpoint_filter is not None:
|
447
|
-
pulumi.set(__self__, "endpoint_filter", endpoint_filter)
|
448
|
-
|
449
|
-
@property
|
450
|
-
@pulumi.getter
|
451
|
-
def hostname(self) -> str:
|
452
|
-
"""
|
453
|
-
Required. The hostname of the EKM replica used at TLS and HTTP layers.
|
454
|
-
"""
|
455
|
-
return pulumi.get(self, "hostname")
|
456
|
-
|
457
|
-
@property
|
458
|
-
@pulumi.getter(name="serverCertificates")
|
459
|
-
def server_certificates(self) -> Sequence['outputs.EkmConnectionServiceResolverServerCertificate']:
|
460
|
-
"""
|
461
|
-
Required. A list of leaf server certificates used to authenticate HTTPS connections to the EKM replica. Currently, a maximum of 10 Certificate is supported.
|
462
|
-
Structure is documented below.
|
463
|
-
"""
|
464
|
-
return pulumi.get(self, "server_certificates")
|
465
|
-
|
466
|
-
@property
|
467
|
-
@pulumi.getter(name="serviceDirectoryService")
|
468
|
-
def service_directory_service(self) -> str:
|
469
|
-
"""
|
470
|
-
Required. The resource name of the Service Directory service pointing to an EKM replica, in the format projects/*/locations/*/namespaces/*/services/*
|
471
|
-
"""
|
472
|
-
return pulumi.get(self, "service_directory_service")
|
473
|
-
|
474
|
-
@property
|
475
|
-
@pulumi.getter(name="endpointFilter")
|
476
|
-
def endpoint_filter(self) -> Optional[str]:
|
477
|
-
"""
|
478
|
-
Optional. The filter applied to the endpoints of the resolved service. If no filter is specified, all endpoints will be considered. An endpoint will be chosen arbitrarily from the filtered list for each request. For endpoint filter syntax and examples, see https://cloud.google.com/service-directory/docs/reference/rpc/google.cloud.servicedirectory.v1#resolveservicerequest.
|
479
|
-
"""
|
480
|
-
return pulumi.get(self, "endpoint_filter")
|
481
|
-
|
482
|
-
|
483
|
-
@pulumi.output_type
|
484
|
-
class EkmConnectionServiceResolverServerCertificate(dict):
|
485
|
-
@staticmethod
|
486
|
-
def __key_warning(key: str):
|
487
|
-
suggest = None
|
488
|
-
if key == "rawDer":
|
489
|
-
suggest = "raw_der"
|
490
|
-
elif key == "notAfterTime":
|
491
|
-
suggest = "not_after_time"
|
492
|
-
elif key == "notBeforeTime":
|
493
|
-
suggest = "not_before_time"
|
494
|
-
elif key == "serialNumber":
|
495
|
-
suggest = "serial_number"
|
496
|
-
elif key == "sha256Fingerprint":
|
497
|
-
suggest = "sha256_fingerprint"
|
498
|
-
elif key == "subjectAlternativeDnsNames":
|
499
|
-
suggest = "subject_alternative_dns_names"
|
500
|
-
|
501
|
-
if suggest:
|
502
|
-
pulumi.log.warn(f"Key '{key}' not found in EkmConnectionServiceResolverServerCertificate. Access the value via the '{suggest}' property getter instead.")
|
503
|
-
|
504
|
-
def __getitem__(self, key: str) -> Any:
|
505
|
-
EkmConnectionServiceResolverServerCertificate.__key_warning(key)
|
506
|
-
return super().__getitem__(key)
|
507
|
-
|
508
|
-
def get(self, key: str, default = None) -> Any:
|
509
|
-
EkmConnectionServiceResolverServerCertificate.__key_warning(key)
|
510
|
-
return super().get(key, default)
|
511
|
-
|
512
|
-
def __init__(__self__, *,
|
513
|
-
raw_der: str,
|
514
|
-
issuer: Optional[str] = None,
|
515
|
-
not_after_time: Optional[str] = None,
|
516
|
-
not_before_time: Optional[str] = None,
|
517
|
-
parsed: Optional[bool] = None,
|
518
|
-
serial_number: Optional[str] = None,
|
519
|
-
sha256_fingerprint: Optional[str] = None,
|
520
|
-
subject: Optional[str] = None,
|
521
|
-
subject_alternative_dns_names: Optional[Sequence[str]] = None):
|
522
|
-
"""
|
523
|
-
:param str raw_der: Required. The raw certificate bytes in DER format. A base64-encoded string.
|
524
|
-
:param str issuer: (Output)
|
525
|
-
Output only. The issuer distinguished name in RFC 2253 format. Only present if parsed is true.
|
526
|
-
:param str not_after_time: (Output)
|
527
|
-
Output only. The certificate is not valid after this time. Only present if parsed is true.
|
528
|
-
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
|
529
|
-
:param str not_before_time: (Output)
|
530
|
-
Output only. The certificate is not valid before this time. Only present if parsed is true.
|
531
|
-
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
|
532
|
-
:param bool parsed: (Output)
|
533
|
-
Output only. True if the certificate was parsed successfully.
|
534
|
-
:param str serial_number: (Output)
|
535
|
-
Output only. The certificate serial number as a hex string. Only present if parsed is true.
|
536
|
-
:param str sha256_fingerprint: (Output)
|
537
|
-
Output only. The SHA-256 certificate fingerprint as a hex string. Only present if parsed is true.
|
538
|
-
:param str subject: (Output)
|
539
|
-
Output only. The subject distinguished name in RFC 2253 format. Only present if parsed is true.
|
540
|
-
:param Sequence[str] subject_alternative_dns_names: (Output)
|
541
|
-
Output only. The subject Alternative DNS names. Only present if parsed is true.
|
542
|
-
|
543
|
-
- - -
|
544
|
-
"""
|
545
|
-
pulumi.set(__self__, "raw_der", raw_der)
|
546
|
-
if issuer is not None:
|
547
|
-
pulumi.set(__self__, "issuer", issuer)
|
548
|
-
if not_after_time is not None:
|
549
|
-
pulumi.set(__self__, "not_after_time", not_after_time)
|
550
|
-
if not_before_time is not None:
|
551
|
-
pulumi.set(__self__, "not_before_time", not_before_time)
|
552
|
-
if parsed is not None:
|
553
|
-
pulumi.set(__self__, "parsed", parsed)
|
554
|
-
if serial_number is not None:
|
555
|
-
pulumi.set(__self__, "serial_number", serial_number)
|
556
|
-
if sha256_fingerprint is not None:
|
557
|
-
pulumi.set(__self__, "sha256_fingerprint", sha256_fingerprint)
|
558
|
-
if subject is not None:
|
559
|
-
pulumi.set(__self__, "subject", subject)
|
560
|
-
if subject_alternative_dns_names is not None:
|
561
|
-
pulumi.set(__self__, "subject_alternative_dns_names", subject_alternative_dns_names)
|
562
|
-
|
563
|
-
@property
|
564
|
-
@pulumi.getter(name="rawDer")
|
565
|
-
def raw_der(self) -> str:
|
566
|
-
"""
|
567
|
-
Required. The raw certificate bytes in DER format. A base64-encoded string.
|
568
|
-
"""
|
569
|
-
return pulumi.get(self, "raw_der")
|
570
|
-
|
571
|
-
@property
|
572
|
-
@pulumi.getter
|
573
|
-
def issuer(self) -> Optional[str]:
|
574
|
-
"""
|
575
|
-
(Output)
|
576
|
-
Output only. The issuer distinguished name in RFC 2253 format. Only present if parsed is true.
|
577
|
-
"""
|
578
|
-
return pulumi.get(self, "issuer")
|
579
|
-
|
580
|
-
@property
|
581
|
-
@pulumi.getter(name="notAfterTime")
|
582
|
-
def not_after_time(self) -> Optional[str]:
|
583
|
-
"""
|
584
|
-
(Output)
|
585
|
-
Output only. The certificate is not valid after this time. Only present if parsed is true.
|
586
|
-
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
|
587
|
-
"""
|
588
|
-
return pulumi.get(self, "not_after_time")
|
589
|
-
|
590
|
-
@property
|
591
|
-
@pulumi.getter(name="notBeforeTime")
|
592
|
-
def not_before_time(self) -> Optional[str]:
|
593
|
-
"""
|
594
|
-
(Output)
|
595
|
-
Output only. The certificate is not valid before this time. Only present if parsed is true.
|
596
|
-
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
|
597
|
-
"""
|
598
|
-
return pulumi.get(self, "not_before_time")
|
599
|
-
|
600
|
-
@property
|
601
|
-
@pulumi.getter
|
602
|
-
def parsed(self) -> Optional[bool]:
|
603
|
-
"""
|
604
|
-
(Output)
|
605
|
-
Output only. True if the certificate was parsed successfully.
|
606
|
-
"""
|
607
|
-
return pulumi.get(self, "parsed")
|
608
|
-
|
609
|
-
@property
|
610
|
-
@pulumi.getter(name="serialNumber")
|
611
|
-
def serial_number(self) -> Optional[str]:
|
612
|
-
"""
|
613
|
-
(Output)
|
614
|
-
Output only. The certificate serial number as a hex string. Only present if parsed is true.
|
615
|
-
"""
|
616
|
-
return pulumi.get(self, "serial_number")
|
617
|
-
|
618
|
-
@property
|
619
|
-
@pulumi.getter(name="sha256Fingerprint")
|
620
|
-
def sha256_fingerprint(self) -> Optional[str]:
|
621
|
-
"""
|
622
|
-
(Output)
|
623
|
-
Output only. The SHA-256 certificate fingerprint as a hex string. Only present if parsed is true.
|
624
|
-
"""
|
625
|
-
return pulumi.get(self, "sha256_fingerprint")
|
626
|
-
|
627
|
-
@property
|
628
|
-
@pulumi.getter
|
629
|
-
def subject(self) -> Optional[str]:
|
630
|
-
"""
|
631
|
-
(Output)
|
632
|
-
Output only. The subject distinguished name in RFC 2253 format. Only present if parsed is true.
|
633
|
-
"""
|
634
|
-
return pulumi.get(self, "subject")
|
635
|
-
|
636
|
-
@property
|
637
|
-
@pulumi.getter(name="subjectAlternativeDnsNames")
|
638
|
-
def subject_alternative_dns_names(self) -> Optional[Sequence[str]]:
|
639
|
-
"""
|
640
|
-
(Output)
|
641
|
-
Output only. The subject Alternative DNS names. Only present if parsed is true.
|
642
|
-
|
643
|
-
- - -
|
644
|
-
"""
|
645
|
-
return pulumi.get(self, "subject_alternative_dns_names")
|
646
|
-
|
647
|
-
|
648
406
|
@pulumi.output_type
|
649
407
|
class KeyRingIAMBindingCondition(dict):
|
650
408
|
def __init__(__self__, *,
|
@@ -12,7 +12,6 @@ from .address_group_iam_policy import *
|
|
12
12
|
from .authorization_policy import *
|
13
13
|
from .client_tls_policy import *
|
14
14
|
from .firewall_endpoint import *
|
15
|
-
from .firewall_endpoint_association import *
|
16
15
|
from .gateway_security_policy import *
|
17
16
|
from .gateway_security_policy_rule import *
|
18
17
|
from .get_address_group_iam_policy import *
|
pulumi_gcp/notebooks/instance.py
CHANGED
@@ -1507,10 +1507,6 @@ class Instance(pulumi.CustomResource):
|
|
1507
1507
|
"https://www.googleapis.com/auth/cloud-platform",
|
1508
1508
|
"https://www.googleapis.com/auth/userinfo.email",
|
1509
1509
|
],
|
1510
|
-
tags=[
|
1511
|
-
"foo",
|
1512
|
-
"bar",
|
1513
|
-
],
|
1514
1510
|
disk_encryption="CMEK",
|
1515
1511
|
kms_key="my-crypto-key",
|
1516
1512
|
desired_state="ACTIVE")
|
@@ -1761,10 +1757,6 @@ class Instance(pulumi.CustomResource):
|
|
1761
1757
|
"https://www.googleapis.com/auth/cloud-platform",
|
1762
1758
|
"https://www.googleapis.com/auth/userinfo.email",
|
1763
1759
|
],
|
1764
|
-
tags=[
|
1765
|
-
"foo",
|
1766
|
-
"bar",
|
1767
|
-
],
|
1768
1760
|
disk_encryption="CMEK",
|
1769
1761
|
kms_key="my-crypto-key",
|
1770
1762
|
desired_state="ACTIVE")
|
pulumi_gcp/orgpolicy/policy.py
CHANGED
@@ -306,7 +306,7 @@ class Policy(pulumi.CustomResource):
|
|
306
306
|
import pulumi_gcp as gcp
|
307
307
|
|
308
308
|
constraint = gcp.orgpolicy.CustomConstraint("constraint",
|
309
|
-
name="custom.
|
309
|
+
name="custom.disableGkeAutoUpgrade_75223",
|
310
310
|
parent="organizations/123456789",
|
311
311
|
display_name="Disable GKE auto upgrade",
|
312
312
|
description="Only allow GKE NodePool resource to be created or updated if AutoUpgrade is not enabled where this custom constraint is enforced.",
|
@@ -468,7 +468,7 @@ class Policy(pulumi.CustomResource):
|
|
468
468
|
import pulumi_gcp as gcp
|
469
469
|
|
470
470
|
constraint = gcp.orgpolicy.CustomConstraint("constraint",
|
471
|
-
name="custom.
|
471
|
+
name="custom.disableGkeAutoUpgrade_75223",
|
472
472
|
parent="organizations/123456789",
|
473
473
|
display_name="Disable GKE auto upgrade",
|
474
474
|
description="Only allow GKE NodePool resource to be created or updated if AutoUpgrade is not enabled where this custom constraint is enforced.",
|