pulumi-snowflake 2.9.0a1761589382__py3-none-any.whl → 2.9.0a1761968339__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.
Potentially problematic release.
This version of pulumi-snowflake might be problematic. Click here for more details.
- pulumi_snowflake/__init__.py +1 -0
- pulumi_snowflake/_inputs.py +482 -1
- pulumi_snowflake/authentication_policy.py +172 -31
- pulumi_snowflake/compute_pool.py +7 -7
- pulumi_snowflake/config/__init__.pyi +16 -1
- pulumi_snowflake/config/vars.py +22 -1
- pulumi_snowflake/get_authentication_policies.py +214 -0
- pulumi_snowflake/get_compute_pools.py +0 -4
- pulumi_snowflake/get_git_repositories.py +0 -4
- pulumi_snowflake/get_image_repositories.py +0 -4
- pulumi_snowflake/get_services.py +0 -4
- pulumi_snowflake/get_user_programmatic_access_tokens.py +0 -4
- pulumi_snowflake/get_warehouses.py +4 -0
- pulumi_snowflake/outputs.py +539 -1
- pulumi_snowflake/provider.py +81 -5
- pulumi_snowflake/pulumi-plugin.json +1 -1
- {pulumi_snowflake-2.9.0a1761589382.dist-info → pulumi_snowflake-2.9.0a1761968339.dist-info}/METADATA +1 -1
- {pulumi_snowflake-2.9.0a1761589382.dist-info → pulumi_snowflake-2.9.0a1761968339.dist-info}/RECORD +20 -19
- {pulumi_snowflake-2.9.0a1761589382.dist-info → pulumi_snowflake-2.9.0a1761968339.dist-info}/WHEEL +0 -0
- {pulumi_snowflake-2.9.0a1761589382.dist-info → pulumi_snowflake-2.9.0a1761968339.dist-info}/top_level.txt +0 -0
pulumi_snowflake/outputs.py
CHANGED
|
@@ -60,7 +60,10 @@ __all__ = [
|
|
|
60
60
|
'ApiAuthenticationIntegrationWithJwtBearerDescribeOutputParentIntegration',
|
|
61
61
|
'ApiAuthenticationIntegrationWithJwtBearerShowOutput',
|
|
62
62
|
'AuthenticationPolicyDescribeOutput',
|
|
63
|
+
'AuthenticationPolicyMfaPolicy',
|
|
64
|
+
'AuthenticationPolicyPatPolicy',
|
|
63
65
|
'AuthenticationPolicyShowOutput',
|
|
66
|
+
'AuthenticationPolicyWorkloadIdentityPolicy',
|
|
64
67
|
'ComputePoolDescribeOutput',
|
|
65
68
|
'ComputePoolShowOutput',
|
|
66
69
|
'CortexSearchServiceDescribeOutput',
|
|
@@ -622,6 +625,12 @@ __all__ = [
|
|
|
622
625
|
'GetAccountsAccountResult',
|
|
623
626
|
'GetAccountsAccountShowOutputResult',
|
|
624
627
|
'GetAlertsAlertResult',
|
|
628
|
+
'GetAuthenticationPoliciesAuthenticationPolicyResult',
|
|
629
|
+
'GetAuthenticationPoliciesAuthenticationPolicyDescribeOutputResult',
|
|
630
|
+
'GetAuthenticationPoliciesAuthenticationPolicyShowOutputResult',
|
|
631
|
+
'GetAuthenticationPoliciesInResult',
|
|
632
|
+
'GetAuthenticationPoliciesLimitResult',
|
|
633
|
+
'GetAuthenticationPoliciesOnResult',
|
|
625
634
|
'GetComputePoolsComputePoolResult',
|
|
626
635
|
'GetComputePoolsComputePoolDescribeOutputResult',
|
|
627
636
|
'GetComputePoolsComputePoolShowOutputResult',
|
|
@@ -3277,8 +3286,14 @@ class AuthenticationPolicyDescribeOutput(dict):
|
|
|
3277
3286
|
suggest = "mfa_authentication_methods"
|
|
3278
3287
|
elif key == "mfaEnrollment":
|
|
3279
3288
|
suggest = "mfa_enrollment"
|
|
3289
|
+
elif key == "mfaPolicy":
|
|
3290
|
+
suggest = "mfa_policy"
|
|
3291
|
+
elif key == "patPolicy":
|
|
3292
|
+
suggest = "pat_policy"
|
|
3280
3293
|
elif key == "securityIntegrations":
|
|
3281
3294
|
suggest = "security_integrations"
|
|
3295
|
+
elif key == "workloadIdentityPolicy":
|
|
3296
|
+
suggest = "workload_identity_policy"
|
|
3282
3297
|
|
|
3283
3298
|
if suggest:
|
|
3284
3299
|
pulumi.log.warn(f"Key '{key}' not found in AuthenticationPolicyDescribeOutput. Access the value via the '{suggest}' property getter instead.")
|
|
@@ -3297,9 +3312,12 @@ class AuthenticationPolicyDescribeOutput(dict):
|
|
|
3297
3312
|
comment: Optional[_builtins.str] = None,
|
|
3298
3313
|
mfa_authentication_methods: Optional[_builtins.str] = None,
|
|
3299
3314
|
mfa_enrollment: Optional[_builtins.str] = None,
|
|
3315
|
+
mfa_policy: Optional[_builtins.str] = None,
|
|
3300
3316
|
name: Optional[_builtins.str] = None,
|
|
3301
3317
|
owner: Optional[_builtins.str] = None,
|
|
3302
|
-
|
|
3318
|
+
pat_policy: Optional[_builtins.str] = None,
|
|
3319
|
+
security_integrations: Optional[_builtins.str] = None,
|
|
3320
|
+
workload_identity_policy: Optional[_builtins.str] = None):
|
|
3303
3321
|
if authentication_methods is not None:
|
|
3304
3322
|
pulumi.set(__self__, "authentication_methods", authentication_methods)
|
|
3305
3323
|
if client_types is not None:
|
|
@@ -3310,12 +3328,18 @@ class AuthenticationPolicyDescribeOutput(dict):
|
|
|
3310
3328
|
pulumi.set(__self__, "mfa_authentication_methods", mfa_authentication_methods)
|
|
3311
3329
|
if mfa_enrollment is not None:
|
|
3312
3330
|
pulumi.set(__self__, "mfa_enrollment", mfa_enrollment)
|
|
3331
|
+
if mfa_policy is not None:
|
|
3332
|
+
pulumi.set(__self__, "mfa_policy", mfa_policy)
|
|
3313
3333
|
if name is not None:
|
|
3314
3334
|
pulumi.set(__self__, "name", name)
|
|
3315
3335
|
if owner is not None:
|
|
3316
3336
|
pulumi.set(__self__, "owner", owner)
|
|
3337
|
+
if pat_policy is not None:
|
|
3338
|
+
pulumi.set(__self__, "pat_policy", pat_policy)
|
|
3317
3339
|
if security_integrations is not None:
|
|
3318
3340
|
pulumi.set(__self__, "security_integrations", security_integrations)
|
|
3341
|
+
if workload_identity_policy is not None:
|
|
3342
|
+
pulumi.set(__self__, "workload_identity_policy", workload_identity_policy)
|
|
3319
3343
|
|
|
3320
3344
|
@_builtins.property
|
|
3321
3345
|
@pulumi.getter(name="authenticationMethods")
|
|
@@ -3342,6 +3366,11 @@ class AuthenticationPolicyDescribeOutput(dict):
|
|
|
3342
3366
|
def mfa_enrollment(self) -> Optional[_builtins.str]:
|
|
3343
3367
|
return pulumi.get(self, "mfa_enrollment")
|
|
3344
3368
|
|
|
3369
|
+
@_builtins.property
|
|
3370
|
+
@pulumi.getter(name="mfaPolicy")
|
|
3371
|
+
def mfa_policy(self) -> Optional[_builtins.str]:
|
|
3372
|
+
return pulumi.get(self, "mfa_policy")
|
|
3373
|
+
|
|
3345
3374
|
@_builtins.property
|
|
3346
3375
|
@pulumi.getter
|
|
3347
3376
|
def name(self) -> Optional[_builtins.str]:
|
|
@@ -3352,11 +3381,131 @@ class AuthenticationPolicyDescribeOutput(dict):
|
|
|
3352
3381
|
def owner(self) -> Optional[_builtins.str]:
|
|
3353
3382
|
return pulumi.get(self, "owner")
|
|
3354
3383
|
|
|
3384
|
+
@_builtins.property
|
|
3385
|
+
@pulumi.getter(name="patPolicy")
|
|
3386
|
+
def pat_policy(self) -> Optional[_builtins.str]:
|
|
3387
|
+
return pulumi.get(self, "pat_policy")
|
|
3388
|
+
|
|
3355
3389
|
@_builtins.property
|
|
3356
3390
|
@pulumi.getter(name="securityIntegrations")
|
|
3357
3391
|
def security_integrations(self) -> Optional[_builtins.str]:
|
|
3358
3392
|
return pulumi.get(self, "security_integrations")
|
|
3359
3393
|
|
|
3394
|
+
@_builtins.property
|
|
3395
|
+
@pulumi.getter(name="workloadIdentityPolicy")
|
|
3396
|
+
def workload_identity_policy(self) -> Optional[_builtins.str]:
|
|
3397
|
+
return pulumi.get(self, "workload_identity_policy")
|
|
3398
|
+
|
|
3399
|
+
|
|
3400
|
+
@pulumi.output_type
|
|
3401
|
+
class AuthenticationPolicyMfaPolicy(dict):
|
|
3402
|
+
@staticmethod
|
|
3403
|
+
def __key_warning(key: str):
|
|
3404
|
+
suggest = None
|
|
3405
|
+
if key == "allowedMethods":
|
|
3406
|
+
suggest = "allowed_methods"
|
|
3407
|
+
elif key == "enforceMfaOnExternalAuthentication":
|
|
3408
|
+
suggest = "enforce_mfa_on_external_authentication"
|
|
3409
|
+
|
|
3410
|
+
if suggest:
|
|
3411
|
+
pulumi.log.warn(f"Key '{key}' not found in AuthenticationPolicyMfaPolicy. Access the value via the '{suggest}' property getter instead.")
|
|
3412
|
+
|
|
3413
|
+
def __getitem__(self, key: str) -> Any:
|
|
3414
|
+
AuthenticationPolicyMfaPolicy.__key_warning(key)
|
|
3415
|
+
return super().__getitem__(key)
|
|
3416
|
+
|
|
3417
|
+
def get(self, key: str, default = None) -> Any:
|
|
3418
|
+
AuthenticationPolicyMfaPolicy.__key_warning(key)
|
|
3419
|
+
return super().get(key, default)
|
|
3420
|
+
|
|
3421
|
+
def __init__(__self__, *,
|
|
3422
|
+
allowed_methods: Optional[Sequence[_builtins.str]] = None,
|
|
3423
|
+
enforce_mfa_on_external_authentication: Optional[_builtins.str] = None):
|
|
3424
|
+
"""
|
|
3425
|
+
:param _builtins.str enforce_mfa_on_external_authentication: Determines whether multi-factor authentication (MFA) is enforced on external authentication. Valid values are (case-insensitive): `ALL` | `NONE`.
|
|
3426
|
+
"""
|
|
3427
|
+
if allowed_methods is not None:
|
|
3428
|
+
pulumi.set(__self__, "allowed_methods", allowed_methods)
|
|
3429
|
+
if enforce_mfa_on_external_authentication is not None:
|
|
3430
|
+
pulumi.set(__self__, "enforce_mfa_on_external_authentication", enforce_mfa_on_external_authentication)
|
|
3431
|
+
|
|
3432
|
+
@_builtins.property
|
|
3433
|
+
@pulumi.getter(name="allowedMethods")
|
|
3434
|
+
def allowed_methods(self) -> Optional[Sequence[_builtins.str]]:
|
|
3435
|
+
return pulumi.get(self, "allowed_methods")
|
|
3436
|
+
|
|
3437
|
+
@_builtins.property
|
|
3438
|
+
@pulumi.getter(name="enforceMfaOnExternalAuthentication")
|
|
3439
|
+
def enforce_mfa_on_external_authentication(self) -> Optional[_builtins.str]:
|
|
3440
|
+
"""
|
|
3441
|
+
Determines whether multi-factor authentication (MFA) is enforced on external authentication. Valid values are (case-insensitive): `ALL` | `NONE`.
|
|
3442
|
+
"""
|
|
3443
|
+
return pulumi.get(self, "enforce_mfa_on_external_authentication")
|
|
3444
|
+
|
|
3445
|
+
|
|
3446
|
+
@pulumi.output_type
|
|
3447
|
+
class AuthenticationPolicyPatPolicy(dict):
|
|
3448
|
+
@staticmethod
|
|
3449
|
+
def __key_warning(key: str):
|
|
3450
|
+
suggest = None
|
|
3451
|
+
if key == "defaultExpiryInDays":
|
|
3452
|
+
suggest = "default_expiry_in_days"
|
|
3453
|
+
elif key == "maxExpiryInDays":
|
|
3454
|
+
suggest = "max_expiry_in_days"
|
|
3455
|
+
elif key == "networkPolicyEvaluation":
|
|
3456
|
+
suggest = "network_policy_evaluation"
|
|
3457
|
+
|
|
3458
|
+
if suggest:
|
|
3459
|
+
pulumi.log.warn(f"Key '{key}' not found in AuthenticationPolicyPatPolicy. Access the value via the '{suggest}' property getter instead.")
|
|
3460
|
+
|
|
3461
|
+
def __getitem__(self, key: str) -> Any:
|
|
3462
|
+
AuthenticationPolicyPatPolicy.__key_warning(key)
|
|
3463
|
+
return super().__getitem__(key)
|
|
3464
|
+
|
|
3465
|
+
def get(self, key: str, default = None) -> Any:
|
|
3466
|
+
AuthenticationPolicyPatPolicy.__key_warning(key)
|
|
3467
|
+
return super().get(key, default)
|
|
3468
|
+
|
|
3469
|
+
def __init__(__self__, *,
|
|
3470
|
+
default_expiry_in_days: Optional[_builtins.int] = None,
|
|
3471
|
+
max_expiry_in_days: Optional[_builtins.int] = None,
|
|
3472
|
+
network_policy_evaluation: Optional[_builtins.str] = None):
|
|
3473
|
+
"""
|
|
3474
|
+
:param _builtins.int default_expiry_in_days: Specifies the default expiration time (in days) for a programmatic access token.
|
|
3475
|
+
:param _builtins.int max_expiry_in_days: Specifies the maximum number of days that can be set for the expiration time for a programmatic access token.
|
|
3476
|
+
:param _builtins.str network_policy_evaluation: Specifies the network policy evaluation for the PAT.
|
|
3477
|
+
"""
|
|
3478
|
+
if default_expiry_in_days is not None:
|
|
3479
|
+
pulumi.set(__self__, "default_expiry_in_days", default_expiry_in_days)
|
|
3480
|
+
if max_expiry_in_days is not None:
|
|
3481
|
+
pulumi.set(__self__, "max_expiry_in_days", max_expiry_in_days)
|
|
3482
|
+
if network_policy_evaluation is not None:
|
|
3483
|
+
pulumi.set(__self__, "network_policy_evaluation", network_policy_evaluation)
|
|
3484
|
+
|
|
3485
|
+
@_builtins.property
|
|
3486
|
+
@pulumi.getter(name="defaultExpiryInDays")
|
|
3487
|
+
def default_expiry_in_days(self) -> Optional[_builtins.int]:
|
|
3488
|
+
"""
|
|
3489
|
+
Specifies the default expiration time (in days) for a programmatic access token.
|
|
3490
|
+
"""
|
|
3491
|
+
return pulumi.get(self, "default_expiry_in_days")
|
|
3492
|
+
|
|
3493
|
+
@_builtins.property
|
|
3494
|
+
@pulumi.getter(name="maxExpiryInDays")
|
|
3495
|
+
def max_expiry_in_days(self) -> Optional[_builtins.int]:
|
|
3496
|
+
"""
|
|
3497
|
+
Specifies the maximum number of days that can be set for the expiration time for a programmatic access token.
|
|
3498
|
+
"""
|
|
3499
|
+
return pulumi.get(self, "max_expiry_in_days")
|
|
3500
|
+
|
|
3501
|
+
@_builtins.property
|
|
3502
|
+
@pulumi.getter(name="networkPolicyEvaluation")
|
|
3503
|
+
def network_policy_evaluation(self) -> Optional[_builtins.str]:
|
|
3504
|
+
"""
|
|
3505
|
+
Specifies the network policy evaluation for the PAT.
|
|
3506
|
+
"""
|
|
3507
|
+
return pulumi.get(self, "network_policy_evaluation")
|
|
3508
|
+
|
|
3360
3509
|
|
|
3361
3510
|
@pulumi.output_type
|
|
3362
3511
|
class AuthenticationPolicyShowOutput(dict):
|
|
@@ -3387,6 +3536,7 @@ class AuthenticationPolicyShowOutput(dict):
|
|
|
3387
3536
|
comment: Optional[_builtins.str] = None,
|
|
3388
3537
|
created_on: Optional[_builtins.str] = None,
|
|
3389
3538
|
database_name: Optional[_builtins.str] = None,
|
|
3539
|
+
kind: Optional[_builtins.str] = None,
|
|
3390
3540
|
name: Optional[_builtins.str] = None,
|
|
3391
3541
|
options: Optional[_builtins.str] = None,
|
|
3392
3542
|
owner: Optional[_builtins.str] = None,
|
|
@@ -3398,6 +3548,8 @@ class AuthenticationPolicyShowOutput(dict):
|
|
|
3398
3548
|
pulumi.set(__self__, "created_on", created_on)
|
|
3399
3549
|
if database_name is not None:
|
|
3400
3550
|
pulumi.set(__self__, "database_name", database_name)
|
|
3551
|
+
if kind is not None:
|
|
3552
|
+
pulumi.set(__self__, "kind", kind)
|
|
3401
3553
|
if name is not None:
|
|
3402
3554
|
pulumi.set(__self__, "name", name)
|
|
3403
3555
|
if options is not None:
|
|
@@ -3424,6 +3576,11 @@ class AuthenticationPolicyShowOutput(dict):
|
|
|
3424
3576
|
def database_name(self) -> Optional[_builtins.str]:
|
|
3425
3577
|
return pulumi.get(self, "database_name")
|
|
3426
3578
|
|
|
3579
|
+
@_builtins.property
|
|
3580
|
+
@pulumi.getter
|
|
3581
|
+
def kind(self) -> Optional[_builtins.str]:
|
|
3582
|
+
return pulumi.get(self, "kind")
|
|
3583
|
+
|
|
3427
3584
|
@_builtins.property
|
|
3428
3585
|
@pulumi.getter
|
|
3429
3586
|
def name(self) -> Optional[_builtins.str]:
|
|
@@ -3450,6 +3607,80 @@ class AuthenticationPolicyShowOutput(dict):
|
|
|
3450
3607
|
return pulumi.get(self, "schema_name")
|
|
3451
3608
|
|
|
3452
3609
|
|
|
3610
|
+
@pulumi.output_type
|
|
3611
|
+
class AuthenticationPolicyWorkloadIdentityPolicy(dict):
|
|
3612
|
+
@staticmethod
|
|
3613
|
+
def __key_warning(key: str):
|
|
3614
|
+
suggest = None
|
|
3615
|
+
if key == "allowedAwsAccounts":
|
|
3616
|
+
suggest = "allowed_aws_accounts"
|
|
3617
|
+
elif key == "allowedAzureIssuers":
|
|
3618
|
+
suggest = "allowed_azure_issuers"
|
|
3619
|
+
elif key == "allowedOidcIssuers":
|
|
3620
|
+
suggest = "allowed_oidc_issuers"
|
|
3621
|
+
elif key == "allowedProviders":
|
|
3622
|
+
suggest = "allowed_providers"
|
|
3623
|
+
|
|
3624
|
+
if suggest:
|
|
3625
|
+
pulumi.log.warn(f"Key '{key}' not found in AuthenticationPolicyWorkloadIdentityPolicy. Access the value via the '{suggest}' property getter instead.")
|
|
3626
|
+
|
|
3627
|
+
def __getitem__(self, key: str) -> Any:
|
|
3628
|
+
AuthenticationPolicyWorkloadIdentityPolicy.__key_warning(key)
|
|
3629
|
+
return super().__getitem__(key)
|
|
3630
|
+
|
|
3631
|
+
def get(self, key: str, default = None) -> Any:
|
|
3632
|
+
AuthenticationPolicyWorkloadIdentityPolicy.__key_warning(key)
|
|
3633
|
+
return super().get(key, default)
|
|
3634
|
+
|
|
3635
|
+
def __init__(__self__, *,
|
|
3636
|
+
allowed_aws_accounts: Optional[Sequence[_builtins.str]] = None,
|
|
3637
|
+
allowed_azure_issuers: Optional[Sequence[_builtins.str]] = None,
|
|
3638
|
+
allowed_oidc_issuers: Optional[Sequence[_builtins.str]] = None,
|
|
3639
|
+
allowed_providers: Optional[Sequence[_builtins.str]] = None):
|
|
3640
|
+
"""
|
|
3641
|
+
:param Sequence[_builtins.str] allowed_aws_accounts: Specifies the list of AWS account IDs allowed by the authentication policy during workload identity authentication of type `AWS`.
|
|
3642
|
+
:param Sequence[_builtins.str] allowed_azure_issuers: Specifies the list of Azure Entra ID issuers allowed by the authentication policy during workload identity authentication of type `AZURE`.
|
|
3643
|
+
:param Sequence[_builtins.str] allowed_oidc_issuers: Specifies the list of OIDC issuers allowed by the authentication policy during workload identity authentication of type `OIDC`.
|
|
3644
|
+
"""
|
|
3645
|
+
if allowed_aws_accounts is not None:
|
|
3646
|
+
pulumi.set(__self__, "allowed_aws_accounts", allowed_aws_accounts)
|
|
3647
|
+
if allowed_azure_issuers is not None:
|
|
3648
|
+
pulumi.set(__self__, "allowed_azure_issuers", allowed_azure_issuers)
|
|
3649
|
+
if allowed_oidc_issuers is not None:
|
|
3650
|
+
pulumi.set(__self__, "allowed_oidc_issuers", allowed_oidc_issuers)
|
|
3651
|
+
if allowed_providers is not None:
|
|
3652
|
+
pulumi.set(__self__, "allowed_providers", allowed_providers)
|
|
3653
|
+
|
|
3654
|
+
@_builtins.property
|
|
3655
|
+
@pulumi.getter(name="allowedAwsAccounts")
|
|
3656
|
+
def allowed_aws_accounts(self) -> Optional[Sequence[_builtins.str]]:
|
|
3657
|
+
"""
|
|
3658
|
+
Specifies the list of AWS account IDs allowed by the authentication policy during workload identity authentication of type `AWS`.
|
|
3659
|
+
"""
|
|
3660
|
+
return pulumi.get(self, "allowed_aws_accounts")
|
|
3661
|
+
|
|
3662
|
+
@_builtins.property
|
|
3663
|
+
@pulumi.getter(name="allowedAzureIssuers")
|
|
3664
|
+
def allowed_azure_issuers(self) -> Optional[Sequence[_builtins.str]]:
|
|
3665
|
+
"""
|
|
3666
|
+
Specifies the list of Azure Entra ID issuers allowed by the authentication policy during workload identity authentication of type `AZURE`.
|
|
3667
|
+
"""
|
|
3668
|
+
return pulumi.get(self, "allowed_azure_issuers")
|
|
3669
|
+
|
|
3670
|
+
@_builtins.property
|
|
3671
|
+
@pulumi.getter(name="allowedOidcIssuers")
|
|
3672
|
+
def allowed_oidc_issuers(self) -> Optional[Sequence[_builtins.str]]:
|
|
3673
|
+
"""
|
|
3674
|
+
Specifies the list of OIDC issuers allowed by the authentication policy during workload identity authentication of type `OIDC`.
|
|
3675
|
+
"""
|
|
3676
|
+
return pulumi.get(self, "allowed_oidc_issuers")
|
|
3677
|
+
|
|
3678
|
+
@_builtins.property
|
|
3679
|
+
@pulumi.getter(name="allowedProviders")
|
|
3680
|
+
def allowed_providers(self) -> Optional[Sequence[_builtins.str]]:
|
|
3681
|
+
return pulumi.get(self, "allowed_providers")
|
|
3682
|
+
|
|
3683
|
+
|
|
3453
3684
|
@pulumi.output_type
|
|
3454
3685
|
class ComputePoolDescribeOutput(dict):
|
|
3455
3686
|
@staticmethod
|
|
@@ -39369,6 +39600,313 @@ class GetAlertsAlertResult(dict):
|
|
|
39369
39600
|
return pulumi.get(self, "schema_name")
|
|
39370
39601
|
|
|
39371
39602
|
|
|
39603
|
+
@pulumi.output_type
|
|
39604
|
+
class GetAuthenticationPoliciesAuthenticationPolicyResult(dict):
|
|
39605
|
+
def __init__(__self__, *,
|
|
39606
|
+
describe_outputs: Sequence['outputs.GetAuthenticationPoliciesAuthenticationPolicyDescribeOutputResult'],
|
|
39607
|
+
show_outputs: Sequence['outputs.GetAuthenticationPoliciesAuthenticationPolicyShowOutputResult']):
|
|
39608
|
+
"""
|
|
39609
|
+
:param Sequence['GetAuthenticationPoliciesAuthenticationPolicyDescribeOutputArgs'] describe_outputs: Holds the output of DESCRIBE AUTHENTICATION POLICY.
|
|
39610
|
+
:param Sequence['GetAuthenticationPoliciesAuthenticationPolicyShowOutputArgs'] show_outputs: Holds the output of SHOW AUTHENTICATION POLICIES.
|
|
39611
|
+
"""
|
|
39612
|
+
pulumi.set(__self__, "describe_outputs", describe_outputs)
|
|
39613
|
+
pulumi.set(__self__, "show_outputs", show_outputs)
|
|
39614
|
+
|
|
39615
|
+
@_builtins.property
|
|
39616
|
+
@pulumi.getter(name="describeOutputs")
|
|
39617
|
+
def describe_outputs(self) -> Sequence['outputs.GetAuthenticationPoliciesAuthenticationPolicyDescribeOutputResult']:
|
|
39618
|
+
"""
|
|
39619
|
+
Holds the output of DESCRIBE AUTHENTICATION POLICY.
|
|
39620
|
+
"""
|
|
39621
|
+
return pulumi.get(self, "describe_outputs")
|
|
39622
|
+
|
|
39623
|
+
@_builtins.property
|
|
39624
|
+
@pulumi.getter(name="showOutputs")
|
|
39625
|
+
def show_outputs(self) -> Sequence['outputs.GetAuthenticationPoliciesAuthenticationPolicyShowOutputResult']:
|
|
39626
|
+
"""
|
|
39627
|
+
Holds the output of SHOW AUTHENTICATION POLICIES.
|
|
39628
|
+
"""
|
|
39629
|
+
return pulumi.get(self, "show_outputs")
|
|
39630
|
+
|
|
39631
|
+
|
|
39632
|
+
@pulumi.output_type
|
|
39633
|
+
class GetAuthenticationPoliciesAuthenticationPolicyDescribeOutputResult(dict):
|
|
39634
|
+
def __init__(__self__, *,
|
|
39635
|
+
authentication_methods: _builtins.str,
|
|
39636
|
+
client_types: _builtins.str,
|
|
39637
|
+
comment: _builtins.str,
|
|
39638
|
+
mfa_authentication_methods: _builtins.str,
|
|
39639
|
+
mfa_enrollment: _builtins.str,
|
|
39640
|
+
mfa_policy: _builtins.str,
|
|
39641
|
+
name: _builtins.str,
|
|
39642
|
+
owner: _builtins.str,
|
|
39643
|
+
pat_policy: _builtins.str,
|
|
39644
|
+
security_integrations: _builtins.str,
|
|
39645
|
+
workload_identity_policy: _builtins.str):
|
|
39646
|
+
pulumi.set(__self__, "authentication_methods", authentication_methods)
|
|
39647
|
+
pulumi.set(__self__, "client_types", client_types)
|
|
39648
|
+
pulumi.set(__self__, "comment", comment)
|
|
39649
|
+
pulumi.set(__self__, "mfa_authentication_methods", mfa_authentication_methods)
|
|
39650
|
+
pulumi.set(__self__, "mfa_enrollment", mfa_enrollment)
|
|
39651
|
+
pulumi.set(__self__, "mfa_policy", mfa_policy)
|
|
39652
|
+
pulumi.set(__self__, "name", name)
|
|
39653
|
+
pulumi.set(__self__, "owner", owner)
|
|
39654
|
+
pulumi.set(__self__, "pat_policy", pat_policy)
|
|
39655
|
+
pulumi.set(__self__, "security_integrations", security_integrations)
|
|
39656
|
+
pulumi.set(__self__, "workload_identity_policy", workload_identity_policy)
|
|
39657
|
+
|
|
39658
|
+
@_builtins.property
|
|
39659
|
+
@pulumi.getter(name="authenticationMethods")
|
|
39660
|
+
def authentication_methods(self) -> _builtins.str:
|
|
39661
|
+
return pulumi.get(self, "authentication_methods")
|
|
39662
|
+
|
|
39663
|
+
@_builtins.property
|
|
39664
|
+
@pulumi.getter(name="clientTypes")
|
|
39665
|
+
def client_types(self) -> _builtins.str:
|
|
39666
|
+
return pulumi.get(self, "client_types")
|
|
39667
|
+
|
|
39668
|
+
@_builtins.property
|
|
39669
|
+
@pulumi.getter
|
|
39670
|
+
def comment(self) -> _builtins.str:
|
|
39671
|
+
return pulumi.get(self, "comment")
|
|
39672
|
+
|
|
39673
|
+
@_builtins.property
|
|
39674
|
+
@pulumi.getter(name="mfaAuthenticationMethods")
|
|
39675
|
+
def mfa_authentication_methods(self) -> _builtins.str:
|
|
39676
|
+
return pulumi.get(self, "mfa_authentication_methods")
|
|
39677
|
+
|
|
39678
|
+
@_builtins.property
|
|
39679
|
+
@pulumi.getter(name="mfaEnrollment")
|
|
39680
|
+
def mfa_enrollment(self) -> _builtins.str:
|
|
39681
|
+
return pulumi.get(self, "mfa_enrollment")
|
|
39682
|
+
|
|
39683
|
+
@_builtins.property
|
|
39684
|
+
@pulumi.getter(name="mfaPolicy")
|
|
39685
|
+
def mfa_policy(self) -> _builtins.str:
|
|
39686
|
+
return pulumi.get(self, "mfa_policy")
|
|
39687
|
+
|
|
39688
|
+
@_builtins.property
|
|
39689
|
+
@pulumi.getter
|
|
39690
|
+
def name(self) -> _builtins.str:
|
|
39691
|
+
return pulumi.get(self, "name")
|
|
39692
|
+
|
|
39693
|
+
@_builtins.property
|
|
39694
|
+
@pulumi.getter
|
|
39695
|
+
def owner(self) -> _builtins.str:
|
|
39696
|
+
return pulumi.get(self, "owner")
|
|
39697
|
+
|
|
39698
|
+
@_builtins.property
|
|
39699
|
+
@pulumi.getter(name="patPolicy")
|
|
39700
|
+
def pat_policy(self) -> _builtins.str:
|
|
39701
|
+
return pulumi.get(self, "pat_policy")
|
|
39702
|
+
|
|
39703
|
+
@_builtins.property
|
|
39704
|
+
@pulumi.getter(name="securityIntegrations")
|
|
39705
|
+
def security_integrations(self) -> _builtins.str:
|
|
39706
|
+
return pulumi.get(self, "security_integrations")
|
|
39707
|
+
|
|
39708
|
+
@_builtins.property
|
|
39709
|
+
@pulumi.getter(name="workloadIdentityPolicy")
|
|
39710
|
+
def workload_identity_policy(self) -> _builtins.str:
|
|
39711
|
+
return pulumi.get(self, "workload_identity_policy")
|
|
39712
|
+
|
|
39713
|
+
|
|
39714
|
+
@pulumi.output_type
|
|
39715
|
+
class GetAuthenticationPoliciesAuthenticationPolicyShowOutputResult(dict):
|
|
39716
|
+
def __init__(__self__, *,
|
|
39717
|
+
comment: _builtins.str,
|
|
39718
|
+
created_on: _builtins.str,
|
|
39719
|
+
database_name: _builtins.str,
|
|
39720
|
+
kind: _builtins.str,
|
|
39721
|
+
name: _builtins.str,
|
|
39722
|
+
options: _builtins.str,
|
|
39723
|
+
owner: _builtins.str,
|
|
39724
|
+
owner_role_type: _builtins.str,
|
|
39725
|
+
schema_name: _builtins.str):
|
|
39726
|
+
pulumi.set(__self__, "comment", comment)
|
|
39727
|
+
pulumi.set(__self__, "created_on", created_on)
|
|
39728
|
+
pulumi.set(__self__, "database_name", database_name)
|
|
39729
|
+
pulumi.set(__self__, "kind", kind)
|
|
39730
|
+
pulumi.set(__self__, "name", name)
|
|
39731
|
+
pulumi.set(__self__, "options", options)
|
|
39732
|
+
pulumi.set(__self__, "owner", owner)
|
|
39733
|
+
pulumi.set(__self__, "owner_role_type", owner_role_type)
|
|
39734
|
+
pulumi.set(__self__, "schema_name", schema_name)
|
|
39735
|
+
|
|
39736
|
+
@_builtins.property
|
|
39737
|
+
@pulumi.getter
|
|
39738
|
+
def comment(self) -> _builtins.str:
|
|
39739
|
+
return pulumi.get(self, "comment")
|
|
39740
|
+
|
|
39741
|
+
@_builtins.property
|
|
39742
|
+
@pulumi.getter(name="createdOn")
|
|
39743
|
+
def created_on(self) -> _builtins.str:
|
|
39744
|
+
return pulumi.get(self, "created_on")
|
|
39745
|
+
|
|
39746
|
+
@_builtins.property
|
|
39747
|
+
@pulumi.getter(name="databaseName")
|
|
39748
|
+
def database_name(self) -> _builtins.str:
|
|
39749
|
+
return pulumi.get(self, "database_name")
|
|
39750
|
+
|
|
39751
|
+
@_builtins.property
|
|
39752
|
+
@pulumi.getter
|
|
39753
|
+
def kind(self) -> _builtins.str:
|
|
39754
|
+
return pulumi.get(self, "kind")
|
|
39755
|
+
|
|
39756
|
+
@_builtins.property
|
|
39757
|
+
@pulumi.getter
|
|
39758
|
+
def name(self) -> _builtins.str:
|
|
39759
|
+
return pulumi.get(self, "name")
|
|
39760
|
+
|
|
39761
|
+
@_builtins.property
|
|
39762
|
+
@pulumi.getter
|
|
39763
|
+
def options(self) -> _builtins.str:
|
|
39764
|
+
return pulumi.get(self, "options")
|
|
39765
|
+
|
|
39766
|
+
@_builtins.property
|
|
39767
|
+
@pulumi.getter
|
|
39768
|
+
def owner(self) -> _builtins.str:
|
|
39769
|
+
return pulumi.get(self, "owner")
|
|
39770
|
+
|
|
39771
|
+
@_builtins.property
|
|
39772
|
+
@pulumi.getter(name="ownerRoleType")
|
|
39773
|
+
def owner_role_type(self) -> _builtins.str:
|
|
39774
|
+
return pulumi.get(self, "owner_role_type")
|
|
39775
|
+
|
|
39776
|
+
@_builtins.property
|
|
39777
|
+
@pulumi.getter(name="schemaName")
|
|
39778
|
+
def schema_name(self) -> _builtins.str:
|
|
39779
|
+
return pulumi.get(self, "schema_name")
|
|
39780
|
+
|
|
39781
|
+
|
|
39782
|
+
@pulumi.output_type
|
|
39783
|
+
class GetAuthenticationPoliciesInResult(dict):
|
|
39784
|
+
def __init__(__self__, *,
|
|
39785
|
+
account: Optional[_builtins.bool] = None,
|
|
39786
|
+
application: Optional[_builtins.str] = None,
|
|
39787
|
+
application_package: Optional[_builtins.str] = None,
|
|
39788
|
+
database: Optional[_builtins.str] = None,
|
|
39789
|
+
schema: Optional[_builtins.str] = None):
|
|
39790
|
+
"""
|
|
39791
|
+
:param _builtins.bool account: Returns records for the entire account.
|
|
39792
|
+
:param _builtins.str application: Returns records for the specified application.
|
|
39793
|
+
:param _builtins.str application_package: Returns records for the specified application package.
|
|
39794
|
+
:param _builtins.str database: Returns records for the current database in use or for a specified database.
|
|
39795
|
+
:param _builtins.str schema: Returns records for the current schema in use or a specified schema. Use fully qualified name.
|
|
39796
|
+
"""
|
|
39797
|
+
if account is not None:
|
|
39798
|
+
pulumi.set(__self__, "account", account)
|
|
39799
|
+
if application is not None:
|
|
39800
|
+
pulumi.set(__self__, "application", application)
|
|
39801
|
+
if application_package is not None:
|
|
39802
|
+
pulumi.set(__self__, "application_package", application_package)
|
|
39803
|
+
if database is not None:
|
|
39804
|
+
pulumi.set(__self__, "database", database)
|
|
39805
|
+
if schema is not None:
|
|
39806
|
+
pulumi.set(__self__, "schema", schema)
|
|
39807
|
+
|
|
39808
|
+
@_builtins.property
|
|
39809
|
+
@pulumi.getter
|
|
39810
|
+
def account(self) -> Optional[_builtins.bool]:
|
|
39811
|
+
"""
|
|
39812
|
+
Returns records for the entire account.
|
|
39813
|
+
"""
|
|
39814
|
+
return pulumi.get(self, "account")
|
|
39815
|
+
|
|
39816
|
+
@_builtins.property
|
|
39817
|
+
@pulumi.getter
|
|
39818
|
+
def application(self) -> Optional[_builtins.str]:
|
|
39819
|
+
"""
|
|
39820
|
+
Returns records for the specified application.
|
|
39821
|
+
"""
|
|
39822
|
+
return pulumi.get(self, "application")
|
|
39823
|
+
|
|
39824
|
+
@_builtins.property
|
|
39825
|
+
@pulumi.getter(name="applicationPackage")
|
|
39826
|
+
def application_package(self) -> Optional[_builtins.str]:
|
|
39827
|
+
"""
|
|
39828
|
+
Returns records for the specified application package.
|
|
39829
|
+
"""
|
|
39830
|
+
return pulumi.get(self, "application_package")
|
|
39831
|
+
|
|
39832
|
+
@_builtins.property
|
|
39833
|
+
@pulumi.getter
|
|
39834
|
+
def database(self) -> Optional[_builtins.str]:
|
|
39835
|
+
"""
|
|
39836
|
+
Returns records for the current database in use or for a specified database.
|
|
39837
|
+
"""
|
|
39838
|
+
return pulumi.get(self, "database")
|
|
39839
|
+
|
|
39840
|
+
@_builtins.property
|
|
39841
|
+
@pulumi.getter
|
|
39842
|
+
def schema(self) -> Optional[_builtins.str]:
|
|
39843
|
+
"""
|
|
39844
|
+
Returns records for the current schema in use or a specified schema. Use fully qualified name.
|
|
39845
|
+
"""
|
|
39846
|
+
return pulumi.get(self, "schema")
|
|
39847
|
+
|
|
39848
|
+
|
|
39849
|
+
@pulumi.output_type
|
|
39850
|
+
class GetAuthenticationPoliciesLimitResult(dict):
|
|
39851
|
+
def __init__(__self__, *,
|
|
39852
|
+
rows: _builtins.int,
|
|
39853
|
+
from_: Optional[_builtins.str] = None):
|
|
39854
|
+
"""
|
|
39855
|
+
:param _builtins.int rows: The maximum number of rows to return.
|
|
39856
|
+
:param _builtins.str from_: Specifies a **case-sensitive** pattern that is used to match object name. After the first match, the limit on the number of rows will be applied.
|
|
39857
|
+
"""
|
|
39858
|
+
pulumi.set(__self__, "rows", rows)
|
|
39859
|
+
if from_ is not None:
|
|
39860
|
+
pulumi.set(__self__, "from_", from_)
|
|
39861
|
+
|
|
39862
|
+
@_builtins.property
|
|
39863
|
+
@pulumi.getter
|
|
39864
|
+
def rows(self) -> _builtins.int:
|
|
39865
|
+
"""
|
|
39866
|
+
The maximum number of rows to return.
|
|
39867
|
+
"""
|
|
39868
|
+
return pulumi.get(self, "rows")
|
|
39869
|
+
|
|
39870
|
+
@_builtins.property
|
|
39871
|
+
@pulumi.getter(name="from")
|
|
39872
|
+
def from_(self) -> Optional[_builtins.str]:
|
|
39873
|
+
"""
|
|
39874
|
+
Specifies a **case-sensitive** pattern that is used to match object name. After the first match, the limit on the number of rows will be applied.
|
|
39875
|
+
"""
|
|
39876
|
+
return pulumi.get(self, "from_")
|
|
39877
|
+
|
|
39878
|
+
|
|
39879
|
+
@pulumi.output_type
|
|
39880
|
+
class GetAuthenticationPoliciesOnResult(dict):
|
|
39881
|
+
def __init__(__self__, *,
|
|
39882
|
+
account: Optional[_builtins.bool] = None,
|
|
39883
|
+
user: Optional[_builtins.str] = None):
|
|
39884
|
+
"""
|
|
39885
|
+
:param _builtins.bool account: Returns records for the entire account.
|
|
39886
|
+
:param _builtins.str user: Returns records for the specified user.
|
|
39887
|
+
"""
|
|
39888
|
+
if account is not None:
|
|
39889
|
+
pulumi.set(__self__, "account", account)
|
|
39890
|
+
if user is not None:
|
|
39891
|
+
pulumi.set(__self__, "user", user)
|
|
39892
|
+
|
|
39893
|
+
@_builtins.property
|
|
39894
|
+
@pulumi.getter
|
|
39895
|
+
def account(self) -> Optional[_builtins.bool]:
|
|
39896
|
+
"""
|
|
39897
|
+
Returns records for the entire account.
|
|
39898
|
+
"""
|
|
39899
|
+
return pulumi.get(self, "account")
|
|
39900
|
+
|
|
39901
|
+
@_builtins.property
|
|
39902
|
+
@pulumi.getter
|
|
39903
|
+
def user(self) -> Optional[_builtins.str]:
|
|
39904
|
+
"""
|
|
39905
|
+
Returns records for the specified user.
|
|
39906
|
+
"""
|
|
39907
|
+
return pulumi.get(self, "user")
|
|
39908
|
+
|
|
39909
|
+
|
|
39372
39910
|
@pulumi.output_type
|
|
39373
39911
|
class GetComputePoolsComputePoolResult(dict):
|
|
39374
39912
|
def __init__(__self__, *,
|