pulumi-snowflake 2.6.0a1758005717__py3-none-any.whl → 2.11.0a1766126285__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_snowflake/__init__.py +21 -0
- pulumi_snowflake/_inputs.py +2582 -296
- pulumi_snowflake/authentication_policy.py +181 -31
- pulumi_snowflake/compute_pool.py +7 -7
- pulumi_snowflake/config/__init__.pyi +64 -1
- pulumi_snowflake/config/vars.py +88 -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_notebooks.py +174 -0
- pulumi_snowflake/get_semantic_views.py +178 -0
- 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/notebook.py +623 -0
- pulumi_snowflake/outputs.py +2492 -147
- pulumi_snowflake/provider.py +315 -6
- pulumi_snowflake/pulumi-plugin.json +1 -1
- pulumi_snowflake/semantic_view.py +535 -0
- pulumi_snowflake/storage_integration.py +98 -38
- pulumi_snowflake/task.py +7 -7
- pulumi_snowflake/warehouse.py +94 -0
- {pulumi_snowflake-2.6.0a1758005717.dist-info → pulumi_snowflake-2.11.0a1766126285.dist-info}/METADATA +1 -1
- {pulumi_snowflake-2.6.0a1758005717.dist-info → pulumi_snowflake-2.11.0a1766126285.dist-info}/RECORD +27 -22
- {pulumi_snowflake-2.6.0a1758005717.dist-info → pulumi_snowflake-2.11.0a1766126285.dist-info}/WHEEL +0 -0
- {pulumi_snowflake-2.6.0a1758005717.dist-info → pulumi_snowflake-2.11.0a1766126285.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',
|
|
@@ -229,6 +232,9 @@ __all__ = [
|
|
|
229
232
|
'MaterializedViewTag',
|
|
230
233
|
'NetworkPolicyDescribeOutput',
|
|
231
234
|
'NetworkPolicyShowOutput',
|
|
235
|
+
'NotebookDescribeOutput',
|
|
236
|
+
'NotebookFrom',
|
|
237
|
+
'NotebookShowOutput',
|
|
232
238
|
'OauthIntegrationForCustomClientsDescribeOutput',
|
|
233
239
|
'OauthIntegrationForCustomClientsDescribeOutputBlockedRolesList',
|
|
234
240
|
'OauthIntegrationForCustomClientsDescribeOutputComment',
|
|
@@ -376,6 +382,18 @@ __all__ = [
|
|
|
376
382
|
'SecretWithClientCredentialsShowOutput',
|
|
377
383
|
'SecretWithGenericStringDescribeOutput',
|
|
378
384
|
'SecretWithGenericStringShowOutput',
|
|
385
|
+
'SemanticViewDimension',
|
|
386
|
+
'SemanticViewFact',
|
|
387
|
+
'SemanticViewMetric',
|
|
388
|
+
'SemanticViewMetricSemanticExpression',
|
|
389
|
+
'SemanticViewMetricWindowFunction',
|
|
390
|
+
'SemanticViewMetricWindowFunctionOverClause',
|
|
391
|
+
'SemanticViewRelationship',
|
|
392
|
+
'SemanticViewRelationshipReferencedTableNameOrAlias',
|
|
393
|
+
'SemanticViewRelationshipTableNameOrAlias',
|
|
394
|
+
'SemanticViewShowOutput',
|
|
395
|
+
'SemanticViewTable',
|
|
396
|
+
'SemanticViewTableUnique',
|
|
379
397
|
'ServiceDescribeOutput',
|
|
380
398
|
'ServiceFromSpecification',
|
|
381
399
|
'ServiceFromSpecificationTemplate',
|
|
@@ -622,6 +640,12 @@ __all__ = [
|
|
|
622
640
|
'GetAccountsAccountResult',
|
|
623
641
|
'GetAccountsAccountShowOutputResult',
|
|
624
642
|
'GetAlertsAlertResult',
|
|
643
|
+
'GetAuthenticationPoliciesAuthenticationPolicyResult',
|
|
644
|
+
'GetAuthenticationPoliciesAuthenticationPolicyDescribeOutputResult',
|
|
645
|
+
'GetAuthenticationPoliciesAuthenticationPolicyShowOutputResult',
|
|
646
|
+
'GetAuthenticationPoliciesInResult',
|
|
647
|
+
'GetAuthenticationPoliciesLimitResult',
|
|
648
|
+
'GetAuthenticationPoliciesOnResult',
|
|
625
649
|
'GetComputePoolsComputePoolResult',
|
|
626
650
|
'GetComputePoolsComputePoolDescribeOutputResult',
|
|
627
651
|
'GetComputePoolsComputePoolShowOutputResult',
|
|
@@ -689,6 +713,10 @@ __all__ = [
|
|
|
689
713
|
'GetNetworkPoliciesNetworkPolicyResult',
|
|
690
714
|
'GetNetworkPoliciesNetworkPolicyDescribeOutputResult',
|
|
691
715
|
'GetNetworkPoliciesNetworkPolicyShowOutputResult',
|
|
716
|
+
'GetNotebooksLimitResult',
|
|
717
|
+
'GetNotebooksNotebookResult',
|
|
718
|
+
'GetNotebooksNotebookDescribeOutputResult',
|
|
719
|
+
'GetNotebooksNotebookShowOutputResult',
|
|
692
720
|
'GetParametersParameterResult',
|
|
693
721
|
'GetPipesPipeResult',
|
|
694
722
|
'GetProceduresProcedureResult',
|
|
@@ -782,6 +810,10 @@ __all__ = [
|
|
|
782
810
|
'GetSecurityIntegrationsSecurityIntegrationDescribeOutputSaml2SsoUrlResult',
|
|
783
811
|
'GetSecurityIntegrationsSecurityIntegrationDescribeOutputSyncPasswordResult',
|
|
784
812
|
'GetSecurityIntegrationsSecurityIntegrationShowOutputResult',
|
|
813
|
+
'GetSemanticViewsInResult',
|
|
814
|
+
'GetSemanticViewsLimitResult',
|
|
815
|
+
'GetSemanticViewsSemanticViewResult',
|
|
816
|
+
'GetSemanticViewsSemanticViewShowOutputResult',
|
|
785
817
|
'GetSequencesSequenceResult',
|
|
786
818
|
'GetServicesInResult',
|
|
787
819
|
'GetServicesLimitResult',
|
|
@@ -3277,8 +3309,14 @@ class AuthenticationPolicyDescribeOutput(dict):
|
|
|
3277
3309
|
suggest = "mfa_authentication_methods"
|
|
3278
3310
|
elif key == "mfaEnrollment":
|
|
3279
3311
|
suggest = "mfa_enrollment"
|
|
3312
|
+
elif key == "mfaPolicy":
|
|
3313
|
+
suggest = "mfa_policy"
|
|
3314
|
+
elif key == "patPolicy":
|
|
3315
|
+
suggest = "pat_policy"
|
|
3280
3316
|
elif key == "securityIntegrations":
|
|
3281
3317
|
suggest = "security_integrations"
|
|
3318
|
+
elif key == "workloadIdentityPolicy":
|
|
3319
|
+
suggest = "workload_identity_policy"
|
|
3282
3320
|
|
|
3283
3321
|
if suggest:
|
|
3284
3322
|
pulumi.log.warn(f"Key '{key}' not found in AuthenticationPolicyDescribeOutput. Access the value via the '{suggest}' property getter instead.")
|
|
@@ -3297,9 +3335,12 @@ class AuthenticationPolicyDescribeOutput(dict):
|
|
|
3297
3335
|
comment: Optional[_builtins.str] = None,
|
|
3298
3336
|
mfa_authentication_methods: Optional[_builtins.str] = None,
|
|
3299
3337
|
mfa_enrollment: Optional[_builtins.str] = None,
|
|
3338
|
+
mfa_policy: Optional[_builtins.str] = None,
|
|
3300
3339
|
name: Optional[_builtins.str] = None,
|
|
3301
3340
|
owner: Optional[_builtins.str] = None,
|
|
3302
|
-
|
|
3341
|
+
pat_policy: Optional[_builtins.str] = None,
|
|
3342
|
+
security_integrations: Optional[_builtins.str] = None,
|
|
3343
|
+
workload_identity_policy: Optional[_builtins.str] = None):
|
|
3303
3344
|
if authentication_methods is not None:
|
|
3304
3345
|
pulumi.set(__self__, "authentication_methods", authentication_methods)
|
|
3305
3346
|
if client_types is not None:
|
|
@@ -3310,12 +3351,18 @@ class AuthenticationPolicyDescribeOutput(dict):
|
|
|
3310
3351
|
pulumi.set(__self__, "mfa_authentication_methods", mfa_authentication_methods)
|
|
3311
3352
|
if mfa_enrollment is not None:
|
|
3312
3353
|
pulumi.set(__self__, "mfa_enrollment", mfa_enrollment)
|
|
3354
|
+
if mfa_policy is not None:
|
|
3355
|
+
pulumi.set(__self__, "mfa_policy", mfa_policy)
|
|
3313
3356
|
if name is not None:
|
|
3314
3357
|
pulumi.set(__self__, "name", name)
|
|
3315
3358
|
if owner is not None:
|
|
3316
3359
|
pulumi.set(__self__, "owner", owner)
|
|
3360
|
+
if pat_policy is not None:
|
|
3361
|
+
pulumi.set(__self__, "pat_policy", pat_policy)
|
|
3317
3362
|
if security_integrations is not None:
|
|
3318
3363
|
pulumi.set(__self__, "security_integrations", security_integrations)
|
|
3364
|
+
if workload_identity_policy is not None:
|
|
3365
|
+
pulumi.set(__self__, "workload_identity_policy", workload_identity_policy)
|
|
3319
3366
|
|
|
3320
3367
|
@_builtins.property
|
|
3321
3368
|
@pulumi.getter(name="authenticationMethods")
|
|
@@ -3342,6 +3389,11 @@ class AuthenticationPolicyDescribeOutput(dict):
|
|
|
3342
3389
|
def mfa_enrollment(self) -> Optional[_builtins.str]:
|
|
3343
3390
|
return pulumi.get(self, "mfa_enrollment")
|
|
3344
3391
|
|
|
3392
|
+
@_builtins.property
|
|
3393
|
+
@pulumi.getter(name="mfaPolicy")
|
|
3394
|
+
def mfa_policy(self) -> Optional[_builtins.str]:
|
|
3395
|
+
return pulumi.get(self, "mfa_policy")
|
|
3396
|
+
|
|
3345
3397
|
@_builtins.property
|
|
3346
3398
|
@pulumi.getter
|
|
3347
3399
|
def name(self) -> Optional[_builtins.str]:
|
|
@@ -3352,11 +3404,131 @@ class AuthenticationPolicyDescribeOutput(dict):
|
|
|
3352
3404
|
def owner(self) -> Optional[_builtins.str]:
|
|
3353
3405
|
return pulumi.get(self, "owner")
|
|
3354
3406
|
|
|
3407
|
+
@_builtins.property
|
|
3408
|
+
@pulumi.getter(name="patPolicy")
|
|
3409
|
+
def pat_policy(self) -> Optional[_builtins.str]:
|
|
3410
|
+
return pulumi.get(self, "pat_policy")
|
|
3411
|
+
|
|
3355
3412
|
@_builtins.property
|
|
3356
3413
|
@pulumi.getter(name="securityIntegrations")
|
|
3357
3414
|
def security_integrations(self) -> Optional[_builtins.str]:
|
|
3358
3415
|
return pulumi.get(self, "security_integrations")
|
|
3359
3416
|
|
|
3417
|
+
@_builtins.property
|
|
3418
|
+
@pulumi.getter(name="workloadIdentityPolicy")
|
|
3419
|
+
def workload_identity_policy(self) -> Optional[_builtins.str]:
|
|
3420
|
+
return pulumi.get(self, "workload_identity_policy")
|
|
3421
|
+
|
|
3422
|
+
|
|
3423
|
+
@pulumi.output_type
|
|
3424
|
+
class AuthenticationPolicyMfaPolicy(dict):
|
|
3425
|
+
@staticmethod
|
|
3426
|
+
def __key_warning(key: str):
|
|
3427
|
+
suggest = None
|
|
3428
|
+
if key == "allowedMethods":
|
|
3429
|
+
suggest = "allowed_methods"
|
|
3430
|
+
elif key == "enforceMfaOnExternalAuthentication":
|
|
3431
|
+
suggest = "enforce_mfa_on_external_authentication"
|
|
3432
|
+
|
|
3433
|
+
if suggest:
|
|
3434
|
+
pulumi.log.warn(f"Key '{key}' not found in AuthenticationPolicyMfaPolicy. Access the value via the '{suggest}' property getter instead.")
|
|
3435
|
+
|
|
3436
|
+
def __getitem__(self, key: str) -> Any:
|
|
3437
|
+
AuthenticationPolicyMfaPolicy.__key_warning(key)
|
|
3438
|
+
return super().__getitem__(key)
|
|
3439
|
+
|
|
3440
|
+
def get(self, key: str, default = None) -> Any:
|
|
3441
|
+
AuthenticationPolicyMfaPolicy.__key_warning(key)
|
|
3442
|
+
return super().get(key, default)
|
|
3443
|
+
|
|
3444
|
+
def __init__(__self__, *,
|
|
3445
|
+
allowed_methods: Optional[Sequence[_builtins.str]] = None,
|
|
3446
|
+
enforce_mfa_on_external_authentication: Optional[_builtins.str] = None):
|
|
3447
|
+
"""
|
|
3448
|
+
: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`.
|
|
3449
|
+
"""
|
|
3450
|
+
if allowed_methods is not None:
|
|
3451
|
+
pulumi.set(__self__, "allowed_methods", allowed_methods)
|
|
3452
|
+
if enforce_mfa_on_external_authentication is not None:
|
|
3453
|
+
pulumi.set(__self__, "enforce_mfa_on_external_authentication", enforce_mfa_on_external_authentication)
|
|
3454
|
+
|
|
3455
|
+
@_builtins.property
|
|
3456
|
+
@pulumi.getter(name="allowedMethods")
|
|
3457
|
+
def allowed_methods(self) -> Optional[Sequence[_builtins.str]]:
|
|
3458
|
+
return pulumi.get(self, "allowed_methods")
|
|
3459
|
+
|
|
3460
|
+
@_builtins.property
|
|
3461
|
+
@pulumi.getter(name="enforceMfaOnExternalAuthentication")
|
|
3462
|
+
def enforce_mfa_on_external_authentication(self) -> Optional[_builtins.str]:
|
|
3463
|
+
"""
|
|
3464
|
+
Determines whether multi-factor authentication (MFA) is enforced on external authentication. Valid values are (case-insensitive): `ALL` | `NONE`.
|
|
3465
|
+
"""
|
|
3466
|
+
return pulumi.get(self, "enforce_mfa_on_external_authentication")
|
|
3467
|
+
|
|
3468
|
+
|
|
3469
|
+
@pulumi.output_type
|
|
3470
|
+
class AuthenticationPolicyPatPolicy(dict):
|
|
3471
|
+
@staticmethod
|
|
3472
|
+
def __key_warning(key: str):
|
|
3473
|
+
suggest = None
|
|
3474
|
+
if key == "defaultExpiryInDays":
|
|
3475
|
+
suggest = "default_expiry_in_days"
|
|
3476
|
+
elif key == "maxExpiryInDays":
|
|
3477
|
+
suggest = "max_expiry_in_days"
|
|
3478
|
+
elif key == "networkPolicyEvaluation":
|
|
3479
|
+
suggest = "network_policy_evaluation"
|
|
3480
|
+
|
|
3481
|
+
if suggest:
|
|
3482
|
+
pulumi.log.warn(f"Key '{key}' not found in AuthenticationPolicyPatPolicy. Access the value via the '{suggest}' property getter instead.")
|
|
3483
|
+
|
|
3484
|
+
def __getitem__(self, key: str) -> Any:
|
|
3485
|
+
AuthenticationPolicyPatPolicy.__key_warning(key)
|
|
3486
|
+
return super().__getitem__(key)
|
|
3487
|
+
|
|
3488
|
+
def get(self, key: str, default = None) -> Any:
|
|
3489
|
+
AuthenticationPolicyPatPolicy.__key_warning(key)
|
|
3490
|
+
return super().get(key, default)
|
|
3491
|
+
|
|
3492
|
+
def __init__(__self__, *,
|
|
3493
|
+
default_expiry_in_days: Optional[_builtins.int] = None,
|
|
3494
|
+
max_expiry_in_days: Optional[_builtins.int] = None,
|
|
3495
|
+
network_policy_evaluation: Optional[_builtins.str] = None):
|
|
3496
|
+
"""
|
|
3497
|
+
:param _builtins.int default_expiry_in_days: Specifies the default expiration time (in days) for a programmatic access token.
|
|
3498
|
+
: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.
|
|
3499
|
+
:param _builtins.str network_policy_evaluation: Specifies the network policy evaluation for the PAT.
|
|
3500
|
+
"""
|
|
3501
|
+
if default_expiry_in_days is not None:
|
|
3502
|
+
pulumi.set(__self__, "default_expiry_in_days", default_expiry_in_days)
|
|
3503
|
+
if max_expiry_in_days is not None:
|
|
3504
|
+
pulumi.set(__self__, "max_expiry_in_days", max_expiry_in_days)
|
|
3505
|
+
if network_policy_evaluation is not None:
|
|
3506
|
+
pulumi.set(__self__, "network_policy_evaluation", network_policy_evaluation)
|
|
3507
|
+
|
|
3508
|
+
@_builtins.property
|
|
3509
|
+
@pulumi.getter(name="defaultExpiryInDays")
|
|
3510
|
+
def default_expiry_in_days(self) -> Optional[_builtins.int]:
|
|
3511
|
+
"""
|
|
3512
|
+
Specifies the default expiration time (in days) for a programmatic access token.
|
|
3513
|
+
"""
|
|
3514
|
+
return pulumi.get(self, "default_expiry_in_days")
|
|
3515
|
+
|
|
3516
|
+
@_builtins.property
|
|
3517
|
+
@pulumi.getter(name="maxExpiryInDays")
|
|
3518
|
+
def max_expiry_in_days(self) -> Optional[_builtins.int]:
|
|
3519
|
+
"""
|
|
3520
|
+
Specifies the maximum number of days that can be set for the expiration time for a programmatic access token.
|
|
3521
|
+
"""
|
|
3522
|
+
return pulumi.get(self, "max_expiry_in_days")
|
|
3523
|
+
|
|
3524
|
+
@_builtins.property
|
|
3525
|
+
@pulumi.getter(name="networkPolicyEvaluation")
|
|
3526
|
+
def network_policy_evaluation(self) -> Optional[_builtins.str]:
|
|
3527
|
+
"""
|
|
3528
|
+
Specifies the network policy evaluation for the PAT.
|
|
3529
|
+
"""
|
|
3530
|
+
return pulumi.get(self, "network_policy_evaluation")
|
|
3531
|
+
|
|
3360
3532
|
|
|
3361
3533
|
@pulumi.output_type
|
|
3362
3534
|
class AuthenticationPolicyShowOutput(dict):
|
|
@@ -3387,6 +3559,7 @@ class AuthenticationPolicyShowOutput(dict):
|
|
|
3387
3559
|
comment: Optional[_builtins.str] = None,
|
|
3388
3560
|
created_on: Optional[_builtins.str] = None,
|
|
3389
3561
|
database_name: Optional[_builtins.str] = None,
|
|
3562
|
+
kind: Optional[_builtins.str] = None,
|
|
3390
3563
|
name: Optional[_builtins.str] = None,
|
|
3391
3564
|
options: Optional[_builtins.str] = None,
|
|
3392
3565
|
owner: Optional[_builtins.str] = None,
|
|
@@ -3398,6 +3571,8 @@ class AuthenticationPolicyShowOutput(dict):
|
|
|
3398
3571
|
pulumi.set(__self__, "created_on", created_on)
|
|
3399
3572
|
if database_name is not None:
|
|
3400
3573
|
pulumi.set(__self__, "database_name", database_name)
|
|
3574
|
+
if kind is not None:
|
|
3575
|
+
pulumi.set(__self__, "kind", kind)
|
|
3401
3576
|
if name is not None:
|
|
3402
3577
|
pulumi.set(__self__, "name", name)
|
|
3403
3578
|
if options is not None:
|
|
@@ -3424,6 +3599,11 @@ class AuthenticationPolicyShowOutput(dict):
|
|
|
3424
3599
|
def database_name(self) -> Optional[_builtins.str]:
|
|
3425
3600
|
return pulumi.get(self, "database_name")
|
|
3426
3601
|
|
|
3602
|
+
@_builtins.property
|
|
3603
|
+
@pulumi.getter
|
|
3604
|
+
def kind(self) -> Optional[_builtins.str]:
|
|
3605
|
+
return pulumi.get(self, "kind")
|
|
3606
|
+
|
|
3427
3607
|
@_builtins.property
|
|
3428
3608
|
@pulumi.getter
|
|
3429
3609
|
def name(self) -> Optional[_builtins.str]:
|
|
@@ -3450,6 +3630,80 @@ class AuthenticationPolicyShowOutput(dict):
|
|
|
3450
3630
|
return pulumi.get(self, "schema_name")
|
|
3451
3631
|
|
|
3452
3632
|
|
|
3633
|
+
@pulumi.output_type
|
|
3634
|
+
class AuthenticationPolicyWorkloadIdentityPolicy(dict):
|
|
3635
|
+
@staticmethod
|
|
3636
|
+
def __key_warning(key: str):
|
|
3637
|
+
suggest = None
|
|
3638
|
+
if key == "allowedAwsAccounts":
|
|
3639
|
+
suggest = "allowed_aws_accounts"
|
|
3640
|
+
elif key == "allowedAzureIssuers":
|
|
3641
|
+
suggest = "allowed_azure_issuers"
|
|
3642
|
+
elif key == "allowedOidcIssuers":
|
|
3643
|
+
suggest = "allowed_oidc_issuers"
|
|
3644
|
+
elif key == "allowedProviders":
|
|
3645
|
+
suggest = "allowed_providers"
|
|
3646
|
+
|
|
3647
|
+
if suggest:
|
|
3648
|
+
pulumi.log.warn(f"Key '{key}' not found in AuthenticationPolicyWorkloadIdentityPolicy. Access the value via the '{suggest}' property getter instead.")
|
|
3649
|
+
|
|
3650
|
+
def __getitem__(self, key: str) -> Any:
|
|
3651
|
+
AuthenticationPolicyWorkloadIdentityPolicy.__key_warning(key)
|
|
3652
|
+
return super().__getitem__(key)
|
|
3653
|
+
|
|
3654
|
+
def get(self, key: str, default = None) -> Any:
|
|
3655
|
+
AuthenticationPolicyWorkloadIdentityPolicy.__key_warning(key)
|
|
3656
|
+
return super().get(key, default)
|
|
3657
|
+
|
|
3658
|
+
def __init__(__self__, *,
|
|
3659
|
+
allowed_aws_accounts: Optional[Sequence[_builtins.str]] = None,
|
|
3660
|
+
allowed_azure_issuers: Optional[Sequence[_builtins.str]] = None,
|
|
3661
|
+
allowed_oidc_issuers: Optional[Sequence[_builtins.str]] = None,
|
|
3662
|
+
allowed_providers: Optional[Sequence[_builtins.str]] = None):
|
|
3663
|
+
"""
|
|
3664
|
+
: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`.
|
|
3665
|
+
: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`.
|
|
3666
|
+
: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`.
|
|
3667
|
+
"""
|
|
3668
|
+
if allowed_aws_accounts is not None:
|
|
3669
|
+
pulumi.set(__self__, "allowed_aws_accounts", allowed_aws_accounts)
|
|
3670
|
+
if allowed_azure_issuers is not None:
|
|
3671
|
+
pulumi.set(__self__, "allowed_azure_issuers", allowed_azure_issuers)
|
|
3672
|
+
if allowed_oidc_issuers is not None:
|
|
3673
|
+
pulumi.set(__self__, "allowed_oidc_issuers", allowed_oidc_issuers)
|
|
3674
|
+
if allowed_providers is not None:
|
|
3675
|
+
pulumi.set(__self__, "allowed_providers", allowed_providers)
|
|
3676
|
+
|
|
3677
|
+
@_builtins.property
|
|
3678
|
+
@pulumi.getter(name="allowedAwsAccounts")
|
|
3679
|
+
def allowed_aws_accounts(self) -> Optional[Sequence[_builtins.str]]:
|
|
3680
|
+
"""
|
|
3681
|
+
Specifies the list of AWS account IDs allowed by the authentication policy during workload identity authentication of type `AWS`.
|
|
3682
|
+
"""
|
|
3683
|
+
return pulumi.get(self, "allowed_aws_accounts")
|
|
3684
|
+
|
|
3685
|
+
@_builtins.property
|
|
3686
|
+
@pulumi.getter(name="allowedAzureIssuers")
|
|
3687
|
+
def allowed_azure_issuers(self) -> Optional[Sequence[_builtins.str]]:
|
|
3688
|
+
"""
|
|
3689
|
+
Specifies the list of Azure Entra ID issuers allowed by the authentication policy during workload identity authentication of type `AZURE`.
|
|
3690
|
+
"""
|
|
3691
|
+
return pulumi.get(self, "allowed_azure_issuers")
|
|
3692
|
+
|
|
3693
|
+
@_builtins.property
|
|
3694
|
+
@pulumi.getter(name="allowedOidcIssuers")
|
|
3695
|
+
def allowed_oidc_issuers(self) -> Optional[Sequence[_builtins.str]]:
|
|
3696
|
+
"""
|
|
3697
|
+
Specifies the list of OIDC issuers allowed by the authentication policy during workload identity authentication of type `OIDC`.
|
|
3698
|
+
"""
|
|
3699
|
+
return pulumi.get(self, "allowed_oidc_issuers")
|
|
3700
|
+
|
|
3701
|
+
@_builtins.property
|
|
3702
|
+
@pulumi.getter(name="allowedProviders")
|
|
3703
|
+
def allowed_providers(self) -> Optional[Sequence[_builtins.str]]:
|
|
3704
|
+
return pulumi.get(self, "allowed_providers")
|
|
3705
|
+
|
|
3706
|
+
|
|
3453
3707
|
@pulumi.output_type
|
|
3454
3708
|
class ComputePoolDescribeOutput(dict):
|
|
3455
3709
|
@staticmethod
|
|
@@ -9050,7 +9304,7 @@ class GrantOwnershipOn(dict):
|
|
|
9050
9304
|
:param 'GrantOwnershipOnAllArgs' all: Configures the privilege to be granted on all objects in either a database or schema.
|
|
9051
9305
|
:param 'GrantOwnershipOnFutureArgs' future: Configures the privilege to be granted on all objects in either a database or schema.
|
|
9052
9306
|
:param _builtins.str object_name: Specifies the identifier for the object on which you are transferring ownership.
|
|
9053
|
-
:param _builtins.str object_type: Specifies the type of object on which you are transferring ownership. Available values are: AGGREGATION POLICY | ALERT | AUTHENTICATION POLICY | COMPUTE POOL | DATA METRIC FUNCTION | DATABASE | DATABASE ROLE | DYNAMIC TABLE | EVENT TABLE | EXTERNAL TABLE | EXTERNAL VOLUME | FAILOVER GROUP | FILE FORMAT | FUNCTION | GIT REPOSITORY | HYBRID TABLE | ICEBERG TABLE | IMAGE REPOSITORY | INTEGRATION | MATERIALIZED VIEW | NETWORK POLICY | NETWORK RULE | PACKAGES POLICY | PIPE | PROCEDURE | MASKING POLICY | PASSWORD POLICY | PROJECTION POLICY | REPLICATION GROUP | RESOURCE MONITOR | ROLE | ROW ACCESS POLICY | SCHEMA | SESSION POLICY | SECRET | SEQUENCE | STAGE | STREAM | TABLE | TAG | TASK | USER | VIEW | WAREHOUSE
|
|
9307
|
+
:param _builtins.str object_type: Specifies the type of object on which you are transferring ownership. Available values are: AGGREGATION POLICY | ALERT | AUTHENTICATION POLICY | COMPUTE POOL | DATA METRIC FUNCTION | DATABASE | DATABASE ROLE | DYNAMIC TABLE | EVENT TABLE | EXTERNAL TABLE | EXTERNAL VOLUME | FAILOVER GROUP | FILE FORMAT | FUNCTION | GIT REPOSITORY | HYBRID TABLE | ICEBERG TABLE | IMAGE REPOSITORY | INTEGRATION | MATERIALIZED VIEW | NETWORK POLICY | NETWORK RULE | PACKAGES POLICY | PIPE | PROCEDURE | MASKING POLICY | PASSWORD POLICY | PROJECTION POLICY | REPLICATION GROUP | RESOURCE MONITOR | ROLE | ROW ACCESS POLICY | SCHEMA | SESSION POLICY | SECRET | SEMANTIC VIEW | SEQUENCE | STAGE | STREAM | TABLE | TAG | TASK | USER | VIEW | WAREHOUSE
|
|
9054
9308
|
"""
|
|
9055
9309
|
if all is not None:
|
|
9056
9310
|
pulumi.set(__self__, "all", all)
|
|
@@ -9089,7 +9343,7 @@ class GrantOwnershipOn(dict):
|
|
|
9089
9343
|
@pulumi.getter(name="objectType")
|
|
9090
9344
|
def object_type(self) -> Optional[_builtins.str]:
|
|
9091
9345
|
"""
|
|
9092
|
-
Specifies the type of object on which you are transferring ownership. Available values are: AGGREGATION POLICY | ALERT | AUTHENTICATION POLICY | COMPUTE POOL | DATA METRIC FUNCTION | DATABASE | DATABASE ROLE | DYNAMIC TABLE | EVENT TABLE | EXTERNAL TABLE | EXTERNAL VOLUME | FAILOVER GROUP | FILE FORMAT | FUNCTION | GIT REPOSITORY | HYBRID TABLE | ICEBERG TABLE | IMAGE REPOSITORY | INTEGRATION | MATERIALIZED VIEW | NETWORK POLICY | NETWORK RULE | PACKAGES POLICY | PIPE | PROCEDURE | MASKING POLICY | PASSWORD POLICY | PROJECTION POLICY | REPLICATION GROUP | RESOURCE MONITOR | ROLE | ROW ACCESS POLICY | SCHEMA | SESSION POLICY | SECRET | SEQUENCE | STAGE | STREAM | TABLE | TAG | TASK | USER | VIEW | WAREHOUSE
|
|
9346
|
+
Specifies the type of object on which you are transferring ownership. Available values are: AGGREGATION POLICY | ALERT | AUTHENTICATION POLICY | COMPUTE POOL | DATA METRIC FUNCTION | DATABASE | DATABASE ROLE | DYNAMIC TABLE | EVENT TABLE | EXTERNAL TABLE | EXTERNAL VOLUME | FAILOVER GROUP | FILE FORMAT | FUNCTION | GIT REPOSITORY | HYBRID TABLE | ICEBERG TABLE | IMAGE REPOSITORY | INTEGRATION | MATERIALIZED VIEW | NETWORK POLICY | NETWORK RULE | PACKAGES POLICY | PIPE | PROCEDURE | MASKING POLICY | PASSWORD POLICY | PROJECTION POLICY | REPLICATION GROUP | RESOURCE MONITOR | ROLE | ROW ACCESS POLICY | SCHEMA | SESSION POLICY | SECRET | SEMANTIC VIEW | SEQUENCE | STAGE | STREAM | TABLE | TAG | TASK | USER | VIEW | WAREHOUSE
|
|
9093
9347
|
"""
|
|
9094
9348
|
return pulumi.get(self, "object_type")
|
|
9095
9349
|
|
|
@@ -9122,7 +9376,7 @@ class GrantOwnershipOnAll(dict):
|
|
|
9122
9376
|
in_database: Optional[_builtins.str] = None,
|
|
9123
9377
|
in_schema: Optional[_builtins.str] = None):
|
|
9124
9378
|
"""
|
|
9125
|
-
:param _builtins.str object_type_plural: Specifies the type of object in plural form on which you are transferring ownership. Available values are: AGGREGATION POLICIES | ALERTS | AUTHENTICATION POLICIES | COMPUTE POOLS | DATA METRIC FUNCTIONS | DATABASES |
|
|
9379
|
+
:param _builtins.str object_type_plural: Specifies the type of object in plural form on which you are transferring ownership. Available values are: AGGREGATION POLICIES | ALERTS | AUTHENTICATION POLICIES | COMPUTE POOLS | DATA METRIC FUNCTIONS | DATABASES | DYNAMIC TABLES | EVENT TABLES | EXTERNAL TABLES | EXTERNAL VOLUMES | FAILOVER GROUPS | FILE FORMATS | FUNCTIONS | GIT REPOSITORIES | HYBRID TABLES | ICEBERG TABLES | IMAGE REPOSITORIES | INTEGRATIONS | MATERIALIZED VIEWS | NETWORK POLICIES | NETWORK RULES | PACKAGES POLICIES | PIPES | PROCEDURES | MASKING POLICIES | PASSWORD POLICIES | PROJECTION POLICIES | REPLICATION GROUPS | RESOURCE MONITORS | ROLES | ROW ACCESS POLICIES | SCHEMAS | SESSION POLICIES | SECRETS | SEMANTIC VIEWS | SEQUENCES | STAGES | STREAMS | TABLES | TAGS | TASKS | USERS | VIEWS | WAREHOUSES. For more information head over to [Snowflake documentation](https://docs.snowflake.com/en/sql-reference/sql/grant-ownership#required-parameters).
|
|
9126
9380
|
:param _builtins.str in_database: The fully qualified name of the database. For more information about this resource, see docs.
|
|
9127
9381
|
:param _builtins.str in_schema: The fully qualified name of the schema. For more information about this resource, see docs.
|
|
9128
9382
|
"""
|
|
@@ -9136,7 +9390,7 @@ class GrantOwnershipOnAll(dict):
|
|
|
9136
9390
|
@pulumi.getter(name="objectTypePlural")
|
|
9137
9391
|
def object_type_plural(self) -> _builtins.str:
|
|
9138
9392
|
"""
|
|
9139
|
-
Specifies the type of object in plural form on which you are transferring ownership. Available values are: AGGREGATION POLICIES | ALERTS | AUTHENTICATION POLICIES | COMPUTE POOLS | DATA METRIC FUNCTIONS | DATABASES |
|
|
9393
|
+
Specifies the type of object in plural form on which you are transferring ownership. Available values are: AGGREGATION POLICIES | ALERTS | AUTHENTICATION POLICIES | COMPUTE POOLS | DATA METRIC FUNCTIONS | DATABASES | DYNAMIC TABLES | EVENT TABLES | EXTERNAL TABLES | EXTERNAL VOLUMES | FAILOVER GROUPS | FILE FORMATS | FUNCTIONS | GIT REPOSITORIES | HYBRID TABLES | ICEBERG TABLES | IMAGE REPOSITORIES | INTEGRATIONS | MATERIALIZED VIEWS | NETWORK POLICIES | NETWORK RULES | PACKAGES POLICIES | PIPES | PROCEDURES | MASKING POLICIES | PASSWORD POLICIES | PROJECTION POLICIES | REPLICATION GROUPS | RESOURCE MONITORS | ROLES | ROW ACCESS POLICIES | SCHEMAS | SESSION POLICIES | SECRETS | SEMANTIC VIEWS | SEQUENCES | STAGES | STREAMS | TABLES | TAGS | TASKS | USERS | VIEWS | WAREHOUSES. For more information head over to [Snowflake documentation](https://docs.snowflake.com/en/sql-reference/sql/grant-ownership#required-parameters).
|
|
9140
9394
|
"""
|
|
9141
9395
|
return pulumi.get(self, "object_type_plural")
|
|
9142
9396
|
|
|
@@ -9185,7 +9439,7 @@ class GrantOwnershipOnFuture(dict):
|
|
|
9185
9439
|
in_database: Optional[_builtins.str] = None,
|
|
9186
9440
|
in_schema: Optional[_builtins.str] = None):
|
|
9187
9441
|
"""
|
|
9188
|
-
:param _builtins.str object_type_plural: Specifies the type of object in plural form on which you are transferring ownership. Available values are: AGGREGATION POLICIES | ALERTS | AUTHENTICATION POLICIES | COMPUTE POOLS | DATA METRIC FUNCTIONS | DATABASES |
|
|
9442
|
+
:param _builtins.str object_type_plural: Specifies the type of object in plural form on which you are transferring ownership. Available values are: AGGREGATION POLICIES | ALERTS | AUTHENTICATION POLICIES | COMPUTE POOLS | DATA METRIC FUNCTIONS | DATABASES | DYNAMIC TABLES | EVENT TABLES | EXTERNAL TABLES | EXTERNAL VOLUMES | FAILOVER GROUPS | FILE FORMATS | FUNCTIONS | GIT REPOSITORIES | HYBRID TABLES | ICEBERG TABLES | IMAGE REPOSITORIES | INTEGRATIONS | MATERIALIZED VIEWS | NETWORK POLICIES | NETWORK RULES | PACKAGES POLICIES | PIPES | PROCEDURES | MASKING POLICIES | PASSWORD POLICIES | PROJECTION POLICIES | REPLICATION GROUPS | RESOURCE MONITORS | ROLES | ROW ACCESS POLICIES | SCHEMAS | SESSION POLICIES | SECRETS | SEMANTIC VIEWS | SEQUENCES | STAGES | STREAMS | TABLES | TAGS | TASKS | USERS | VIEWS | WAREHOUSES. For more information head over to [Snowflake documentation](https://docs.snowflake.com/en/sql-reference/sql/grant-ownership#required-parameters).
|
|
9189
9443
|
:param _builtins.str in_database: The fully qualified name of the database. For more information about this resource, see docs.
|
|
9190
9444
|
:param _builtins.str in_schema: The fully qualified name of the schema. For more information about this resource, see docs.
|
|
9191
9445
|
"""
|
|
@@ -9199,7 +9453,7 @@ class GrantOwnershipOnFuture(dict):
|
|
|
9199
9453
|
@pulumi.getter(name="objectTypePlural")
|
|
9200
9454
|
def object_type_plural(self) -> _builtins.str:
|
|
9201
9455
|
"""
|
|
9202
|
-
Specifies the type of object in plural form on which you are transferring ownership. Available values are: AGGREGATION POLICIES | ALERTS | AUTHENTICATION POLICIES | COMPUTE POOLS | DATA METRIC FUNCTIONS | DATABASES |
|
|
9456
|
+
Specifies the type of object in plural form on which you are transferring ownership. Available values are: AGGREGATION POLICIES | ALERTS | AUTHENTICATION POLICIES | COMPUTE POOLS | DATA METRIC FUNCTIONS | DATABASES | DYNAMIC TABLES | EVENT TABLES | EXTERNAL TABLES | EXTERNAL VOLUMES | FAILOVER GROUPS | FILE FORMATS | FUNCTIONS | GIT REPOSITORIES | HYBRID TABLES | ICEBERG TABLES | IMAGE REPOSITORIES | INTEGRATIONS | MATERIALIZED VIEWS | NETWORK POLICIES | NETWORK RULES | PACKAGES POLICIES | PIPES | PROCEDURES | MASKING POLICIES | PASSWORD POLICIES | PROJECTION POLICIES | REPLICATION GROUPS | RESOURCE MONITORS | ROLES | ROW ACCESS POLICIES | SCHEMAS | SESSION POLICIES | SECRETS | SEMANTIC VIEWS | SEQUENCES | STAGES | STREAMS | TABLES | TAGS | TASKS | USERS | VIEWS | WAREHOUSES. For more information head over to [Snowflake documentation](https://docs.snowflake.com/en/sql-reference/sql/grant-ownership#required-parameters).
|
|
9203
9457
|
"""
|
|
9204
9458
|
return pulumi.get(self, "object_type_plural")
|
|
9205
9459
|
|
|
@@ -9246,7 +9500,7 @@ class GrantPrivilegesToAccountRoleOnAccountObject(dict):
|
|
|
9246
9500
|
object_type: _builtins.str):
|
|
9247
9501
|
"""
|
|
9248
9502
|
:param _builtins.str object_name: The fully qualified name of the object on which privileges will be granted.
|
|
9249
|
-
:param _builtins.str object_type: The object type of the account object on which privileges will be granted. Valid values are: USER | RESOURCE MONITOR | WAREHOUSE | COMPUTE POOL | DATABASE | INTEGRATION | FAILOVER GROUP | REPLICATION GROUP | EXTERNAL VOLUME
|
|
9503
|
+
:param _builtins.str object_type: The object type of the account object on which privileges will be granted. Valid values are: `USER` | `RESOURCE MONITOR` | `WAREHOUSE` | `COMPUTE POOL` | `DATABASE` | `INTEGRATION` | `CONNECTION` | `FAILOVER GROUP` | `REPLICATION GROUP` | `EXTERNAL VOLUME`
|
|
9250
9504
|
"""
|
|
9251
9505
|
pulumi.set(__self__, "object_name", object_name)
|
|
9252
9506
|
pulumi.set(__self__, "object_type", object_type)
|
|
@@ -9263,7 +9517,7 @@ class GrantPrivilegesToAccountRoleOnAccountObject(dict):
|
|
|
9263
9517
|
@pulumi.getter(name="objectType")
|
|
9264
9518
|
def object_type(self) -> _builtins.str:
|
|
9265
9519
|
"""
|
|
9266
|
-
The object type of the account object on which privileges will be granted. Valid values are: USER | RESOURCE MONITOR | WAREHOUSE | COMPUTE POOL | DATABASE | INTEGRATION | FAILOVER GROUP | REPLICATION GROUP | EXTERNAL VOLUME
|
|
9520
|
+
The object type of the account object on which privileges will be granted. Valid values are: `USER` | `RESOURCE MONITOR` | `WAREHOUSE` | `COMPUTE POOL` | `DATABASE` | `INTEGRATION` | `CONNECTION` | `FAILOVER GROUP` | `REPLICATION GROUP` | `EXTERNAL VOLUME`
|
|
9267
9521
|
"""
|
|
9268
9522
|
return pulumi.get(self, "object_type")
|
|
9269
9523
|
|
|
@@ -9362,7 +9616,7 @@ class GrantPrivilegesToAccountRoleOnSchemaObject(dict):
|
|
|
9362
9616
|
:param 'GrantPrivilegesToAccountRoleOnSchemaObjectAllArgs' all: Configures the privilege to be granted on all objects in either a database or schema.
|
|
9363
9617
|
:param 'GrantPrivilegesToAccountRoleOnSchemaObjectFutureArgs' future: Configures the privilege to be granted on future objects in either a database or schema.
|
|
9364
9618
|
:param _builtins.str object_name: The fully qualified name of the object on which privileges will be granted.
|
|
9365
|
-
:param _builtins.str object_type: The object type of the schema object on which privileges will be granted. Valid values are: AGGREGATION POLICY | ALERT | AUTHENTICATION POLICY | CORTEX SEARCH SERVICE | DATA METRIC FUNCTION | DYNAMIC TABLE | EVENT TABLE | EXTERNAL TABLE | FILE FORMAT | FUNCTION | GIT REPOSITORY | HYBRID TABLE | IMAGE REPOSITORY | ICEBERG TABLE | MASKING POLICY | MATERIALIZED VIEW | MODEL | NETWORK RULE | NOTEBOOK | PACKAGES POLICY | PASSWORD POLICY | PIPE | PROCEDURE | PROJECTION POLICY | ROW ACCESS POLICY | SECRET | SERVICE | SESSION POLICY | SEQUENCE | SNAPSHOT | STAGE | STREAM | TABLE | TAG | TASK | VIEW |
|
|
9619
|
+
:param _builtins.str object_type: The object type of the schema object on which privileges will be granted. Valid values are: AGGREGATION POLICY | ALERT | AUTHENTICATION POLICY | CORTEX SEARCH SERVICE | DATA METRIC FUNCTION | DATASET | DBT PROJECT | DYNAMIC TABLE | EVENT TABLE | EXTERNAL TABLE | FILE FORMAT | FUNCTION | GIT REPOSITORY | HYBRID TABLE | IMAGE REPOSITORY | ICEBERG TABLE | JOIN POLICY | MASKING POLICY | MATERIALIZED VIEW | MODEL | MODEL MONITOR | NETWORK RULE | NOTEBOOK | PACKAGES POLICY | PASSWORD POLICY | PIPE | PRIVACY POLICY | PROCEDURE | PROJECTION POLICY | ROW ACCESS POLICY | SECRET | SEMANTIC VIEW | SERVICE | SESSION POLICY | SEQUENCE | STORAGE LIFECYCLE POLICY | SNAPSHOT | SNAPSHOT POLICY | SNAPSHOT SET | STAGE | STREAM | STREAMLIT | ONLINE FEATURE TABLE | TABLE | TAG | TASK | VIEW | WORKSPACE
|
|
9366
9620
|
"""
|
|
9367
9621
|
if all is not None:
|
|
9368
9622
|
pulumi.set(__self__, "all", all)
|
|
@@ -9401,7 +9655,7 @@ class GrantPrivilegesToAccountRoleOnSchemaObject(dict):
|
|
|
9401
9655
|
@pulumi.getter(name="objectType")
|
|
9402
9656
|
def object_type(self) -> Optional[_builtins.str]:
|
|
9403
9657
|
"""
|
|
9404
|
-
The object type of the schema object on which privileges will be granted. Valid values are: AGGREGATION POLICY | ALERT | AUTHENTICATION POLICY | CORTEX SEARCH SERVICE | DATA METRIC FUNCTION | DYNAMIC TABLE | EVENT TABLE | EXTERNAL TABLE | FILE FORMAT | FUNCTION | GIT REPOSITORY | HYBRID TABLE | IMAGE REPOSITORY | ICEBERG TABLE | MASKING POLICY | MATERIALIZED VIEW | MODEL | NETWORK RULE | NOTEBOOK | PACKAGES POLICY | PASSWORD POLICY | PIPE | PROCEDURE | PROJECTION POLICY | ROW ACCESS POLICY | SECRET | SERVICE | SESSION POLICY | SEQUENCE | SNAPSHOT | STAGE | STREAM | TABLE | TAG | TASK | VIEW |
|
|
9658
|
+
The object type of the schema object on which privileges will be granted. Valid values are: AGGREGATION POLICY | ALERT | AUTHENTICATION POLICY | CORTEX SEARCH SERVICE | DATA METRIC FUNCTION | DATASET | DBT PROJECT | DYNAMIC TABLE | EVENT TABLE | EXTERNAL TABLE | FILE FORMAT | FUNCTION | GIT REPOSITORY | HYBRID TABLE | IMAGE REPOSITORY | ICEBERG TABLE | JOIN POLICY | MASKING POLICY | MATERIALIZED VIEW | MODEL | MODEL MONITOR | NETWORK RULE | NOTEBOOK | PACKAGES POLICY | PASSWORD POLICY | PIPE | PRIVACY POLICY | PROCEDURE | PROJECTION POLICY | ROW ACCESS POLICY | SECRET | SEMANTIC VIEW | SERVICE | SESSION POLICY | SEQUENCE | STORAGE LIFECYCLE POLICY | SNAPSHOT | SNAPSHOT POLICY | SNAPSHOT SET | STAGE | STREAM | STREAMLIT | ONLINE FEATURE TABLE | TABLE | TAG | TASK | VIEW | WORKSPACE
|
|
9405
9659
|
"""
|
|
9406
9660
|
return pulumi.get(self, "object_type")
|
|
9407
9661
|
|
|
@@ -9434,7 +9688,7 @@ class GrantPrivilegesToAccountRoleOnSchemaObjectAll(dict):
|
|
|
9434
9688
|
in_database: Optional[_builtins.str] = None,
|
|
9435
9689
|
in_schema: Optional[_builtins.str] = None):
|
|
9436
9690
|
"""
|
|
9437
|
-
:param _builtins.str object_type_plural: The plural object type of the schema object on which privileges will be granted. Valid values are: AGGREGATION POLICIES | ALERTS | AUTHENTICATION POLICIES | CORTEX SEARCH SERVICES | DATA METRIC FUNCTIONS | DYNAMIC TABLES | EVENT TABLES | EXTERNAL TABLES | FILE FORMATS | FUNCTIONS | GIT REPOSITORIES | HYBRID TABLES | IMAGE REPOSITORIES | ICEBERG TABLES | MASKING POLICIES | MATERIALIZED VIEWS | MODELS | NETWORK RULES | NOTEBOOKS | PACKAGES POLICIES | PASSWORD POLICIES | PIPES | PROCEDURES | PROJECTION POLICIES | ROW ACCESS POLICIES | SECRETS | SERVICES | SESSION POLICIES | SEQUENCES | SNAPSHOTS | STAGES | STREAMS |
|
|
9691
|
+
:param _builtins.str object_type_plural: The plural object type of the schema object on which privileges will be granted. Valid values are: AGGREGATION POLICIES | ALERTS | AUTHENTICATION POLICIES | CORTEX SEARCH SERVICES | DATA METRIC FUNCTIONS | DATASETS | DBT PROJECTS | DYNAMIC TABLES | EVENT TABLES | EXTERNAL TABLES | FILE FORMATS | FUNCTIONS | GIT REPOSITORIES | HYBRID TABLES | IMAGE REPOSITORIES | ICEBERG TABLES | JOIN POLICIES | MASKING POLICIES | MATERIALIZED VIEWS | MODELS | MODEL MONITORS | NETWORK RULES | NOTEBOOKS | PACKAGES POLICIES | PASSWORD POLICIES | PIPES | PRIVACY POLICIES | PROCEDURES | PROJECTION POLICIES | ROW ACCESS POLICIES | SECRETS | SEMANTIC VIEWS | SERVICES | SESSION POLICIES | SEQUENCES | SNAPSHOTS | SNAPSHOT POLICIES | SNAPSHOT SETS | STAGES | STREAMS | STREAMLITS | ONLINE FEATURE TABLES | TABLES | TAGS | TASKS | VIEWS.
|
|
9438
9692
|
"""
|
|
9439
9693
|
pulumi.set(__self__, "object_type_plural", object_type_plural)
|
|
9440
9694
|
if in_database is not None:
|
|
@@ -9446,7 +9700,7 @@ class GrantPrivilegesToAccountRoleOnSchemaObjectAll(dict):
|
|
|
9446
9700
|
@pulumi.getter(name="objectTypePlural")
|
|
9447
9701
|
def object_type_plural(self) -> _builtins.str:
|
|
9448
9702
|
"""
|
|
9449
|
-
The plural object type of the schema object on which privileges will be granted. Valid values are: AGGREGATION POLICIES | ALERTS | AUTHENTICATION POLICIES | CORTEX SEARCH SERVICES | DATA METRIC FUNCTIONS | DYNAMIC TABLES | EVENT TABLES | EXTERNAL TABLES | FILE FORMATS | FUNCTIONS | GIT REPOSITORIES | HYBRID TABLES | IMAGE REPOSITORIES | ICEBERG TABLES | MASKING POLICIES | MATERIALIZED VIEWS | MODELS | NETWORK RULES | NOTEBOOKS | PACKAGES POLICIES | PASSWORD POLICIES | PIPES | PROCEDURES | PROJECTION POLICIES | ROW ACCESS POLICIES | SECRETS | SERVICES | SESSION POLICIES | SEQUENCES | SNAPSHOTS | STAGES | STREAMS |
|
|
9703
|
+
The plural object type of the schema object on which privileges will be granted. Valid values are: AGGREGATION POLICIES | ALERTS | AUTHENTICATION POLICIES | CORTEX SEARCH SERVICES | DATA METRIC FUNCTIONS | DATASETS | DBT PROJECTS | DYNAMIC TABLES | EVENT TABLES | EXTERNAL TABLES | FILE FORMATS | FUNCTIONS | GIT REPOSITORIES | HYBRID TABLES | IMAGE REPOSITORIES | ICEBERG TABLES | JOIN POLICIES | MASKING POLICIES | MATERIALIZED VIEWS | MODELS | MODEL MONITORS | NETWORK RULES | NOTEBOOKS | PACKAGES POLICIES | PASSWORD POLICIES | PIPES | PRIVACY POLICIES | PROCEDURES | PROJECTION POLICIES | ROW ACCESS POLICIES | SECRETS | SEMANTIC VIEWS | SERVICES | SESSION POLICIES | SEQUENCES | SNAPSHOTS | SNAPSHOT POLICIES | SNAPSHOT SETS | STAGES | STREAMS | STREAMLITS | ONLINE FEATURE TABLES | TABLES | TAGS | TASKS | VIEWS.
|
|
9450
9704
|
"""
|
|
9451
9705
|
return pulumi.get(self, "object_type_plural")
|
|
9452
9706
|
|
|
@@ -9489,7 +9743,7 @@ class GrantPrivilegesToAccountRoleOnSchemaObjectFuture(dict):
|
|
|
9489
9743
|
in_database: Optional[_builtins.str] = None,
|
|
9490
9744
|
in_schema: Optional[_builtins.str] = None):
|
|
9491
9745
|
"""
|
|
9492
|
-
:param _builtins.str object_type_plural: The plural object type of the schema object on which privileges will be granted. Valid values are: ALERTS | AUTHENTICATION POLICIES | CORTEX SEARCH SERVICES | DATA METRIC FUNCTIONS | DYNAMIC TABLES | EVENT TABLES | EXTERNAL TABLES | FILE FORMATS | FUNCTIONS | GIT REPOSITORIES | HYBRID TABLES | ICEBERG TABLES | MATERIALIZED VIEWS | MODELS | NETWORK RULES | NOTEBOOKS | PASSWORD POLICIES | PIPES | PROCEDURES | SECRETS | SERVICES | SEQUENCES | SNAPSHOTS | STAGES | STREAMS |
|
|
9746
|
+
:param _builtins.str object_type_plural: The plural object type of the schema object on which privileges will be granted. Valid values are: ALERTS | AUTHENTICATION POLICIES | CORTEX SEARCH SERVICES | DATA METRIC FUNCTIONS | DATASETS | DBT PROJECTS | DYNAMIC TABLES | EVENT TABLES | EXTERNAL TABLES | FILE FORMATS | FUNCTIONS | GIT REPOSITORIES | HYBRID TABLES | ICEBERG TABLES | JOIN POLICIES | MATERIALIZED VIEWS | MODELS | MODEL MONITORS | NETWORK RULES | NOTEBOOKS | PASSWORD POLICIES | PIPES | PRIVACY POLICIES | PROCEDURES | SECRETS | SEMANTIC VIEWS | SERVICES | SEQUENCES | SNAPSHOTS | SNAPSHOT POLICIES | SNAPSHOT SETS | STAGES | STREAMS | STREAMLITS | ONLINE FEATURE TABLES | TABLES | TASKS | VIEWS.
|
|
9493
9747
|
"""
|
|
9494
9748
|
pulumi.set(__self__, "object_type_plural", object_type_plural)
|
|
9495
9749
|
if in_database is not None:
|
|
@@ -9501,7 +9755,7 @@ class GrantPrivilegesToAccountRoleOnSchemaObjectFuture(dict):
|
|
|
9501
9755
|
@pulumi.getter(name="objectTypePlural")
|
|
9502
9756
|
def object_type_plural(self) -> _builtins.str:
|
|
9503
9757
|
"""
|
|
9504
|
-
The plural object type of the schema object on which privileges will be granted. Valid values are: ALERTS | AUTHENTICATION POLICIES | CORTEX SEARCH SERVICES | DATA METRIC FUNCTIONS | DYNAMIC TABLES | EVENT TABLES | EXTERNAL TABLES | FILE FORMATS | FUNCTIONS | GIT REPOSITORIES | HYBRID TABLES | ICEBERG TABLES | MATERIALIZED VIEWS | MODELS | NETWORK RULES | NOTEBOOKS | PASSWORD POLICIES | PIPES | PROCEDURES | SECRETS | SERVICES | SEQUENCES | SNAPSHOTS | STAGES | STREAMS |
|
|
9758
|
+
The plural object type of the schema object on which privileges will be granted. Valid values are: ALERTS | AUTHENTICATION POLICIES | CORTEX SEARCH SERVICES | DATA METRIC FUNCTIONS | DATASETS | DBT PROJECTS | DYNAMIC TABLES | EVENT TABLES | EXTERNAL TABLES | FILE FORMATS | FUNCTIONS | GIT REPOSITORIES | HYBRID TABLES | ICEBERG TABLES | JOIN POLICIES | MATERIALIZED VIEWS | MODELS | MODEL MONITORS | NETWORK RULES | NOTEBOOKS | PASSWORD POLICIES | PIPES | PRIVACY POLICIES | PROCEDURES | SECRETS | SEMANTIC VIEWS | SERVICES | SEQUENCES | SNAPSHOTS | SNAPSHOT POLICIES | SNAPSHOT SETS | STAGES | STREAMS | STREAMLITS | ONLINE FEATURE TABLES | TABLES | TASKS | VIEWS.
|
|
9505
9759
|
"""
|
|
9506
9760
|
return pulumi.get(self, "object_type_plural")
|
|
9507
9761
|
|
|
@@ -9610,7 +9864,7 @@ class GrantPrivilegesToDatabaseRoleOnSchemaObject(dict):
|
|
|
9610
9864
|
:param 'GrantPrivilegesToDatabaseRoleOnSchemaObjectAllArgs' all: Configures the privilege to be granted on all objects in either a database or schema.
|
|
9611
9865
|
:param 'GrantPrivilegesToDatabaseRoleOnSchemaObjectFutureArgs' future: Configures the privilege to be granted on future objects in either a database or schema.
|
|
9612
9866
|
:param _builtins.str object_name: The fully qualified name of the object on which privileges will be granted.
|
|
9613
|
-
:param _builtins.str object_type: The object type of the schema object on which privileges will be granted. Valid values are: AGGREGATION POLICY | ALERT | AUTHENTICATION POLICY | CORTEX SEARCH SERVICE | DATA METRIC FUNCTION | DYNAMIC TABLE | EVENT TABLE | EXTERNAL TABLE | FILE FORMAT | FUNCTION | GIT REPOSITORY | HYBRID TABLE | IMAGE REPOSITORY | ICEBERG TABLE | MASKING POLICY | MATERIALIZED VIEW | MODEL | NETWORK RULE | NOTEBOOK | PACKAGES POLICY | PASSWORD POLICY | PIPE | PROCEDURE | PROJECTION POLICY | ROW ACCESS POLICY | SECRET | SERVICE | SESSION POLICY | SEQUENCE | SNAPSHOT | STAGE | STREAM | TABLE | TAG | TASK | VIEW |
|
|
9867
|
+
:param _builtins.str object_type: The object type of the schema object on which privileges will be granted. Valid values are: AGGREGATION POLICY | ALERT | AUTHENTICATION POLICY | CORTEX SEARCH SERVICE | DATA METRIC FUNCTION | DATASET | DBT PROJECT | DYNAMIC TABLE | EVENT TABLE | EXTERNAL TABLE | FILE FORMAT | FUNCTION | GIT REPOSITORY | HYBRID TABLE | IMAGE REPOSITORY | ICEBERG TABLE | JOIN POLICY | MASKING POLICY | MATERIALIZED VIEW | MODEL | MODEL MONITOR | NETWORK RULE | NOTEBOOK | PACKAGES POLICY | PASSWORD POLICY | PIPE | PRIVACY POLICY | PROCEDURE | PROJECTION POLICY | ROW ACCESS POLICY | SECRET | SEMANTIC VIEW | SERVICE | SESSION POLICY | SEQUENCE | STORAGE LIFECYCLE POLICY | SNAPSHOT | SNAPSHOT POLICY | SNAPSHOT SET | STAGE | STREAM | STREAMLIT | ONLINE FEATURE TABLE | TABLE | TAG | TASK | VIEW | WORKSPACE
|
|
9614
9868
|
"""
|
|
9615
9869
|
if all is not None:
|
|
9616
9870
|
pulumi.set(__self__, "all", all)
|
|
@@ -9649,7 +9903,7 @@ class GrantPrivilegesToDatabaseRoleOnSchemaObject(dict):
|
|
|
9649
9903
|
@pulumi.getter(name="objectType")
|
|
9650
9904
|
def object_type(self) -> Optional[_builtins.str]:
|
|
9651
9905
|
"""
|
|
9652
|
-
The object type of the schema object on which privileges will be granted. Valid values are: AGGREGATION POLICY | ALERT | AUTHENTICATION POLICY | CORTEX SEARCH SERVICE | DATA METRIC FUNCTION | DYNAMIC TABLE | EVENT TABLE | EXTERNAL TABLE | FILE FORMAT | FUNCTION | GIT REPOSITORY | HYBRID TABLE | IMAGE REPOSITORY | ICEBERG TABLE | MASKING POLICY | MATERIALIZED VIEW | MODEL | NETWORK RULE | NOTEBOOK | PACKAGES POLICY | PASSWORD POLICY | PIPE | PROCEDURE | PROJECTION POLICY | ROW ACCESS POLICY | SECRET | SERVICE | SESSION POLICY | SEQUENCE | SNAPSHOT | STAGE | STREAM | TABLE | TAG | TASK | VIEW |
|
|
9906
|
+
The object type of the schema object on which privileges will be granted. Valid values are: AGGREGATION POLICY | ALERT | AUTHENTICATION POLICY | CORTEX SEARCH SERVICE | DATA METRIC FUNCTION | DATASET | DBT PROJECT | DYNAMIC TABLE | EVENT TABLE | EXTERNAL TABLE | FILE FORMAT | FUNCTION | GIT REPOSITORY | HYBRID TABLE | IMAGE REPOSITORY | ICEBERG TABLE | JOIN POLICY | MASKING POLICY | MATERIALIZED VIEW | MODEL | MODEL MONITOR | NETWORK RULE | NOTEBOOK | PACKAGES POLICY | PASSWORD POLICY | PIPE | PRIVACY POLICY | PROCEDURE | PROJECTION POLICY | ROW ACCESS POLICY | SECRET | SEMANTIC VIEW | SERVICE | SESSION POLICY | SEQUENCE | STORAGE LIFECYCLE POLICY | SNAPSHOT | SNAPSHOT POLICY | SNAPSHOT SET | STAGE | STREAM | STREAMLIT | ONLINE FEATURE TABLE | TABLE | TAG | TASK | VIEW | WORKSPACE
|
|
9653
9907
|
"""
|
|
9654
9908
|
return pulumi.get(self, "object_type")
|
|
9655
9909
|
|
|
@@ -9682,7 +9936,7 @@ class GrantPrivilegesToDatabaseRoleOnSchemaObjectAll(dict):
|
|
|
9682
9936
|
in_database: Optional[_builtins.str] = None,
|
|
9683
9937
|
in_schema: Optional[_builtins.str] = None):
|
|
9684
9938
|
"""
|
|
9685
|
-
:param _builtins.str object_type_plural: The plural object type of the schema object on which privileges will be granted. Valid values are: AGGREGATION POLICIES | ALERTS | AUTHENTICATION POLICIES | CORTEX SEARCH SERVICES | DATA METRIC FUNCTIONS | DYNAMIC TABLES | EVENT TABLES | EXTERNAL TABLES | FILE FORMATS | FUNCTIONS | GIT REPOSITORIES | HYBRID TABLES | IMAGE REPOSITORIES | ICEBERG TABLES | MASKING POLICIES | MATERIALIZED VIEWS | MODELS | NETWORK RULES | NOTEBOOKS | PACKAGES POLICIES | PASSWORD POLICIES | PIPES | PROCEDURES | PROJECTION POLICIES | ROW ACCESS POLICIES | SECRETS | SERVICES | SESSION POLICIES | SEQUENCES | SNAPSHOTS | STAGES | STREAMS |
|
|
9939
|
+
:param _builtins.str object_type_plural: The plural object type of the schema object on which privileges will be granted. Valid values are: AGGREGATION POLICIES | ALERTS | AUTHENTICATION POLICIES | CORTEX SEARCH SERVICES | DATA METRIC FUNCTIONS | DATASETS | DBT PROJECTS | DYNAMIC TABLES | EVENT TABLES | EXTERNAL TABLES | FILE FORMATS | FUNCTIONS | GIT REPOSITORIES | HYBRID TABLES | IMAGE REPOSITORIES | ICEBERG TABLES | JOIN POLICIES | MASKING POLICIES | MATERIALIZED VIEWS | MODELS | MODEL MONITORS | NETWORK RULES | NOTEBOOKS | PACKAGES POLICIES | PASSWORD POLICIES | PIPES | PRIVACY POLICIES | PROCEDURES | PROJECTION POLICIES | ROW ACCESS POLICIES | SECRETS | SEMANTIC VIEWS | SERVICES | SESSION POLICIES | SEQUENCES | SNAPSHOTS | SNAPSHOT POLICIES | SNAPSHOT SETS | STAGES | STREAMS | STREAMLITS | ONLINE FEATURE TABLES | TABLES | TAGS | TASKS | VIEWS.
|
|
9686
9940
|
:param _builtins.str in_database: The fully qualified name of the database.
|
|
9687
9941
|
:param _builtins.str in_schema: The fully qualified name of the schema.
|
|
9688
9942
|
"""
|
|
@@ -9696,7 +9950,7 @@ class GrantPrivilegesToDatabaseRoleOnSchemaObjectAll(dict):
|
|
|
9696
9950
|
@pulumi.getter(name="objectTypePlural")
|
|
9697
9951
|
def object_type_plural(self) -> _builtins.str:
|
|
9698
9952
|
"""
|
|
9699
|
-
The plural object type of the schema object on which privileges will be granted. Valid values are: AGGREGATION POLICIES | ALERTS | AUTHENTICATION POLICIES | CORTEX SEARCH SERVICES | DATA METRIC FUNCTIONS | DYNAMIC TABLES | EVENT TABLES | EXTERNAL TABLES | FILE FORMATS | FUNCTIONS | GIT REPOSITORIES | HYBRID TABLES | IMAGE REPOSITORIES | ICEBERG TABLES | MASKING POLICIES | MATERIALIZED VIEWS | MODELS | NETWORK RULES | NOTEBOOKS | PACKAGES POLICIES | PASSWORD POLICIES | PIPES | PROCEDURES | PROJECTION POLICIES | ROW ACCESS POLICIES | SECRETS | SERVICES | SESSION POLICIES | SEQUENCES | SNAPSHOTS | STAGES | STREAMS |
|
|
9953
|
+
The plural object type of the schema object on which privileges will be granted. Valid values are: AGGREGATION POLICIES | ALERTS | AUTHENTICATION POLICIES | CORTEX SEARCH SERVICES | DATA METRIC FUNCTIONS | DATASETS | DBT PROJECTS | DYNAMIC TABLES | EVENT TABLES | EXTERNAL TABLES | FILE FORMATS | FUNCTIONS | GIT REPOSITORIES | HYBRID TABLES | IMAGE REPOSITORIES | ICEBERG TABLES | JOIN POLICIES | MASKING POLICIES | MATERIALIZED VIEWS | MODELS | MODEL MONITORS | NETWORK RULES | NOTEBOOKS | PACKAGES POLICIES | PASSWORD POLICIES | PIPES | PRIVACY POLICIES | PROCEDURES | PROJECTION POLICIES | ROW ACCESS POLICIES | SECRETS | SEMANTIC VIEWS | SERVICES | SESSION POLICIES | SEQUENCES | SNAPSHOTS | SNAPSHOT POLICIES | SNAPSHOT SETS | STAGES | STREAMS | STREAMLITS | ONLINE FEATURE TABLES | TABLES | TAGS | TASKS | VIEWS.
|
|
9700
9954
|
"""
|
|
9701
9955
|
return pulumi.get(self, "object_type_plural")
|
|
9702
9956
|
|
|
@@ -9745,7 +9999,7 @@ class GrantPrivilegesToDatabaseRoleOnSchemaObjectFuture(dict):
|
|
|
9745
9999
|
in_database: Optional[_builtins.str] = None,
|
|
9746
10000
|
in_schema: Optional[_builtins.str] = None):
|
|
9747
10001
|
"""
|
|
9748
|
-
:param _builtins.str object_type_plural: The plural object type of the schema object on which privileges will be granted. Valid values are: ALERTS | AUTHENTICATION POLICIES | CORTEX SEARCH SERVICES | DATA METRIC FUNCTIONS | DYNAMIC TABLES | EVENT TABLES | EXTERNAL TABLES | FILE FORMATS | FUNCTIONS | GIT REPOSITORIES | HYBRID TABLES | ICEBERG TABLES | MATERIALIZED VIEWS | MODELS | NETWORK RULES | NOTEBOOKS | PASSWORD POLICIES | PIPES | PROCEDURES | SECRETS | SERVICES | SEQUENCES | SNAPSHOTS | STAGES | STREAMS |
|
|
10002
|
+
:param _builtins.str object_type_plural: The plural object type of the schema object on which privileges will be granted. Valid values are: ALERTS | AUTHENTICATION POLICIES | CORTEX SEARCH SERVICES | DATA METRIC FUNCTIONS | DATASETS | DBT PROJECTS | DYNAMIC TABLES | EVENT TABLES | EXTERNAL TABLES | FILE FORMATS | FUNCTIONS | GIT REPOSITORIES | HYBRID TABLES | ICEBERG TABLES | JOIN POLICIES | MATERIALIZED VIEWS | MODELS | MODEL MONITORS | NETWORK RULES | NOTEBOOKS | PASSWORD POLICIES | PIPES | PRIVACY POLICIES | PROCEDURES | SECRETS | SEMANTIC VIEWS | SERVICES | SEQUENCES | SNAPSHOTS | SNAPSHOT POLICIES | SNAPSHOT SETS | STAGES | STREAMS | STREAMLITS | ONLINE FEATURE TABLES | TABLES | TASKS | VIEWS.
|
|
9749
10003
|
:param _builtins.str in_database: The fully qualified name of the database.
|
|
9750
10004
|
:param _builtins.str in_schema: The fully qualified name of the schema.
|
|
9751
10005
|
"""
|
|
@@ -9759,7 +10013,7 @@ class GrantPrivilegesToDatabaseRoleOnSchemaObjectFuture(dict):
|
|
|
9759
10013
|
@pulumi.getter(name="objectTypePlural")
|
|
9760
10014
|
def object_type_plural(self) -> _builtins.str:
|
|
9761
10015
|
"""
|
|
9762
|
-
The plural object type of the schema object on which privileges will be granted. Valid values are: ALERTS | AUTHENTICATION POLICIES | CORTEX SEARCH SERVICES | DATA METRIC FUNCTIONS | DYNAMIC TABLES | EVENT TABLES | EXTERNAL TABLES | FILE FORMATS | FUNCTIONS | GIT REPOSITORIES | HYBRID TABLES | ICEBERG TABLES | MATERIALIZED VIEWS | MODELS | NETWORK RULES | NOTEBOOKS | PASSWORD POLICIES | PIPES | PROCEDURES | SECRETS | SERVICES | SEQUENCES | SNAPSHOTS | STAGES | STREAMS |
|
|
10016
|
+
The plural object type of the schema object on which privileges will be granted. Valid values are: ALERTS | AUTHENTICATION POLICIES | CORTEX SEARCH SERVICES | DATA METRIC FUNCTIONS | DATASETS | DBT PROJECTS | DYNAMIC TABLES | EVENT TABLES | EXTERNAL TABLES | FILE FORMATS | FUNCTIONS | GIT REPOSITORIES | HYBRID TABLES | ICEBERG TABLES | JOIN POLICIES | MATERIALIZED VIEWS | MODELS | MODEL MONITORS | NETWORK RULES | NOTEBOOKS | PASSWORD POLICIES | PIPES | PRIVACY POLICIES | PROCEDURES | SECRETS | SEMANTIC VIEWS | SERVICES | SEQUENCES | SNAPSHOTS | SNAPSHOT POLICIES | SNAPSHOT SETS | STAGES | STREAMS | STREAMLITS | ONLINE FEATURE TABLES | TABLES | TASKS | VIEWS.
|
|
9763
10017
|
"""
|
|
9764
10018
|
return pulumi.get(self, "object_type_plural")
|
|
9765
10019
|
|
|
@@ -14910,6 +15164,452 @@ class NetworkPolicyShowOutput(dict):
|
|
|
14910
15164
|
return pulumi.get(self, "name")
|
|
14911
15165
|
|
|
14912
15166
|
|
|
15167
|
+
@pulumi.output_type
|
|
15168
|
+
class NotebookDescribeOutput(dict):
|
|
15169
|
+
@staticmethod
|
|
15170
|
+
def __key_warning(key: str):
|
|
15171
|
+
suggest = None
|
|
15172
|
+
if key == "codeWarehouse":
|
|
15173
|
+
suggest = "code_warehouse"
|
|
15174
|
+
elif key == "computePool":
|
|
15175
|
+
suggest = "compute_pool"
|
|
15176
|
+
elif key == "defaultPackages":
|
|
15177
|
+
suggest = "default_packages"
|
|
15178
|
+
elif key == "defaultVersion":
|
|
15179
|
+
suggest = "default_version"
|
|
15180
|
+
elif key == "defaultVersionAlias":
|
|
15181
|
+
suggest = "default_version_alias"
|
|
15182
|
+
elif key == "defaultVersionGitCommitHash":
|
|
15183
|
+
suggest = "default_version_git_commit_hash"
|
|
15184
|
+
elif key == "defaultVersionLocationUri":
|
|
15185
|
+
suggest = "default_version_location_uri"
|
|
15186
|
+
elif key == "defaultVersionName":
|
|
15187
|
+
suggest = "default_version_name"
|
|
15188
|
+
elif key == "defaultVersionSourceLocationUri":
|
|
15189
|
+
suggest = "default_version_source_location_uri"
|
|
15190
|
+
elif key == "externalAccessIntegrations":
|
|
15191
|
+
suggest = "external_access_integrations"
|
|
15192
|
+
elif key == "externalAccessSecrets":
|
|
15193
|
+
suggest = "external_access_secrets"
|
|
15194
|
+
elif key == "idleAutoShutdownTimeSeconds":
|
|
15195
|
+
suggest = "idle_auto_shutdown_time_seconds"
|
|
15196
|
+
elif key == "importUrls":
|
|
15197
|
+
suggest = "import_urls"
|
|
15198
|
+
elif key == "lastVersionAlias":
|
|
15199
|
+
suggest = "last_version_alias"
|
|
15200
|
+
elif key == "lastVersionGitCommitHash":
|
|
15201
|
+
suggest = "last_version_git_commit_hash"
|
|
15202
|
+
elif key == "lastVersionLocationUri":
|
|
15203
|
+
suggest = "last_version_location_uri"
|
|
15204
|
+
elif key == "lastVersionName":
|
|
15205
|
+
suggest = "last_version_name"
|
|
15206
|
+
elif key == "lastVersionSourceLocationUri":
|
|
15207
|
+
suggest = "last_version_source_location_uri"
|
|
15208
|
+
elif key == "liveVersionLocationUri":
|
|
15209
|
+
suggest = "live_version_location_uri"
|
|
15210
|
+
elif key == "mainFile":
|
|
15211
|
+
suggest = "main_file"
|
|
15212
|
+
elif key == "queryWarehouse":
|
|
15213
|
+
suggest = "query_warehouse"
|
|
15214
|
+
elif key == "runtimeEnvironmentVersion":
|
|
15215
|
+
suggest = "runtime_environment_version"
|
|
15216
|
+
elif key == "runtimeName":
|
|
15217
|
+
suggest = "runtime_name"
|
|
15218
|
+
elif key == "urlId":
|
|
15219
|
+
suggest = "url_id"
|
|
15220
|
+
elif key == "userPackages":
|
|
15221
|
+
suggest = "user_packages"
|
|
15222
|
+
|
|
15223
|
+
if suggest:
|
|
15224
|
+
pulumi.log.warn(f"Key '{key}' not found in NotebookDescribeOutput. Access the value via the '{suggest}' property getter instead.")
|
|
15225
|
+
|
|
15226
|
+
def __getitem__(self, key: str) -> Any:
|
|
15227
|
+
NotebookDescribeOutput.__key_warning(key)
|
|
15228
|
+
return super().__getitem__(key)
|
|
15229
|
+
|
|
15230
|
+
def get(self, key: str, default = None) -> Any:
|
|
15231
|
+
NotebookDescribeOutput.__key_warning(key)
|
|
15232
|
+
return super().get(key, default)
|
|
15233
|
+
|
|
15234
|
+
def __init__(__self__, *,
|
|
15235
|
+
code_warehouse: Optional[_builtins.str] = None,
|
|
15236
|
+
comment: Optional[_builtins.str] = None,
|
|
15237
|
+
compute_pool: Optional[_builtins.str] = None,
|
|
15238
|
+
default_packages: Optional[_builtins.str] = None,
|
|
15239
|
+
default_version: Optional[_builtins.str] = None,
|
|
15240
|
+
default_version_alias: Optional[_builtins.str] = None,
|
|
15241
|
+
default_version_git_commit_hash: Optional[_builtins.str] = None,
|
|
15242
|
+
default_version_location_uri: Optional[_builtins.str] = None,
|
|
15243
|
+
default_version_name: Optional[_builtins.str] = None,
|
|
15244
|
+
default_version_source_location_uri: Optional[_builtins.str] = None,
|
|
15245
|
+
external_access_integrations: Optional[_builtins.str] = None,
|
|
15246
|
+
external_access_secrets: Optional[_builtins.str] = None,
|
|
15247
|
+
idle_auto_shutdown_time_seconds: Optional[_builtins.int] = None,
|
|
15248
|
+
import_urls: Optional[_builtins.str] = None,
|
|
15249
|
+
last_version_alias: Optional[_builtins.str] = None,
|
|
15250
|
+
last_version_git_commit_hash: Optional[_builtins.str] = None,
|
|
15251
|
+
last_version_location_uri: Optional[_builtins.str] = None,
|
|
15252
|
+
last_version_name: Optional[_builtins.str] = None,
|
|
15253
|
+
last_version_source_location_uri: Optional[_builtins.str] = None,
|
|
15254
|
+
live_version_location_uri: Optional[_builtins.str] = None,
|
|
15255
|
+
main_file: Optional[_builtins.str] = None,
|
|
15256
|
+
name: Optional[_builtins.str] = None,
|
|
15257
|
+
owner: Optional[_builtins.str] = None,
|
|
15258
|
+
query_warehouse: Optional[_builtins.str] = None,
|
|
15259
|
+
runtime_environment_version: Optional[_builtins.str] = None,
|
|
15260
|
+
runtime_name: Optional[_builtins.str] = None,
|
|
15261
|
+
title: Optional[_builtins.str] = None,
|
|
15262
|
+
url_id: Optional[_builtins.str] = None,
|
|
15263
|
+
user_packages: Optional[_builtins.str] = None):
|
|
15264
|
+
if code_warehouse is not None:
|
|
15265
|
+
pulumi.set(__self__, "code_warehouse", code_warehouse)
|
|
15266
|
+
if comment is not None:
|
|
15267
|
+
pulumi.set(__self__, "comment", comment)
|
|
15268
|
+
if compute_pool is not None:
|
|
15269
|
+
pulumi.set(__self__, "compute_pool", compute_pool)
|
|
15270
|
+
if default_packages is not None:
|
|
15271
|
+
pulumi.set(__self__, "default_packages", default_packages)
|
|
15272
|
+
if default_version is not None:
|
|
15273
|
+
pulumi.set(__self__, "default_version", default_version)
|
|
15274
|
+
if default_version_alias is not None:
|
|
15275
|
+
pulumi.set(__self__, "default_version_alias", default_version_alias)
|
|
15276
|
+
if default_version_git_commit_hash is not None:
|
|
15277
|
+
pulumi.set(__self__, "default_version_git_commit_hash", default_version_git_commit_hash)
|
|
15278
|
+
if default_version_location_uri is not None:
|
|
15279
|
+
pulumi.set(__self__, "default_version_location_uri", default_version_location_uri)
|
|
15280
|
+
if default_version_name is not None:
|
|
15281
|
+
pulumi.set(__self__, "default_version_name", default_version_name)
|
|
15282
|
+
if default_version_source_location_uri is not None:
|
|
15283
|
+
pulumi.set(__self__, "default_version_source_location_uri", default_version_source_location_uri)
|
|
15284
|
+
if external_access_integrations is not None:
|
|
15285
|
+
pulumi.set(__self__, "external_access_integrations", external_access_integrations)
|
|
15286
|
+
if external_access_secrets is not None:
|
|
15287
|
+
pulumi.set(__self__, "external_access_secrets", external_access_secrets)
|
|
15288
|
+
if idle_auto_shutdown_time_seconds is not None:
|
|
15289
|
+
pulumi.set(__self__, "idle_auto_shutdown_time_seconds", idle_auto_shutdown_time_seconds)
|
|
15290
|
+
if import_urls is not None:
|
|
15291
|
+
pulumi.set(__self__, "import_urls", import_urls)
|
|
15292
|
+
if last_version_alias is not None:
|
|
15293
|
+
pulumi.set(__self__, "last_version_alias", last_version_alias)
|
|
15294
|
+
if last_version_git_commit_hash is not None:
|
|
15295
|
+
pulumi.set(__self__, "last_version_git_commit_hash", last_version_git_commit_hash)
|
|
15296
|
+
if last_version_location_uri is not None:
|
|
15297
|
+
pulumi.set(__self__, "last_version_location_uri", last_version_location_uri)
|
|
15298
|
+
if last_version_name is not None:
|
|
15299
|
+
pulumi.set(__self__, "last_version_name", last_version_name)
|
|
15300
|
+
if last_version_source_location_uri is not None:
|
|
15301
|
+
pulumi.set(__self__, "last_version_source_location_uri", last_version_source_location_uri)
|
|
15302
|
+
if live_version_location_uri is not None:
|
|
15303
|
+
pulumi.set(__self__, "live_version_location_uri", live_version_location_uri)
|
|
15304
|
+
if main_file is not None:
|
|
15305
|
+
pulumi.set(__self__, "main_file", main_file)
|
|
15306
|
+
if name is not None:
|
|
15307
|
+
pulumi.set(__self__, "name", name)
|
|
15308
|
+
if owner is not None:
|
|
15309
|
+
pulumi.set(__self__, "owner", owner)
|
|
15310
|
+
if query_warehouse is not None:
|
|
15311
|
+
pulumi.set(__self__, "query_warehouse", query_warehouse)
|
|
15312
|
+
if runtime_environment_version is not None:
|
|
15313
|
+
pulumi.set(__self__, "runtime_environment_version", runtime_environment_version)
|
|
15314
|
+
if runtime_name is not None:
|
|
15315
|
+
pulumi.set(__self__, "runtime_name", runtime_name)
|
|
15316
|
+
if title is not None:
|
|
15317
|
+
pulumi.set(__self__, "title", title)
|
|
15318
|
+
if url_id is not None:
|
|
15319
|
+
pulumi.set(__self__, "url_id", url_id)
|
|
15320
|
+
if user_packages is not None:
|
|
15321
|
+
pulumi.set(__self__, "user_packages", user_packages)
|
|
15322
|
+
|
|
15323
|
+
@_builtins.property
|
|
15324
|
+
@pulumi.getter(name="codeWarehouse")
|
|
15325
|
+
def code_warehouse(self) -> Optional[_builtins.str]:
|
|
15326
|
+
return pulumi.get(self, "code_warehouse")
|
|
15327
|
+
|
|
15328
|
+
@_builtins.property
|
|
15329
|
+
@pulumi.getter
|
|
15330
|
+
def comment(self) -> Optional[_builtins.str]:
|
|
15331
|
+
return pulumi.get(self, "comment")
|
|
15332
|
+
|
|
15333
|
+
@_builtins.property
|
|
15334
|
+
@pulumi.getter(name="computePool")
|
|
15335
|
+
def compute_pool(self) -> Optional[_builtins.str]:
|
|
15336
|
+
return pulumi.get(self, "compute_pool")
|
|
15337
|
+
|
|
15338
|
+
@_builtins.property
|
|
15339
|
+
@pulumi.getter(name="defaultPackages")
|
|
15340
|
+
def default_packages(self) -> Optional[_builtins.str]:
|
|
15341
|
+
return pulumi.get(self, "default_packages")
|
|
15342
|
+
|
|
15343
|
+
@_builtins.property
|
|
15344
|
+
@pulumi.getter(name="defaultVersion")
|
|
15345
|
+
def default_version(self) -> Optional[_builtins.str]:
|
|
15346
|
+
return pulumi.get(self, "default_version")
|
|
15347
|
+
|
|
15348
|
+
@_builtins.property
|
|
15349
|
+
@pulumi.getter(name="defaultVersionAlias")
|
|
15350
|
+
def default_version_alias(self) -> Optional[_builtins.str]:
|
|
15351
|
+
return pulumi.get(self, "default_version_alias")
|
|
15352
|
+
|
|
15353
|
+
@_builtins.property
|
|
15354
|
+
@pulumi.getter(name="defaultVersionGitCommitHash")
|
|
15355
|
+
def default_version_git_commit_hash(self) -> Optional[_builtins.str]:
|
|
15356
|
+
return pulumi.get(self, "default_version_git_commit_hash")
|
|
15357
|
+
|
|
15358
|
+
@_builtins.property
|
|
15359
|
+
@pulumi.getter(name="defaultVersionLocationUri")
|
|
15360
|
+
def default_version_location_uri(self) -> Optional[_builtins.str]:
|
|
15361
|
+
return pulumi.get(self, "default_version_location_uri")
|
|
15362
|
+
|
|
15363
|
+
@_builtins.property
|
|
15364
|
+
@pulumi.getter(name="defaultVersionName")
|
|
15365
|
+
def default_version_name(self) -> Optional[_builtins.str]:
|
|
15366
|
+
return pulumi.get(self, "default_version_name")
|
|
15367
|
+
|
|
15368
|
+
@_builtins.property
|
|
15369
|
+
@pulumi.getter(name="defaultVersionSourceLocationUri")
|
|
15370
|
+
def default_version_source_location_uri(self) -> Optional[_builtins.str]:
|
|
15371
|
+
return pulumi.get(self, "default_version_source_location_uri")
|
|
15372
|
+
|
|
15373
|
+
@_builtins.property
|
|
15374
|
+
@pulumi.getter(name="externalAccessIntegrations")
|
|
15375
|
+
def external_access_integrations(self) -> Optional[_builtins.str]:
|
|
15376
|
+
return pulumi.get(self, "external_access_integrations")
|
|
15377
|
+
|
|
15378
|
+
@_builtins.property
|
|
15379
|
+
@pulumi.getter(name="externalAccessSecrets")
|
|
15380
|
+
def external_access_secrets(self) -> Optional[_builtins.str]:
|
|
15381
|
+
return pulumi.get(self, "external_access_secrets")
|
|
15382
|
+
|
|
15383
|
+
@_builtins.property
|
|
15384
|
+
@pulumi.getter(name="idleAutoShutdownTimeSeconds")
|
|
15385
|
+
def idle_auto_shutdown_time_seconds(self) -> Optional[_builtins.int]:
|
|
15386
|
+
return pulumi.get(self, "idle_auto_shutdown_time_seconds")
|
|
15387
|
+
|
|
15388
|
+
@_builtins.property
|
|
15389
|
+
@pulumi.getter(name="importUrls")
|
|
15390
|
+
def import_urls(self) -> Optional[_builtins.str]:
|
|
15391
|
+
return pulumi.get(self, "import_urls")
|
|
15392
|
+
|
|
15393
|
+
@_builtins.property
|
|
15394
|
+
@pulumi.getter(name="lastVersionAlias")
|
|
15395
|
+
def last_version_alias(self) -> Optional[_builtins.str]:
|
|
15396
|
+
return pulumi.get(self, "last_version_alias")
|
|
15397
|
+
|
|
15398
|
+
@_builtins.property
|
|
15399
|
+
@pulumi.getter(name="lastVersionGitCommitHash")
|
|
15400
|
+
def last_version_git_commit_hash(self) -> Optional[_builtins.str]:
|
|
15401
|
+
return pulumi.get(self, "last_version_git_commit_hash")
|
|
15402
|
+
|
|
15403
|
+
@_builtins.property
|
|
15404
|
+
@pulumi.getter(name="lastVersionLocationUri")
|
|
15405
|
+
def last_version_location_uri(self) -> Optional[_builtins.str]:
|
|
15406
|
+
return pulumi.get(self, "last_version_location_uri")
|
|
15407
|
+
|
|
15408
|
+
@_builtins.property
|
|
15409
|
+
@pulumi.getter(name="lastVersionName")
|
|
15410
|
+
def last_version_name(self) -> Optional[_builtins.str]:
|
|
15411
|
+
return pulumi.get(self, "last_version_name")
|
|
15412
|
+
|
|
15413
|
+
@_builtins.property
|
|
15414
|
+
@pulumi.getter(name="lastVersionSourceLocationUri")
|
|
15415
|
+
def last_version_source_location_uri(self) -> Optional[_builtins.str]:
|
|
15416
|
+
return pulumi.get(self, "last_version_source_location_uri")
|
|
15417
|
+
|
|
15418
|
+
@_builtins.property
|
|
15419
|
+
@pulumi.getter(name="liveVersionLocationUri")
|
|
15420
|
+
def live_version_location_uri(self) -> Optional[_builtins.str]:
|
|
15421
|
+
return pulumi.get(self, "live_version_location_uri")
|
|
15422
|
+
|
|
15423
|
+
@_builtins.property
|
|
15424
|
+
@pulumi.getter(name="mainFile")
|
|
15425
|
+
def main_file(self) -> Optional[_builtins.str]:
|
|
15426
|
+
return pulumi.get(self, "main_file")
|
|
15427
|
+
|
|
15428
|
+
@_builtins.property
|
|
15429
|
+
@pulumi.getter
|
|
15430
|
+
def name(self) -> Optional[_builtins.str]:
|
|
15431
|
+
return pulumi.get(self, "name")
|
|
15432
|
+
|
|
15433
|
+
@_builtins.property
|
|
15434
|
+
@pulumi.getter
|
|
15435
|
+
def owner(self) -> Optional[_builtins.str]:
|
|
15436
|
+
return pulumi.get(self, "owner")
|
|
15437
|
+
|
|
15438
|
+
@_builtins.property
|
|
15439
|
+
@pulumi.getter(name="queryWarehouse")
|
|
15440
|
+
def query_warehouse(self) -> Optional[_builtins.str]:
|
|
15441
|
+
return pulumi.get(self, "query_warehouse")
|
|
15442
|
+
|
|
15443
|
+
@_builtins.property
|
|
15444
|
+
@pulumi.getter(name="runtimeEnvironmentVersion")
|
|
15445
|
+
def runtime_environment_version(self) -> Optional[_builtins.str]:
|
|
15446
|
+
return pulumi.get(self, "runtime_environment_version")
|
|
15447
|
+
|
|
15448
|
+
@_builtins.property
|
|
15449
|
+
@pulumi.getter(name="runtimeName")
|
|
15450
|
+
def runtime_name(self) -> Optional[_builtins.str]:
|
|
15451
|
+
return pulumi.get(self, "runtime_name")
|
|
15452
|
+
|
|
15453
|
+
@_builtins.property
|
|
15454
|
+
@pulumi.getter
|
|
15455
|
+
def title(self) -> Optional[_builtins.str]:
|
|
15456
|
+
return pulumi.get(self, "title")
|
|
15457
|
+
|
|
15458
|
+
@_builtins.property
|
|
15459
|
+
@pulumi.getter(name="urlId")
|
|
15460
|
+
def url_id(self) -> Optional[_builtins.str]:
|
|
15461
|
+
return pulumi.get(self, "url_id")
|
|
15462
|
+
|
|
15463
|
+
@_builtins.property
|
|
15464
|
+
@pulumi.getter(name="userPackages")
|
|
15465
|
+
def user_packages(self) -> Optional[_builtins.str]:
|
|
15466
|
+
return pulumi.get(self, "user_packages")
|
|
15467
|
+
|
|
15468
|
+
|
|
15469
|
+
@pulumi.output_type
|
|
15470
|
+
class NotebookFrom(dict):
|
|
15471
|
+
def __init__(__self__, *,
|
|
15472
|
+
stage: _builtins.str,
|
|
15473
|
+
path: Optional[_builtins.str] = None):
|
|
15474
|
+
"""
|
|
15475
|
+
:param _builtins.str stage: Identifier of the stage where the .ipynb file is located.
|
|
15476
|
+
:param _builtins.str path: Location of the .ipynb file in the stage.
|
|
15477
|
+
"""
|
|
15478
|
+
pulumi.set(__self__, "stage", stage)
|
|
15479
|
+
if path is not None:
|
|
15480
|
+
pulumi.set(__self__, "path", path)
|
|
15481
|
+
|
|
15482
|
+
@_builtins.property
|
|
15483
|
+
@pulumi.getter
|
|
15484
|
+
def stage(self) -> _builtins.str:
|
|
15485
|
+
"""
|
|
15486
|
+
Identifier of the stage where the .ipynb file is located.
|
|
15487
|
+
"""
|
|
15488
|
+
return pulumi.get(self, "stage")
|
|
15489
|
+
|
|
15490
|
+
@_builtins.property
|
|
15491
|
+
@pulumi.getter
|
|
15492
|
+
def path(self) -> Optional[_builtins.str]:
|
|
15493
|
+
"""
|
|
15494
|
+
Location of the .ipynb file in the stage.
|
|
15495
|
+
"""
|
|
15496
|
+
return pulumi.get(self, "path")
|
|
15497
|
+
|
|
15498
|
+
|
|
15499
|
+
@pulumi.output_type
|
|
15500
|
+
class NotebookShowOutput(dict):
|
|
15501
|
+
@staticmethod
|
|
15502
|
+
def __key_warning(key: str):
|
|
15503
|
+
suggest = None
|
|
15504
|
+
if key == "codeWarehouse":
|
|
15505
|
+
suggest = "code_warehouse"
|
|
15506
|
+
elif key == "createdOn":
|
|
15507
|
+
suggest = "created_on"
|
|
15508
|
+
elif key == "databaseName":
|
|
15509
|
+
suggest = "database_name"
|
|
15510
|
+
elif key == "ownerRoleType":
|
|
15511
|
+
suggest = "owner_role_type"
|
|
15512
|
+
elif key == "queryWarehouse":
|
|
15513
|
+
suggest = "query_warehouse"
|
|
15514
|
+
elif key == "schemaName":
|
|
15515
|
+
suggest = "schema_name"
|
|
15516
|
+
elif key == "urlId":
|
|
15517
|
+
suggest = "url_id"
|
|
15518
|
+
|
|
15519
|
+
if suggest:
|
|
15520
|
+
pulumi.log.warn(f"Key '{key}' not found in NotebookShowOutput. Access the value via the '{suggest}' property getter instead.")
|
|
15521
|
+
|
|
15522
|
+
def __getitem__(self, key: str) -> Any:
|
|
15523
|
+
NotebookShowOutput.__key_warning(key)
|
|
15524
|
+
return super().__getitem__(key)
|
|
15525
|
+
|
|
15526
|
+
def get(self, key: str, default = None) -> Any:
|
|
15527
|
+
NotebookShowOutput.__key_warning(key)
|
|
15528
|
+
return super().get(key, default)
|
|
15529
|
+
|
|
15530
|
+
def __init__(__self__, *,
|
|
15531
|
+
code_warehouse: Optional[_builtins.str] = None,
|
|
15532
|
+
comment: Optional[_builtins.str] = None,
|
|
15533
|
+
created_on: Optional[_builtins.str] = None,
|
|
15534
|
+
database_name: Optional[_builtins.str] = None,
|
|
15535
|
+
name: Optional[_builtins.str] = None,
|
|
15536
|
+
owner: Optional[_builtins.str] = None,
|
|
15537
|
+
owner_role_type: Optional[_builtins.str] = None,
|
|
15538
|
+
query_warehouse: Optional[_builtins.str] = None,
|
|
15539
|
+
schema_name: Optional[_builtins.str] = None,
|
|
15540
|
+
url_id: Optional[_builtins.str] = None):
|
|
15541
|
+
if code_warehouse is not None:
|
|
15542
|
+
pulumi.set(__self__, "code_warehouse", code_warehouse)
|
|
15543
|
+
if comment is not None:
|
|
15544
|
+
pulumi.set(__self__, "comment", comment)
|
|
15545
|
+
if created_on is not None:
|
|
15546
|
+
pulumi.set(__self__, "created_on", created_on)
|
|
15547
|
+
if database_name is not None:
|
|
15548
|
+
pulumi.set(__self__, "database_name", database_name)
|
|
15549
|
+
if name is not None:
|
|
15550
|
+
pulumi.set(__self__, "name", name)
|
|
15551
|
+
if owner is not None:
|
|
15552
|
+
pulumi.set(__self__, "owner", owner)
|
|
15553
|
+
if owner_role_type is not None:
|
|
15554
|
+
pulumi.set(__self__, "owner_role_type", owner_role_type)
|
|
15555
|
+
if query_warehouse is not None:
|
|
15556
|
+
pulumi.set(__self__, "query_warehouse", query_warehouse)
|
|
15557
|
+
if schema_name is not None:
|
|
15558
|
+
pulumi.set(__self__, "schema_name", schema_name)
|
|
15559
|
+
if url_id is not None:
|
|
15560
|
+
pulumi.set(__self__, "url_id", url_id)
|
|
15561
|
+
|
|
15562
|
+
@_builtins.property
|
|
15563
|
+
@pulumi.getter(name="codeWarehouse")
|
|
15564
|
+
def code_warehouse(self) -> Optional[_builtins.str]:
|
|
15565
|
+
return pulumi.get(self, "code_warehouse")
|
|
15566
|
+
|
|
15567
|
+
@_builtins.property
|
|
15568
|
+
@pulumi.getter
|
|
15569
|
+
def comment(self) -> Optional[_builtins.str]:
|
|
15570
|
+
return pulumi.get(self, "comment")
|
|
15571
|
+
|
|
15572
|
+
@_builtins.property
|
|
15573
|
+
@pulumi.getter(name="createdOn")
|
|
15574
|
+
def created_on(self) -> Optional[_builtins.str]:
|
|
15575
|
+
return pulumi.get(self, "created_on")
|
|
15576
|
+
|
|
15577
|
+
@_builtins.property
|
|
15578
|
+
@pulumi.getter(name="databaseName")
|
|
15579
|
+
def database_name(self) -> Optional[_builtins.str]:
|
|
15580
|
+
return pulumi.get(self, "database_name")
|
|
15581
|
+
|
|
15582
|
+
@_builtins.property
|
|
15583
|
+
@pulumi.getter
|
|
15584
|
+
def name(self) -> Optional[_builtins.str]:
|
|
15585
|
+
return pulumi.get(self, "name")
|
|
15586
|
+
|
|
15587
|
+
@_builtins.property
|
|
15588
|
+
@pulumi.getter
|
|
15589
|
+
def owner(self) -> Optional[_builtins.str]:
|
|
15590
|
+
return pulumi.get(self, "owner")
|
|
15591
|
+
|
|
15592
|
+
@_builtins.property
|
|
15593
|
+
@pulumi.getter(name="ownerRoleType")
|
|
15594
|
+
def owner_role_type(self) -> Optional[_builtins.str]:
|
|
15595
|
+
return pulumi.get(self, "owner_role_type")
|
|
15596
|
+
|
|
15597
|
+
@_builtins.property
|
|
15598
|
+
@pulumi.getter(name="queryWarehouse")
|
|
15599
|
+
def query_warehouse(self) -> Optional[_builtins.str]:
|
|
15600
|
+
return pulumi.get(self, "query_warehouse")
|
|
15601
|
+
|
|
15602
|
+
@_builtins.property
|
|
15603
|
+
@pulumi.getter(name="schemaName")
|
|
15604
|
+
def schema_name(self) -> Optional[_builtins.str]:
|
|
15605
|
+
return pulumi.get(self, "schema_name")
|
|
15606
|
+
|
|
15607
|
+
@_builtins.property
|
|
15608
|
+
@pulumi.getter(name="urlId")
|
|
15609
|
+
def url_id(self) -> Optional[_builtins.str]:
|
|
15610
|
+
return pulumi.get(self, "url_id")
|
|
15611
|
+
|
|
15612
|
+
|
|
14913
15613
|
@pulumi.output_type
|
|
14914
15614
|
class OauthIntegrationForCustomClientsDescribeOutput(dict):
|
|
14915
15615
|
@staticmethod
|
|
@@ -23489,6 +24189,794 @@ class SecretWithGenericStringShowOutput(dict):
|
|
|
23489
24189
|
return pulumi.get(self, "secret_type")
|
|
23490
24190
|
|
|
23491
24191
|
|
|
24192
|
+
@pulumi.output_type
|
|
24193
|
+
class SemanticViewDimension(dict):
|
|
24194
|
+
@staticmethod
|
|
24195
|
+
def __key_warning(key: str):
|
|
24196
|
+
suggest = None
|
|
24197
|
+
if key == "qualifiedExpressionName":
|
|
24198
|
+
suggest = "qualified_expression_name"
|
|
24199
|
+
elif key == "sqlExpression":
|
|
24200
|
+
suggest = "sql_expression"
|
|
24201
|
+
|
|
24202
|
+
if suggest:
|
|
24203
|
+
pulumi.log.warn(f"Key '{key}' not found in SemanticViewDimension. Access the value via the '{suggest}' property getter instead.")
|
|
24204
|
+
|
|
24205
|
+
def __getitem__(self, key: str) -> Any:
|
|
24206
|
+
SemanticViewDimension.__key_warning(key)
|
|
24207
|
+
return super().__getitem__(key)
|
|
24208
|
+
|
|
24209
|
+
def get(self, key: str, default = None) -> Any:
|
|
24210
|
+
SemanticViewDimension.__key_warning(key)
|
|
24211
|
+
return super().get(key, default)
|
|
24212
|
+
|
|
24213
|
+
def __init__(__self__, *,
|
|
24214
|
+
qualified_expression_name: _builtins.str,
|
|
24215
|
+
sql_expression: _builtins.str,
|
|
24216
|
+
comment: Optional[_builtins.str] = None,
|
|
24217
|
+
synonyms: Optional[Sequence[_builtins.str]] = None):
|
|
24218
|
+
"""
|
|
24219
|
+
:param _builtins.str qualified_expression_name: Specifies a qualified name for the dimension, including the table name and a unique identifier for the dimension: `<table_alias>.<semantic_expression_name>`. Remember to wrap each part in double quotes like `"\\"<table_alias>\\".\\"<semantic_expression_name>\\""`.
|
|
24220
|
+
:param _builtins.str sql_expression: The SQL expression used to compute the dimension.
|
|
24221
|
+
:param _builtins.str comment: Specifies a comment for the dimension.
|
|
24222
|
+
:param Sequence[_builtins.str] synonyms: List of synonyms for the dimension.
|
|
24223
|
+
"""
|
|
24224
|
+
pulumi.set(__self__, "qualified_expression_name", qualified_expression_name)
|
|
24225
|
+
pulumi.set(__self__, "sql_expression", sql_expression)
|
|
24226
|
+
if comment is not None:
|
|
24227
|
+
pulumi.set(__self__, "comment", comment)
|
|
24228
|
+
if synonyms is not None:
|
|
24229
|
+
pulumi.set(__self__, "synonyms", synonyms)
|
|
24230
|
+
|
|
24231
|
+
@_builtins.property
|
|
24232
|
+
@pulumi.getter(name="qualifiedExpressionName")
|
|
24233
|
+
def qualified_expression_name(self) -> _builtins.str:
|
|
24234
|
+
"""
|
|
24235
|
+
Specifies a qualified name for the dimension, including the table name and a unique identifier for the dimension: `<table_alias>.<semantic_expression_name>`. Remember to wrap each part in double quotes like `"\\"<table_alias>\\".\\"<semantic_expression_name>\\""`.
|
|
24236
|
+
"""
|
|
24237
|
+
return pulumi.get(self, "qualified_expression_name")
|
|
24238
|
+
|
|
24239
|
+
@_builtins.property
|
|
24240
|
+
@pulumi.getter(name="sqlExpression")
|
|
24241
|
+
def sql_expression(self) -> _builtins.str:
|
|
24242
|
+
"""
|
|
24243
|
+
The SQL expression used to compute the dimension.
|
|
24244
|
+
"""
|
|
24245
|
+
return pulumi.get(self, "sql_expression")
|
|
24246
|
+
|
|
24247
|
+
@_builtins.property
|
|
24248
|
+
@pulumi.getter
|
|
24249
|
+
def comment(self) -> Optional[_builtins.str]:
|
|
24250
|
+
"""
|
|
24251
|
+
Specifies a comment for the dimension.
|
|
24252
|
+
"""
|
|
24253
|
+
return pulumi.get(self, "comment")
|
|
24254
|
+
|
|
24255
|
+
@_builtins.property
|
|
24256
|
+
@pulumi.getter
|
|
24257
|
+
def synonyms(self) -> Optional[Sequence[_builtins.str]]:
|
|
24258
|
+
"""
|
|
24259
|
+
List of synonyms for the dimension.
|
|
24260
|
+
"""
|
|
24261
|
+
return pulumi.get(self, "synonyms")
|
|
24262
|
+
|
|
24263
|
+
|
|
24264
|
+
@pulumi.output_type
|
|
24265
|
+
class SemanticViewFact(dict):
|
|
24266
|
+
@staticmethod
|
|
24267
|
+
def __key_warning(key: str):
|
|
24268
|
+
suggest = None
|
|
24269
|
+
if key == "qualifiedExpressionName":
|
|
24270
|
+
suggest = "qualified_expression_name"
|
|
24271
|
+
elif key == "sqlExpression":
|
|
24272
|
+
suggest = "sql_expression"
|
|
24273
|
+
|
|
24274
|
+
if suggest:
|
|
24275
|
+
pulumi.log.warn(f"Key '{key}' not found in SemanticViewFact. Access the value via the '{suggest}' property getter instead.")
|
|
24276
|
+
|
|
24277
|
+
def __getitem__(self, key: str) -> Any:
|
|
24278
|
+
SemanticViewFact.__key_warning(key)
|
|
24279
|
+
return super().__getitem__(key)
|
|
24280
|
+
|
|
24281
|
+
def get(self, key: str, default = None) -> Any:
|
|
24282
|
+
SemanticViewFact.__key_warning(key)
|
|
24283
|
+
return super().get(key, default)
|
|
24284
|
+
|
|
24285
|
+
def __init__(__self__, *,
|
|
24286
|
+
qualified_expression_name: _builtins.str,
|
|
24287
|
+
sql_expression: _builtins.str,
|
|
24288
|
+
comment: Optional[_builtins.str] = None,
|
|
24289
|
+
synonyms: Optional[Sequence[_builtins.str]] = None):
|
|
24290
|
+
"""
|
|
24291
|
+
:param _builtins.str qualified_expression_name: Specifies a qualified name for the fact, including the table name and a unique identifier for the fact: `<table_alias>.<semantic_expression_name>`. Remember to wrap each part in double quotes like `"\\"<table_alias>\\".\\"<semantic_expression_name>\\""`.
|
|
24292
|
+
:param _builtins.str sql_expression: The SQL expression used to compute the fact.
|
|
24293
|
+
:param _builtins.str comment: Specifies a comment for the fact.
|
|
24294
|
+
:param Sequence[_builtins.str] synonyms: List of synonyms for the fact.
|
|
24295
|
+
"""
|
|
24296
|
+
pulumi.set(__self__, "qualified_expression_name", qualified_expression_name)
|
|
24297
|
+
pulumi.set(__self__, "sql_expression", sql_expression)
|
|
24298
|
+
if comment is not None:
|
|
24299
|
+
pulumi.set(__self__, "comment", comment)
|
|
24300
|
+
if synonyms is not None:
|
|
24301
|
+
pulumi.set(__self__, "synonyms", synonyms)
|
|
24302
|
+
|
|
24303
|
+
@_builtins.property
|
|
24304
|
+
@pulumi.getter(name="qualifiedExpressionName")
|
|
24305
|
+
def qualified_expression_name(self) -> _builtins.str:
|
|
24306
|
+
"""
|
|
24307
|
+
Specifies a qualified name for the fact, including the table name and a unique identifier for the fact: `<table_alias>.<semantic_expression_name>`. Remember to wrap each part in double quotes like `"\\"<table_alias>\\".\\"<semantic_expression_name>\\""`.
|
|
24308
|
+
"""
|
|
24309
|
+
return pulumi.get(self, "qualified_expression_name")
|
|
24310
|
+
|
|
24311
|
+
@_builtins.property
|
|
24312
|
+
@pulumi.getter(name="sqlExpression")
|
|
24313
|
+
def sql_expression(self) -> _builtins.str:
|
|
24314
|
+
"""
|
|
24315
|
+
The SQL expression used to compute the fact.
|
|
24316
|
+
"""
|
|
24317
|
+
return pulumi.get(self, "sql_expression")
|
|
24318
|
+
|
|
24319
|
+
@_builtins.property
|
|
24320
|
+
@pulumi.getter
|
|
24321
|
+
def comment(self) -> Optional[_builtins.str]:
|
|
24322
|
+
"""
|
|
24323
|
+
Specifies a comment for the fact.
|
|
24324
|
+
"""
|
|
24325
|
+
return pulumi.get(self, "comment")
|
|
24326
|
+
|
|
24327
|
+
@_builtins.property
|
|
24328
|
+
@pulumi.getter
|
|
24329
|
+
def synonyms(self) -> Optional[Sequence[_builtins.str]]:
|
|
24330
|
+
"""
|
|
24331
|
+
List of synonyms for the fact.
|
|
24332
|
+
"""
|
|
24333
|
+
return pulumi.get(self, "synonyms")
|
|
24334
|
+
|
|
24335
|
+
|
|
24336
|
+
@pulumi.output_type
|
|
24337
|
+
class SemanticViewMetric(dict):
|
|
24338
|
+
@staticmethod
|
|
24339
|
+
def __key_warning(key: str):
|
|
24340
|
+
suggest = None
|
|
24341
|
+
if key == "semanticExpression":
|
|
24342
|
+
suggest = "semantic_expression"
|
|
24343
|
+
elif key == "windowFunction":
|
|
24344
|
+
suggest = "window_function"
|
|
24345
|
+
|
|
24346
|
+
if suggest:
|
|
24347
|
+
pulumi.log.warn(f"Key '{key}' not found in SemanticViewMetric. Access the value via the '{suggest}' property getter instead.")
|
|
24348
|
+
|
|
24349
|
+
def __getitem__(self, key: str) -> Any:
|
|
24350
|
+
SemanticViewMetric.__key_warning(key)
|
|
24351
|
+
return super().__getitem__(key)
|
|
24352
|
+
|
|
24353
|
+
def get(self, key: str, default = None) -> Any:
|
|
24354
|
+
SemanticViewMetric.__key_warning(key)
|
|
24355
|
+
return super().get(key, default)
|
|
24356
|
+
|
|
24357
|
+
def __init__(__self__, *,
|
|
24358
|
+
semantic_expression: Optional['outputs.SemanticViewMetricSemanticExpression'] = None,
|
|
24359
|
+
window_function: Optional['outputs.SemanticViewMetricWindowFunction'] = None):
|
|
24360
|
+
"""
|
|
24361
|
+
:param 'SemanticViewMetricSemanticExpressionArgs' semantic_expression: Specifies a semantic expression for a metric definition. Cannot be used in combination with a window function.
|
|
24362
|
+
:param 'SemanticViewMetricWindowFunctionArgs' window_function: Specifies a window function for a metric definition. Cannot be used in combination with a semantic expression.
|
|
24363
|
+
"""
|
|
24364
|
+
if semantic_expression is not None:
|
|
24365
|
+
pulumi.set(__self__, "semantic_expression", semantic_expression)
|
|
24366
|
+
if window_function is not None:
|
|
24367
|
+
pulumi.set(__self__, "window_function", window_function)
|
|
24368
|
+
|
|
24369
|
+
@_builtins.property
|
|
24370
|
+
@pulumi.getter(name="semanticExpression")
|
|
24371
|
+
def semantic_expression(self) -> Optional['outputs.SemanticViewMetricSemanticExpression']:
|
|
24372
|
+
"""
|
|
24373
|
+
Specifies a semantic expression for a metric definition. Cannot be used in combination with a window function.
|
|
24374
|
+
"""
|
|
24375
|
+
return pulumi.get(self, "semantic_expression")
|
|
24376
|
+
|
|
24377
|
+
@_builtins.property
|
|
24378
|
+
@pulumi.getter(name="windowFunction")
|
|
24379
|
+
def window_function(self) -> Optional['outputs.SemanticViewMetricWindowFunction']:
|
|
24380
|
+
"""
|
|
24381
|
+
Specifies a window function for a metric definition. Cannot be used in combination with a semantic expression.
|
|
24382
|
+
"""
|
|
24383
|
+
return pulumi.get(self, "window_function")
|
|
24384
|
+
|
|
24385
|
+
|
|
24386
|
+
@pulumi.output_type
|
|
24387
|
+
class SemanticViewMetricSemanticExpression(dict):
|
|
24388
|
+
@staticmethod
|
|
24389
|
+
def __key_warning(key: str):
|
|
24390
|
+
suggest = None
|
|
24391
|
+
if key == "qualifiedExpressionName":
|
|
24392
|
+
suggest = "qualified_expression_name"
|
|
24393
|
+
elif key == "sqlExpression":
|
|
24394
|
+
suggest = "sql_expression"
|
|
24395
|
+
|
|
24396
|
+
if suggest:
|
|
24397
|
+
pulumi.log.warn(f"Key '{key}' not found in SemanticViewMetricSemanticExpression. Access the value via the '{suggest}' property getter instead.")
|
|
24398
|
+
|
|
24399
|
+
def __getitem__(self, key: str) -> Any:
|
|
24400
|
+
SemanticViewMetricSemanticExpression.__key_warning(key)
|
|
24401
|
+
return super().__getitem__(key)
|
|
24402
|
+
|
|
24403
|
+
def get(self, key: str, default = None) -> Any:
|
|
24404
|
+
SemanticViewMetricSemanticExpression.__key_warning(key)
|
|
24405
|
+
return super().get(key, default)
|
|
24406
|
+
|
|
24407
|
+
def __init__(__self__, *,
|
|
24408
|
+
qualified_expression_name: _builtins.str,
|
|
24409
|
+
sql_expression: _builtins.str,
|
|
24410
|
+
comment: Optional[_builtins.str] = None,
|
|
24411
|
+
synonyms: Optional[Sequence[_builtins.str]] = None):
|
|
24412
|
+
"""
|
|
24413
|
+
:param _builtins.str qualified_expression_name: Specifies a qualified name for the metric: `<table_alias>.<semantic_expression_name>`. Remember to wrap each part in double quotes like `"\\"<table_alias>\\".\\"<semantic_expression_name>\\""`. For the [derived metric](https://docs.snowflake.com/en/user-guide/views-semantic/sql#label-semantic-views-create-derived-metrics) omit the `<table_alias>.` part but still wrap in double quotes, e.g. `"\\"<semantic_expression_name>\\""`.
|
|
24414
|
+
:param _builtins.str sql_expression: The SQL expression used to compute the metric.
|
|
24415
|
+
:param _builtins.str comment: Specifies a comment for the semantic expression.
|
|
24416
|
+
:param Sequence[_builtins.str] synonyms: List of synonyms for this semantic expression.
|
|
24417
|
+
"""
|
|
24418
|
+
pulumi.set(__self__, "qualified_expression_name", qualified_expression_name)
|
|
24419
|
+
pulumi.set(__self__, "sql_expression", sql_expression)
|
|
24420
|
+
if comment is not None:
|
|
24421
|
+
pulumi.set(__self__, "comment", comment)
|
|
24422
|
+
if synonyms is not None:
|
|
24423
|
+
pulumi.set(__self__, "synonyms", synonyms)
|
|
24424
|
+
|
|
24425
|
+
@_builtins.property
|
|
24426
|
+
@pulumi.getter(name="qualifiedExpressionName")
|
|
24427
|
+
def qualified_expression_name(self) -> _builtins.str:
|
|
24428
|
+
"""
|
|
24429
|
+
Specifies a qualified name for the metric: `<table_alias>.<semantic_expression_name>`. Remember to wrap each part in double quotes like `"\\"<table_alias>\\".\\"<semantic_expression_name>\\""`. For the [derived metric](https://docs.snowflake.com/en/user-guide/views-semantic/sql#label-semantic-views-create-derived-metrics) omit the `<table_alias>.` part but still wrap in double quotes, e.g. `"\\"<semantic_expression_name>\\""`.
|
|
24430
|
+
"""
|
|
24431
|
+
return pulumi.get(self, "qualified_expression_name")
|
|
24432
|
+
|
|
24433
|
+
@_builtins.property
|
|
24434
|
+
@pulumi.getter(name="sqlExpression")
|
|
24435
|
+
def sql_expression(self) -> _builtins.str:
|
|
24436
|
+
"""
|
|
24437
|
+
The SQL expression used to compute the metric.
|
|
24438
|
+
"""
|
|
24439
|
+
return pulumi.get(self, "sql_expression")
|
|
24440
|
+
|
|
24441
|
+
@_builtins.property
|
|
24442
|
+
@pulumi.getter
|
|
24443
|
+
def comment(self) -> Optional[_builtins.str]:
|
|
24444
|
+
"""
|
|
24445
|
+
Specifies a comment for the semantic expression.
|
|
24446
|
+
"""
|
|
24447
|
+
return pulumi.get(self, "comment")
|
|
24448
|
+
|
|
24449
|
+
@_builtins.property
|
|
24450
|
+
@pulumi.getter
|
|
24451
|
+
def synonyms(self) -> Optional[Sequence[_builtins.str]]:
|
|
24452
|
+
"""
|
|
24453
|
+
List of synonyms for this semantic expression.
|
|
24454
|
+
"""
|
|
24455
|
+
return pulumi.get(self, "synonyms")
|
|
24456
|
+
|
|
24457
|
+
|
|
24458
|
+
@pulumi.output_type
|
|
24459
|
+
class SemanticViewMetricWindowFunction(dict):
|
|
24460
|
+
@staticmethod
|
|
24461
|
+
def __key_warning(key: str):
|
|
24462
|
+
suggest = None
|
|
24463
|
+
if key == "overClause":
|
|
24464
|
+
suggest = "over_clause"
|
|
24465
|
+
elif key == "qualifiedExpressionName":
|
|
24466
|
+
suggest = "qualified_expression_name"
|
|
24467
|
+
elif key == "sqlExpression":
|
|
24468
|
+
suggest = "sql_expression"
|
|
24469
|
+
|
|
24470
|
+
if suggest:
|
|
24471
|
+
pulumi.log.warn(f"Key '{key}' not found in SemanticViewMetricWindowFunction. Access the value via the '{suggest}' property getter instead.")
|
|
24472
|
+
|
|
24473
|
+
def __getitem__(self, key: str) -> Any:
|
|
24474
|
+
SemanticViewMetricWindowFunction.__key_warning(key)
|
|
24475
|
+
return super().__getitem__(key)
|
|
24476
|
+
|
|
24477
|
+
def get(self, key: str, default = None) -> Any:
|
|
24478
|
+
SemanticViewMetricWindowFunction.__key_warning(key)
|
|
24479
|
+
return super().get(key, default)
|
|
24480
|
+
|
|
24481
|
+
def __init__(__self__, *,
|
|
24482
|
+
over_clause: 'outputs.SemanticViewMetricWindowFunctionOverClause',
|
|
24483
|
+
qualified_expression_name: _builtins.str,
|
|
24484
|
+
sql_expression: _builtins.str):
|
|
24485
|
+
"""
|
|
24486
|
+
:param 'SemanticViewMetricWindowFunctionOverClauseArgs' over_clause: Specify the partition by, order by or frame over which the window function is to be computed.
|
|
24487
|
+
:param _builtins.str qualified_expression_name: Specifies a qualified name for the metric: `<table_alias>.<semantic_expression_name>`. Remember to wrap each part in double quotes like `"\\"<table_alias>\\".\\"<semantic_expression_name>\\""`. For the [derived metric](https://docs.snowflake.com/en/user-guide/views-semantic/sql#label-semantic-views-create-derived-metrics) omit the `<table_alias>.` part but still wrap in double quotes, e.g. `"\\"<semantic_expression_name>\\""`.
|
|
24488
|
+
:param _builtins.str sql_expression: The SQL expression used to compute the metric following the `<window_function>(<metric>)` format.
|
|
24489
|
+
"""
|
|
24490
|
+
pulumi.set(__self__, "over_clause", over_clause)
|
|
24491
|
+
pulumi.set(__self__, "qualified_expression_name", qualified_expression_name)
|
|
24492
|
+
pulumi.set(__self__, "sql_expression", sql_expression)
|
|
24493
|
+
|
|
24494
|
+
@_builtins.property
|
|
24495
|
+
@pulumi.getter(name="overClause")
|
|
24496
|
+
def over_clause(self) -> 'outputs.SemanticViewMetricWindowFunctionOverClause':
|
|
24497
|
+
"""
|
|
24498
|
+
Specify the partition by, order by or frame over which the window function is to be computed.
|
|
24499
|
+
"""
|
|
24500
|
+
return pulumi.get(self, "over_clause")
|
|
24501
|
+
|
|
24502
|
+
@_builtins.property
|
|
24503
|
+
@pulumi.getter(name="qualifiedExpressionName")
|
|
24504
|
+
def qualified_expression_name(self) -> _builtins.str:
|
|
24505
|
+
"""
|
|
24506
|
+
Specifies a qualified name for the metric: `<table_alias>.<semantic_expression_name>`. Remember to wrap each part in double quotes like `"\\"<table_alias>\\".\\"<semantic_expression_name>\\""`. For the [derived metric](https://docs.snowflake.com/en/user-guide/views-semantic/sql#label-semantic-views-create-derived-metrics) omit the `<table_alias>.` part but still wrap in double quotes, e.g. `"\\"<semantic_expression_name>\\""`.
|
|
24507
|
+
"""
|
|
24508
|
+
return pulumi.get(self, "qualified_expression_name")
|
|
24509
|
+
|
|
24510
|
+
@_builtins.property
|
|
24511
|
+
@pulumi.getter(name="sqlExpression")
|
|
24512
|
+
def sql_expression(self) -> _builtins.str:
|
|
24513
|
+
"""
|
|
24514
|
+
The SQL expression used to compute the metric following the `<window_function>(<metric>)` format.
|
|
24515
|
+
"""
|
|
24516
|
+
return pulumi.get(self, "sql_expression")
|
|
24517
|
+
|
|
24518
|
+
|
|
24519
|
+
@pulumi.output_type
|
|
24520
|
+
class SemanticViewMetricWindowFunctionOverClause(dict):
|
|
24521
|
+
@staticmethod
|
|
24522
|
+
def __key_warning(key: str):
|
|
24523
|
+
suggest = None
|
|
24524
|
+
if key == "orderBy":
|
|
24525
|
+
suggest = "order_by"
|
|
24526
|
+
elif key == "partitionBy":
|
|
24527
|
+
suggest = "partition_by"
|
|
24528
|
+
elif key == "windowFrameClause":
|
|
24529
|
+
suggest = "window_frame_clause"
|
|
24530
|
+
|
|
24531
|
+
if suggest:
|
|
24532
|
+
pulumi.log.warn(f"Key '{key}' not found in SemanticViewMetricWindowFunctionOverClause. Access the value via the '{suggest}' property getter instead.")
|
|
24533
|
+
|
|
24534
|
+
def __getitem__(self, key: str) -> Any:
|
|
24535
|
+
SemanticViewMetricWindowFunctionOverClause.__key_warning(key)
|
|
24536
|
+
return super().__getitem__(key)
|
|
24537
|
+
|
|
24538
|
+
def get(self, key: str, default = None) -> Any:
|
|
24539
|
+
SemanticViewMetricWindowFunctionOverClause.__key_warning(key)
|
|
24540
|
+
return super().get(key, default)
|
|
24541
|
+
|
|
24542
|
+
def __init__(__self__, *,
|
|
24543
|
+
order_by: Optional[_builtins.str] = None,
|
|
24544
|
+
partition_by: Optional[_builtins.str] = None,
|
|
24545
|
+
window_frame_clause: Optional[_builtins.str] = None):
|
|
24546
|
+
"""
|
|
24547
|
+
:param _builtins.str order_by: Specifies an order by clause. It must be a complete SQL expression, including any `[ ASC | DESC ] [ NULLS { FIRST | LAST } ]` modifiers.
|
|
24548
|
+
:param _builtins.str partition_by: Specifies a partition by clause.
|
|
24549
|
+
:param _builtins.str window_frame_clause: Specifies a window frame clause.
|
|
24550
|
+
"""
|
|
24551
|
+
if order_by is not None:
|
|
24552
|
+
pulumi.set(__self__, "order_by", order_by)
|
|
24553
|
+
if partition_by is not None:
|
|
24554
|
+
pulumi.set(__self__, "partition_by", partition_by)
|
|
24555
|
+
if window_frame_clause is not None:
|
|
24556
|
+
pulumi.set(__self__, "window_frame_clause", window_frame_clause)
|
|
24557
|
+
|
|
24558
|
+
@_builtins.property
|
|
24559
|
+
@pulumi.getter(name="orderBy")
|
|
24560
|
+
def order_by(self) -> Optional[_builtins.str]:
|
|
24561
|
+
"""
|
|
24562
|
+
Specifies an order by clause. It must be a complete SQL expression, including any `[ ASC | DESC ] [ NULLS { FIRST | LAST } ]` modifiers.
|
|
24563
|
+
"""
|
|
24564
|
+
return pulumi.get(self, "order_by")
|
|
24565
|
+
|
|
24566
|
+
@_builtins.property
|
|
24567
|
+
@pulumi.getter(name="partitionBy")
|
|
24568
|
+
def partition_by(self) -> Optional[_builtins.str]:
|
|
24569
|
+
"""
|
|
24570
|
+
Specifies a partition by clause.
|
|
24571
|
+
"""
|
|
24572
|
+
return pulumi.get(self, "partition_by")
|
|
24573
|
+
|
|
24574
|
+
@_builtins.property
|
|
24575
|
+
@pulumi.getter(name="windowFrameClause")
|
|
24576
|
+
def window_frame_clause(self) -> Optional[_builtins.str]:
|
|
24577
|
+
"""
|
|
24578
|
+
Specifies a window frame clause.
|
|
24579
|
+
"""
|
|
24580
|
+
return pulumi.get(self, "window_frame_clause")
|
|
24581
|
+
|
|
24582
|
+
|
|
24583
|
+
@pulumi.output_type
|
|
24584
|
+
class SemanticViewRelationship(dict):
|
|
24585
|
+
@staticmethod
|
|
24586
|
+
def __key_warning(key: str):
|
|
24587
|
+
suggest = None
|
|
24588
|
+
if key == "referencedTableNameOrAlias":
|
|
24589
|
+
suggest = "referenced_table_name_or_alias"
|
|
24590
|
+
elif key == "relationshipColumns":
|
|
24591
|
+
suggest = "relationship_columns"
|
|
24592
|
+
elif key == "tableNameOrAlias":
|
|
24593
|
+
suggest = "table_name_or_alias"
|
|
24594
|
+
elif key == "referencedRelationshipColumns":
|
|
24595
|
+
suggest = "referenced_relationship_columns"
|
|
24596
|
+
elif key == "relationshipIdentifier":
|
|
24597
|
+
suggest = "relationship_identifier"
|
|
24598
|
+
|
|
24599
|
+
if suggest:
|
|
24600
|
+
pulumi.log.warn(f"Key '{key}' not found in SemanticViewRelationship. Access the value via the '{suggest}' property getter instead.")
|
|
24601
|
+
|
|
24602
|
+
def __getitem__(self, key: str) -> Any:
|
|
24603
|
+
SemanticViewRelationship.__key_warning(key)
|
|
24604
|
+
return super().__getitem__(key)
|
|
24605
|
+
|
|
24606
|
+
def get(self, key: str, default = None) -> Any:
|
|
24607
|
+
SemanticViewRelationship.__key_warning(key)
|
|
24608
|
+
return super().get(key, default)
|
|
24609
|
+
|
|
24610
|
+
def __init__(__self__, *,
|
|
24611
|
+
referenced_table_name_or_alias: 'outputs.SemanticViewRelationshipReferencedTableNameOrAlias',
|
|
24612
|
+
relationship_columns: Sequence[_builtins.str],
|
|
24613
|
+
table_name_or_alias: 'outputs.SemanticViewRelationshipTableNameOrAlias',
|
|
24614
|
+
referenced_relationship_columns: Optional[Sequence[_builtins.str]] = None,
|
|
24615
|
+
relationship_identifier: Optional[_builtins.str] = None):
|
|
24616
|
+
"""
|
|
24617
|
+
:param 'SemanticViewRelationshipReferencedTableNameOrAliasArgs' referenced_table_name_or_alias: Specifies the other logical table and one or more of its columns that are referred to by the first logical table. Each referenced table can have either a `table_name` or a `table_alias`, not both.
|
|
24618
|
+
:param Sequence[_builtins.str] relationship_columns: Specifies one or more columns in the first logical table that refers to columns in another logical table. Column names in this list are case-sensitive - the provider uses double quotes to wrap each of them when sending the SQL to Snowflake.
|
|
24619
|
+
:param 'SemanticViewRelationshipTableNameOrAliasArgs' table_name_or_alias: Specifies one of the logical tables that refers to columns in another logical table. Each table can have either a `table_name` or a `table_alias`, not both.
|
|
24620
|
+
:param Sequence[_builtins.str] referenced_relationship_columns: Specifies one or more columns in the second logical table that are referred to by the first logical table. Column names in this list are case-sensitive - the provider uses double quotes to wrap each of them when sending the SQL to Snowflake.
|
|
24621
|
+
:param _builtins.str relationship_identifier: Specifies an optional identifier for the relationship. This field is case-sensitive - the provider uses double quotes to wrap it when sending the SQL to Snowflake.
|
|
24622
|
+
"""
|
|
24623
|
+
pulumi.set(__self__, "referenced_table_name_or_alias", referenced_table_name_or_alias)
|
|
24624
|
+
pulumi.set(__self__, "relationship_columns", relationship_columns)
|
|
24625
|
+
pulumi.set(__self__, "table_name_or_alias", table_name_or_alias)
|
|
24626
|
+
if referenced_relationship_columns is not None:
|
|
24627
|
+
pulumi.set(__self__, "referenced_relationship_columns", referenced_relationship_columns)
|
|
24628
|
+
if relationship_identifier is not None:
|
|
24629
|
+
pulumi.set(__self__, "relationship_identifier", relationship_identifier)
|
|
24630
|
+
|
|
24631
|
+
@_builtins.property
|
|
24632
|
+
@pulumi.getter(name="referencedTableNameOrAlias")
|
|
24633
|
+
def referenced_table_name_or_alias(self) -> 'outputs.SemanticViewRelationshipReferencedTableNameOrAlias':
|
|
24634
|
+
"""
|
|
24635
|
+
Specifies the other logical table and one or more of its columns that are referred to by the first logical table. Each referenced table can have either a `table_name` or a `table_alias`, not both.
|
|
24636
|
+
"""
|
|
24637
|
+
return pulumi.get(self, "referenced_table_name_or_alias")
|
|
24638
|
+
|
|
24639
|
+
@_builtins.property
|
|
24640
|
+
@pulumi.getter(name="relationshipColumns")
|
|
24641
|
+
def relationship_columns(self) -> Sequence[_builtins.str]:
|
|
24642
|
+
"""
|
|
24643
|
+
Specifies one or more columns in the first logical table that refers to columns in another logical table. Column names in this list are case-sensitive - the provider uses double quotes to wrap each of them when sending the SQL to Snowflake.
|
|
24644
|
+
"""
|
|
24645
|
+
return pulumi.get(self, "relationship_columns")
|
|
24646
|
+
|
|
24647
|
+
@_builtins.property
|
|
24648
|
+
@pulumi.getter(name="tableNameOrAlias")
|
|
24649
|
+
def table_name_or_alias(self) -> 'outputs.SemanticViewRelationshipTableNameOrAlias':
|
|
24650
|
+
"""
|
|
24651
|
+
Specifies one of the logical tables that refers to columns in another logical table. Each table can have either a `table_name` or a `table_alias`, not both.
|
|
24652
|
+
"""
|
|
24653
|
+
return pulumi.get(self, "table_name_or_alias")
|
|
24654
|
+
|
|
24655
|
+
@_builtins.property
|
|
24656
|
+
@pulumi.getter(name="referencedRelationshipColumns")
|
|
24657
|
+
def referenced_relationship_columns(self) -> Optional[Sequence[_builtins.str]]:
|
|
24658
|
+
"""
|
|
24659
|
+
Specifies one or more columns in the second logical table that are referred to by the first logical table. Column names in this list are case-sensitive - the provider uses double quotes to wrap each of them when sending the SQL to Snowflake.
|
|
24660
|
+
"""
|
|
24661
|
+
return pulumi.get(self, "referenced_relationship_columns")
|
|
24662
|
+
|
|
24663
|
+
@_builtins.property
|
|
24664
|
+
@pulumi.getter(name="relationshipIdentifier")
|
|
24665
|
+
def relationship_identifier(self) -> Optional[_builtins.str]:
|
|
24666
|
+
"""
|
|
24667
|
+
Specifies an optional identifier for the relationship. This field is case-sensitive - the provider uses double quotes to wrap it when sending the SQL to Snowflake.
|
|
24668
|
+
"""
|
|
24669
|
+
return pulumi.get(self, "relationship_identifier")
|
|
24670
|
+
|
|
24671
|
+
|
|
24672
|
+
@pulumi.output_type
|
|
24673
|
+
class SemanticViewRelationshipReferencedTableNameOrAlias(dict):
|
|
24674
|
+
@staticmethod
|
|
24675
|
+
def __key_warning(key: str):
|
|
24676
|
+
suggest = None
|
|
24677
|
+
if key == "tableAlias":
|
|
24678
|
+
suggest = "table_alias"
|
|
24679
|
+
elif key == "tableName":
|
|
24680
|
+
suggest = "table_name"
|
|
24681
|
+
|
|
24682
|
+
if suggest:
|
|
24683
|
+
pulumi.log.warn(f"Key '{key}' not found in SemanticViewRelationshipReferencedTableNameOrAlias. Access the value via the '{suggest}' property getter instead.")
|
|
24684
|
+
|
|
24685
|
+
def __getitem__(self, key: str) -> Any:
|
|
24686
|
+
SemanticViewRelationshipReferencedTableNameOrAlias.__key_warning(key)
|
|
24687
|
+
return super().__getitem__(key)
|
|
24688
|
+
|
|
24689
|
+
def get(self, key: str, default = None) -> Any:
|
|
24690
|
+
SemanticViewRelationshipReferencedTableNameOrAlias.__key_warning(key)
|
|
24691
|
+
return super().get(key, default)
|
|
24692
|
+
|
|
24693
|
+
def __init__(__self__, *,
|
|
24694
|
+
table_alias: Optional[_builtins.str] = None,
|
|
24695
|
+
table_name: Optional[_builtins.str] = None):
|
|
24696
|
+
"""
|
|
24697
|
+
:param _builtins.str table_alias: The alias used for the logical table, cannot be used in combination with the `table_name`. This field is case-sensitive - the provider uses double quotes to wrap it when sending the SQL to Snowflake.
|
|
24698
|
+
:param _builtins.str table_name: The name of the logical table, cannot be used in combination with the `table_alias`. This field is case-sensitive - the provider uses double quotes to wrap it when sending the SQL to Snowflake.
|
|
24699
|
+
"""
|
|
24700
|
+
if table_alias is not None:
|
|
24701
|
+
pulumi.set(__self__, "table_alias", table_alias)
|
|
24702
|
+
if table_name is not None:
|
|
24703
|
+
pulumi.set(__self__, "table_name", table_name)
|
|
24704
|
+
|
|
24705
|
+
@_builtins.property
|
|
24706
|
+
@pulumi.getter(name="tableAlias")
|
|
24707
|
+
def table_alias(self) -> Optional[_builtins.str]:
|
|
24708
|
+
"""
|
|
24709
|
+
The alias used for the logical table, cannot be used in combination with the `table_name`. This field is case-sensitive - the provider uses double quotes to wrap it when sending the SQL to Snowflake.
|
|
24710
|
+
"""
|
|
24711
|
+
return pulumi.get(self, "table_alias")
|
|
24712
|
+
|
|
24713
|
+
@_builtins.property
|
|
24714
|
+
@pulumi.getter(name="tableName")
|
|
24715
|
+
def table_name(self) -> Optional[_builtins.str]:
|
|
24716
|
+
"""
|
|
24717
|
+
The name of the logical table, cannot be used in combination with the `table_alias`. This field is case-sensitive - the provider uses double quotes to wrap it when sending the SQL to Snowflake.
|
|
24718
|
+
"""
|
|
24719
|
+
return pulumi.get(self, "table_name")
|
|
24720
|
+
|
|
24721
|
+
|
|
24722
|
+
@pulumi.output_type
|
|
24723
|
+
class SemanticViewRelationshipTableNameOrAlias(dict):
|
|
24724
|
+
@staticmethod
|
|
24725
|
+
def __key_warning(key: str):
|
|
24726
|
+
suggest = None
|
|
24727
|
+
if key == "tableAlias":
|
|
24728
|
+
suggest = "table_alias"
|
|
24729
|
+
elif key == "tableName":
|
|
24730
|
+
suggest = "table_name"
|
|
24731
|
+
|
|
24732
|
+
if suggest:
|
|
24733
|
+
pulumi.log.warn(f"Key '{key}' not found in SemanticViewRelationshipTableNameOrAlias. Access the value via the '{suggest}' property getter instead.")
|
|
24734
|
+
|
|
24735
|
+
def __getitem__(self, key: str) -> Any:
|
|
24736
|
+
SemanticViewRelationshipTableNameOrAlias.__key_warning(key)
|
|
24737
|
+
return super().__getitem__(key)
|
|
24738
|
+
|
|
24739
|
+
def get(self, key: str, default = None) -> Any:
|
|
24740
|
+
SemanticViewRelationshipTableNameOrAlias.__key_warning(key)
|
|
24741
|
+
return super().get(key, default)
|
|
24742
|
+
|
|
24743
|
+
def __init__(__self__, *,
|
|
24744
|
+
table_alias: Optional[_builtins.str] = None,
|
|
24745
|
+
table_name: Optional[_builtins.str] = None):
|
|
24746
|
+
"""
|
|
24747
|
+
:param _builtins.str table_alias: The alias used for the logical table, cannot be used in combination with the `table_name`. This field is case-sensitive - the provider uses double quotes to wrap it when sending the SQL to Snowflake.
|
|
24748
|
+
:param _builtins.str table_name: The name of the logical table, cannot be used in combination with the `table_alias`. This field is case-sensitive - the provider uses double quotes to wrap it when sending the SQL to Snowflake.
|
|
24749
|
+
"""
|
|
24750
|
+
if table_alias is not None:
|
|
24751
|
+
pulumi.set(__self__, "table_alias", table_alias)
|
|
24752
|
+
if table_name is not None:
|
|
24753
|
+
pulumi.set(__self__, "table_name", table_name)
|
|
24754
|
+
|
|
24755
|
+
@_builtins.property
|
|
24756
|
+
@pulumi.getter(name="tableAlias")
|
|
24757
|
+
def table_alias(self) -> Optional[_builtins.str]:
|
|
24758
|
+
"""
|
|
24759
|
+
The alias used for the logical table, cannot be used in combination with the `table_name`. This field is case-sensitive - the provider uses double quotes to wrap it when sending the SQL to Snowflake.
|
|
24760
|
+
"""
|
|
24761
|
+
return pulumi.get(self, "table_alias")
|
|
24762
|
+
|
|
24763
|
+
@_builtins.property
|
|
24764
|
+
@pulumi.getter(name="tableName")
|
|
24765
|
+
def table_name(self) -> Optional[_builtins.str]:
|
|
24766
|
+
"""
|
|
24767
|
+
The name of the logical table, cannot be used in combination with the `table_alias`. This field is case-sensitive - the provider uses double quotes to wrap it when sending the SQL to Snowflake.
|
|
24768
|
+
"""
|
|
24769
|
+
return pulumi.get(self, "table_name")
|
|
24770
|
+
|
|
24771
|
+
|
|
24772
|
+
@pulumi.output_type
|
|
24773
|
+
class SemanticViewShowOutput(dict):
|
|
24774
|
+
@staticmethod
|
|
24775
|
+
def __key_warning(key: str):
|
|
24776
|
+
suggest = None
|
|
24777
|
+
if key == "createdOn":
|
|
24778
|
+
suggest = "created_on"
|
|
24779
|
+
elif key == "databaseName":
|
|
24780
|
+
suggest = "database_name"
|
|
24781
|
+
elif key == "ownerRoleType":
|
|
24782
|
+
suggest = "owner_role_type"
|
|
24783
|
+
elif key == "schemaName":
|
|
24784
|
+
suggest = "schema_name"
|
|
24785
|
+
|
|
24786
|
+
if suggest:
|
|
24787
|
+
pulumi.log.warn(f"Key '{key}' not found in SemanticViewShowOutput. Access the value via the '{suggest}' property getter instead.")
|
|
24788
|
+
|
|
24789
|
+
def __getitem__(self, key: str) -> Any:
|
|
24790
|
+
SemanticViewShowOutput.__key_warning(key)
|
|
24791
|
+
return super().__getitem__(key)
|
|
24792
|
+
|
|
24793
|
+
def get(self, key: str, default = None) -> Any:
|
|
24794
|
+
SemanticViewShowOutput.__key_warning(key)
|
|
24795
|
+
return super().get(key, default)
|
|
24796
|
+
|
|
24797
|
+
def __init__(__self__, *,
|
|
24798
|
+
comment: Optional[_builtins.str] = None,
|
|
24799
|
+
created_on: Optional[_builtins.str] = None,
|
|
24800
|
+
database_name: Optional[_builtins.str] = None,
|
|
24801
|
+
extension: Optional[_builtins.str] = None,
|
|
24802
|
+
name: Optional[_builtins.str] = None,
|
|
24803
|
+
owner: Optional[_builtins.str] = None,
|
|
24804
|
+
owner_role_type: Optional[_builtins.str] = None,
|
|
24805
|
+
schema_name: Optional[_builtins.str] = None):
|
|
24806
|
+
if comment is not None:
|
|
24807
|
+
pulumi.set(__self__, "comment", comment)
|
|
24808
|
+
if created_on is not None:
|
|
24809
|
+
pulumi.set(__self__, "created_on", created_on)
|
|
24810
|
+
if database_name is not None:
|
|
24811
|
+
pulumi.set(__self__, "database_name", database_name)
|
|
24812
|
+
if extension is not None:
|
|
24813
|
+
pulumi.set(__self__, "extension", extension)
|
|
24814
|
+
if name is not None:
|
|
24815
|
+
pulumi.set(__self__, "name", name)
|
|
24816
|
+
if owner is not None:
|
|
24817
|
+
pulumi.set(__self__, "owner", owner)
|
|
24818
|
+
if owner_role_type is not None:
|
|
24819
|
+
pulumi.set(__self__, "owner_role_type", owner_role_type)
|
|
24820
|
+
if schema_name is not None:
|
|
24821
|
+
pulumi.set(__self__, "schema_name", schema_name)
|
|
24822
|
+
|
|
24823
|
+
@_builtins.property
|
|
24824
|
+
@pulumi.getter
|
|
24825
|
+
def comment(self) -> Optional[_builtins.str]:
|
|
24826
|
+
return pulumi.get(self, "comment")
|
|
24827
|
+
|
|
24828
|
+
@_builtins.property
|
|
24829
|
+
@pulumi.getter(name="createdOn")
|
|
24830
|
+
def created_on(self) -> Optional[_builtins.str]:
|
|
24831
|
+
return pulumi.get(self, "created_on")
|
|
24832
|
+
|
|
24833
|
+
@_builtins.property
|
|
24834
|
+
@pulumi.getter(name="databaseName")
|
|
24835
|
+
def database_name(self) -> Optional[_builtins.str]:
|
|
24836
|
+
return pulumi.get(self, "database_name")
|
|
24837
|
+
|
|
24838
|
+
@_builtins.property
|
|
24839
|
+
@pulumi.getter
|
|
24840
|
+
def extension(self) -> Optional[_builtins.str]:
|
|
24841
|
+
return pulumi.get(self, "extension")
|
|
24842
|
+
|
|
24843
|
+
@_builtins.property
|
|
24844
|
+
@pulumi.getter
|
|
24845
|
+
def name(self) -> Optional[_builtins.str]:
|
|
24846
|
+
return pulumi.get(self, "name")
|
|
24847
|
+
|
|
24848
|
+
@_builtins.property
|
|
24849
|
+
@pulumi.getter
|
|
24850
|
+
def owner(self) -> Optional[_builtins.str]:
|
|
24851
|
+
return pulumi.get(self, "owner")
|
|
24852
|
+
|
|
24853
|
+
@_builtins.property
|
|
24854
|
+
@pulumi.getter(name="ownerRoleType")
|
|
24855
|
+
def owner_role_type(self) -> Optional[_builtins.str]:
|
|
24856
|
+
return pulumi.get(self, "owner_role_type")
|
|
24857
|
+
|
|
24858
|
+
@_builtins.property
|
|
24859
|
+
@pulumi.getter(name="schemaName")
|
|
24860
|
+
def schema_name(self) -> Optional[_builtins.str]:
|
|
24861
|
+
return pulumi.get(self, "schema_name")
|
|
24862
|
+
|
|
24863
|
+
|
|
24864
|
+
@pulumi.output_type
|
|
24865
|
+
class SemanticViewTable(dict):
|
|
24866
|
+
@staticmethod
|
|
24867
|
+
def __key_warning(key: str):
|
|
24868
|
+
suggest = None
|
|
24869
|
+
if key == "tableAlias":
|
|
24870
|
+
suggest = "table_alias"
|
|
24871
|
+
elif key == "tableName":
|
|
24872
|
+
suggest = "table_name"
|
|
24873
|
+
elif key == "primaryKeys":
|
|
24874
|
+
suggest = "primary_keys"
|
|
24875
|
+
|
|
24876
|
+
if suggest:
|
|
24877
|
+
pulumi.log.warn(f"Key '{key}' not found in SemanticViewTable. Access the value via the '{suggest}' property getter instead.")
|
|
24878
|
+
|
|
24879
|
+
def __getitem__(self, key: str) -> Any:
|
|
24880
|
+
SemanticViewTable.__key_warning(key)
|
|
24881
|
+
return super().__getitem__(key)
|
|
24882
|
+
|
|
24883
|
+
def get(self, key: str, default = None) -> Any:
|
|
24884
|
+
SemanticViewTable.__key_warning(key)
|
|
24885
|
+
return super().get(key, default)
|
|
24886
|
+
|
|
24887
|
+
def __init__(__self__, *,
|
|
24888
|
+
table_alias: _builtins.str,
|
|
24889
|
+
table_name: _builtins.str,
|
|
24890
|
+
comment: Optional[_builtins.str] = None,
|
|
24891
|
+
primary_keys: Optional[Sequence[_builtins.str]] = None,
|
|
24892
|
+
synonyms: Optional[Sequence[_builtins.str]] = None,
|
|
24893
|
+
uniques: Optional[Sequence['outputs.SemanticViewTableUnique']] = None):
|
|
24894
|
+
"""
|
|
24895
|
+
:param _builtins.str table_alias: Specifies an alias for a logical table in the semantic view. This field is case-sensitive - the provider uses double quotes to wrap it when sending the SQL to Snowflake.
|
|
24896
|
+
:param _builtins.str table_name: Specifies an identifier for the logical table. Example: `"\\"<db_name>\\".\\"<schema_name>\\".\\"<table_name>\\""`. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
24897
|
+
:param _builtins.str comment: Specifies a comment for the logical table.
|
|
24898
|
+
:param Sequence[_builtins.str] primary_keys: Definitions of primary keys in the logical table. This field is case-sensitive - the provider uses double quotes to wrap it when sending the SQL to Snowflake.
|
|
24899
|
+
:param Sequence[_builtins.str] synonyms: List of synonyms for the logical table.
|
|
24900
|
+
:param Sequence['SemanticViewTableUniqueArgs'] uniques: Definitions of unique key combinations in the logical table. This field is case-sensitive - the provider uses double quotes to wrap it when sending the SQL to Snowflake.
|
|
24901
|
+
"""
|
|
24902
|
+
pulumi.set(__self__, "table_alias", table_alias)
|
|
24903
|
+
pulumi.set(__self__, "table_name", table_name)
|
|
24904
|
+
if comment is not None:
|
|
24905
|
+
pulumi.set(__self__, "comment", comment)
|
|
24906
|
+
if primary_keys is not None:
|
|
24907
|
+
pulumi.set(__self__, "primary_keys", primary_keys)
|
|
24908
|
+
if synonyms is not None:
|
|
24909
|
+
pulumi.set(__self__, "synonyms", synonyms)
|
|
24910
|
+
if uniques is not None:
|
|
24911
|
+
pulumi.set(__self__, "uniques", uniques)
|
|
24912
|
+
|
|
24913
|
+
@_builtins.property
|
|
24914
|
+
@pulumi.getter(name="tableAlias")
|
|
24915
|
+
def table_alias(self) -> _builtins.str:
|
|
24916
|
+
"""
|
|
24917
|
+
Specifies an alias for a logical table in the semantic view. This field is case-sensitive - the provider uses double quotes to wrap it when sending the SQL to Snowflake.
|
|
24918
|
+
"""
|
|
24919
|
+
return pulumi.get(self, "table_alias")
|
|
24920
|
+
|
|
24921
|
+
@_builtins.property
|
|
24922
|
+
@pulumi.getter(name="tableName")
|
|
24923
|
+
def table_name(self) -> _builtins.str:
|
|
24924
|
+
"""
|
|
24925
|
+
Specifies an identifier for the logical table. Example: `"\\"<db_name>\\".\\"<schema_name>\\".\\"<table_name>\\""`. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
24926
|
+
"""
|
|
24927
|
+
return pulumi.get(self, "table_name")
|
|
24928
|
+
|
|
24929
|
+
@_builtins.property
|
|
24930
|
+
@pulumi.getter
|
|
24931
|
+
def comment(self) -> Optional[_builtins.str]:
|
|
24932
|
+
"""
|
|
24933
|
+
Specifies a comment for the logical table.
|
|
24934
|
+
"""
|
|
24935
|
+
return pulumi.get(self, "comment")
|
|
24936
|
+
|
|
24937
|
+
@_builtins.property
|
|
24938
|
+
@pulumi.getter(name="primaryKeys")
|
|
24939
|
+
def primary_keys(self) -> Optional[Sequence[_builtins.str]]:
|
|
24940
|
+
"""
|
|
24941
|
+
Definitions of primary keys in the logical table. This field is case-sensitive - the provider uses double quotes to wrap it when sending the SQL to Snowflake.
|
|
24942
|
+
"""
|
|
24943
|
+
return pulumi.get(self, "primary_keys")
|
|
24944
|
+
|
|
24945
|
+
@_builtins.property
|
|
24946
|
+
@pulumi.getter
|
|
24947
|
+
def synonyms(self) -> Optional[Sequence[_builtins.str]]:
|
|
24948
|
+
"""
|
|
24949
|
+
List of synonyms for the logical table.
|
|
24950
|
+
"""
|
|
24951
|
+
return pulumi.get(self, "synonyms")
|
|
24952
|
+
|
|
24953
|
+
@_builtins.property
|
|
24954
|
+
@pulumi.getter
|
|
24955
|
+
def uniques(self) -> Optional[Sequence['outputs.SemanticViewTableUnique']]:
|
|
24956
|
+
"""
|
|
24957
|
+
Definitions of unique key combinations in the logical table. This field is case-sensitive - the provider uses double quotes to wrap it when sending the SQL to Snowflake.
|
|
24958
|
+
"""
|
|
24959
|
+
return pulumi.get(self, "uniques")
|
|
24960
|
+
|
|
24961
|
+
|
|
24962
|
+
@pulumi.output_type
|
|
24963
|
+
class SemanticViewTableUnique(dict):
|
|
24964
|
+
def __init__(__self__, *,
|
|
24965
|
+
values: Sequence[_builtins.str]):
|
|
24966
|
+
"""
|
|
24967
|
+
:param Sequence[_builtins.str] values: Unique key combinations in the logical table.
|
|
24968
|
+
"""
|
|
24969
|
+
pulumi.set(__self__, "values", values)
|
|
24970
|
+
|
|
24971
|
+
@_builtins.property
|
|
24972
|
+
@pulumi.getter
|
|
24973
|
+
def values(self) -> Sequence[_builtins.str]:
|
|
24974
|
+
"""
|
|
24975
|
+
Unique key combinations in the logical table.
|
|
24976
|
+
"""
|
|
24977
|
+
return pulumi.get(self, "values")
|
|
24978
|
+
|
|
24979
|
+
|
|
23492
24980
|
@pulumi.output_type
|
|
23493
24981
|
class ServiceDescribeOutput(dict):
|
|
23494
24982
|
@staticmethod
|
|
@@ -33984,30 +35472,54 @@ class TaskSchedule(dict):
|
|
|
33984
35472
|
return super().get(key, default)
|
|
33985
35473
|
|
|
33986
35474
|
def __init__(__self__, *,
|
|
35475
|
+
hours: Optional[_builtins.int] = None,
|
|
33987
35476
|
minutes: Optional[_builtins.int] = None,
|
|
35477
|
+
seconds: Optional[_builtins.int] = None,
|
|
33988
35478
|
using_cron: Optional[_builtins.str] = None):
|
|
33989
35479
|
"""
|
|
33990
|
-
:param _builtins.int
|
|
33991
|
-
:param _builtins.
|
|
35480
|
+
:param _builtins.int hours: Specifies an interval (in hours) of wait time inserted between runs of the task. Accepts positive integers. (conflicts with `seconds`, `minutes`, and `using_cron`)
|
|
35481
|
+
:param _builtins.int minutes: Specifies an interval (in minutes) of wait time inserted between runs of the task. Accepts positive integers. (conflicts with `seconds`, `hours`, and `using_cron`)
|
|
35482
|
+
:param _builtins.int seconds: Specifies an interval (in seconds) of wait time inserted between runs of the task. Accepts positive integers. (conflicts with `minutes`, `hours`, and `using_cron`)
|
|
35483
|
+
:param _builtins.str using_cron: Specifies a cron expression and time zone for periodically running the task. Supports a subset of standard cron utility syntax. (conflicts with `seconds`, `minutes`, and `hours`)
|
|
33992
35484
|
"""
|
|
35485
|
+
if hours is not None:
|
|
35486
|
+
pulumi.set(__self__, "hours", hours)
|
|
33993
35487
|
if minutes is not None:
|
|
33994
35488
|
pulumi.set(__self__, "minutes", minutes)
|
|
35489
|
+
if seconds is not None:
|
|
35490
|
+
pulumi.set(__self__, "seconds", seconds)
|
|
33995
35491
|
if using_cron is not None:
|
|
33996
35492
|
pulumi.set(__self__, "using_cron", using_cron)
|
|
33997
35493
|
|
|
35494
|
+
@_builtins.property
|
|
35495
|
+
@pulumi.getter
|
|
35496
|
+
def hours(self) -> Optional[_builtins.int]:
|
|
35497
|
+
"""
|
|
35498
|
+
Specifies an interval (in hours) of wait time inserted between runs of the task. Accepts positive integers. (conflicts with `seconds`, `minutes`, and `using_cron`)
|
|
35499
|
+
"""
|
|
35500
|
+
return pulumi.get(self, "hours")
|
|
35501
|
+
|
|
33998
35502
|
@_builtins.property
|
|
33999
35503
|
@pulumi.getter
|
|
34000
35504
|
def minutes(self) -> Optional[_builtins.int]:
|
|
34001
35505
|
"""
|
|
34002
|
-
Specifies an interval (in minutes) of wait time inserted between runs of the task. Accepts positive integers
|
|
35506
|
+
Specifies an interval (in minutes) of wait time inserted between runs of the task. Accepts positive integers. (conflicts with `seconds`, `hours`, and `using_cron`)
|
|
34003
35507
|
"""
|
|
34004
35508
|
return pulumi.get(self, "minutes")
|
|
34005
35509
|
|
|
35510
|
+
@_builtins.property
|
|
35511
|
+
@pulumi.getter
|
|
35512
|
+
def seconds(self) -> Optional[_builtins.int]:
|
|
35513
|
+
"""
|
|
35514
|
+
Specifies an interval (in seconds) of wait time inserted between runs of the task. Accepts positive integers. (conflicts with `minutes`, `hours`, and `using_cron`)
|
|
35515
|
+
"""
|
|
35516
|
+
return pulumi.get(self, "seconds")
|
|
35517
|
+
|
|
34006
35518
|
@_builtins.property
|
|
34007
35519
|
@pulumi.getter(name="usingCron")
|
|
34008
35520
|
def using_cron(self) -> Optional[_builtins.str]:
|
|
34009
35521
|
"""
|
|
34010
|
-
Specifies a cron expression and time zone for periodically running the task. Supports a subset of standard cron utility syntax. (conflicts with `minutes`)
|
|
35522
|
+
Specifies a cron expression and time zone for periodically running the task. Supports a subset of standard cron utility syntax. (conflicts with `seconds`, `minutes`, and `hours`)
|
|
34011
35523
|
"""
|
|
34012
35524
|
return pulumi.get(self, "using_cron")
|
|
34013
35525
|
|
|
@@ -38707,6 +40219,8 @@ class WarehouseShowOutput(dict):
|
|
|
38707
40219
|
suggest = "owner_role_type"
|
|
38708
40220
|
elif key == "queryAccelerationMaxScaleFactor":
|
|
38709
40221
|
suggest = "query_acceleration_max_scale_factor"
|
|
40222
|
+
elif key == "resourceConstraint":
|
|
40223
|
+
suggest = "resource_constraint"
|
|
38710
40224
|
elif key == "resourceMonitor":
|
|
38711
40225
|
suggest = "resource_monitor"
|
|
38712
40226
|
elif key == "resumedOn":
|
|
@@ -38736,6 +40250,7 @@ class WarehouseShowOutput(dict):
|
|
|
38736
40250
|
comment: Optional[_builtins.str] = None,
|
|
38737
40251
|
created_on: Optional[_builtins.str] = None,
|
|
38738
40252
|
enable_query_acceleration: Optional[_builtins.bool] = None,
|
|
40253
|
+
generation: Optional[_builtins.str] = None,
|
|
38739
40254
|
is_current: Optional[_builtins.bool] = None,
|
|
38740
40255
|
is_default: Optional[_builtins.bool] = None,
|
|
38741
40256
|
max_cluster_count: Optional[_builtins.int] = None,
|
|
@@ -38748,6 +40263,7 @@ class WarehouseShowOutput(dict):
|
|
|
38748
40263
|
query_acceleration_max_scale_factor: Optional[_builtins.int] = None,
|
|
38749
40264
|
queued: Optional[_builtins.int] = None,
|
|
38750
40265
|
quiescing: Optional[_builtins.float] = None,
|
|
40266
|
+
resource_constraint: Optional[_builtins.str] = None,
|
|
38751
40267
|
resource_monitor: Optional[_builtins.str] = None,
|
|
38752
40268
|
resumed_on: Optional[_builtins.str] = None,
|
|
38753
40269
|
running: Optional[_builtins.int] = None,
|
|
@@ -38769,6 +40285,8 @@ class WarehouseShowOutput(dict):
|
|
|
38769
40285
|
pulumi.set(__self__, "created_on", created_on)
|
|
38770
40286
|
if enable_query_acceleration is not None:
|
|
38771
40287
|
pulumi.set(__self__, "enable_query_acceleration", enable_query_acceleration)
|
|
40288
|
+
if generation is not None:
|
|
40289
|
+
pulumi.set(__self__, "generation", generation)
|
|
38772
40290
|
if is_current is not None:
|
|
38773
40291
|
pulumi.set(__self__, "is_current", is_current)
|
|
38774
40292
|
if is_default is not None:
|
|
@@ -38793,6 +40311,8 @@ class WarehouseShowOutput(dict):
|
|
|
38793
40311
|
pulumi.set(__self__, "queued", queued)
|
|
38794
40312
|
if quiescing is not None:
|
|
38795
40313
|
pulumi.set(__self__, "quiescing", quiescing)
|
|
40314
|
+
if resource_constraint is not None:
|
|
40315
|
+
pulumi.set(__self__, "resource_constraint", resource_constraint)
|
|
38796
40316
|
if resource_monitor is not None:
|
|
38797
40317
|
pulumi.set(__self__, "resource_monitor", resource_monitor)
|
|
38798
40318
|
if resumed_on is not None:
|
|
@@ -38842,6 +40362,11 @@ class WarehouseShowOutput(dict):
|
|
|
38842
40362
|
def enable_query_acceleration(self) -> Optional[_builtins.bool]:
|
|
38843
40363
|
return pulumi.get(self, "enable_query_acceleration")
|
|
38844
40364
|
|
|
40365
|
+
@_builtins.property
|
|
40366
|
+
@pulumi.getter
|
|
40367
|
+
def generation(self) -> Optional[_builtins.str]:
|
|
40368
|
+
return pulumi.get(self, "generation")
|
|
40369
|
+
|
|
38845
40370
|
@_builtins.property
|
|
38846
40371
|
@pulumi.getter(name="isCurrent")
|
|
38847
40372
|
def is_current(self) -> Optional[_builtins.bool]:
|
|
@@ -38902,6 +40427,11 @@ class WarehouseShowOutput(dict):
|
|
|
38902
40427
|
def quiescing(self) -> Optional[_builtins.float]:
|
|
38903
40428
|
return pulumi.get(self, "quiescing")
|
|
38904
40429
|
|
|
40430
|
+
@_builtins.property
|
|
40431
|
+
@pulumi.getter(name="resourceConstraint")
|
|
40432
|
+
def resource_constraint(self) -> Optional[_builtins.str]:
|
|
40433
|
+
return pulumi.get(self, "resource_constraint")
|
|
40434
|
+
|
|
38905
40435
|
@_builtins.property
|
|
38906
40436
|
@pulumi.getter(name="resourceMonitor")
|
|
38907
40437
|
def resource_monitor(self) -> Optional[_builtins.str]:
|
|
@@ -39351,6 +40881,313 @@ class GetAlertsAlertResult(dict):
|
|
|
39351
40881
|
return pulumi.get(self, "schema_name")
|
|
39352
40882
|
|
|
39353
40883
|
|
|
40884
|
+
@pulumi.output_type
|
|
40885
|
+
class GetAuthenticationPoliciesAuthenticationPolicyResult(dict):
|
|
40886
|
+
def __init__(__self__, *,
|
|
40887
|
+
describe_outputs: Sequence['outputs.GetAuthenticationPoliciesAuthenticationPolicyDescribeOutputResult'],
|
|
40888
|
+
show_outputs: Sequence['outputs.GetAuthenticationPoliciesAuthenticationPolicyShowOutputResult']):
|
|
40889
|
+
"""
|
|
40890
|
+
:param Sequence['GetAuthenticationPoliciesAuthenticationPolicyDescribeOutputArgs'] describe_outputs: Holds the output of DESCRIBE AUTHENTICATION POLICY.
|
|
40891
|
+
:param Sequence['GetAuthenticationPoliciesAuthenticationPolicyShowOutputArgs'] show_outputs: Holds the output of SHOW AUTHENTICATION POLICIES.
|
|
40892
|
+
"""
|
|
40893
|
+
pulumi.set(__self__, "describe_outputs", describe_outputs)
|
|
40894
|
+
pulumi.set(__self__, "show_outputs", show_outputs)
|
|
40895
|
+
|
|
40896
|
+
@_builtins.property
|
|
40897
|
+
@pulumi.getter(name="describeOutputs")
|
|
40898
|
+
def describe_outputs(self) -> Sequence['outputs.GetAuthenticationPoliciesAuthenticationPolicyDescribeOutputResult']:
|
|
40899
|
+
"""
|
|
40900
|
+
Holds the output of DESCRIBE AUTHENTICATION POLICY.
|
|
40901
|
+
"""
|
|
40902
|
+
return pulumi.get(self, "describe_outputs")
|
|
40903
|
+
|
|
40904
|
+
@_builtins.property
|
|
40905
|
+
@pulumi.getter(name="showOutputs")
|
|
40906
|
+
def show_outputs(self) -> Sequence['outputs.GetAuthenticationPoliciesAuthenticationPolicyShowOutputResult']:
|
|
40907
|
+
"""
|
|
40908
|
+
Holds the output of SHOW AUTHENTICATION POLICIES.
|
|
40909
|
+
"""
|
|
40910
|
+
return pulumi.get(self, "show_outputs")
|
|
40911
|
+
|
|
40912
|
+
|
|
40913
|
+
@pulumi.output_type
|
|
40914
|
+
class GetAuthenticationPoliciesAuthenticationPolicyDescribeOutputResult(dict):
|
|
40915
|
+
def __init__(__self__, *,
|
|
40916
|
+
authentication_methods: _builtins.str,
|
|
40917
|
+
client_types: _builtins.str,
|
|
40918
|
+
comment: _builtins.str,
|
|
40919
|
+
mfa_authentication_methods: _builtins.str,
|
|
40920
|
+
mfa_enrollment: _builtins.str,
|
|
40921
|
+
mfa_policy: _builtins.str,
|
|
40922
|
+
name: _builtins.str,
|
|
40923
|
+
owner: _builtins.str,
|
|
40924
|
+
pat_policy: _builtins.str,
|
|
40925
|
+
security_integrations: _builtins.str,
|
|
40926
|
+
workload_identity_policy: _builtins.str):
|
|
40927
|
+
pulumi.set(__self__, "authentication_methods", authentication_methods)
|
|
40928
|
+
pulumi.set(__self__, "client_types", client_types)
|
|
40929
|
+
pulumi.set(__self__, "comment", comment)
|
|
40930
|
+
pulumi.set(__self__, "mfa_authentication_methods", mfa_authentication_methods)
|
|
40931
|
+
pulumi.set(__self__, "mfa_enrollment", mfa_enrollment)
|
|
40932
|
+
pulumi.set(__self__, "mfa_policy", mfa_policy)
|
|
40933
|
+
pulumi.set(__self__, "name", name)
|
|
40934
|
+
pulumi.set(__self__, "owner", owner)
|
|
40935
|
+
pulumi.set(__self__, "pat_policy", pat_policy)
|
|
40936
|
+
pulumi.set(__self__, "security_integrations", security_integrations)
|
|
40937
|
+
pulumi.set(__self__, "workload_identity_policy", workload_identity_policy)
|
|
40938
|
+
|
|
40939
|
+
@_builtins.property
|
|
40940
|
+
@pulumi.getter(name="authenticationMethods")
|
|
40941
|
+
def authentication_methods(self) -> _builtins.str:
|
|
40942
|
+
return pulumi.get(self, "authentication_methods")
|
|
40943
|
+
|
|
40944
|
+
@_builtins.property
|
|
40945
|
+
@pulumi.getter(name="clientTypes")
|
|
40946
|
+
def client_types(self) -> _builtins.str:
|
|
40947
|
+
return pulumi.get(self, "client_types")
|
|
40948
|
+
|
|
40949
|
+
@_builtins.property
|
|
40950
|
+
@pulumi.getter
|
|
40951
|
+
def comment(self) -> _builtins.str:
|
|
40952
|
+
return pulumi.get(self, "comment")
|
|
40953
|
+
|
|
40954
|
+
@_builtins.property
|
|
40955
|
+
@pulumi.getter(name="mfaAuthenticationMethods")
|
|
40956
|
+
def mfa_authentication_methods(self) -> _builtins.str:
|
|
40957
|
+
return pulumi.get(self, "mfa_authentication_methods")
|
|
40958
|
+
|
|
40959
|
+
@_builtins.property
|
|
40960
|
+
@pulumi.getter(name="mfaEnrollment")
|
|
40961
|
+
def mfa_enrollment(self) -> _builtins.str:
|
|
40962
|
+
return pulumi.get(self, "mfa_enrollment")
|
|
40963
|
+
|
|
40964
|
+
@_builtins.property
|
|
40965
|
+
@pulumi.getter(name="mfaPolicy")
|
|
40966
|
+
def mfa_policy(self) -> _builtins.str:
|
|
40967
|
+
return pulumi.get(self, "mfa_policy")
|
|
40968
|
+
|
|
40969
|
+
@_builtins.property
|
|
40970
|
+
@pulumi.getter
|
|
40971
|
+
def name(self) -> _builtins.str:
|
|
40972
|
+
return pulumi.get(self, "name")
|
|
40973
|
+
|
|
40974
|
+
@_builtins.property
|
|
40975
|
+
@pulumi.getter
|
|
40976
|
+
def owner(self) -> _builtins.str:
|
|
40977
|
+
return pulumi.get(self, "owner")
|
|
40978
|
+
|
|
40979
|
+
@_builtins.property
|
|
40980
|
+
@pulumi.getter(name="patPolicy")
|
|
40981
|
+
def pat_policy(self) -> _builtins.str:
|
|
40982
|
+
return pulumi.get(self, "pat_policy")
|
|
40983
|
+
|
|
40984
|
+
@_builtins.property
|
|
40985
|
+
@pulumi.getter(name="securityIntegrations")
|
|
40986
|
+
def security_integrations(self) -> _builtins.str:
|
|
40987
|
+
return pulumi.get(self, "security_integrations")
|
|
40988
|
+
|
|
40989
|
+
@_builtins.property
|
|
40990
|
+
@pulumi.getter(name="workloadIdentityPolicy")
|
|
40991
|
+
def workload_identity_policy(self) -> _builtins.str:
|
|
40992
|
+
return pulumi.get(self, "workload_identity_policy")
|
|
40993
|
+
|
|
40994
|
+
|
|
40995
|
+
@pulumi.output_type
|
|
40996
|
+
class GetAuthenticationPoliciesAuthenticationPolicyShowOutputResult(dict):
|
|
40997
|
+
def __init__(__self__, *,
|
|
40998
|
+
comment: _builtins.str,
|
|
40999
|
+
created_on: _builtins.str,
|
|
41000
|
+
database_name: _builtins.str,
|
|
41001
|
+
kind: _builtins.str,
|
|
41002
|
+
name: _builtins.str,
|
|
41003
|
+
options: _builtins.str,
|
|
41004
|
+
owner: _builtins.str,
|
|
41005
|
+
owner_role_type: _builtins.str,
|
|
41006
|
+
schema_name: _builtins.str):
|
|
41007
|
+
pulumi.set(__self__, "comment", comment)
|
|
41008
|
+
pulumi.set(__self__, "created_on", created_on)
|
|
41009
|
+
pulumi.set(__self__, "database_name", database_name)
|
|
41010
|
+
pulumi.set(__self__, "kind", kind)
|
|
41011
|
+
pulumi.set(__self__, "name", name)
|
|
41012
|
+
pulumi.set(__self__, "options", options)
|
|
41013
|
+
pulumi.set(__self__, "owner", owner)
|
|
41014
|
+
pulumi.set(__self__, "owner_role_type", owner_role_type)
|
|
41015
|
+
pulumi.set(__self__, "schema_name", schema_name)
|
|
41016
|
+
|
|
41017
|
+
@_builtins.property
|
|
41018
|
+
@pulumi.getter
|
|
41019
|
+
def comment(self) -> _builtins.str:
|
|
41020
|
+
return pulumi.get(self, "comment")
|
|
41021
|
+
|
|
41022
|
+
@_builtins.property
|
|
41023
|
+
@pulumi.getter(name="createdOn")
|
|
41024
|
+
def created_on(self) -> _builtins.str:
|
|
41025
|
+
return pulumi.get(self, "created_on")
|
|
41026
|
+
|
|
41027
|
+
@_builtins.property
|
|
41028
|
+
@pulumi.getter(name="databaseName")
|
|
41029
|
+
def database_name(self) -> _builtins.str:
|
|
41030
|
+
return pulumi.get(self, "database_name")
|
|
41031
|
+
|
|
41032
|
+
@_builtins.property
|
|
41033
|
+
@pulumi.getter
|
|
41034
|
+
def kind(self) -> _builtins.str:
|
|
41035
|
+
return pulumi.get(self, "kind")
|
|
41036
|
+
|
|
41037
|
+
@_builtins.property
|
|
41038
|
+
@pulumi.getter
|
|
41039
|
+
def name(self) -> _builtins.str:
|
|
41040
|
+
return pulumi.get(self, "name")
|
|
41041
|
+
|
|
41042
|
+
@_builtins.property
|
|
41043
|
+
@pulumi.getter
|
|
41044
|
+
def options(self) -> _builtins.str:
|
|
41045
|
+
return pulumi.get(self, "options")
|
|
41046
|
+
|
|
41047
|
+
@_builtins.property
|
|
41048
|
+
@pulumi.getter
|
|
41049
|
+
def owner(self) -> _builtins.str:
|
|
41050
|
+
return pulumi.get(self, "owner")
|
|
41051
|
+
|
|
41052
|
+
@_builtins.property
|
|
41053
|
+
@pulumi.getter(name="ownerRoleType")
|
|
41054
|
+
def owner_role_type(self) -> _builtins.str:
|
|
41055
|
+
return pulumi.get(self, "owner_role_type")
|
|
41056
|
+
|
|
41057
|
+
@_builtins.property
|
|
41058
|
+
@pulumi.getter(name="schemaName")
|
|
41059
|
+
def schema_name(self) -> _builtins.str:
|
|
41060
|
+
return pulumi.get(self, "schema_name")
|
|
41061
|
+
|
|
41062
|
+
|
|
41063
|
+
@pulumi.output_type
|
|
41064
|
+
class GetAuthenticationPoliciesInResult(dict):
|
|
41065
|
+
def __init__(__self__, *,
|
|
41066
|
+
account: Optional[_builtins.bool] = None,
|
|
41067
|
+
application: Optional[_builtins.str] = None,
|
|
41068
|
+
application_package: Optional[_builtins.str] = None,
|
|
41069
|
+
database: Optional[_builtins.str] = None,
|
|
41070
|
+
schema: Optional[_builtins.str] = None):
|
|
41071
|
+
"""
|
|
41072
|
+
:param _builtins.bool account: Returns records for the entire account.
|
|
41073
|
+
:param _builtins.str application: Returns records for the specified application.
|
|
41074
|
+
:param _builtins.str application_package: Returns records for the specified application package.
|
|
41075
|
+
:param _builtins.str database: Returns records for the current database in use or for a specified database.
|
|
41076
|
+
:param _builtins.str schema: Returns records for the current schema in use or a specified schema. Use fully qualified name.
|
|
41077
|
+
"""
|
|
41078
|
+
if account is not None:
|
|
41079
|
+
pulumi.set(__self__, "account", account)
|
|
41080
|
+
if application is not None:
|
|
41081
|
+
pulumi.set(__self__, "application", application)
|
|
41082
|
+
if application_package is not None:
|
|
41083
|
+
pulumi.set(__self__, "application_package", application_package)
|
|
41084
|
+
if database is not None:
|
|
41085
|
+
pulumi.set(__self__, "database", database)
|
|
41086
|
+
if schema is not None:
|
|
41087
|
+
pulumi.set(__self__, "schema", schema)
|
|
41088
|
+
|
|
41089
|
+
@_builtins.property
|
|
41090
|
+
@pulumi.getter
|
|
41091
|
+
def account(self) -> Optional[_builtins.bool]:
|
|
41092
|
+
"""
|
|
41093
|
+
Returns records for the entire account.
|
|
41094
|
+
"""
|
|
41095
|
+
return pulumi.get(self, "account")
|
|
41096
|
+
|
|
41097
|
+
@_builtins.property
|
|
41098
|
+
@pulumi.getter
|
|
41099
|
+
def application(self) -> Optional[_builtins.str]:
|
|
41100
|
+
"""
|
|
41101
|
+
Returns records for the specified application.
|
|
41102
|
+
"""
|
|
41103
|
+
return pulumi.get(self, "application")
|
|
41104
|
+
|
|
41105
|
+
@_builtins.property
|
|
41106
|
+
@pulumi.getter(name="applicationPackage")
|
|
41107
|
+
def application_package(self) -> Optional[_builtins.str]:
|
|
41108
|
+
"""
|
|
41109
|
+
Returns records for the specified application package.
|
|
41110
|
+
"""
|
|
41111
|
+
return pulumi.get(self, "application_package")
|
|
41112
|
+
|
|
41113
|
+
@_builtins.property
|
|
41114
|
+
@pulumi.getter
|
|
41115
|
+
def database(self) -> Optional[_builtins.str]:
|
|
41116
|
+
"""
|
|
41117
|
+
Returns records for the current database in use or for a specified database.
|
|
41118
|
+
"""
|
|
41119
|
+
return pulumi.get(self, "database")
|
|
41120
|
+
|
|
41121
|
+
@_builtins.property
|
|
41122
|
+
@pulumi.getter
|
|
41123
|
+
def schema(self) -> Optional[_builtins.str]:
|
|
41124
|
+
"""
|
|
41125
|
+
Returns records for the current schema in use or a specified schema. Use fully qualified name.
|
|
41126
|
+
"""
|
|
41127
|
+
return pulumi.get(self, "schema")
|
|
41128
|
+
|
|
41129
|
+
|
|
41130
|
+
@pulumi.output_type
|
|
41131
|
+
class GetAuthenticationPoliciesLimitResult(dict):
|
|
41132
|
+
def __init__(__self__, *,
|
|
41133
|
+
rows: _builtins.int,
|
|
41134
|
+
from_: Optional[_builtins.str] = None):
|
|
41135
|
+
"""
|
|
41136
|
+
:param _builtins.int rows: The maximum number of rows to return.
|
|
41137
|
+
: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.
|
|
41138
|
+
"""
|
|
41139
|
+
pulumi.set(__self__, "rows", rows)
|
|
41140
|
+
if from_ is not None:
|
|
41141
|
+
pulumi.set(__self__, "from_", from_)
|
|
41142
|
+
|
|
41143
|
+
@_builtins.property
|
|
41144
|
+
@pulumi.getter
|
|
41145
|
+
def rows(self) -> _builtins.int:
|
|
41146
|
+
"""
|
|
41147
|
+
The maximum number of rows to return.
|
|
41148
|
+
"""
|
|
41149
|
+
return pulumi.get(self, "rows")
|
|
41150
|
+
|
|
41151
|
+
@_builtins.property
|
|
41152
|
+
@pulumi.getter(name="from")
|
|
41153
|
+
def from_(self) -> Optional[_builtins.str]:
|
|
41154
|
+
"""
|
|
41155
|
+
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.
|
|
41156
|
+
"""
|
|
41157
|
+
return pulumi.get(self, "from_")
|
|
41158
|
+
|
|
41159
|
+
|
|
41160
|
+
@pulumi.output_type
|
|
41161
|
+
class GetAuthenticationPoliciesOnResult(dict):
|
|
41162
|
+
def __init__(__self__, *,
|
|
41163
|
+
account: Optional[_builtins.bool] = None,
|
|
41164
|
+
user: Optional[_builtins.str] = None):
|
|
41165
|
+
"""
|
|
41166
|
+
:param _builtins.bool account: Returns records for the entire account.
|
|
41167
|
+
:param _builtins.str user: Returns records for the specified user.
|
|
41168
|
+
"""
|
|
41169
|
+
if account is not None:
|
|
41170
|
+
pulumi.set(__self__, "account", account)
|
|
41171
|
+
if user is not None:
|
|
41172
|
+
pulumi.set(__self__, "user", user)
|
|
41173
|
+
|
|
41174
|
+
@_builtins.property
|
|
41175
|
+
@pulumi.getter
|
|
41176
|
+
def account(self) -> Optional[_builtins.bool]:
|
|
41177
|
+
"""
|
|
41178
|
+
Returns records for the entire account.
|
|
41179
|
+
"""
|
|
41180
|
+
return pulumi.get(self, "account")
|
|
41181
|
+
|
|
41182
|
+
@_builtins.property
|
|
41183
|
+
@pulumi.getter
|
|
41184
|
+
def user(self) -> Optional[_builtins.str]:
|
|
41185
|
+
"""
|
|
41186
|
+
Returns records for the specified user.
|
|
41187
|
+
"""
|
|
41188
|
+
return pulumi.get(self, "user")
|
|
41189
|
+
|
|
41190
|
+
|
|
39354
41191
|
@pulumi.output_type
|
|
39355
41192
|
class GetComputePoolsComputePoolResult(dict):
|
|
39356
41193
|
def __init__(__self__, *,
|
|
@@ -42850,6 +44687,348 @@ class GetNetworkPoliciesNetworkPolicyShowOutputResult(dict):
|
|
|
42850
44687
|
return pulumi.get(self, "name")
|
|
42851
44688
|
|
|
42852
44689
|
|
|
44690
|
+
@pulumi.output_type
|
|
44691
|
+
class GetNotebooksLimitResult(dict):
|
|
44692
|
+
def __init__(__self__, *,
|
|
44693
|
+
rows: _builtins.int,
|
|
44694
|
+
from_: Optional[_builtins.str] = None):
|
|
44695
|
+
"""
|
|
44696
|
+
:param _builtins.int rows: The maximum number of rows to return.
|
|
44697
|
+
: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.
|
|
44698
|
+
"""
|
|
44699
|
+
pulumi.set(__self__, "rows", rows)
|
|
44700
|
+
if from_ is not None:
|
|
44701
|
+
pulumi.set(__self__, "from_", from_)
|
|
44702
|
+
|
|
44703
|
+
@_builtins.property
|
|
44704
|
+
@pulumi.getter
|
|
44705
|
+
def rows(self) -> _builtins.int:
|
|
44706
|
+
"""
|
|
44707
|
+
The maximum number of rows to return.
|
|
44708
|
+
"""
|
|
44709
|
+
return pulumi.get(self, "rows")
|
|
44710
|
+
|
|
44711
|
+
@_builtins.property
|
|
44712
|
+
@pulumi.getter(name="from")
|
|
44713
|
+
def from_(self) -> Optional[_builtins.str]:
|
|
44714
|
+
"""
|
|
44715
|
+
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.
|
|
44716
|
+
"""
|
|
44717
|
+
return pulumi.get(self, "from_")
|
|
44718
|
+
|
|
44719
|
+
|
|
44720
|
+
@pulumi.output_type
|
|
44721
|
+
class GetNotebooksNotebookResult(dict):
|
|
44722
|
+
def __init__(__self__, *,
|
|
44723
|
+
describe_outputs: Sequence['outputs.GetNotebooksNotebookDescribeOutputResult'],
|
|
44724
|
+
show_outputs: Sequence['outputs.GetNotebooksNotebookShowOutputResult']):
|
|
44725
|
+
"""
|
|
44726
|
+
:param Sequence['GetNotebooksNotebookDescribeOutputArgs'] describe_outputs: Holds the output of DESCRIBE NOTEBOOK
|
|
44727
|
+
:param Sequence['GetNotebooksNotebookShowOutputArgs'] show_outputs: Holds the output of SHOW NOTEBOOKS.
|
|
44728
|
+
"""
|
|
44729
|
+
pulumi.set(__self__, "describe_outputs", describe_outputs)
|
|
44730
|
+
pulumi.set(__self__, "show_outputs", show_outputs)
|
|
44731
|
+
|
|
44732
|
+
@_builtins.property
|
|
44733
|
+
@pulumi.getter(name="describeOutputs")
|
|
44734
|
+
def describe_outputs(self) -> Sequence['outputs.GetNotebooksNotebookDescribeOutputResult']:
|
|
44735
|
+
"""
|
|
44736
|
+
Holds the output of DESCRIBE NOTEBOOK
|
|
44737
|
+
"""
|
|
44738
|
+
return pulumi.get(self, "describe_outputs")
|
|
44739
|
+
|
|
44740
|
+
@_builtins.property
|
|
44741
|
+
@pulumi.getter(name="showOutputs")
|
|
44742
|
+
def show_outputs(self) -> Sequence['outputs.GetNotebooksNotebookShowOutputResult']:
|
|
44743
|
+
"""
|
|
44744
|
+
Holds the output of SHOW NOTEBOOKS.
|
|
44745
|
+
"""
|
|
44746
|
+
return pulumi.get(self, "show_outputs")
|
|
44747
|
+
|
|
44748
|
+
|
|
44749
|
+
@pulumi.output_type
|
|
44750
|
+
class GetNotebooksNotebookDescribeOutputResult(dict):
|
|
44751
|
+
def __init__(__self__, *,
|
|
44752
|
+
code_warehouse: _builtins.str,
|
|
44753
|
+
comment: _builtins.str,
|
|
44754
|
+
compute_pool: _builtins.str,
|
|
44755
|
+
default_packages: _builtins.str,
|
|
44756
|
+
default_version: _builtins.str,
|
|
44757
|
+
default_version_alias: _builtins.str,
|
|
44758
|
+
default_version_git_commit_hash: _builtins.str,
|
|
44759
|
+
default_version_location_uri: _builtins.str,
|
|
44760
|
+
default_version_name: _builtins.str,
|
|
44761
|
+
default_version_source_location_uri: _builtins.str,
|
|
44762
|
+
external_access_integrations: _builtins.str,
|
|
44763
|
+
external_access_secrets: _builtins.str,
|
|
44764
|
+
idle_auto_shutdown_time_seconds: _builtins.int,
|
|
44765
|
+
import_urls: _builtins.str,
|
|
44766
|
+
last_version_alias: _builtins.str,
|
|
44767
|
+
last_version_git_commit_hash: _builtins.str,
|
|
44768
|
+
last_version_location_uri: _builtins.str,
|
|
44769
|
+
last_version_name: _builtins.str,
|
|
44770
|
+
last_version_source_location_uri: _builtins.str,
|
|
44771
|
+
live_version_location_uri: _builtins.str,
|
|
44772
|
+
main_file: _builtins.str,
|
|
44773
|
+
name: _builtins.str,
|
|
44774
|
+
owner: _builtins.str,
|
|
44775
|
+
query_warehouse: _builtins.str,
|
|
44776
|
+
runtime_environment_version: _builtins.str,
|
|
44777
|
+
runtime_name: _builtins.str,
|
|
44778
|
+
title: _builtins.str,
|
|
44779
|
+
url_id: _builtins.str,
|
|
44780
|
+
user_packages: _builtins.str):
|
|
44781
|
+
pulumi.set(__self__, "code_warehouse", code_warehouse)
|
|
44782
|
+
pulumi.set(__self__, "comment", comment)
|
|
44783
|
+
pulumi.set(__self__, "compute_pool", compute_pool)
|
|
44784
|
+
pulumi.set(__self__, "default_packages", default_packages)
|
|
44785
|
+
pulumi.set(__self__, "default_version", default_version)
|
|
44786
|
+
pulumi.set(__self__, "default_version_alias", default_version_alias)
|
|
44787
|
+
pulumi.set(__self__, "default_version_git_commit_hash", default_version_git_commit_hash)
|
|
44788
|
+
pulumi.set(__self__, "default_version_location_uri", default_version_location_uri)
|
|
44789
|
+
pulumi.set(__self__, "default_version_name", default_version_name)
|
|
44790
|
+
pulumi.set(__self__, "default_version_source_location_uri", default_version_source_location_uri)
|
|
44791
|
+
pulumi.set(__self__, "external_access_integrations", external_access_integrations)
|
|
44792
|
+
pulumi.set(__self__, "external_access_secrets", external_access_secrets)
|
|
44793
|
+
pulumi.set(__self__, "idle_auto_shutdown_time_seconds", idle_auto_shutdown_time_seconds)
|
|
44794
|
+
pulumi.set(__self__, "import_urls", import_urls)
|
|
44795
|
+
pulumi.set(__self__, "last_version_alias", last_version_alias)
|
|
44796
|
+
pulumi.set(__self__, "last_version_git_commit_hash", last_version_git_commit_hash)
|
|
44797
|
+
pulumi.set(__self__, "last_version_location_uri", last_version_location_uri)
|
|
44798
|
+
pulumi.set(__self__, "last_version_name", last_version_name)
|
|
44799
|
+
pulumi.set(__self__, "last_version_source_location_uri", last_version_source_location_uri)
|
|
44800
|
+
pulumi.set(__self__, "live_version_location_uri", live_version_location_uri)
|
|
44801
|
+
pulumi.set(__self__, "main_file", main_file)
|
|
44802
|
+
pulumi.set(__self__, "name", name)
|
|
44803
|
+
pulumi.set(__self__, "owner", owner)
|
|
44804
|
+
pulumi.set(__self__, "query_warehouse", query_warehouse)
|
|
44805
|
+
pulumi.set(__self__, "runtime_environment_version", runtime_environment_version)
|
|
44806
|
+
pulumi.set(__self__, "runtime_name", runtime_name)
|
|
44807
|
+
pulumi.set(__self__, "title", title)
|
|
44808
|
+
pulumi.set(__self__, "url_id", url_id)
|
|
44809
|
+
pulumi.set(__self__, "user_packages", user_packages)
|
|
44810
|
+
|
|
44811
|
+
@_builtins.property
|
|
44812
|
+
@pulumi.getter(name="codeWarehouse")
|
|
44813
|
+
def code_warehouse(self) -> _builtins.str:
|
|
44814
|
+
return pulumi.get(self, "code_warehouse")
|
|
44815
|
+
|
|
44816
|
+
@_builtins.property
|
|
44817
|
+
@pulumi.getter
|
|
44818
|
+
def comment(self) -> _builtins.str:
|
|
44819
|
+
return pulumi.get(self, "comment")
|
|
44820
|
+
|
|
44821
|
+
@_builtins.property
|
|
44822
|
+
@pulumi.getter(name="computePool")
|
|
44823
|
+
def compute_pool(self) -> _builtins.str:
|
|
44824
|
+
return pulumi.get(self, "compute_pool")
|
|
44825
|
+
|
|
44826
|
+
@_builtins.property
|
|
44827
|
+
@pulumi.getter(name="defaultPackages")
|
|
44828
|
+
def default_packages(self) -> _builtins.str:
|
|
44829
|
+
return pulumi.get(self, "default_packages")
|
|
44830
|
+
|
|
44831
|
+
@_builtins.property
|
|
44832
|
+
@pulumi.getter(name="defaultVersion")
|
|
44833
|
+
def default_version(self) -> _builtins.str:
|
|
44834
|
+
return pulumi.get(self, "default_version")
|
|
44835
|
+
|
|
44836
|
+
@_builtins.property
|
|
44837
|
+
@pulumi.getter(name="defaultVersionAlias")
|
|
44838
|
+
def default_version_alias(self) -> _builtins.str:
|
|
44839
|
+
return pulumi.get(self, "default_version_alias")
|
|
44840
|
+
|
|
44841
|
+
@_builtins.property
|
|
44842
|
+
@pulumi.getter(name="defaultVersionGitCommitHash")
|
|
44843
|
+
def default_version_git_commit_hash(self) -> _builtins.str:
|
|
44844
|
+
return pulumi.get(self, "default_version_git_commit_hash")
|
|
44845
|
+
|
|
44846
|
+
@_builtins.property
|
|
44847
|
+
@pulumi.getter(name="defaultVersionLocationUri")
|
|
44848
|
+
def default_version_location_uri(self) -> _builtins.str:
|
|
44849
|
+
return pulumi.get(self, "default_version_location_uri")
|
|
44850
|
+
|
|
44851
|
+
@_builtins.property
|
|
44852
|
+
@pulumi.getter(name="defaultVersionName")
|
|
44853
|
+
def default_version_name(self) -> _builtins.str:
|
|
44854
|
+
return pulumi.get(self, "default_version_name")
|
|
44855
|
+
|
|
44856
|
+
@_builtins.property
|
|
44857
|
+
@pulumi.getter(name="defaultVersionSourceLocationUri")
|
|
44858
|
+
def default_version_source_location_uri(self) -> _builtins.str:
|
|
44859
|
+
return pulumi.get(self, "default_version_source_location_uri")
|
|
44860
|
+
|
|
44861
|
+
@_builtins.property
|
|
44862
|
+
@pulumi.getter(name="externalAccessIntegrations")
|
|
44863
|
+
def external_access_integrations(self) -> _builtins.str:
|
|
44864
|
+
return pulumi.get(self, "external_access_integrations")
|
|
44865
|
+
|
|
44866
|
+
@_builtins.property
|
|
44867
|
+
@pulumi.getter(name="externalAccessSecrets")
|
|
44868
|
+
def external_access_secrets(self) -> _builtins.str:
|
|
44869
|
+
return pulumi.get(self, "external_access_secrets")
|
|
44870
|
+
|
|
44871
|
+
@_builtins.property
|
|
44872
|
+
@pulumi.getter(name="idleAutoShutdownTimeSeconds")
|
|
44873
|
+
def idle_auto_shutdown_time_seconds(self) -> _builtins.int:
|
|
44874
|
+
return pulumi.get(self, "idle_auto_shutdown_time_seconds")
|
|
44875
|
+
|
|
44876
|
+
@_builtins.property
|
|
44877
|
+
@pulumi.getter(name="importUrls")
|
|
44878
|
+
def import_urls(self) -> _builtins.str:
|
|
44879
|
+
return pulumi.get(self, "import_urls")
|
|
44880
|
+
|
|
44881
|
+
@_builtins.property
|
|
44882
|
+
@pulumi.getter(name="lastVersionAlias")
|
|
44883
|
+
def last_version_alias(self) -> _builtins.str:
|
|
44884
|
+
return pulumi.get(self, "last_version_alias")
|
|
44885
|
+
|
|
44886
|
+
@_builtins.property
|
|
44887
|
+
@pulumi.getter(name="lastVersionGitCommitHash")
|
|
44888
|
+
def last_version_git_commit_hash(self) -> _builtins.str:
|
|
44889
|
+
return pulumi.get(self, "last_version_git_commit_hash")
|
|
44890
|
+
|
|
44891
|
+
@_builtins.property
|
|
44892
|
+
@pulumi.getter(name="lastVersionLocationUri")
|
|
44893
|
+
def last_version_location_uri(self) -> _builtins.str:
|
|
44894
|
+
return pulumi.get(self, "last_version_location_uri")
|
|
44895
|
+
|
|
44896
|
+
@_builtins.property
|
|
44897
|
+
@pulumi.getter(name="lastVersionName")
|
|
44898
|
+
def last_version_name(self) -> _builtins.str:
|
|
44899
|
+
return pulumi.get(self, "last_version_name")
|
|
44900
|
+
|
|
44901
|
+
@_builtins.property
|
|
44902
|
+
@pulumi.getter(name="lastVersionSourceLocationUri")
|
|
44903
|
+
def last_version_source_location_uri(self) -> _builtins.str:
|
|
44904
|
+
return pulumi.get(self, "last_version_source_location_uri")
|
|
44905
|
+
|
|
44906
|
+
@_builtins.property
|
|
44907
|
+
@pulumi.getter(name="liveVersionLocationUri")
|
|
44908
|
+
def live_version_location_uri(self) -> _builtins.str:
|
|
44909
|
+
return pulumi.get(self, "live_version_location_uri")
|
|
44910
|
+
|
|
44911
|
+
@_builtins.property
|
|
44912
|
+
@pulumi.getter(name="mainFile")
|
|
44913
|
+
def main_file(self) -> _builtins.str:
|
|
44914
|
+
return pulumi.get(self, "main_file")
|
|
44915
|
+
|
|
44916
|
+
@_builtins.property
|
|
44917
|
+
@pulumi.getter
|
|
44918
|
+
def name(self) -> _builtins.str:
|
|
44919
|
+
return pulumi.get(self, "name")
|
|
44920
|
+
|
|
44921
|
+
@_builtins.property
|
|
44922
|
+
@pulumi.getter
|
|
44923
|
+
def owner(self) -> _builtins.str:
|
|
44924
|
+
return pulumi.get(self, "owner")
|
|
44925
|
+
|
|
44926
|
+
@_builtins.property
|
|
44927
|
+
@pulumi.getter(name="queryWarehouse")
|
|
44928
|
+
def query_warehouse(self) -> _builtins.str:
|
|
44929
|
+
return pulumi.get(self, "query_warehouse")
|
|
44930
|
+
|
|
44931
|
+
@_builtins.property
|
|
44932
|
+
@pulumi.getter(name="runtimeEnvironmentVersion")
|
|
44933
|
+
def runtime_environment_version(self) -> _builtins.str:
|
|
44934
|
+
return pulumi.get(self, "runtime_environment_version")
|
|
44935
|
+
|
|
44936
|
+
@_builtins.property
|
|
44937
|
+
@pulumi.getter(name="runtimeName")
|
|
44938
|
+
def runtime_name(self) -> _builtins.str:
|
|
44939
|
+
return pulumi.get(self, "runtime_name")
|
|
44940
|
+
|
|
44941
|
+
@_builtins.property
|
|
44942
|
+
@pulumi.getter
|
|
44943
|
+
def title(self) -> _builtins.str:
|
|
44944
|
+
return pulumi.get(self, "title")
|
|
44945
|
+
|
|
44946
|
+
@_builtins.property
|
|
44947
|
+
@pulumi.getter(name="urlId")
|
|
44948
|
+
def url_id(self) -> _builtins.str:
|
|
44949
|
+
return pulumi.get(self, "url_id")
|
|
44950
|
+
|
|
44951
|
+
@_builtins.property
|
|
44952
|
+
@pulumi.getter(name="userPackages")
|
|
44953
|
+
def user_packages(self) -> _builtins.str:
|
|
44954
|
+
return pulumi.get(self, "user_packages")
|
|
44955
|
+
|
|
44956
|
+
|
|
44957
|
+
@pulumi.output_type
|
|
44958
|
+
class GetNotebooksNotebookShowOutputResult(dict):
|
|
44959
|
+
def __init__(__self__, *,
|
|
44960
|
+
code_warehouse: _builtins.str,
|
|
44961
|
+
comment: _builtins.str,
|
|
44962
|
+
created_on: _builtins.str,
|
|
44963
|
+
database_name: _builtins.str,
|
|
44964
|
+
name: _builtins.str,
|
|
44965
|
+
owner: _builtins.str,
|
|
44966
|
+
owner_role_type: _builtins.str,
|
|
44967
|
+
query_warehouse: _builtins.str,
|
|
44968
|
+
schema_name: _builtins.str,
|
|
44969
|
+
url_id: _builtins.str):
|
|
44970
|
+
pulumi.set(__self__, "code_warehouse", code_warehouse)
|
|
44971
|
+
pulumi.set(__self__, "comment", comment)
|
|
44972
|
+
pulumi.set(__self__, "created_on", created_on)
|
|
44973
|
+
pulumi.set(__self__, "database_name", database_name)
|
|
44974
|
+
pulumi.set(__self__, "name", name)
|
|
44975
|
+
pulumi.set(__self__, "owner", owner)
|
|
44976
|
+
pulumi.set(__self__, "owner_role_type", owner_role_type)
|
|
44977
|
+
pulumi.set(__self__, "query_warehouse", query_warehouse)
|
|
44978
|
+
pulumi.set(__self__, "schema_name", schema_name)
|
|
44979
|
+
pulumi.set(__self__, "url_id", url_id)
|
|
44980
|
+
|
|
44981
|
+
@_builtins.property
|
|
44982
|
+
@pulumi.getter(name="codeWarehouse")
|
|
44983
|
+
def code_warehouse(self) -> _builtins.str:
|
|
44984
|
+
return pulumi.get(self, "code_warehouse")
|
|
44985
|
+
|
|
44986
|
+
@_builtins.property
|
|
44987
|
+
@pulumi.getter
|
|
44988
|
+
def comment(self) -> _builtins.str:
|
|
44989
|
+
return pulumi.get(self, "comment")
|
|
44990
|
+
|
|
44991
|
+
@_builtins.property
|
|
44992
|
+
@pulumi.getter(name="createdOn")
|
|
44993
|
+
def created_on(self) -> _builtins.str:
|
|
44994
|
+
return pulumi.get(self, "created_on")
|
|
44995
|
+
|
|
44996
|
+
@_builtins.property
|
|
44997
|
+
@pulumi.getter(name="databaseName")
|
|
44998
|
+
def database_name(self) -> _builtins.str:
|
|
44999
|
+
return pulumi.get(self, "database_name")
|
|
45000
|
+
|
|
45001
|
+
@_builtins.property
|
|
45002
|
+
@pulumi.getter
|
|
45003
|
+
def name(self) -> _builtins.str:
|
|
45004
|
+
return pulumi.get(self, "name")
|
|
45005
|
+
|
|
45006
|
+
@_builtins.property
|
|
45007
|
+
@pulumi.getter
|
|
45008
|
+
def owner(self) -> _builtins.str:
|
|
45009
|
+
return pulumi.get(self, "owner")
|
|
45010
|
+
|
|
45011
|
+
@_builtins.property
|
|
45012
|
+
@pulumi.getter(name="ownerRoleType")
|
|
45013
|
+
def owner_role_type(self) -> _builtins.str:
|
|
45014
|
+
return pulumi.get(self, "owner_role_type")
|
|
45015
|
+
|
|
45016
|
+
@_builtins.property
|
|
45017
|
+
@pulumi.getter(name="queryWarehouse")
|
|
45018
|
+
def query_warehouse(self) -> _builtins.str:
|
|
45019
|
+
return pulumi.get(self, "query_warehouse")
|
|
45020
|
+
|
|
45021
|
+
@_builtins.property
|
|
45022
|
+
@pulumi.getter(name="schemaName")
|
|
45023
|
+
def schema_name(self) -> _builtins.str:
|
|
45024
|
+
return pulumi.get(self, "schema_name")
|
|
45025
|
+
|
|
45026
|
+
@_builtins.property
|
|
45027
|
+
@pulumi.getter(name="urlId")
|
|
45028
|
+
def url_id(self) -> _builtins.str:
|
|
45029
|
+
return pulumi.get(self, "url_id")
|
|
45030
|
+
|
|
45031
|
+
|
|
42853
45032
|
@pulumi.output_type
|
|
42854
45033
|
class GetParametersParameterResult(dict):
|
|
42855
45034
|
def __init__(__self__, *,
|
|
@@ -46005,7 +48184,139 @@ class GetSecurityIntegrationsSecurityIntegrationDescribeOutputOauthEnforcePkceRe
|
|
|
46005
48184
|
|
|
46006
48185
|
|
|
46007
48186
|
@pulumi.output_type
|
|
46008
|
-
class GetSecurityIntegrationsSecurityIntegrationDescribeOutputOauthGrantResult(dict):
|
|
48187
|
+
class GetSecurityIntegrationsSecurityIntegrationDescribeOutputOauthGrantResult(dict):
|
|
48188
|
+
def __init__(__self__, *,
|
|
48189
|
+
default: _builtins.str,
|
|
48190
|
+
name: _builtins.str,
|
|
48191
|
+
type: _builtins.str,
|
|
48192
|
+
value: _builtins.str):
|
|
48193
|
+
pulumi.set(__self__, "default", default)
|
|
48194
|
+
pulumi.set(__self__, "name", name)
|
|
48195
|
+
pulumi.set(__self__, "type", type)
|
|
48196
|
+
pulumi.set(__self__, "value", value)
|
|
48197
|
+
|
|
48198
|
+
@_builtins.property
|
|
48199
|
+
@pulumi.getter
|
|
48200
|
+
def default(self) -> _builtins.str:
|
|
48201
|
+
return pulumi.get(self, "default")
|
|
48202
|
+
|
|
48203
|
+
@_builtins.property
|
|
48204
|
+
@pulumi.getter
|
|
48205
|
+
def name(self) -> _builtins.str:
|
|
48206
|
+
return pulumi.get(self, "name")
|
|
48207
|
+
|
|
48208
|
+
@_builtins.property
|
|
48209
|
+
@pulumi.getter
|
|
48210
|
+
def type(self) -> _builtins.str:
|
|
48211
|
+
return pulumi.get(self, "type")
|
|
48212
|
+
|
|
48213
|
+
@_builtins.property
|
|
48214
|
+
@pulumi.getter
|
|
48215
|
+
def value(self) -> _builtins.str:
|
|
48216
|
+
return pulumi.get(self, "value")
|
|
48217
|
+
|
|
48218
|
+
|
|
48219
|
+
@pulumi.output_type
|
|
48220
|
+
class GetSecurityIntegrationsSecurityIntegrationDescribeOutputOauthIssueRefreshTokenResult(dict):
|
|
48221
|
+
def __init__(__self__, *,
|
|
48222
|
+
default: _builtins.str,
|
|
48223
|
+
name: _builtins.str,
|
|
48224
|
+
type: _builtins.str,
|
|
48225
|
+
value: _builtins.str):
|
|
48226
|
+
pulumi.set(__self__, "default", default)
|
|
48227
|
+
pulumi.set(__self__, "name", name)
|
|
48228
|
+
pulumi.set(__self__, "type", type)
|
|
48229
|
+
pulumi.set(__self__, "value", value)
|
|
48230
|
+
|
|
48231
|
+
@_builtins.property
|
|
48232
|
+
@pulumi.getter
|
|
48233
|
+
def default(self) -> _builtins.str:
|
|
48234
|
+
return pulumi.get(self, "default")
|
|
48235
|
+
|
|
48236
|
+
@_builtins.property
|
|
48237
|
+
@pulumi.getter
|
|
48238
|
+
def name(self) -> _builtins.str:
|
|
48239
|
+
return pulumi.get(self, "name")
|
|
48240
|
+
|
|
48241
|
+
@_builtins.property
|
|
48242
|
+
@pulumi.getter
|
|
48243
|
+
def type(self) -> _builtins.str:
|
|
48244
|
+
return pulumi.get(self, "type")
|
|
48245
|
+
|
|
48246
|
+
@_builtins.property
|
|
48247
|
+
@pulumi.getter
|
|
48248
|
+
def value(self) -> _builtins.str:
|
|
48249
|
+
return pulumi.get(self, "value")
|
|
48250
|
+
|
|
48251
|
+
|
|
48252
|
+
@pulumi.output_type
|
|
48253
|
+
class GetSecurityIntegrationsSecurityIntegrationDescribeOutputOauthRefreshTokenValidityResult(dict):
|
|
48254
|
+
def __init__(__self__, *,
|
|
48255
|
+
default: _builtins.str,
|
|
48256
|
+
name: _builtins.str,
|
|
48257
|
+
type: _builtins.str,
|
|
48258
|
+
value: _builtins.str):
|
|
48259
|
+
pulumi.set(__self__, "default", default)
|
|
48260
|
+
pulumi.set(__self__, "name", name)
|
|
48261
|
+
pulumi.set(__self__, "type", type)
|
|
48262
|
+
pulumi.set(__self__, "value", value)
|
|
48263
|
+
|
|
48264
|
+
@_builtins.property
|
|
48265
|
+
@pulumi.getter
|
|
48266
|
+
def default(self) -> _builtins.str:
|
|
48267
|
+
return pulumi.get(self, "default")
|
|
48268
|
+
|
|
48269
|
+
@_builtins.property
|
|
48270
|
+
@pulumi.getter
|
|
48271
|
+
def name(self) -> _builtins.str:
|
|
48272
|
+
return pulumi.get(self, "name")
|
|
48273
|
+
|
|
48274
|
+
@_builtins.property
|
|
48275
|
+
@pulumi.getter
|
|
48276
|
+
def type(self) -> _builtins.str:
|
|
48277
|
+
return pulumi.get(self, "type")
|
|
48278
|
+
|
|
48279
|
+
@_builtins.property
|
|
48280
|
+
@pulumi.getter
|
|
48281
|
+
def value(self) -> _builtins.str:
|
|
48282
|
+
return pulumi.get(self, "value")
|
|
48283
|
+
|
|
48284
|
+
|
|
48285
|
+
@pulumi.output_type
|
|
48286
|
+
class GetSecurityIntegrationsSecurityIntegrationDescribeOutputOauthTokenEndpointResult(dict):
|
|
48287
|
+
def __init__(__self__, *,
|
|
48288
|
+
default: _builtins.str,
|
|
48289
|
+
name: _builtins.str,
|
|
48290
|
+
type: _builtins.str,
|
|
48291
|
+
value: _builtins.str):
|
|
48292
|
+
pulumi.set(__self__, "default", default)
|
|
48293
|
+
pulumi.set(__self__, "name", name)
|
|
48294
|
+
pulumi.set(__self__, "type", type)
|
|
48295
|
+
pulumi.set(__self__, "value", value)
|
|
48296
|
+
|
|
48297
|
+
@_builtins.property
|
|
48298
|
+
@pulumi.getter
|
|
48299
|
+
def default(self) -> _builtins.str:
|
|
48300
|
+
return pulumi.get(self, "default")
|
|
48301
|
+
|
|
48302
|
+
@_builtins.property
|
|
48303
|
+
@pulumi.getter
|
|
48304
|
+
def name(self) -> _builtins.str:
|
|
48305
|
+
return pulumi.get(self, "name")
|
|
48306
|
+
|
|
48307
|
+
@_builtins.property
|
|
48308
|
+
@pulumi.getter
|
|
48309
|
+
def type(self) -> _builtins.str:
|
|
48310
|
+
return pulumi.get(self, "type")
|
|
48311
|
+
|
|
48312
|
+
@_builtins.property
|
|
48313
|
+
@pulumi.getter
|
|
48314
|
+
def value(self) -> _builtins.str:
|
|
48315
|
+
return pulumi.get(self, "value")
|
|
48316
|
+
|
|
48317
|
+
|
|
48318
|
+
@pulumi.output_type
|
|
48319
|
+
class GetSecurityIntegrationsSecurityIntegrationDescribeOutputOauthUseSecondaryRoleResult(dict):
|
|
46009
48320
|
def __init__(__self__, *,
|
|
46010
48321
|
default: _builtins.str,
|
|
46011
48322
|
name: _builtins.str,
|
|
@@ -46038,7 +48349,7 @@ class GetSecurityIntegrationsSecurityIntegrationDescribeOutputOauthGrantResult(d
|
|
|
46038
48349
|
|
|
46039
48350
|
|
|
46040
48351
|
@pulumi.output_type
|
|
46041
|
-
class
|
|
48352
|
+
class GetSecurityIntegrationsSecurityIntegrationDescribeOutputParentIntegrationResult(dict):
|
|
46042
48353
|
def __init__(__self__, *,
|
|
46043
48354
|
default: _builtins.str,
|
|
46044
48355
|
name: _builtins.str,
|
|
@@ -46071,7 +48382,7 @@ class GetSecurityIntegrationsSecurityIntegrationDescribeOutputOauthIssueRefreshT
|
|
|
46071
48382
|
|
|
46072
48383
|
|
|
46073
48384
|
@pulumi.output_type
|
|
46074
|
-
class
|
|
48385
|
+
class GetSecurityIntegrationsSecurityIntegrationDescribeOutputPreAuthorizedRolesListResult(dict):
|
|
46075
48386
|
def __init__(__self__, *,
|
|
46076
48387
|
default: _builtins.str,
|
|
46077
48388
|
name: _builtins.str,
|
|
@@ -46104,7 +48415,7 @@ class GetSecurityIntegrationsSecurityIntegrationDescribeOutputOauthRefreshTokenV
|
|
|
46104
48415
|
|
|
46105
48416
|
|
|
46106
48417
|
@pulumi.output_type
|
|
46107
|
-
class
|
|
48418
|
+
class GetSecurityIntegrationsSecurityIntegrationDescribeOutputRunAsRoleResult(dict):
|
|
46108
48419
|
def __init__(__self__, *,
|
|
46109
48420
|
default: _builtins.str,
|
|
46110
48421
|
name: _builtins.str,
|
|
@@ -46137,7 +48448,7 @@ class GetSecurityIntegrationsSecurityIntegrationDescribeOutputOauthTokenEndpoint
|
|
|
46137
48448
|
|
|
46138
48449
|
|
|
46139
48450
|
@pulumi.output_type
|
|
46140
|
-
class
|
|
48451
|
+
class GetSecurityIntegrationsSecurityIntegrationDescribeOutputSaml2DigestMethodsUsedResult(dict):
|
|
46141
48452
|
def __init__(__self__, *,
|
|
46142
48453
|
default: _builtins.str,
|
|
46143
48454
|
name: _builtins.str,
|
|
@@ -46170,7 +48481,7 @@ class GetSecurityIntegrationsSecurityIntegrationDescribeOutputOauthUseSecondaryR
|
|
|
46170
48481
|
|
|
46171
48482
|
|
|
46172
48483
|
@pulumi.output_type
|
|
46173
|
-
class
|
|
48484
|
+
class GetSecurityIntegrationsSecurityIntegrationDescribeOutputSaml2EnableSpInitiatedResult(dict):
|
|
46174
48485
|
def __init__(__self__, *,
|
|
46175
48486
|
default: _builtins.str,
|
|
46176
48487
|
name: _builtins.str,
|
|
@@ -46203,7 +48514,7 @@ class GetSecurityIntegrationsSecurityIntegrationDescribeOutputParentIntegrationR
|
|
|
46203
48514
|
|
|
46204
48515
|
|
|
46205
48516
|
@pulumi.output_type
|
|
46206
|
-
class
|
|
48517
|
+
class GetSecurityIntegrationsSecurityIntegrationDescribeOutputSaml2ForceAuthnResult(dict):
|
|
46207
48518
|
def __init__(__self__, *,
|
|
46208
48519
|
default: _builtins.str,
|
|
46209
48520
|
name: _builtins.str,
|
|
@@ -46236,7 +48547,7 @@ class GetSecurityIntegrationsSecurityIntegrationDescribeOutputPreAuthorizedRoles
|
|
|
46236
48547
|
|
|
46237
48548
|
|
|
46238
48549
|
@pulumi.output_type
|
|
46239
|
-
class
|
|
48550
|
+
class GetSecurityIntegrationsSecurityIntegrationDescribeOutputSaml2IssuerResult(dict):
|
|
46240
48551
|
def __init__(__self__, *,
|
|
46241
48552
|
default: _builtins.str,
|
|
46242
48553
|
name: _builtins.str,
|
|
@@ -46269,7 +48580,7 @@ class GetSecurityIntegrationsSecurityIntegrationDescribeOutputRunAsRoleResult(di
|
|
|
46269
48580
|
|
|
46270
48581
|
|
|
46271
48582
|
@pulumi.output_type
|
|
46272
|
-
class
|
|
48583
|
+
class GetSecurityIntegrationsSecurityIntegrationDescribeOutputSaml2PostLogoutRedirectUrlResult(dict):
|
|
46273
48584
|
def __init__(__self__, *,
|
|
46274
48585
|
default: _builtins.str,
|
|
46275
48586
|
name: _builtins.str,
|
|
@@ -46302,7 +48613,7 @@ class GetSecurityIntegrationsSecurityIntegrationDescribeOutputSaml2DigestMethods
|
|
|
46302
48613
|
|
|
46303
48614
|
|
|
46304
48615
|
@pulumi.output_type
|
|
46305
|
-
class
|
|
48616
|
+
class GetSecurityIntegrationsSecurityIntegrationDescribeOutputSaml2ProviderResult(dict):
|
|
46306
48617
|
def __init__(__self__, *,
|
|
46307
48618
|
default: _builtins.str,
|
|
46308
48619
|
name: _builtins.str,
|
|
@@ -46335,7 +48646,7 @@ class GetSecurityIntegrationsSecurityIntegrationDescribeOutputSaml2EnableSpIniti
|
|
|
46335
48646
|
|
|
46336
48647
|
|
|
46337
48648
|
@pulumi.output_type
|
|
46338
|
-
class
|
|
48649
|
+
class GetSecurityIntegrationsSecurityIntegrationDescribeOutputSaml2RequestedNameidFormatResult(dict):
|
|
46339
48650
|
def __init__(__self__, *,
|
|
46340
48651
|
default: _builtins.str,
|
|
46341
48652
|
name: _builtins.str,
|
|
@@ -46368,7 +48679,7 @@ class GetSecurityIntegrationsSecurityIntegrationDescribeOutputSaml2ForceAuthnRes
|
|
|
46368
48679
|
|
|
46369
48680
|
|
|
46370
48681
|
@pulumi.output_type
|
|
46371
|
-
class
|
|
48682
|
+
class GetSecurityIntegrationsSecurityIntegrationDescribeOutputSaml2SignRequestResult(dict):
|
|
46372
48683
|
def __init__(__self__, *,
|
|
46373
48684
|
default: _builtins.str,
|
|
46374
48685
|
name: _builtins.str,
|
|
@@ -46401,7 +48712,7 @@ class GetSecurityIntegrationsSecurityIntegrationDescribeOutputSaml2IssuerResult(
|
|
|
46401
48712
|
|
|
46402
48713
|
|
|
46403
48714
|
@pulumi.output_type
|
|
46404
|
-
class
|
|
48715
|
+
class GetSecurityIntegrationsSecurityIntegrationDescribeOutputSaml2SignatureMethodsUsedResult(dict):
|
|
46405
48716
|
def __init__(__self__, *,
|
|
46406
48717
|
default: _builtins.str,
|
|
46407
48718
|
name: _builtins.str,
|
|
@@ -46434,7 +48745,7 @@ class GetSecurityIntegrationsSecurityIntegrationDescribeOutputSaml2PostLogoutRed
|
|
|
46434
48745
|
|
|
46435
48746
|
|
|
46436
48747
|
@pulumi.output_type
|
|
46437
|
-
class
|
|
48748
|
+
class GetSecurityIntegrationsSecurityIntegrationDescribeOutputSaml2SnowflakeAcsUrlResult(dict):
|
|
46438
48749
|
def __init__(__self__, *,
|
|
46439
48750
|
default: _builtins.str,
|
|
46440
48751
|
name: _builtins.str,
|
|
@@ -46467,7 +48778,7 @@ class GetSecurityIntegrationsSecurityIntegrationDescribeOutputSaml2ProviderResul
|
|
|
46467
48778
|
|
|
46468
48779
|
|
|
46469
48780
|
@pulumi.output_type
|
|
46470
|
-
class
|
|
48781
|
+
class GetSecurityIntegrationsSecurityIntegrationDescribeOutputSaml2SnowflakeIssuerUrlResult(dict):
|
|
46471
48782
|
def __init__(__self__, *,
|
|
46472
48783
|
default: _builtins.str,
|
|
46473
48784
|
name: _builtins.str,
|
|
@@ -46500,7 +48811,7 @@ class GetSecurityIntegrationsSecurityIntegrationDescribeOutputSaml2RequestedName
|
|
|
46500
48811
|
|
|
46501
48812
|
|
|
46502
48813
|
@pulumi.output_type
|
|
46503
|
-
class
|
|
48814
|
+
class GetSecurityIntegrationsSecurityIntegrationDescribeOutputSaml2SnowflakeMetadataResult(dict):
|
|
46504
48815
|
def __init__(__self__, *,
|
|
46505
48816
|
default: _builtins.str,
|
|
46506
48817
|
name: _builtins.str,
|
|
@@ -46533,7 +48844,7 @@ class GetSecurityIntegrationsSecurityIntegrationDescribeOutputSaml2SignRequestRe
|
|
|
46533
48844
|
|
|
46534
48845
|
|
|
46535
48846
|
@pulumi.output_type
|
|
46536
|
-
class
|
|
48847
|
+
class GetSecurityIntegrationsSecurityIntegrationDescribeOutputSaml2SpInitiatedLoginPageLabelResult(dict):
|
|
46537
48848
|
def __init__(__self__, *,
|
|
46538
48849
|
default: _builtins.str,
|
|
46539
48850
|
name: _builtins.str,
|
|
@@ -46566,7 +48877,7 @@ class GetSecurityIntegrationsSecurityIntegrationDescribeOutputSaml2SignatureMeth
|
|
|
46566
48877
|
|
|
46567
48878
|
|
|
46568
48879
|
@pulumi.output_type
|
|
46569
|
-
class
|
|
48880
|
+
class GetSecurityIntegrationsSecurityIntegrationDescribeOutputSaml2SsoUrlResult(dict):
|
|
46570
48881
|
def __init__(__self__, *,
|
|
46571
48882
|
default: _builtins.str,
|
|
46572
48883
|
name: _builtins.str,
|
|
@@ -46599,7 +48910,7 @@ class GetSecurityIntegrationsSecurityIntegrationDescribeOutputSaml2SnowflakeAcsU
|
|
|
46599
48910
|
|
|
46600
48911
|
|
|
46601
48912
|
@pulumi.output_type
|
|
46602
|
-
class
|
|
48913
|
+
class GetSecurityIntegrationsSecurityIntegrationDescribeOutputSyncPasswordResult(dict):
|
|
46603
48914
|
def __init__(__self__, *,
|
|
46604
48915
|
default: _builtins.str,
|
|
46605
48916
|
name: _builtins.str,
|
|
@@ -46632,157 +48943,162 @@ class GetSecurityIntegrationsSecurityIntegrationDescribeOutputSaml2SnowflakeIssu
|
|
|
46632
48943
|
|
|
46633
48944
|
|
|
46634
48945
|
@pulumi.output_type
|
|
46635
|
-
class
|
|
48946
|
+
class GetSecurityIntegrationsSecurityIntegrationShowOutputResult(dict):
|
|
46636
48947
|
def __init__(__self__, *,
|
|
46637
|
-
|
|
46638
|
-
|
|
46639
|
-
|
|
46640
|
-
|
|
46641
|
-
|
|
48948
|
+
category: _builtins.str,
|
|
48949
|
+
comment: _builtins.str,
|
|
48950
|
+
created_on: _builtins.str,
|
|
48951
|
+
enabled: _builtins.bool,
|
|
48952
|
+
integration_type: _builtins.str,
|
|
48953
|
+
name: _builtins.str):
|
|
48954
|
+
pulumi.set(__self__, "category", category)
|
|
48955
|
+
pulumi.set(__self__, "comment", comment)
|
|
48956
|
+
pulumi.set(__self__, "created_on", created_on)
|
|
48957
|
+
pulumi.set(__self__, "enabled", enabled)
|
|
48958
|
+
pulumi.set(__self__, "integration_type", integration_type)
|
|
46642
48959
|
pulumi.set(__self__, "name", name)
|
|
46643
|
-
pulumi.set(__self__, "type", type)
|
|
46644
|
-
pulumi.set(__self__, "value", value)
|
|
46645
48960
|
|
|
46646
48961
|
@_builtins.property
|
|
46647
48962
|
@pulumi.getter
|
|
46648
|
-
def
|
|
46649
|
-
return pulumi.get(self, "
|
|
48963
|
+
def category(self) -> _builtins.str:
|
|
48964
|
+
return pulumi.get(self, "category")
|
|
46650
48965
|
|
|
46651
48966
|
@_builtins.property
|
|
46652
48967
|
@pulumi.getter
|
|
46653
|
-
def
|
|
46654
|
-
return pulumi.get(self, "
|
|
48968
|
+
def comment(self) -> _builtins.str:
|
|
48969
|
+
return pulumi.get(self, "comment")
|
|
46655
48970
|
|
|
46656
48971
|
@_builtins.property
|
|
46657
|
-
@pulumi.getter
|
|
46658
|
-
def
|
|
46659
|
-
return pulumi.get(self, "
|
|
48972
|
+
@pulumi.getter(name="createdOn")
|
|
48973
|
+
def created_on(self) -> _builtins.str:
|
|
48974
|
+
return pulumi.get(self, "created_on")
|
|
46660
48975
|
|
|
46661
48976
|
@_builtins.property
|
|
46662
48977
|
@pulumi.getter
|
|
46663
|
-
def
|
|
46664
|
-
return pulumi.get(self, "
|
|
46665
|
-
|
|
46666
|
-
|
|
46667
|
-
@pulumi.output_type
|
|
46668
|
-
class GetSecurityIntegrationsSecurityIntegrationDescribeOutputSaml2SpInitiatedLoginPageLabelResult(dict):
|
|
46669
|
-
def __init__(__self__, *,
|
|
46670
|
-
default: _builtins.str,
|
|
46671
|
-
name: _builtins.str,
|
|
46672
|
-
type: _builtins.str,
|
|
46673
|
-
value: _builtins.str):
|
|
46674
|
-
pulumi.set(__self__, "default", default)
|
|
46675
|
-
pulumi.set(__self__, "name", name)
|
|
46676
|
-
pulumi.set(__self__, "type", type)
|
|
46677
|
-
pulumi.set(__self__, "value", value)
|
|
48978
|
+
def enabled(self) -> _builtins.bool:
|
|
48979
|
+
return pulumi.get(self, "enabled")
|
|
46678
48980
|
|
|
46679
48981
|
@_builtins.property
|
|
46680
|
-
@pulumi.getter
|
|
46681
|
-
def
|
|
46682
|
-
return pulumi.get(self, "
|
|
48982
|
+
@pulumi.getter(name="integrationType")
|
|
48983
|
+
def integration_type(self) -> _builtins.str:
|
|
48984
|
+
return pulumi.get(self, "integration_type")
|
|
46683
48985
|
|
|
46684
48986
|
@_builtins.property
|
|
46685
48987
|
@pulumi.getter
|
|
46686
48988
|
def name(self) -> _builtins.str:
|
|
46687
48989
|
return pulumi.get(self, "name")
|
|
46688
48990
|
|
|
46689
|
-
@_builtins.property
|
|
46690
|
-
@pulumi.getter
|
|
46691
|
-
def type(self) -> _builtins.str:
|
|
46692
|
-
return pulumi.get(self, "type")
|
|
46693
|
-
|
|
46694
|
-
@_builtins.property
|
|
46695
|
-
@pulumi.getter
|
|
46696
|
-
def value(self) -> _builtins.str:
|
|
46697
|
-
return pulumi.get(self, "value")
|
|
46698
|
-
|
|
46699
48991
|
|
|
46700
48992
|
@pulumi.output_type
|
|
46701
|
-
class
|
|
48993
|
+
class GetSemanticViewsInResult(dict):
|
|
46702
48994
|
def __init__(__self__, *,
|
|
46703
|
-
|
|
46704
|
-
|
|
46705
|
-
|
|
46706
|
-
|
|
46707
|
-
|
|
46708
|
-
|
|
46709
|
-
|
|
46710
|
-
|
|
46711
|
-
|
|
46712
|
-
|
|
46713
|
-
|
|
46714
|
-
|
|
46715
|
-
|
|
48995
|
+
account: Optional[_builtins.bool] = None,
|
|
48996
|
+
database: Optional[_builtins.str] = None,
|
|
48997
|
+
schema: Optional[_builtins.str] = None):
|
|
48998
|
+
"""
|
|
48999
|
+
:param _builtins.bool account: Returns records for the entire account.
|
|
49000
|
+
:param _builtins.str database: Returns records for the current database in use or for a specified database.
|
|
49001
|
+
:param _builtins.str schema: Returns records for the current schema in use or a specified schema. Use fully qualified name.
|
|
49002
|
+
"""
|
|
49003
|
+
if account is not None:
|
|
49004
|
+
pulumi.set(__self__, "account", account)
|
|
49005
|
+
if database is not None:
|
|
49006
|
+
pulumi.set(__self__, "database", database)
|
|
49007
|
+
if schema is not None:
|
|
49008
|
+
pulumi.set(__self__, "schema", schema)
|
|
46716
49009
|
|
|
46717
49010
|
@_builtins.property
|
|
46718
49011
|
@pulumi.getter
|
|
46719
|
-
def
|
|
46720
|
-
|
|
49012
|
+
def account(self) -> Optional[_builtins.bool]:
|
|
49013
|
+
"""
|
|
49014
|
+
Returns records for the entire account.
|
|
49015
|
+
"""
|
|
49016
|
+
return pulumi.get(self, "account")
|
|
46721
49017
|
|
|
46722
49018
|
@_builtins.property
|
|
46723
49019
|
@pulumi.getter
|
|
46724
|
-
def
|
|
46725
|
-
|
|
49020
|
+
def database(self) -> Optional[_builtins.str]:
|
|
49021
|
+
"""
|
|
49022
|
+
Returns records for the current database in use or for a specified database.
|
|
49023
|
+
"""
|
|
49024
|
+
return pulumi.get(self, "database")
|
|
46726
49025
|
|
|
46727
49026
|
@_builtins.property
|
|
46728
49027
|
@pulumi.getter
|
|
46729
|
-
def
|
|
46730
|
-
|
|
49028
|
+
def schema(self) -> Optional[_builtins.str]:
|
|
49029
|
+
"""
|
|
49030
|
+
Returns records for the current schema in use or a specified schema. Use fully qualified name.
|
|
49031
|
+
"""
|
|
49032
|
+
return pulumi.get(self, "schema")
|
|
46731
49033
|
|
|
46732
49034
|
|
|
46733
49035
|
@pulumi.output_type
|
|
46734
|
-
class
|
|
49036
|
+
class GetSemanticViewsLimitResult(dict):
|
|
46735
49037
|
def __init__(__self__, *,
|
|
46736
|
-
|
|
46737
|
-
|
|
46738
|
-
|
|
46739
|
-
|
|
46740
|
-
|
|
46741
|
-
|
|
46742
|
-
pulumi.set(__self__, "
|
|
46743
|
-
|
|
49038
|
+
rows: _builtins.int,
|
|
49039
|
+
from_: Optional[_builtins.str] = None):
|
|
49040
|
+
"""
|
|
49041
|
+
:param _builtins.int rows: The maximum number of rows to return.
|
|
49042
|
+
: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.
|
|
49043
|
+
"""
|
|
49044
|
+
pulumi.set(__self__, "rows", rows)
|
|
49045
|
+
if from_ is not None:
|
|
49046
|
+
pulumi.set(__self__, "from_", from_)
|
|
46744
49047
|
|
|
46745
49048
|
@_builtins.property
|
|
46746
49049
|
@pulumi.getter
|
|
46747
|
-
def
|
|
46748
|
-
|
|
49050
|
+
def rows(self) -> _builtins.int:
|
|
49051
|
+
"""
|
|
49052
|
+
The maximum number of rows to return.
|
|
49053
|
+
"""
|
|
49054
|
+
return pulumi.get(self, "rows")
|
|
46749
49055
|
|
|
46750
49056
|
@_builtins.property
|
|
46751
|
-
@pulumi.getter
|
|
46752
|
-
def
|
|
46753
|
-
|
|
49057
|
+
@pulumi.getter(name="from")
|
|
49058
|
+
def from_(self) -> Optional[_builtins.str]:
|
|
49059
|
+
"""
|
|
49060
|
+
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.
|
|
49061
|
+
"""
|
|
49062
|
+
return pulumi.get(self, "from_")
|
|
46754
49063
|
|
|
46755
|
-
|
|
46756
|
-
|
|
46757
|
-
|
|
46758
|
-
|
|
49064
|
+
|
|
49065
|
+
@pulumi.output_type
|
|
49066
|
+
class GetSemanticViewsSemanticViewResult(dict):
|
|
49067
|
+
def __init__(__self__, *,
|
|
49068
|
+
show_outputs: Sequence['outputs.GetSemanticViewsSemanticViewShowOutputResult']):
|
|
49069
|
+
"""
|
|
49070
|
+
:param Sequence['GetSemanticViewsSemanticViewShowOutputArgs'] show_outputs: Holds the output of SHOW SEMANTIC VIEWS.
|
|
49071
|
+
"""
|
|
49072
|
+
pulumi.set(__self__, "show_outputs", show_outputs)
|
|
46759
49073
|
|
|
46760
49074
|
@_builtins.property
|
|
46761
|
-
@pulumi.getter
|
|
46762
|
-
def
|
|
46763
|
-
|
|
49075
|
+
@pulumi.getter(name="showOutputs")
|
|
49076
|
+
def show_outputs(self) -> Sequence['outputs.GetSemanticViewsSemanticViewShowOutputResult']:
|
|
49077
|
+
"""
|
|
49078
|
+
Holds the output of SHOW SEMANTIC VIEWS.
|
|
49079
|
+
"""
|
|
49080
|
+
return pulumi.get(self, "show_outputs")
|
|
46764
49081
|
|
|
46765
49082
|
|
|
46766
49083
|
@pulumi.output_type
|
|
46767
|
-
class
|
|
49084
|
+
class GetSemanticViewsSemanticViewShowOutputResult(dict):
|
|
46768
49085
|
def __init__(__self__, *,
|
|
46769
|
-
category: _builtins.str,
|
|
46770
49086
|
comment: _builtins.str,
|
|
46771
49087
|
created_on: _builtins.str,
|
|
46772
|
-
|
|
46773
|
-
|
|
46774
|
-
name: _builtins.str
|
|
46775
|
-
|
|
49088
|
+
database_name: _builtins.str,
|
|
49089
|
+
extension: _builtins.str,
|
|
49090
|
+
name: _builtins.str,
|
|
49091
|
+
owner: _builtins.str,
|
|
49092
|
+
owner_role_type: _builtins.str,
|
|
49093
|
+
schema_name: _builtins.str):
|
|
46776
49094
|
pulumi.set(__self__, "comment", comment)
|
|
46777
49095
|
pulumi.set(__self__, "created_on", created_on)
|
|
46778
|
-
pulumi.set(__self__, "
|
|
46779
|
-
pulumi.set(__self__, "
|
|
49096
|
+
pulumi.set(__self__, "database_name", database_name)
|
|
49097
|
+
pulumi.set(__self__, "extension", extension)
|
|
46780
49098
|
pulumi.set(__self__, "name", name)
|
|
46781
|
-
|
|
46782
|
-
|
|
46783
|
-
|
|
46784
|
-
def category(self) -> _builtins.str:
|
|
46785
|
-
return pulumi.get(self, "category")
|
|
49099
|
+
pulumi.set(__self__, "owner", owner)
|
|
49100
|
+
pulumi.set(__self__, "owner_role_type", owner_role_type)
|
|
49101
|
+
pulumi.set(__self__, "schema_name", schema_name)
|
|
46786
49102
|
|
|
46787
49103
|
@_builtins.property
|
|
46788
49104
|
@pulumi.getter
|
|
@@ -46795,20 +49111,35 @@ class GetSecurityIntegrationsSecurityIntegrationShowOutputResult(dict):
|
|
|
46795
49111
|
return pulumi.get(self, "created_on")
|
|
46796
49112
|
|
|
46797
49113
|
@_builtins.property
|
|
46798
|
-
@pulumi.getter
|
|
46799
|
-
def
|
|
46800
|
-
return pulumi.get(self, "
|
|
49114
|
+
@pulumi.getter(name="databaseName")
|
|
49115
|
+
def database_name(self) -> _builtins.str:
|
|
49116
|
+
return pulumi.get(self, "database_name")
|
|
46801
49117
|
|
|
46802
49118
|
@_builtins.property
|
|
46803
|
-
@pulumi.getter
|
|
46804
|
-
def
|
|
46805
|
-
return pulumi.get(self, "
|
|
49119
|
+
@pulumi.getter
|
|
49120
|
+
def extension(self) -> _builtins.str:
|
|
49121
|
+
return pulumi.get(self, "extension")
|
|
46806
49122
|
|
|
46807
49123
|
@_builtins.property
|
|
46808
49124
|
@pulumi.getter
|
|
46809
49125
|
def name(self) -> _builtins.str:
|
|
46810
49126
|
return pulumi.get(self, "name")
|
|
46811
49127
|
|
|
49128
|
+
@_builtins.property
|
|
49129
|
+
@pulumi.getter
|
|
49130
|
+
def owner(self) -> _builtins.str:
|
|
49131
|
+
return pulumi.get(self, "owner")
|
|
49132
|
+
|
|
49133
|
+
@_builtins.property
|
|
49134
|
+
@pulumi.getter(name="ownerRoleType")
|
|
49135
|
+
def owner_role_type(self) -> _builtins.str:
|
|
49136
|
+
return pulumi.get(self, "owner_role_type")
|
|
49137
|
+
|
|
49138
|
+
@_builtins.property
|
|
49139
|
+
@pulumi.getter(name="schemaName")
|
|
49140
|
+
def schema_name(self) -> _builtins.str:
|
|
49141
|
+
return pulumi.get(self, "schema_name")
|
|
49142
|
+
|
|
46812
49143
|
|
|
46813
49144
|
@pulumi.output_type
|
|
46814
49145
|
class GetSequencesSequenceResult(dict):
|
|
@@ -55500,6 +57831,7 @@ class GetWarehousesWarehouseShowOutputResult(dict):
|
|
|
55500
57831
|
comment: _builtins.str,
|
|
55501
57832
|
created_on: _builtins.str,
|
|
55502
57833
|
enable_query_acceleration: _builtins.bool,
|
|
57834
|
+
generation: _builtins.str,
|
|
55503
57835
|
is_current: _builtins.bool,
|
|
55504
57836
|
is_default: _builtins.bool,
|
|
55505
57837
|
max_cluster_count: _builtins.int,
|
|
@@ -55512,6 +57844,7 @@ class GetWarehousesWarehouseShowOutputResult(dict):
|
|
|
55512
57844
|
query_acceleration_max_scale_factor: _builtins.int,
|
|
55513
57845
|
queued: _builtins.int,
|
|
55514
57846
|
quiescing: _builtins.float,
|
|
57847
|
+
resource_constraint: _builtins.str,
|
|
55515
57848
|
resource_monitor: _builtins.str,
|
|
55516
57849
|
resumed_on: _builtins.str,
|
|
55517
57850
|
running: _builtins.int,
|
|
@@ -55527,6 +57860,7 @@ class GetWarehousesWarehouseShowOutputResult(dict):
|
|
|
55527
57860
|
pulumi.set(__self__, "comment", comment)
|
|
55528
57861
|
pulumi.set(__self__, "created_on", created_on)
|
|
55529
57862
|
pulumi.set(__self__, "enable_query_acceleration", enable_query_acceleration)
|
|
57863
|
+
pulumi.set(__self__, "generation", generation)
|
|
55530
57864
|
pulumi.set(__self__, "is_current", is_current)
|
|
55531
57865
|
pulumi.set(__self__, "is_default", is_default)
|
|
55532
57866
|
pulumi.set(__self__, "max_cluster_count", max_cluster_count)
|
|
@@ -55539,6 +57873,7 @@ class GetWarehousesWarehouseShowOutputResult(dict):
|
|
|
55539
57873
|
pulumi.set(__self__, "query_acceleration_max_scale_factor", query_acceleration_max_scale_factor)
|
|
55540
57874
|
pulumi.set(__self__, "queued", queued)
|
|
55541
57875
|
pulumi.set(__self__, "quiescing", quiescing)
|
|
57876
|
+
pulumi.set(__self__, "resource_constraint", resource_constraint)
|
|
55542
57877
|
pulumi.set(__self__, "resource_monitor", resource_monitor)
|
|
55543
57878
|
pulumi.set(__self__, "resumed_on", resumed_on)
|
|
55544
57879
|
pulumi.set(__self__, "running", running)
|
|
@@ -55579,6 +57914,11 @@ class GetWarehousesWarehouseShowOutputResult(dict):
|
|
|
55579
57914
|
def enable_query_acceleration(self) -> _builtins.bool:
|
|
55580
57915
|
return pulumi.get(self, "enable_query_acceleration")
|
|
55581
57916
|
|
|
57917
|
+
@_builtins.property
|
|
57918
|
+
@pulumi.getter
|
|
57919
|
+
def generation(self) -> _builtins.str:
|
|
57920
|
+
return pulumi.get(self, "generation")
|
|
57921
|
+
|
|
55582
57922
|
@_builtins.property
|
|
55583
57923
|
@pulumi.getter(name="isCurrent")
|
|
55584
57924
|
def is_current(self) -> _builtins.bool:
|
|
@@ -55639,6 +57979,11 @@ class GetWarehousesWarehouseShowOutputResult(dict):
|
|
|
55639
57979
|
def quiescing(self) -> _builtins.float:
|
|
55640
57980
|
return pulumi.get(self, "quiescing")
|
|
55641
57981
|
|
|
57982
|
+
@_builtins.property
|
|
57983
|
+
@pulumi.getter(name="resourceConstraint")
|
|
57984
|
+
def resource_constraint(self) -> _builtins.str:
|
|
57985
|
+
return pulumi.get(self, "resource_constraint")
|
|
57986
|
+
|
|
55642
57987
|
@_builtins.property
|
|
55643
57988
|
@pulumi.getter(name="resourceMonitor")
|
|
55644
57989
|
def resource_monitor(self) -> _builtins.str:
|