pulumi-gcp 7.10.0a1708496697__py3-none-any.whl → 7.11.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 +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.11.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.10.0a1708496697.dist-info → pulumi_gcp-7.11.0.dist-info}/RECORD +57 -53
- {pulumi_gcp-7.10.0a1708496697.dist-info → pulumi_gcp-7.11.0.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.10.0a1708496697.dist-info → pulumi_gcp-7.11.0.dist-info}/top_level.txt +0 -0
@@ -14,6 +14,14 @@ __all__ = [
|
|
14
14
|
'ConfigBlockingFunctions',
|
15
15
|
'ConfigBlockingFunctionsForwardInboundCredentials',
|
16
16
|
'ConfigBlockingFunctionsTrigger',
|
17
|
+
'ConfigClient',
|
18
|
+
'ConfigClientPermissions',
|
19
|
+
'ConfigMfa',
|
20
|
+
'ConfigMfaProviderConfig',
|
21
|
+
'ConfigMfaProviderConfigTotpProviderConfig',
|
22
|
+
'ConfigMonitoring',
|
23
|
+
'ConfigMonitoringRequestLogging',
|
24
|
+
'ConfigMultiTenant',
|
17
25
|
'ConfigQuota',
|
18
26
|
'ConfigQuotaSignUpQuotaConfig',
|
19
27
|
'ConfigSignIn',
|
@@ -218,6 +226,395 @@ class ConfigBlockingFunctionsTrigger(dict):
|
|
218
226
|
return pulumi.get(self, "update_time")
|
219
227
|
|
220
228
|
|
229
|
+
@pulumi.output_type
|
230
|
+
class ConfigClient(dict):
|
231
|
+
@staticmethod
|
232
|
+
def __key_warning(key: str):
|
233
|
+
suggest = None
|
234
|
+
if key == "apiKey":
|
235
|
+
suggest = "api_key"
|
236
|
+
elif key == "firebaseSubdomain":
|
237
|
+
suggest = "firebase_subdomain"
|
238
|
+
|
239
|
+
if suggest:
|
240
|
+
pulumi.log.warn(f"Key '{key}' not found in ConfigClient. Access the value via the '{suggest}' property getter instead.")
|
241
|
+
|
242
|
+
def __getitem__(self, key: str) -> Any:
|
243
|
+
ConfigClient.__key_warning(key)
|
244
|
+
return super().__getitem__(key)
|
245
|
+
|
246
|
+
def get(self, key: str, default = None) -> Any:
|
247
|
+
ConfigClient.__key_warning(key)
|
248
|
+
return super().get(key, default)
|
249
|
+
|
250
|
+
def __init__(__self__, *,
|
251
|
+
api_key: Optional[str] = None,
|
252
|
+
firebase_subdomain: Optional[str] = None,
|
253
|
+
permissions: Optional['outputs.ConfigClientPermissions'] = None):
|
254
|
+
"""
|
255
|
+
:param str api_key: (Output)
|
256
|
+
API key that can be used when making requests for this project.
|
257
|
+
**Note**: This property is sensitive and will not be displayed in the plan.
|
258
|
+
:param str firebase_subdomain: (Output)
|
259
|
+
Firebase subdomain.
|
260
|
+
:param 'ConfigClientPermissionsArgs' permissions: Configuration related to restricting a user's ability to affect their account.
|
261
|
+
Structure is documented below.
|
262
|
+
"""
|
263
|
+
if api_key is not None:
|
264
|
+
pulumi.set(__self__, "api_key", api_key)
|
265
|
+
if firebase_subdomain is not None:
|
266
|
+
pulumi.set(__self__, "firebase_subdomain", firebase_subdomain)
|
267
|
+
if permissions is not None:
|
268
|
+
pulumi.set(__self__, "permissions", permissions)
|
269
|
+
|
270
|
+
@property
|
271
|
+
@pulumi.getter(name="apiKey")
|
272
|
+
def api_key(self) -> Optional[str]:
|
273
|
+
"""
|
274
|
+
(Output)
|
275
|
+
API key that can be used when making requests for this project.
|
276
|
+
**Note**: This property is sensitive and will not be displayed in the plan.
|
277
|
+
"""
|
278
|
+
return pulumi.get(self, "api_key")
|
279
|
+
|
280
|
+
@property
|
281
|
+
@pulumi.getter(name="firebaseSubdomain")
|
282
|
+
def firebase_subdomain(self) -> Optional[str]:
|
283
|
+
"""
|
284
|
+
(Output)
|
285
|
+
Firebase subdomain.
|
286
|
+
"""
|
287
|
+
return pulumi.get(self, "firebase_subdomain")
|
288
|
+
|
289
|
+
@property
|
290
|
+
@pulumi.getter
|
291
|
+
def permissions(self) -> Optional['outputs.ConfigClientPermissions']:
|
292
|
+
"""
|
293
|
+
Configuration related to restricting a user's ability to affect their account.
|
294
|
+
Structure is documented below.
|
295
|
+
"""
|
296
|
+
return pulumi.get(self, "permissions")
|
297
|
+
|
298
|
+
|
299
|
+
@pulumi.output_type
|
300
|
+
class ConfigClientPermissions(dict):
|
301
|
+
@staticmethod
|
302
|
+
def __key_warning(key: str):
|
303
|
+
suggest = None
|
304
|
+
if key == "disabledUserDeletion":
|
305
|
+
suggest = "disabled_user_deletion"
|
306
|
+
elif key == "disabledUserSignup":
|
307
|
+
suggest = "disabled_user_signup"
|
308
|
+
|
309
|
+
if suggest:
|
310
|
+
pulumi.log.warn(f"Key '{key}' not found in ConfigClientPermissions. Access the value via the '{suggest}' property getter instead.")
|
311
|
+
|
312
|
+
def __getitem__(self, key: str) -> Any:
|
313
|
+
ConfigClientPermissions.__key_warning(key)
|
314
|
+
return super().__getitem__(key)
|
315
|
+
|
316
|
+
def get(self, key: str, default = None) -> Any:
|
317
|
+
ConfigClientPermissions.__key_warning(key)
|
318
|
+
return super().get(key, default)
|
319
|
+
|
320
|
+
def __init__(__self__, *,
|
321
|
+
disabled_user_deletion: Optional[bool] = None,
|
322
|
+
disabled_user_signup: Optional[bool] = None):
|
323
|
+
"""
|
324
|
+
:param bool disabled_user_deletion: When true, end users cannot delete their account on the associated project through any of our API methods
|
325
|
+
:param 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
|
326
|
+
"""
|
327
|
+
if disabled_user_deletion is not None:
|
328
|
+
pulumi.set(__self__, "disabled_user_deletion", disabled_user_deletion)
|
329
|
+
if disabled_user_signup is not None:
|
330
|
+
pulumi.set(__self__, "disabled_user_signup", disabled_user_signup)
|
331
|
+
|
332
|
+
@property
|
333
|
+
@pulumi.getter(name="disabledUserDeletion")
|
334
|
+
def disabled_user_deletion(self) -> Optional[bool]:
|
335
|
+
"""
|
336
|
+
When true, end users cannot delete their account on the associated project through any of our API methods
|
337
|
+
"""
|
338
|
+
return pulumi.get(self, "disabled_user_deletion")
|
339
|
+
|
340
|
+
@property
|
341
|
+
@pulumi.getter(name="disabledUserSignup")
|
342
|
+
def disabled_user_signup(self) -> Optional[bool]:
|
343
|
+
"""
|
344
|
+
When true, end users cannot sign up for a new account on the associated project through any of our API methods
|
345
|
+
"""
|
346
|
+
return pulumi.get(self, "disabled_user_signup")
|
347
|
+
|
348
|
+
|
349
|
+
@pulumi.output_type
|
350
|
+
class ConfigMfa(dict):
|
351
|
+
@staticmethod
|
352
|
+
def __key_warning(key: str):
|
353
|
+
suggest = None
|
354
|
+
if key == "enabledProviders":
|
355
|
+
suggest = "enabled_providers"
|
356
|
+
elif key == "providerConfigs":
|
357
|
+
suggest = "provider_configs"
|
358
|
+
|
359
|
+
if suggest:
|
360
|
+
pulumi.log.warn(f"Key '{key}' not found in ConfigMfa. Access the value via the '{suggest}' property getter instead.")
|
361
|
+
|
362
|
+
def __getitem__(self, key: str) -> Any:
|
363
|
+
ConfigMfa.__key_warning(key)
|
364
|
+
return super().__getitem__(key)
|
365
|
+
|
366
|
+
def get(self, key: str, default = None) -> Any:
|
367
|
+
ConfigMfa.__key_warning(key)
|
368
|
+
return super().get(key, default)
|
369
|
+
|
370
|
+
def __init__(__self__, *,
|
371
|
+
enabled_providers: Optional[Sequence[str]] = None,
|
372
|
+
provider_configs: Optional[Sequence['outputs.ConfigMfaProviderConfig']] = None,
|
373
|
+
state: Optional[str] = None):
|
374
|
+
"""
|
375
|
+
:param Sequence[str] enabled_providers: A list of usable second factors for this project.
|
376
|
+
Each value may be one of: `PHONE_SMS`.
|
377
|
+
:param Sequence['ConfigMfaProviderConfigArgs'] provider_configs: A list of usable second factors for this project along with their configurations.
|
378
|
+
This field does not support phone based MFA, for that use the 'enabledProviders' field.
|
379
|
+
Structure is documented below.
|
380
|
+
:param str state: Whether MultiFactor Authentication has been enabled for this project.
|
381
|
+
Possible values are: `DISABLED`, `ENABLED`, `MANDATORY`.
|
382
|
+
"""
|
383
|
+
if enabled_providers is not None:
|
384
|
+
pulumi.set(__self__, "enabled_providers", enabled_providers)
|
385
|
+
if provider_configs is not None:
|
386
|
+
pulumi.set(__self__, "provider_configs", provider_configs)
|
387
|
+
if state is not None:
|
388
|
+
pulumi.set(__self__, "state", state)
|
389
|
+
|
390
|
+
@property
|
391
|
+
@pulumi.getter(name="enabledProviders")
|
392
|
+
def enabled_providers(self) -> Optional[Sequence[str]]:
|
393
|
+
"""
|
394
|
+
A list of usable second factors for this project.
|
395
|
+
Each value may be one of: `PHONE_SMS`.
|
396
|
+
"""
|
397
|
+
return pulumi.get(self, "enabled_providers")
|
398
|
+
|
399
|
+
@property
|
400
|
+
@pulumi.getter(name="providerConfigs")
|
401
|
+
def provider_configs(self) -> Optional[Sequence['outputs.ConfigMfaProviderConfig']]:
|
402
|
+
"""
|
403
|
+
A list of usable second factors for this project along with their configurations.
|
404
|
+
This field does not support phone based MFA, for that use the 'enabledProviders' field.
|
405
|
+
Structure is documented below.
|
406
|
+
"""
|
407
|
+
return pulumi.get(self, "provider_configs")
|
408
|
+
|
409
|
+
@property
|
410
|
+
@pulumi.getter
|
411
|
+
def state(self) -> Optional[str]:
|
412
|
+
"""
|
413
|
+
Whether MultiFactor Authentication has been enabled for this project.
|
414
|
+
Possible values are: `DISABLED`, `ENABLED`, `MANDATORY`.
|
415
|
+
"""
|
416
|
+
return pulumi.get(self, "state")
|
417
|
+
|
418
|
+
|
419
|
+
@pulumi.output_type
|
420
|
+
class ConfigMfaProviderConfig(dict):
|
421
|
+
@staticmethod
|
422
|
+
def __key_warning(key: str):
|
423
|
+
suggest = None
|
424
|
+
if key == "totpProviderConfig":
|
425
|
+
suggest = "totp_provider_config"
|
426
|
+
|
427
|
+
if suggest:
|
428
|
+
pulumi.log.warn(f"Key '{key}' not found in ConfigMfaProviderConfig. Access the value via the '{suggest}' property getter instead.")
|
429
|
+
|
430
|
+
def __getitem__(self, key: str) -> Any:
|
431
|
+
ConfigMfaProviderConfig.__key_warning(key)
|
432
|
+
return super().__getitem__(key)
|
433
|
+
|
434
|
+
def get(self, key: str, default = None) -> Any:
|
435
|
+
ConfigMfaProviderConfig.__key_warning(key)
|
436
|
+
return super().get(key, default)
|
437
|
+
|
438
|
+
def __init__(__self__, *,
|
439
|
+
state: Optional[str] = None,
|
440
|
+
totp_provider_config: Optional['outputs.ConfigMfaProviderConfigTotpProviderConfig'] = None):
|
441
|
+
"""
|
442
|
+
:param str state: Whether MultiFactor Authentication has been enabled for this project.
|
443
|
+
Possible values are: `DISABLED`, `ENABLED`, `MANDATORY`.
|
444
|
+
:param 'ConfigMfaProviderConfigTotpProviderConfigArgs' totp_provider_config: TOTP MFA provider config for this project.
|
445
|
+
Structure is documented below.
|
446
|
+
"""
|
447
|
+
if state is not None:
|
448
|
+
pulumi.set(__self__, "state", state)
|
449
|
+
if totp_provider_config is not None:
|
450
|
+
pulumi.set(__self__, "totp_provider_config", totp_provider_config)
|
451
|
+
|
452
|
+
@property
|
453
|
+
@pulumi.getter
|
454
|
+
def state(self) -> Optional[str]:
|
455
|
+
"""
|
456
|
+
Whether MultiFactor Authentication has been enabled for this project.
|
457
|
+
Possible values are: `DISABLED`, `ENABLED`, `MANDATORY`.
|
458
|
+
"""
|
459
|
+
return pulumi.get(self, "state")
|
460
|
+
|
461
|
+
@property
|
462
|
+
@pulumi.getter(name="totpProviderConfig")
|
463
|
+
def totp_provider_config(self) -> Optional['outputs.ConfigMfaProviderConfigTotpProviderConfig']:
|
464
|
+
"""
|
465
|
+
TOTP MFA provider config for this project.
|
466
|
+
Structure is documented below.
|
467
|
+
"""
|
468
|
+
return pulumi.get(self, "totp_provider_config")
|
469
|
+
|
470
|
+
|
471
|
+
@pulumi.output_type
|
472
|
+
class ConfigMfaProviderConfigTotpProviderConfig(dict):
|
473
|
+
@staticmethod
|
474
|
+
def __key_warning(key: str):
|
475
|
+
suggest = None
|
476
|
+
if key == "adjacentIntervals":
|
477
|
+
suggest = "adjacent_intervals"
|
478
|
+
|
479
|
+
if suggest:
|
480
|
+
pulumi.log.warn(f"Key '{key}' not found in ConfigMfaProviderConfigTotpProviderConfig. Access the value via the '{suggest}' property getter instead.")
|
481
|
+
|
482
|
+
def __getitem__(self, key: str) -> Any:
|
483
|
+
ConfigMfaProviderConfigTotpProviderConfig.__key_warning(key)
|
484
|
+
return super().__getitem__(key)
|
485
|
+
|
486
|
+
def get(self, key: str, default = None) -> Any:
|
487
|
+
ConfigMfaProviderConfigTotpProviderConfig.__key_warning(key)
|
488
|
+
return super().get(key, default)
|
489
|
+
|
490
|
+
def __init__(__self__, *,
|
491
|
+
adjacent_intervals: Optional[int] = None):
|
492
|
+
"""
|
493
|
+
:param int adjacent_intervals: The allowed number of adjacent intervals that will be used for verification to avoid clock skew.
|
494
|
+
"""
|
495
|
+
if adjacent_intervals is not None:
|
496
|
+
pulumi.set(__self__, "adjacent_intervals", adjacent_intervals)
|
497
|
+
|
498
|
+
@property
|
499
|
+
@pulumi.getter(name="adjacentIntervals")
|
500
|
+
def adjacent_intervals(self) -> Optional[int]:
|
501
|
+
"""
|
502
|
+
The allowed number of adjacent intervals that will be used for verification to avoid clock skew.
|
503
|
+
"""
|
504
|
+
return pulumi.get(self, "adjacent_intervals")
|
505
|
+
|
506
|
+
|
507
|
+
@pulumi.output_type
|
508
|
+
class ConfigMonitoring(dict):
|
509
|
+
@staticmethod
|
510
|
+
def __key_warning(key: str):
|
511
|
+
suggest = None
|
512
|
+
if key == "requestLogging":
|
513
|
+
suggest = "request_logging"
|
514
|
+
|
515
|
+
if suggest:
|
516
|
+
pulumi.log.warn(f"Key '{key}' not found in ConfigMonitoring. Access the value via the '{suggest}' property getter instead.")
|
517
|
+
|
518
|
+
def __getitem__(self, key: str) -> Any:
|
519
|
+
ConfigMonitoring.__key_warning(key)
|
520
|
+
return super().__getitem__(key)
|
521
|
+
|
522
|
+
def get(self, key: str, default = None) -> Any:
|
523
|
+
ConfigMonitoring.__key_warning(key)
|
524
|
+
return super().get(key, default)
|
525
|
+
|
526
|
+
def __init__(__self__, *,
|
527
|
+
request_logging: Optional['outputs.ConfigMonitoringRequestLogging'] = None):
|
528
|
+
"""
|
529
|
+
:param 'ConfigMonitoringRequestLoggingArgs' request_logging: Configuration for logging requests made to this project to Stackdriver Logging
|
530
|
+
Structure is documented below.
|
531
|
+
"""
|
532
|
+
if request_logging is not None:
|
533
|
+
pulumi.set(__self__, "request_logging", request_logging)
|
534
|
+
|
535
|
+
@property
|
536
|
+
@pulumi.getter(name="requestLogging")
|
537
|
+
def request_logging(self) -> Optional['outputs.ConfigMonitoringRequestLogging']:
|
538
|
+
"""
|
539
|
+
Configuration for logging requests made to this project to Stackdriver Logging
|
540
|
+
Structure is documented below.
|
541
|
+
"""
|
542
|
+
return pulumi.get(self, "request_logging")
|
543
|
+
|
544
|
+
|
545
|
+
@pulumi.output_type
|
546
|
+
class ConfigMonitoringRequestLogging(dict):
|
547
|
+
def __init__(__self__, *,
|
548
|
+
enabled: Optional[bool] = None):
|
549
|
+
"""
|
550
|
+
:param bool enabled: Whether logging is enabled for this project or not.
|
551
|
+
"""
|
552
|
+
if enabled is not None:
|
553
|
+
pulumi.set(__self__, "enabled", enabled)
|
554
|
+
|
555
|
+
@property
|
556
|
+
@pulumi.getter
|
557
|
+
def enabled(self) -> Optional[bool]:
|
558
|
+
"""
|
559
|
+
Whether logging is enabled for this project or not.
|
560
|
+
"""
|
561
|
+
return pulumi.get(self, "enabled")
|
562
|
+
|
563
|
+
|
564
|
+
@pulumi.output_type
|
565
|
+
class ConfigMultiTenant(dict):
|
566
|
+
@staticmethod
|
567
|
+
def __key_warning(key: str):
|
568
|
+
suggest = None
|
569
|
+
if key == "allowTenants":
|
570
|
+
suggest = "allow_tenants"
|
571
|
+
elif key == "defaultTenantLocation":
|
572
|
+
suggest = "default_tenant_location"
|
573
|
+
|
574
|
+
if suggest:
|
575
|
+
pulumi.log.warn(f"Key '{key}' not found in ConfigMultiTenant. Access the value via the '{suggest}' property getter instead.")
|
576
|
+
|
577
|
+
def __getitem__(self, key: str) -> Any:
|
578
|
+
ConfigMultiTenant.__key_warning(key)
|
579
|
+
return super().__getitem__(key)
|
580
|
+
|
581
|
+
def get(self, key: str, default = None) -> Any:
|
582
|
+
ConfigMultiTenant.__key_warning(key)
|
583
|
+
return super().get(key, default)
|
584
|
+
|
585
|
+
def __init__(__self__, *,
|
586
|
+
allow_tenants: Optional[bool] = None,
|
587
|
+
default_tenant_location: Optional[str] = None):
|
588
|
+
"""
|
589
|
+
:param bool allow_tenants: Whether this project can have tenants or not.
|
590
|
+
:param str default_tenant_location: The default cloud parent org or folder that the tenant project should be created under.
|
591
|
+
The parent resource name should be in the format of "/", such as "folders/123" or "organizations/456".
|
592
|
+
If the value is not set, the tenant will be created under the same organization or folder as the agent project.
|
593
|
+
"""
|
594
|
+
if allow_tenants is not None:
|
595
|
+
pulumi.set(__self__, "allow_tenants", allow_tenants)
|
596
|
+
if default_tenant_location is not None:
|
597
|
+
pulumi.set(__self__, "default_tenant_location", default_tenant_location)
|
598
|
+
|
599
|
+
@property
|
600
|
+
@pulumi.getter(name="allowTenants")
|
601
|
+
def allow_tenants(self) -> Optional[bool]:
|
602
|
+
"""
|
603
|
+
Whether this project can have tenants or not.
|
604
|
+
"""
|
605
|
+
return pulumi.get(self, "allow_tenants")
|
606
|
+
|
607
|
+
@property
|
608
|
+
@pulumi.getter(name="defaultTenantLocation")
|
609
|
+
def default_tenant_location(self) -> Optional[str]:
|
610
|
+
"""
|
611
|
+
The default cloud parent org or folder that the tenant project should be created under.
|
612
|
+
The parent resource name should be in the format of "/", such as "folders/123" or "organizations/456".
|
613
|
+
If the value is not set, the tenant will be created under the same organization or folder as the agent project.
|
614
|
+
"""
|
615
|
+
return pulumi.get(self, "default_tenant_location")
|
616
|
+
|
617
|
+
|
221
618
|
@pulumi.output_type
|
222
619
|
class ConfigQuota(dict):
|
223
620
|
@staticmethod
|
@@ -11,10 +11,12 @@ from .address_group_iam_member import *
|
|
11
11
|
from .address_group_iam_policy import *
|
12
12
|
from .authorization_policy import *
|
13
13
|
from .client_tls_policy import *
|
14
|
+
from .firewall_endpoint import *
|
14
15
|
from .gateway_security_policy import *
|
15
16
|
from .gateway_security_policy_rule import *
|
16
17
|
from .get_address_group_iam_policy import *
|
17
18
|
from .security_profile import *
|
19
|
+
from .security_profile_group import *
|
18
20
|
from .server_tls_policy import *
|
19
21
|
from .tls_inspection_policy import *
|
20
22
|
from .url_list import *
|