pulumi-gcp 8.40.0a1754636117__py3-none-any.whl → 8.40.0a1754951145__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 +128 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +24 -4
- pulumi_gcp/accesscontextmanager/outputs.py +15 -3
- pulumi_gcp/apigee/__init__.py +2 -0
- pulumi_gcp/apigee/_inputs.py +1435 -0
- pulumi_gcp/apigee/api_product.py +1698 -0
- pulumi_gcp/apigee/outputs.py +1081 -0
- pulumi_gcp/apigee/security_action.py +1010 -0
- pulumi_gcp/artifactregistry/__init__.py +1 -0
- pulumi_gcp/artifactregistry/get_docker_images.py +164 -0
- pulumi_gcp/artifactregistry/outputs.py +109 -2
- pulumi_gcp/artifactregistry/repository.py +6 -6
- pulumi_gcp/backupdisasterrecovery/backup_vault.py +56 -0
- pulumi_gcp/backupdisasterrecovery/get_backup_vault.py +12 -1
- pulumi_gcp/bigquery/_inputs.py +6 -0
- pulumi_gcp/bigquery/get_table.py +23 -1
- pulumi_gcp/bigquery/outputs.py +4 -0
- pulumi_gcp/bigquery/table.py +62 -0
- pulumi_gcp/bigqueryanalyticshub/_inputs.py +180 -0
- pulumi_gcp/bigqueryanalyticshub/data_exchange.py +80 -0
- pulumi_gcp/bigqueryanalyticshub/listing.py +322 -2
- pulumi_gcp/bigqueryanalyticshub/listing_subscription.py +32 -0
- pulumi_gcp/bigqueryanalyticshub/outputs.py +159 -0
- pulumi_gcp/bigtable/__init__.py +1 -0
- pulumi_gcp/bigtable/_inputs.py +33 -0
- pulumi_gcp/bigtable/outputs.py +36 -0
- pulumi_gcp/bigtable/schema_bundle.py +568 -0
- pulumi_gcp/cloudfunctions/_inputs.py +48 -0
- pulumi_gcp/cloudfunctions/function.py +94 -0
- pulumi_gcp/cloudfunctions/get_function.py +23 -1
- pulumi_gcp/cloudfunctions/outputs.py +70 -0
- pulumi_gcp/cloudrunv2/_inputs.py +20 -0
- pulumi_gcp/cloudrunv2/job.py +2 -0
- pulumi_gcp/cloudrunv2/outputs.py +25 -0
- pulumi_gcp/cloudrunv2/worker_pool.py +2 -0
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +713 -22
- pulumi_gcp/compute/firewall_policy_with_rules.py +66 -0
- pulumi_gcp/compute/forwarding_rule.py +0 -21
- pulumi_gcp/compute/get_router.py +12 -1
- pulumi_gcp/compute/outputs.py +562 -22
- pulumi_gcp/compute/preview_feature.py +396 -0
- pulumi_gcp/compute/region_url_map.py +392 -0
- pulumi_gcp/compute/reservation.py +4 -4
- pulumi_gcp/compute/router.py +54 -0
- pulumi_gcp/compute/storage_pool.py +154 -0
- pulumi_gcp/compute/subnetwork.py +54 -0
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +278 -8
- pulumi_gcp/container/cluster.py +61 -21
- pulumi_gcp/container/get_cluster.py +12 -1
- pulumi_gcp/container/outputs.py +352 -8
- pulumi_gcp/dataproc/_inputs.py +249 -14
- pulumi_gcp/dataproc/batch.py +6 -0
- pulumi_gcp/dataproc/cluster.py +2 -0
- pulumi_gcp/dataproc/outputs.py +215 -12
- pulumi_gcp/dataproc/session_template.py +14 -2
- pulumi_gcp/developerconnect/__init__.py +1 -0
- pulumi_gcp/developerconnect/_inputs.py +583 -0
- pulumi_gcp/developerconnect/insights_config.py +895 -0
- pulumi_gcp/developerconnect/outputs.py +442 -0
- pulumi_gcp/diagflow/__init__.py +1 -0
- pulumi_gcp/diagflow/_inputs.py +1165 -58
- pulumi_gcp/diagflow/cx_generator.py +636 -0
- pulumi_gcp/diagflow/cx_tool.py +2 -2
- pulumi_gcp/diagflow/cx_webhook.py +380 -36
- pulumi_gcp/diagflow/outputs.py +848 -25
- pulumi_gcp/discoveryengine/__init__.py +2 -0
- pulumi_gcp/discoveryengine/_inputs.py +465 -0
- pulumi_gcp/discoveryengine/cmek_config.py +707 -0
- pulumi_gcp/discoveryengine/outputs.py +412 -0
- pulumi_gcp/discoveryengine/recommendation_engine.py +813 -0
- pulumi_gcp/firestore/field.py +6 -6
- pulumi_gcp/gemini/gemini_gcp_enablement_setting.py +107 -9
- pulumi_gcp/gemini/gemini_gcp_enablement_setting_binding.py +2 -2
- 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/scope_rbac_role_binding.py +8 -8
- pulumi_gcp/iam/__init__.py +4 -0
- pulumi_gcp/iam/_inputs.py +98 -0
- pulumi_gcp/iam/get_workforce_pool_iam_policy.py +161 -0
- pulumi_gcp/iam/outputs.py +56 -0
- pulumi_gcp/iam/workforce_pool_iam_binding.py +761 -0
- pulumi_gcp/iam/workforce_pool_iam_member.py +761 -0
- pulumi_gcp/iam/workforce_pool_iam_policy.py +600 -0
- pulumi_gcp/iap/tunnel_dest_group.py +2 -2
- pulumi_gcp/integrationconnectors/managed_zone.py +8 -8
- pulumi_gcp/looker/instance.py +28 -7
- pulumi_gcp/managedkafka/_inputs.py +127 -0
- pulumi_gcp/managedkafka/cluster.py +131 -1
- pulumi_gcp/managedkafka/connect_cluster.py +4 -4
- pulumi_gcp/managedkafka/connector.py +4 -4
- pulumi_gcp/managedkafka/outputs.py +128 -0
- pulumi_gcp/memorystore/instance.py +8 -12
- pulumi_gcp/modelarmor/__init__.py +1 -0
- pulumi_gcp/modelarmor/_inputs.py +683 -0
- pulumi_gcp/modelarmor/floorsetting.py +736 -0
- pulumi_gcp/modelarmor/outputs.py +618 -0
- pulumi_gcp/networkconnectivity/_inputs.py +60 -0
- pulumi_gcp/networkconnectivity/internal_range.py +136 -0
- pulumi_gcp/networkconnectivity/outputs.py +55 -0
- pulumi_gcp/networkconnectivity/spoke.py +14 -14
- pulumi_gcp/oracledatabase/__init__.py +2 -0
- pulumi_gcp/oracledatabase/autonomous_database.py +262 -38
- pulumi_gcp/oracledatabase/cloud_vm_cluster.py +314 -50
- pulumi_gcp/oracledatabase/get_autonomous_database.py +23 -1
- pulumi_gcp/oracledatabase/get_cloud_vm_cluster.py +34 -1
- pulumi_gcp/oracledatabase/odb_network.py +721 -0
- pulumi_gcp/oracledatabase/odb_subnet.py +803 -0
- pulumi_gcp/oracledatabase/outputs.py +83 -0
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/parametermanager/parameter_version.py +62 -0
- pulumi_gcp/parametermanager/regional_parameter_version.py +64 -0
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pubsub/subscription.py +46 -6
- pulumi_gcp/pubsub/topic.py +36 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/cluster.py +70 -0
- pulumi_gcp/redis/get_cluster.py +12 -1
- pulumi_gcp/redis/instance.py +8 -12
- pulumi_gcp/secretmanager/get_regional_secret.py +12 -1
- pulumi_gcp/secretmanager/get_secret.py +12 -1
- pulumi_gcp/secretmanager/outputs.py +30 -0
- pulumi_gcp/secretmanager/regional_secret.py +61 -0
- pulumi_gcp/secretmanager/secret.py +61 -0
- pulumi_gcp/securesourcemanager/branch_rule.py +16 -8
- pulumi_gcp/securesourcemanager/instance.py +112 -4
- pulumi_gcp/securesourcemanager/repository.py +112 -8
- pulumi_gcp/serviceaccount/get_account_key.py +1 -0
- pulumi_gcp/sql/_inputs.py +6 -6
- pulumi_gcp/sql/database.py +0 -12
- pulumi_gcp/sql/outputs.py +4 -4
- pulumi_gcp/storage/__init__.py +2 -0
- pulumi_gcp/storage/_inputs.py +451 -0
- pulumi_gcp/storage/bucket.py +7 -7
- pulumi_gcp/storage/bucket_object.py +34 -0
- pulumi_gcp/storage/get_bucket_object.py +12 -1
- pulumi_gcp/storage/get_bucket_object_content.py +12 -1
- pulumi_gcp/storage/get_insights_dataset_config.py +363 -0
- pulumi_gcp/storage/insights_dataset_config.py +1280 -0
- pulumi_gcp/storage/outputs.py +619 -0
- pulumi_gcp/vertex/__init__.py +1 -0
- pulumi_gcp/vertex/_inputs.py +3646 -3
- pulumi_gcp/vertex/ai_endpoint.py +4 -4
- pulumi_gcp/vertex/ai_endpoint_with_model_garden_deployment.py +940 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
- pulumi_gcp/vertex/outputs.py +2609 -2
- pulumi_gcp/vmwareengine/network_peering.py +7 -7
- pulumi_gcp/workbench/_inputs.py +118 -0
- pulumi_gcp/workbench/instance.py +171 -2
- pulumi_gcp/workbench/outputs.py +91 -0
- {pulumi_gcp-8.40.0a1754636117.dist-info → pulumi_gcp-8.40.0a1754951145.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.40.0a1754636117.dist-info → pulumi_gcp-8.40.0a1754951145.dist-info}/RECORD +157 -138
- {pulumi_gcp-8.40.0a1754636117.dist-info → pulumi_gcp-8.40.0a1754951145.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.40.0a1754636117.dist-info → pulumi_gcp-8.40.0a1754951145.dist-info}/top_level.txt +0 -0
@@ -57,6 +57,22 @@ __all__ = [
|
|
57
57
|
'ConnectionGitlabEnterpriseConfigServiceDirectoryConfigArgsDict',
|
58
58
|
'ConnectionInstallationStateArgs',
|
59
59
|
'ConnectionInstallationStateArgsDict',
|
60
|
+
'InsightsConfigArtifactConfigArgs',
|
61
|
+
'InsightsConfigArtifactConfigArgsDict',
|
62
|
+
'InsightsConfigArtifactConfigGoogleArtifactAnalysisArgs',
|
63
|
+
'InsightsConfigArtifactConfigGoogleArtifactAnalysisArgsDict',
|
64
|
+
'InsightsConfigArtifactConfigGoogleArtifactRegistryArgs',
|
65
|
+
'InsightsConfigArtifactConfigGoogleArtifactRegistryArgsDict',
|
66
|
+
'InsightsConfigErrorArgs',
|
67
|
+
'InsightsConfigErrorArgsDict',
|
68
|
+
'InsightsConfigErrorDetailArgs',
|
69
|
+
'InsightsConfigErrorDetailArgsDict',
|
70
|
+
'InsightsConfigRuntimeConfigArgs',
|
71
|
+
'InsightsConfigRuntimeConfigArgsDict',
|
72
|
+
'InsightsConfigRuntimeConfigAppHubWorkloadArgs',
|
73
|
+
'InsightsConfigRuntimeConfigAppHubWorkloadArgsDict',
|
74
|
+
'InsightsConfigRuntimeConfigGkeWorkloadArgs',
|
75
|
+
'InsightsConfigRuntimeConfigGkeWorkloadArgsDict',
|
60
76
|
]
|
61
77
|
|
62
78
|
MYPY = False
|
@@ -1828,3 +1844,570 @@ class ConnectionInstallationStateArgs:
|
|
1828
1844
|
pulumi.set(self, "stage", value)
|
1829
1845
|
|
1830
1846
|
|
1847
|
+
if not MYPY:
|
1848
|
+
class InsightsConfigArtifactConfigArgsDict(TypedDict):
|
1849
|
+
google_artifact_analysis: NotRequired[pulumi.Input['InsightsConfigArtifactConfigGoogleArtifactAnalysisArgsDict']]
|
1850
|
+
"""
|
1851
|
+
Google Artifact Analysis configurations.
|
1852
|
+
Structure is documented below.
|
1853
|
+
"""
|
1854
|
+
google_artifact_registry: NotRequired[pulumi.Input['InsightsConfigArtifactConfigGoogleArtifactRegistryArgsDict']]
|
1855
|
+
"""
|
1856
|
+
Google Artifact Registry configurations.
|
1857
|
+
Structure is documented below.
|
1858
|
+
"""
|
1859
|
+
uri: NotRequired[pulumi.Input[_builtins.str]]
|
1860
|
+
"""
|
1861
|
+
The URI of the artifact that is deployed.
|
1862
|
+
e.g. `us-docker.pkg.dev/my-project/my-repo/image`.
|
1863
|
+
The URI does not include the tag / digest because it captures a lineage of
|
1864
|
+
artifacts.
|
1865
|
+
"""
|
1866
|
+
elif False:
|
1867
|
+
InsightsConfigArtifactConfigArgsDict: TypeAlias = Mapping[str, Any]
|
1868
|
+
|
1869
|
+
@pulumi.input_type
|
1870
|
+
class InsightsConfigArtifactConfigArgs:
|
1871
|
+
def __init__(__self__, *,
|
1872
|
+
google_artifact_analysis: Optional[pulumi.Input['InsightsConfigArtifactConfigGoogleArtifactAnalysisArgs']] = None,
|
1873
|
+
google_artifact_registry: Optional[pulumi.Input['InsightsConfigArtifactConfigGoogleArtifactRegistryArgs']] = None,
|
1874
|
+
uri: Optional[pulumi.Input[_builtins.str]] = None):
|
1875
|
+
"""
|
1876
|
+
:param pulumi.Input['InsightsConfigArtifactConfigGoogleArtifactAnalysisArgs'] google_artifact_analysis: Google Artifact Analysis configurations.
|
1877
|
+
Structure is documented below.
|
1878
|
+
:param pulumi.Input['InsightsConfigArtifactConfigGoogleArtifactRegistryArgs'] google_artifact_registry: Google Artifact Registry configurations.
|
1879
|
+
Structure is documented below.
|
1880
|
+
:param pulumi.Input[_builtins.str] uri: The URI of the artifact that is deployed.
|
1881
|
+
e.g. `us-docker.pkg.dev/my-project/my-repo/image`.
|
1882
|
+
The URI does not include the tag / digest because it captures a lineage of
|
1883
|
+
artifacts.
|
1884
|
+
"""
|
1885
|
+
if google_artifact_analysis is not None:
|
1886
|
+
pulumi.set(__self__, "google_artifact_analysis", google_artifact_analysis)
|
1887
|
+
if google_artifact_registry is not None:
|
1888
|
+
pulumi.set(__self__, "google_artifact_registry", google_artifact_registry)
|
1889
|
+
if uri is not None:
|
1890
|
+
pulumi.set(__self__, "uri", uri)
|
1891
|
+
|
1892
|
+
@_builtins.property
|
1893
|
+
@pulumi.getter(name="googleArtifactAnalysis")
|
1894
|
+
def google_artifact_analysis(self) -> Optional[pulumi.Input['InsightsConfigArtifactConfigGoogleArtifactAnalysisArgs']]:
|
1895
|
+
"""
|
1896
|
+
Google Artifact Analysis configurations.
|
1897
|
+
Structure is documented below.
|
1898
|
+
"""
|
1899
|
+
return pulumi.get(self, "google_artifact_analysis")
|
1900
|
+
|
1901
|
+
@google_artifact_analysis.setter
|
1902
|
+
def google_artifact_analysis(self, value: Optional[pulumi.Input['InsightsConfigArtifactConfigGoogleArtifactAnalysisArgs']]):
|
1903
|
+
pulumi.set(self, "google_artifact_analysis", value)
|
1904
|
+
|
1905
|
+
@_builtins.property
|
1906
|
+
@pulumi.getter(name="googleArtifactRegistry")
|
1907
|
+
def google_artifact_registry(self) -> Optional[pulumi.Input['InsightsConfigArtifactConfigGoogleArtifactRegistryArgs']]:
|
1908
|
+
"""
|
1909
|
+
Google Artifact Registry configurations.
|
1910
|
+
Structure is documented below.
|
1911
|
+
"""
|
1912
|
+
return pulumi.get(self, "google_artifact_registry")
|
1913
|
+
|
1914
|
+
@google_artifact_registry.setter
|
1915
|
+
def google_artifact_registry(self, value: Optional[pulumi.Input['InsightsConfigArtifactConfigGoogleArtifactRegistryArgs']]):
|
1916
|
+
pulumi.set(self, "google_artifact_registry", value)
|
1917
|
+
|
1918
|
+
@_builtins.property
|
1919
|
+
@pulumi.getter
|
1920
|
+
def uri(self) -> Optional[pulumi.Input[_builtins.str]]:
|
1921
|
+
"""
|
1922
|
+
The URI of the artifact that is deployed.
|
1923
|
+
e.g. `us-docker.pkg.dev/my-project/my-repo/image`.
|
1924
|
+
The URI does not include the tag / digest because it captures a lineage of
|
1925
|
+
artifacts.
|
1926
|
+
"""
|
1927
|
+
return pulumi.get(self, "uri")
|
1928
|
+
|
1929
|
+
@uri.setter
|
1930
|
+
def uri(self, value: Optional[pulumi.Input[_builtins.str]]):
|
1931
|
+
pulumi.set(self, "uri", value)
|
1932
|
+
|
1933
|
+
|
1934
|
+
if not MYPY:
|
1935
|
+
class InsightsConfigArtifactConfigGoogleArtifactAnalysisArgsDict(TypedDict):
|
1936
|
+
project_id: pulumi.Input[_builtins.str]
|
1937
|
+
"""
|
1938
|
+
The project id of the project where the provenance is stored.
|
1939
|
+
"""
|
1940
|
+
elif False:
|
1941
|
+
InsightsConfigArtifactConfigGoogleArtifactAnalysisArgsDict: TypeAlias = Mapping[str, Any]
|
1942
|
+
|
1943
|
+
@pulumi.input_type
|
1944
|
+
class InsightsConfigArtifactConfigGoogleArtifactAnalysisArgs:
|
1945
|
+
def __init__(__self__, *,
|
1946
|
+
project_id: pulumi.Input[_builtins.str]):
|
1947
|
+
"""
|
1948
|
+
:param pulumi.Input[_builtins.str] project_id: The project id of the project where the provenance is stored.
|
1949
|
+
"""
|
1950
|
+
pulumi.set(__self__, "project_id", project_id)
|
1951
|
+
|
1952
|
+
@_builtins.property
|
1953
|
+
@pulumi.getter(name="projectId")
|
1954
|
+
def project_id(self) -> pulumi.Input[_builtins.str]:
|
1955
|
+
"""
|
1956
|
+
The project id of the project where the provenance is stored.
|
1957
|
+
"""
|
1958
|
+
return pulumi.get(self, "project_id")
|
1959
|
+
|
1960
|
+
@project_id.setter
|
1961
|
+
def project_id(self, value: pulumi.Input[_builtins.str]):
|
1962
|
+
pulumi.set(self, "project_id", value)
|
1963
|
+
|
1964
|
+
|
1965
|
+
if not MYPY:
|
1966
|
+
class InsightsConfigArtifactConfigGoogleArtifactRegistryArgsDict(TypedDict):
|
1967
|
+
artifact_registry_package: pulumi.Input[_builtins.str]
|
1968
|
+
"""
|
1969
|
+
The name of the artifact registry package.
|
1970
|
+
"""
|
1971
|
+
project_id: pulumi.Input[_builtins.str]
|
1972
|
+
"""
|
1973
|
+
The host project of Artifact Registry.
|
1974
|
+
"""
|
1975
|
+
elif False:
|
1976
|
+
InsightsConfigArtifactConfigGoogleArtifactRegistryArgsDict: TypeAlias = Mapping[str, Any]
|
1977
|
+
|
1978
|
+
@pulumi.input_type
|
1979
|
+
class InsightsConfigArtifactConfigGoogleArtifactRegistryArgs:
|
1980
|
+
def __init__(__self__, *,
|
1981
|
+
artifact_registry_package: pulumi.Input[_builtins.str],
|
1982
|
+
project_id: pulumi.Input[_builtins.str]):
|
1983
|
+
"""
|
1984
|
+
:param pulumi.Input[_builtins.str] artifact_registry_package: The name of the artifact registry package.
|
1985
|
+
:param pulumi.Input[_builtins.str] project_id: The host project of Artifact Registry.
|
1986
|
+
"""
|
1987
|
+
pulumi.set(__self__, "artifact_registry_package", artifact_registry_package)
|
1988
|
+
pulumi.set(__self__, "project_id", project_id)
|
1989
|
+
|
1990
|
+
@_builtins.property
|
1991
|
+
@pulumi.getter(name="artifactRegistryPackage")
|
1992
|
+
def artifact_registry_package(self) -> pulumi.Input[_builtins.str]:
|
1993
|
+
"""
|
1994
|
+
The name of the artifact registry package.
|
1995
|
+
"""
|
1996
|
+
return pulumi.get(self, "artifact_registry_package")
|
1997
|
+
|
1998
|
+
@artifact_registry_package.setter
|
1999
|
+
def artifact_registry_package(self, value: pulumi.Input[_builtins.str]):
|
2000
|
+
pulumi.set(self, "artifact_registry_package", value)
|
2001
|
+
|
2002
|
+
@_builtins.property
|
2003
|
+
@pulumi.getter(name="projectId")
|
2004
|
+
def project_id(self) -> pulumi.Input[_builtins.str]:
|
2005
|
+
"""
|
2006
|
+
The host project of Artifact Registry.
|
2007
|
+
"""
|
2008
|
+
return pulumi.get(self, "project_id")
|
2009
|
+
|
2010
|
+
@project_id.setter
|
2011
|
+
def project_id(self, value: pulumi.Input[_builtins.str]):
|
2012
|
+
pulumi.set(self, "project_id", value)
|
2013
|
+
|
2014
|
+
|
2015
|
+
if not MYPY:
|
2016
|
+
class InsightsConfigErrorArgsDict(TypedDict):
|
2017
|
+
code: NotRequired[pulumi.Input[_builtins.int]]
|
2018
|
+
"""
|
2019
|
+
(Output)
|
2020
|
+
The status code, which should be an enum value of google.rpc.Code.
|
2021
|
+
"""
|
2022
|
+
details: NotRequired[pulumi.Input[Sequence[pulumi.Input['InsightsConfigErrorDetailArgsDict']]]]
|
2023
|
+
"""
|
2024
|
+
(Output)
|
2025
|
+
A list of messages that carry the error details. There is a common set of
|
2026
|
+
message types for APIs to use.
|
2027
|
+
Structure is documented below.
|
2028
|
+
"""
|
2029
|
+
message: NotRequired[pulumi.Input[_builtins.str]]
|
2030
|
+
"""
|
2031
|
+
(Output)
|
2032
|
+
A developer-facing error message, which should be in English. Any
|
2033
|
+
user-facing error message should be localized and sent in the
|
2034
|
+
google.rpc.Status.details field, or localized by the client.
|
2035
|
+
"""
|
2036
|
+
elif False:
|
2037
|
+
InsightsConfigErrorArgsDict: TypeAlias = Mapping[str, Any]
|
2038
|
+
|
2039
|
+
@pulumi.input_type
|
2040
|
+
class InsightsConfigErrorArgs:
|
2041
|
+
def __init__(__self__, *,
|
2042
|
+
code: Optional[pulumi.Input[_builtins.int]] = None,
|
2043
|
+
details: Optional[pulumi.Input[Sequence[pulumi.Input['InsightsConfigErrorDetailArgs']]]] = None,
|
2044
|
+
message: Optional[pulumi.Input[_builtins.str]] = None):
|
2045
|
+
"""
|
2046
|
+
:param pulumi.Input[_builtins.int] code: (Output)
|
2047
|
+
The status code, which should be an enum value of google.rpc.Code.
|
2048
|
+
:param pulumi.Input[Sequence[pulumi.Input['InsightsConfigErrorDetailArgs']]] details: (Output)
|
2049
|
+
A list of messages that carry the error details. There is a common set of
|
2050
|
+
message types for APIs to use.
|
2051
|
+
Structure is documented below.
|
2052
|
+
:param pulumi.Input[_builtins.str] message: (Output)
|
2053
|
+
A developer-facing error message, which should be in English. Any
|
2054
|
+
user-facing error message should be localized and sent in the
|
2055
|
+
google.rpc.Status.details field, or localized by the client.
|
2056
|
+
"""
|
2057
|
+
if code is not None:
|
2058
|
+
pulumi.set(__self__, "code", code)
|
2059
|
+
if details is not None:
|
2060
|
+
pulumi.set(__self__, "details", details)
|
2061
|
+
if message is not None:
|
2062
|
+
pulumi.set(__self__, "message", message)
|
2063
|
+
|
2064
|
+
@_builtins.property
|
2065
|
+
@pulumi.getter
|
2066
|
+
def code(self) -> Optional[pulumi.Input[_builtins.int]]:
|
2067
|
+
"""
|
2068
|
+
(Output)
|
2069
|
+
The status code, which should be an enum value of google.rpc.Code.
|
2070
|
+
"""
|
2071
|
+
return pulumi.get(self, "code")
|
2072
|
+
|
2073
|
+
@code.setter
|
2074
|
+
def code(self, value: Optional[pulumi.Input[_builtins.int]]):
|
2075
|
+
pulumi.set(self, "code", value)
|
2076
|
+
|
2077
|
+
@_builtins.property
|
2078
|
+
@pulumi.getter
|
2079
|
+
def details(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['InsightsConfigErrorDetailArgs']]]]:
|
2080
|
+
"""
|
2081
|
+
(Output)
|
2082
|
+
A list of messages that carry the error details. There is a common set of
|
2083
|
+
message types for APIs to use.
|
2084
|
+
Structure is documented below.
|
2085
|
+
"""
|
2086
|
+
return pulumi.get(self, "details")
|
2087
|
+
|
2088
|
+
@details.setter
|
2089
|
+
def details(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['InsightsConfigErrorDetailArgs']]]]):
|
2090
|
+
pulumi.set(self, "details", value)
|
2091
|
+
|
2092
|
+
@_builtins.property
|
2093
|
+
@pulumi.getter
|
2094
|
+
def message(self) -> Optional[pulumi.Input[_builtins.str]]:
|
2095
|
+
"""
|
2096
|
+
(Output)
|
2097
|
+
A developer-facing error message, which should be in English. Any
|
2098
|
+
user-facing error message should be localized and sent in the
|
2099
|
+
google.rpc.Status.details field, or localized by the client.
|
2100
|
+
"""
|
2101
|
+
return pulumi.get(self, "message")
|
2102
|
+
|
2103
|
+
@message.setter
|
2104
|
+
def message(self, value: Optional[pulumi.Input[_builtins.str]]):
|
2105
|
+
pulumi.set(self, "message", value)
|
2106
|
+
|
2107
|
+
|
2108
|
+
if not MYPY:
|
2109
|
+
class InsightsConfigErrorDetailArgsDict(TypedDict):
|
2110
|
+
detail_message: NotRequired[pulumi.Input[_builtins.str]]
|
2111
|
+
"""
|
2112
|
+
(Output)
|
2113
|
+
A message with details about the error.
|
2114
|
+
"""
|
2115
|
+
elif False:
|
2116
|
+
InsightsConfigErrorDetailArgsDict: TypeAlias = Mapping[str, Any]
|
2117
|
+
|
2118
|
+
@pulumi.input_type
|
2119
|
+
class InsightsConfigErrorDetailArgs:
|
2120
|
+
def __init__(__self__, *,
|
2121
|
+
detail_message: Optional[pulumi.Input[_builtins.str]] = None):
|
2122
|
+
"""
|
2123
|
+
:param pulumi.Input[_builtins.str] detail_message: (Output)
|
2124
|
+
A message with details about the error.
|
2125
|
+
"""
|
2126
|
+
if detail_message is not None:
|
2127
|
+
pulumi.set(__self__, "detail_message", detail_message)
|
2128
|
+
|
2129
|
+
@_builtins.property
|
2130
|
+
@pulumi.getter(name="detailMessage")
|
2131
|
+
def detail_message(self) -> Optional[pulumi.Input[_builtins.str]]:
|
2132
|
+
"""
|
2133
|
+
(Output)
|
2134
|
+
A message with details about the error.
|
2135
|
+
"""
|
2136
|
+
return pulumi.get(self, "detail_message")
|
2137
|
+
|
2138
|
+
@detail_message.setter
|
2139
|
+
def detail_message(self, value: Optional[pulumi.Input[_builtins.str]]):
|
2140
|
+
pulumi.set(self, "detail_message", value)
|
2141
|
+
|
2142
|
+
|
2143
|
+
if not MYPY:
|
2144
|
+
class InsightsConfigRuntimeConfigArgsDict(TypedDict):
|
2145
|
+
uri: pulumi.Input[_builtins.str]
|
2146
|
+
"""
|
2147
|
+
The URI of the runtime configuration.
|
2148
|
+
For GKE, this is the cluster name.
|
2149
|
+
For Cloud Run, this is the service name.
|
2150
|
+
"""
|
2151
|
+
app_hub_workload: NotRequired[pulumi.Input['InsightsConfigRuntimeConfigAppHubWorkloadArgsDict']]
|
2152
|
+
"""
|
2153
|
+
AppHubWorkload represents the App Hub Workload.
|
2154
|
+
Structure is documented below.
|
2155
|
+
"""
|
2156
|
+
gke_workload: NotRequired[pulumi.Input['InsightsConfigRuntimeConfigGkeWorkloadArgsDict']]
|
2157
|
+
"""
|
2158
|
+
GKEWorkload represents the Google Kubernetes Engine runtime.
|
2159
|
+
Structure is documented below.
|
2160
|
+
"""
|
2161
|
+
state: NotRequired[pulumi.Input[_builtins.str]]
|
2162
|
+
"""
|
2163
|
+
(Output)
|
2164
|
+
The state of the Runtime.
|
2165
|
+
Possible values:
|
2166
|
+
STATE_UNSPECIFIED
|
2167
|
+
LINKED
|
2168
|
+
UNLINKED
|
2169
|
+
"""
|
2170
|
+
elif False:
|
2171
|
+
InsightsConfigRuntimeConfigArgsDict: TypeAlias = Mapping[str, Any]
|
2172
|
+
|
2173
|
+
@pulumi.input_type
|
2174
|
+
class InsightsConfigRuntimeConfigArgs:
|
2175
|
+
def __init__(__self__, *,
|
2176
|
+
uri: pulumi.Input[_builtins.str],
|
2177
|
+
app_hub_workload: Optional[pulumi.Input['InsightsConfigRuntimeConfigAppHubWorkloadArgs']] = None,
|
2178
|
+
gke_workload: Optional[pulumi.Input['InsightsConfigRuntimeConfigGkeWorkloadArgs']] = None,
|
2179
|
+
state: Optional[pulumi.Input[_builtins.str]] = None):
|
2180
|
+
"""
|
2181
|
+
:param pulumi.Input[_builtins.str] uri: The URI of the runtime configuration.
|
2182
|
+
For GKE, this is the cluster name.
|
2183
|
+
For Cloud Run, this is the service name.
|
2184
|
+
:param pulumi.Input['InsightsConfigRuntimeConfigAppHubWorkloadArgs'] app_hub_workload: AppHubWorkload represents the App Hub Workload.
|
2185
|
+
Structure is documented below.
|
2186
|
+
:param pulumi.Input['InsightsConfigRuntimeConfigGkeWorkloadArgs'] gke_workload: GKEWorkload represents the Google Kubernetes Engine runtime.
|
2187
|
+
Structure is documented below.
|
2188
|
+
:param pulumi.Input[_builtins.str] state: (Output)
|
2189
|
+
The state of the Runtime.
|
2190
|
+
Possible values:
|
2191
|
+
STATE_UNSPECIFIED
|
2192
|
+
LINKED
|
2193
|
+
UNLINKED
|
2194
|
+
"""
|
2195
|
+
pulumi.set(__self__, "uri", uri)
|
2196
|
+
if app_hub_workload is not None:
|
2197
|
+
pulumi.set(__self__, "app_hub_workload", app_hub_workload)
|
2198
|
+
if gke_workload is not None:
|
2199
|
+
pulumi.set(__self__, "gke_workload", gke_workload)
|
2200
|
+
if state is not None:
|
2201
|
+
pulumi.set(__self__, "state", state)
|
2202
|
+
|
2203
|
+
@_builtins.property
|
2204
|
+
@pulumi.getter
|
2205
|
+
def uri(self) -> pulumi.Input[_builtins.str]:
|
2206
|
+
"""
|
2207
|
+
The URI of the runtime configuration.
|
2208
|
+
For GKE, this is the cluster name.
|
2209
|
+
For Cloud Run, this is the service name.
|
2210
|
+
"""
|
2211
|
+
return pulumi.get(self, "uri")
|
2212
|
+
|
2213
|
+
@uri.setter
|
2214
|
+
def uri(self, value: pulumi.Input[_builtins.str]):
|
2215
|
+
pulumi.set(self, "uri", value)
|
2216
|
+
|
2217
|
+
@_builtins.property
|
2218
|
+
@pulumi.getter(name="appHubWorkload")
|
2219
|
+
def app_hub_workload(self) -> Optional[pulumi.Input['InsightsConfigRuntimeConfigAppHubWorkloadArgs']]:
|
2220
|
+
"""
|
2221
|
+
AppHubWorkload represents the App Hub Workload.
|
2222
|
+
Structure is documented below.
|
2223
|
+
"""
|
2224
|
+
return pulumi.get(self, "app_hub_workload")
|
2225
|
+
|
2226
|
+
@app_hub_workload.setter
|
2227
|
+
def app_hub_workload(self, value: Optional[pulumi.Input['InsightsConfigRuntimeConfigAppHubWorkloadArgs']]):
|
2228
|
+
pulumi.set(self, "app_hub_workload", value)
|
2229
|
+
|
2230
|
+
@_builtins.property
|
2231
|
+
@pulumi.getter(name="gkeWorkload")
|
2232
|
+
def gke_workload(self) -> Optional[pulumi.Input['InsightsConfigRuntimeConfigGkeWorkloadArgs']]:
|
2233
|
+
"""
|
2234
|
+
GKEWorkload represents the Google Kubernetes Engine runtime.
|
2235
|
+
Structure is documented below.
|
2236
|
+
"""
|
2237
|
+
return pulumi.get(self, "gke_workload")
|
2238
|
+
|
2239
|
+
@gke_workload.setter
|
2240
|
+
def gke_workload(self, value: Optional[pulumi.Input['InsightsConfigRuntimeConfigGkeWorkloadArgs']]):
|
2241
|
+
pulumi.set(self, "gke_workload", value)
|
2242
|
+
|
2243
|
+
@_builtins.property
|
2244
|
+
@pulumi.getter
|
2245
|
+
def state(self) -> Optional[pulumi.Input[_builtins.str]]:
|
2246
|
+
"""
|
2247
|
+
(Output)
|
2248
|
+
The state of the Runtime.
|
2249
|
+
Possible values:
|
2250
|
+
STATE_UNSPECIFIED
|
2251
|
+
LINKED
|
2252
|
+
UNLINKED
|
2253
|
+
"""
|
2254
|
+
return pulumi.get(self, "state")
|
2255
|
+
|
2256
|
+
@state.setter
|
2257
|
+
def state(self, value: Optional[pulumi.Input[_builtins.str]]):
|
2258
|
+
pulumi.set(self, "state", value)
|
2259
|
+
|
2260
|
+
|
2261
|
+
if not MYPY:
|
2262
|
+
class InsightsConfigRuntimeConfigAppHubWorkloadArgsDict(TypedDict):
|
2263
|
+
criticality: NotRequired[pulumi.Input[_builtins.str]]
|
2264
|
+
"""
|
2265
|
+
(Output)
|
2266
|
+
The criticality of the App Hub Workload.
|
2267
|
+
"""
|
2268
|
+
environment: NotRequired[pulumi.Input[_builtins.str]]
|
2269
|
+
"""
|
2270
|
+
(Output)
|
2271
|
+
The environment of the App Hub Workload.
|
2272
|
+
"""
|
2273
|
+
workload: NotRequired[pulumi.Input[_builtins.str]]
|
2274
|
+
"""
|
2275
|
+
(Output)
|
2276
|
+
Output only. The name of the App Hub Workload.
|
2277
|
+
Format:
|
2278
|
+
`projects/{project}/locations/{location}/applications/{application}/workloads/{workload}`.
|
2279
|
+
"""
|
2280
|
+
elif False:
|
2281
|
+
InsightsConfigRuntimeConfigAppHubWorkloadArgsDict: TypeAlias = Mapping[str, Any]
|
2282
|
+
|
2283
|
+
@pulumi.input_type
|
2284
|
+
class InsightsConfigRuntimeConfigAppHubWorkloadArgs:
|
2285
|
+
def __init__(__self__, *,
|
2286
|
+
criticality: Optional[pulumi.Input[_builtins.str]] = None,
|
2287
|
+
environment: Optional[pulumi.Input[_builtins.str]] = None,
|
2288
|
+
workload: Optional[pulumi.Input[_builtins.str]] = None):
|
2289
|
+
"""
|
2290
|
+
:param pulumi.Input[_builtins.str] criticality: (Output)
|
2291
|
+
The criticality of the App Hub Workload.
|
2292
|
+
:param pulumi.Input[_builtins.str] environment: (Output)
|
2293
|
+
The environment of the App Hub Workload.
|
2294
|
+
:param pulumi.Input[_builtins.str] workload: (Output)
|
2295
|
+
Output only. The name of the App Hub Workload.
|
2296
|
+
Format:
|
2297
|
+
`projects/{project}/locations/{location}/applications/{application}/workloads/{workload}`.
|
2298
|
+
"""
|
2299
|
+
if criticality is not None:
|
2300
|
+
pulumi.set(__self__, "criticality", criticality)
|
2301
|
+
if environment is not None:
|
2302
|
+
pulumi.set(__self__, "environment", environment)
|
2303
|
+
if workload is not None:
|
2304
|
+
pulumi.set(__self__, "workload", workload)
|
2305
|
+
|
2306
|
+
@_builtins.property
|
2307
|
+
@pulumi.getter
|
2308
|
+
def criticality(self) -> Optional[pulumi.Input[_builtins.str]]:
|
2309
|
+
"""
|
2310
|
+
(Output)
|
2311
|
+
The criticality of the App Hub Workload.
|
2312
|
+
"""
|
2313
|
+
return pulumi.get(self, "criticality")
|
2314
|
+
|
2315
|
+
@criticality.setter
|
2316
|
+
def criticality(self, value: Optional[pulumi.Input[_builtins.str]]):
|
2317
|
+
pulumi.set(self, "criticality", value)
|
2318
|
+
|
2319
|
+
@_builtins.property
|
2320
|
+
@pulumi.getter
|
2321
|
+
def environment(self) -> Optional[pulumi.Input[_builtins.str]]:
|
2322
|
+
"""
|
2323
|
+
(Output)
|
2324
|
+
The environment of the App Hub Workload.
|
2325
|
+
"""
|
2326
|
+
return pulumi.get(self, "environment")
|
2327
|
+
|
2328
|
+
@environment.setter
|
2329
|
+
def environment(self, value: Optional[pulumi.Input[_builtins.str]]):
|
2330
|
+
pulumi.set(self, "environment", value)
|
2331
|
+
|
2332
|
+
@_builtins.property
|
2333
|
+
@pulumi.getter
|
2334
|
+
def workload(self) -> Optional[pulumi.Input[_builtins.str]]:
|
2335
|
+
"""
|
2336
|
+
(Output)
|
2337
|
+
Output only. The name of the App Hub Workload.
|
2338
|
+
Format:
|
2339
|
+
`projects/{project}/locations/{location}/applications/{application}/workloads/{workload}`.
|
2340
|
+
"""
|
2341
|
+
return pulumi.get(self, "workload")
|
2342
|
+
|
2343
|
+
@workload.setter
|
2344
|
+
def workload(self, value: Optional[pulumi.Input[_builtins.str]]):
|
2345
|
+
pulumi.set(self, "workload", value)
|
2346
|
+
|
2347
|
+
|
2348
|
+
if not MYPY:
|
2349
|
+
class InsightsConfigRuntimeConfigGkeWorkloadArgsDict(TypedDict):
|
2350
|
+
cluster: pulumi.Input[_builtins.str]
|
2351
|
+
"""
|
2352
|
+
The name of the GKE cluster.
|
2353
|
+
Format:
|
2354
|
+
`projects/{project}/locations/{location}/clusters/{cluster}`.
|
2355
|
+
"""
|
2356
|
+
deployment: NotRequired[pulumi.Input[_builtins.str]]
|
2357
|
+
"""
|
2358
|
+
(Output)
|
2359
|
+
The name of the GKE deployment.
|
2360
|
+
Format:
|
2361
|
+
`projects/{project}/locations/{location}/clusters/{cluster}/namespaces/{namespace}/deployments/{deployment}`.
|
2362
|
+
"""
|
2363
|
+
elif False:
|
2364
|
+
InsightsConfigRuntimeConfigGkeWorkloadArgsDict: TypeAlias = Mapping[str, Any]
|
2365
|
+
|
2366
|
+
@pulumi.input_type
|
2367
|
+
class InsightsConfigRuntimeConfigGkeWorkloadArgs:
|
2368
|
+
def __init__(__self__, *,
|
2369
|
+
cluster: pulumi.Input[_builtins.str],
|
2370
|
+
deployment: Optional[pulumi.Input[_builtins.str]] = None):
|
2371
|
+
"""
|
2372
|
+
:param pulumi.Input[_builtins.str] cluster: The name of the GKE cluster.
|
2373
|
+
Format:
|
2374
|
+
`projects/{project}/locations/{location}/clusters/{cluster}`.
|
2375
|
+
:param pulumi.Input[_builtins.str] deployment: (Output)
|
2376
|
+
The name of the GKE deployment.
|
2377
|
+
Format:
|
2378
|
+
`projects/{project}/locations/{location}/clusters/{cluster}/namespaces/{namespace}/deployments/{deployment}`.
|
2379
|
+
"""
|
2380
|
+
pulumi.set(__self__, "cluster", cluster)
|
2381
|
+
if deployment is not None:
|
2382
|
+
pulumi.set(__self__, "deployment", deployment)
|
2383
|
+
|
2384
|
+
@_builtins.property
|
2385
|
+
@pulumi.getter
|
2386
|
+
def cluster(self) -> pulumi.Input[_builtins.str]:
|
2387
|
+
"""
|
2388
|
+
The name of the GKE cluster.
|
2389
|
+
Format:
|
2390
|
+
`projects/{project}/locations/{location}/clusters/{cluster}`.
|
2391
|
+
"""
|
2392
|
+
return pulumi.get(self, "cluster")
|
2393
|
+
|
2394
|
+
@cluster.setter
|
2395
|
+
def cluster(self, value: pulumi.Input[_builtins.str]):
|
2396
|
+
pulumi.set(self, "cluster", value)
|
2397
|
+
|
2398
|
+
@_builtins.property
|
2399
|
+
@pulumi.getter
|
2400
|
+
def deployment(self) -> Optional[pulumi.Input[_builtins.str]]:
|
2401
|
+
"""
|
2402
|
+
(Output)
|
2403
|
+
The name of the GKE deployment.
|
2404
|
+
Format:
|
2405
|
+
`projects/{project}/locations/{location}/clusters/{cluster}/namespaces/{namespace}/deployments/{deployment}`.
|
2406
|
+
"""
|
2407
|
+
return pulumi.get(self, "deployment")
|
2408
|
+
|
2409
|
+
@deployment.setter
|
2410
|
+
def deployment(self, value: Optional[pulumi.Input[_builtins.str]]):
|
2411
|
+
pulumi.set(self, "deployment", value)
|
2412
|
+
|
2413
|
+
|