pulumi-gcp 8.17.0a1738274430__py3-none-any.whl → 8.18.0__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 +115 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_resource.py +28 -0
- pulumi_gcp/alloydb/cluster.py +75 -7
- pulumi_gcp/alloydb/user.py +10 -1
- pulumi_gcp/apigee/_inputs.py +91 -0
- pulumi_gcp/apigee/endpoint_attachment.py +0 -64
- pulumi_gcp/apigee/environment.py +54 -0
- pulumi_gcp/apigee/outputs.py +54 -0
- pulumi_gcp/apihub/__init__.py +10 -0
- pulumi_gcp/apihub/_inputs.py +154 -0
- pulumi_gcp/apihub/api_hub_instance.py +784 -0
- pulumi_gcp/apihub/outputs.py +124 -0
- pulumi_gcp/assuredworkloads/workload.py +7 -7
- pulumi_gcp/beyondcorp/__init__.py +4 -0
- pulumi_gcp/beyondcorp/_inputs.py +130 -0
- pulumi_gcp/beyondcorp/get_security_gateway_iam_policy.py +180 -0
- pulumi_gcp/beyondcorp/outputs.py +76 -0
- pulumi_gcp/beyondcorp/security_gateway.py +52 -25
- pulumi_gcp/beyondcorp/security_gateway_iam_binding.py +1075 -0
- pulumi_gcp/beyondcorp/security_gateway_iam_member.py +1075 -0
- pulumi_gcp/beyondcorp/security_gateway_iam_policy.py +894 -0
- pulumi_gcp/bigquery/_inputs.py +33 -0
- pulumi_gcp/bigquery/dataset.py +7 -7
- pulumi_gcp/bigquery/outputs.py +36 -0
- pulumi_gcp/bigquery/table.py +61 -7
- pulumi_gcp/chronicle/__init__.py +1 -0
- pulumi_gcp/chronicle/_inputs.py +124 -0
- pulumi_gcp/chronicle/outputs.py +112 -0
- pulumi_gcp/chronicle/retrohunt.py +629 -0
- pulumi_gcp/cloudquota/s_quota_adjuster_settings.py +23 -23
- pulumi_gcp/cloudrunv2/_inputs.py +197 -0
- pulumi_gcp/cloudrunv2/get_service.py +12 -1
- pulumi_gcp/cloudrunv2/outputs.py +256 -0
- pulumi_gcp/cloudrunv2/service.py +159 -0
- pulumi_gcp/colab/__init__.py +5 -0
- pulumi_gcp/colab/_inputs.py +131 -0
- pulumi_gcp/colab/get_runtime_template_iam_policy.py +182 -0
- pulumi_gcp/colab/outputs.py +92 -0
- pulumi_gcp/colab/runtime.py +696 -0
- pulumi_gcp/colab/runtime_template_iam_binding.py +828 -0
- pulumi_gcp/colab/runtime_template_iam_member.py +828 -0
- pulumi_gcp/colab/runtime_template_iam_policy.py +667 -0
- pulumi_gcp/compute/__init__.py +4 -0
- pulumi_gcp/compute/_inputs.py +535 -9
- pulumi_gcp/compute/firewall_policy_rule.py +104 -22
- pulumi_gcp/compute/firewall_policy_with_rules.py +114 -42
- pulumi_gcp/compute/get_instance_template_iam_policy.py +159 -0
- pulumi_gcp/compute/get_network.py +3 -3
- pulumi_gcp/compute/instance_template_iam_binding.py +998 -0
- pulumi_gcp/compute/instance_template_iam_member.py +998 -0
- pulumi_gcp/compute/instance_template_iam_policy.py +817 -0
- pulumi_gcp/compute/interconnect_attachment.py +189 -2
- pulumi_gcp/compute/network.py +7 -7
- pulumi_gcp/compute/network_firewall_policy_rule.py +122 -10
- pulumi_gcp/compute/network_firewall_policy_with_rules.py +116 -44
- pulumi_gcp/compute/outputs.py +358 -6
- pulumi_gcp/compute/project_metadata_item.py +12 -0
- pulumi_gcp/compute/public_advertised_prefix.py +87 -0
- pulumi_gcp/compute/region_network_firewall_policy_rule.py +130 -10
- pulumi_gcp/compute/region_network_firewall_policy_with_rules.py +104 -32
- pulumi_gcp/compute/router_peer.py +227 -3
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +79 -20
- pulumi_gcp/container/outputs.py +75 -12
- pulumi_gcp/dataproc/_inputs.py +34 -0
- pulumi_gcp/dataproc/outputs.py +37 -0
- pulumi_gcp/dataproc/workflow_template.py +47 -0
- pulumi_gcp/filestore/get_instance.py +12 -1
- pulumi_gcp/filestore/instance.py +75 -0
- pulumi_gcp/firestore/field.py +60 -0
- pulumi_gcp/gemini/code_repository_index.py +29 -33
- pulumi_gcp/gemini/get_repository_group_iam_policy.py +28 -2
- pulumi_gcp/gemini/repository_group.py +76 -26
- pulumi_gcp/gemini/repository_group_iam_binding.py +258 -0
- pulumi_gcp/gemini/repository_group_iam_member.py +258 -0
- pulumi_gcp/gemini/repository_group_iam_policy.py +258 -0
- pulumi_gcp/gkehub/_inputs.py +20 -0
- pulumi_gcp/gkehub/membership_binding.py +6 -6
- pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
- pulumi_gcp/gkehub/namespace.py +4 -4
- pulumi_gcp/gkehub/outputs.py +26 -1
- pulumi_gcp/gkehub/scope_rbac_role_binding.py +4 -4
- pulumi_gcp/iap/tunnel_dest_group.py +2 -2
- pulumi_gcp/integrationconnectors/managed_zone.py +8 -8
- pulumi_gcp/kms/__init__.py +1 -0
- pulumi_gcp/kms/get_key_handles.py +172 -0
- pulumi_gcp/kms/outputs.py +45 -0
- pulumi_gcp/netapp/storage_pool.py +1 -1
- pulumi_gcp/networkconnectivity/spoke.py +76 -14
- pulumi_gcp/networksecurity/_inputs.py +72 -0
- pulumi_gcp/networksecurity/outputs.py +76 -0
- pulumi_gcp/networksecurity/security_profile.py +233 -7
- pulumi_gcp/networksecurity/security_profile_group.py +218 -0
- pulumi_gcp/organizations/__init__.py +1 -0
- pulumi_gcp/organizations/get_s.py +128 -0
- pulumi_gcp/organizations/outputs.py +63 -0
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/parametermanager/__init__.py +6 -0
- pulumi_gcp/parametermanager/get_parameter.py +211 -0
- pulumi_gcp/parametermanager/get_parameter_version.py +216 -0
- pulumi_gcp/parametermanager/get_parameters.py +140 -0
- pulumi_gcp/parametermanager/get_regional_parameter_version.py +235 -0
- pulumi_gcp/parametermanager/get_regional_parameters.py +157 -0
- pulumi_gcp/parametermanager/outputs.py +366 -0
- pulumi_gcp/parametermanager/parameter_version.py +496 -0
- pulumi_gcp/parametermanager/regional_parameter_version.py +10 -38
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pubsub/_inputs.py +477 -1
- pulumi_gcp/pubsub/outputs.py +631 -2
- pulumi_gcp/pubsub/subscription.py +6 -6
- pulumi_gcp/pubsub/topic.py +112 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/__init__.py +1 -0
- pulumi_gcp/redis/_inputs.py +342 -6
- pulumi_gcp/redis/cluster.py +223 -102
- pulumi_gcp/redis/cluster_user_created_connections.py +845 -0
- pulumi_gcp/redis/outputs.py +268 -4
- pulumi_gcp/resourcemanager/lien.py +12 -0
- pulumi_gcp/secretmanager/regional_secret.py +4 -0
- pulumi_gcp/secretmanager/regional_secret_version.py +12 -0
- pulumi_gcp/secretmanager/secret.py +4 -0
- pulumi_gcp/secretmanager/secret_version.py +12 -0
- pulumi_gcp/securityposture/posture.py +4 -0
- pulumi_gcp/securityposture/posture_deployment.py +4 -0
- pulumi_gcp/serviceaccount/get_s.py +98 -8
- pulumi_gcp/spanner/_inputs.py +68 -0
- pulumi_gcp/spanner/backup_schedule.py +70 -4
- pulumi_gcp/spanner/outputs.py +60 -0
- pulumi_gcp/storage/get_bucket_object_content.py +4 -4
- pulumi_gcp/vertex/ai_endpoint.py +4 -4
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
- pulumi_gcp/workflows/workflow.py +175 -0
- {pulumi_gcp-8.17.0a1738274430.dist-info → pulumi_gcp-8.18.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.17.0a1738274430.dist-info → pulumi_gcp-8.18.0.dist-info}/RECORD +137 -110
- {pulumi_gcp-8.17.0a1738274430.dist-info → pulumi_gcp-8.18.0.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.17.0a1738274430.dist-info → pulumi_gcp-8.18.0.dist-info}/top_level.txt +0 -0
pulumi_gcp/apigee/_inputs.py
CHANGED
@@ -39,6 +39,10 @@ __all__ = [
|
|
39
39
|
'EnvironmentIamMemberConditionArgsDict',
|
40
40
|
'EnvironmentNodeConfigArgs',
|
41
41
|
'EnvironmentNodeConfigArgsDict',
|
42
|
+
'EnvironmentPropertiesArgs',
|
43
|
+
'EnvironmentPropertiesArgsDict',
|
44
|
+
'EnvironmentPropertiesPropertyArgs',
|
45
|
+
'EnvironmentPropertiesPropertyArgsDict',
|
42
46
|
'KeystoresAliasesKeyCertFileCertsInfoArgs',
|
43
47
|
'KeystoresAliasesKeyCertFileCertsInfoArgsDict',
|
44
48
|
'KeystoresAliasesKeyCertFileCertsInfoCertInfoArgs',
|
@@ -762,6 +766,93 @@ class EnvironmentNodeConfigArgs:
|
|
762
766
|
pulumi.set(self, "min_node_count", value)
|
763
767
|
|
764
768
|
|
769
|
+
if not MYPY:
|
770
|
+
class EnvironmentPropertiesArgsDict(TypedDict):
|
771
|
+
properties: NotRequired[pulumi.Input[Sequence[pulumi.Input['EnvironmentPropertiesPropertyArgsDict']]]]
|
772
|
+
"""
|
773
|
+
List of all properties in the object.
|
774
|
+
Structure is documented below.
|
775
|
+
"""
|
776
|
+
elif False:
|
777
|
+
EnvironmentPropertiesArgsDict: TypeAlias = Mapping[str, Any]
|
778
|
+
|
779
|
+
@pulumi.input_type
|
780
|
+
class EnvironmentPropertiesArgs:
|
781
|
+
def __init__(__self__, *,
|
782
|
+
properties: Optional[pulumi.Input[Sequence[pulumi.Input['EnvironmentPropertiesPropertyArgs']]]] = None):
|
783
|
+
"""
|
784
|
+
:param pulumi.Input[Sequence[pulumi.Input['EnvironmentPropertiesPropertyArgs']]] properties: List of all properties in the object.
|
785
|
+
Structure is documented below.
|
786
|
+
"""
|
787
|
+
if properties is not None:
|
788
|
+
pulumi.set(__self__, "properties", properties)
|
789
|
+
|
790
|
+
@property
|
791
|
+
@pulumi.getter
|
792
|
+
def properties(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['EnvironmentPropertiesPropertyArgs']]]]:
|
793
|
+
"""
|
794
|
+
List of all properties in the object.
|
795
|
+
Structure is documented below.
|
796
|
+
"""
|
797
|
+
return pulumi.get(self, "properties")
|
798
|
+
|
799
|
+
@properties.setter
|
800
|
+
def properties(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['EnvironmentPropertiesPropertyArgs']]]]):
|
801
|
+
pulumi.set(self, "properties", value)
|
802
|
+
|
803
|
+
|
804
|
+
if not MYPY:
|
805
|
+
class EnvironmentPropertiesPropertyArgsDict(TypedDict):
|
806
|
+
name: NotRequired[pulumi.Input[str]]
|
807
|
+
"""
|
808
|
+
The property key.
|
809
|
+
"""
|
810
|
+
value: NotRequired[pulumi.Input[str]]
|
811
|
+
"""
|
812
|
+
The property value.
|
813
|
+
"""
|
814
|
+
elif False:
|
815
|
+
EnvironmentPropertiesPropertyArgsDict: TypeAlias = Mapping[str, Any]
|
816
|
+
|
817
|
+
@pulumi.input_type
|
818
|
+
class EnvironmentPropertiesPropertyArgs:
|
819
|
+
def __init__(__self__, *,
|
820
|
+
name: Optional[pulumi.Input[str]] = None,
|
821
|
+
value: Optional[pulumi.Input[str]] = None):
|
822
|
+
"""
|
823
|
+
:param pulumi.Input[str] name: The property key.
|
824
|
+
:param pulumi.Input[str] value: The property value.
|
825
|
+
"""
|
826
|
+
if name is not None:
|
827
|
+
pulumi.set(__self__, "name", name)
|
828
|
+
if value is not None:
|
829
|
+
pulumi.set(__self__, "value", value)
|
830
|
+
|
831
|
+
@property
|
832
|
+
@pulumi.getter
|
833
|
+
def name(self) -> Optional[pulumi.Input[str]]:
|
834
|
+
"""
|
835
|
+
The property key.
|
836
|
+
"""
|
837
|
+
return pulumi.get(self, "name")
|
838
|
+
|
839
|
+
@name.setter
|
840
|
+
def name(self, value: Optional[pulumi.Input[str]]):
|
841
|
+
pulumi.set(self, "name", value)
|
842
|
+
|
843
|
+
@property
|
844
|
+
@pulumi.getter
|
845
|
+
def value(self) -> Optional[pulumi.Input[str]]:
|
846
|
+
"""
|
847
|
+
The property value.
|
848
|
+
"""
|
849
|
+
return pulumi.get(self, "value")
|
850
|
+
|
851
|
+
@value.setter
|
852
|
+
def value(self, value: Optional[pulumi.Input[str]]):
|
853
|
+
pulumi.set(self, "value", value)
|
854
|
+
|
855
|
+
|
765
856
|
if not MYPY:
|
766
857
|
class KeystoresAliasesKeyCertFileCertsInfoArgsDict(TypedDict):
|
767
858
|
cert_infos: NotRequired[pulumi.Input[Sequence[pulumi.Input['KeystoresAliasesKeyCertFileCertsInfoCertInfoArgsDict']]]]
|
@@ -241,38 +241,6 @@ class EndpointAttachment(pulumi.CustomResource):
|
|
241
241
|
* How-to Guides
|
242
242
|
* [Creating an environment](https://cloud.google.com/apigee/docs/api-platform/get-started/create-environment)
|
243
243
|
|
244
|
-
## Example Usage
|
245
|
-
|
246
|
-
### Apigee Endpoint Attachment Basic
|
247
|
-
|
248
|
-
```python
|
249
|
-
import pulumi
|
250
|
-
import pulumi_gcp as gcp
|
251
|
-
|
252
|
-
current = gcp.organizations.get_client_config()
|
253
|
-
apigee_network = gcp.compute.Network("apigee_network", name="apigee-network")
|
254
|
-
apigee_range = gcp.compute.GlobalAddress("apigee_range",
|
255
|
-
name="apigee-range",
|
256
|
-
purpose="VPC_PEERING",
|
257
|
-
address_type="INTERNAL",
|
258
|
-
prefix_length=16,
|
259
|
-
network=apigee_network.id)
|
260
|
-
apigee_vpc_connection = gcp.servicenetworking.Connection("apigee_vpc_connection",
|
261
|
-
network=apigee_network.id,
|
262
|
-
service="servicenetworking.googleapis.com",
|
263
|
-
reserved_peering_ranges=[apigee_range.name])
|
264
|
-
apigee_org = gcp.apigee.Organization("apigee_org",
|
265
|
-
analytics_region="us-central1",
|
266
|
-
project_id=current.project,
|
267
|
-
authorized_network=apigee_network.id,
|
268
|
-
opts = pulumi.ResourceOptions(depends_on=[apigee_vpc_connection]))
|
269
|
-
apigee_endpoint_attachment = gcp.apigee.EndpointAttachment("apigee_endpoint_attachment",
|
270
|
-
org_id=apigee_org.id,
|
271
|
-
endpoint_attachment_id="test1",
|
272
|
-
location="{google_compute_service_attachment location}",
|
273
|
-
service_attachment="{google_compute_service_attachment id}")
|
274
|
-
```
|
275
|
-
|
276
244
|
## Import
|
277
245
|
|
278
246
|
EndpointAttachment can be imported using any of these accepted formats:
|
@@ -317,38 +285,6 @@ class EndpointAttachment(pulumi.CustomResource):
|
|
317
285
|
* How-to Guides
|
318
286
|
* [Creating an environment](https://cloud.google.com/apigee/docs/api-platform/get-started/create-environment)
|
319
287
|
|
320
|
-
## Example Usage
|
321
|
-
|
322
|
-
### Apigee Endpoint Attachment Basic
|
323
|
-
|
324
|
-
```python
|
325
|
-
import pulumi
|
326
|
-
import pulumi_gcp as gcp
|
327
|
-
|
328
|
-
current = gcp.organizations.get_client_config()
|
329
|
-
apigee_network = gcp.compute.Network("apigee_network", name="apigee-network")
|
330
|
-
apigee_range = gcp.compute.GlobalAddress("apigee_range",
|
331
|
-
name="apigee-range",
|
332
|
-
purpose="VPC_PEERING",
|
333
|
-
address_type="INTERNAL",
|
334
|
-
prefix_length=16,
|
335
|
-
network=apigee_network.id)
|
336
|
-
apigee_vpc_connection = gcp.servicenetworking.Connection("apigee_vpc_connection",
|
337
|
-
network=apigee_network.id,
|
338
|
-
service="servicenetworking.googleapis.com",
|
339
|
-
reserved_peering_ranges=[apigee_range.name])
|
340
|
-
apigee_org = gcp.apigee.Organization("apigee_org",
|
341
|
-
analytics_region="us-central1",
|
342
|
-
project_id=current.project,
|
343
|
-
authorized_network=apigee_network.id,
|
344
|
-
opts = pulumi.ResourceOptions(depends_on=[apigee_vpc_connection]))
|
345
|
-
apigee_endpoint_attachment = gcp.apigee.EndpointAttachment("apigee_endpoint_attachment",
|
346
|
-
org_id=apigee_org.id,
|
347
|
-
endpoint_attachment_id="test1",
|
348
|
-
location="{google_compute_service_attachment location}",
|
349
|
-
service_attachment="{google_compute_service_attachment id}")
|
350
|
-
```
|
351
|
-
|
352
288
|
## Import
|
353
289
|
|
354
290
|
EndpointAttachment can be imported using any of these accepted formats:
|
pulumi_gcp/apigee/environment.py
CHANGED
@@ -29,6 +29,7 @@ class EnvironmentArgs:
|
|
29
29
|
forward_proxy_uri: Optional[pulumi.Input[str]] = None,
|
30
30
|
name: Optional[pulumi.Input[str]] = None,
|
31
31
|
node_config: Optional[pulumi.Input['EnvironmentNodeConfigArgs']] = None,
|
32
|
+
properties: Optional[pulumi.Input['EnvironmentPropertiesArgs']] = None,
|
32
33
|
type: Optional[pulumi.Input[str]] = None):
|
33
34
|
"""
|
34
35
|
The set of arguments for constructing a Environment resource.
|
@@ -54,6 +55,8 @@ class EnvironmentArgs:
|
|
54
55
|
:param pulumi.Input[str] name: The resource ID of the environment.
|
55
56
|
:param pulumi.Input['EnvironmentNodeConfigArgs'] node_config: NodeConfig for setting the min/max number of nodes associated with the environment.
|
56
57
|
Structure is documented below.
|
58
|
+
:param pulumi.Input['EnvironmentPropertiesArgs'] properties: Key-value pairs that may be used for customizing the environment.
|
59
|
+
Structure is documented below.
|
57
60
|
:param pulumi.Input[str] type: Types that can be selected for an Environment. Each of the types are
|
58
61
|
limited by capability and capacity. Refer to Apigee's public documentation
|
59
62
|
to understand about each of these types in details.
|
@@ -75,6 +78,8 @@ class EnvironmentArgs:
|
|
75
78
|
pulumi.set(__self__, "name", name)
|
76
79
|
if node_config is not None:
|
77
80
|
pulumi.set(__self__, "node_config", node_config)
|
81
|
+
if properties is not None:
|
82
|
+
pulumi.set(__self__, "properties", properties)
|
78
83
|
if type is not None:
|
79
84
|
pulumi.set(__self__, "type", type)
|
80
85
|
|
@@ -188,6 +193,19 @@ class EnvironmentArgs:
|
|
188
193
|
def node_config(self, value: Optional[pulumi.Input['EnvironmentNodeConfigArgs']]):
|
189
194
|
pulumi.set(self, "node_config", value)
|
190
195
|
|
196
|
+
@property
|
197
|
+
@pulumi.getter
|
198
|
+
def properties(self) -> Optional[pulumi.Input['EnvironmentPropertiesArgs']]:
|
199
|
+
"""
|
200
|
+
Key-value pairs that may be used for customizing the environment.
|
201
|
+
Structure is documented below.
|
202
|
+
"""
|
203
|
+
return pulumi.get(self, "properties")
|
204
|
+
|
205
|
+
@properties.setter
|
206
|
+
def properties(self, value: Optional[pulumi.Input['EnvironmentPropertiesArgs']]):
|
207
|
+
pulumi.set(self, "properties", value)
|
208
|
+
|
191
209
|
@property
|
192
210
|
@pulumi.getter
|
193
211
|
def type(self) -> Optional[pulumi.Input[str]]:
|
@@ -216,6 +234,7 @@ class _EnvironmentState:
|
|
216
234
|
name: Optional[pulumi.Input[str]] = None,
|
217
235
|
node_config: Optional[pulumi.Input['EnvironmentNodeConfigArgs']] = None,
|
218
236
|
org_id: Optional[pulumi.Input[str]] = None,
|
237
|
+
properties: Optional[pulumi.Input['EnvironmentPropertiesArgs']] = None,
|
219
238
|
type: Optional[pulumi.Input[str]] = None):
|
220
239
|
"""
|
221
240
|
Input properties used for looking up and filtering Environment resources.
|
@@ -241,6 +260,8 @@ class _EnvironmentState:
|
|
241
260
|
|
242
261
|
|
243
262
|
- - -
|
263
|
+
:param pulumi.Input['EnvironmentPropertiesArgs'] properties: Key-value pairs that may be used for customizing the environment.
|
264
|
+
Structure is documented below.
|
244
265
|
:param pulumi.Input[str] type: Types that can be selected for an Environment. Each of the types are
|
245
266
|
limited by capability and capacity. Refer to Apigee's public documentation
|
246
267
|
to understand about each of these types in details.
|
@@ -263,6 +284,8 @@ class _EnvironmentState:
|
|
263
284
|
pulumi.set(__self__, "node_config", node_config)
|
264
285
|
if org_id is not None:
|
265
286
|
pulumi.set(__self__, "org_id", org_id)
|
287
|
+
if properties is not None:
|
288
|
+
pulumi.set(__self__, "properties", properties)
|
266
289
|
if type is not None:
|
267
290
|
pulumi.set(__self__, "type", type)
|
268
291
|
|
@@ -376,6 +399,19 @@ class _EnvironmentState:
|
|
376
399
|
def org_id(self, value: Optional[pulumi.Input[str]]):
|
377
400
|
pulumi.set(self, "org_id", value)
|
378
401
|
|
402
|
+
@property
|
403
|
+
@pulumi.getter
|
404
|
+
def properties(self) -> Optional[pulumi.Input['EnvironmentPropertiesArgs']]:
|
405
|
+
"""
|
406
|
+
Key-value pairs that may be used for customizing the environment.
|
407
|
+
Structure is documented below.
|
408
|
+
"""
|
409
|
+
return pulumi.get(self, "properties")
|
410
|
+
|
411
|
+
@properties.setter
|
412
|
+
def properties(self, value: Optional[pulumi.Input['EnvironmentPropertiesArgs']]):
|
413
|
+
pulumi.set(self, "properties", value)
|
414
|
+
|
379
415
|
@property
|
380
416
|
@pulumi.getter
|
381
417
|
def type(self) -> Optional[pulumi.Input[str]]:
|
@@ -406,6 +442,7 @@ class Environment(pulumi.CustomResource):
|
|
406
442
|
name: Optional[pulumi.Input[str]] = None,
|
407
443
|
node_config: Optional[pulumi.Input[Union['EnvironmentNodeConfigArgs', 'EnvironmentNodeConfigArgsDict']]] = None,
|
408
444
|
org_id: Optional[pulumi.Input[str]] = None,
|
445
|
+
properties: Optional[pulumi.Input[Union['EnvironmentPropertiesArgs', 'EnvironmentPropertiesArgsDict']]] = None,
|
409
446
|
type: Optional[pulumi.Input[str]] = None,
|
410
447
|
__props__=None):
|
411
448
|
"""
|
@@ -491,6 +528,8 @@ class Environment(pulumi.CustomResource):
|
|
491
528
|
|
492
529
|
|
493
530
|
- - -
|
531
|
+
:param pulumi.Input[Union['EnvironmentPropertiesArgs', 'EnvironmentPropertiesArgsDict']] properties: Key-value pairs that may be used for customizing the environment.
|
532
|
+
Structure is documented below.
|
494
533
|
:param pulumi.Input[str] type: Types that can be selected for an Environment. Each of the types are
|
495
534
|
limited by capability and capacity. Refer to Apigee's public documentation
|
496
535
|
to understand about each of these types in details.
|
@@ -585,6 +624,7 @@ class Environment(pulumi.CustomResource):
|
|
585
624
|
name: Optional[pulumi.Input[str]] = None,
|
586
625
|
node_config: Optional[pulumi.Input[Union['EnvironmentNodeConfigArgs', 'EnvironmentNodeConfigArgsDict']]] = None,
|
587
626
|
org_id: Optional[pulumi.Input[str]] = None,
|
627
|
+
properties: Optional[pulumi.Input[Union['EnvironmentPropertiesArgs', 'EnvironmentPropertiesArgsDict']]] = None,
|
588
628
|
type: Optional[pulumi.Input[str]] = None,
|
589
629
|
__props__=None):
|
590
630
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
@@ -605,6 +645,7 @@ class Environment(pulumi.CustomResource):
|
|
605
645
|
if org_id is None and not opts.urn:
|
606
646
|
raise TypeError("Missing required property 'org_id'")
|
607
647
|
__props__.__dict__["org_id"] = org_id
|
648
|
+
__props__.__dict__["properties"] = properties
|
608
649
|
__props__.__dict__["type"] = type
|
609
650
|
super(Environment, __self__).__init__(
|
610
651
|
'gcp:apigee/environment:Environment',
|
@@ -624,6 +665,7 @@ class Environment(pulumi.CustomResource):
|
|
624
665
|
name: Optional[pulumi.Input[str]] = None,
|
625
666
|
node_config: Optional[pulumi.Input[Union['EnvironmentNodeConfigArgs', 'EnvironmentNodeConfigArgsDict']]] = None,
|
626
667
|
org_id: Optional[pulumi.Input[str]] = None,
|
668
|
+
properties: Optional[pulumi.Input[Union['EnvironmentPropertiesArgs', 'EnvironmentPropertiesArgsDict']]] = None,
|
627
669
|
type: Optional[pulumi.Input[str]] = None) -> 'Environment':
|
628
670
|
"""
|
629
671
|
Get an existing Environment resource's state with the given name, id, and optional extra
|
@@ -654,6 +696,8 @@ class Environment(pulumi.CustomResource):
|
|
654
696
|
|
655
697
|
|
656
698
|
- - -
|
699
|
+
:param pulumi.Input[Union['EnvironmentPropertiesArgs', 'EnvironmentPropertiesArgsDict']] properties: Key-value pairs that may be used for customizing the environment.
|
700
|
+
Structure is documented below.
|
657
701
|
:param pulumi.Input[str] type: Types that can be selected for an Environment. Each of the types are
|
658
702
|
limited by capability and capacity. Refer to Apigee's public documentation
|
659
703
|
to understand about each of these types in details.
|
@@ -672,6 +716,7 @@ class Environment(pulumi.CustomResource):
|
|
672
716
|
__props__.__dict__["name"] = name
|
673
717
|
__props__.__dict__["node_config"] = node_config
|
674
718
|
__props__.__dict__["org_id"] = org_id
|
719
|
+
__props__.__dict__["properties"] = properties
|
675
720
|
__props__.__dict__["type"] = type
|
676
721
|
return Environment(resource_name, opts=opts, __props__=__props__)
|
677
722
|
|
@@ -753,6 +798,15 @@ class Environment(pulumi.CustomResource):
|
|
753
798
|
"""
|
754
799
|
return pulumi.get(self, "org_id")
|
755
800
|
|
801
|
+
@property
|
802
|
+
@pulumi.getter
|
803
|
+
def properties(self) -> pulumi.Output[Optional['outputs.EnvironmentProperties']]:
|
804
|
+
"""
|
805
|
+
Key-value pairs that may be used for customizing the environment.
|
806
|
+
Structure is documented below.
|
807
|
+
"""
|
808
|
+
return pulumi.get(self, "properties")
|
809
|
+
|
756
810
|
@property
|
757
811
|
@pulumi.getter
|
758
812
|
def type(self) -> pulumi.Output[str]:
|
pulumi_gcp/apigee/outputs.py
CHANGED
@@ -28,6 +28,8 @@ __all__ = [
|
|
28
28
|
'EnvironmentIamBindingCondition',
|
29
29
|
'EnvironmentIamMemberCondition',
|
30
30
|
'EnvironmentNodeConfig',
|
31
|
+
'EnvironmentProperties',
|
32
|
+
'EnvironmentPropertiesProperty',
|
31
33
|
'KeystoresAliasesKeyCertFileCertsInfo',
|
32
34
|
'KeystoresAliasesKeyCertFileCertsInfoCertInfo',
|
33
35
|
'KeystoresAliasesPkcs12CertsInfo',
|
@@ -558,6 +560,58 @@ class EnvironmentNodeConfig(dict):
|
|
558
560
|
return pulumi.get(self, "min_node_count")
|
559
561
|
|
560
562
|
|
563
|
+
@pulumi.output_type
|
564
|
+
class EnvironmentProperties(dict):
|
565
|
+
def __init__(__self__, *,
|
566
|
+
properties: Optional[Sequence['outputs.EnvironmentPropertiesProperty']] = None):
|
567
|
+
"""
|
568
|
+
:param Sequence['EnvironmentPropertiesPropertyArgs'] properties: List of all properties in the object.
|
569
|
+
Structure is documented below.
|
570
|
+
"""
|
571
|
+
if properties is not None:
|
572
|
+
pulumi.set(__self__, "properties", properties)
|
573
|
+
|
574
|
+
@property
|
575
|
+
@pulumi.getter
|
576
|
+
def properties(self) -> Optional[Sequence['outputs.EnvironmentPropertiesProperty']]:
|
577
|
+
"""
|
578
|
+
List of all properties in the object.
|
579
|
+
Structure is documented below.
|
580
|
+
"""
|
581
|
+
return pulumi.get(self, "properties")
|
582
|
+
|
583
|
+
|
584
|
+
@pulumi.output_type
|
585
|
+
class EnvironmentPropertiesProperty(dict):
|
586
|
+
def __init__(__self__, *,
|
587
|
+
name: Optional[str] = None,
|
588
|
+
value: Optional[str] = None):
|
589
|
+
"""
|
590
|
+
:param str name: The property key.
|
591
|
+
:param str value: The property value.
|
592
|
+
"""
|
593
|
+
if name is not None:
|
594
|
+
pulumi.set(__self__, "name", name)
|
595
|
+
if value is not None:
|
596
|
+
pulumi.set(__self__, "value", value)
|
597
|
+
|
598
|
+
@property
|
599
|
+
@pulumi.getter
|
600
|
+
def name(self) -> Optional[str]:
|
601
|
+
"""
|
602
|
+
The property key.
|
603
|
+
"""
|
604
|
+
return pulumi.get(self, "name")
|
605
|
+
|
606
|
+
@property
|
607
|
+
@pulumi.getter
|
608
|
+
def value(self) -> Optional[str]:
|
609
|
+
"""
|
610
|
+
The property value.
|
611
|
+
"""
|
612
|
+
return pulumi.get(self, "value")
|
613
|
+
|
614
|
+
|
561
615
|
@pulumi.output_type
|
562
616
|
class KeystoresAliasesKeyCertFileCertsInfo(dict):
|
563
617
|
@staticmethod
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
from .. import _utilities
|
6
|
+
import typing
|
7
|
+
# Export this package's modules as members:
|
8
|
+
from .api_hub_instance import *
|
9
|
+
from ._inputs import *
|
10
|
+
from . import outputs
|
@@ -0,0 +1,154 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import copy
|
6
|
+
import warnings
|
7
|
+
import sys
|
8
|
+
import pulumi
|
9
|
+
import pulumi.runtime
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
|
+
from .. import _utilities
|
16
|
+
|
17
|
+
__all__ = [
|
18
|
+
'ApiHubInstanceConfigArgs',
|
19
|
+
'ApiHubInstanceConfigArgsDict',
|
20
|
+
]
|
21
|
+
|
22
|
+
MYPY = False
|
23
|
+
|
24
|
+
if not MYPY:
|
25
|
+
class ApiHubInstanceConfigArgsDict(TypedDict):
|
26
|
+
cmek_key_name: NotRequired[pulumi.Input[str]]
|
27
|
+
"""
|
28
|
+
Optional. The Customer Managed Encryption Key (CMEK) used for data encryption.
|
29
|
+
The CMEK name should follow the format of
|
30
|
+
`projects/([^/]+)/locations/([^/]+)/keyRings/([^/]+)/cryptoKeys/([^/]+)`,
|
31
|
+
where the location must match the instance location.
|
32
|
+
If the CMEK is not provided, a GMEK will be created for the instance.
|
33
|
+
"""
|
34
|
+
disable_search: NotRequired[pulumi.Input[bool]]
|
35
|
+
"""
|
36
|
+
Optional. If true, the search will be disabled for the instance. The default value
|
37
|
+
is false.
|
38
|
+
"""
|
39
|
+
encryption_type: NotRequired[pulumi.Input[str]]
|
40
|
+
"""
|
41
|
+
Optional. Encryption type for the region. If the encryption type is CMEK, the
|
42
|
+
cmek_key_name must be provided. If no encryption type is provided,
|
43
|
+
GMEK will be used.
|
44
|
+
Possible values:
|
45
|
+
ENCRYPTION_TYPE_UNSPECIFIED
|
46
|
+
GMEK
|
47
|
+
CMEK
|
48
|
+
"""
|
49
|
+
vertex_location: NotRequired[pulumi.Input[str]]
|
50
|
+
"""
|
51
|
+
Optional. The name of the Vertex AI location where the data store is stored.
|
52
|
+
|
53
|
+
- - -
|
54
|
+
"""
|
55
|
+
elif False:
|
56
|
+
ApiHubInstanceConfigArgsDict: TypeAlias = Mapping[str, Any]
|
57
|
+
|
58
|
+
@pulumi.input_type
|
59
|
+
class ApiHubInstanceConfigArgs:
|
60
|
+
def __init__(__self__, *,
|
61
|
+
cmek_key_name: Optional[pulumi.Input[str]] = None,
|
62
|
+
disable_search: Optional[pulumi.Input[bool]] = None,
|
63
|
+
encryption_type: Optional[pulumi.Input[str]] = None,
|
64
|
+
vertex_location: Optional[pulumi.Input[str]] = None):
|
65
|
+
"""
|
66
|
+
:param pulumi.Input[str] cmek_key_name: Optional. The Customer Managed Encryption Key (CMEK) used for data encryption.
|
67
|
+
The CMEK name should follow the format of
|
68
|
+
`projects/([^/]+)/locations/([^/]+)/keyRings/([^/]+)/cryptoKeys/([^/]+)`,
|
69
|
+
where the location must match the instance location.
|
70
|
+
If the CMEK is not provided, a GMEK will be created for the instance.
|
71
|
+
:param pulumi.Input[bool] disable_search: Optional. If true, the search will be disabled for the instance. The default value
|
72
|
+
is false.
|
73
|
+
:param pulumi.Input[str] encryption_type: Optional. Encryption type for the region. If the encryption type is CMEK, the
|
74
|
+
cmek_key_name must be provided. If no encryption type is provided,
|
75
|
+
GMEK will be used.
|
76
|
+
Possible values:
|
77
|
+
ENCRYPTION_TYPE_UNSPECIFIED
|
78
|
+
GMEK
|
79
|
+
CMEK
|
80
|
+
:param pulumi.Input[str] vertex_location: Optional. The name of the Vertex AI location where the data store is stored.
|
81
|
+
|
82
|
+
- - -
|
83
|
+
"""
|
84
|
+
if cmek_key_name is not None:
|
85
|
+
pulumi.set(__self__, "cmek_key_name", cmek_key_name)
|
86
|
+
if disable_search is not None:
|
87
|
+
pulumi.set(__self__, "disable_search", disable_search)
|
88
|
+
if encryption_type is not None:
|
89
|
+
pulumi.set(__self__, "encryption_type", encryption_type)
|
90
|
+
if vertex_location is not None:
|
91
|
+
pulumi.set(__self__, "vertex_location", vertex_location)
|
92
|
+
|
93
|
+
@property
|
94
|
+
@pulumi.getter(name="cmekKeyName")
|
95
|
+
def cmek_key_name(self) -> Optional[pulumi.Input[str]]:
|
96
|
+
"""
|
97
|
+
Optional. The Customer Managed Encryption Key (CMEK) used for data encryption.
|
98
|
+
The CMEK name should follow the format of
|
99
|
+
`projects/([^/]+)/locations/([^/]+)/keyRings/([^/]+)/cryptoKeys/([^/]+)`,
|
100
|
+
where the location must match the instance location.
|
101
|
+
If the CMEK is not provided, a GMEK will be created for the instance.
|
102
|
+
"""
|
103
|
+
return pulumi.get(self, "cmek_key_name")
|
104
|
+
|
105
|
+
@cmek_key_name.setter
|
106
|
+
def cmek_key_name(self, value: Optional[pulumi.Input[str]]):
|
107
|
+
pulumi.set(self, "cmek_key_name", value)
|
108
|
+
|
109
|
+
@property
|
110
|
+
@pulumi.getter(name="disableSearch")
|
111
|
+
def disable_search(self) -> Optional[pulumi.Input[bool]]:
|
112
|
+
"""
|
113
|
+
Optional. If true, the search will be disabled for the instance. The default value
|
114
|
+
is false.
|
115
|
+
"""
|
116
|
+
return pulumi.get(self, "disable_search")
|
117
|
+
|
118
|
+
@disable_search.setter
|
119
|
+
def disable_search(self, value: Optional[pulumi.Input[bool]]):
|
120
|
+
pulumi.set(self, "disable_search", value)
|
121
|
+
|
122
|
+
@property
|
123
|
+
@pulumi.getter(name="encryptionType")
|
124
|
+
def encryption_type(self) -> Optional[pulumi.Input[str]]:
|
125
|
+
"""
|
126
|
+
Optional. Encryption type for the region. If the encryption type is CMEK, the
|
127
|
+
cmek_key_name must be provided. If no encryption type is provided,
|
128
|
+
GMEK will be used.
|
129
|
+
Possible values:
|
130
|
+
ENCRYPTION_TYPE_UNSPECIFIED
|
131
|
+
GMEK
|
132
|
+
CMEK
|
133
|
+
"""
|
134
|
+
return pulumi.get(self, "encryption_type")
|
135
|
+
|
136
|
+
@encryption_type.setter
|
137
|
+
def encryption_type(self, value: Optional[pulumi.Input[str]]):
|
138
|
+
pulumi.set(self, "encryption_type", value)
|
139
|
+
|
140
|
+
@property
|
141
|
+
@pulumi.getter(name="vertexLocation")
|
142
|
+
def vertex_location(self) -> Optional[pulumi.Input[str]]:
|
143
|
+
"""
|
144
|
+
Optional. The name of the Vertex AI location where the data store is stored.
|
145
|
+
|
146
|
+
- - -
|
147
|
+
"""
|
148
|
+
return pulumi.get(self, "vertex_location")
|
149
|
+
|
150
|
+
@vertex_location.setter
|
151
|
+
def vertex_location(self, value: Optional[pulumi.Input[str]]):
|
152
|
+
pulumi.set(self, "vertex_location", value)
|
153
|
+
|
154
|
+
|