pulumi-gcp 7.17.0a1712402830__py3-none-any.whl → 7.17.0a1712602552__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 +27 -0
- pulumi_gcp/apphub/__init__.py +1 -0
- pulumi_gcp/apphub/get_application.py +220 -0
- pulumi_gcp/apphub/outputs.py +214 -0
- pulumi_gcp/applicationintegration/__init__.py +10 -0
- pulumi_gcp/applicationintegration/_inputs.py +119 -0
- pulumi_gcp/applicationintegration/client.py +566 -0
- pulumi_gcp/applicationintegration/outputs.py +122 -0
- pulumi_gcp/bigquery/_inputs.py +16 -0
- pulumi_gcp/bigquery/outputs.py +14 -0
- pulumi_gcp/bigquery/routine.py +98 -0
- pulumi_gcp/billing/project_info.py +4 -4
- pulumi_gcp/cloudquota/__init__.py +2 -0
- pulumi_gcp/cloudquota/_inputs.py +131 -0
- pulumi_gcp/cloudquota/outputs.py +118 -0
- pulumi_gcp/cloudquota/s_quota_preference.py +777 -0
- pulumi_gcp/compute/interconnect_attachment.py +64 -0
- pulumi_gcp/compute/network_endpoint.py +8 -0
- pulumi_gcp/compute/network_endpoint_list.py +8 -0
- pulumi_gcp/compute/region_backend_service.py +28 -0
- pulumi_gcp/compute/target_instance.py +4 -4
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/databasemigrationservice/connection_profile.py +6 -6
- pulumi_gcp/dataflow/flex_template_job.py +84 -112
- pulumi_gcp/dataplex/task.py +16 -16
- pulumi_gcp/dataproc/_inputs.py +71 -0
- pulumi_gcp/dataproc/get_metastore_service.py +11 -1
- pulumi_gcp/dataproc/metastore_service.py +120 -0
- pulumi_gcp/dataproc/outputs.py +128 -0
- pulumi_gcp/firebase/app_check_service_config.py +2 -2
- pulumi_gcp/firestore/backup_schedule.py +14 -14
- pulumi_gcp/firestore/field.py +4 -4
- 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 +4 -4
- pulumi_gcp/iap/tunnel_dest_group.py +2 -2
- pulumi_gcp/kms/_inputs.py +46 -0
- pulumi_gcp/kms/crypto_key.py +54 -0
- pulumi_gcp/kms/crypto_key_version.py +54 -0
- pulumi_gcp/kms/get_kms_crypto_key.py +11 -1
- pulumi_gcp/kms/outputs.py +54 -0
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pubsub/subscription.py +4 -4
- pulumi_gcp/vertex/__init__.py +1 -0
- pulumi_gcp/vertex/_inputs.py +169 -0
- pulumi_gcp/vertex/ai_deployment_resource_pool.py +477 -0
- pulumi_gcp/vertex/outputs.py +194 -0
- pulumi_gcp/vpcaccess/connector.py +77 -28
- {pulumi_gcp-7.17.0a1712402830.dist-info → pulumi_gcp-7.17.0a1712602552.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.17.0a1712402830.dist-info → pulumi_gcp-7.17.0a1712602552.dist-info}/RECORD +55 -47
- {pulumi_gcp-7.17.0a1712402830.dist-info → pulumi_gcp-7.17.0a1712602552.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.17.0a1712402830.dist-info → pulumi_gcp-7.17.0a1712602552.dist-info}/top_level.txt +0 -0
pulumi_gcp/__init__.py
CHANGED
@@ -26,6 +26,8 @@ if typing.TYPE_CHECKING:
|
|
26
26
|
appengine = __appengine
|
27
27
|
import pulumi_gcp.apphub as __apphub
|
28
28
|
apphub = __apphub
|
29
|
+
import pulumi_gcp.applicationintegration as __applicationintegration
|
30
|
+
applicationintegration = __applicationintegration
|
29
31
|
import pulumi_gcp.artifactregistry as __artifactregistry
|
30
32
|
artifactregistry = __artifactregistry
|
31
33
|
import pulumi_gcp.assuredworkloads as __assuredworkloads
|
@@ -251,6 +253,7 @@ else:
|
|
251
253
|
apigee = _utilities.lazy_import('pulumi_gcp.apigee')
|
252
254
|
appengine = _utilities.lazy_import('pulumi_gcp.appengine')
|
253
255
|
apphub = _utilities.lazy_import('pulumi_gcp.apphub')
|
256
|
+
applicationintegration = _utilities.lazy_import('pulumi_gcp.applicationintegration')
|
254
257
|
artifactregistry = _utilities.lazy_import('pulumi_gcp.artifactregistry')
|
255
258
|
assuredworkloads = _utilities.lazy_import('pulumi_gcp.assuredworkloads')
|
256
259
|
backupdisasterrecovery = _utilities.lazy_import('pulumi_gcp.backupdisasterrecovery')
|
@@ -923,6 +926,14 @@ _utilities.register(
|
|
923
926
|
"gcp:apphub/workload:Workload": "Workload"
|
924
927
|
}
|
925
928
|
},
|
929
|
+
{
|
930
|
+
"pkg": "gcp",
|
931
|
+
"mod": "applicationintegration/client",
|
932
|
+
"fqn": "pulumi_gcp.applicationintegration",
|
933
|
+
"classes": {
|
934
|
+
"gcp:applicationintegration/client:Client": "Client"
|
935
|
+
}
|
936
|
+
},
|
926
937
|
{
|
927
938
|
"pkg": "gcp",
|
928
939
|
"mod": "artifactregistry/repository",
|
@@ -1875,6 +1886,14 @@ _utilities.register(
|
|
1875
1886
|
"gcp:cloudids/endpoint:Endpoint": "Endpoint"
|
1876
1887
|
}
|
1877
1888
|
},
|
1889
|
+
{
|
1890
|
+
"pkg": "gcp",
|
1891
|
+
"mod": "cloudquota/sQuotaPreference",
|
1892
|
+
"fqn": "pulumi_gcp.cloudquota",
|
1893
|
+
"classes": {
|
1894
|
+
"gcp:cloudquota/sQuotaPreference:SQuotaPreference": "SQuotaPreference"
|
1895
|
+
}
|
1896
|
+
},
|
1878
1897
|
{
|
1879
1898
|
"pkg": "gcp",
|
1880
1899
|
"mod": "cloudrun/domainMapping",
|
@@ -7195,6 +7214,14 @@ _utilities.register(
|
|
7195
7214
|
"gcp:vertex/aiDataset:AiDataset": "AiDataset"
|
7196
7215
|
}
|
7197
7216
|
},
|
7217
|
+
{
|
7218
|
+
"pkg": "gcp",
|
7219
|
+
"mod": "vertex/aiDeploymentResourcePool",
|
7220
|
+
"fqn": "pulumi_gcp.vertex",
|
7221
|
+
"classes": {
|
7222
|
+
"gcp:vertex/aiDeploymentResourcePool:AiDeploymentResourcePool": "AiDeploymentResourcePool"
|
7223
|
+
}
|
7224
|
+
},
|
7198
7225
|
{
|
7199
7226
|
"pkg": "gcp",
|
7200
7227
|
"mod": "vertex/aiEndpoint",
|
pulumi_gcp/apphub/__init__.py
CHANGED
@@ -0,0 +1,220 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import copy
|
6
|
+
import warnings
|
7
|
+
import pulumi
|
8
|
+
import pulumi.runtime
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
10
|
+
from .. import _utilities
|
11
|
+
from . import outputs
|
12
|
+
|
13
|
+
__all__ = [
|
14
|
+
'GetApplicationResult',
|
15
|
+
'AwaitableGetApplicationResult',
|
16
|
+
'get_application',
|
17
|
+
'get_application_output',
|
18
|
+
]
|
19
|
+
|
20
|
+
@pulumi.output_type
|
21
|
+
class GetApplicationResult:
|
22
|
+
"""
|
23
|
+
A collection of values returned by getApplication.
|
24
|
+
"""
|
25
|
+
def __init__(__self__, application_id=None, attributes=None, create_time=None, description=None, display_name=None, id=None, location=None, name=None, project=None, scopes=None, state=None, uid=None, update_time=None):
|
26
|
+
if application_id and not isinstance(application_id, str):
|
27
|
+
raise TypeError("Expected argument 'application_id' to be a str")
|
28
|
+
pulumi.set(__self__, "application_id", application_id)
|
29
|
+
if attributes and not isinstance(attributes, list):
|
30
|
+
raise TypeError("Expected argument 'attributes' to be a list")
|
31
|
+
pulumi.set(__self__, "attributes", attributes)
|
32
|
+
if create_time and not isinstance(create_time, str):
|
33
|
+
raise TypeError("Expected argument 'create_time' to be a str")
|
34
|
+
pulumi.set(__self__, "create_time", create_time)
|
35
|
+
if description and not isinstance(description, str):
|
36
|
+
raise TypeError("Expected argument 'description' to be a str")
|
37
|
+
pulumi.set(__self__, "description", description)
|
38
|
+
if display_name and not isinstance(display_name, str):
|
39
|
+
raise TypeError("Expected argument 'display_name' to be a str")
|
40
|
+
pulumi.set(__self__, "display_name", display_name)
|
41
|
+
if id and not isinstance(id, str):
|
42
|
+
raise TypeError("Expected argument 'id' to be a str")
|
43
|
+
pulumi.set(__self__, "id", id)
|
44
|
+
if location and not isinstance(location, str):
|
45
|
+
raise TypeError("Expected argument 'location' to be a str")
|
46
|
+
pulumi.set(__self__, "location", location)
|
47
|
+
if name and not isinstance(name, str):
|
48
|
+
raise TypeError("Expected argument 'name' to be a str")
|
49
|
+
pulumi.set(__self__, "name", name)
|
50
|
+
if project and not isinstance(project, str):
|
51
|
+
raise TypeError("Expected argument 'project' to be a str")
|
52
|
+
pulumi.set(__self__, "project", project)
|
53
|
+
if scopes and not isinstance(scopes, list):
|
54
|
+
raise TypeError("Expected argument 'scopes' to be a list")
|
55
|
+
pulumi.set(__self__, "scopes", scopes)
|
56
|
+
if state and not isinstance(state, str):
|
57
|
+
raise TypeError("Expected argument 'state' to be a str")
|
58
|
+
pulumi.set(__self__, "state", state)
|
59
|
+
if uid and not isinstance(uid, str):
|
60
|
+
raise TypeError("Expected argument 'uid' to be a str")
|
61
|
+
pulumi.set(__self__, "uid", uid)
|
62
|
+
if update_time and not isinstance(update_time, str):
|
63
|
+
raise TypeError("Expected argument 'update_time' to be a str")
|
64
|
+
pulumi.set(__self__, "update_time", update_time)
|
65
|
+
|
66
|
+
@property
|
67
|
+
@pulumi.getter(name="applicationId")
|
68
|
+
def application_id(self) -> str:
|
69
|
+
return pulumi.get(self, "application_id")
|
70
|
+
|
71
|
+
@property
|
72
|
+
@pulumi.getter
|
73
|
+
def attributes(self) -> Sequence['outputs.GetApplicationAttributeResult']:
|
74
|
+
return pulumi.get(self, "attributes")
|
75
|
+
|
76
|
+
@property
|
77
|
+
@pulumi.getter(name="createTime")
|
78
|
+
def create_time(self) -> str:
|
79
|
+
return pulumi.get(self, "create_time")
|
80
|
+
|
81
|
+
@property
|
82
|
+
@pulumi.getter
|
83
|
+
def description(self) -> str:
|
84
|
+
return pulumi.get(self, "description")
|
85
|
+
|
86
|
+
@property
|
87
|
+
@pulumi.getter(name="displayName")
|
88
|
+
def display_name(self) -> str:
|
89
|
+
return pulumi.get(self, "display_name")
|
90
|
+
|
91
|
+
@property
|
92
|
+
@pulumi.getter
|
93
|
+
def id(self) -> str:
|
94
|
+
"""
|
95
|
+
The provider-assigned unique ID for this managed resource.
|
96
|
+
"""
|
97
|
+
return pulumi.get(self, "id")
|
98
|
+
|
99
|
+
@property
|
100
|
+
@pulumi.getter
|
101
|
+
def location(self) -> str:
|
102
|
+
return pulumi.get(self, "location")
|
103
|
+
|
104
|
+
@property
|
105
|
+
@pulumi.getter
|
106
|
+
def name(self) -> str:
|
107
|
+
return pulumi.get(self, "name")
|
108
|
+
|
109
|
+
@property
|
110
|
+
@pulumi.getter
|
111
|
+
def project(self) -> str:
|
112
|
+
return pulumi.get(self, "project")
|
113
|
+
|
114
|
+
@property
|
115
|
+
@pulumi.getter
|
116
|
+
def scopes(self) -> Sequence['outputs.GetApplicationScopeResult']:
|
117
|
+
return pulumi.get(self, "scopes")
|
118
|
+
|
119
|
+
@property
|
120
|
+
@pulumi.getter
|
121
|
+
def state(self) -> str:
|
122
|
+
return pulumi.get(self, "state")
|
123
|
+
|
124
|
+
@property
|
125
|
+
@pulumi.getter
|
126
|
+
def uid(self) -> str:
|
127
|
+
return pulumi.get(self, "uid")
|
128
|
+
|
129
|
+
@property
|
130
|
+
@pulumi.getter(name="updateTime")
|
131
|
+
def update_time(self) -> str:
|
132
|
+
return pulumi.get(self, "update_time")
|
133
|
+
|
134
|
+
|
135
|
+
class AwaitableGetApplicationResult(GetApplicationResult):
|
136
|
+
# pylint: disable=using-constant-test
|
137
|
+
def __await__(self):
|
138
|
+
if False:
|
139
|
+
yield self
|
140
|
+
return GetApplicationResult(
|
141
|
+
application_id=self.application_id,
|
142
|
+
attributes=self.attributes,
|
143
|
+
create_time=self.create_time,
|
144
|
+
description=self.description,
|
145
|
+
display_name=self.display_name,
|
146
|
+
id=self.id,
|
147
|
+
location=self.location,
|
148
|
+
name=self.name,
|
149
|
+
project=self.project,
|
150
|
+
scopes=self.scopes,
|
151
|
+
state=self.state,
|
152
|
+
uid=self.uid,
|
153
|
+
update_time=self.update_time)
|
154
|
+
|
155
|
+
|
156
|
+
def get_application(application_id: Optional[str] = None,
|
157
|
+
location: Optional[str] = None,
|
158
|
+
project: Optional[str] = None,
|
159
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetApplicationResult:
|
160
|
+
"""
|
161
|
+
Application is a functional grouping of Services and Workloads that helps achieve a desired end-to-end business functionality. Services and Workloads are owned by the Application.
|
162
|
+
|
163
|
+
## Example Usage
|
164
|
+
|
165
|
+
<!--Start PulumiCodeChooser -->
|
166
|
+
```python
|
167
|
+
import pulumi
|
168
|
+
import pulumi_gcp as gcp
|
169
|
+
|
170
|
+
application = gcp.apphub.get_application(project="project-id",
|
171
|
+
application_id="application",
|
172
|
+
location="location")
|
173
|
+
```
|
174
|
+
<!--End PulumiCodeChooser -->
|
175
|
+
"""
|
176
|
+
__args__ = dict()
|
177
|
+
__args__['applicationId'] = application_id
|
178
|
+
__args__['location'] = location
|
179
|
+
__args__['project'] = project
|
180
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
181
|
+
__ret__ = pulumi.runtime.invoke('gcp:apphub/getApplication:getApplication', __args__, opts=opts, typ=GetApplicationResult).value
|
182
|
+
|
183
|
+
return AwaitableGetApplicationResult(
|
184
|
+
application_id=pulumi.get(__ret__, 'application_id'),
|
185
|
+
attributes=pulumi.get(__ret__, 'attributes'),
|
186
|
+
create_time=pulumi.get(__ret__, 'create_time'),
|
187
|
+
description=pulumi.get(__ret__, 'description'),
|
188
|
+
display_name=pulumi.get(__ret__, 'display_name'),
|
189
|
+
id=pulumi.get(__ret__, 'id'),
|
190
|
+
location=pulumi.get(__ret__, 'location'),
|
191
|
+
name=pulumi.get(__ret__, 'name'),
|
192
|
+
project=pulumi.get(__ret__, 'project'),
|
193
|
+
scopes=pulumi.get(__ret__, 'scopes'),
|
194
|
+
state=pulumi.get(__ret__, 'state'),
|
195
|
+
uid=pulumi.get(__ret__, 'uid'),
|
196
|
+
update_time=pulumi.get(__ret__, 'update_time'))
|
197
|
+
|
198
|
+
|
199
|
+
@_utilities.lift_output_func(get_application)
|
200
|
+
def get_application_output(application_id: Optional[pulumi.Input[str]] = None,
|
201
|
+
location: Optional[pulumi.Input[str]] = None,
|
202
|
+
project: Optional[pulumi.Input[str]] = None,
|
203
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetApplicationResult]:
|
204
|
+
"""
|
205
|
+
Application is a functional grouping of Services and Workloads that helps achieve a desired end-to-end business functionality. Services and Workloads are owned by the Application.
|
206
|
+
|
207
|
+
## Example Usage
|
208
|
+
|
209
|
+
<!--Start PulumiCodeChooser -->
|
210
|
+
```python
|
211
|
+
import pulumi
|
212
|
+
import pulumi_gcp as gcp
|
213
|
+
|
214
|
+
application = gcp.apphub.get_application(project="project-id",
|
215
|
+
application_id="application",
|
216
|
+
location="location")
|
217
|
+
```
|
218
|
+
<!--End PulumiCodeChooser -->
|
219
|
+
"""
|
220
|
+
...
|
pulumi_gcp/apphub/outputs.py
CHANGED
@@ -34,6 +34,13 @@ __all__ = [
|
|
34
34
|
'WorkloadAttributesOperatorOwner',
|
35
35
|
'WorkloadWorkloadProperty',
|
36
36
|
'WorkloadWorkloadReference',
|
37
|
+
'GetApplicationAttributeResult',
|
38
|
+
'GetApplicationAttributeBusinessOwnerResult',
|
39
|
+
'GetApplicationAttributeCriticalityResult',
|
40
|
+
'GetApplicationAttributeDeveloperOwnerResult',
|
41
|
+
'GetApplicationAttributeEnvironmentResult',
|
42
|
+
'GetApplicationAttributeOperatorOwnerResult',
|
43
|
+
'GetApplicationScopeResult',
|
37
44
|
'GetDiscoveredServiceServicePropertyResult',
|
38
45
|
'GetDiscoveredServiceServiceReferenceResult',
|
39
46
|
'GetDiscoveredWorkloadWorkloadPropertyResult',
|
@@ -1077,6 +1084,213 @@ class WorkloadWorkloadReference(dict):
|
|
1077
1084
|
return pulumi.get(self, "uri")
|
1078
1085
|
|
1079
1086
|
|
1087
|
+
@pulumi.output_type
|
1088
|
+
class GetApplicationAttributeResult(dict):
|
1089
|
+
def __init__(__self__, *,
|
1090
|
+
business_owners: Sequence['outputs.GetApplicationAttributeBusinessOwnerResult'],
|
1091
|
+
criticalities: Sequence['outputs.GetApplicationAttributeCriticalityResult'],
|
1092
|
+
developer_owners: Sequence['outputs.GetApplicationAttributeDeveloperOwnerResult'],
|
1093
|
+
environments: Sequence['outputs.GetApplicationAttributeEnvironmentResult'],
|
1094
|
+
operator_owners: Sequence['outputs.GetApplicationAttributeOperatorOwnerResult']):
|
1095
|
+
"""
|
1096
|
+
:param Sequence['GetApplicationAttributeBusinessOwnerArgs'] business_owners: Optional. Business team that ensures user needs are met and value is delivered
|
1097
|
+
:param Sequence['GetApplicationAttributeCriticalityArgs'] criticalities: Criticality of the Application, Service, or Workload
|
1098
|
+
:param Sequence['GetApplicationAttributeDeveloperOwnerArgs'] developer_owners: Optional. Developer team that owns development and coding.
|
1099
|
+
:param Sequence['GetApplicationAttributeEnvironmentArgs'] environments: Environment of the Application, Service, or Workload
|
1100
|
+
:param Sequence['GetApplicationAttributeOperatorOwnerArgs'] operator_owners: Optional. Operator team that ensures runtime and operations.
|
1101
|
+
"""
|
1102
|
+
pulumi.set(__self__, "business_owners", business_owners)
|
1103
|
+
pulumi.set(__self__, "criticalities", criticalities)
|
1104
|
+
pulumi.set(__self__, "developer_owners", developer_owners)
|
1105
|
+
pulumi.set(__self__, "environments", environments)
|
1106
|
+
pulumi.set(__self__, "operator_owners", operator_owners)
|
1107
|
+
|
1108
|
+
@property
|
1109
|
+
@pulumi.getter(name="businessOwners")
|
1110
|
+
def business_owners(self) -> Sequence['outputs.GetApplicationAttributeBusinessOwnerResult']:
|
1111
|
+
"""
|
1112
|
+
Optional. Business team that ensures user needs are met and value is delivered
|
1113
|
+
"""
|
1114
|
+
return pulumi.get(self, "business_owners")
|
1115
|
+
|
1116
|
+
@property
|
1117
|
+
@pulumi.getter
|
1118
|
+
def criticalities(self) -> Sequence['outputs.GetApplicationAttributeCriticalityResult']:
|
1119
|
+
"""
|
1120
|
+
Criticality of the Application, Service, or Workload
|
1121
|
+
"""
|
1122
|
+
return pulumi.get(self, "criticalities")
|
1123
|
+
|
1124
|
+
@property
|
1125
|
+
@pulumi.getter(name="developerOwners")
|
1126
|
+
def developer_owners(self) -> Sequence['outputs.GetApplicationAttributeDeveloperOwnerResult']:
|
1127
|
+
"""
|
1128
|
+
Optional. Developer team that owns development and coding.
|
1129
|
+
"""
|
1130
|
+
return pulumi.get(self, "developer_owners")
|
1131
|
+
|
1132
|
+
@property
|
1133
|
+
@pulumi.getter
|
1134
|
+
def environments(self) -> Sequence['outputs.GetApplicationAttributeEnvironmentResult']:
|
1135
|
+
"""
|
1136
|
+
Environment of the Application, Service, or Workload
|
1137
|
+
"""
|
1138
|
+
return pulumi.get(self, "environments")
|
1139
|
+
|
1140
|
+
@property
|
1141
|
+
@pulumi.getter(name="operatorOwners")
|
1142
|
+
def operator_owners(self) -> Sequence['outputs.GetApplicationAttributeOperatorOwnerResult']:
|
1143
|
+
"""
|
1144
|
+
Optional. Operator team that ensures runtime and operations.
|
1145
|
+
"""
|
1146
|
+
return pulumi.get(self, "operator_owners")
|
1147
|
+
|
1148
|
+
|
1149
|
+
@pulumi.output_type
|
1150
|
+
class GetApplicationAttributeBusinessOwnerResult(dict):
|
1151
|
+
def __init__(__self__, *,
|
1152
|
+
display_name: str,
|
1153
|
+
email: str):
|
1154
|
+
"""
|
1155
|
+
:param str display_name: Optional. Contact's name.
|
1156
|
+
:param str email: Required. Email address of the contacts.
|
1157
|
+
"""
|
1158
|
+
pulumi.set(__self__, "display_name", display_name)
|
1159
|
+
pulumi.set(__self__, "email", email)
|
1160
|
+
|
1161
|
+
@property
|
1162
|
+
@pulumi.getter(name="displayName")
|
1163
|
+
def display_name(self) -> str:
|
1164
|
+
"""
|
1165
|
+
Optional. Contact's name.
|
1166
|
+
"""
|
1167
|
+
return pulumi.get(self, "display_name")
|
1168
|
+
|
1169
|
+
@property
|
1170
|
+
@pulumi.getter
|
1171
|
+
def email(self) -> str:
|
1172
|
+
"""
|
1173
|
+
Required. Email address of the contacts.
|
1174
|
+
"""
|
1175
|
+
return pulumi.get(self, "email")
|
1176
|
+
|
1177
|
+
|
1178
|
+
@pulumi.output_type
|
1179
|
+
class GetApplicationAttributeCriticalityResult(dict):
|
1180
|
+
def __init__(__self__, *,
|
1181
|
+
type: str):
|
1182
|
+
"""
|
1183
|
+
:param str type: Criticality type. Possible values: ["MISSION_CRITICAL", "HIGH", "MEDIUM", "LOW"]
|
1184
|
+
"""
|
1185
|
+
pulumi.set(__self__, "type", type)
|
1186
|
+
|
1187
|
+
@property
|
1188
|
+
@pulumi.getter
|
1189
|
+
def type(self) -> str:
|
1190
|
+
"""
|
1191
|
+
Criticality type. Possible values: ["MISSION_CRITICAL", "HIGH", "MEDIUM", "LOW"]
|
1192
|
+
"""
|
1193
|
+
return pulumi.get(self, "type")
|
1194
|
+
|
1195
|
+
|
1196
|
+
@pulumi.output_type
|
1197
|
+
class GetApplicationAttributeDeveloperOwnerResult(dict):
|
1198
|
+
def __init__(__self__, *,
|
1199
|
+
display_name: str,
|
1200
|
+
email: str):
|
1201
|
+
"""
|
1202
|
+
:param str display_name: Optional. Contact's name.
|
1203
|
+
:param str email: Required. Email address of the contacts.
|
1204
|
+
"""
|
1205
|
+
pulumi.set(__self__, "display_name", display_name)
|
1206
|
+
pulumi.set(__self__, "email", email)
|
1207
|
+
|
1208
|
+
@property
|
1209
|
+
@pulumi.getter(name="displayName")
|
1210
|
+
def display_name(self) -> str:
|
1211
|
+
"""
|
1212
|
+
Optional. Contact's name.
|
1213
|
+
"""
|
1214
|
+
return pulumi.get(self, "display_name")
|
1215
|
+
|
1216
|
+
@property
|
1217
|
+
@pulumi.getter
|
1218
|
+
def email(self) -> str:
|
1219
|
+
"""
|
1220
|
+
Required. Email address of the contacts.
|
1221
|
+
"""
|
1222
|
+
return pulumi.get(self, "email")
|
1223
|
+
|
1224
|
+
|
1225
|
+
@pulumi.output_type
|
1226
|
+
class GetApplicationAttributeEnvironmentResult(dict):
|
1227
|
+
def __init__(__self__, *,
|
1228
|
+
type: str):
|
1229
|
+
"""
|
1230
|
+
:param str type: Environment type. Possible values: ["PRODUCTION", "STAGING", "TEST", "DEVELOPMENT"]
|
1231
|
+
"""
|
1232
|
+
pulumi.set(__self__, "type", type)
|
1233
|
+
|
1234
|
+
@property
|
1235
|
+
@pulumi.getter
|
1236
|
+
def type(self) -> str:
|
1237
|
+
"""
|
1238
|
+
Environment type. Possible values: ["PRODUCTION", "STAGING", "TEST", "DEVELOPMENT"]
|
1239
|
+
"""
|
1240
|
+
return pulumi.get(self, "type")
|
1241
|
+
|
1242
|
+
|
1243
|
+
@pulumi.output_type
|
1244
|
+
class GetApplicationAttributeOperatorOwnerResult(dict):
|
1245
|
+
def __init__(__self__, *,
|
1246
|
+
display_name: str,
|
1247
|
+
email: str):
|
1248
|
+
"""
|
1249
|
+
:param str display_name: Optional. Contact's name.
|
1250
|
+
:param str email: Required. Email address of the contacts.
|
1251
|
+
"""
|
1252
|
+
pulumi.set(__self__, "display_name", display_name)
|
1253
|
+
pulumi.set(__self__, "email", email)
|
1254
|
+
|
1255
|
+
@property
|
1256
|
+
@pulumi.getter(name="displayName")
|
1257
|
+
def display_name(self) -> str:
|
1258
|
+
"""
|
1259
|
+
Optional. Contact's name.
|
1260
|
+
"""
|
1261
|
+
return pulumi.get(self, "display_name")
|
1262
|
+
|
1263
|
+
@property
|
1264
|
+
@pulumi.getter
|
1265
|
+
def email(self) -> str:
|
1266
|
+
"""
|
1267
|
+
Required. Email address of the contacts.
|
1268
|
+
"""
|
1269
|
+
return pulumi.get(self, "email")
|
1270
|
+
|
1271
|
+
|
1272
|
+
@pulumi.output_type
|
1273
|
+
class GetApplicationScopeResult(dict):
|
1274
|
+
def __init__(__self__, *,
|
1275
|
+
type: str):
|
1276
|
+
"""
|
1277
|
+
:param str type: Required. Scope Type.
|
1278
|
+
Possible values:
|
1279
|
+
REGIONAL Possible values: ["REGIONAL"]
|
1280
|
+
"""
|
1281
|
+
pulumi.set(__self__, "type", type)
|
1282
|
+
|
1283
|
+
@property
|
1284
|
+
@pulumi.getter
|
1285
|
+
def type(self) -> str:
|
1286
|
+
"""
|
1287
|
+
Required. Scope Type.
|
1288
|
+
Possible values:
|
1289
|
+
REGIONAL Possible values: ["REGIONAL"]
|
1290
|
+
"""
|
1291
|
+
return pulumi.get(self, "type")
|
1292
|
+
|
1293
|
+
|
1080
1294
|
@pulumi.output_type
|
1081
1295
|
class GetDiscoveredServiceServicePropertyResult(dict):
|
1082
1296
|
def __init__(__self__, *,
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
from .. import _utilities
|
6
|
+
import typing
|
7
|
+
# Export this package's modules as members:
|
8
|
+
from .client import *
|
9
|
+
from ._inputs import *
|
10
|
+
from . import outputs
|
@@ -0,0 +1,119 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import copy
|
6
|
+
import warnings
|
7
|
+
import pulumi
|
8
|
+
import pulumi.runtime
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
10
|
+
from .. import _utilities
|
11
|
+
|
12
|
+
__all__ = [
|
13
|
+
'ClientCloudKmsConfigArgs',
|
14
|
+
]
|
15
|
+
|
16
|
+
@pulumi.input_type
|
17
|
+
class ClientCloudKmsConfigArgs:
|
18
|
+
def __init__(__self__, *,
|
19
|
+
key: pulumi.Input[str],
|
20
|
+
kms_location: pulumi.Input[str],
|
21
|
+
kms_ring: pulumi.Input[str],
|
22
|
+
key_version: Optional[pulumi.Input[str]] = None,
|
23
|
+
kms_project_id: Optional[pulumi.Input[str]] = None):
|
24
|
+
"""
|
25
|
+
:param pulumi.Input[str] key: A Cloud KMS key is a named object containing one or more key versions, along
|
26
|
+
with metadata for the key. A key exists on exactly one key ring tied to a
|
27
|
+
specific location.
|
28
|
+
:param pulumi.Input[str] kms_location: Location name of the key ring, e.g. "us-west1".
|
29
|
+
:param pulumi.Input[str] kms_ring: A key ring organizes keys in a specific Google Cloud location and allows you to
|
30
|
+
manage access control on groups of keys. A key ring's name does not need to be
|
31
|
+
unique across a Google Cloud project, but must be unique within a given location.
|
32
|
+
:param pulumi.Input[str] key_version: Each version of a key contains key material used for encryption or signing.
|
33
|
+
A key's version is represented by an integer, starting at 1. To decrypt data
|
34
|
+
or verify a signature, you must use the same key version that was used to
|
35
|
+
encrypt or sign the data.
|
36
|
+
:param pulumi.Input[str] kms_project_id: The Google Cloud project id of the project where the kms key stored. If empty,
|
37
|
+
the kms key is stored at the same project as customer's project and ecrypted
|
38
|
+
with CMEK, otherwise, the kms key is stored in the tenant project and
|
39
|
+
encrypted with GMEK.
|
40
|
+
"""
|
41
|
+
pulumi.set(__self__, "key", key)
|
42
|
+
pulumi.set(__self__, "kms_location", kms_location)
|
43
|
+
pulumi.set(__self__, "kms_ring", kms_ring)
|
44
|
+
if key_version is not None:
|
45
|
+
pulumi.set(__self__, "key_version", key_version)
|
46
|
+
if kms_project_id is not None:
|
47
|
+
pulumi.set(__self__, "kms_project_id", kms_project_id)
|
48
|
+
|
49
|
+
@property
|
50
|
+
@pulumi.getter
|
51
|
+
def key(self) -> pulumi.Input[str]:
|
52
|
+
"""
|
53
|
+
A Cloud KMS key is a named object containing one or more key versions, along
|
54
|
+
with metadata for the key. A key exists on exactly one key ring tied to a
|
55
|
+
specific location.
|
56
|
+
"""
|
57
|
+
return pulumi.get(self, "key")
|
58
|
+
|
59
|
+
@key.setter
|
60
|
+
def key(self, value: pulumi.Input[str]):
|
61
|
+
pulumi.set(self, "key", value)
|
62
|
+
|
63
|
+
@property
|
64
|
+
@pulumi.getter(name="kmsLocation")
|
65
|
+
def kms_location(self) -> pulumi.Input[str]:
|
66
|
+
"""
|
67
|
+
Location name of the key ring, e.g. "us-west1".
|
68
|
+
"""
|
69
|
+
return pulumi.get(self, "kms_location")
|
70
|
+
|
71
|
+
@kms_location.setter
|
72
|
+
def kms_location(self, value: pulumi.Input[str]):
|
73
|
+
pulumi.set(self, "kms_location", value)
|
74
|
+
|
75
|
+
@property
|
76
|
+
@pulumi.getter(name="kmsRing")
|
77
|
+
def kms_ring(self) -> pulumi.Input[str]:
|
78
|
+
"""
|
79
|
+
A key ring organizes keys in a specific Google Cloud location and allows you to
|
80
|
+
manage access control on groups of keys. A key ring's name does not need to be
|
81
|
+
unique across a Google Cloud project, but must be unique within a given location.
|
82
|
+
"""
|
83
|
+
return pulumi.get(self, "kms_ring")
|
84
|
+
|
85
|
+
@kms_ring.setter
|
86
|
+
def kms_ring(self, value: pulumi.Input[str]):
|
87
|
+
pulumi.set(self, "kms_ring", value)
|
88
|
+
|
89
|
+
@property
|
90
|
+
@pulumi.getter(name="keyVersion")
|
91
|
+
def key_version(self) -> Optional[pulumi.Input[str]]:
|
92
|
+
"""
|
93
|
+
Each version of a key contains key material used for encryption or signing.
|
94
|
+
A key's version is represented by an integer, starting at 1. To decrypt data
|
95
|
+
or verify a signature, you must use the same key version that was used to
|
96
|
+
encrypt or sign the data.
|
97
|
+
"""
|
98
|
+
return pulumi.get(self, "key_version")
|
99
|
+
|
100
|
+
@key_version.setter
|
101
|
+
def key_version(self, value: Optional[pulumi.Input[str]]):
|
102
|
+
pulumi.set(self, "key_version", value)
|
103
|
+
|
104
|
+
@property
|
105
|
+
@pulumi.getter(name="kmsProjectId")
|
106
|
+
def kms_project_id(self) -> Optional[pulumi.Input[str]]:
|
107
|
+
"""
|
108
|
+
The Google Cloud project id of the project where the kms key stored. If empty,
|
109
|
+
the kms key is stored at the same project as customer's project and ecrypted
|
110
|
+
with CMEK, otherwise, the kms key is stored in the tenant project and
|
111
|
+
encrypted with GMEK.
|
112
|
+
"""
|
113
|
+
return pulumi.get(self, "kms_project_id")
|
114
|
+
|
115
|
+
@kms_project_id.setter
|
116
|
+
def kms_project_id(self, value: Optional[pulumi.Input[str]]):
|
117
|
+
pulumi.set(self, "kms_project_id", value)
|
118
|
+
|
119
|
+
|