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
pulumi_gcp/config/vars.py
CHANGED
@@ -509,6 +509,10 @@ class _ExportableConfig(types.ModuleType):
|
|
509
509
|
def notebooks_custom_endpoint(self) -> Optional[str]:
|
510
510
|
return __config__.get('notebooksCustomEndpoint')
|
511
511
|
|
512
|
+
@property
|
513
|
+
def oracle_database_custom_endpoint(self) -> Optional[str]:
|
514
|
+
return __config__.get('oracleDatabaseCustomEndpoint')
|
515
|
+
|
512
516
|
@property
|
513
517
|
def org_policy_custom_endpoint(self) -> Optional[str]:
|
514
518
|
return __config__.get('orgPolicyCustomEndpoint')
|
@@ -689,6 +693,10 @@ class _ExportableConfig(types.ModuleType):
|
|
689
693
|
def tpu_v2_custom_endpoint(self) -> Optional[str]:
|
690
694
|
return __config__.get('tpuV2CustomEndpoint')
|
691
695
|
|
696
|
+
@property
|
697
|
+
def transcoder_custom_endpoint(self) -> Optional[str]:
|
698
|
+
return __config__.get('transcoderCustomEndpoint')
|
699
|
+
|
692
700
|
@property
|
693
701
|
def universe_domain(self) -> Optional[str]:
|
694
702
|
return __config__.get('universeDomain')
|
@@ -97,6 +97,9 @@ class AttachedClusterArgs:
|
|
97
97
|
pulumi.set(__self__, "project", project)
|
98
98
|
if proxy_config is not None:
|
99
99
|
pulumi.set(__self__, "proxy_config", proxy_config)
|
100
|
+
if security_posture_config is not None:
|
101
|
+
warnings.warn("""`security_posture_config` is deprecated and will be removed in a future major release.""", DeprecationWarning)
|
102
|
+
pulumi.log.warn("""security_posture_config is deprecated: `security_posture_config` is deprecated and will be removed in a future major release.""")
|
100
103
|
if security_posture_config is not None:
|
101
104
|
pulumi.set(__self__, "security_posture_config", security_posture_config)
|
102
105
|
|
@@ -296,6 +299,7 @@ class AttachedClusterArgs:
|
|
296
299
|
|
297
300
|
@property
|
298
301
|
@pulumi.getter(name="securityPostureConfig")
|
302
|
+
@_utilities.deprecated("""`security_posture_config` is deprecated and will be removed in a future major release.""")
|
299
303
|
def security_posture_config(self) -> Optional[pulumi.Input['AttachedClusterSecurityPostureConfigArgs']]:
|
300
304
|
"""
|
301
305
|
Enable/Disable Security Posture API features for the cluster.
|
@@ -428,6 +432,9 @@ class _AttachedClusterState:
|
|
428
432
|
pulumi.set(__self__, "proxy_config", proxy_config)
|
429
433
|
if reconciling is not None:
|
430
434
|
pulumi.set(__self__, "reconciling", reconciling)
|
435
|
+
if security_posture_config is not None:
|
436
|
+
warnings.warn("""`security_posture_config` is deprecated and will be removed in a future major release.""", DeprecationWarning)
|
437
|
+
pulumi.log.warn("""security_posture_config is deprecated: `security_posture_config` is deprecated and will be removed in a future major release.""")
|
431
438
|
if security_posture_config is not None:
|
432
439
|
pulumi.set(__self__, "security_posture_config", security_posture_config)
|
433
440
|
if state is not None:
|
@@ -707,6 +714,7 @@ class _AttachedClusterState:
|
|
707
714
|
|
708
715
|
@property
|
709
716
|
@pulumi.getter(name="securityPostureConfig")
|
717
|
+
@_utilities.deprecated("""`security_posture_config` is deprecated and will be removed in a future major release.""")
|
710
718
|
def security_posture_config(self) -> Optional[pulumi.Input['AttachedClusterSecurityPostureConfigArgs']]:
|
711
719
|
"""
|
712
720
|
Enable/Disable Security Posture API features for the cluster.
|
@@ -884,9 +892,6 @@ class AttachedCluster(pulumi.CustomResource):
|
|
884
892
|
"name": "proxy-config",
|
885
893
|
"namespace": "default",
|
886
894
|
},
|
887
|
-
},
|
888
|
-
security_posture_config={
|
889
|
-
"vulnerability_mode": "VULNERABILITY_ENTERPRISE",
|
890
895
|
})
|
891
896
|
```
|
892
897
|
### Container Attached Cluster Ignore Errors
|
@@ -1072,9 +1077,6 @@ class AttachedCluster(pulumi.CustomResource):
|
|
1072
1077
|
"name": "proxy-config",
|
1073
1078
|
"namespace": "default",
|
1074
1079
|
},
|
1075
|
-
},
|
1076
|
-
security_posture_config={
|
1077
|
-
"vulnerability_mode": "VULNERABILITY_ENTERPRISE",
|
1078
1080
|
})
|
1079
1081
|
```
|
1080
1082
|
### Container Attached Cluster Ignore Errors
|
@@ -1509,6 +1511,7 @@ class AttachedCluster(pulumi.CustomResource):
|
|
1509
1511
|
|
1510
1512
|
@property
|
1511
1513
|
@pulumi.getter(name="securityPostureConfig")
|
1514
|
+
@_utilities.deprecated("""`security_posture_config` is deprecated and will be removed in a future major release.""")
|
1512
1515
|
def security_posture_config(self) -> pulumi.Output['outputs.AttachedClusterSecurityPostureConfig']:
|
1513
1516
|
"""
|
1514
1517
|
Enable/Disable Security Posture API features for the cluster.
|
pulumi_gcp/container/outputs.py
CHANGED
@@ -16534,7 +16534,7 @@ class GetClusterLoggingConfigResult(dict):
|
|
16534
16534
|
def __init__(__self__, *,
|
16535
16535
|
enable_components: Sequence[str]):
|
16536
16536
|
"""
|
16537
|
-
:param Sequence[str] enable_components: GKE components exposing logs. Valid values include SYSTEM_COMPONENTS, APISERVER, CONTROLLER_MANAGER, SCHEDULER, and WORKLOADS.
|
16537
|
+
:param Sequence[str] enable_components: GKE components exposing logs. Valid values include SYSTEM_COMPONENTS, APISERVER, CONTROLLER_MANAGER, KCP_CONNECTION, KCP_SSHD, SCHEDULER, and WORKLOADS.
|
16538
16538
|
"""
|
16539
16539
|
pulumi.set(__self__, "enable_components", enable_components)
|
16540
16540
|
|
@@ -16542,7 +16542,7 @@ class GetClusterLoggingConfigResult(dict):
|
|
16542
16542
|
@pulumi.getter(name="enableComponents")
|
16543
16543
|
def enable_components(self) -> Sequence[str]:
|
16544
16544
|
"""
|
16545
|
-
GKE components exposing logs. Valid values include SYSTEM_COMPONENTS, APISERVER, CONTROLLER_MANAGER, SCHEDULER, and WORKLOADS.
|
16545
|
+
GKE components exposing logs. Valid values include SYSTEM_COMPONENTS, APISERVER, CONTROLLER_MANAGER, KCP_CONNECTION, KCP_SSHD, SCHEDULER, and WORKLOADS.
|
16546
16546
|
"""
|
16547
16547
|
return pulumi.get(self, "enable_components")
|
16548
16548
|
|
pulumi_gcp/datastream/stream.py
CHANGED
@@ -707,7 +707,7 @@ class Stream(pulumi.CustomResource):
|
|
707
707
|
connection_profile_id="source-profile",
|
708
708
|
postgresql_profile={
|
709
709
|
"hostname": "hostname",
|
710
|
-
"port":
|
710
|
+
"port": 5432,
|
711
711
|
"username": "user",
|
712
712
|
"password": "pass",
|
713
713
|
"database": "postgres",
|
@@ -1545,7 +1545,7 @@ class Stream(pulumi.CustomResource):
|
|
1545
1545
|
connection_profile_id="source-profile",
|
1546
1546
|
postgresql_profile={
|
1547
1547
|
"hostname": "hostname",
|
1548
|
-
"port":
|
1548
|
+
"port": 5432,
|
1549
1549
|
"username": "user",
|
1550
1550
|
"password": "pass",
|
1551
1551
|
"database": "postgres",
|