pulumi-gcp 8.7.0a1730183903__py3-none-any.whl → 8.7.0a1730196225__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 +70 -0
- pulumi_gcp/accesscontextmanager/service_perimeter.py +2 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_egress_policy.py +4 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_ingress_policy.py +4 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_egress_policy.py +4 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_ingress_policy.py +4 -0
- pulumi_gcp/accesscontextmanager/service_perimeters.py +2 -0
- pulumi_gcp/apigee/__init__.py +2 -0
- pulumi_gcp/apigee/_inputs.py +108 -0
- pulumi_gcp/apigee/app_group.py +811 -0
- pulumi_gcp/apigee/developer.py +757 -0
- pulumi_gcp/apigee/outputs.py +64 -0
- pulumi_gcp/artifactregistry/get_docker_image.py +40 -0
- pulumi_gcp/bigquery/connection.py +12 -12
- pulumi_gcp/bigquery/job.py +6 -6
- pulumi_gcp/cloudrunv2/get_service.py +12 -1
- pulumi_gcp/cloudrunv2/service.py +92 -0
- pulumi_gcp/compute/_inputs.py +214 -116
- pulumi_gcp/compute/backend_service.py +76 -0
- pulumi_gcp/compute/get_backend_service.py +12 -1
- pulumi_gcp/compute/get_instance.py +29 -1
- pulumi_gcp/compute/get_instance_template.py +29 -1
- pulumi_gcp/compute/get_region_instance_group_manager.py +0 -18
- pulumi_gcp/compute/get_region_instance_template.py +29 -1
- pulumi_gcp/compute/instance.py +89 -0
- pulumi_gcp/compute/instance_from_machine_image.py +82 -0
- pulumi_gcp/compute/instance_from_template.py +82 -0
- pulumi_gcp/compute/instance_template.py +75 -0
- pulumi_gcp/compute/network_firewall_policy_association.py +76 -50
- pulumi_gcp/compute/network_firewall_policy_rule.py +149 -103
- pulumi_gcp/compute/outputs.py +170 -80
- pulumi_gcp/compute/region_backend_service.py +94 -0
- pulumi_gcp/compute/region_instance_template.py +75 -0
- pulumi_gcp/compute/region_network_endpoint_group.py +6 -4
- pulumi_gcp/compute/region_network_firewall_policy_association.py +104 -54
- pulumi_gcp/compute/region_network_firewall_policy_rule.py +160 -107
- pulumi_gcp/config/__init__.pyi +4 -0
- pulumi_gcp/config/vars.py +8 -0
- pulumi_gcp/container/attached_cluster.py +9 -6
- pulumi_gcp/container/outputs.py +2 -2
- pulumi_gcp/datastream/stream.py +2 -2
- pulumi_gcp/diagflow/_inputs.py +472 -2
- pulumi_gcp/diagflow/cx_agent.py +64 -4
- pulumi_gcp/diagflow/cx_flow.py +30 -0
- pulumi_gcp/diagflow/outputs.py +378 -2
- pulumi_gcp/gkehub/feature.py +2 -4
- pulumi_gcp/iam/workload_identity_pool_provider.py +56 -0
- pulumi_gcp/looker/instance.py +104 -2
- pulumi_gcp/monitoring/_inputs.py +23 -0
- pulumi_gcp/monitoring/get_secret_version.py +22 -3
- pulumi_gcp/monitoring/outputs.py +16 -0
- pulumi_gcp/networkconnectivity/__init__.py +1 -0
- pulumi_gcp/networkconnectivity/_inputs.py +148 -0
- pulumi_gcp/networkconnectivity/group.py +764 -0
- pulumi_gcp/networkconnectivity/outputs.py +125 -0
- pulumi_gcp/networkconnectivity/spoke.py +144 -0
- pulumi_gcp/networksecurity/server_tls_policy.py +2 -2
- pulumi_gcp/oracledatabase/__init__.py +20 -0
- pulumi_gcp/oracledatabase/_inputs.py +4745 -0
- pulumi_gcp/oracledatabase/autonomous_database.py +983 -0
- pulumi_gcp/oracledatabase/cloud_exadata_infrastructure.py +842 -0
- pulumi_gcp/oracledatabase/cloud_vm_cluster.py +1086 -0
- pulumi_gcp/oracledatabase/get_autonomous_database.py +290 -0
- pulumi_gcp/oracledatabase/get_autonomous_databases.py +150 -0
- pulumi_gcp/oracledatabase/get_cloud_exadata_infrastructure.py +257 -0
- pulumi_gcp/oracledatabase/get_cloud_exadata_infrastructures.py +150 -0
- pulumi_gcp/oracledatabase/get_cloud_vm_cluster.py +290 -0
- pulumi_gcp/oracledatabase/get_cloud_vm_clusters.py +150 -0
- pulumi_gcp/oracledatabase/get_db_nodes.py +245 -0
- pulumi_gcp/oracledatabase/get_db_servers.py +245 -0
- pulumi_gcp/oracledatabase/outputs.py +9304 -0
- pulumi_gcp/organizations/folder.py +7 -7
- pulumi_gcp/organizations/project.py +7 -7
- pulumi_gcp/orgpolicy/_inputs.py +3 -3
- pulumi_gcp/orgpolicy/outputs.py +2 -2
- pulumi_gcp/privilegedaccessmanager/get_entitlement.py +46 -2
- pulumi_gcp/provider.py +40 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/secretmanager/get_regional_secret_version.py +24 -5
- pulumi_gcp/secretmanager/get_regional_secret_version_access.py +24 -5
- pulumi_gcp/secretmanager/get_secret_version.py +22 -3
- pulumi_gcp/secretmanager/get_secret_version_access.py +22 -3
- pulumi_gcp/secretmanager/regional_secret.py +2 -2
- pulumi_gcp/siteverification/get_token.py +0 -16
- pulumi_gcp/siteverification/owner.py +0 -16
- pulumi_gcp/spanner/_inputs.py +29 -5
- pulumi_gcp/spanner/outputs.py +20 -3
- pulumi_gcp/sql/_inputs.py +6 -6
- pulumi_gcp/sql/outputs.py +4 -4
- pulumi_gcp/sql/user.py +28 -21
- pulumi_gcp/storage/_inputs.py +36 -0
- pulumi_gcp/storage/bucket.py +47 -0
- pulumi_gcp/storage/get_bucket.py +12 -1
- pulumi_gcp/storage/outputs.py +40 -0
- pulumi_gcp/transcoder/__init__.py +11 -0
- pulumi_gcp/transcoder/_inputs.py +3991 -0
- pulumi_gcp/transcoder/job.py +2134 -0
- pulumi_gcp/transcoder/job_template.py +1524 -0
- pulumi_gcp/transcoder/outputs.py +2918 -0
- pulumi_gcp/vertex/ai_deployment_resource_pool.py +2 -2
- pulumi_gcp/vmwareengine/_inputs.py +440 -0
- pulumi_gcp/vmwareengine/cluster.py +100 -2
- pulumi_gcp/vmwareengine/get_cluster.py +12 -1
- pulumi_gcp/vmwareengine/outputs.py +615 -0
- pulumi_gcp/workstations/_inputs.py +54 -0
- pulumi_gcp/workstations/outputs.py +32 -0
- pulumi_gcp/workstations/workstation_config.py +205 -0
- {pulumi_gcp-8.7.0a1730183903.dist-info → pulumi_gcp-8.7.0a1730196225.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.7.0a1730183903.dist-info → pulumi_gcp-8.7.0a1730196225.dist-info}/RECORD +111 -89
- {pulumi_gcp-8.7.0a1730183903.dist-info → pulumi_gcp-8.7.0a1730196225.dist-info}/WHEEL +1 -1
- {pulumi_gcp-8.7.0a1730183903.dist-info → pulumi_gcp-8.7.0a1730196225.dist-info}/top_level.txt +0 -0
@@ -16,6 +16,7 @@ from .. import _utilities
|
|
16
16
|
from . import outputs
|
17
17
|
|
18
18
|
__all__ = [
|
19
|
+
'GroupAutoAccept',
|
19
20
|
'HubRoutingVpc',
|
20
21
|
'InternalRangeMigration',
|
21
22
|
'PolicyBasedRouteFilter',
|
@@ -27,12 +28,48 @@ __all__ = [
|
|
27
28
|
'ServiceConnectionPolicyPscConnectionError',
|
28
29
|
'ServiceConnectionPolicyPscConnectionErrorInfo',
|
29
30
|
'SpokeLinkedInterconnectAttachments',
|
31
|
+
'SpokeLinkedProducerVpcNetwork',
|
30
32
|
'SpokeLinkedRouterApplianceInstances',
|
31
33
|
'SpokeLinkedRouterApplianceInstancesInstance',
|
32
34
|
'SpokeLinkedVpcNetwork',
|
33
35
|
'SpokeLinkedVpnTunnels',
|
34
36
|
]
|
35
37
|
|
38
|
+
@pulumi.output_type
|
39
|
+
class GroupAutoAccept(dict):
|
40
|
+
@staticmethod
|
41
|
+
def __key_warning(key: str):
|
42
|
+
suggest = None
|
43
|
+
if key == "autoAcceptProjects":
|
44
|
+
suggest = "auto_accept_projects"
|
45
|
+
|
46
|
+
if suggest:
|
47
|
+
pulumi.log.warn(f"Key '{key}' not found in GroupAutoAccept. Access the value via the '{suggest}' property getter instead.")
|
48
|
+
|
49
|
+
def __getitem__(self, key: str) -> Any:
|
50
|
+
GroupAutoAccept.__key_warning(key)
|
51
|
+
return super().__getitem__(key)
|
52
|
+
|
53
|
+
def get(self, key: str, default = None) -> Any:
|
54
|
+
GroupAutoAccept.__key_warning(key)
|
55
|
+
return super().get(key, default)
|
56
|
+
|
57
|
+
def __init__(__self__, *,
|
58
|
+
auto_accept_projects: Sequence[str]):
|
59
|
+
"""
|
60
|
+
:param Sequence[str] auto_accept_projects: A list of project ids or project numbers for which you want to enable auto-accept. The auto-accept setting is applied to spokes being created or updated in these projects.
|
61
|
+
"""
|
62
|
+
pulumi.set(__self__, "auto_accept_projects", auto_accept_projects)
|
63
|
+
|
64
|
+
@property
|
65
|
+
@pulumi.getter(name="autoAcceptProjects")
|
66
|
+
def auto_accept_projects(self) -> Sequence[str]:
|
67
|
+
"""
|
68
|
+
A list of project ids or project numbers for which you want to enable auto-accept. The auto-accept setting is applied to spokes being created or updated in these projects.
|
69
|
+
"""
|
70
|
+
return pulumi.get(self, "auto_accept_projects")
|
71
|
+
|
72
|
+
|
36
73
|
@pulumi.output_type
|
37
74
|
class HubRoutingVpc(dict):
|
38
75
|
def __init__(__self__, *,
|
@@ -612,6 +649,94 @@ class SpokeLinkedInterconnectAttachments(dict):
|
|
612
649
|
return pulumi.get(self, "include_import_ranges")
|
613
650
|
|
614
651
|
|
652
|
+
@pulumi.output_type
|
653
|
+
class SpokeLinkedProducerVpcNetwork(dict):
|
654
|
+
@staticmethod
|
655
|
+
def __key_warning(key: str):
|
656
|
+
suggest = None
|
657
|
+
if key == "excludeExportRanges":
|
658
|
+
suggest = "exclude_export_ranges"
|
659
|
+
elif key == "includeExportRanges":
|
660
|
+
suggest = "include_export_ranges"
|
661
|
+
elif key == "producerNetwork":
|
662
|
+
suggest = "producer_network"
|
663
|
+
|
664
|
+
if suggest:
|
665
|
+
pulumi.log.warn(f"Key '{key}' not found in SpokeLinkedProducerVpcNetwork. Access the value via the '{suggest}' property getter instead.")
|
666
|
+
|
667
|
+
def __getitem__(self, key: str) -> Any:
|
668
|
+
SpokeLinkedProducerVpcNetwork.__key_warning(key)
|
669
|
+
return super().__getitem__(key)
|
670
|
+
|
671
|
+
def get(self, key: str, default = None) -> Any:
|
672
|
+
SpokeLinkedProducerVpcNetwork.__key_warning(key)
|
673
|
+
return super().get(key, default)
|
674
|
+
|
675
|
+
def __init__(__self__, *,
|
676
|
+
network: str,
|
677
|
+
peering: str,
|
678
|
+
exclude_export_ranges: Optional[Sequence[str]] = None,
|
679
|
+
include_export_ranges: Optional[Sequence[str]] = None,
|
680
|
+
producer_network: Optional[str] = None):
|
681
|
+
"""
|
682
|
+
:param str network: The URI of the Service Consumer VPC that the Producer VPC is peered with.
|
683
|
+
:param str peering: The name of the VPC peering between the Service Consumer VPC and the Producer VPC (defined in the Tenant project) which is added to the NCC hub. This peering must be in ACTIVE state.
|
684
|
+
:param Sequence[str] exclude_export_ranges: IP ranges encompassing the subnets to be excluded from peering.
|
685
|
+
:param Sequence[str] include_export_ranges: IP ranges allowed to be included from peering.
|
686
|
+
:param str producer_network: (Output)
|
687
|
+
The URI of the Producer VPC.
|
688
|
+
"""
|
689
|
+
pulumi.set(__self__, "network", network)
|
690
|
+
pulumi.set(__self__, "peering", peering)
|
691
|
+
if exclude_export_ranges is not None:
|
692
|
+
pulumi.set(__self__, "exclude_export_ranges", exclude_export_ranges)
|
693
|
+
if include_export_ranges is not None:
|
694
|
+
pulumi.set(__self__, "include_export_ranges", include_export_ranges)
|
695
|
+
if producer_network is not None:
|
696
|
+
pulumi.set(__self__, "producer_network", producer_network)
|
697
|
+
|
698
|
+
@property
|
699
|
+
@pulumi.getter
|
700
|
+
def network(self) -> str:
|
701
|
+
"""
|
702
|
+
The URI of the Service Consumer VPC that the Producer VPC is peered with.
|
703
|
+
"""
|
704
|
+
return pulumi.get(self, "network")
|
705
|
+
|
706
|
+
@property
|
707
|
+
@pulumi.getter
|
708
|
+
def peering(self) -> str:
|
709
|
+
"""
|
710
|
+
The name of the VPC peering between the Service Consumer VPC and the Producer VPC (defined in the Tenant project) which is added to the NCC hub. This peering must be in ACTIVE state.
|
711
|
+
"""
|
712
|
+
return pulumi.get(self, "peering")
|
713
|
+
|
714
|
+
@property
|
715
|
+
@pulumi.getter(name="excludeExportRanges")
|
716
|
+
def exclude_export_ranges(self) -> Optional[Sequence[str]]:
|
717
|
+
"""
|
718
|
+
IP ranges encompassing the subnets to be excluded from peering.
|
719
|
+
"""
|
720
|
+
return pulumi.get(self, "exclude_export_ranges")
|
721
|
+
|
722
|
+
@property
|
723
|
+
@pulumi.getter(name="includeExportRanges")
|
724
|
+
def include_export_ranges(self) -> Optional[Sequence[str]]:
|
725
|
+
"""
|
726
|
+
IP ranges allowed to be included from peering.
|
727
|
+
"""
|
728
|
+
return pulumi.get(self, "include_export_ranges")
|
729
|
+
|
730
|
+
@property
|
731
|
+
@pulumi.getter(name="producerNetwork")
|
732
|
+
def producer_network(self) -> Optional[str]:
|
733
|
+
"""
|
734
|
+
(Output)
|
735
|
+
The URI of the Producer VPC.
|
736
|
+
"""
|
737
|
+
return pulumi.get(self, "producer_network")
|
738
|
+
|
739
|
+
|
615
740
|
@pulumi.output_type
|
616
741
|
class SpokeLinkedRouterApplianceInstances(dict):
|
617
742
|
@staticmethod
|
@@ -26,6 +26,7 @@ class SpokeArgs:
|
|
26
26
|
description: Optional[pulumi.Input[str]] = None,
|
27
27
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
28
28
|
linked_interconnect_attachments: Optional[pulumi.Input['SpokeLinkedInterconnectAttachmentsArgs']] = None,
|
29
|
+
linked_producer_vpc_network: Optional[pulumi.Input['SpokeLinkedProducerVpcNetworkArgs']] = None,
|
29
30
|
linked_router_appliance_instances: Optional[pulumi.Input['SpokeLinkedRouterApplianceInstancesArgs']] = None,
|
30
31
|
linked_vpc_network: Optional[pulumi.Input['SpokeLinkedVpcNetworkArgs']] = None,
|
31
32
|
linked_vpn_tunnels: Optional[pulumi.Input['SpokeLinkedVpnTunnelsArgs']] = None,
|
@@ -44,6 +45,8 @@ class SpokeArgs:
|
|
44
45
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
45
46
|
:param pulumi.Input['SpokeLinkedInterconnectAttachmentsArgs'] linked_interconnect_attachments: A collection of VLAN attachment resources. These resources should be redundant attachments that all advertise the same prefixes to Google Cloud. Alternatively, in active/passive configurations, all attachments should be capable of advertising the same prefixes.
|
46
47
|
Structure is documented below.
|
48
|
+
:param pulumi.Input['SpokeLinkedProducerVpcNetworkArgs'] linked_producer_vpc_network: Producer VPC network that is associated with the spoke.
|
49
|
+
Structure is documented below.
|
47
50
|
:param pulumi.Input['SpokeLinkedRouterApplianceInstancesArgs'] linked_router_appliance_instances: The URIs of linked Router appliance resources
|
48
51
|
Structure is documented below.
|
49
52
|
:param pulumi.Input['SpokeLinkedVpcNetworkArgs'] linked_vpc_network: VPC network that is associated with the spoke.
|
@@ -62,6 +65,8 @@ class SpokeArgs:
|
|
62
65
|
pulumi.set(__self__, "labels", labels)
|
63
66
|
if linked_interconnect_attachments is not None:
|
64
67
|
pulumi.set(__self__, "linked_interconnect_attachments", linked_interconnect_attachments)
|
68
|
+
if linked_producer_vpc_network is not None:
|
69
|
+
pulumi.set(__self__, "linked_producer_vpc_network", linked_producer_vpc_network)
|
65
70
|
if linked_router_appliance_instances is not None:
|
66
71
|
pulumi.set(__self__, "linked_router_appliance_instances", linked_router_appliance_instances)
|
67
72
|
if linked_vpc_network is not None:
|
@@ -139,6 +144,19 @@ class SpokeArgs:
|
|
139
144
|
def linked_interconnect_attachments(self, value: Optional[pulumi.Input['SpokeLinkedInterconnectAttachmentsArgs']]):
|
140
145
|
pulumi.set(self, "linked_interconnect_attachments", value)
|
141
146
|
|
147
|
+
@property
|
148
|
+
@pulumi.getter(name="linkedProducerVpcNetwork")
|
149
|
+
def linked_producer_vpc_network(self) -> Optional[pulumi.Input['SpokeLinkedProducerVpcNetworkArgs']]:
|
150
|
+
"""
|
151
|
+
Producer VPC network that is associated with the spoke.
|
152
|
+
Structure is documented below.
|
153
|
+
"""
|
154
|
+
return pulumi.get(self, "linked_producer_vpc_network")
|
155
|
+
|
156
|
+
@linked_producer_vpc_network.setter
|
157
|
+
def linked_producer_vpc_network(self, value: Optional[pulumi.Input['SpokeLinkedProducerVpcNetworkArgs']]):
|
158
|
+
pulumi.set(self, "linked_producer_vpc_network", value)
|
159
|
+
|
142
160
|
@property
|
143
161
|
@pulumi.getter(name="linkedRouterApplianceInstances")
|
144
162
|
def linked_router_appliance_instances(self) -> Optional[pulumi.Input['SpokeLinkedRouterApplianceInstancesArgs']]:
|
@@ -213,6 +231,7 @@ class _SpokeState:
|
|
213
231
|
hub: Optional[pulumi.Input[str]] = None,
|
214
232
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
215
233
|
linked_interconnect_attachments: Optional[pulumi.Input['SpokeLinkedInterconnectAttachmentsArgs']] = None,
|
234
|
+
linked_producer_vpc_network: Optional[pulumi.Input['SpokeLinkedProducerVpcNetworkArgs']] = None,
|
216
235
|
linked_router_appliance_instances: Optional[pulumi.Input['SpokeLinkedRouterApplianceInstancesArgs']] = None,
|
217
236
|
linked_vpc_network: Optional[pulumi.Input['SpokeLinkedVpcNetworkArgs']] = None,
|
218
237
|
linked_vpn_tunnels: Optional[pulumi.Input['SpokeLinkedVpnTunnelsArgs']] = None,
|
@@ -234,6 +253,8 @@ class _SpokeState:
|
|
234
253
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
235
254
|
:param pulumi.Input['SpokeLinkedInterconnectAttachmentsArgs'] linked_interconnect_attachments: A collection of VLAN attachment resources. These resources should be redundant attachments that all advertise the same prefixes to Google Cloud. Alternatively, in active/passive configurations, all attachments should be capable of advertising the same prefixes.
|
236
255
|
Structure is documented below.
|
256
|
+
:param pulumi.Input['SpokeLinkedProducerVpcNetworkArgs'] linked_producer_vpc_network: Producer VPC network that is associated with the spoke.
|
257
|
+
Structure is documented below.
|
237
258
|
:param pulumi.Input['SpokeLinkedRouterApplianceInstancesArgs'] linked_router_appliance_instances: The URIs of linked Router appliance resources
|
238
259
|
Structure is documented below.
|
239
260
|
:param pulumi.Input['SpokeLinkedVpcNetworkArgs'] linked_vpc_network: VPC network that is associated with the spoke.
|
@@ -265,6 +286,8 @@ class _SpokeState:
|
|
265
286
|
pulumi.set(__self__, "labels", labels)
|
266
287
|
if linked_interconnect_attachments is not None:
|
267
288
|
pulumi.set(__self__, "linked_interconnect_attachments", linked_interconnect_attachments)
|
289
|
+
if linked_producer_vpc_network is not None:
|
290
|
+
pulumi.set(__self__, "linked_producer_vpc_network", linked_producer_vpc_network)
|
268
291
|
if linked_router_appliance_instances is not None:
|
269
292
|
pulumi.set(__self__, "linked_router_appliance_instances", linked_router_appliance_instances)
|
270
293
|
if linked_vpc_network is not None:
|
@@ -361,6 +384,19 @@ class _SpokeState:
|
|
361
384
|
def linked_interconnect_attachments(self, value: Optional[pulumi.Input['SpokeLinkedInterconnectAttachmentsArgs']]):
|
362
385
|
pulumi.set(self, "linked_interconnect_attachments", value)
|
363
386
|
|
387
|
+
@property
|
388
|
+
@pulumi.getter(name="linkedProducerVpcNetwork")
|
389
|
+
def linked_producer_vpc_network(self) -> Optional[pulumi.Input['SpokeLinkedProducerVpcNetworkArgs']]:
|
390
|
+
"""
|
391
|
+
Producer VPC network that is associated with the spoke.
|
392
|
+
Structure is documented below.
|
393
|
+
"""
|
394
|
+
return pulumi.get(self, "linked_producer_vpc_network")
|
395
|
+
|
396
|
+
@linked_producer_vpc_network.setter
|
397
|
+
def linked_producer_vpc_network(self, value: Optional[pulumi.Input['SpokeLinkedProducerVpcNetworkArgs']]):
|
398
|
+
pulumi.set(self, "linked_producer_vpc_network", value)
|
399
|
+
|
364
400
|
@property
|
365
401
|
@pulumi.getter(name="linkedRouterApplianceInstances")
|
366
402
|
def linked_router_appliance_instances(self) -> Optional[pulumi.Input['SpokeLinkedRouterApplianceInstancesArgs']]:
|
@@ -499,6 +535,7 @@ class Spoke(pulumi.CustomResource):
|
|
499
535
|
hub: Optional[pulumi.Input[str]] = None,
|
500
536
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
501
537
|
linked_interconnect_attachments: Optional[pulumi.Input[Union['SpokeLinkedInterconnectAttachmentsArgs', 'SpokeLinkedInterconnectAttachmentsArgsDict']]] = None,
|
538
|
+
linked_producer_vpc_network: Optional[pulumi.Input[Union['SpokeLinkedProducerVpcNetworkArgs', 'SpokeLinkedProducerVpcNetworkArgsDict']]] = None,
|
502
539
|
linked_router_appliance_instances: Optional[pulumi.Input[Union['SpokeLinkedRouterApplianceInstancesArgs', 'SpokeLinkedRouterApplianceInstancesArgsDict']]] = None,
|
503
540
|
linked_vpc_network: Optional[pulumi.Input[Union['SpokeLinkedVpcNetworkArgs', 'SpokeLinkedVpcNetworkArgsDict']]] = None,
|
504
541
|
linked_vpn_tunnels: Optional[pulumi.Input[Union['SpokeLinkedVpnTunnelsArgs', 'SpokeLinkedVpnTunnelsArgsDict']]] = None,
|
@@ -760,6 +797,51 @@ class Spoke(pulumi.CustomResource):
|
|
760
797
|
"include_import_ranges": ["ALL_IPV4_RANGES"],
|
761
798
|
})
|
762
799
|
```
|
800
|
+
### Network Connectivity Spoke Linked Producer Vpc Network Basic
|
801
|
+
|
802
|
+
```python
|
803
|
+
import pulumi
|
804
|
+
import pulumi_gcp as gcp
|
805
|
+
|
806
|
+
network = gcp.compute.Network("network",
|
807
|
+
name="net-spoke",
|
808
|
+
auto_create_subnetworks=False)
|
809
|
+
address = gcp.compute.GlobalAddress("address",
|
810
|
+
name="test-address",
|
811
|
+
purpose="VPC_PEERING",
|
812
|
+
address_type="INTERNAL",
|
813
|
+
prefix_length=16,
|
814
|
+
network=network.id)
|
815
|
+
peering = gcp.servicenetworking.Connection("peering",
|
816
|
+
network=network.id,
|
817
|
+
service="servicenetworking.googleapis.com",
|
818
|
+
reserved_peering_ranges=[address.name])
|
819
|
+
basic_hub = gcp.networkconnectivity.Hub("basic_hub", name="hub-basic")
|
820
|
+
linked_vpc_spoke = gcp.networkconnectivity.Spoke("linked_vpc_spoke",
|
821
|
+
name="vpc-spoke",
|
822
|
+
location="global",
|
823
|
+
hub=basic_hub.id,
|
824
|
+
linked_vpc_network={
|
825
|
+
"uri": network.self_link,
|
826
|
+
})
|
827
|
+
primary = gcp.networkconnectivity.Spoke("primary",
|
828
|
+
name="producer-spoke",
|
829
|
+
location="global",
|
830
|
+
description="A sample spoke with a linked router appliance instance",
|
831
|
+
labels={
|
832
|
+
"label-one": "value-one",
|
833
|
+
},
|
834
|
+
hub=basic_hub.id,
|
835
|
+
linked_producer_vpc_network={
|
836
|
+
"network": network.name,
|
837
|
+
"peering": peering.peering,
|
838
|
+
"exclude_export_ranges": [
|
839
|
+
"198.51.100.0/24",
|
840
|
+
"10.10.0.0/16",
|
841
|
+
],
|
842
|
+
},
|
843
|
+
opts = pulumi.ResourceOptions(depends_on=[linked_vpc_spoke]))
|
844
|
+
```
|
763
845
|
|
764
846
|
## Import
|
765
847
|
|
@@ -794,6 +876,8 @@ class Spoke(pulumi.CustomResource):
|
|
794
876
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
795
877
|
:param pulumi.Input[Union['SpokeLinkedInterconnectAttachmentsArgs', 'SpokeLinkedInterconnectAttachmentsArgsDict']] linked_interconnect_attachments: A collection of VLAN attachment resources. These resources should be redundant attachments that all advertise the same prefixes to Google Cloud. Alternatively, in active/passive configurations, all attachments should be capable of advertising the same prefixes.
|
796
878
|
Structure is documented below.
|
879
|
+
:param pulumi.Input[Union['SpokeLinkedProducerVpcNetworkArgs', 'SpokeLinkedProducerVpcNetworkArgsDict']] linked_producer_vpc_network: Producer VPC network that is associated with the spoke.
|
880
|
+
Structure is documented below.
|
797
881
|
:param pulumi.Input[Union['SpokeLinkedRouterApplianceInstancesArgs', 'SpokeLinkedRouterApplianceInstancesArgsDict']] linked_router_appliance_instances: The URIs of linked Router appliance resources
|
798
882
|
Structure is documented below.
|
799
883
|
:param pulumi.Input[Union['SpokeLinkedVpcNetworkArgs', 'SpokeLinkedVpcNetworkArgsDict']] linked_vpc_network: VPC network that is associated with the spoke.
|
@@ -1068,6 +1152,51 @@ class Spoke(pulumi.CustomResource):
|
|
1068
1152
|
"include_import_ranges": ["ALL_IPV4_RANGES"],
|
1069
1153
|
})
|
1070
1154
|
```
|
1155
|
+
### Network Connectivity Spoke Linked Producer Vpc Network Basic
|
1156
|
+
|
1157
|
+
```python
|
1158
|
+
import pulumi
|
1159
|
+
import pulumi_gcp as gcp
|
1160
|
+
|
1161
|
+
network = gcp.compute.Network("network",
|
1162
|
+
name="net-spoke",
|
1163
|
+
auto_create_subnetworks=False)
|
1164
|
+
address = gcp.compute.GlobalAddress("address",
|
1165
|
+
name="test-address",
|
1166
|
+
purpose="VPC_PEERING",
|
1167
|
+
address_type="INTERNAL",
|
1168
|
+
prefix_length=16,
|
1169
|
+
network=network.id)
|
1170
|
+
peering = gcp.servicenetworking.Connection("peering",
|
1171
|
+
network=network.id,
|
1172
|
+
service="servicenetworking.googleapis.com",
|
1173
|
+
reserved_peering_ranges=[address.name])
|
1174
|
+
basic_hub = gcp.networkconnectivity.Hub("basic_hub", name="hub-basic")
|
1175
|
+
linked_vpc_spoke = gcp.networkconnectivity.Spoke("linked_vpc_spoke",
|
1176
|
+
name="vpc-spoke",
|
1177
|
+
location="global",
|
1178
|
+
hub=basic_hub.id,
|
1179
|
+
linked_vpc_network={
|
1180
|
+
"uri": network.self_link,
|
1181
|
+
})
|
1182
|
+
primary = gcp.networkconnectivity.Spoke("primary",
|
1183
|
+
name="producer-spoke",
|
1184
|
+
location="global",
|
1185
|
+
description="A sample spoke with a linked router appliance instance",
|
1186
|
+
labels={
|
1187
|
+
"label-one": "value-one",
|
1188
|
+
},
|
1189
|
+
hub=basic_hub.id,
|
1190
|
+
linked_producer_vpc_network={
|
1191
|
+
"network": network.name,
|
1192
|
+
"peering": peering.peering,
|
1193
|
+
"exclude_export_ranges": [
|
1194
|
+
"198.51.100.0/24",
|
1195
|
+
"10.10.0.0/16",
|
1196
|
+
],
|
1197
|
+
},
|
1198
|
+
opts = pulumi.ResourceOptions(depends_on=[linked_vpc_spoke]))
|
1199
|
+
```
|
1071
1200
|
|
1072
1201
|
## Import
|
1073
1202
|
|
@@ -1112,6 +1241,7 @@ class Spoke(pulumi.CustomResource):
|
|
1112
1241
|
hub: Optional[pulumi.Input[str]] = None,
|
1113
1242
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1114
1243
|
linked_interconnect_attachments: Optional[pulumi.Input[Union['SpokeLinkedInterconnectAttachmentsArgs', 'SpokeLinkedInterconnectAttachmentsArgsDict']]] = None,
|
1244
|
+
linked_producer_vpc_network: Optional[pulumi.Input[Union['SpokeLinkedProducerVpcNetworkArgs', 'SpokeLinkedProducerVpcNetworkArgsDict']]] = None,
|
1115
1245
|
linked_router_appliance_instances: Optional[pulumi.Input[Union['SpokeLinkedRouterApplianceInstancesArgs', 'SpokeLinkedRouterApplianceInstancesArgsDict']]] = None,
|
1116
1246
|
linked_vpc_network: Optional[pulumi.Input[Union['SpokeLinkedVpcNetworkArgs', 'SpokeLinkedVpcNetworkArgsDict']]] = None,
|
1117
1247
|
linked_vpn_tunnels: Optional[pulumi.Input[Union['SpokeLinkedVpnTunnelsArgs', 'SpokeLinkedVpnTunnelsArgsDict']]] = None,
|
@@ -1133,6 +1263,7 @@ class Spoke(pulumi.CustomResource):
|
|
1133
1263
|
__props__.__dict__["hub"] = hub
|
1134
1264
|
__props__.__dict__["labels"] = labels
|
1135
1265
|
__props__.__dict__["linked_interconnect_attachments"] = linked_interconnect_attachments
|
1266
|
+
__props__.__dict__["linked_producer_vpc_network"] = linked_producer_vpc_network
|
1136
1267
|
__props__.__dict__["linked_router_appliance_instances"] = linked_router_appliance_instances
|
1137
1268
|
__props__.__dict__["linked_vpc_network"] = linked_vpc_network
|
1138
1269
|
__props__.__dict__["linked_vpn_tunnels"] = linked_vpn_tunnels
|
@@ -1165,6 +1296,7 @@ class Spoke(pulumi.CustomResource):
|
|
1165
1296
|
hub: Optional[pulumi.Input[str]] = None,
|
1166
1297
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1167
1298
|
linked_interconnect_attachments: Optional[pulumi.Input[Union['SpokeLinkedInterconnectAttachmentsArgs', 'SpokeLinkedInterconnectAttachmentsArgsDict']]] = None,
|
1299
|
+
linked_producer_vpc_network: Optional[pulumi.Input[Union['SpokeLinkedProducerVpcNetworkArgs', 'SpokeLinkedProducerVpcNetworkArgsDict']]] = None,
|
1168
1300
|
linked_router_appliance_instances: Optional[pulumi.Input[Union['SpokeLinkedRouterApplianceInstancesArgs', 'SpokeLinkedRouterApplianceInstancesArgsDict']]] = None,
|
1169
1301
|
linked_vpc_network: Optional[pulumi.Input[Union['SpokeLinkedVpcNetworkArgs', 'SpokeLinkedVpcNetworkArgsDict']]] = None,
|
1170
1302
|
linked_vpn_tunnels: Optional[pulumi.Input[Union['SpokeLinkedVpnTunnelsArgs', 'SpokeLinkedVpnTunnelsArgsDict']]] = None,
|
@@ -1191,6 +1323,8 @@ class Spoke(pulumi.CustomResource):
|
|
1191
1323
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
1192
1324
|
:param pulumi.Input[Union['SpokeLinkedInterconnectAttachmentsArgs', 'SpokeLinkedInterconnectAttachmentsArgsDict']] linked_interconnect_attachments: A collection of VLAN attachment resources. These resources should be redundant attachments that all advertise the same prefixes to Google Cloud. Alternatively, in active/passive configurations, all attachments should be capable of advertising the same prefixes.
|
1193
1325
|
Structure is documented below.
|
1326
|
+
:param pulumi.Input[Union['SpokeLinkedProducerVpcNetworkArgs', 'SpokeLinkedProducerVpcNetworkArgsDict']] linked_producer_vpc_network: Producer VPC network that is associated with the spoke.
|
1327
|
+
Structure is documented below.
|
1194
1328
|
:param pulumi.Input[Union['SpokeLinkedRouterApplianceInstancesArgs', 'SpokeLinkedRouterApplianceInstancesArgsDict']] linked_router_appliance_instances: The URIs of linked Router appliance resources
|
1195
1329
|
Structure is documented below.
|
1196
1330
|
:param pulumi.Input[Union['SpokeLinkedVpcNetworkArgs', 'SpokeLinkedVpcNetworkArgsDict']] linked_vpc_network: VPC network that is associated with the spoke.
|
@@ -1220,6 +1354,7 @@ class Spoke(pulumi.CustomResource):
|
|
1220
1354
|
__props__.__dict__["hub"] = hub
|
1221
1355
|
__props__.__dict__["labels"] = labels
|
1222
1356
|
__props__.__dict__["linked_interconnect_attachments"] = linked_interconnect_attachments
|
1357
|
+
__props__.__dict__["linked_producer_vpc_network"] = linked_producer_vpc_network
|
1223
1358
|
__props__.__dict__["linked_router_appliance_instances"] = linked_router_appliance_instances
|
1224
1359
|
__props__.__dict__["linked_vpc_network"] = linked_vpc_network
|
1225
1360
|
__props__.__dict__["linked_vpn_tunnels"] = linked_vpn_tunnels
|
@@ -1283,6 +1418,15 @@ class Spoke(pulumi.CustomResource):
|
|
1283
1418
|
"""
|
1284
1419
|
return pulumi.get(self, "linked_interconnect_attachments")
|
1285
1420
|
|
1421
|
+
@property
|
1422
|
+
@pulumi.getter(name="linkedProducerVpcNetwork")
|
1423
|
+
def linked_producer_vpc_network(self) -> pulumi.Output[Optional['outputs.SpokeLinkedProducerVpcNetwork']]:
|
1424
|
+
"""
|
1425
|
+
Producer VPC network that is associated with the spoke.
|
1426
|
+
Structure is documented below.
|
1427
|
+
"""
|
1428
|
+
return pulumi.get(self, "linked_producer_vpc_network")
|
1429
|
+
|
1286
1430
|
@property
|
1287
1431
|
@pulumi.getter(name="linkedRouterApplianceInstances")
|
1288
1432
|
def linked_router_appliance_instances(self) -> pulumi.Output[Optional['outputs.SpokeLinkedRouterApplianceInstances']]:
|
@@ -419,7 +419,7 @@ class ServerTlsPolicy(pulumi.CustomResource):
|
|
419
419
|
server_certificate: Optional[pulumi.Input[Union['ServerTlsPolicyServerCertificateArgs', 'ServerTlsPolicyServerCertificateArgsDict']]] = None,
|
420
420
|
__props__=None):
|
421
421
|
"""
|
422
|
-
|
422
|
+
ServerTlsPolicy is a resource that specifies how a server should authenticate incoming requests. This resource itself does not affect configuration unless it is attached to a target HTTPS proxy or endpoint config selector resource.
|
423
423
|
|
424
424
|
To get more information about ServerTlsPolicy, see:
|
425
425
|
|
@@ -582,7 +582,7 @@ class ServerTlsPolicy(pulumi.CustomResource):
|
|
582
582
|
args: Optional[ServerTlsPolicyArgs] = None,
|
583
583
|
opts: Optional[pulumi.ResourceOptions] = None):
|
584
584
|
"""
|
585
|
-
|
585
|
+
ServerTlsPolicy is a resource that specifies how a server should authenticate incoming requests. This resource itself does not affect configuration unless it is attached to a target HTTPS proxy or endpoint config selector resource.
|
586
586
|
|
587
587
|
To get more information about ServerTlsPolicy, see:
|
588
588
|
|
@@ -0,0 +1,20 @@
|
|
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 .autonomous_database import *
|
9
|
+
from .cloud_exadata_infrastructure import *
|
10
|
+
from .cloud_vm_cluster import *
|
11
|
+
from .get_autonomous_database import *
|
12
|
+
from .get_autonomous_databases import *
|
13
|
+
from .get_cloud_exadata_infrastructure import *
|
14
|
+
from .get_cloud_exadata_infrastructures import *
|
15
|
+
from .get_cloud_vm_cluster import *
|
16
|
+
from .get_cloud_vm_clusters import *
|
17
|
+
from .get_db_nodes import *
|
18
|
+
from .get_db_servers import *
|
19
|
+
from ._inputs import *
|
20
|
+
from . import outputs
|