pulumi-gcp 7.7.0a1705990280__py3-none-any.whl → 7.8.0a1706310284__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- pulumi_gcp/__init__.py +56 -0
- pulumi_gcp/alloydb/cluster.py +26 -21
- pulumi_gcp/bigquery/_inputs.py +231 -0
- pulumi_gcp/bigquery/outputs.py +229 -0
- pulumi_gcp/bigquery/routine.py +256 -10
- pulumi_gcp/bigquery/table.py +47 -0
- pulumi_gcp/cloudbuildv2/repository.py +60 -53
- pulumi_gcp/cloudrunv2/_inputs.py +176 -4
- pulumi_gcp/cloudrunv2/outputs.py +256 -3
- pulumi_gcp/cloudrunv2/service.py +148 -0
- pulumi_gcp/composer/_inputs.py +24 -0
- pulumi_gcp/composer/outputs.py +34 -0
- pulumi_gcp/compute/_inputs.py +4 -2
- pulumi_gcp/compute/disk.py +14 -14
- pulumi_gcp/compute/outputs.py +4 -2
- pulumi_gcp/healthcare/fhir_store.py +56 -0
- pulumi_gcp/kms/crypto_key.py +2 -2
- pulumi_gcp/kms/crypto_key_iam_binding.py +2 -2
- pulumi_gcp/kms/crypto_key_iam_member.py +2 -2
- pulumi_gcp/kms/crypto_key_iam_policy.py +2 -2
- pulumi_gcp/kms/crypto_key_version.py +2 -2
- pulumi_gcp/kms/secret_ciphertext.py +2 -2
- pulumi_gcp/netapp/__init__.py +4 -0
- pulumi_gcp/netapp/_inputs.py +643 -0
- pulumi_gcp/netapp/backup_policy.py +829 -0
- pulumi_gcp/netapp/kmsconfig.py +2 -2
- pulumi_gcp/netapp/outputs.py +651 -0
- pulumi_gcp/netapp/volume.py +1467 -0
- pulumi_gcp/networksecurity/__init__.py +5 -0
- pulumi_gcp/networksecurity/_inputs.py +228 -0
- pulumi_gcp/networksecurity/address_group_iam_binding.py +324 -0
- pulumi_gcp/networksecurity/address_group_iam_member.py +324 -0
- pulumi_gcp/networksecurity/address_group_iam_policy.py +492 -0
- pulumi_gcp/networksecurity/get_address_group_iam_policy.py +144 -0
- pulumi_gcp/networksecurity/outputs.py +212 -0
- pulumi_gcp/networksecurity/security_profile.py +800 -0
- pulumi_gcp/networkservices/gateway.py +1 -1
- pulumi_gcp/organizations/get_folders.py +1 -1
- pulumi_gcp/orgpolicy/_inputs.py +12 -12
- pulumi_gcp/orgpolicy/outputs.py +12 -12
- pulumi_gcp/securesourcemanager/instance.py +4 -2
- pulumi_gcp/storage/insights_report_config.py +12 -10
- pulumi_gcp/vertex/__init__.py +1 -0
- pulumi_gcp/vertex/ai_feature_group_feature.py +767 -0
- pulumi_gcp/workstations/workstation_config.py +47 -0
- {pulumi_gcp-7.7.0a1705990280.dist-info → pulumi_gcp-7.8.0a1706310284.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.7.0a1705990280.dist-info → pulumi_gcp-7.8.0a1706310284.dist-info}/RECORD +49 -39
- {pulumi_gcp-7.7.0a1705990280.dist-info → pulumi_gcp-7.8.0a1706310284.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.7.0a1705990280.dist-info → pulumi_gcp-7.8.0a1706310284.dist-info}/top_level.txt +0 -0
@@ -11,6 +11,8 @@ from .. import _utilities
|
|
11
11
|
from . import outputs
|
12
12
|
|
13
13
|
__all__ = [
|
14
|
+
'AddressGroupIamBindingCondition',
|
15
|
+
'AddressGroupIamMemberCondition',
|
14
16
|
'AuthorizationPolicyRule',
|
15
17
|
'AuthorizationPolicyRuleDestination',
|
16
18
|
'AuthorizationPolicyRuleDestinationHttpHeaderMatch',
|
@@ -21,6 +23,9 @@ __all__ = [
|
|
21
23
|
'ClientTlsPolicyServerValidationCa',
|
22
24
|
'ClientTlsPolicyServerValidationCaCertificateProviderInstance',
|
23
25
|
'ClientTlsPolicyServerValidationCaGrpcEndpoint',
|
26
|
+
'SecurityProfileThreatPreventionProfile',
|
27
|
+
'SecurityProfileThreatPreventionProfileSeverityOverride',
|
28
|
+
'SecurityProfileThreatPreventionProfileThreatOverride',
|
24
29
|
'ServerTlsPolicyMtlsPolicy',
|
25
30
|
'ServerTlsPolicyMtlsPolicyClientValidationCa',
|
26
31
|
'ServerTlsPolicyMtlsPolicyClientValidationCaCertificateProviderInstance',
|
@@ -30,6 +35,60 @@ __all__ = [
|
|
30
35
|
'ServerTlsPolicyServerCertificateGrpcEndpoint',
|
31
36
|
]
|
32
37
|
|
38
|
+
@pulumi.output_type
|
39
|
+
class AddressGroupIamBindingCondition(dict):
|
40
|
+
def __init__(__self__, *,
|
41
|
+
expression: str,
|
42
|
+
title: str,
|
43
|
+
description: Optional[str] = None):
|
44
|
+
pulumi.set(__self__, "expression", expression)
|
45
|
+
pulumi.set(__self__, "title", title)
|
46
|
+
if description is not None:
|
47
|
+
pulumi.set(__self__, "description", description)
|
48
|
+
|
49
|
+
@property
|
50
|
+
@pulumi.getter
|
51
|
+
def expression(self) -> str:
|
52
|
+
return pulumi.get(self, "expression")
|
53
|
+
|
54
|
+
@property
|
55
|
+
@pulumi.getter
|
56
|
+
def title(self) -> str:
|
57
|
+
return pulumi.get(self, "title")
|
58
|
+
|
59
|
+
@property
|
60
|
+
@pulumi.getter
|
61
|
+
def description(self) -> Optional[str]:
|
62
|
+
return pulumi.get(self, "description")
|
63
|
+
|
64
|
+
|
65
|
+
@pulumi.output_type
|
66
|
+
class AddressGroupIamMemberCondition(dict):
|
67
|
+
def __init__(__self__, *,
|
68
|
+
expression: str,
|
69
|
+
title: str,
|
70
|
+
description: Optional[str] = None):
|
71
|
+
pulumi.set(__self__, "expression", expression)
|
72
|
+
pulumi.set(__self__, "title", title)
|
73
|
+
if description is not None:
|
74
|
+
pulumi.set(__self__, "description", description)
|
75
|
+
|
76
|
+
@property
|
77
|
+
@pulumi.getter
|
78
|
+
def expression(self) -> str:
|
79
|
+
return pulumi.get(self, "expression")
|
80
|
+
|
81
|
+
@property
|
82
|
+
@pulumi.getter
|
83
|
+
def title(self) -> str:
|
84
|
+
return pulumi.get(self, "title")
|
85
|
+
|
86
|
+
@property
|
87
|
+
@pulumi.getter
|
88
|
+
def description(self) -> Optional[str]:
|
89
|
+
return pulumi.get(self, "description")
|
90
|
+
|
91
|
+
|
33
92
|
@pulumi.output_type
|
34
93
|
class AuthorizationPolicyRule(dict):
|
35
94
|
def __init__(__self__, *,
|
@@ -490,6 +549,159 @@ class ClientTlsPolicyServerValidationCaGrpcEndpoint(dict):
|
|
490
549
|
return pulumi.get(self, "target_uri")
|
491
550
|
|
492
551
|
|
552
|
+
@pulumi.output_type
|
553
|
+
class SecurityProfileThreatPreventionProfile(dict):
|
554
|
+
@staticmethod
|
555
|
+
def __key_warning(key: str):
|
556
|
+
suggest = None
|
557
|
+
if key == "severityOverrides":
|
558
|
+
suggest = "severity_overrides"
|
559
|
+
elif key == "threatOverrides":
|
560
|
+
suggest = "threat_overrides"
|
561
|
+
|
562
|
+
if suggest:
|
563
|
+
pulumi.log.warn(f"Key '{key}' not found in SecurityProfileThreatPreventionProfile. Access the value via the '{suggest}' property getter instead.")
|
564
|
+
|
565
|
+
def __getitem__(self, key: str) -> Any:
|
566
|
+
SecurityProfileThreatPreventionProfile.__key_warning(key)
|
567
|
+
return super().__getitem__(key)
|
568
|
+
|
569
|
+
def get(self, key: str, default = None) -> Any:
|
570
|
+
SecurityProfileThreatPreventionProfile.__key_warning(key)
|
571
|
+
return super().get(key, default)
|
572
|
+
|
573
|
+
def __init__(__self__, *,
|
574
|
+
severity_overrides: Optional[Sequence['outputs.SecurityProfileThreatPreventionProfileSeverityOverride']] = None,
|
575
|
+
threat_overrides: Optional[Sequence['outputs.SecurityProfileThreatPreventionProfileThreatOverride']] = None):
|
576
|
+
"""
|
577
|
+
:param Sequence['SecurityProfileThreatPreventionProfileSeverityOverrideArgs'] severity_overrides: The configuration for overriding threats actions by severity match.
|
578
|
+
Structure is documented below.
|
579
|
+
:param Sequence['SecurityProfileThreatPreventionProfileThreatOverrideArgs'] threat_overrides: The configuration for overriding threats actions by threat id match.
|
580
|
+
If a threat is matched both by configuration provided in severity overrides
|
581
|
+
and threat overrides, the threat overrides action is applied.
|
582
|
+
Structure is documented below.
|
583
|
+
"""
|
584
|
+
if severity_overrides is not None:
|
585
|
+
pulumi.set(__self__, "severity_overrides", severity_overrides)
|
586
|
+
if threat_overrides is not None:
|
587
|
+
pulumi.set(__self__, "threat_overrides", threat_overrides)
|
588
|
+
|
589
|
+
@property
|
590
|
+
@pulumi.getter(name="severityOverrides")
|
591
|
+
def severity_overrides(self) -> Optional[Sequence['outputs.SecurityProfileThreatPreventionProfileSeverityOverride']]:
|
592
|
+
"""
|
593
|
+
The configuration for overriding threats actions by severity match.
|
594
|
+
Structure is documented below.
|
595
|
+
"""
|
596
|
+
return pulumi.get(self, "severity_overrides")
|
597
|
+
|
598
|
+
@property
|
599
|
+
@pulumi.getter(name="threatOverrides")
|
600
|
+
def threat_overrides(self) -> Optional[Sequence['outputs.SecurityProfileThreatPreventionProfileThreatOverride']]:
|
601
|
+
"""
|
602
|
+
The configuration for overriding threats actions by threat id match.
|
603
|
+
If a threat is matched both by configuration provided in severity overrides
|
604
|
+
and threat overrides, the threat overrides action is applied.
|
605
|
+
Structure is documented below.
|
606
|
+
"""
|
607
|
+
return pulumi.get(self, "threat_overrides")
|
608
|
+
|
609
|
+
|
610
|
+
@pulumi.output_type
|
611
|
+
class SecurityProfileThreatPreventionProfileSeverityOverride(dict):
|
612
|
+
def __init__(__self__, *,
|
613
|
+
action: str,
|
614
|
+
severity: str):
|
615
|
+
"""
|
616
|
+
:param str action: Threat action override.
|
617
|
+
Possible values are: `ALERT`, `ALLOW`, `DEFAULT_ACTION`, `DENY`.
|
618
|
+
:param str severity: Severity level to match.
|
619
|
+
Possible values are: `CRITICAL`, `HIGH`, `INFORMATIONAL`, `LOW`, `MEDIUM`.
|
620
|
+
"""
|
621
|
+
pulumi.set(__self__, "action", action)
|
622
|
+
pulumi.set(__self__, "severity", severity)
|
623
|
+
|
624
|
+
@property
|
625
|
+
@pulumi.getter
|
626
|
+
def action(self) -> str:
|
627
|
+
"""
|
628
|
+
Threat action override.
|
629
|
+
Possible values are: `ALERT`, `ALLOW`, `DEFAULT_ACTION`, `DENY`.
|
630
|
+
"""
|
631
|
+
return pulumi.get(self, "action")
|
632
|
+
|
633
|
+
@property
|
634
|
+
@pulumi.getter
|
635
|
+
def severity(self) -> str:
|
636
|
+
"""
|
637
|
+
Severity level to match.
|
638
|
+
Possible values are: `CRITICAL`, `HIGH`, `INFORMATIONAL`, `LOW`, `MEDIUM`.
|
639
|
+
"""
|
640
|
+
return pulumi.get(self, "severity")
|
641
|
+
|
642
|
+
|
643
|
+
@pulumi.output_type
|
644
|
+
class SecurityProfileThreatPreventionProfileThreatOverride(dict):
|
645
|
+
@staticmethod
|
646
|
+
def __key_warning(key: str):
|
647
|
+
suggest = None
|
648
|
+
if key == "threatId":
|
649
|
+
suggest = "threat_id"
|
650
|
+
|
651
|
+
if suggest:
|
652
|
+
pulumi.log.warn(f"Key '{key}' not found in SecurityProfileThreatPreventionProfileThreatOverride. Access the value via the '{suggest}' property getter instead.")
|
653
|
+
|
654
|
+
def __getitem__(self, key: str) -> Any:
|
655
|
+
SecurityProfileThreatPreventionProfileThreatOverride.__key_warning(key)
|
656
|
+
return super().__getitem__(key)
|
657
|
+
|
658
|
+
def get(self, key: str, default = None) -> Any:
|
659
|
+
SecurityProfileThreatPreventionProfileThreatOverride.__key_warning(key)
|
660
|
+
return super().get(key, default)
|
661
|
+
|
662
|
+
def __init__(__self__, *,
|
663
|
+
action: str,
|
664
|
+
threat_id: str,
|
665
|
+
type: Optional[str] = None):
|
666
|
+
"""
|
667
|
+
:param str action: Threat action.
|
668
|
+
Possible values are: `ALERT`, `ALLOW`, `DEFAULT_ACTION`, `DENY`.
|
669
|
+
:param str threat_id: Vendor-specific ID of a threat to override.
|
670
|
+
:param str type: (Output)
|
671
|
+
Type of threat.
|
672
|
+
"""
|
673
|
+
pulumi.set(__self__, "action", action)
|
674
|
+
pulumi.set(__self__, "threat_id", threat_id)
|
675
|
+
if type is not None:
|
676
|
+
pulumi.set(__self__, "type", type)
|
677
|
+
|
678
|
+
@property
|
679
|
+
@pulumi.getter
|
680
|
+
def action(self) -> str:
|
681
|
+
"""
|
682
|
+
Threat action.
|
683
|
+
Possible values are: `ALERT`, `ALLOW`, `DEFAULT_ACTION`, `DENY`.
|
684
|
+
"""
|
685
|
+
return pulumi.get(self, "action")
|
686
|
+
|
687
|
+
@property
|
688
|
+
@pulumi.getter(name="threatId")
|
689
|
+
def threat_id(self) -> str:
|
690
|
+
"""
|
691
|
+
Vendor-specific ID of a threat to override.
|
692
|
+
"""
|
693
|
+
return pulumi.get(self, "threat_id")
|
694
|
+
|
695
|
+
@property
|
696
|
+
@pulumi.getter
|
697
|
+
def type(self) -> Optional[str]:
|
698
|
+
"""
|
699
|
+
(Output)
|
700
|
+
Type of threat.
|
701
|
+
"""
|
702
|
+
return pulumi.get(self, "type")
|
703
|
+
|
704
|
+
|
493
705
|
@pulumi.output_type
|
494
706
|
class ServerTlsPolicyMtlsPolicy(dict):
|
495
707
|
@staticmethod
|