pulumi-gcp 7.15.0a1711038061__py3-none-any.whl → 7.16.0__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 +102 -0
- pulumi_gcp/accesscontextmanager/__init__.py +1 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +74 -58
- pulumi_gcp/accesscontextmanager/outputs.py +74 -58
- pulumi_gcp/accesscontextmanager/service_perimeter.py +0 -2
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_resource.py +345 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_egress_policy.py +80 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_ingress_policy.py +86 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_resource.py +4 -2
- pulumi_gcp/apphub/__init__.py +15 -0
- pulumi_gcp/apphub/_inputs.py +1016 -0
- pulumi_gcp/apphub/application.py +775 -0
- pulumi_gcp/apphub/get_discovered_service.py +180 -0
- pulumi_gcp/apphub/get_discovered_workload.py +180 -0
- pulumi_gcp/apphub/outputs.py +1206 -0
- pulumi_gcp/apphub/service.py +1121 -0
- pulumi_gcp/apphub/service_project_attachment.py +516 -0
- pulumi_gcp/apphub/workload.py +1197 -0
- pulumi_gcp/cloudquota/__init__.py +10 -0
- pulumi_gcp/cloudquota/get_s_quota_info.py +322 -0
- pulumi_gcp/cloudquota/get_s_quota_infos.py +136 -0
- pulumi_gcp/cloudquota/outputs.py +375 -0
- pulumi_gcp/cloudrunv2/_inputs.py +85 -4
- pulumi_gcp/cloudrunv2/get_service.py +11 -1
- pulumi_gcp/cloudrunv2/outputs.py +165 -6
- pulumi_gcp/cloudrunv2/service.py +60 -6
- pulumi_gcp/composer/_inputs.py +16 -0
- pulumi_gcp/composer/outputs.py +23 -0
- pulumi_gcp/compute/_inputs.py +109 -11
- pulumi_gcp/compute/outputs.py +144 -13
- pulumi_gcp/compute/region_network_endpoint_group.py +30 -0
- pulumi_gcp/compute/region_url_map.py +152 -0
- pulumi_gcp/config/__init__.pyi +4 -0
- pulumi_gcp/config/vars.py +8 -0
- pulumi_gcp/dataform/repository.py +4 -74
- pulumi_gcp/firebase/__init__.py +1 -0
- pulumi_gcp/firebase/android_app.py +41 -40
- pulumi_gcp/firebase/app_check_device_check_config.py +572 -0
- pulumi_gcp/firestore/_inputs.py +69 -0
- pulumi_gcp/firestore/database.py +206 -0
- pulumi_gcp/firestore/index.py +34 -48
- pulumi_gcp/firestore/outputs.py +80 -0
- pulumi_gcp/gkeonprem/_inputs.py +1 -3
- pulumi_gcp/gkeonprem/outputs.py +1 -3
- pulumi_gcp/gkeonprem/v_mware_cluster.py +2 -0
- pulumi_gcp/iap/__init__.py +5 -0
- pulumi_gcp/iap/_inputs.py +100 -0
- pulumi_gcp/iap/get_tunnel_dest_group_iam_policy.py +172 -0
- pulumi_gcp/iap/outputs.py +76 -0
- pulumi_gcp/iap/tunnel_dest_group.py +524 -0
- pulumi_gcp/iap/tunnel_dest_group_iam_binding.py +858 -0
- pulumi_gcp/iap/tunnel_dest_group_iam_member.py +858 -0
- pulumi_gcp/iap/tunnel_dest_group_iam_policy.py +760 -0
- pulumi_gcp/kms/__init__.py +1 -0
- pulumi_gcp/kms/_inputs.py +246 -0
- pulumi_gcp/kms/ekm_connection.py +610 -0
- pulumi_gcp/kms/outputs.py +242 -0
- pulumi_gcp/monitoring/_inputs.py +2 -0
- pulumi_gcp/monitoring/outputs.py +2 -0
- pulumi_gcp/networksecurity/__init__.py +1 -0
- pulumi_gcp/networksecurity/firewall_endpoint.py +48 -0
- pulumi_gcp/networksecurity/firewall_endpoint_association.py +753 -0
- pulumi_gcp/notebooks/instance.py +8 -0
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/provider.py +40 -0
- pulumi_gcp/pubsub/_inputs.py +108 -0
- pulumi_gcp/pubsub/get_topic.py +11 -1
- pulumi_gcp/pubsub/outputs.py +213 -0
- pulumi_gcp/pubsub/subscription.py +4 -4
- pulumi_gcp/pubsub/topic.py +92 -0
- pulumi_gcp/securityposture/posture.py +2 -2
- pulumi_gcp/securityposture/posture_deployment.py +2 -2
- pulumi_gcp/storage/_inputs.py +72 -15
- pulumi_gcp/storage/bucket.py +54 -0
- pulumi_gcp/storage/get_bucket.py +11 -1
- pulumi_gcp/storage/outputs.py +110 -14
- pulumi_gcp/workstations/_inputs.py +247 -4
- pulumi_gcp/workstations/outputs.py +261 -5
- pulumi_gcp/workstations/workstation_config.py +160 -0
- {pulumi_gcp-7.15.0a1711038061.dist-info → pulumi_gcp-7.16.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.15.0a1711038061.dist-info → pulumi_gcp-7.16.0.dist-info}/RECORD +83 -61
- {pulumi_gcp-7.15.0a1711038061.dist-info → pulumi_gcp-7.16.0.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.15.0a1711038061.dist-info → pulumi_gcp-7.16.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,1206 @@
|
|
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
|
+
'ApplicationAttributes',
|
15
|
+
'ApplicationAttributesBusinessOwner',
|
16
|
+
'ApplicationAttributesCriticality',
|
17
|
+
'ApplicationAttributesDeveloperOwner',
|
18
|
+
'ApplicationAttributesEnvironment',
|
19
|
+
'ApplicationAttributesOperatorOwner',
|
20
|
+
'ApplicationScope',
|
21
|
+
'ServiceAttributes',
|
22
|
+
'ServiceAttributesBusinessOwner',
|
23
|
+
'ServiceAttributesCriticality',
|
24
|
+
'ServiceAttributesDeveloperOwner',
|
25
|
+
'ServiceAttributesEnvironment',
|
26
|
+
'ServiceAttributesOperatorOwner',
|
27
|
+
'ServiceServiceProperty',
|
28
|
+
'ServiceServiceReference',
|
29
|
+
'WorkloadAttributes',
|
30
|
+
'WorkloadAttributesBusinessOwner',
|
31
|
+
'WorkloadAttributesCriticality',
|
32
|
+
'WorkloadAttributesDeveloperOwner',
|
33
|
+
'WorkloadAttributesEnvironment',
|
34
|
+
'WorkloadAttributesOperatorOwner',
|
35
|
+
'WorkloadWorkloadProperty',
|
36
|
+
'WorkloadWorkloadReference',
|
37
|
+
'GetDiscoveredServiceServicePropertyResult',
|
38
|
+
'GetDiscoveredServiceServiceReferenceResult',
|
39
|
+
'GetDiscoveredWorkloadWorkloadPropertyResult',
|
40
|
+
'GetDiscoveredWorkloadWorkloadReferenceResult',
|
41
|
+
]
|
42
|
+
|
43
|
+
@pulumi.output_type
|
44
|
+
class ApplicationAttributes(dict):
|
45
|
+
@staticmethod
|
46
|
+
def __key_warning(key: str):
|
47
|
+
suggest = None
|
48
|
+
if key == "businessOwners":
|
49
|
+
suggest = "business_owners"
|
50
|
+
elif key == "developerOwners":
|
51
|
+
suggest = "developer_owners"
|
52
|
+
elif key == "operatorOwners":
|
53
|
+
suggest = "operator_owners"
|
54
|
+
|
55
|
+
if suggest:
|
56
|
+
pulumi.log.warn(f"Key '{key}' not found in ApplicationAttributes. Access the value via the '{suggest}' property getter instead.")
|
57
|
+
|
58
|
+
def __getitem__(self, key: str) -> Any:
|
59
|
+
ApplicationAttributes.__key_warning(key)
|
60
|
+
return super().__getitem__(key)
|
61
|
+
|
62
|
+
def get(self, key: str, default = None) -> Any:
|
63
|
+
ApplicationAttributes.__key_warning(key)
|
64
|
+
return super().get(key, default)
|
65
|
+
|
66
|
+
def __init__(__self__, *,
|
67
|
+
business_owners: Optional[Sequence['outputs.ApplicationAttributesBusinessOwner']] = None,
|
68
|
+
criticality: Optional['outputs.ApplicationAttributesCriticality'] = None,
|
69
|
+
developer_owners: Optional[Sequence['outputs.ApplicationAttributesDeveloperOwner']] = None,
|
70
|
+
environment: Optional['outputs.ApplicationAttributesEnvironment'] = None,
|
71
|
+
operator_owners: Optional[Sequence['outputs.ApplicationAttributesOperatorOwner']] = None):
|
72
|
+
"""
|
73
|
+
:param Sequence['ApplicationAttributesBusinessOwnerArgs'] business_owners: Optional. Business team that ensures user needs are met and value is delivered
|
74
|
+
Structure is documented below.
|
75
|
+
:param 'ApplicationAttributesCriticalityArgs' criticality: Criticality of the Application, Service, or Workload
|
76
|
+
Structure is documented below.
|
77
|
+
:param Sequence['ApplicationAttributesDeveloperOwnerArgs'] developer_owners: Optional. Developer team that owns development and coding.
|
78
|
+
Structure is documented below.
|
79
|
+
:param 'ApplicationAttributesEnvironmentArgs' environment: Environment of the Application, Service, or Workload
|
80
|
+
Structure is documented below.
|
81
|
+
:param Sequence['ApplicationAttributesOperatorOwnerArgs'] operator_owners: Optional. Operator team that ensures runtime and operations.
|
82
|
+
Structure is documented below.
|
83
|
+
"""
|
84
|
+
if business_owners is not None:
|
85
|
+
pulumi.set(__self__, "business_owners", business_owners)
|
86
|
+
if criticality is not None:
|
87
|
+
pulumi.set(__self__, "criticality", criticality)
|
88
|
+
if developer_owners is not None:
|
89
|
+
pulumi.set(__self__, "developer_owners", developer_owners)
|
90
|
+
if environment is not None:
|
91
|
+
pulumi.set(__self__, "environment", environment)
|
92
|
+
if operator_owners is not None:
|
93
|
+
pulumi.set(__self__, "operator_owners", operator_owners)
|
94
|
+
|
95
|
+
@property
|
96
|
+
@pulumi.getter(name="businessOwners")
|
97
|
+
def business_owners(self) -> Optional[Sequence['outputs.ApplicationAttributesBusinessOwner']]:
|
98
|
+
"""
|
99
|
+
Optional. Business team that ensures user needs are met and value is delivered
|
100
|
+
Structure is documented below.
|
101
|
+
"""
|
102
|
+
return pulumi.get(self, "business_owners")
|
103
|
+
|
104
|
+
@property
|
105
|
+
@pulumi.getter
|
106
|
+
def criticality(self) -> Optional['outputs.ApplicationAttributesCriticality']:
|
107
|
+
"""
|
108
|
+
Criticality of the Application, Service, or Workload
|
109
|
+
Structure is documented below.
|
110
|
+
"""
|
111
|
+
return pulumi.get(self, "criticality")
|
112
|
+
|
113
|
+
@property
|
114
|
+
@pulumi.getter(name="developerOwners")
|
115
|
+
def developer_owners(self) -> Optional[Sequence['outputs.ApplicationAttributesDeveloperOwner']]:
|
116
|
+
"""
|
117
|
+
Optional. Developer team that owns development and coding.
|
118
|
+
Structure is documented below.
|
119
|
+
"""
|
120
|
+
return pulumi.get(self, "developer_owners")
|
121
|
+
|
122
|
+
@property
|
123
|
+
@pulumi.getter
|
124
|
+
def environment(self) -> Optional['outputs.ApplicationAttributesEnvironment']:
|
125
|
+
"""
|
126
|
+
Environment of the Application, Service, or Workload
|
127
|
+
Structure is documented below.
|
128
|
+
"""
|
129
|
+
return pulumi.get(self, "environment")
|
130
|
+
|
131
|
+
@property
|
132
|
+
@pulumi.getter(name="operatorOwners")
|
133
|
+
def operator_owners(self) -> Optional[Sequence['outputs.ApplicationAttributesOperatorOwner']]:
|
134
|
+
"""
|
135
|
+
Optional. Operator team that ensures runtime and operations.
|
136
|
+
Structure is documented below.
|
137
|
+
"""
|
138
|
+
return pulumi.get(self, "operator_owners")
|
139
|
+
|
140
|
+
|
141
|
+
@pulumi.output_type
|
142
|
+
class ApplicationAttributesBusinessOwner(dict):
|
143
|
+
@staticmethod
|
144
|
+
def __key_warning(key: str):
|
145
|
+
suggest = None
|
146
|
+
if key == "displayName":
|
147
|
+
suggest = "display_name"
|
148
|
+
|
149
|
+
if suggest:
|
150
|
+
pulumi.log.warn(f"Key '{key}' not found in ApplicationAttributesBusinessOwner. Access the value via the '{suggest}' property getter instead.")
|
151
|
+
|
152
|
+
def __getitem__(self, key: str) -> Any:
|
153
|
+
ApplicationAttributesBusinessOwner.__key_warning(key)
|
154
|
+
return super().__getitem__(key)
|
155
|
+
|
156
|
+
def get(self, key: str, default = None) -> Any:
|
157
|
+
ApplicationAttributesBusinessOwner.__key_warning(key)
|
158
|
+
return super().get(key, default)
|
159
|
+
|
160
|
+
def __init__(__self__, *,
|
161
|
+
email: str,
|
162
|
+
display_name: Optional[str] = None):
|
163
|
+
"""
|
164
|
+
:param str email: Required. Email address of the contacts.
|
165
|
+
:param str display_name: Optional. Contact's name.
|
166
|
+
"""
|
167
|
+
pulumi.set(__self__, "email", email)
|
168
|
+
if display_name is not None:
|
169
|
+
pulumi.set(__self__, "display_name", display_name)
|
170
|
+
|
171
|
+
@property
|
172
|
+
@pulumi.getter
|
173
|
+
def email(self) -> str:
|
174
|
+
"""
|
175
|
+
Required. Email address of the contacts.
|
176
|
+
"""
|
177
|
+
return pulumi.get(self, "email")
|
178
|
+
|
179
|
+
@property
|
180
|
+
@pulumi.getter(name="displayName")
|
181
|
+
def display_name(self) -> Optional[str]:
|
182
|
+
"""
|
183
|
+
Optional. Contact's name.
|
184
|
+
"""
|
185
|
+
return pulumi.get(self, "display_name")
|
186
|
+
|
187
|
+
|
188
|
+
@pulumi.output_type
|
189
|
+
class ApplicationAttributesCriticality(dict):
|
190
|
+
def __init__(__self__, *,
|
191
|
+
type: str):
|
192
|
+
"""
|
193
|
+
:param str type: Criticality type.
|
194
|
+
Possible values are: `MISSION_CRITICAL`, `HIGH`, `MEDIUM`, `LOW`.
|
195
|
+
"""
|
196
|
+
pulumi.set(__self__, "type", type)
|
197
|
+
|
198
|
+
@property
|
199
|
+
@pulumi.getter
|
200
|
+
def type(self) -> str:
|
201
|
+
"""
|
202
|
+
Criticality type.
|
203
|
+
Possible values are: `MISSION_CRITICAL`, `HIGH`, `MEDIUM`, `LOW`.
|
204
|
+
"""
|
205
|
+
return pulumi.get(self, "type")
|
206
|
+
|
207
|
+
|
208
|
+
@pulumi.output_type
|
209
|
+
class ApplicationAttributesDeveloperOwner(dict):
|
210
|
+
@staticmethod
|
211
|
+
def __key_warning(key: str):
|
212
|
+
suggest = None
|
213
|
+
if key == "displayName":
|
214
|
+
suggest = "display_name"
|
215
|
+
|
216
|
+
if suggest:
|
217
|
+
pulumi.log.warn(f"Key '{key}' not found in ApplicationAttributesDeveloperOwner. Access the value via the '{suggest}' property getter instead.")
|
218
|
+
|
219
|
+
def __getitem__(self, key: str) -> Any:
|
220
|
+
ApplicationAttributesDeveloperOwner.__key_warning(key)
|
221
|
+
return super().__getitem__(key)
|
222
|
+
|
223
|
+
def get(self, key: str, default = None) -> Any:
|
224
|
+
ApplicationAttributesDeveloperOwner.__key_warning(key)
|
225
|
+
return super().get(key, default)
|
226
|
+
|
227
|
+
def __init__(__self__, *,
|
228
|
+
email: str,
|
229
|
+
display_name: Optional[str] = None):
|
230
|
+
"""
|
231
|
+
:param str email: Required. Email address of the contacts.
|
232
|
+
:param str display_name: Optional. Contact's name.
|
233
|
+
"""
|
234
|
+
pulumi.set(__self__, "email", email)
|
235
|
+
if display_name is not None:
|
236
|
+
pulumi.set(__self__, "display_name", display_name)
|
237
|
+
|
238
|
+
@property
|
239
|
+
@pulumi.getter
|
240
|
+
def email(self) -> str:
|
241
|
+
"""
|
242
|
+
Required. Email address of the contacts.
|
243
|
+
"""
|
244
|
+
return pulumi.get(self, "email")
|
245
|
+
|
246
|
+
@property
|
247
|
+
@pulumi.getter(name="displayName")
|
248
|
+
def display_name(self) -> Optional[str]:
|
249
|
+
"""
|
250
|
+
Optional. Contact's name.
|
251
|
+
"""
|
252
|
+
return pulumi.get(self, "display_name")
|
253
|
+
|
254
|
+
|
255
|
+
@pulumi.output_type
|
256
|
+
class ApplicationAttributesEnvironment(dict):
|
257
|
+
def __init__(__self__, *,
|
258
|
+
type: str):
|
259
|
+
"""
|
260
|
+
:param str type: Environment type.
|
261
|
+
Possible values are: `PRODUCTION`, `STAGING`, `TEST`, `DEVELOPMENT`.
|
262
|
+
"""
|
263
|
+
pulumi.set(__self__, "type", type)
|
264
|
+
|
265
|
+
@property
|
266
|
+
@pulumi.getter
|
267
|
+
def type(self) -> str:
|
268
|
+
"""
|
269
|
+
Environment type.
|
270
|
+
Possible values are: `PRODUCTION`, `STAGING`, `TEST`, `DEVELOPMENT`.
|
271
|
+
"""
|
272
|
+
return pulumi.get(self, "type")
|
273
|
+
|
274
|
+
|
275
|
+
@pulumi.output_type
|
276
|
+
class ApplicationAttributesOperatorOwner(dict):
|
277
|
+
@staticmethod
|
278
|
+
def __key_warning(key: str):
|
279
|
+
suggest = None
|
280
|
+
if key == "displayName":
|
281
|
+
suggest = "display_name"
|
282
|
+
|
283
|
+
if suggest:
|
284
|
+
pulumi.log.warn(f"Key '{key}' not found in ApplicationAttributesOperatorOwner. Access the value via the '{suggest}' property getter instead.")
|
285
|
+
|
286
|
+
def __getitem__(self, key: str) -> Any:
|
287
|
+
ApplicationAttributesOperatorOwner.__key_warning(key)
|
288
|
+
return super().__getitem__(key)
|
289
|
+
|
290
|
+
def get(self, key: str, default = None) -> Any:
|
291
|
+
ApplicationAttributesOperatorOwner.__key_warning(key)
|
292
|
+
return super().get(key, default)
|
293
|
+
|
294
|
+
def __init__(__self__, *,
|
295
|
+
email: str,
|
296
|
+
display_name: Optional[str] = None):
|
297
|
+
"""
|
298
|
+
:param str email: Required. Email address of the contacts.
|
299
|
+
:param str display_name: Optional. Contact's name.
|
300
|
+
"""
|
301
|
+
pulumi.set(__self__, "email", email)
|
302
|
+
if display_name is not None:
|
303
|
+
pulumi.set(__self__, "display_name", display_name)
|
304
|
+
|
305
|
+
@property
|
306
|
+
@pulumi.getter
|
307
|
+
def email(self) -> str:
|
308
|
+
"""
|
309
|
+
Required. Email address of the contacts.
|
310
|
+
"""
|
311
|
+
return pulumi.get(self, "email")
|
312
|
+
|
313
|
+
@property
|
314
|
+
@pulumi.getter(name="displayName")
|
315
|
+
def display_name(self) -> Optional[str]:
|
316
|
+
"""
|
317
|
+
Optional. Contact's name.
|
318
|
+
"""
|
319
|
+
return pulumi.get(self, "display_name")
|
320
|
+
|
321
|
+
|
322
|
+
@pulumi.output_type
|
323
|
+
class ApplicationScope(dict):
|
324
|
+
def __init__(__self__, *,
|
325
|
+
type: str):
|
326
|
+
"""
|
327
|
+
:param str type: Required. Scope Type.
|
328
|
+
Possible values:
|
329
|
+
REGIONAL
|
330
|
+
Possible values are: `REGIONAL`.
|
331
|
+
|
332
|
+
- - -
|
333
|
+
"""
|
334
|
+
pulumi.set(__self__, "type", type)
|
335
|
+
|
336
|
+
@property
|
337
|
+
@pulumi.getter
|
338
|
+
def type(self) -> str:
|
339
|
+
"""
|
340
|
+
Required. Scope Type.
|
341
|
+
Possible values:
|
342
|
+
REGIONAL
|
343
|
+
Possible values are: `REGIONAL`.
|
344
|
+
|
345
|
+
- - -
|
346
|
+
"""
|
347
|
+
return pulumi.get(self, "type")
|
348
|
+
|
349
|
+
|
350
|
+
@pulumi.output_type
|
351
|
+
class ServiceAttributes(dict):
|
352
|
+
@staticmethod
|
353
|
+
def __key_warning(key: str):
|
354
|
+
suggest = None
|
355
|
+
if key == "businessOwners":
|
356
|
+
suggest = "business_owners"
|
357
|
+
elif key == "developerOwners":
|
358
|
+
suggest = "developer_owners"
|
359
|
+
elif key == "operatorOwners":
|
360
|
+
suggest = "operator_owners"
|
361
|
+
|
362
|
+
if suggest:
|
363
|
+
pulumi.log.warn(f"Key '{key}' not found in ServiceAttributes. Access the value via the '{suggest}' property getter instead.")
|
364
|
+
|
365
|
+
def __getitem__(self, key: str) -> Any:
|
366
|
+
ServiceAttributes.__key_warning(key)
|
367
|
+
return super().__getitem__(key)
|
368
|
+
|
369
|
+
def get(self, key: str, default = None) -> Any:
|
370
|
+
ServiceAttributes.__key_warning(key)
|
371
|
+
return super().get(key, default)
|
372
|
+
|
373
|
+
def __init__(__self__, *,
|
374
|
+
business_owners: Optional[Sequence['outputs.ServiceAttributesBusinessOwner']] = None,
|
375
|
+
criticality: Optional['outputs.ServiceAttributesCriticality'] = None,
|
376
|
+
developer_owners: Optional[Sequence['outputs.ServiceAttributesDeveloperOwner']] = None,
|
377
|
+
environment: Optional['outputs.ServiceAttributesEnvironment'] = None,
|
378
|
+
operator_owners: Optional[Sequence['outputs.ServiceAttributesOperatorOwner']] = None):
|
379
|
+
"""
|
380
|
+
:param Sequence['ServiceAttributesBusinessOwnerArgs'] business_owners: Business team that ensures user needs are met and value is delivered
|
381
|
+
Structure is documented below.
|
382
|
+
:param 'ServiceAttributesCriticalityArgs' criticality: Criticality of the Application, Service, or Workload
|
383
|
+
Structure is documented below.
|
384
|
+
:param Sequence['ServiceAttributesDeveloperOwnerArgs'] developer_owners: Developer team that owns development and coding.
|
385
|
+
Structure is documented below.
|
386
|
+
:param 'ServiceAttributesEnvironmentArgs' environment: Environment of the Application, Service, or Workload
|
387
|
+
Structure is documented below.
|
388
|
+
:param Sequence['ServiceAttributesOperatorOwnerArgs'] operator_owners: Operator team that ensures runtime and operations.
|
389
|
+
Structure is documented below.
|
390
|
+
"""
|
391
|
+
if business_owners is not None:
|
392
|
+
pulumi.set(__self__, "business_owners", business_owners)
|
393
|
+
if criticality is not None:
|
394
|
+
pulumi.set(__self__, "criticality", criticality)
|
395
|
+
if developer_owners is not None:
|
396
|
+
pulumi.set(__self__, "developer_owners", developer_owners)
|
397
|
+
if environment is not None:
|
398
|
+
pulumi.set(__self__, "environment", environment)
|
399
|
+
if operator_owners is not None:
|
400
|
+
pulumi.set(__self__, "operator_owners", operator_owners)
|
401
|
+
|
402
|
+
@property
|
403
|
+
@pulumi.getter(name="businessOwners")
|
404
|
+
def business_owners(self) -> Optional[Sequence['outputs.ServiceAttributesBusinessOwner']]:
|
405
|
+
"""
|
406
|
+
Business team that ensures user needs are met and value is delivered
|
407
|
+
Structure is documented below.
|
408
|
+
"""
|
409
|
+
return pulumi.get(self, "business_owners")
|
410
|
+
|
411
|
+
@property
|
412
|
+
@pulumi.getter
|
413
|
+
def criticality(self) -> Optional['outputs.ServiceAttributesCriticality']:
|
414
|
+
"""
|
415
|
+
Criticality of the Application, Service, or Workload
|
416
|
+
Structure is documented below.
|
417
|
+
"""
|
418
|
+
return pulumi.get(self, "criticality")
|
419
|
+
|
420
|
+
@property
|
421
|
+
@pulumi.getter(name="developerOwners")
|
422
|
+
def developer_owners(self) -> Optional[Sequence['outputs.ServiceAttributesDeveloperOwner']]:
|
423
|
+
"""
|
424
|
+
Developer team that owns development and coding.
|
425
|
+
Structure is documented below.
|
426
|
+
"""
|
427
|
+
return pulumi.get(self, "developer_owners")
|
428
|
+
|
429
|
+
@property
|
430
|
+
@pulumi.getter
|
431
|
+
def environment(self) -> Optional['outputs.ServiceAttributesEnvironment']:
|
432
|
+
"""
|
433
|
+
Environment of the Application, Service, or Workload
|
434
|
+
Structure is documented below.
|
435
|
+
"""
|
436
|
+
return pulumi.get(self, "environment")
|
437
|
+
|
438
|
+
@property
|
439
|
+
@pulumi.getter(name="operatorOwners")
|
440
|
+
def operator_owners(self) -> Optional[Sequence['outputs.ServiceAttributesOperatorOwner']]:
|
441
|
+
"""
|
442
|
+
Operator team that ensures runtime and operations.
|
443
|
+
Structure is documented below.
|
444
|
+
"""
|
445
|
+
return pulumi.get(self, "operator_owners")
|
446
|
+
|
447
|
+
|
448
|
+
@pulumi.output_type
|
449
|
+
class ServiceAttributesBusinessOwner(dict):
|
450
|
+
@staticmethod
|
451
|
+
def __key_warning(key: str):
|
452
|
+
suggest = None
|
453
|
+
if key == "displayName":
|
454
|
+
suggest = "display_name"
|
455
|
+
|
456
|
+
if suggest:
|
457
|
+
pulumi.log.warn(f"Key '{key}' not found in ServiceAttributesBusinessOwner. Access the value via the '{suggest}' property getter instead.")
|
458
|
+
|
459
|
+
def __getitem__(self, key: str) -> Any:
|
460
|
+
ServiceAttributesBusinessOwner.__key_warning(key)
|
461
|
+
return super().__getitem__(key)
|
462
|
+
|
463
|
+
def get(self, key: str, default = None) -> Any:
|
464
|
+
ServiceAttributesBusinessOwner.__key_warning(key)
|
465
|
+
return super().get(key, default)
|
466
|
+
|
467
|
+
def __init__(__self__, *,
|
468
|
+
email: str,
|
469
|
+
display_name: Optional[str] = None):
|
470
|
+
"""
|
471
|
+
:param str email: Required. Email address of the contacts.
|
472
|
+
:param str display_name: Contact's name.
|
473
|
+
"""
|
474
|
+
pulumi.set(__self__, "email", email)
|
475
|
+
if display_name is not None:
|
476
|
+
pulumi.set(__self__, "display_name", display_name)
|
477
|
+
|
478
|
+
@property
|
479
|
+
@pulumi.getter
|
480
|
+
def email(self) -> str:
|
481
|
+
"""
|
482
|
+
Required. Email address of the contacts.
|
483
|
+
"""
|
484
|
+
return pulumi.get(self, "email")
|
485
|
+
|
486
|
+
@property
|
487
|
+
@pulumi.getter(name="displayName")
|
488
|
+
def display_name(self) -> Optional[str]:
|
489
|
+
"""
|
490
|
+
Contact's name.
|
491
|
+
"""
|
492
|
+
return pulumi.get(self, "display_name")
|
493
|
+
|
494
|
+
|
495
|
+
@pulumi.output_type
|
496
|
+
class ServiceAttributesCriticality(dict):
|
497
|
+
def __init__(__self__, *,
|
498
|
+
type: str):
|
499
|
+
"""
|
500
|
+
:param str type: Criticality type.
|
501
|
+
Possible values are: `MISSION_CRITICAL`, `HIGH`, `MEDIUM`, `LOW`.
|
502
|
+
"""
|
503
|
+
pulumi.set(__self__, "type", type)
|
504
|
+
|
505
|
+
@property
|
506
|
+
@pulumi.getter
|
507
|
+
def type(self) -> str:
|
508
|
+
"""
|
509
|
+
Criticality type.
|
510
|
+
Possible values are: `MISSION_CRITICAL`, `HIGH`, `MEDIUM`, `LOW`.
|
511
|
+
"""
|
512
|
+
return pulumi.get(self, "type")
|
513
|
+
|
514
|
+
|
515
|
+
@pulumi.output_type
|
516
|
+
class ServiceAttributesDeveloperOwner(dict):
|
517
|
+
@staticmethod
|
518
|
+
def __key_warning(key: str):
|
519
|
+
suggest = None
|
520
|
+
if key == "displayName":
|
521
|
+
suggest = "display_name"
|
522
|
+
|
523
|
+
if suggest:
|
524
|
+
pulumi.log.warn(f"Key '{key}' not found in ServiceAttributesDeveloperOwner. Access the value via the '{suggest}' property getter instead.")
|
525
|
+
|
526
|
+
def __getitem__(self, key: str) -> Any:
|
527
|
+
ServiceAttributesDeveloperOwner.__key_warning(key)
|
528
|
+
return super().__getitem__(key)
|
529
|
+
|
530
|
+
def get(self, key: str, default = None) -> Any:
|
531
|
+
ServiceAttributesDeveloperOwner.__key_warning(key)
|
532
|
+
return super().get(key, default)
|
533
|
+
|
534
|
+
def __init__(__self__, *,
|
535
|
+
email: str,
|
536
|
+
display_name: Optional[str] = None):
|
537
|
+
"""
|
538
|
+
:param str email: Required. Email address of the contacts.
|
539
|
+
:param str display_name: Contact's name.
|
540
|
+
"""
|
541
|
+
pulumi.set(__self__, "email", email)
|
542
|
+
if display_name is not None:
|
543
|
+
pulumi.set(__self__, "display_name", display_name)
|
544
|
+
|
545
|
+
@property
|
546
|
+
@pulumi.getter
|
547
|
+
def email(self) -> str:
|
548
|
+
"""
|
549
|
+
Required. Email address of the contacts.
|
550
|
+
"""
|
551
|
+
return pulumi.get(self, "email")
|
552
|
+
|
553
|
+
@property
|
554
|
+
@pulumi.getter(name="displayName")
|
555
|
+
def display_name(self) -> Optional[str]:
|
556
|
+
"""
|
557
|
+
Contact's name.
|
558
|
+
"""
|
559
|
+
return pulumi.get(self, "display_name")
|
560
|
+
|
561
|
+
|
562
|
+
@pulumi.output_type
|
563
|
+
class ServiceAttributesEnvironment(dict):
|
564
|
+
def __init__(__self__, *,
|
565
|
+
type: str):
|
566
|
+
"""
|
567
|
+
:param str type: Environment type.
|
568
|
+
Possible values are: `PRODUCTION`, `STAGING`, `TEST`, `DEVELOPMENT`.
|
569
|
+
"""
|
570
|
+
pulumi.set(__self__, "type", type)
|
571
|
+
|
572
|
+
@property
|
573
|
+
@pulumi.getter
|
574
|
+
def type(self) -> str:
|
575
|
+
"""
|
576
|
+
Environment type.
|
577
|
+
Possible values are: `PRODUCTION`, `STAGING`, `TEST`, `DEVELOPMENT`.
|
578
|
+
"""
|
579
|
+
return pulumi.get(self, "type")
|
580
|
+
|
581
|
+
|
582
|
+
@pulumi.output_type
|
583
|
+
class ServiceAttributesOperatorOwner(dict):
|
584
|
+
@staticmethod
|
585
|
+
def __key_warning(key: str):
|
586
|
+
suggest = None
|
587
|
+
if key == "displayName":
|
588
|
+
suggest = "display_name"
|
589
|
+
|
590
|
+
if suggest:
|
591
|
+
pulumi.log.warn(f"Key '{key}' not found in ServiceAttributesOperatorOwner. Access the value via the '{suggest}' property getter instead.")
|
592
|
+
|
593
|
+
def __getitem__(self, key: str) -> Any:
|
594
|
+
ServiceAttributesOperatorOwner.__key_warning(key)
|
595
|
+
return super().__getitem__(key)
|
596
|
+
|
597
|
+
def get(self, key: str, default = None) -> Any:
|
598
|
+
ServiceAttributesOperatorOwner.__key_warning(key)
|
599
|
+
return super().get(key, default)
|
600
|
+
|
601
|
+
def __init__(__self__, *,
|
602
|
+
email: str,
|
603
|
+
display_name: Optional[str] = None):
|
604
|
+
"""
|
605
|
+
:param str email: Required. Email address of the contacts.
|
606
|
+
:param str display_name: Contact's name.
|
607
|
+
"""
|
608
|
+
pulumi.set(__self__, "email", email)
|
609
|
+
if display_name is not None:
|
610
|
+
pulumi.set(__self__, "display_name", display_name)
|
611
|
+
|
612
|
+
@property
|
613
|
+
@pulumi.getter
|
614
|
+
def email(self) -> str:
|
615
|
+
"""
|
616
|
+
Required. Email address of the contacts.
|
617
|
+
"""
|
618
|
+
return pulumi.get(self, "email")
|
619
|
+
|
620
|
+
@property
|
621
|
+
@pulumi.getter(name="displayName")
|
622
|
+
def display_name(self) -> Optional[str]:
|
623
|
+
"""
|
624
|
+
Contact's name.
|
625
|
+
"""
|
626
|
+
return pulumi.get(self, "display_name")
|
627
|
+
|
628
|
+
|
629
|
+
@pulumi.output_type
|
630
|
+
class ServiceServiceProperty(dict):
|
631
|
+
@staticmethod
|
632
|
+
def __key_warning(key: str):
|
633
|
+
suggest = None
|
634
|
+
if key == "gcpProject":
|
635
|
+
suggest = "gcp_project"
|
636
|
+
|
637
|
+
if suggest:
|
638
|
+
pulumi.log.warn(f"Key '{key}' not found in ServiceServiceProperty. Access the value via the '{suggest}' property getter instead.")
|
639
|
+
|
640
|
+
def __getitem__(self, key: str) -> Any:
|
641
|
+
ServiceServiceProperty.__key_warning(key)
|
642
|
+
return super().__getitem__(key)
|
643
|
+
|
644
|
+
def get(self, key: str, default = None) -> Any:
|
645
|
+
ServiceServiceProperty.__key_warning(key)
|
646
|
+
return super().get(key, default)
|
647
|
+
|
648
|
+
def __init__(__self__, *,
|
649
|
+
gcp_project: Optional[str] = None,
|
650
|
+
location: Optional[str] = None,
|
651
|
+
zone: Optional[str] = None):
|
652
|
+
"""
|
653
|
+
:param str gcp_project: (Output)
|
654
|
+
Output only. The service project identifier that the underlying cloud resource resides in.
|
655
|
+
:param str location: Part of `parent`. Full resource name of a parent Application. Example: projects/{HOST_PROJECT_ID}/locations/{LOCATION}/applications/{APPLICATION_ID}
|
656
|
+
:param str zone: (Output)
|
657
|
+
Output only. The location that the underlying resource resides in if it is zonal, for example, us-west1-a).
|
658
|
+
"""
|
659
|
+
if gcp_project is not None:
|
660
|
+
pulumi.set(__self__, "gcp_project", gcp_project)
|
661
|
+
if location is not None:
|
662
|
+
pulumi.set(__self__, "location", location)
|
663
|
+
if zone is not None:
|
664
|
+
pulumi.set(__self__, "zone", zone)
|
665
|
+
|
666
|
+
@property
|
667
|
+
@pulumi.getter(name="gcpProject")
|
668
|
+
def gcp_project(self) -> Optional[str]:
|
669
|
+
"""
|
670
|
+
(Output)
|
671
|
+
Output only. The service project identifier that the underlying cloud resource resides in.
|
672
|
+
"""
|
673
|
+
return pulumi.get(self, "gcp_project")
|
674
|
+
|
675
|
+
@property
|
676
|
+
@pulumi.getter
|
677
|
+
def location(self) -> Optional[str]:
|
678
|
+
"""
|
679
|
+
Part of `parent`. Full resource name of a parent Application. Example: projects/{HOST_PROJECT_ID}/locations/{LOCATION}/applications/{APPLICATION_ID}
|
680
|
+
"""
|
681
|
+
return pulumi.get(self, "location")
|
682
|
+
|
683
|
+
@property
|
684
|
+
@pulumi.getter
|
685
|
+
def zone(self) -> Optional[str]:
|
686
|
+
"""
|
687
|
+
(Output)
|
688
|
+
Output only. The location that the underlying resource resides in if it is zonal, for example, us-west1-a).
|
689
|
+
"""
|
690
|
+
return pulumi.get(self, "zone")
|
691
|
+
|
692
|
+
|
693
|
+
@pulumi.output_type
|
694
|
+
class ServiceServiceReference(dict):
|
695
|
+
def __init__(__self__, *,
|
696
|
+
uri: Optional[str] = None):
|
697
|
+
"""
|
698
|
+
:param str uri: (Output)
|
699
|
+
Output only. The underlying resource URI (For example, URI of Forwarding Rule, URL Map,
|
700
|
+
and Backend Service).
|
701
|
+
"""
|
702
|
+
if uri is not None:
|
703
|
+
pulumi.set(__self__, "uri", uri)
|
704
|
+
|
705
|
+
@property
|
706
|
+
@pulumi.getter
|
707
|
+
def uri(self) -> Optional[str]:
|
708
|
+
"""
|
709
|
+
(Output)
|
710
|
+
Output only. The underlying resource URI (For example, URI of Forwarding Rule, URL Map,
|
711
|
+
and Backend Service).
|
712
|
+
"""
|
713
|
+
return pulumi.get(self, "uri")
|
714
|
+
|
715
|
+
|
716
|
+
@pulumi.output_type
|
717
|
+
class WorkloadAttributes(dict):
|
718
|
+
@staticmethod
|
719
|
+
def __key_warning(key: str):
|
720
|
+
suggest = None
|
721
|
+
if key == "businessOwners":
|
722
|
+
suggest = "business_owners"
|
723
|
+
elif key == "developerOwners":
|
724
|
+
suggest = "developer_owners"
|
725
|
+
elif key == "operatorOwners":
|
726
|
+
suggest = "operator_owners"
|
727
|
+
|
728
|
+
if suggest:
|
729
|
+
pulumi.log.warn(f"Key '{key}' not found in WorkloadAttributes. Access the value via the '{suggest}' property getter instead.")
|
730
|
+
|
731
|
+
def __getitem__(self, key: str) -> Any:
|
732
|
+
WorkloadAttributes.__key_warning(key)
|
733
|
+
return super().__getitem__(key)
|
734
|
+
|
735
|
+
def get(self, key: str, default = None) -> Any:
|
736
|
+
WorkloadAttributes.__key_warning(key)
|
737
|
+
return super().get(key, default)
|
738
|
+
|
739
|
+
def __init__(__self__, *,
|
740
|
+
business_owners: Optional[Sequence['outputs.WorkloadAttributesBusinessOwner']] = None,
|
741
|
+
criticality: Optional['outputs.WorkloadAttributesCriticality'] = None,
|
742
|
+
developer_owners: Optional[Sequence['outputs.WorkloadAttributesDeveloperOwner']] = None,
|
743
|
+
environment: Optional['outputs.WorkloadAttributesEnvironment'] = None,
|
744
|
+
operator_owners: Optional[Sequence['outputs.WorkloadAttributesOperatorOwner']] = None):
|
745
|
+
"""
|
746
|
+
:param Sequence['WorkloadAttributesBusinessOwnerArgs'] business_owners: Business team that ensures user needs are met and value is delivered
|
747
|
+
Structure is documented below.
|
748
|
+
:param 'WorkloadAttributesCriticalityArgs' criticality: Criticality of the Application, Service, or Workload
|
749
|
+
Structure is documented below.
|
750
|
+
:param Sequence['WorkloadAttributesDeveloperOwnerArgs'] developer_owners: Developer team that owns development and coding.
|
751
|
+
Structure is documented below.
|
752
|
+
:param 'WorkloadAttributesEnvironmentArgs' environment: Environment of the Application, Service, or Workload
|
753
|
+
Structure is documented below.
|
754
|
+
:param Sequence['WorkloadAttributesOperatorOwnerArgs'] operator_owners: Operator team that ensures runtime and operations.
|
755
|
+
Structure is documented below.
|
756
|
+
"""
|
757
|
+
if business_owners is not None:
|
758
|
+
pulumi.set(__self__, "business_owners", business_owners)
|
759
|
+
if criticality is not None:
|
760
|
+
pulumi.set(__self__, "criticality", criticality)
|
761
|
+
if developer_owners is not None:
|
762
|
+
pulumi.set(__self__, "developer_owners", developer_owners)
|
763
|
+
if environment is not None:
|
764
|
+
pulumi.set(__self__, "environment", environment)
|
765
|
+
if operator_owners is not None:
|
766
|
+
pulumi.set(__self__, "operator_owners", operator_owners)
|
767
|
+
|
768
|
+
@property
|
769
|
+
@pulumi.getter(name="businessOwners")
|
770
|
+
def business_owners(self) -> Optional[Sequence['outputs.WorkloadAttributesBusinessOwner']]:
|
771
|
+
"""
|
772
|
+
Business team that ensures user needs are met and value is delivered
|
773
|
+
Structure is documented below.
|
774
|
+
"""
|
775
|
+
return pulumi.get(self, "business_owners")
|
776
|
+
|
777
|
+
@property
|
778
|
+
@pulumi.getter
|
779
|
+
def criticality(self) -> Optional['outputs.WorkloadAttributesCriticality']:
|
780
|
+
"""
|
781
|
+
Criticality of the Application, Service, or Workload
|
782
|
+
Structure is documented below.
|
783
|
+
"""
|
784
|
+
return pulumi.get(self, "criticality")
|
785
|
+
|
786
|
+
@property
|
787
|
+
@pulumi.getter(name="developerOwners")
|
788
|
+
def developer_owners(self) -> Optional[Sequence['outputs.WorkloadAttributesDeveloperOwner']]:
|
789
|
+
"""
|
790
|
+
Developer team that owns development and coding.
|
791
|
+
Structure is documented below.
|
792
|
+
"""
|
793
|
+
return pulumi.get(self, "developer_owners")
|
794
|
+
|
795
|
+
@property
|
796
|
+
@pulumi.getter
|
797
|
+
def environment(self) -> Optional['outputs.WorkloadAttributesEnvironment']:
|
798
|
+
"""
|
799
|
+
Environment of the Application, Service, or Workload
|
800
|
+
Structure is documented below.
|
801
|
+
"""
|
802
|
+
return pulumi.get(self, "environment")
|
803
|
+
|
804
|
+
@property
|
805
|
+
@pulumi.getter(name="operatorOwners")
|
806
|
+
def operator_owners(self) -> Optional[Sequence['outputs.WorkloadAttributesOperatorOwner']]:
|
807
|
+
"""
|
808
|
+
Operator team that ensures runtime and operations.
|
809
|
+
Structure is documented below.
|
810
|
+
"""
|
811
|
+
return pulumi.get(self, "operator_owners")
|
812
|
+
|
813
|
+
|
814
|
+
@pulumi.output_type
|
815
|
+
class WorkloadAttributesBusinessOwner(dict):
|
816
|
+
@staticmethod
|
817
|
+
def __key_warning(key: str):
|
818
|
+
suggest = None
|
819
|
+
if key == "displayName":
|
820
|
+
suggest = "display_name"
|
821
|
+
|
822
|
+
if suggest:
|
823
|
+
pulumi.log.warn(f"Key '{key}' not found in WorkloadAttributesBusinessOwner. Access the value via the '{suggest}' property getter instead.")
|
824
|
+
|
825
|
+
def __getitem__(self, key: str) -> Any:
|
826
|
+
WorkloadAttributesBusinessOwner.__key_warning(key)
|
827
|
+
return super().__getitem__(key)
|
828
|
+
|
829
|
+
def get(self, key: str, default = None) -> Any:
|
830
|
+
WorkloadAttributesBusinessOwner.__key_warning(key)
|
831
|
+
return super().get(key, default)
|
832
|
+
|
833
|
+
def __init__(__self__, *,
|
834
|
+
email: str,
|
835
|
+
display_name: Optional[str] = None):
|
836
|
+
"""
|
837
|
+
:param str email: Email address of the contacts.
|
838
|
+
:param str display_name: Contact's name.
|
839
|
+
"""
|
840
|
+
pulumi.set(__self__, "email", email)
|
841
|
+
if display_name is not None:
|
842
|
+
pulumi.set(__self__, "display_name", display_name)
|
843
|
+
|
844
|
+
@property
|
845
|
+
@pulumi.getter
|
846
|
+
def email(self) -> str:
|
847
|
+
"""
|
848
|
+
Email address of the contacts.
|
849
|
+
"""
|
850
|
+
return pulumi.get(self, "email")
|
851
|
+
|
852
|
+
@property
|
853
|
+
@pulumi.getter(name="displayName")
|
854
|
+
def display_name(self) -> Optional[str]:
|
855
|
+
"""
|
856
|
+
Contact's name.
|
857
|
+
"""
|
858
|
+
return pulumi.get(self, "display_name")
|
859
|
+
|
860
|
+
|
861
|
+
@pulumi.output_type
|
862
|
+
class WorkloadAttributesCriticality(dict):
|
863
|
+
def __init__(__self__, *,
|
864
|
+
type: str):
|
865
|
+
"""
|
866
|
+
:param str type: Criticality type.
|
867
|
+
Possible values are: `MISSION_CRITICAL`, `HIGH`, `MEDIUM`, `LOW`.
|
868
|
+
"""
|
869
|
+
pulumi.set(__self__, "type", type)
|
870
|
+
|
871
|
+
@property
|
872
|
+
@pulumi.getter
|
873
|
+
def type(self) -> str:
|
874
|
+
"""
|
875
|
+
Criticality type.
|
876
|
+
Possible values are: `MISSION_CRITICAL`, `HIGH`, `MEDIUM`, `LOW`.
|
877
|
+
"""
|
878
|
+
return pulumi.get(self, "type")
|
879
|
+
|
880
|
+
|
881
|
+
@pulumi.output_type
|
882
|
+
class WorkloadAttributesDeveloperOwner(dict):
|
883
|
+
@staticmethod
|
884
|
+
def __key_warning(key: str):
|
885
|
+
suggest = None
|
886
|
+
if key == "displayName":
|
887
|
+
suggest = "display_name"
|
888
|
+
|
889
|
+
if suggest:
|
890
|
+
pulumi.log.warn(f"Key '{key}' not found in WorkloadAttributesDeveloperOwner. Access the value via the '{suggest}' property getter instead.")
|
891
|
+
|
892
|
+
def __getitem__(self, key: str) -> Any:
|
893
|
+
WorkloadAttributesDeveloperOwner.__key_warning(key)
|
894
|
+
return super().__getitem__(key)
|
895
|
+
|
896
|
+
def get(self, key: str, default = None) -> Any:
|
897
|
+
WorkloadAttributesDeveloperOwner.__key_warning(key)
|
898
|
+
return super().get(key, default)
|
899
|
+
|
900
|
+
def __init__(__self__, *,
|
901
|
+
email: str,
|
902
|
+
display_name: Optional[str] = None):
|
903
|
+
"""
|
904
|
+
:param str email: Email address of the contacts.
|
905
|
+
:param str display_name: Contact's name.
|
906
|
+
"""
|
907
|
+
pulumi.set(__self__, "email", email)
|
908
|
+
if display_name is not None:
|
909
|
+
pulumi.set(__self__, "display_name", display_name)
|
910
|
+
|
911
|
+
@property
|
912
|
+
@pulumi.getter
|
913
|
+
def email(self) -> str:
|
914
|
+
"""
|
915
|
+
Email address of the contacts.
|
916
|
+
"""
|
917
|
+
return pulumi.get(self, "email")
|
918
|
+
|
919
|
+
@property
|
920
|
+
@pulumi.getter(name="displayName")
|
921
|
+
def display_name(self) -> Optional[str]:
|
922
|
+
"""
|
923
|
+
Contact's name.
|
924
|
+
"""
|
925
|
+
return pulumi.get(self, "display_name")
|
926
|
+
|
927
|
+
|
928
|
+
@pulumi.output_type
|
929
|
+
class WorkloadAttributesEnvironment(dict):
|
930
|
+
def __init__(__self__, *,
|
931
|
+
type: str):
|
932
|
+
"""
|
933
|
+
:param str type: Environment type.
|
934
|
+
Possible values are: `PRODUCTION`, `STAGING`, `TEST`, `DEVELOPMENT`.
|
935
|
+
"""
|
936
|
+
pulumi.set(__self__, "type", type)
|
937
|
+
|
938
|
+
@property
|
939
|
+
@pulumi.getter
|
940
|
+
def type(self) -> str:
|
941
|
+
"""
|
942
|
+
Environment type.
|
943
|
+
Possible values are: `PRODUCTION`, `STAGING`, `TEST`, `DEVELOPMENT`.
|
944
|
+
"""
|
945
|
+
return pulumi.get(self, "type")
|
946
|
+
|
947
|
+
|
948
|
+
@pulumi.output_type
|
949
|
+
class WorkloadAttributesOperatorOwner(dict):
|
950
|
+
@staticmethod
|
951
|
+
def __key_warning(key: str):
|
952
|
+
suggest = None
|
953
|
+
if key == "displayName":
|
954
|
+
suggest = "display_name"
|
955
|
+
|
956
|
+
if suggest:
|
957
|
+
pulumi.log.warn(f"Key '{key}' not found in WorkloadAttributesOperatorOwner. Access the value via the '{suggest}' property getter instead.")
|
958
|
+
|
959
|
+
def __getitem__(self, key: str) -> Any:
|
960
|
+
WorkloadAttributesOperatorOwner.__key_warning(key)
|
961
|
+
return super().__getitem__(key)
|
962
|
+
|
963
|
+
def get(self, key: str, default = None) -> Any:
|
964
|
+
WorkloadAttributesOperatorOwner.__key_warning(key)
|
965
|
+
return super().get(key, default)
|
966
|
+
|
967
|
+
def __init__(__self__, *,
|
968
|
+
email: str,
|
969
|
+
display_name: Optional[str] = None):
|
970
|
+
"""
|
971
|
+
:param str email: Email address of the contacts.
|
972
|
+
:param str display_name: Contact's name.
|
973
|
+
"""
|
974
|
+
pulumi.set(__self__, "email", email)
|
975
|
+
if display_name is not None:
|
976
|
+
pulumi.set(__self__, "display_name", display_name)
|
977
|
+
|
978
|
+
@property
|
979
|
+
@pulumi.getter
|
980
|
+
def email(self) -> str:
|
981
|
+
"""
|
982
|
+
Email address of the contacts.
|
983
|
+
"""
|
984
|
+
return pulumi.get(self, "email")
|
985
|
+
|
986
|
+
@property
|
987
|
+
@pulumi.getter(name="displayName")
|
988
|
+
def display_name(self) -> Optional[str]:
|
989
|
+
"""
|
990
|
+
Contact's name.
|
991
|
+
"""
|
992
|
+
return pulumi.get(self, "display_name")
|
993
|
+
|
994
|
+
|
995
|
+
@pulumi.output_type
|
996
|
+
class WorkloadWorkloadProperty(dict):
|
997
|
+
@staticmethod
|
998
|
+
def __key_warning(key: str):
|
999
|
+
suggest = None
|
1000
|
+
if key == "gcpProject":
|
1001
|
+
suggest = "gcp_project"
|
1002
|
+
|
1003
|
+
if suggest:
|
1004
|
+
pulumi.log.warn(f"Key '{key}' not found in WorkloadWorkloadProperty. Access the value via the '{suggest}' property getter instead.")
|
1005
|
+
|
1006
|
+
def __getitem__(self, key: str) -> Any:
|
1007
|
+
WorkloadWorkloadProperty.__key_warning(key)
|
1008
|
+
return super().__getitem__(key)
|
1009
|
+
|
1010
|
+
def get(self, key: str, default = None) -> Any:
|
1011
|
+
WorkloadWorkloadProperty.__key_warning(key)
|
1012
|
+
return super().get(key, default)
|
1013
|
+
|
1014
|
+
def __init__(__self__, *,
|
1015
|
+
gcp_project: Optional[str] = None,
|
1016
|
+
location: Optional[str] = None,
|
1017
|
+
zone: Optional[str] = None):
|
1018
|
+
"""
|
1019
|
+
:param str gcp_project: (Output)
|
1020
|
+
Output only. The service project identifier that the underlying cloud resource resides in. Empty for non cloud resources.
|
1021
|
+
:param str location: Part of `parent`. Full resource name of a parent Application. Example: projects/{HOST_PROJECT_ID}/locations/{LOCATION}/applications/{APPLICATION_ID}
|
1022
|
+
:param str zone: (Output)
|
1023
|
+
Output only. The location that the underlying compute resource resides in if it is zonal (e.g us-west1-a).
|
1024
|
+
"""
|
1025
|
+
if gcp_project is not None:
|
1026
|
+
pulumi.set(__self__, "gcp_project", gcp_project)
|
1027
|
+
if location is not None:
|
1028
|
+
pulumi.set(__self__, "location", location)
|
1029
|
+
if zone is not None:
|
1030
|
+
pulumi.set(__self__, "zone", zone)
|
1031
|
+
|
1032
|
+
@property
|
1033
|
+
@pulumi.getter(name="gcpProject")
|
1034
|
+
def gcp_project(self) -> Optional[str]:
|
1035
|
+
"""
|
1036
|
+
(Output)
|
1037
|
+
Output only. The service project identifier that the underlying cloud resource resides in. Empty for non cloud resources.
|
1038
|
+
"""
|
1039
|
+
return pulumi.get(self, "gcp_project")
|
1040
|
+
|
1041
|
+
@property
|
1042
|
+
@pulumi.getter
|
1043
|
+
def location(self) -> Optional[str]:
|
1044
|
+
"""
|
1045
|
+
Part of `parent`. Full resource name of a parent Application. Example: projects/{HOST_PROJECT_ID}/locations/{LOCATION}/applications/{APPLICATION_ID}
|
1046
|
+
"""
|
1047
|
+
return pulumi.get(self, "location")
|
1048
|
+
|
1049
|
+
@property
|
1050
|
+
@pulumi.getter
|
1051
|
+
def zone(self) -> Optional[str]:
|
1052
|
+
"""
|
1053
|
+
(Output)
|
1054
|
+
Output only. The location that the underlying compute resource resides in if it is zonal (e.g us-west1-a).
|
1055
|
+
"""
|
1056
|
+
return pulumi.get(self, "zone")
|
1057
|
+
|
1058
|
+
|
1059
|
+
@pulumi.output_type
|
1060
|
+
class WorkloadWorkloadReference(dict):
|
1061
|
+
def __init__(__self__, *,
|
1062
|
+
uri: Optional[str] = None):
|
1063
|
+
"""
|
1064
|
+
:param str uri: (Output)
|
1065
|
+
Output only. The underlying compute resource uri.
|
1066
|
+
"""
|
1067
|
+
if uri is not None:
|
1068
|
+
pulumi.set(__self__, "uri", uri)
|
1069
|
+
|
1070
|
+
@property
|
1071
|
+
@pulumi.getter
|
1072
|
+
def uri(self) -> Optional[str]:
|
1073
|
+
"""
|
1074
|
+
(Output)
|
1075
|
+
Output only. The underlying compute resource uri.
|
1076
|
+
"""
|
1077
|
+
return pulumi.get(self, "uri")
|
1078
|
+
|
1079
|
+
|
1080
|
+
@pulumi.output_type
|
1081
|
+
class GetDiscoveredServiceServicePropertyResult(dict):
|
1082
|
+
def __init__(__self__, *,
|
1083
|
+
gcp_project: str,
|
1084
|
+
location: str,
|
1085
|
+
zone: str):
|
1086
|
+
"""
|
1087
|
+
:param str gcp_project: The service project identifier that the underlying cloud resource resides in.
|
1088
|
+
:param str location: The location of the discovered service.
|
1089
|
+
:param str zone: The location that the underlying resource resides in if it is zonal.
|
1090
|
+
"""
|
1091
|
+
pulumi.set(__self__, "gcp_project", gcp_project)
|
1092
|
+
pulumi.set(__self__, "location", location)
|
1093
|
+
pulumi.set(__self__, "zone", zone)
|
1094
|
+
|
1095
|
+
@property
|
1096
|
+
@pulumi.getter(name="gcpProject")
|
1097
|
+
def gcp_project(self) -> str:
|
1098
|
+
"""
|
1099
|
+
The service project identifier that the underlying cloud resource resides in.
|
1100
|
+
"""
|
1101
|
+
return pulumi.get(self, "gcp_project")
|
1102
|
+
|
1103
|
+
@property
|
1104
|
+
@pulumi.getter
|
1105
|
+
def location(self) -> str:
|
1106
|
+
"""
|
1107
|
+
The location of the discovered service.
|
1108
|
+
"""
|
1109
|
+
return pulumi.get(self, "location")
|
1110
|
+
|
1111
|
+
@property
|
1112
|
+
@pulumi.getter
|
1113
|
+
def zone(self) -> str:
|
1114
|
+
"""
|
1115
|
+
The location that the underlying resource resides in if it is zonal.
|
1116
|
+
"""
|
1117
|
+
return pulumi.get(self, "zone")
|
1118
|
+
|
1119
|
+
|
1120
|
+
@pulumi.output_type
|
1121
|
+
class GetDiscoveredServiceServiceReferenceResult(dict):
|
1122
|
+
def __init__(__self__, *,
|
1123
|
+
path: str,
|
1124
|
+
uri: str):
|
1125
|
+
"""
|
1126
|
+
:param str path: Additional path under the resource URI.
|
1127
|
+
:param str uri: The underlying resource URI.
|
1128
|
+
"""
|
1129
|
+
pulumi.set(__self__, "path", path)
|
1130
|
+
pulumi.set(__self__, "uri", uri)
|
1131
|
+
|
1132
|
+
@property
|
1133
|
+
@pulumi.getter
|
1134
|
+
def path(self) -> str:
|
1135
|
+
"""
|
1136
|
+
Additional path under the resource URI.
|
1137
|
+
"""
|
1138
|
+
return pulumi.get(self, "path")
|
1139
|
+
|
1140
|
+
@property
|
1141
|
+
@pulumi.getter
|
1142
|
+
def uri(self) -> str:
|
1143
|
+
"""
|
1144
|
+
The underlying resource URI.
|
1145
|
+
"""
|
1146
|
+
return pulumi.get(self, "uri")
|
1147
|
+
|
1148
|
+
|
1149
|
+
@pulumi.output_type
|
1150
|
+
class GetDiscoveredWorkloadWorkloadPropertyResult(dict):
|
1151
|
+
def __init__(__self__, *,
|
1152
|
+
gcp_project: str,
|
1153
|
+
location: str,
|
1154
|
+
zone: str):
|
1155
|
+
"""
|
1156
|
+
:param str gcp_project: The service project identifier that the underlying cloud resource resides in.
|
1157
|
+
:param str location: The location of the discovered workload.
|
1158
|
+
:param str zone: The location that the underlying resource resides in if it is zonal.
|
1159
|
+
"""
|
1160
|
+
pulumi.set(__self__, "gcp_project", gcp_project)
|
1161
|
+
pulumi.set(__self__, "location", location)
|
1162
|
+
pulumi.set(__self__, "zone", zone)
|
1163
|
+
|
1164
|
+
@property
|
1165
|
+
@pulumi.getter(name="gcpProject")
|
1166
|
+
def gcp_project(self) -> str:
|
1167
|
+
"""
|
1168
|
+
The service project identifier that the underlying cloud resource resides in.
|
1169
|
+
"""
|
1170
|
+
return pulumi.get(self, "gcp_project")
|
1171
|
+
|
1172
|
+
@property
|
1173
|
+
@pulumi.getter
|
1174
|
+
def location(self) -> str:
|
1175
|
+
"""
|
1176
|
+
The location of the discovered workload.
|
1177
|
+
"""
|
1178
|
+
return pulumi.get(self, "location")
|
1179
|
+
|
1180
|
+
@property
|
1181
|
+
@pulumi.getter
|
1182
|
+
def zone(self) -> str:
|
1183
|
+
"""
|
1184
|
+
The location that the underlying resource resides in if it is zonal.
|
1185
|
+
"""
|
1186
|
+
return pulumi.get(self, "zone")
|
1187
|
+
|
1188
|
+
|
1189
|
+
@pulumi.output_type
|
1190
|
+
class GetDiscoveredWorkloadWorkloadReferenceResult(dict):
|
1191
|
+
def __init__(__self__, *,
|
1192
|
+
uri: str):
|
1193
|
+
"""
|
1194
|
+
:param str uri: The underlying resource URI.
|
1195
|
+
"""
|
1196
|
+
pulumi.set(__self__, "uri", uri)
|
1197
|
+
|
1198
|
+
@property
|
1199
|
+
@pulumi.getter
|
1200
|
+
def uri(self) -> str:
|
1201
|
+
"""
|
1202
|
+
The underlying resource URI.
|
1203
|
+
"""
|
1204
|
+
return pulumi.get(self, "uri")
|
1205
|
+
|
1206
|
+
|