pulumi-gcp 7.10.0a1708496697__py3-none-any.whl → 7.10.0a1708543111__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- pulumi_gcp/__init__.py +32 -0
- pulumi_gcp/bigtable/table_iam_binding.py +6 -6
- pulumi_gcp/bigtable/table_iam_member.py +6 -6
- pulumi_gcp/bigtable/table_iam_policy.py +6 -6
- pulumi_gcp/cloudbuildv2/_inputs.py +32 -12
- pulumi_gcp/cloudbuildv2/connection.py +140 -38
- pulumi_gcp/cloudbuildv2/connection_iam_binding.py +13 -0
- pulumi_gcp/cloudbuildv2/connection_iam_member.py +13 -0
- pulumi_gcp/cloudbuildv2/connection_iam_policy.py +13 -0
- pulumi_gcp/cloudbuildv2/get_connection_iam_policy.py +2 -0
- pulumi_gcp/cloudbuildv2/outputs.py +32 -12
- pulumi_gcp/clouddeploy/__init__.py +1 -0
- pulumi_gcp/clouddeploy/_inputs.py +277 -2
- pulumi_gcp/clouddeploy/custom_target_type.py +923 -0
- pulumi_gcp/clouddeploy/outputs.py +263 -2
- pulumi_gcp/cloudfunctions/function.py +32 -0
- pulumi_gcp/cloudfunctions/get_function.py +11 -1
- pulumi_gcp/cloudrunv2/service.py +18 -0
- pulumi_gcp/compute/_inputs.py +20 -20
- pulumi_gcp/compute/outputs.py +24 -24
- pulumi_gcp/config/vars.py +2 -2
- pulumi_gcp/container/_inputs.py +22 -0
- pulumi_gcp/container/outputs.py +28 -0
- pulumi_gcp/dns/_inputs.py +2 -2
- pulumi_gcp/dns/get_managed_zone.py +2 -2
- pulumi_gcp/dns/get_managed_zones.py +35 -2
- pulumi_gcp/dns/outputs.py +2 -2
- pulumi_gcp/eventarc/_inputs.py +78 -0
- pulumi_gcp/eventarc/outputs.py +83 -0
- pulumi_gcp/firebase/__init__.py +1 -0
- pulumi_gcp/firebase/app_check_debug_token.py +480 -0
- pulumi_gcp/healthcare/hl7_store.py +50 -1
- pulumi_gcp/identityplatform/_inputs.py +330 -0
- pulumi_gcp/identityplatform/config.py +216 -0
- pulumi_gcp/identityplatform/outputs.py +397 -0
- pulumi_gcp/networksecurity/__init__.py +2 -0
- pulumi_gcp/networksecurity/firewall_endpoint.py +631 -0
- pulumi_gcp/networksecurity/security_profile_group.py +654 -0
- pulumi_gcp/notebooks/instance.py +109 -4
- pulumi_gcp/provider.py +8 -0
- pulumi_gcp/recaptcha/enterprise_key.py +4 -4
- pulumi_gcp/securityposture/_inputs.py +48 -48
- pulumi_gcp/securityposture/outputs.py +40 -40
- pulumi_gcp/securityposture/posture.py +22 -2
- pulumi_gcp/vertex/_inputs.py +63 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +208 -0
- pulumi_gcp/vertex/outputs.py +87 -0
- pulumi_gcp/workbench/_inputs.py +4 -4
- pulumi_gcp/workbench/instance.py +59 -8
- pulumi_gcp/workbench/outputs.py +4 -4
- pulumi_gcp/workstations/_inputs.py +16 -0
- pulumi_gcp/workstations/outputs.py +14 -0
- pulumi_gcp/workstations/workstation_config.py +2 -0
- {pulumi_gcp-7.10.0a1708496697.dist-info → pulumi_gcp-7.10.0a1708543111.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.10.0a1708496697.dist-info → pulumi_gcp-7.10.0a1708543111.dist-info}/RECORD +57 -53
- {pulumi_gcp-7.10.0a1708496697.dist-info → pulumi_gcp-7.10.0a1708543111.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.10.0a1708496697.dist-info → pulumi_gcp-7.10.0a1708543111.dist-info}/top_level.txt +0 -0
@@ -13,6 +13,14 @@ __all__ = [
|
|
13
13
|
'ConfigBlockingFunctionsArgs',
|
14
14
|
'ConfigBlockingFunctionsForwardInboundCredentialsArgs',
|
15
15
|
'ConfigBlockingFunctionsTriggerArgs',
|
16
|
+
'ConfigClientArgs',
|
17
|
+
'ConfigClientPermissionsArgs',
|
18
|
+
'ConfigMfaArgs',
|
19
|
+
'ConfigMfaProviderConfigArgs',
|
20
|
+
'ConfigMfaProviderConfigTotpProviderConfigArgs',
|
21
|
+
'ConfigMonitoringArgs',
|
22
|
+
'ConfigMonitoringRequestLoggingArgs',
|
23
|
+
'ConfigMultiTenantArgs',
|
16
24
|
'ConfigQuotaArgs',
|
17
25
|
'ConfigQuotaSignUpQuotaConfigArgs',
|
18
26
|
'ConfigSignInArgs',
|
@@ -190,6 +198,328 @@ class ConfigBlockingFunctionsTriggerArgs:
|
|
190
198
|
pulumi.set(self, "update_time", value)
|
191
199
|
|
192
200
|
|
201
|
+
@pulumi.input_type
|
202
|
+
class ConfigClientArgs:
|
203
|
+
def __init__(__self__, *,
|
204
|
+
api_key: Optional[pulumi.Input[str]] = None,
|
205
|
+
firebase_subdomain: Optional[pulumi.Input[str]] = None,
|
206
|
+
permissions: Optional[pulumi.Input['ConfigClientPermissionsArgs']] = None):
|
207
|
+
"""
|
208
|
+
:param pulumi.Input[str] api_key: (Output)
|
209
|
+
API key that can be used when making requests for this project.
|
210
|
+
**Note**: This property is sensitive and will not be displayed in the plan.
|
211
|
+
:param pulumi.Input[str] firebase_subdomain: (Output)
|
212
|
+
Firebase subdomain.
|
213
|
+
:param pulumi.Input['ConfigClientPermissionsArgs'] permissions: Configuration related to restricting a user's ability to affect their account.
|
214
|
+
Structure is documented below.
|
215
|
+
"""
|
216
|
+
if api_key is not None:
|
217
|
+
pulumi.set(__self__, "api_key", api_key)
|
218
|
+
if firebase_subdomain is not None:
|
219
|
+
pulumi.set(__self__, "firebase_subdomain", firebase_subdomain)
|
220
|
+
if permissions is not None:
|
221
|
+
pulumi.set(__self__, "permissions", permissions)
|
222
|
+
|
223
|
+
@property
|
224
|
+
@pulumi.getter(name="apiKey")
|
225
|
+
def api_key(self) -> Optional[pulumi.Input[str]]:
|
226
|
+
"""
|
227
|
+
(Output)
|
228
|
+
API key that can be used when making requests for this project.
|
229
|
+
**Note**: This property is sensitive and will not be displayed in the plan.
|
230
|
+
"""
|
231
|
+
return pulumi.get(self, "api_key")
|
232
|
+
|
233
|
+
@api_key.setter
|
234
|
+
def api_key(self, value: Optional[pulumi.Input[str]]):
|
235
|
+
pulumi.set(self, "api_key", value)
|
236
|
+
|
237
|
+
@property
|
238
|
+
@pulumi.getter(name="firebaseSubdomain")
|
239
|
+
def firebase_subdomain(self) -> Optional[pulumi.Input[str]]:
|
240
|
+
"""
|
241
|
+
(Output)
|
242
|
+
Firebase subdomain.
|
243
|
+
"""
|
244
|
+
return pulumi.get(self, "firebase_subdomain")
|
245
|
+
|
246
|
+
@firebase_subdomain.setter
|
247
|
+
def firebase_subdomain(self, value: Optional[pulumi.Input[str]]):
|
248
|
+
pulumi.set(self, "firebase_subdomain", value)
|
249
|
+
|
250
|
+
@property
|
251
|
+
@pulumi.getter
|
252
|
+
def permissions(self) -> Optional[pulumi.Input['ConfigClientPermissionsArgs']]:
|
253
|
+
"""
|
254
|
+
Configuration related to restricting a user's ability to affect their account.
|
255
|
+
Structure is documented below.
|
256
|
+
"""
|
257
|
+
return pulumi.get(self, "permissions")
|
258
|
+
|
259
|
+
@permissions.setter
|
260
|
+
def permissions(self, value: Optional[pulumi.Input['ConfigClientPermissionsArgs']]):
|
261
|
+
pulumi.set(self, "permissions", value)
|
262
|
+
|
263
|
+
|
264
|
+
@pulumi.input_type
|
265
|
+
class ConfigClientPermissionsArgs:
|
266
|
+
def __init__(__self__, *,
|
267
|
+
disabled_user_deletion: Optional[pulumi.Input[bool]] = None,
|
268
|
+
disabled_user_signup: Optional[pulumi.Input[bool]] = None):
|
269
|
+
"""
|
270
|
+
:param pulumi.Input[bool] disabled_user_deletion: When true, end users cannot delete their account on the associated project through any of our API methods
|
271
|
+
:param pulumi.Input[bool] disabled_user_signup: When true, end users cannot sign up for a new account on the associated project through any of our API methods
|
272
|
+
"""
|
273
|
+
if disabled_user_deletion is not None:
|
274
|
+
pulumi.set(__self__, "disabled_user_deletion", disabled_user_deletion)
|
275
|
+
if disabled_user_signup is not None:
|
276
|
+
pulumi.set(__self__, "disabled_user_signup", disabled_user_signup)
|
277
|
+
|
278
|
+
@property
|
279
|
+
@pulumi.getter(name="disabledUserDeletion")
|
280
|
+
def disabled_user_deletion(self) -> Optional[pulumi.Input[bool]]:
|
281
|
+
"""
|
282
|
+
When true, end users cannot delete their account on the associated project through any of our API methods
|
283
|
+
"""
|
284
|
+
return pulumi.get(self, "disabled_user_deletion")
|
285
|
+
|
286
|
+
@disabled_user_deletion.setter
|
287
|
+
def disabled_user_deletion(self, value: Optional[pulumi.Input[bool]]):
|
288
|
+
pulumi.set(self, "disabled_user_deletion", value)
|
289
|
+
|
290
|
+
@property
|
291
|
+
@pulumi.getter(name="disabledUserSignup")
|
292
|
+
def disabled_user_signup(self) -> Optional[pulumi.Input[bool]]:
|
293
|
+
"""
|
294
|
+
When true, end users cannot sign up for a new account on the associated project through any of our API methods
|
295
|
+
"""
|
296
|
+
return pulumi.get(self, "disabled_user_signup")
|
297
|
+
|
298
|
+
@disabled_user_signup.setter
|
299
|
+
def disabled_user_signup(self, value: Optional[pulumi.Input[bool]]):
|
300
|
+
pulumi.set(self, "disabled_user_signup", value)
|
301
|
+
|
302
|
+
|
303
|
+
@pulumi.input_type
|
304
|
+
class ConfigMfaArgs:
|
305
|
+
def __init__(__self__, *,
|
306
|
+
enabled_providers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
307
|
+
provider_configs: Optional[pulumi.Input[Sequence[pulumi.Input['ConfigMfaProviderConfigArgs']]]] = None,
|
308
|
+
state: Optional[pulumi.Input[str]] = None):
|
309
|
+
"""
|
310
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] enabled_providers: A list of usable second factors for this project.
|
311
|
+
Each value may be one of: `PHONE_SMS`.
|
312
|
+
:param pulumi.Input[Sequence[pulumi.Input['ConfigMfaProviderConfigArgs']]] provider_configs: A list of usable second factors for this project along with their configurations.
|
313
|
+
This field does not support phone based MFA, for that use the 'enabledProviders' field.
|
314
|
+
Structure is documented below.
|
315
|
+
:param pulumi.Input[str] state: Whether MultiFactor Authentication has been enabled for this project.
|
316
|
+
Possible values are: `DISABLED`, `ENABLED`, `MANDATORY`.
|
317
|
+
"""
|
318
|
+
if enabled_providers is not None:
|
319
|
+
pulumi.set(__self__, "enabled_providers", enabled_providers)
|
320
|
+
if provider_configs is not None:
|
321
|
+
pulumi.set(__self__, "provider_configs", provider_configs)
|
322
|
+
if state is not None:
|
323
|
+
pulumi.set(__self__, "state", state)
|
324
|
+
|
325
|
+
@property
|
326
|
+
@pulumi.getter(name="enabledProviders")
|
327
|
+
def enabled_providers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
328
|
+
"""
|
329
|
+
A list of usable second factors for this project.
|
330
|
+
Each value may be one of: `PHONE_SMS`.
|
331
|
+
"""
|
332
|
+
return pulumi.get(self, "enabled_providers")
|
333
|
+
|
334
|
+
@enabled_providers.setter
|
335
|
+
def enabled_providers(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
336
|
+
pulumi.set(self, "enabled_providers", value)
|
337
|
+
|
338
|
+
@property
|
339
|
+
@pulumi.getter(name="providerConfigs")
|
340
|
+
def provider_configs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ConfigMfaProviderConfigArgs']]]]:
|
341
|
+
"""
|
342
|
+
A list of usable second factors for this project along with their configurations.
|
343
|
+
This field does not support phone based MFA, for that use the 'enabledProviders' field.
|
344
|
+
Structure is documented below.
|
345
|
+
"""
|
346
|
+
return pulumi.get(self, "provider_configs")
|
347
|
+
|
348
|
+
@provider_configs.setter
|
349
|
+
def provider_configs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ConfigMfaProviderConfigArgs']]]]):
|
350
|
+
pulumi.set(self, "provider_configs", value)
|
351
|
+
|
352
|
+
@property
|
353
|
+
@pulumi.getter
|
354
|
+
def state(self) -> Optional[pulumi.Input[str]]:
|
355
|
+
"""
|
356
|
+
Whether MultiFactor Authentication has been enabled for this project.
|
357
|
+
Possible values are: `DISABLED`, `ENABLED`, `MANDATORY`.
|
358
|
+
"""
|
359
|
+
return pulumi.get(self, "state")
|
360
|
+
|
361
|
+
@state.setter
|
362
|
+
def state(self, value: Optional[pulumi.Input[str]]):
|
363
|
+
pulumi.set(self, "state", value)
|
364
|
+
|
365
|
+
|
366
|
+
@pulumi.input_type
|
367
|
+
class ConfigMfaProviderConfigArgs:
|
368
|
+
def __init__(__self__, *,
|
369
|
+
state: Optional[pulumi.Input[str]] = None,
|
370
|
+
totp_provider_config: Optional[pulumi.Input['ConfigMfaProviderConfigTotpProviderConfigArgs']] = None):
|
371
|
+
"""
|
372
|
+
:param pulumi.Input[str] state: Whether MultiFactor Authentication has been enabled for this project.
|
373
|
+
Possible values are: `DISABLED`, `ENABLED`, `MANDATORY`.
|
374
|
+
:param pulumi.Input['ConfigMfaProviderConfigTotpProviderConfigArgs'] totp_provider_config: TOTP MFA provider config for this project.
|
375
|
+
Structure is documented below.
|
376
|
+
"""
|
377
|
+
if state is not None:
|
378
|
+
pulumi.set(__self__, "state", state)
|
379
|
+
if totp_provider_config is not None:
|
380
|
+
pulumi.set(__self__, "totp_provider_config", totp_provider_config)
|
381
|
+
|
382
|
+
@property
|
383
|
+
@pulumi.getter
|
384
|
+
def state(self) -> Optional[pulumi.Input[str]]:
|
385
|
+
"""
|
386
|
+
Whether MultiFactor Authentication has been enabled for this project.
|
387
|
+
Possible values are: `DISABLED`, `ENABLED`, `MANDATORY`.
|
388
|
+
"""
|
389
|
+
return pulumi.get(self, "state")
|
390
|
+
|
391
|
+
@state.setter
|
392
|
+
def state(self, value: Optional[pulumi.Input[str]]):
|
393
|
+
pulumi.set(self, "state", value)
|
394
|
+
|
395
|
+
@property
|
396
|
+
@pulumi.getter(name="totpProviderConfig")
|
397
|
+
def totp_provider_config(self) -> Optional[pulumi.Input['ConfigMfaProviderConfigTotpProviderConfigArgs']]:
|
398
|
+
"""
|
399
|
+
TOTP MFA provider config for this project.
|
400
|
+
Structure is documented below.
|
401
|
+
"""
|
402
|
+
return pulumi.get(self, "totp_provider_config")
|
403
|
+
|
404
|
+
@totp_provider_config.setter
|
405
|
+
def totp_provider_config(self, value: Optional[pulumi.Input['ConfigMfaProviderConfigTotpProviderConfigArgs']]):
|
406
|
+
pulumi.set(self, "totp_provider_config", value)
|
407
|
+
|
408
|
+
|
409
|
+
@pulumi.input_type
|
410
|
+
class ConfigMfaProviderConfigTotpProviderConfigArgs:
|
411
|
+
def __init__(__self__, *,
|
412
|
+
adjacent_intervals: Optional[pulumi.Input[int]] = None):
|
413
|
+
"""
|
414
|
+
:param pulumi.Input[int] adjacent_intervals: The allowed number of adjacent intervals that will be used for verification to avoid clock skew.
|
415
|
+
"""
|
416
|
+
if adjacent_intervals is not None:
|
417
|
+
pulumi.set(__self__, "adjacent_intervals", adjacent_intervals)
|
418
|
+
|
419
|
+
@property
|
420
|
+
@pulumi.getter(name="adjacentIntervals")
|
421
|
+
def adjacent_intervals(self) -> Optional[pulumi.Input[int]]:
|
422
|
+
"""
|
423
|
+
The allowed number of adjacent intervals that will be used for verification to avoid clock skew.
|
424
|
+
"""
|
425
|
+
return pulumi.get(self, "adjacent_intervals")
|
426
|
+
|
427
|
+
@adjacent_intervals.setter
|
428
|
+
def adjacent_intervals(self, value: Optional[pulumi.Input[int]]):
|
429
|
+
pulumi.set(self, "adjacent_intervals", value)
|
430
|
+
|
431
|
+
|
432
|
+
@pulumi.input_type
|
433
|
+
class ConfigMonitoringArgs:
|
434
|
+
def __init__(__self__, *,
|
435
|
+
request_logging: Optional[pulumi.Input['ConfigMonitoringRequestLoggingArgs']] = None):
|
436
|
+
"""
|
437
|
+
:param pulumi.Input['ConfigMonitoringRequestLoggingArgs'] request_logging: Configuration for logging requests made to this project to Stackdriver Logging
|
438
|
+
Structure is documented below.
|
439
|
+
"""
|
440
|
+
if request_logging is not None:
|
441
|
+
pulumi.set(__self__, "request_logging", request_logging)
|
442
|
+
|
443
|
+
@property
|
444
|
+
@pulumi.getter(name="requestLogging")
|
445
|
+
def request_logging(self) -> Optional[pulumi.Input['ConfigMonitoringRequestLoggingArgs']]:
|
446
|
+
"""
|
447
|
+
Configuration for logging requests made to this project to Stackdriver Logging
|
448
|
+
Structure is documented below.
|
449
|
+
"""
|
450
|
+
return pulumi.get(self, "request_logging")
|
451
|
+
|
452
|
+
@request_logging.setter
|
453
|
+
def request_logging(self, value: Optional[pulumi.Input['ConfigMonitoringRequestLoggingArgs']]):
|
454
|
+
pulumi.set(self, "request_logging", value)
|
455
|
+
|
456
|
+
|
457
|
+
@pulumi.input_type
|
458
|
+
class ConfigMonitoringRequestLoggingArgs:
|
459
|
+
def __init__(__self__, *,
|
460
|
+
enabled: Optional[pulumi.Input[bool]] = None):
|
461
|
+
"""
|
462
|
+
:param pulumi.Input[bool] enabled: Whether logging is enabled for this project or not.
|
463
|
+
"""
|
464
|
+
if enabled is not None:
|
465
|
+
pulumi.set(__self__, "enabled", enabled)
|
466
|
+
|
467
|
+
@property
|
468
|
+
@pulumi.getter
|
469
|
+
def enabled(self) -> Optional[pulumi.Input[bool]]:
|
470
|
+
"""
|
471
|
+
Whether logging is enabled for this project or not.
|
472
|
+
"""
|
473
|
+
return pulumi.get(self, "enabled")
|
474
|
+
|
475
|
+
@enabled.setter
|
476
|
+
def enabled(self, value: Optional[pulumi.Input[bool]]):
|
477
|
+
pulumi.set(self, "enabled", value)
|
478
|
+
|
479
|
+
|
480
|
+
@pulumi.input_type
|
481
|
+
class ConfigMultiTenantArgs:
|
482
|
+
def __init__(__self__, *,
|
483
|
+
allow_tenants: Optional[pulumi.Input[bool]] = None,
|
484
|
+
default_tenant_location: Optional[pulumi.Input[str]] = None):
|
485
|
+
"""
|
486
|
+
:param pulumi.Input[bool] allow_tenants: Whether this project can have tenants or not.
|
487
|
+
:param pulumi.Input[str] default_tenant_location: The default cloud parent org or folder that the tenant project should be created under.
|
488
|
+
The parent resource name should be in the format of "/", such as "folders/123" or "organizations/456".
|
489
|
+
If the value is not set, the tenant will be created under the same organization or folder as the agent project.
|
490
|
+
"""
|
491
|
+
if allow_tenants is not None:
|
492
|
+
pulumi.set(__self__, "allow_tenants", allow_tenants)
|
493
|
+
if default_tenant_location is not None:
|
494
|
+
pulumi.set(__self__, "default_tenant_location", default_tenant_location)
|
495
|
+
|
496
|
+
@property
|
497
|
+
@pulumi.getter(name="allowTenants")
|
498
|
+
def allow_tenants(self) -> Optional[pulumi.Input[bool]]:
|
499
|
+
"""
|
500
|
+
Whether this project can have tenants or not.
|
501
|
+
"""
|
502
|
+
return pulumi.get(self, "allow_tenants")
|
503
|
+
|
504
|
+
@allow_tenants.setter
|
505
|
+
def allow_tenants(self, value: Optional[pulumi.Input[bool]]):
|
506
|
+
pulumi.set(self, "allow_tenants", value)
|
507
|
+
|
508
|
+
@property
|
509
|
+
@pulumi.getter(name="defaultTenantLocation")
|
510
|
+
def default_tenant_location(self) -> Optional[pulumi.Input[str]]:
|
511
|
+
"""
|
512
|
+
The default cloud parent org or folder that the tenant project should be created under.
|
513
|
+
The parent resource name should be in the format of "/", such as "folders/123" or "organizations/456".
|
514
|
+
If the value is not set, the tenant will be created under the same organization or folder as the agent project.
|
515
|
+
"""
|
516
|
+
return pulumi.get(self, "default_tenant_location")
|
517
|
+
|
518
|
+
@default_tenant_location.setter
|
519
|
+
def default_tenant_location(self, value: Optional[pulumi.Input[str]]):
|
520
|
+
pulumi.set(self, "default_tenant_location", value)
|
521
|
+
|
522
|
+
|
193
523
|
@pulumi.input_type
|
194
524
|
class ConfigQuotaArgs:
|
195
525
|
def __init__(__self__, *,
|
@@ -19,6 +19,10 @@ class ConfigArgs:
|
|
19
19
|
authorized_domains: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
20
20
|
autodelete_anonymous_users: Optional[pulumi.Input[bool]] = None,
|
21
21
|
blocking_functions: Optional[pulumi.Input['ConfigBlockingFunctionsArgs']] = None,
|
22
|
+
client: Optional[pulumi.Input['ConfigClientArgs']] = None,
|
23
|
+
mfa: Optional[pulumi.Input['ConfigMfaArgs']] = None,
|
24
|
+
monitoring: Optional[pulumi.Input['ConfigMonitoringArgs']] = None,
|
25
|
+
multi_tenant: Optional[pulumi.Input['ConfigMultiTenantArgs']] = None,
|
22
26
|
project: Optional[pulumi.Input[str]] = None,
|
23
27
|
quota: Optional[pulumi.Input['ConfigQuotaArgs']] = None,
|
24
28
|
sign_in: Optional[pulumi.Input['ConfigSignInArgs']] = None,
|
@@ -29,6 +33,14 @@ class ConfigArgs:
|
|
29
33
|
:param pulumi.Input[bool] autodelete_anonymous_users: Whether anonymous users will be auto-deleted after a period of 30 days
|
30
34
|
:param pulumi.Input['ConfigBlockingFunctionsArgs'] blocking_functions: Configuration related to blocking functions.
|
31
35
|
Structure is documented below.
|
36
|
+
:param pulumi.Input['ConfigClientArgs'] client: Options related to how clients making requests on behalf of a project should be configured.
|
37
|
+
Structure is documented below.
|
38
|
+
:param pulumi.Input['ConfigMfaArgs'] mfa: Options related to how clients making requests on behalf of a project should be configured.
|
39
|
+
Structure is documented below.
|
40
|
+
:param pulumi.Input['ConfigMonitoringArgs'] monitoring: Configuration related to monitoring project activity.
|
41
|
+
Structure is documented below.
|
42
|
+
:param pulumi.Input['ConfigMultiTenantArgs'] multi_tenant: Configuration related to multi-tenant functionality.
|
43
|
+
Structure is documented below.
|
32
44
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
33
45
|
If it is not provided, the provider project is used.
|
34
46
|
:param pulumi.Input['ConfigQuotaArgs'] quota: Configuration related to quotas.
|
@@ -44,6 +56,14 @@ class ConfigArgs:
|
|
44
56
|
pulumi.set(__self__, "autodelete_anonymous_users", autodelete_anonymous_users)
|
45
57
|
if blocking_functions is not None:
|
46
58
|
pulumi.set(__self__, "blocking_functions", blocking_functions)
|
59
|
+
if client is not None:
|
60
|
+
pulumi.set(__self__, "client", client)
|
61
|
+
if mfa is not None:
|
62
|
+
pulumi.set(__self__, "mfa", mfa)
|
63
|
+
if monitoring is not None:
|
64
|
+
pulumi.set(__self__, "monitoring", monitoring)
|
65
|
+
if multi_tenant is not None:
|
66
|
+
pulumi.set(__self__, "multi_tenant", multi_tenant)
|
47
67
|
if project is not None:
|
48
68
|
pulumi.set(__self__, "project", project)
|
49
69
|
if quota is not None:
|
@@ -90,6 +110,58 @@ class ConfigArgs:
|
|
90
110
|
def blocking_functions(self, value: Optional[pulumi.Input['ConfigBlockingFunctionsArgs']]):
|
91
111
|
pulumi.set(self, "blocking_functions", value)
|
92
112
|
|
113
|
+
@property
|
114
|
+
@pulumi.getter
|
115
|
+
def client(self) -> Optional[pulumi.Input['ConfigClientArgs']]:
|
116
|
+
"""
|
117
|
+
Options related to how clients making requests on behalf of a project should be configured.
|
118
|
+
Structure is documented below.
|
119
|
+
"""
|
120
|
+
return pulumi.get(self, "client")
|
121
|
+
|
122
|
+
@client.setter
|
123
|
+
def client(self, value: Optional[pulumi.Input['ConfigClientArgs']]):
|
124
|
+
pulumi.set(self, "client", value)
|
125
|
+
|
126
|
+
@property
|
127
|
+
@pulumi.getter
|
128
|
+
def mfa(self) -> Optional[pulumi.Input['ConfigMfaArgs']]:
|
129
|
+
"""
|
130
|
+
Options related to how clients making requests on behalf of a project should be configured.
|
131
|
+
Structure is documented below.
|
132
|
+
"""
|
133
|
+
return pulumi.get(self, "mfa")
|
134
|
+
|
135
|
+
@mfa.setter
|
136
|
+
def mfa(self, value: Optional[pulumi.Input['ConfigMfaArgs']]):
|
137
|
+
pulumi.set(self, "mfa", value)
|
138
|
+
|
139
|
+
@property
|
140
|
+
@pulumi.getter
|
141
|
+
def monitoring(self) -> Optional[pulumi.Input['ConfigMonitoringArgs']]:
|
142
|
+
"""
|
143
|
+
Configuration related to monitoring project activity.
|
144
|
+
Structure is documented below.
|
145
|
+
"""
|
146
|
+
return pulumi.get(self, "monitoring")
|
147
|
+
|
148
|
+
@monitoring.setter
|
149
|
+
def monitoring(self, value: Optional[pulumi.Input['ConfigMonitoringArgs']]):
|
150
|
+
pulumi.set(self, "monitoring", value)
|
151
|
+
|
152
|
+
@property
|
153
|
+
@pulumi.getter(name="multiTenant")
|
154
|
+
def multi_tenant(self) -> Optional[pulumi.Input['ConfigMultiTenantArgs']]:
|
155
|
+
"""
|
156
|
+
Configuration related to multi-tenant functionality.
|
157
|
+
Structure is documented below.
|
158
|
+
"""
|
159
|
+
return pulumi.get(self, "multi_tenant")
|
160
|
+
|
161
|
+
@multi_tenant.setter
|
162
|
+
def multi_tenant(self, value: Optional[pulumi.Input['ConfigMultiTenantArgs']]):
|
163
|
+
pulumi.set(self, "multi_tenant", value)
|
164
|
+
|
93
165
|
@property
|
94
166
|
@pulumi.getter
|
95
167
|
def project(self) -> Optional[pulumi.Input[str]]:
|
@@ -149,6 +221,10 @@ class _ConfigState:
|
|
149
221
|
authorized_domains: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
150
222
|
autodelete_anonymous_users: Optional[pulumi.Input[bool]] = None,
|
151
223
|
blocking_functions: Optional[pulumi.Input['ConfigBlockingFunctionsArgs']] = None,
|
224
|
+
client: Optional[pulumi.Input['ConfigClientArgs']] = None,
|
225
|
+
mfa: Optional[pulumi.Input['ConfigMfaArgs']] = None,
|
226
|
+
monitoring: Optional[pulumi.Input['ConfigMonitoringArgs']] = None,
|
227
|
+
multi_tenant: Optional[pulumi.Input['ConfigMultiTenantArgs']] = None,
|
152
228
|
name: Optional[pulumi.Input[str]] = None,
|
153
229
|
project: Optional[pulumi.Input[str]] = None,
|
154
230
|
quota: Optional[pulumi.Input['ConfigQuotaArgs']] = None,
|
@@ -160,6 +236,14 @@ class _ConfigState:
|
|
160
236
|
:param pulumi.Input[bool] autodelete_anonymous_users: Whether anonymous users will be auto-deleted after a period of 30 days
|
161
237
|
:param pulumi.Input['ConfigBlockingFunctionsArgs'] blocking_functions: Configuration related to blocking functions.
|
162
238
|
Structure is documented below.
|
239
|
+
:param pulumi.Input['ConfigClientArgs'] client: Options related to how clients making requests on behalf of a project should be configured.
|
240
|
+
Structure is documented below.
|
241
|
+
:param pulumi.Input['ConfigMfaArgs'] mfa: Options related to how clients making requests on behalf of a project should be configured.
|
242
|
+
Structure is documented below.
|
243
|
+
:param pulumi.Input['ConfigMonitoringArgs'] monitoring: Configuration related to monitoring project activity.
|
244
|
+
Structure is documented below.
|
245
|
+
:param pulumi.Input['ConfigMultiTenantArgs'] multi_tenant: Configuration related to multi-tenant functionality.
|
246
|
+
Structure is documented below.
|
163
247
|
:param pulumi.Input[str] name: The name of the Config resource
|
164
248
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
165
249
|
If it is not provided, the provider project is used.
|
@@ -176,6 +260,14 @@ class _ConfigState:
|
|
176
260
|
pulumi.set(__self__, "autodelete_anonymous_users", autodelete_anonymous_users)
|
177
261
|
if blocking_functions is not None:
|
178
262
|
pulumi.set(__self__, "blocking_functions", blocking_functions)
|
263
|
+
if client is not None:
|
264
|
+
pulumi.set(__self__, "client", client)
|
265
|
+
if mfa is not None:
|
266
|
+
pulumi.set(__self__, "mfa", mfa)
|
267
|
+
if monitoring is not None:
|
268
|
+
pulumi.set(__self__, "monitoring", monitoring)
|
269
|
+
if multi_tenant is not None:
|
270
|
+
pulumi.set(__self__, "multi_tenant", multi_tenant)
|
179
271
|
if name is not None:
|
180
272
|
pulumi.set(__self__, "name", name)
|
181
273
|
if project is not None:
|
@@ -224,6 +316,58 @@ class _ConfigState:
|
|
224
316
|
def blocking_functions(self, value: Optional[pulumi.Input['ConfigBlockingFunctionsArgs']]):
|
225
317
|
pulumi.set(self, "blocking_functions", value)
|
226
318
|
|
319
|
+
@property
|
320
|
+
@pulumi.getter
|
321
|
+
def client(self) -> Optional[pulumi.Input['ConfigClientArgs']]:
|
322
|
+
"""
|
323
|
+
Options related to how clients making requests on behalf of a project should be configured.
|
324
|
+
Structure is documented below.
|
325
|
+
"""
|
326
|
+
return pulumi.get(self, "client")
|
327
|
+
|
328
|
+
@client.setter
|
329
|
+
def client(self, value: Optional[pulumi.Input['ConfigClientArgs']]):
|
330
|
+
pulumi.set(self, "client", value)
|
331
|
+
|
332
|
+
@property
|
333
|
+
@pulumi.getter
|
334
|
+
def mfa(self) -> Optional[pulumi.Input['ConfigMfaArgs']]:
|
335
|
+
"""
|
336
|
+
Options related to how clients making requests on behalf of a project should be configured.
|
337
|
+
Structure is documented below.
|
338
|
+
"""
|
339
|
+
return pulumi.get(self, "mfa")
|
340
|
+
|
341
|
+
@mfa.setter
|
342
|
+
def mfa(self, value: Optional[pulumi.Input['ConfigMfaArgs']]):
|
343
|
+
pulumi.set(self, "mfa", value)
|
344
|
+
|
345
|
+
@property
|
346
|
+
@pulumi.getter
|
347
|
+
def monitoring(self) -> Optional[pulumi.Input['ConfigMonitoringArgs']]:
|
348
|
+
"""
|
349
|
+
Configuration related to monitoring project activity.
|
350
|
+
Structure is documented below.
|
351
|
+
"""
|
352
|
+
return pulumi.get(self, "monitoring")
|
353
|
+
|
354
|
+
@monitoring.setter
|
355
|
+
def monitoring(self, value: Optional[pulumi.Input['ConfigMonitoringArgs']]):
|
356
|
+
pulumi.set(self, "monitoring", value)
|
357
|
+
|
358
|
+
@property
|
359
|
+
@pulumi.getter(name="multiTenant")
|
360
|
+
def multi_tenant(self) -> Optional[pulumi.Input['ConfigMultiTenantArgs']]:
|
361
|
+
"""
|
362
|
+
Configuration related to multi-tenant functionality.
|
363
|
+
Structure is documented below.
|
364
|
+
"""
|
365
|
+
return pulumi.get(self, "multi_tenant")
|
366
|
+
|
367
|
+
@multi_tenant.setter
|
368
|
+
def multi_tenant(self, value: Optional[pulumi.Input['ConfigMultiTenantArgs']]):
|
369
|
+
pulumi.set(self, "multi_tenant", value)
|
370
|
+
|
227
371
|
@property
|
228
372
|
@pulumi.getter
|
229
373
|
def name(self) -> Optional[pulumi.Input[str]]:
|
@@ -297,6 +441,10 @@ class Config(pulumi.CustomResource):
|
|
297
441
|
authorized_domains: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
298
442
|
autodelete_anonymous_users: Optional[pulumi.Input[bool]] = None,
|
299
443
|
blocking_functions: Optional[pulumi.Input[pulumi.InputType['ConfigBlockingFunctionsArgs']]] = None,
|
444
|
+
client: Optional[pulumi.Input[pulumi.InputType['ConfigClientArgs']]] = None,
|
445
|
+
mfa: Optional[pulumi.Input[pulumi.InputType['ConfigMfaArgs']]] = None,
|
446
|
+
monitoring: Optional[pulumi.Input[pulumi.InputType['ConfigMonitoringArgs']]] = None,
|
447
|
+
multi_tenant: Optional[pulumi.Input[pulumi.InputType['ConfigMultiTenantArgs']]] = None,
|
300
448
|
project: Optional[pulumi.Input[str]] = None,
|
301
449
|
quota: Optional[pulumi.Input[pulumi.InputType['ConfigQuotaArgs']]] = None,
|
302
450
|
sign_in: Optional[pulumi.Input[pulumi.InputType['ConfigSignInArgs']]] = None,
|
@@ -415,6 +563,14 @@ class Config(pulumi.CustomResource):
|
|
415
563
|
:param pulumi.Input[bool] autodelete_anonymous_users: Whether anonymous users will be auto-deleted after a period of 30 days
|
416
564
|
:param pulumi.Input[pulumi.InputType['ConfigBlockingFunctionsArgs']] blocking_functions: Configuration related to blocking functions.
|
417
565
|
Structure is documented below.
|
566
|
+
:param pulumi.Input[pulumi.InputType['ConfigClientArgs']] client: Options related to how clients making requests on behalf of a project should be configured.
|
567
|
+
Structure is documented below.
|
568
|
+
:param pulumi.Input[pulumi.InputType['ConfigMfaArgs']] mfa: Options related to how clients making requests on behalf of a project should be configured.
|
569
|
+
Structure is documented below.
|
570
|
+
:param pulumi.Input[pulumi.InputType['ConfigMonitoringArgs']] monitoring: Configuration related to monitoring project activity.
|
571
|
+
Structure is documented below.
|
572
|
+
:param pulumi.Input[pulumi.InputType['ConfigMultiTenantArgs']] multi_tenant: Configuration related to multi-tenant functionality.
|
573
|
+
Structure is documented below.
|
418
574
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
419
575
|
If it is not provided, the provider project is used.
|
420
576
|
:param pulumi.Input[pulumi.InputType['ConfigQuotaArgs']] quota: Configuration related to quotas.
|
@@ -555,6 +711,10 @@ class Config(pulumi.CustomResource):
|
|
555
711
|
authorized_domains: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
556
712
|
autodelete_anonymous_users: Optional[pulumi.Input[bool]] = None,
|
557
713
|
blocking_functions: Optional[pulumi.Input[pulumi.InputType['ConfigBlockingFunctionsArgs']]] = None,
|
714
|
+
client: Optional[pulumi.Input[pulumi.InputType['ConfigClientArgs']]] = None,
|
715
|
+
mfa: Optional[pulumi.Input[pulumi.InputType['ConfigMfaArgs']]] = None,
|
716
|
+
monitoring: Optional[pulumi.Input[pulumi.InputType['ConfigMonitoringArgs']]] = None,
|
717
|
+
multi_tenant: Optional[pulumi.Input[pulumi.InputType['ConfigMultiTenantArgs']]] = None,
|
558
718
|
project: Optional[pulumi.Input[str]] = None,
|
559
719
|
quota: Optional[pulumi.Input[pulumi.InputType['ConfigQuotaArgs']]] = None,
|
560
720
|
sign_in: Optional[pulumi.Input[pulumi.InputType['ConfigSignInArgs']]] = None,
|
@@ -571,6 +731,10 @@ class Config(pulumi.CustomResource):
|
|
571
731
|
__props__.__dict__["authorized_domains"] = authorized_domains
|
572
732
|
__props__.__dict__["autodelete_anonymous_users"] = autodelete_anonymous_users
|
573
733
|
__props__.__dict__["blocking_functions"] = blocking_functions
|
734
|
+
__props__.__dict__["client"] = client
|
735
|
+
__props__.__dict__["mfa"] = mfa
|
736
|
+
__props__.__dict__["monitoring"] = monitoring
|
737
|
+
__props__.__dict__["multi_tenant"] = multi_tenant
|
574
738
|
__props__.__dict__["project"] = project
|
575
739
|
__props__.__dict__["quota"] = quota
|
576
740
|
__props__.__dict__["sign_in"] = sign_in
|
@@ -589,6 +753,10 @@ class Config(pulumi.CustomResource):
|
|
589
753
|
authorized_domains: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
590
754
|
autodelete_anonymous_users: Optional[pulumi.Input[bool]] = None,
|
591
755
|
blocking_functions: Optional[pulumi.Input[pulumi.InputType['ConfigBlockingFunctionsArgs']]] = None,
|
756
|
+
client: Optional[pulumi.Input[pulumi.InputType['ConfigClientArgs']]] = None,
|
757
|
+
mfa: Optional[pulumi.Input[pulumi.InputType['ConfigMfaArgs']]] = None,
|
758
|
+
monitoring: Optional[pulumi.Input[pulumi.InputType['ConfigMonitoringArgs']]] = None,
|
759
|
+
multi_tenant: Optional[pulumi.Input[pulumi.InputType['ConfigMultiTenantArgs']]] = None,
|
592
760
|
name: Optional[pulumi.Input[str]] = None,
|
593
761
|
project: Optional[pulumi.Input[str]] = None,
|
594
762
|
quota: Optional[pulumi.Input[pulumi.InputType['ConfigQuotaArgs']]] = None,
|
@@ -605,6 +773,14 @@ class Config(pulumi.CustomResource):
|
|
605
773
|
:param pulumi.Input[bool] autodelete_anonymous_users: Whether anonymous users will be auto-deleted after a period of 30 days
|
606
774
|
:param pulumi.Input[pulumi.InputType['ConfigBlockingFunctionsArgs']] blocking_functions: Configuration related to blocking functions.
|
607
775
|
Structure is documented below.
|
776
|
+
:param pulumi.Input[pulumi.InputType['ConfigClientArgs']] client: Options related to how clients making requests on behalf of a project should be configured.
|
777
|
+
Structure is documented below.
|
778
|
+
:param pulumi.Input[pulumi.InputType['ConfigMfaArgs']] mfa: Options related to how clients making requests on behalf of a project should be configured.
|
779
|
+
Structure is documented below.
|
780
|
+
:param pulumi.Input[pulumi.InputType['ConfigMonitoringArgs']] monitoring: Configuration related to monitoring project activity.
|
781
|
+
Structure is documented below.
|
782
|
+
:param pulumi.Input[pulumi.InputType['ConfigMultiTenantArgs']] multi_tenant: Configuration related to multi-tenant functionality.
|
783
|
+
Structure is documented below.
|
608
784
|
:param pulumi.Input[str] name: The name of the Config resource
|
609
785
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
610
786
|
If it is not provided, the provider project is used.
|
@@ -622,6 +798,10 @@ class Config(pulumi.CustomResource):
|
|
622
798
|
__props__.__dict__["authorized_domains"] = authorized_domains
|
623
799
|
__props__.__dict__["autodelete_anonymous_users"] = autodelete_anonymous_users
|
624
800
|
__props__.__dict__["blocking_functions"] = blocking_functions
|
801
|
+
__props__.__dict__["client"] = client
|
802
|
+
__props__.__dict__["mfa"] = mfa
|
803
|
+
__props__.__dict__["monitoring"] = monitoring
|
804
|
+
__props__.__dict__["multi_tenant"] = multi_tenant
|
625
805
|
__props__.__dict__["name"] = name
|
626
806
|
__props__.__dict__["project"] = project
|
627
807
|
__props__.__dict__["quota"] = quota
|
@@ -654,6 +834,42 @@ class Config(pulumi.CustomResource):
|
|
654
834
|
"""
|
655
835
|
return pulumi.get(self, "blocking_functions")
|
656
836
|
|
837
|
+
@property
|
838
|
+
@pulumi.getter
|
839
|
+
def client(self) -> pulumi.Output['outputs.ConfigClient']:
|
840
|
+
"""
|
841
|
+
Options related to how clients making requests on behalf of a project should be configured.
|
842
|
+
Structure is documented below.
|
843
|
+
"""
|
844
|
+
return pulumi.get(self, "client")
|
845
|
+
|
846
|
+
@property
|
847
|
+
@pulumi.getter
|
848
|
+
def mfa(self) -> pulumi.Output['outputs.ConfigMfa']:
|
849
|
+
"""
|
850
|
+
Options related to how clients making requests on behalf of a project should be configured.
|
851
|
+
Structure is documented below.
|
852
|
+
"""
|
853
|
+
return pulumi.get(self, "mfa")
|
854
|
+
|
855
|
+
@property
|
856
|
+
@pulumi.getter
|
857
|
+
def monitoring(self) -> pulumi.Output['outputs.ConfigMonitoring']:
|
858
|
+
"""
|
859
|
+
Configuration related to monitoring project activity.
|
860
|
+
Structure is documented below.
|
861
|
+
"""
|
862
|
+
return pulumi.get(self, "monitoring")
|
863
|
+
|
864
|
+
@property
|
865
|
+
@pulumi.getter(name="multiTenant")
|
866
|
+
def multi_tenant(self) -> pulumi.Output[Optional['outputs.ConfigMultiTenant']]:
|
867
|
+
"""
|
868
|
+
Configuration related to multi-tenant functionality.
|
869
|
+
Structure is documented below.
|
870
|
+
"""
|
871
|
+
return pulumi.get(self, "multi_tenant")
|
872
|
+
|
657
873
|
@property
|
658
874
|
@pulumi.getter
|
659
875
|
def name(self) -> pulumi.Output[str]:
|