pulumi-gcp 8.30.0a1746772896__py3-none-any.whl → 8.30.0a1747042890__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.
Files changed (36) hide show
  1. pulumi_gcp/__init__.py +16 -0
  2. pulumi_gcp/apigee/__init__.py +1 -0
  3. pulumi_gcp/apigee/_inputs.py +61 -0
  4. pulumi_gcp/apigee/outputs.py +36 -0
  5. pulumi_gcp/apigee/security_profile_v2.py +554 -0
  6. pulumi_gcp/bigtable/_inputs.py +24 -4
  7. pulumi_gcp/bigtable/outputs.py +15 -1
  8. pulumi_gcp/cloudrun/_inputs.py +18 -0
  9. pulumi_gcp/cloudrun/outputs.py +12 -0
  10. pulumi_gcp/cloudrunv2/_inputs.py +44 -1
  11. pulumi_gcp/cloudrunv2/job.py +50 -0
  12. pulumi_gcp/cloudrunv2/outputs.py +55 -3
  13. pulumi_gcp/compute/forwarding_rule.py +21 -0
  14. pulumi_gcp/compute/outputs.py +8 -0
  15. pulumi_gcp/config/__init__.pyi +2 -0
  16. pulumi_gcp/config/vars.py +4 -0
  17. pulumi_gcp/container/_inputs.py +6 -6
  18. pulumi_gcp/container/outputs.py +4 -4
  19. pulumi_gcp/filestore/_inputs.py +156 -0
  20. pulumi_gcp/filestore/get_instance.py +12 -1
  21. pulumi_gcp/filestore/instance.py +47 -0
  22. pulumi_gcp/filestore/outputs.py +202 -0
  23. pulumi_gcp/networkconnectivity/_inputs.py +74 -0
  24. pulumi_gcp/networkconnectivity/outputs.py +61 -0
  25. pulumi_gcp/networkconnectivity/spoke.py +32 -0
  26. pulumi_gcp/provider.py +20 -0
  27. pulumi_gcp/pulumi-plugin.json +1 -1
  28. pulumi_gcp/resourcemanager/__init__.py +1 -0
  29. pulumi_gcp/resourcemanager/capability.py +346 -0
  30. pulumi_gcp/sql/_inputs.py +126 -0
  31. pulumi_gcp/sql/outputs.py +239 -4
  32. pulumi_gcp/tpu/node.py +4 -0
  33. {pulumi_gcp-8.30.0a1746772896.dist-info → pulumi_gcp-8.30.0a1747042890.dist-info}/METADATA +1 -1
  34. {pulumi_gcp-8.30.0a1746772896.dist-info → pulumi_gcp-8.30.0a1747042890.dist-info}/RECORD +36 -34
  35. {pulumi_gcp-8.30.0a1746772896.dist-info → pulumi_gcp-8.30.0a1747042890.dist-info}/WHEEL +1 -1
  36. {pulumi_gcp-8.30.0a1746772896.dist-info → pulumi_gcp-8.30.0a1747042890.dist-info}/top_level.txt +0 -0
pulumi_gcp/__init__.py CHANGED
@@ -918,6 +918,14 @@ _utilities.register(
918
918
  "gcp:apigee/organization:Organization": "Organization"
919
919
  }
920
920
  },
921
+ {
922
+ "pkg": "gcp",
923
+ "mod": "apigee/securityProfileV2",
924
+ "fqn": "pulumi_gcp.apigee",
925
+ "classes": {
926
+ "gcp:apigee/securityProfileV2:SecurityProfileV2": "SecurityProfileV2"
927
+ }
928
+ },
921
929
  {
922
930
  "pkg": "gcp",
923
931
  "mod": "apigee/sharedflow",
@@ -8006,6 +8014,14 @@ _utilities.register(
8006
8014
  "gcp:redis/instance:Instance": "Instance"
8007
8015
  }
8008
8016
  },
8017
+ {
8018
+ "pkg": "gcp",
8019
+ "mod": "resourcemanager/capability",
8020
+ "fqn": "pulumi_gcp.resourcemanager",
8021
+ "classes": {
8022
+ "gcp:resourcemanager/capability:Capability": "Capability"
8023
+ }
8024
+ },
8009
8025
  {
8010
8026
  "pkg": "gcp",
8011
8027
  "mod": "resourcemanager/lien",
@@ -33,6 +33,7 @@ from .keystores_aliases_pkcs12 import *
33
33
  from .keystores_aliases_self_signed_cert import *
34
34
  from .nat_address import *
35
35
  from .organization import *
36
+ from .security_profile_v2 import *
36
37
  from .sharedflow import *
37
38
  from .sharedflow_deployment import *
38
39
  from .sync_authorization import *
@@ -66,6 +66,8 @@ __all__ = [
66
66
  'OrganizationPropertiesArgsDict',
67
67
  'OrganizationPropertiesPropertyArgs',
68
68
  'OrganizationPropertiesPropertyArgsDict',
69
+ 'SecurityProfileV2ProfileAssessmentConfigArgs',
70
+ 'SecurityProfileV2ProfileAssessmentConfigArgsDict',
69
71
  'SharedflowMetaDataArgs',
70
72
  'SharedflowMetaDataArgsDict',
71
73
  'TargetServerSSlInfoArgs',
@@ -2107,6 +2109,65 @@ class OrganizationPropertiesPropertyArgs:
2107
2109
  pulumi.set(self, "value", value)
2108
2110
 
2109
2111
 
2112
+ if not MYPY:
2113
+ class SecurityProfileV2ProfileAssessmentConfigArgsDict(TypedDict):
2114
+ assessment: pulumi.Input[builtins.str]
2115
+ """
2116
+ The identifier for this object. Format specified above.
2117
+ """
2118
+ weight: pulumi.Input[builtins.str]
2119
+ """
2120
+ The weight of the assessment.
2121
+ Possible values are: `MINOR`, `MODERATE`, `MAJOR`.
2122
+
2123
+ - - -
2124
+ """
2125
+ elif False:
2126
+ SecurityProfileV2ProfileAssessmentConfigArgsDict: TypeAlias = Mapping[str, Any]
2127
+
2128
+ @pulumi.input_type
2129
+ class SecurityProfileV2ProfileAssessmentConfigArgs:
2130
+ def __init__(__self__, *,
2131
+ assessment: pulumi.Input[builtins.str],
2132
+ weight: pulumi.Input[builtins.str]):
2133
+ """
2134
+ :param pulumi.Input[builtins.str] assessment: The identifier for this object. Format specified above.
2135
+ :param pulumi.Input[builtins.str] weight: The weight of the assessment.
2136
+ Possible values are: `MINOR`, `MODERATE`, `MAJOR`.
2137
+
2138
+ - - -
2139
+ """
2140
+ pulumi.set(__self__, "assessment", assessment)
2141
+ pulumi.set(__self__, "weight", weight)
2142
+
2143
+ @property
2144
+ @pulumi.getter
2145
+ def assessment(self) -> pulumi.Input[builtins.str]:
2146
+ """
2147
+ The identifier for this object. Format specified above.
2148
+ """
2149
+ return pulumi.get(self, "assessment")
2150
+
2151
+ @assessment.setter
2152
+ def assessment(self, value: pulumi.Input[builtins.str]):
2153
+ pulumi.set(self, "assessment", value)
2154
+
2155
+ @property
2156
+ @pulumi.getter
2157
+ def weight(self) -> pulumi.Input[builtins.str]:
2158
+ """
2159
+ The weight of the assessment.
2160
+ Possible values are: `MINOR`, `MODERATE`, `MAJOR`.
2161
+
2162
+ - - -
2163
+ """
2164
+ return pulumi.get(self, "weight")
2165
+
2166
+ @weight.setter
2167
+ def weight(self, value: pulumi.Input[builtins.str]):
2168
+ pulumi.set(self, "weight", value)
2169
+
2170
+
2110
2171
  if not MYPY:
2111
2172
  class SharedflowMetaDataArgsDict(TypedDict):
2112
2173
  created_at: NotRequired[pulumi.Input[builtins.str]]
@@ -42,6 +42,7 @@ __all__ = [
42
42
  'KeystoresAliasesSelfSignedCertSubjectAlternativeDnsNames',
43
43
  'OrganizationProperties',
44
44
  'OrganizationPropertiesProperty',
45
+ 'SecurityProfileV2ProfileAssessmentConfig',
45
46
  'SharedflowMetaData',
46
47
  'TargetServerSSlInfo',
47
48
  'TargetServerSSlInfoCommonName',
@@ -1572,6 +1573,41 @@ class OrganizationPropertiesProperty(dict):
1572
1573
  return pulumi.get(self, "value")
1573
1574
 
1574
1575
 
1576
+ @pulumi.output_type
1577
+ class SecurityProfileV2ProfileAssessmentConfig(dict):
1578
+ def __init__(__self__, *,
1579
+ assessment: builtins.str,
1580
+ weight: builtins.str):
1581
+ """
1582
+ :param builtins.str assessment: The identifier for this object. Format specified above.
1583
+ :param builtins.str weight: The weight of the assessment.
1584
+ Possible values are: `MINOR`, `MODERATE`, `MAJOR`.
1585
+
1586
+ - - -
1587
+ """
1588
+ pulumi.set(__self__, "assessment", assessment)
1589
+ pulumi.set(__self__, "weight", weight)
1590
+
1591
+ @property
1592
+ @pulumi.getter
1593
+ def assessment(self) -> builtins.str:
1594
+ """
1595
+ The identifier for this object. Format specified above.
1596
+ """
1597
+ return pulumi.get(self, "assessment")
1598
+
1599
+ @property
1600
+ @pulumi.getter
1601
+ def weight(self) -> builtins.str:
1602
+ """
1603
+ The weight of the assessment.
1604
+ Possible values are: `MINOR`, `MODERATE`, `MAJOR`.
1605
+
1606
+ - - -
1607
+ """
1608
+ return pulumi.get(self, "weight")
1609
+
1610
+
1575
1611
  @pulumi.output_type
1576
1612
  class SharedflowMetaData(dict):
1577
1613
  @staticmethod