pulumi-gcp 8.40.0a1754721948__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.0a1754721948.dist-info → pulumi_gcp-8.40.0a1754951145.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.40.0a1754721948.dist-info → pulumi_gcp-8.40.0a1754951145.dist-info}/RECORD +157 -138
- {pulumi_gcp-8.40.0a1754721948.dist-info → pulumi_gcp-8.40.0a1754951145.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.40.0a1754721948.dist-info → pulumi_gcp-8.40.0a1754951145.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,161 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import builtins as _builtins
|
6
|
+
import warnings
|
7
|
+
import sys
|
8
|
+
import pulumi
|
9
|
+
import pulumi.runtime
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
|
+
from .. import _utilities
|
16
|
+
|
17
|
+
__all__ = [
|
18
|
+
'GetWorkforcePoolIamPolicyResult',
|
19
|
+
'AwaitableGetWorkforcePoolIamPolicyResult',
|
20
|
+
'get_workforce_pool_iam_policy',
|
21
|
+
'get_workforce_pool_iam_policy_output',
|
22
|
+
]
|
23
|
+
|
24
|
+
@pulumi.output_type
|
25
|
+
class GetWorkforcePoolIamPolicyResult:
|
26
|
+
"""
|
27
|
+
A collection of values returned by getWorkforcePoolIamPolicy.
|
28
|
+
"""
|
29
|
+
def __init__(__self__, etag=None, id=None, location=None, policy_data=None, workforce_pool_id=None):
|
30
|
+
if etag and not isinstance(etag, str):
|
31
|
+
raise TypeError("Expected argument 'etag' to be a str")
|
32
|
+
pulumi.set(__self__, "etag", etag)
|
33
|
+
if id and not isinstance(id, str):
|
34
|
+
raise TypeError("Expected argument 'id' to be a str")
|
35
|
+
pulumi.set(__self__, "id", id)
|
36
|
+
if location and not isinstance(location, str):
|
37
|
+
raise TypeError("Expected argument 'location' to be a str")
|
38
|
+
pulumi.set(__self__, "location", location)
|
39
|
+
if policy_data and not isinstance(policy_data, str):
|
40
|
+
raise TypeError("Expected argument 'policy_data' to be a str")
|
41
|
+
pulumi.set(__self__, "policy_data", policy_data)
|
42
|
+
if workforce_pool_id and not isinstance(workforce_pool_id, str):
|
43
|
+
raise TypeError("Expected argument 'workforce_pool_id' to be a str")
|
44
|
+
pulumi.set(__self__, "workforce_pool_id", workforce_pool_id)
|
45
|
+
|
46
|
+
@_builtins.property
|
47
|
+
@pulumi.getter
|
48
|
+
def etag(self) -> _builtins.str:
|
49
|
+
"""
|
50
|
+
(Computed) The etag of the IAM policy.
|
51
|
+
"""
|
52
|
+
return pulumi.get(self, "etag")
|
53
|
+
|
54
|
+
@_builtins.property
|
55
|
+
@pulumi.getter
|
56
|
+
def id(self) -> _builtins.str:
|
57
|
+
"""
|
58
|
+
The provider-assigned unique ID for this managed resource.
|
59
|
+
"""
|
60
|
+
return pulumi.get(self, "id")
|
61
|
+
|
62
|
+
@_builtins.property
|
63
|
+
@pulumi.getter
|
64
|
+
def location(self) -> _builtins.str:
|
65
|
+
return pulumi.get(self, "location")
|
66
|
+
|
67
|
+
@_builtins.property
|
68
|
+
@pulumi.getter(name="policyData")
|
69
|
+
def policy_data(self) -> _builtins.str:
|
70
|
+
"""
|
71
|
+
(Required only by `iam.WorkforcePoolIamPolicy`) The policy data generated by
|
72
|
+
a `organizations_get_iam_policy` data source.
|
73
|
+
"""
|
74
|
+
return pulumi.get(self, "policy_data")
|
75
|
+
|
76
|
+
@_builtins.property
|
77
|
+
@pulumi.getter(name="workforcePoolId")
|
78
|
+
def workforce_pool_id(self) -> _builtins.str:
|
79
|
+
return pulumi.get(self, "workforce_pool_id")
|
80
|
+
|
81
|
+
|
82
|
+
class AwaitableGetWorkforcePoolIamPolicyResult(GetWorkforcePoolIamPolicyResult):
|
83
|
+
# pylint: disable=using-constant-test
|
84
|
+
def __await__(self):
|
85
|
+
if False:
|
86
|
+
yield self
|
87
|
+
return GetWorkforcePoolIamPolicyResult(
|
88
|
+
etag=self.etag,
|
89
|
+
id=self.id,
|
90
|
+
location=self.location,
|
91
|
+
policy_data=self.policy_data,
|
92
|
+
workforce_pool_id=self.workforce_pool_id)
|
93
|
+
|
94
|
+
|
95
|
+
def get_workforce_pool_iam_policy(location: Optional[_builtins.str] = None,
|
96
|
+
workforce_pool_id: Optional[_builtins.str] = None,
|
97
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetWorkforcePoolIamPolicyResult:
|
98
|
+
"""
|
99
|
+
Retrieves the current IAM policy data for workforcepool
|
100
|
+
|
101
|
+
## Example Usage
|
102
|
+
|
103
|
+
```python
|
104
|
+
import pulumi
|
105
|
+
import pulumi_gcp as gcp
|
106
|
+
|
107
|
+
policy = gcp.iam.get_workforce_pool_iam_policy(location=example["location"],
|
108
|
+
workforce_pool_id=example["workforcePoolId"])
|
109
|
+
```
|
110
|
+
|
111
|
+
|
112
|
+
:param _builtins.str location: The location for the resource. Used to find the parent resource to bind the IAM policy to. If not specified,
|
113
|
+
the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
|
114
|
+
location is specified, it is taken from the provider configuration.
|
115
|
+
:param _builtins.str workforce_pool_id: Used to find the parent resource to bind the IAM policy to
|
116
|
+
"""
|
117
|
+
__args__ = dict()
|
118
|
+
__args__['location'] = location
|
119
|
+
__args__['workforcePoolId'] = workforce_pool_id
|
120
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
121
|
+
__ret__ = pulumi.runtime.invoke('gcp:iam/getWorkforcePoolIamPolicy:getWorkforcePoolIamPolicy', __args__, opts=opts, typ=GetWorkforcePoolIamPolicyResult).value
|
122
|
+
|
123
|
+
return AwaitableGetWorkforcePoolIamPolicyResult(
|
124
|
+
etag=pulumi.get(__ret__, 'etag'),
|
125
|
+
id=pulumi.get(__ret__, 'id'),
|
126
|
+
location=pulumi.get(__ret__, 'location'),
|
127
|
+
policy_data=pulumi.get(__ret__, 'policy_data'),
|
128
|
+
workforce_pool_id=pulumi.get(__ret__, 'workforce_pool_id'))
|
129
|
+
def get_workforce_pool_iam_policy_output(location: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
130
|
+
workforce_pool_id: Optional[pulumi.Input[_builtins.str]] = None,
|
131
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetWorkforcePoolIamPolicyResult]:
|
132
|
+
"""
|
133
|
+
Retrieves the current IAM policy data for workforcepool
|
134
|
+
|
135
|
+
## Example Usage
|
136
|
+
|
137
|
+
```python
|
138
|
+
import pulumi
|
139
|
+
import pulumi_gcp as gcp
|
140
|
+
|
141
|
+
policy = gcp.iam.get_workforce_pool_iam_policy(location=example["location"],
|
142
|
+
workforce_pool_id=example["workforcePoolId"])
|
143
|
+
```
|
144
|
+
|
145
|
+
|
146
|
+
:param _builtins.str location: The location for the resource. Used to find the parent resource to bind the IAM policy to. If not specified,
|
147
|
+
the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
|
148
|
+
location is specified, it is taken from the provider configuration.
|
149
|
+
:param _builtins.str workforce_pool_id: Used to find the parent resource to bind the IAM policy to
|
150
|
+
"""
|
151
|
+
__args__ = dict()
|
152
|
+
__args__['location'] = location
|
153
|
+
__args__['workforcePoolId'] = workforce_pool_id
|
154
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
155
|
+
__ret__ = pulumi.runtime.invoke_output('gcp:iam/getWorkforcePoolIamPolicy:getWorkforcePoolIamPolicy', __args__, opts=opts, typ=GetWorkforcePoolIamPolicyResult)
|
156
|
+
return __ret__.apply(lambda __response__: GetWorkforcePoolIamPolicyResult(
|
157
|
+
etag=pulumi.get(__response__, 'etag'),
|
158
|
+
id=pulumi.get(__response__, 'id'),
|
159
|
+
location=pulumi.get(__response__, 'location'),
|
160
|
+
policy_data=pulumi.get(__response__, 'policy_data'),
|
161
|
+
workforce_pool_id=pulumi.get(__response__, 'workforce_pool_id')))
|
pulumi_gcp/iam/outputs.py
CHANGED
@@ -32,6 +32,8 @@ __all__ = [
|
|
32
32
|
'ProjectsPolicyBindingTarget',
|
33
33
|
'WorkforcePoolAccessRestrictions',
|
34
34
|
'WorkforcePoolAccessRestrictionsAllowedService',
|
35
|
+
'WorkforcePoolIamBindingCondition',
|
36
|
+
'WorkforcePoolIamMemberCondition',
|
35
37
|
'WorkforcePoolProviderExtraAttributesOauth2Client',
|
36
38
|
'WorkforcePoolProviderExtraAttributesOauth2ClientClientSecret',
|
37
39
|
'WorkforcePoolProviderExtraAttributesOauth2ClientClientSecretValue',
|
@@ -949,6 +951,60 @@ class WorkforcePoolAccessRestrictionsAllowedService(dict):
|
|
949
951
|
return pulumi.get(self, "domain")
|
950
952
|
|
951
953
|
|
954
|
+
@pulumi.output_type
|
955
|
+
class WorkforcePoolIamBindingCondition(dict):
|
956
|
+
def __init__(__self__, *,
|
957
|
+
expression: _builtins.str,
|
958
|
+
title: _builtins.str,
|
959
|
+
description: Optional[_builtins.str] = None):
|
960
|
+
pulumi.set(__self__, "expression", expression)
|
961
|
+
pulumi.set(__self__, "title", title)
|
962
|
+
if description is not None:
|
963
|
+
pulumi.set(__self__, "description", description)
|
964
|
+
|
965
|
+
@_builtins.property
|
966
|
+
@pulumi.getter
|
967
|
+
def expression(self) -> _builtins.str:
|
968
|
+
return pulumi.get(self, "expression")
|
969
|
+
|
970
|
+
@_builtins.property
|
971
|
+
@pulumi.getter
|
972
|
+
def title(self) -> _builtins.str:
|
973
|
+
return pulumi.get(self, "title")
|
974
|
+
|
975
|
+
@_builtins.property
|
976
|
+
@pulumi.getter
|
977
|
+
def description(self) -> Optional[_builtins.str]:
|
978
|
+
return pulumi.get(self, "description")
|
979
|
+
|
980
|
+
|
981
|
+
@pulumi.output_type
|
982
|
+
class WorkforcePoolIamMemberCondition(dict):
|
983
|
+
def __init__(__self__, *,
|
984
|
+
expression: _builtins.str,
|
985
|
+
title: _builtins.str,
|
986
|
+
description: Optional[_builtins.str] = None):
|
987
|
+
pulumi.set(__self__, "expression", expression)
|
988
|
+
pulumi.set(__self__, "title", title)
|
989
|
+
if description is not None:
|
990
|
+
pulumi.set(__self__, "description", description)
|
991
|
+
|
992
|
+
@_builtins.property
|
993
|
+
@pulumi.getter
|
994
|
+
def expression(self) -> _builtins.str:
|
995
|
+
return pulumi.get(self, "expression")
|
996
|
+
|
997
|
+
@_builtins.property
|
998
|
+
@pulumi.getter
|
999
|
+
def title(self) -> _builtins.str:
|
1000
|
+
return pulumi.get(self, "title")
|
1001
|
+
|
1002
|
+
@_builtins.property
|
1003
|
+
@pulumi.getter
|
1004
|
+
def description(self) -> Optional[_builtins.str]:
|
1005
|
+
return pulumi.get(self, "description")
|
1006
|
+
|
1007
|
+
|
952
1008
|
@pulumi.output_type
|
953
1009
|
class WorkforcePoolProviderExtraAttributesOauth2Client(dict):
|
954
1010
|
@staticmethod
|