pulumi-gcp 8.11.0a1734348982__py3-none-any.whl → 8.11.0a1734385115__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 +91 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +29 -0
- pulumi_gcp/accesscontextmanager/outputs.py +18 -0
- pulumi_gcp/accesscontextmanager/service_perimeter.py +36 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_egress_policy.py +6 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_ingress_policy.py +6 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_egress_policy.py +6 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_ingress_policy.py +6 -0
- pulumi_gcp/apigee/app_group.py +7 -7
- pulumi_gcp/applicationintegration/client.py +8 -6
- pulumi_gcp/artifactregistry/_inputs.py +24 -15
- pulumi_gcp/artifactregistry/outputs.py +32 -20
- pulumi_gcp/artifactregistry/repository.py +128 -0
- pulumi_gcp/assuredworkloads/workload.py +7 -7
- pulumi_gcp/backupdisasterrecovery/__init__.py +2 -0
- pulumi_gcp/backupdisasterrecovery/backup_plan.py +2 -2
- pulumi_gcp/backupdisasterrecovery/backup_vault.py +12 -8
- pulumi_gcp/backupdisasterrecovery/get_backup.py +153 -0
- pulumi_gcp/backupdisasterrecovery/get_backup_vault.py +415 -0
- pulumi_gcp/backupdisasterrecovery/outputs.py +63 -0
- pulumi_gcp/bigquery/app_profile.py +75 -0
- pulumi_gcp/billing/_inputs.py +6 -6
- pulumi_gcp/billing/outputs.py +4 -4
- pulumi_gcp/certificateauthority/_inputs.py +9 -9
- pulumi_gcp/certificateauthority/outputs.py +8 -8
- pulumi_gcp/cloudbuild/_inputs.py +53 -0
- pulumi_gcp/cloudbuild/outputs.py +50 -0
- pulumi_gcp/cloudbuild/worker_pool.py +47 -0
- pulumi_gcp/clouddeploy/_inputs.py +254 -0
- pulumi_gcp/clouddeploy/outputs.py +211 -0
- pulumi_gcp/clouddeploy/target.py +47 -0
- pulumi_gcp/cloudfunctionsv2/_inputs.py +6 -6
- pulumi_gcp/cloudfunctionsv2/outputs.py +8 -8
- pulumi_gcp/cloudrunv2/job.py +4 -4
- pulumi_gcp/cloudrunv2/service.py +4 -4
- pulumi_gcp/composer/get_user_workloads_config_map.py +4 -0
- pulumi_gcp/composer/get_user_workloads_secret.py +4 -0
- pulumi_gcp/composer/user_workloads_config_map.py +14 -0
- pulumi_gcp/composer/user_workloads_secret.py +6 -0
- pulumi_gcp/compute/_inputs.py +566 -25
- pulumi_gcp/compute/disk.py +21 -7
- pulumi_gcp/compute/firewall_policy_rule.py +12 -0
- pulumi_gcp/compute/get_forwarding_rules.py +2 -2
- pulumi_gcp/compute/get_global_forwarding_rule.py +12 -1
- pulumi_gcp/compute/get_instance_group_manager.py +12 -1
- pulumi_gcp/compute/get_network.py +35 -1
- pulumi_gcp/compute/get_region_instance_group_manager.py +12 -1
- pulumi_gcp/compute/get_region_network_endpoint_group.py +12 -1
- pulumi_gcp/compute/global_forwarding_rule.py +28 -0
- pulumi_gcp/compute/instance_group_manager.py +28 -0
- pulumi_gcp/compute/network.py +75 -0
- pulumi_gcp/compute/outputs.py +655 -26
- pulumi_gcp/compute/region_health_check.py +28 -0
- pulumi_gcp/compute/region_instance_group_manager.py +28 -0
- pulumi_gcp/compute/region_network_endpoint.py +28 -0
- pulumi_gcp/compute/region_network_endpoint_group.py +70 -2
- pulumi_gcp/compute/subnetwork.py +30 -2
- pulumi_gcp/compute/url_map.py +7 -7
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +201 -3
- pulumi_gcp/container/cluster.py +68 -14
- pulumi_gcp/container/get_cluster.py +12 -1
- pulumi_gcp/container/outputs.py +249 -3
- pulumi_gcp/dataproc/_inputs.py +209 -1
- pulumi_gcp/dataproc/batch.py +76 -0
- pulumi_gcp/dataproc/outputs.py +169 -3
- pulumi_gcp/diagflow/_inputs.py +3 -3
- pulumi_gcp/diagflow/outputs.py +2 -2
- pulumi_gcp/discoveryengine/search_engine.py +7 -7
- pulumi_gcp/firebaserules/release.py +76 -0
- pulumi_gcp/firestore/field.py +4 -4
- pulumi_gcp/gemini/__init__.py +15 -0
- pulumi_gcp/gemini/_inputs.py +183 -0
- pulumi_gcp/gemini/code_repository_index.py +659 -0
- pulumi_gcp/gemini/get_repository_group_iam_policy.py +171 -0
- pulumi_gcp/gemini/outputs.py +130 -0
- pulumi_gcp/gemini/repository_group.py +586 -0
- pulumi_gcp/gemini/repository_group_iam_binding.py +604 -0
- pulumi_gcp/gemini/repository_group_iam_member.py +604 -0
- pulumi_gcp/gemini/repository_group_iam_policy.py +443 -0
- pulumi_gcp/gkehub/_inputs.py +30 -10
- 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 +21 -7
- pulumi_gcp/gkehub/scope_rbac_role_binding.py +4 -4
- pulumi_gcp/iam/__init__.py +1 -0
- pulumi_gcp/iam/_inputs.py +137 -0
- pulumi_gcp/iam/folders_policy_binding.py +16 -0
- pulumi_gcp/iam/organizations_policy_binding.py +16 -0
- pulumi_gcp/iam/outputs.py +99 -0
- pulumi_gcp/iam/principal_access_boundary_policy.py +16 -0
- pulumi_gcp/iam/projects_policy_binding.py +917 -0
- pulumi_gcp/iap/tunnel_dest_group.py +2 -2
- pulumi_gcp/integrationconnectors/_inputs.py +15 -15
- pulumi_gcp/integrationconnectors/managed_zone.py +8 -8
- pulumi_gcp/integrationconnectors/outputs.py +10 -10
- pulumi_gcp/monitoring/_inputs.py +13 -6
- pulumi_gcp/monitoring/outputs.py +10 -4
- pulumi_gcp/netapp/_inputs.py +3 -3
- pulumi_gcp/netapp/active_directory.py +7 -7
- pulumi_gcp/netapp/outputs.py +2 -2
- pulumi_gcp/netapp/volume.py +11 -11
- pulumi_gcp/networkconnectivity/spoke.py +10 -10
- pulumi_gcp/networksecurity/__init__.py +4 -0
- pulumi_gcp/networksecurity/_inputs.py +115 -0
- pulumi_gcp/networksecurity/mirroring_deployment.py +848 -0
- pulumi_gcp/networksecurity/mirroring_deployment_group.py +752 -0
- pulumi_gcp/networksecurity/mirroring_endpoint_group.py +737 -0
- pulumi_gcp/networksecurity/mirroring_endpoint_group_association.py +840 -0
- pulumi_gcp/networksecurity/outputs.py +70 -0
- pulumi_gcp/oracledatabase/autonomous_database.py +42 -4
- pulumi_gcp/oracledatabase/cloud_exadata_infrastructure.py +42 -4
- pulumi_gcp/oracledatabase/cloud_vm_cluster.py +50 -8
- pulumi_gcp/oracledatabase/get_autonomous_database.py +12 -1
- pulumi_gcp/oracledatabase/get_cloud_exadata_infrastructure.py +12 -1
- pulumi_gcp/oracledatabase/get_cloud_vm_cluster.py +12 -1
- pulumi_gcp/oracledatabase/outputs.py +21 -0
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/parallelstore/instance.py +4 -0
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pubsub/subscription.py +6 -6
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/_inputs.py +435 -3
- pulumi_gcp/redis/cluster.py +287 -16
- pulumi_gcp/redis/outputs.py +304 -2
- pulumi_gcp/serviceaccount/get_account_id_token.py +2 -2
- pulumi_gcp/serviceaccount/get_account_key.py +2 -2
- pulumi_gcp/storage/get_bucket.py +2 -2
- pulumi_gcp/storage/get_bucket_object_content.py +2 -2
- pulumi_gcp/tpu/__init__.py +1 -0
- pulumi_gcp/tpu/_inputs.py +188 -6
- pulumi_gcp/tpu/outputs.py +164 -4
- pulumi_gcp/tpu/v2_queued_resource.py +434 -0
- pulumi_gcp/vertex/ai_endpoint.py +4 -4
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
- pulumi_gcp/vertex/ai_index_endpoint.py +2 -2
- {pulumi_gcp-8.11.0a1734348982.dist-info → pulumi_gcp-8.11.0a1734385115.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.11.0a1734348982.dist-info → pulumi_gcp-8.11.0a1734385115.dist-info}/RECORD +142 -125
- {pulumi_gcp-8.11.0a1734348982.dist-info → pulumi_gcp-8.11.0a1734385115.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.11.0a1734348982.dist-info → pulumi_gcp-8.11.0a1734385115.dist-info}/top_level.txt +0 -0
@@ -50,11 +50,15 @@ __all__ = [
|
|
50
50
|
'DeliveryPipelineSerialPipelineStageStrategyCanaryRuntimeConfigCloudRun',
|
51
51
|
'DeliveryPipelineSerialPipelineStageStrategyCanaryRuntimeConfigKubernetes',
|
52
52
|
'DeliveryPipelineSerialPipelineStageStrategyCanaryRuntimeConfigKubernetesGatewayServiceMesh',
|
53
|
+
'DeliveryPipelineSerialPipelineStageStrategyCanaryRuntimeConfigKubernetesGatewayServiceMeshRouteDestinations',
|
53
54
|
'DeliveryPipelineSerialPipelineStageStrategyCanaryRuntimeConfigKubernetesServiceNetworking',
|
54
55
|
'DeliveryPipelineSerialPipelineStageStrategyStandard',
|
55
56
|
'DeliveryPipelineSerialPipelineStageStrategyStandardPostdeploy',
|
56
57
|
'DeliveryPipelineSerialPipelineStageStrategyStandardPredeploy',
|
57
58
|
'TargetAnthosCluster',
|
59
|
+
'TargetAssociatedEntity',
|
60
|
+
'TargetAssociatedEntityAnthosCluster',
|
61
|
+
'TargetAssociatedEntityGkeCluster',
|
58
62
|
'TargetCustomTarget',
|
59
63
|
'TargetExecutionConfig',
|
60
64
|
'TargetGke',
|
@@ -1577,6 +1581,8 @@ class DeliveryPipelineSerialPipelineStageStrategyCanaryRuntimeConfigKubernetesGa
|
|
1577
1581
|
suggest = "http_route"
|
1578
1582
|
elif key == "podSelectorLabel":
|
1579
1583
|
suggest = "pod_selector_label"
|
1584
|
+
elif key == "routeDestinations":
|
1585
|
+
suggest = "route_destinations"
|
1580
1586
|
elif key == "routeUpdateWaitTime":
|
1581
1587
|
suggest = "route_update_wait_time"
|
1582
1588
|
elif key == "stableCutbackDuration":
|
@@ -1598,6 +1604,7 @@ class DeliveryPipelineSerialPipelineStageStrategyCanaryRuntimeConfigKubernetesGa
|
|
1598
1604
|
http_route: str,
|
1599
1605
|
service: str,
|
1600
1606
|
pod_selector_label: Optional[str] = None,
|
1607
|
+
route_destinations: Optional['outputs.DeliveryPipelineSerialPipelineStageStrategyCanaryRuntimeConfigKubernetesGatewayServiceMeshRouteDestinations'] = None,
|
1601
1608
|
route_update_wait_time: Optional[str] = None,
|
1602
1609
|
stable_cutback_duration: Optional[str] = None):
|
1603
1610
|
"""
|
@@ -1605,6 +1612,7 @@ class DeliveryPipelineSerialPipelineStageStrategyCanaryRuntimeConfigKubernetesGa
|
|
1605
1612
|
:param str http_route: Required. Name of the Gateway API HTTPRoute.
|
1606
1613
|
:param str service: Required. Name of the Kubernetes Service.
|
1607
1614
|
:param str pod_selector_label: Optional. The label to use when selecting Pods for the Deployment and Service resources. This label must already be present in both resources.
|
1615
|
+
:param 'DeliveryPipelineSerialPipelineStageStrategyCanaryRuntimeConfigKubernetesGatewayServiceMeshRouteDestinationsArgs' route_destinations: Optional. Route destinations allow configuring the Gateway API HTTPRoute to be deployed to additional clusters. This option is available for multi-cluster service mesh set ups that require the route to exist in the clusters that call the service. If unspecified, the HTTPRoute will only be deployed to the Target cluster.
|
1608
1616
|
:param str route_update_wait_time: Optional. The time to wait for route updates to propagate. The maximum configurable time is 3 hours, in seconds format. If unspecified, there is no wait time.
|
1609
1617
|
:param str stable_cutback_duration: Optional. The amount of time to migrate traffic back from the canary Service to the original Service during the stable phase deployment. If specified, must be between 15s and 3600s. If unspecified, there is no cutback time.
|
1610
1618
|
"""
|
@@ -1613,6 +1621,8 @@ class DeliveryPipelineSerialPipelineStageStrategyCanaryRuntimeConfigKubernetesGa
|
|
1613
1621
|
pulumi.set(__self__, "service", service)
|
1614
1622
|
if pod_selector_label is not None:
|
1615
1623
|
pulumi.set(__self__, "pod_selector_label", pod_selector_label)
|
1624
|
+
if route_destinations is not None:
|
1625
|
+
pulumi.set(__self__, "route_destinations", route_destinations)
|
1616
1626
|
if route_update_wait_time is not None:
|
1617
1627
|
pulumi.set(__self__, "route_update_wait_time", route_update_wait_time)
|
1618
1628
|
if stable_cutback_duration is not None:
|
@@ -1650,6 +1660,14 @@ class DeliveryPipelineSerialPipelineStageStrategyCanaryRuntimeConfigKubernetesGa
|
|
1650
1660
|
"""
|
1651
1661
|
return pulumi.get(self, "pod_selector_label")
|
1652
1662
|
|
1663
|
+
@property
|
1664
|
+
@pulumi.getter(name="routeDestinations")
|
1665
|
+
def route_destinations(self) -> Optional['outputs.DeliveryPipelineSerialPipelineStageStrategyCanaryRuntimeConfigKubernetesGatewayServiceMeshRouteDestinations']:
|
1666
|
+
"""
|
1667
|
+
Optional. Route destinations allow configuring the Gateway API HTTPRoute to be deployed to additional clusters. This option is available for multi-cluster service mesh set ups that require the route to exist in the clusters that call the service. If unspecified, the HTTPRoute will only be deployed to the Target cluster.
|
1668
|
+
"""
|
1669
|
+
return pulumi.get(self, "route_destinations")
|
1670
|
+
|
1653
1671
|
@property
|
1654
1672
|
@pulumi.getter(name="routeUpdateWaitTime")
|
1655
1673
|
def route_update_wait_time(self) -> Optional[str]:
|
@@ -1667,6 +1685,55 @@ class DeliveryPipelineSerialPipelineStageStrategyCanaryRuntimeConfigKubernetesGa
|
|
1667
1685
|
return pulumi.get(self, "stable_cutback_duration")
|
1668
1686
|
|
1669
1687
|
|
1688
|
+
@pulumi.output_type
|
1689
|
+
class DeliveryPipelineSerialPipelineStageStrategyCanaryRuntimeConfigKubernetesGatewayServiceMeshRouteDestinations(dict):
|
1690
|
+
@staticmethod
|
1691
|
+
def __key_warning(key: str):
|
1692
|
+
suggest = None
|
1693
|
+
if key == "destinationIds":
|
1694
|
+
suggest = "destination_ids"
|
1695
|
+
elif key == "propagateService":
|
1696
|
+
suggest = "propagate_service"
|
1697
|
+
|
1698
|
+
if suggest:
|
1699
|
+
pulumi.log.warn(f"Key '{key}' not found in DeliveryPipelineSerialPipelineStageStrategyCanaryRuntimeConfigKubernetesGatewayServiceMeshRouteDestinations. Access the value via the '{suggest}' property getter instead.")
|
1700
|
+
|
1701
|
+
def __getitem__(self, key: str) -> Any:
|
1702
|
+
DeliveryPipelineSerialPipelineStageStrategyCanaryRuntimeConfigKubernetesGatewayServiceMeshRouteDestinations.__key_warning(key)
|
1703
|
+
return super().__getitem__(key)
|
1704
|
+
|
1705
|
+
def get(self, key: str, default = None) -> Any:
|
1706
|
+
DeliveryPipelineSerialPipelineStageStrategyCanaryRuntimeConfigKubernetesGatewayServiceMeshRouteDestinations.__key_warning(key)
|
1707
|
+
return super().get(key, default)
|
1708
|
+
|
1709
|
+
def __init__(__self__, *,
|
1710
|
+
destination_ids: Sequence[str],
|
1711
|
+
propagate_service: Optional[bool] = None):
|
1712
|
+
"""
|
1713
|
+
:param Sequence[str] destination_ids: Required. The clusters where the Gateway API HTTPRoute resource will be deployed to. Valid entries include the associated entities IDs configured in the Target resource and "@self" to include the Target cluster.
|
1714
|
+
:param bool propagate_service: Optional. Whether to propagate the Kubernetes Service to the route destination clusters. The Service will always be deployed to the Target cluster even if the HTTPRoute is not. This option may be used to facilitiate successful DNS lookup in the route destination clusters. Can only be set to true if destinations are specified.
|
1715
|
+
"""
|
1716
|
+
pulumi.set(__self__, "destination_ids", destination_ids)
|
1717
|
+
if propagate_service is not None:
|
1718
|
+
pulumi.set(__self__, "propagate_service", propagate_service)
|
1719
|
+
|
1720
|
+
@property
|
1721
|
+
@pulumi.getter(name="destinationIds")
|
1722
|
+
def destination_ids(self) -> Sequence[str]:
|
1723
|
+
"""
|
1724
|
+
Required. The clusters where the Gateway API HTTPRoute resource will be deployed to. Valid entries include the associated entities IDs configured in the Target resource and "@self" to include the Target cluster.
|
1725
|
+
"""
|
1726
|
+
return pulumi.get(self, "destination_ids")
|
1727
|
+
|
1728
|
+
@property
|
1729
|
+
@pulumi.getter(name="propagateService")
|
1730
|
+
def propagate_service(self) -> Optional[bool]:
|
1731
|
+
"""
|
1732
|
+
Optional. Whether to propagate the Kubernetes Service to the route destination clusters. The Service will always be deployed to the Target cluster even if the HTTPRoute is not. This option may be used to facilitiate successful DNS lookup in the route destination clusters. Can only be set to true if destinations are specified.
|
1733
|
+
"""
|
1734
|
+
return pulumi.get(self, "propagate_service")
|
1735
|
+
|
1736
|
+
|
1670
1737
|
@pulumi.output_type
|
1671
1738
|
class DeliveryPipelineSerialPipelineStageStrategyCanaryRuntimeConfigKubernetesServiceNetworking(dict):
|
1672
1739
|
@staticmethod
|
@@ -1839,6 +1906,150 @@ class TargetAnthosCluster(dict):
|
|
1839
1906
|
return pulumi.get(self, "membership")
|
1840
1907
|
|
1841
1908
|
|
1909
|
+
@pulumi.output_type
|
1910
|
+
class TargetAssociatedEntity(dict):
|
1911
|
+
@staticmethod
|
1912
|
+
def __key_warning(key: str):
|
1913
|
+
suggest = None
|
1914
|
+
if key == "entityId":
|
1915
|
+
suggest = "entity_id"
|
1916
|
+
elif key == "anthosClusters":
|
1917
|
+
suggest = "anthos_clusters"
|
1918
|
+
elif key == "gkeClusters":
|
1919
|
+
suggest = "gke_clusters"
|
1920
|
+
|
1921
|
+
if suggest:
|
1922
|
+
pulumi.log.warn(f"Key '{key}' not found in TargetAssociatedEntity. Access the value via the '{suggest}' property getter instead.")
|
1923
|
+
|
1924
|
+
def __getitem__(self, key: str) -> Any:
|
1925
|
+
TargetAssociatedEntity.__key_warning(key)
|
1926
|
+
return super().__getitem__(key)
|
1927
|
+
|
1928
|
+
def get(self, key: str, default = None) -> Any:
|
1929
|
+
TargetAssociatedEntity.__key_warning(key)
|
1930
|
+
return super().get(key, default)
|
1931
|
+
|
1932
|
+
def __init__(__self__, *,
|
1933
|
+
entity_id: str,
|
1934
|
+
anthos_clusters: Optional[Sequence['outputs.TargetAssociatedEntityAnthosCluster']] = None,
|
1935
|
+
gke_clusters: Optional[Sequence['outputs.TargetAssociatedEntityGkeCluster']] = None):
|
1936
|
+
"""
|
1937
|
+
:param str entity_id: The name for the key in the map for which this object is mapped to in the API
|
1938
|
+
:param Sequence['TargetAssociatedEntityAnthosClusterArgs'] anthos_clusters: Optional. Information specifying Anthos clusters as associated entities.
|
1939
|
+
:param Sequence['TargetAssociatedEntityGkeClusterArgs'] gke_clusters: Optional. Information specifying GKE clusters as associated entities.
|
1940
|
+
"""
|
1941
|
+
pulumi.set(__self__, "entity_id", entity_id)
|
1942
|
+
if anthos_clusters is not None:
|
1943
|
+
pulumi.set(__self__, "anthos_clusters", anthos_clusters)
|
1944
|
+
if gke_clusters is not None:
|
1945
|
+
pulumi.set(__self__, "gke_clusters", gke_clusters)
|
1946
|
+
|
1947
|
+
@property
|
1948
|
+
@pulumi.getter(name="entityId")
|
1949
|
+
def entity_id(self) -> str:
|
1950
|
+
"""
|
1951
|
+
The name for the key in the map for which this object is mapped to in the API
|
1952
|
+
"""
|
1953
|
+
return pulumi.get(self, "entity_id")
|
1954
|
+
|
1955
|
+
@property
|
1956
|
+
@pulumi.getter(name="anthosClusters")
|
1957
|
+
def anthos_clusters(self) -> Optional[Sequence['outputs.TargetAssociatedEntityAnthosCluster']]:
|
1958
|
+
"""
|
1959
|
+
Optional. Information specifying Anthos clusters as associated entities.
|
1960
|
+
"""
|
1961
|
+
return pulumi.get(self, "anthos_clusters")
|
1962
|
+
|
1963
|
+
@property
|
1964
|
+
@pulumi.getter(name="gkeClusters")
|
1965
|
+
def gke_clusters(self) -> Optional[Sequence['outputs.TargetAssociatedEntityGkeCluster']]:
|
1966
|
+
"""
|
1967
|
+
Optional. Information specifying GKE clusters as associated entities.
|
1968
|
+
"""
|
1969
|
+
return pulumi.get(self, "gke_clusters")
|
1970
|
+
|
1971
|
+
|
1972
|
+
@pulumi.output_type
|
1973
|
+
class TargetAssociatedEntityAnthosCluster(dict):
|
1974
|
+
def __init__(__self__, *,
|
1975
|
+
membership: Optional[str] = None):
|
1976
|
+
"""
|
1977
|
+
:param str membership: Optional. Membership of the GKE Hub-registered cluster to which to apply the Skaffold configuration. Format is `projects/{project}/locations/{location}/memberships/{membership_name}`.
|
1978
|
+
"""
|
1979
|
+
if membership is not None:
|
1980
|
+
pulumi.set(__self__, "membership", membership)
|
1981
|
+
|
1982
|
+
@property
|
1983
|
+
@pulumi.getter
|
1984
|
+
def membership(self) -> Optional[str]:
|
1985
|
+
"""
|
1986
|
+
Optional. Membership of the GKE Hub-registered cluster to which to apply the Skaffold configuration. Format is `projects/{project}/locations/{location}/memberships/{membership_name}`.
|
1987
|
+
"""
|
1988
|
+
return pulumi.get(self, "membership")
|
1989
|
+
|
1990
|
+
|
1991
|
+
@pulumi.output_type
|
1992
|
+
class TargetAssociatedEntityGkeCluster(dict):
|
1993
|
+
@staticmethod
|
1994
|
+
def __key_warning(key: str):
|
1995
|
+
suggest = None
|
1996
|
+
if key == "internalIp":
|
1997
|
+
suggest = "internal_ip"
|
1998
|
+
elif key == "proxyUrl":
|
1999
|
+
suggest = "proxy_url"
|
2000
|
+
|
2001
|
+
if suggest:
|
2002
|
+
pulumi.log.warn(f"Key '{key}' not found in TargetAssociatedEntityGkeCluster. Access the value via the '{suggest}' property getter instead.")
|
2003
|
+
|
2004
|
+
def __getitem__(self, key: str) -> Any:
|
2005
|
+
TargetAssociatedEntityGkeCluster.__key_warning(key)
|
2006
|
+
return super().__getitem__(key)
|
2007
|
+
|
2008
|
+
def get(self, key: str, default = None) -> Any:
|
2009
|
+
TargetAssociatedEntityGkeCluster.__key_warning(key)
|
2010
|
+
return super().get(key, default)
|
2011
|
+
|
2012
|
+
def __init__(__self__, *,
|
2013
|
+
cluster: Optional[str] = None,
|
2014
|
+
internal_ip: Optional[bool] = None,
|
2015
|
+
proxy_url: Optional[str] = None):
|
2016
|
+
"""
|
2017
|
+
:param str cluster: Optional. Information specifying a GKE Cluster. Format is `projects/{project_id}/locations/{location_id}/clusters/{cluster_id}`.
|
2018
|
+
:param bool internal_ip: Optional. If true, `cluster` is accessed using the private IP address of the control plane endpoint. Otherwise, the default IP address of the control plane endpoint is used. The default IP address is the private IP address for clusters with private control-plane endpoints and the public IP address otherwise. Only specify this option when `cluster` is a [private GKE cluster](https://cloud.google.com/kubernetes-engine/docs/concepts/private-cluster-concept).
|
2019
|
+
:param str proxy_url: Optional. If set, used to configure a [proxy](https://kubernetes.io/docs/concepts/configuration/organize-cluster-access-kubeconfig/#proxy) to the Kubernetes server.
|
2020
|
+
"""
|
2021
|
+
if cluster is not None:
|
2022
|
+
pulumi.set(__self__, "cluster", cluster)
|
2023
|
+
if internal_ip is not None:
|
2024
|
+
pulumi.set(__self__, "internal_ip", internal_ip)
|
2025
|
+
if proxy_url is not None:
|
2026
|
+
pulumi.set(__self__, "proxy_url", proxy_url)
|
2027
|
+
|
2028
|
+
@property
|
2029
|
+
@pulumi.getter
|
2030
|
+
def cluster(self) -> Optional[str]:
|
2031
|
+
"""
|
2032
|
+
Optional. Information specifying a GKE Cluster. Format is `projects/{project_id}/locations/{location_id}/clusters/{cluster_id}`.
|
2033
|
+
"""
|
2034
|
+
return pulumi.get(self, "cluster")
|
2035
|
+
|
2036
|
+
@property
|
2037
|
+
@pulumi.getter(name="internalIp")
|
2038
|
+
def internal_ip(self) -> Optional[bool]:
|
2039
|
+
"""
|
2040
|
+
Optional. If true, `cluster` is accessed using the private IP address of the control plane endpoint. Otherwise, the default IP address of the control plane endpoint is used. The default IP address is the private IP address for clusters with private control-plane endpoints and the public IP address otherwise. Only specify this option when `cluster` is a [private GKE cluster](https://cloud.google.com/kubernetes-engine/docs/concepts/private-cluster-concept).
|
2041
|
+
"""
|
2042
|
+
return pulumi.get(self, "internal_ip")
|
2043
|
+
|
2044
|
+
@property
|
2045
|
+
@pulumi.getter(name="proxyUrl")
|
2046
|
+
def proxy_url(self) -> Optional[str]:
|
2047
|
+
"""
|
2048
|
+
Optional. If set, used to configure a [proxy](https://kubernetes.io/docs/concepts/configuration/organize-cluster-access-kubeconfig/#proxy) to the Kubernetes server.
|
2049
|
+
"""
|
2050
|
+
return pulumi.get(self, "proxy_url")
|
2051
|
+
|
2052
|
+
|
1842
2053
|
@pulumi.output_type
|
1843
2054
|
class TargetCustomTarget(dict):
|
1844
2055
|
@staticmethod
|
pulumi_gcp/clouddeploy/target.py
CHANGED
@@ -24,6 +24,7 @@ class TargetArgs:
|
|
24
24
|
location: pulumi.Input[str],
|
25
25
|
annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
26
26
|
anthos_cluster: Optional[pulumi.Input['TargetAnthosClusterArgs']] = None,
|
27
|
+
associated_entities: Optional[pulumi.Input[Sequence[pulumi.Input['TargetAssociatedEntityArgs']]]] = None,
|
27
28
|
custom_target: Optional[pulumi.Input['TargetCustomTargetArgs']] = None,
|
28
29
|
deploy_parameters: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
29
30
|
description: Optional[pulumi.Input[str]] = None,
|
@@ -43,6 +44,7 @@ class TargetArgs:
|
|
43
44
|
**Note**: This field is non-authoritative, and will only manage the annotations present in your configuration.
|
44
45
|
Please refer to the field `effective_annotations` for all of the annotations present on the resource.
|
45
46
|
:param pulumi.Input['TargetAnthosClusterArgs'] anthos_cluster: Information specifying an Anthos Cluster.
|
47
|
+
:param pulumi.Input[Sequence[pulumi.Input['TargetAssociatedEntityArgs']]] associated_entities: Optional. Map of entity IDs to their associated entities. Associated entities allows specifying places other than the deployment target for specific features. For example, the Gateway API canary can be configured to deploy the HTTPRoute to a different cluster(s) than the deployment cluster using associated entities. An entity ID must consist of lower-case letters, numbers, and hyphens, start with a letter and end with a letter or a number, and have a max length of 63 characters. In other words, it must match the following regex: `^a-z?$`.
|
46
48
|
:param pulumi.Input['TargetCustomTargetArgs'] custom_target: Optional. Information specifying a Custom Target.
|
47
49
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] deploy_parameters: Optional. The deploy parameters to use for this target.
|
48
50
|
:param pulumi.Input[str] description: Optional. Description of the `Target`. Max length is 255 characters.
|
@@ -67,6 +69,8 @@ class TargetArgs:
|
|
67
69
|
pulumi.set(__self__, "annotations", annotations)
|
68
70
|
if anthos_cluster is not None:
|
69
71
|
pulumi.set(__self__, "anthos_cluster", anthos_cluster)
|
72
|
+
if associated_entities is not None:
|
73
|
+
pulumi.set(__self__, "associated_entities", associated_entities)
|
70
74
|
if custom_target is not None:
|
71
75
|
pulumi.set(__self__, "custom_target", custom_target)
|
72
76
|
if deploy_parameters is not None:
|
@@ -129,6 +133,18 @@ class TargetArgs:
|
|
129
133
|
def anthos_cluster(self, value: Optional[pulumi.Input['TargetAnthosClusterArgs']]):
|
130
134
|
pulumi.set(self, "anthos_cluster", value)
|
131
135
|
|
136
|
+
@property
|
137
|
+
@pulumi.getter(name="associatedEntities")
|
138
|
+
def associated_entities(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['TargetAssociatedEntityArgs']]]]:
|
139
|
+
"""
|
140
|
+
Optional. Map of entity IDs to their associated entities. Associated entities allows specifying places other than the deployment target for specific features. For example, the Gateway API canary can be configured to deploy the HTTPRoute to a different cluster(s) than the deployment cluster using associated entities. An entity ID must consist of lower-case letters, numbers, and hyphens, start with a letter and end with a letter or a number, and have a max length of 63 characters. In other words, it must match the following regex: `^a-z?$`.
|
141
|
+
"""
|
142
|
+
return pulumi.get(self, "associated_entities")
|
143
|
+
|
144
|
+
@associated_entities.setter
|
145
|
+
def associated_entities(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['TargetAssociatedEntityArgs']]]]):
|
146
|
+
pulumi.set(self, "associated_entities", value)
|
147
|
+
|
132
148
|
@property
|
133
149
|
@pulumi.getter(name="customTarget")
|
134
150
|
def custom_target(self) -> Optional[pulumi.Input['TargetCustomTargetArgs']]:
|
@@ -274,6 +290,7 @@ class _TargetState:
|
|
274
290
|
def __init__(__self__, *,
|
275
291
|
annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
276
292
|
anthos_cluster: Optional[pulumi.Input['TargetAnthosClusterArgs']] = None,
|
293
|
+
associated_entities: Optional[pulumi.Input[Sequence[pulumi.Input['TargetAssociatedEntityArgs']]]] = None,
|
277
294
|
create_time: Optional[pulumi.Input[str]] = None,
|
278
295
|
custom_target: Optional[pulumi.Input['TargetCustomTargetArgs']] = None,
|
279
296
|
deploy_parameters: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -301,6 +318,7 @@ class _TargetState:
|
|
301
318
|
**Note**: This field is non-authoritative, and will only manage the annotations present in your configuration.
|
302
319
|
Please refer to the field `effective_annotations` for all of the annotations present on the resource.
|
303
320
|
:param pulumi.Input['TargetAnthosClusterArgs'] anthos_cluster: Information specifying an Anthos Cluster.
|
321
|
+
:param pulumi.Input[Sequence[pulumi.Input['TargetAssociatedEntityArgs']]] associated_entities: Optional. Map of entity IDs to their associated entities. Associated entities allows specifying places other than the deployment target for specific features. For example, the Gateway API canary can be configured to deploy the HTTPRoute to a different cluster(s) than the deployment cluster using associated entities. An entity ID must consist of lower-case letters, numbers, and hyphens, start with a letter and end with a letter or a number, and have a max length of 63 characters. In other words, it must match the following regex: `^a-z?$`.
|
304
322
|
:param pulumi.Input[str] create_time: Output only. Time at which the `Target` was created.
|
305
323
|
:param pulumi.Input['TargetCustomTargetArgs'] custom_target: Optional. Information specifying a Custom Target.
|
306
324
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] deploy_parameters: Optional. The deploy parameters to use for this target.
|
@@ -332,6 +350,8 @@ class _TargetState:
|
|
332
350
|
pulumi.set(__self__, "annotations", annotations)
|
333
351
|
if anthos_cluster is not None:
|
334
352
|
pulumi.set(__self__, "anthos_cluster", anthos_cluster)
|
353
|
+
if associated_entities is not None:
|
354
|
+
pulumi.set(__self__, "associated_entities", associated_entities)
|
335
355
|
if create_time is not None:
|
336
356
|
pulumi.set(__self__, "create_time", create_time)
|
337
357
|
if custom_target is not None:
|
@@ -400,6 +420,18 @@ class _TargetState:
|
|
400
420
|
def anthos_cluster(self, value: Optional[pulumi.Input['TargetAnthosClusterArgs']]):
|
401
421
|
pulumi.set(self, "anthos_cluster", value)
|
402
422
|
|
423
|
+
@property
|
424
|
+
@pulumi.getter(name="associatedEntities")
|
425
|
+
def associated_entities(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['TargetAssociatedEntityArgs']]]]:
|
426
|
+
"""
|
427
|
+
Optional. Map of entity IDs to their associated entities. Associated entities allows specifying places other than the deployment target for specific features. For example, the Gateway API canary can be configured to deploy the HTTPRoute to a different cluster(s) than the deployment cluster using associated entities. An entity ID must consist of lower-case letters, numbers, and hyphens, start with a letter and end with a letter or a number, and have a max length of 63 characters. In other words, it must match the following regex: `^a-z?$`.
|
428
|
+
"""
|
429
|
+
return pulumi.get(self, "associated_entities")
|
430
|
+
|
431
|
+
@associated_entities.setter
|
432
|
+
def associated_entities(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['TargetAssociatedEntityArgs']]]]):
|
433
|
+
pulumi.set(self, "associated_entities", value)
|
434
|
+
|
403
435
|
@property
|
404
436
|
@pulumi.getter(name="createTime")
|
405
437
|
def create_time(self) -> Optional[pulumi.Input[str]]:
|
@@ -652,6 +684,7 @@ class Target(pulumi.CustomResource):
|
|
652
684
|
opts: Optional[pulumi.ResourceOptions] = None,
|
653
685
|
annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
654
686
|
anthos_cluster: Optional[pulumi.Input[Union['TargetAnthosClusterArgs', 'TargetAnthosClusterArgsDict']]] = None,
|
687
|
+
associated_entities: Optional[pulumi.Input[Sequence[pulumi.Input[Union['TargetAssociatedEntityArgs', 'TargetAssociatedEntityArgsDict']]]]] = None,
|
655
688
|
custom_target: Optional[pulumi.Input[Union['TargetCustomTargetArgs', 'TargetCustomTargetArgsDict']]] = None,
|
656
689
|
deploy_parameters: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
657
690
|
description: Optional[pulumi.Input[str]] = None,
|
@@ -796,6 +829,7 @@ class Target(pulumi.CustomResource):
|
|
796
829
|
**Note**: This field is non-authoritative, and will only manage the annotations present in your configuration.
|
797
830
|
Please refer to the field `effective_annotations` for all of the annotations present on the resource.
|
798
831
|
:param pulumi.Input[Union['TargetAnthosClusterArgs', 'TargetAnthosClusterArgsDict']] anthos_cluster: Information specifying an Anthos Cluster.
|
832
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['TargetAssociatedEntityArgs', 'TargetAssociatedEntityArgsDict']]]] associated_entities: Optional. Map of entity IDs to their associated entities. Associated entities allows specifying places other than the deployment target for specific features. For example, the Gateway API canary can be configured to deploy the HTTPRoute to a different cluster(s) than the deployment cluster using associated entities. An entity ID must consist of lower-case letters, numbers, and hyphens, start with a letter and end with a letter or a number, and have a max length of 63 characters. In other words, it must match the following regex: `^a-z?$`.
|
799
833
|
:param pulumi.Input[Union['TargetCustomTargetArgs', 'TargetCustomTargetArgsDict']] custom_target: Optional. Information specifying a Custom Target.
|
800
834
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] deploy_parameters: Optional. The deploy parameters to use for this target.
|
801
835
|
:param pulumi.Input[str] description: Optional. Description of the `Target`. Max length is 255 characters.
|
@@ -963,6 +997,7 @@ class Target(pulumi.CustomResource):
|
|
963
997
|
opts: Optional[pulumi.ResourceOptions] = None,
|
964
998
|
annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
965
999
|
anthos_cluster: Optional[pulumi.Input[Union['TargetAnthosClusterArgs', 'TargetAnthosClusterArgsDict']]] = None,
|
1000
|
+
associated_entities: Optional[pulumi.Input[Sequence[pulumi.Input[Union['TargetAssociatedEntityArgs', 'TargetAssociatedEntityArgsDict']]]]] = None,
|
966
1001
|
custom_target: Optional[pulumi.Input[Union['TargetCustomTargetArgs', 'TargetCustomTargetArgsDict']]] = None,
|
967
1002
|
deploy_parameters: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
968
1003
|
description: Optional[pulumi.Input[str]] = None,
|
@@ -986,6 +1021,7 @@ class Target(pulumi.CustomResource):
|
|
986
1021
|
|
987
1022
|
__props__.__dict__["annotations"] = annotations
|
988
1023
|
__props__.__dict__["anthos_cluster"] = anthos_cluster
|
1024
|
+
__props__.__dict__["associated_entities"] = associated_entities
|
989
1025
|
__props__.__dict__["custom_target"] = custom_target
|
990
1026
|
__props__.__dict__["deploy_parameters"] = deploy_parameters
|
991
1027
|
__props__.__dict__["description"] = description
|
@@ -1022,6 +1058,7 @@ class Target(pulumi.CustomResource):
|
|
1022
1058
|
opts: Optional[pulumi.ResourceOptions] = None,
|
1023
1059
|
annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1024
1060
|
anthos_cluster: Optional[pulumi.Input[Union['TargetAnthosClusterArgs', 'TargetAnthosClusterArgsDict']]] = None,
|
1061
|
+
associated_entities: Optional[pulumi.Input[Sequence[pulumi.Input[Union['TargetAssociatedEntityArgs', 'TargetAssociatedEntityArgsDict']]]]] = None,
|
1025
1062
|
create_time: Optional[pulumi.Input[str]] = None,
|
1026
1063
|
custom_target: Optional[pulumi.Input[Union['TargetCustomTargetArgs', 'TargetCustomTargetArgsDict']]] = None,
|
1027
1064
|
deploy_parameters: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -1054,6 +1091,7 @@ class Target(pulumi.CustomResource):
|
|
1054
1091
|
**Note**: This field is non-authoritative, and will only manage the annotations present in your configuration.
|
1055
1092
|
Please refer to the field `effective_annotations` for all of the annotations present on the resource.
|
1056
1093
|
:param pulumi.Input[Union['TargetAnthosClusterArgs', 'TargetAnthosClusterArgsDict']] anthos_cluster: Information specifying an Anthos Cluster.
|
1094
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['TargetAssociatedEntityArgs', 'TargetAssociatedEntityArgsDict']]]] associated_entities: Optional. Map of entity IDs to their associated entities. Associated entities allows specifying places other than the deployment target for specific features. For example, the Gateway API canary can be configured to deploy the HTTPRoute to a different cluster(s) than the deployment cluster using associated entities. An entity ID must consist of lower-case letters, numbers, and hyphens, start with a letter and end with a letter or a number, and have a max length of 63 characters. In other words, it must match the following regex: `^a-z?$`.
|
1057
1095
|
:param pulumi.Input[str] create_time: Output only. Time at which the `Target` was created.
|
1058
1096
|
:param pulumi.Input[Union['TargetCustomTargetArgs', 'TargetCustomTargetArgsDict']] custom_target: Optional. Information specifying a Custom Target.
|
1059
1097
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] deploy_parameters: Optional. The deploy parameters to use for this target.
|
@@ -1087,6 +1125,7 @@ class Target(pulumi.CustomResource):
|
|
1087
1125
|
|
1088
1126
|
__props__.__dict__["annotations"] = annotations
|
1089
1127
|
__props__.__dict__["anthos_cluster"] = anthos_cluster
|
1128
|
+
__props__.__dict__["associated_entities"] = associated_entities
|
1090
1129
|
__props__.__dict__["create_time"] = create_time
|
1091
1130
|
__props__.__dict__["custom_target"] = custom_target
|
1092
1131
|
__props__.__dict__["deploy_parameters"] = deploy_parameters
|
@@ -1128,6 +1167,14 @@ class Target(pulumi.CustomResource):
|
|
1128
1167
|
"""
|
1129
1168
|
return pulumi.get(self, "anthos_cluster")
|
1130
1169
|
|
1170
|
+
@property
|
1171
|
+
@pulumi.getter(name="associatedEntities")
|
1172
|
+
def associated_entities(self) -> pulumi.Output[Optional[Sequence['outputs.TargetAssociatedEntity']]]:
|
1173
|
+
"""
|
1174
|
+
Optional. Map of entity IDs to their associated entities. Associated entities allows specifying places other than the deployment target for specific features. For example, the Gateway API canary can be configured to deploy the HTTPRoute to a different cluster(s) than the deployment cluster using associated entities. An entity ID must consist of lower-case letters, numbers, and hyphens, start with a letter and end with a letter or a number, and have a max length of 63 characters. In other words, it must match the following regex: `^a-z?$`.
|
1175
|
+
"""
|
1176
|
+
return pulumi.get(self, "associated_entities")
|
1177
|
+
|
1131
1178
|
@property
|
1132
1179
|
@pulumi.getter(name="createTime")
|
1133
1180
|
def create_time(self) -> pulumi.Output[str]:
|
@@ -1393,7 +1393,7 @@ if not MYPY:
|
|
1393
1393
|
"""
|
1394
1394
|
project_id: pulumi.Input[str]
|
1395
1395
|
"""
|
1396
|
-
Project identifier (
|
1396
|
+
Project identifier (preferably project number but can also be the project ID) of the project that contains the secret. If not set, it will be populated with the function's project assuming that the secret exists in the same project as of the function.
|
1397
1397
|
"""
|
1398
1398
|
secret: pulumi.Input[str]
|
1399
1399
|
"""
|
@@ -1415,7 +1415,7 @@ class FunctionServiceConfigSecretEnvironmentVariableArgs:
|
|
1415
1415
|
version: pulumi.Input[str]):
|
1416
1416
|
"""
|
1417
1417
|
:param pulumi.Input[str] key: Name of the environment variable.
|
1418
|
-
:param pulumi.Input[str] project_id: Project identifier (
|
1418
|
+
:param pulumi.Input[str] project_id: Project identifier (preferably project number but can also be the project ID) of the project that contains the secret. If not set, it will be populated with the function's project assuming that the secret exists in the same project as of the function.
|
1419
1419
|
:param pulumi.Input[str] secret: Name of the secret in secret manager (not the full resource name).
|
1420
1420
|
:param pulumi.Input[str] version: Version of the secret (version number or the string 'latest'). It is recommended to use a numeric version for secret environment variables as any updates to the secret value is not reflected until new instances start.
|
1421
1421
|
"""
|
@@ -1440,7 +1440,7 @@ class FunctionServiceConfigSecretEnvironmentVariableArgs:
|
|
1440
1440
|
@pulumi.getter(name="projectId")
|
1441
1441
|
def project_id(self) -> pulumi.Input[str]:
|
1442
1442
|
"""
|
1443
|
-
Project identifier (
|
1443
|
+
Project identifier (preferably project number but can also be the project ID) of the project that contains the secret. If not set, it will be populated with the function's project assuming that the secret exists in the same project as of the function.
|
1444
1444
|
"""
|
1445
1445
|
return pulumi.get(self, "project_id")
|
1446
1446
|
|
@@ -1481,7 +1481,7 @@ if not MYPY:
|
|
1481
1481
|
"""
|
1482
1482
|
project_id: pulumi.Input[str]
|
1483
1483
|
"""
|
1484
|
-
Project identifier (
|
1484
|
+
Project identifier (preferably project number but can also be the project ID) of the project that contains the secret. If not set, it will be populated with the function's project assuming that the secret exists in the same project as of the function.
|
1485
1485
|
"""
|
1486
1486
|
secret: pulumi.Input[str]
|
1487
1487
|
"""
|
@@ -1504,7 +1504,7 @@ class FunctionServiceConfigSecretVolumeArgs:
|
|
1504
1504
|
versions: Optional[pulumi.Input[Sequence[pulumi.Input['FunctionServiceConfigSecretVolumeVersionArgs']]]] = None):
|
1505
1505
|
"""
|
1506
1506
|
:param pulumi.Input[str] mount_path: The path within the container to mount the secret volume. For example, setting the mountPath as /etc/secrets would mount the secret value files under the /etc/secrets directory. This directory will also be completely shadowed and unavailable to mount any other secrets. Recommended mount path: /etc/secrets
|
1507
|
-
:param pulumi.Input[str] project_id: Project identifier (
|
1507
|
+
:param pulumi.Input[str] project_id: Project identifier (preferably project number but can also be the project ID) of the project that contains the secret. If not set, it will be populated with the function's project assuming that the secret exists in the same project as of the function.
|
1508
1508
|
:param pulumi.Input[str] secret: Name of the secret in secret manager (not the full resource name).
|
1509
1509
|
:param pulumi.Input[Sequence[pulumi.Input['FunctionServiceConfigSecretVolumeVersionArgs']]] versions: List of secret versions to mount for this secret. If empty, the latest version of the secret will be made available in a file named after the secret under the mount point.'
|
1510
1510
|
Structure is documented below.
|
@@ -1531,7 +1531,7 @@ class FunctionServiceConfigSecretVolumeArgs:
|
|
1531
1531
|
@pulumi.getter(name="projectId")
|
1532
1532
|
def project_id(self) -> pulumi.Input[str]:
|
1533
1533
|
"""
|
1534
|
-
Project identifier (
|
1534
|
+
Project identifier (preferably project number but can also be the project ID) of the project that contains the secret. If not set, it will be populated with the function's project assuming that the secret exists in the same project as of the function.
|
1535
1535
|
"""
|
1536
1536
|
return pulumi.get(self, "project_id")
|
1537
1537
|
|
@@ -1040,7 +1040,7 @@ class FunctionServiceConfigSecretEnvironmentVariable(dict):
|
|
1040
1040
|
version: str):
|
1041
1041
|
"""
|
1042
1042
|
:param str key: Name of the environment variable.
|
1043
|
-
:param str project_id: Project identifier (
|
1043
|
+
:param str project_id: Project identifier (preferably project number but can also be the project ID) of the project that contains the secret. If not set, it will be populated with the function's project assuming that the secret exists in the same project as of the function.
|
1044
1044
|
:param str secret: Name of the secret in secret manager (not the full resource name).
|
1045
1045
|
:param str version: Version of the secret (version number or the string 'latest'). It is recommended to use a numeric version for secret environment variables as any updates to the secret value is not reflected until new instances start.
|
1046
1046
|
"""
|
@@ -1061,7 +1061,7 @@ class FunctionServiceConfigSecretEnvironmentVariable(dict):
|
|
1061
1061
|
@pulumi.getter(name="projectId")
|
1062
1062
|
def project_id(self) -> str:
|
1063
1063
|
"""
|
1064
|
-
Project identifier (
|
1064
|
+
Project identifier (preferably project number but can also be the project ID) of the project that contains the secret. If not set, it will be populated with the function's project assuming that the secret exists in the same project as of the function.
|
1065
1065
|
"""
|
1066
1066
|
return pulumi.get(self, "project_id")
|
1067
1067
|
|
@@ -1110,7 +1110,7 @@ class FunctionServiceConfigSecretVolume(dict):
|
|
1110
1110
|
versions: Optional[Sequence['outputs.FunctionServiceConfigSecretVolumeVersion']] = None):
|
1111
1111
|
"""
|
1112
1112
|
:param str mount_path: The path within the container to mount the secret volume. For example, setting the mountPath as /etc/secrets would mount the secret value files under the /etc/secrets directory. This directory will also be completely shadowed and unavailable to mount any other secrets. Recommended mount path: /etc/secrets
|
1113
|
-
:param str project_id: Project identifier (
|
1113
|
+
:param str project_id: Project identifier (preferably project number but can also be the project ID) of the project that contains the secret. If not set, it will be populated with the function's project assuming that the secret exists in the same project as of the function.
|
1114
1114
|
:param str secret: Name of the secret in secret manager (not the full resource name).
|
1115
1115
|
:param Sequence['FunctionServiceConfigSecretVolumeVersionArgs'] versions: List of secret versions to mount for this secret. If empty, the latest version of the secret will be made available in a file named after the secret under the mount point.'
|
1116
1116
|
Structure is documented below.
|
@@ -1133,7 +1133,7 @@ class FunctionServiceConfigSecretVolume(dict):
|
|
1133
1133
|
@pulumi.getter(name="projectId")
|
1134
1134
|
def project_id(self) -> str:
|
1135
1135
|
"""
|
1136
|
-
Project identifier (
|
1136
|
+
Project identifier (preferably project number but can also be the project ID) of the project that contains the secret. If not set, it will be populated with the function's project assuming that the secret exists in the same project as of the function.
|
1137
1137
|
"""
|
1138
1138
|
return pulumi.get(self, "project_id")
|
1139
1139
|
|
@@ -1865,7 +1865,7 @@ class GetFunctionServiceConfigSecretEnvironmentVariableResult(dict):
|
|
1865
1865
|
version: str):
|
1866
1866
|
"""
|
1867
1867
|
:param str key: Name of the environment variable.
|
1868
|
-
:param str project_id: Project identifier (
|
1868
|
+
:param str project_id: Project identifier (preferably project number but can also be the project ID) of the project that contains the secret. If not set, it will be populated with the function's project assuming that the secret exists in the same project as of the function.
|
1869
1869
|
:param str secret: Name of the secret in secret manager (not the full resource name).
|
1870
1870
|
:param str version: Version of the secret (version number or the string 'latest'). It is recommended to use a numeric version for secret environment variables as any updates to the secret value is not reflected until new instances start.
|
1871
1871
|
"""
|
@@ -1886,7 +1886,7 @@ class GetFunctionServiceConfigSecretEnvironmentVariableResult(dict):
|
|
1886
1886
|
@pulumi.getter(name="projectId")
|
1887
1887
|
def project_id(self) -> str:
|
1888
1888
|
"""
|
1889
|
-
Project identifier (
|
1889
|
+
Project identifier (preferably project number but can also be the project ID) of the project that contains the secret. If not set, it will be populated with the function's project assuming that the secret exists in the same project as of the function.
|
1890
1890
|
"""
|
1891
1891
|
return pulumi.get(self, "project_id")
|
1892
1892
|
|
@@ -1916,7 +1916,7 @@ class GetFunctionServiceConfigSecretVolumeResult(dict):
|
|
1916
1916
|
versions: Sequence['outputs.GetFunctionServiceConfigSecretVolumeVersionResult']):
|
1917
1917
|
"""
|
1918
1918
|
:param str mount_path: The path within the container to mount the secret volume. For example, setting the mountPath as /etc/secrets would mount the secret value files under the /etc/secrets directory. This directory will also be completely shadowed and unavailable to mount any other secrets. Recommended mount path: /etc/secrets
|
1919
|
-
:param str project_id: Project identifier (
|
1919
|
+
:param str project_id: Project identifier (preferably project number but can also be the project ID) of the project that contains the secret. If not set, it will be populated with the function's project assuming that the secret exists in the same project as of the function.
|
1920
1920
|
:param str secret: Name of the secret in secret manager (not the full resource name).
|
1921
1921
|
:param Sequence['GetFunctionServiceConfigSecretVolumeVersionArgs'] versions: List of secret versions to mount for this secret. If empty, the latest version of the secret will be made available in a file named after the secret under the mount point.'
|
1922
1922
|
"""
|
@@ -1937,7 +1937,7 @@ class GetFunctionServiceConfigSecretVolumeResult(dict):
|
|
1937
1937
|
@pulumi.getter(name="projectId")
|
1938
1938
|
def project_id(self) -> str:
|
1939
1939
|
"""
|
1940
|
-
Project identifier (
|
1940
|
+
Project identifier (preferably project number but can also be the project ID) of the project that contains the secret. If not set, it will be populated with the function's project assuming that the secret exists in the same project as of the function.
|
1941
1941
|
"""
|
1942
1942
|
return pulumi.get(self, "project_id")
|
1943
1943
|
|
pulumi_gcp/cloudrunv2/job.py
CHANGED
@@ -322,7 +322,7 @@ class _JobState:
|
|
322
322
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
323
323
|
:param pulumi.Input[str] etag: A system-generated fingerprint for this version of the resource. May be used to detect modification conflict during updates.
|
324
324
|
:param pulumi.Input[int] execution_count: Number of executions created for this job.
|
325
|
-
:param pulumi.Input[str] expire_time: For a deleted resource, the time after which it will be
|
325
|
+
:param pulumi.Input[str] expire_time: For a deleted resource, the time after which it will be permanently deleted.
|
326
326
|
:param pulumi.Input[str] generation: A number that monotonically increases every time the user modifies the desired state.
|
327
327
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Unstructured key value map that can be used to organize and categorize objects. User-provided labels are shared with
|
328
328
|
Google's billing system, so they can be used to filter, or break down billing charges by team, component, environment,
|
@@ -587,7 +587,7 @@ class _JobState:
|
|
587
587
|
@pulumi.getter(name="expireTime")
|
588
588
|
def expire_time(self) -> Optional[pulumi.Input[str]]:
|
589
589
|
"""
|
590
|
-
For a deleted resource, the time after which it will be
|
590
|
+
For a deleted resource, the time after which it will be permanently deleted.
|
591
591
|
"""
|
592
592
|
return pulumi.get(self, "expire_time")
|
593
593
|
|
@@ -1644,7 +1644,7 @@ class Job(pulumi.CustomResource):
|
|
1644
1644
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
1645
1645
|
:param pulumi.Input[str] etag: A system-generated fingerprint for this version of the resource. May be used to detect modification conflict during updates.
|
1646
1646
|
:param pulumi.Input[int] execution_count: Number of executions created for this job.
|
1647
|
-
:param pulumi.Input[str] expire_time: For a deleted resource, the time after which it will be
|
1647
|
+
:param pulumi.Input[str] expire_time: For a deleted resource, the time after which it will be permanently deleted.
|
1648
1648
|
:param pulumi.Input[str] generation: A number that monotonically increases every time the user modifies the desired state.
|
1649
1649
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Unstructured key value map that can be used to organize and categorize objects. User-provided labels are shared with
|
1650
1650
|
Google's billing system, so they can be used to filter, or break down billing charges by team, component, environment,
|
@@ -1831,7 +1831,7 @@ class Job(pulumi.CustomResource):
|
|
1831
1831
|
@pulumi.getter(name="expireTime")
|
1832
1832
|
def expire_time(self) -> pulumi.Output[str]:
|
1833
1833
|
"""
|
1834
|
-
For a deleted resource, the time after which it will be
|
1834
|
+
For a deleted resource, the time after which it will be permanently deleted.
|
1835
1835
|
"""
|
1836
1836
|
return pulumi.get(self, "expire_time")
|
1837
1837
|
|