@aws-sdk/client-quicksight 3.662.0 → 3.665.0

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.
Files changed (36) hide show
  1. package/dist-cjs/index.js +541 -524
  2. package/dist-cjs/runtimeConfig.js +1 -0
  3. package/dist-es/commands/CreateDataSetCommand.js +1 -1
  4. package/dist-es/models/models_2.js +4 -20
  5. package/dist-es/models/models_3.js +26 -13
  6. package/dist-es/models/models_4.js +14 -1
  7. package/dist-es/protocols/Aws_restJson1.js +6 -0
  8. package/dist-es/runtimeConfig.js +2 -1
  9. package/dist-types/commands/CreateDataSetCommand.d.ts +1 -1
  10. package/dist-types/commands/CreateTopicCommand.d.ts +3 -0
  11. package/dist-types/commands/DescribeAssetBundleExportJobCommand.d.ts +10 -0
  12. package/dist-types/commands/DescribeAssetBundleImportJobCommand.d.ts +19 -0
  13. package/dist-types/commands/DescribeTopicCommand.d.ts +3 -0
  14. package/dist-types/commands/DescribeTopicRefreshCommand.d.ts +2 -1
  15. package/dist-types/commands/DescribeTopicRefreshScheduleCommand.d.ts +1 -1
  16. package/dist-types/commands/DescribeUserCommand.d.ts +1 -2
  17. package/dist-types/commands/StartAssetBundleExportJobCommand.d.ts +10 -0
  18. package/dist-types/commands/StartAssetBundleImportJobCommand.d.ts +19 -0
  19. package/dist-types/commands/UpdateTopicCommand.d.ts +3 -0
  20. package/dist-types/models/models_2.d.ts +101 -212
  21. package/dist-types/models/models_3.d.ts +246 -142
  22. package/dist-types/models/models_4.d.ts +159 -2
  23. package/dist-types/runtimeConfig.browser.d.ts +2 -1
  24. package/dist-types/runtimeConfig.d.ts +2 -1
  25. package/dist-types/runtimeConfig.native.d.ts +2 -1
  26. package/dist-types/ts3.4/commands/CreateDataSetCommand.d.ts +1 -1
  27. package/dist-types/ts3.4/commands/DescribeTopicRefreshCommand.d.ts +2 -4
  28. package/dist-types/ts3.4/commands/DescribeTopicRefreshScheduleCommand.d.ts +1 -1
  29. package/dist-types/ts3.4/commands/DescribeUserCommand.d.ts +1 -2
  30. package/dist-types/ts3.4/models/models_2.d.ts +27 -51
  31. package/dist-types/ts3.4/models/models_3.d.ts +65 -45
  32. package/dist-types/ts3.4/models/models_4.d.ts +47 -2
  33. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -3
  34. package/dist-types/ts3.4/runtimeConfig.d.ts +6 -3
  35. package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -3
  36. package/package.json +14 -14
@@ -1435,6 +1435,34 @@ export interface AssetBundleExportJobDataSourceOverrideProperties {
1435
1435
  */
1436
1436
  Properties: AssetBundleExportJobDataSourcePropertyToOverride[] | undefined;
1437
1437
  }
1438
+ /**
1439
+ * @public
1440
+ * @enum
1441
+ */
1442
+ export declare const AssetBundleExportJobFolderPropertyToOverride: {
1443
+ readonly NAME: "Name";
1444
+ readonly PARENT_FOLDER_ARN: "ParentFolderArn";
1445
+ };
1446
+ /**
1447
+ * @public
1448
+ */
1449
+ export type AssetBundleExportJobFolderPropertyToOverride = (typeof AssetBundleExportJobFolderPropertyToOverride)[keyof typeof AssetBundleExportJobFolderPropertyToOverride];
1450
+ /**
1451
+ * <p>Controls how a specific <code>Folder</code> resource is parameterized in the returned CloudFormation template.</p>
1452
+ * @public
1453
+ */
1454
+ export interface AssetBundleExportJobFolderOverrideProperties {
1455
+ /**
1456
+ * <p>The ARN of the specific <code>Folder</code> resource whose override properties are configured in this structure.</p>
1457
+ * @public
1458
+ */
1459
+ Arn: string | undefined;
1460
+ /**
1461
+ * <p>A list of <code>Folder</code> resource properties to generate variables for in the returned CloudFormation template.</p>
1462
+ * @public
1463
+ */
1464
+ Properties: AssetBundleExportJobFolderPropertyToOverride[] | undefined;
1465
+ }
1438
1466
  /**
1439
1467
  * @public
1440
1468
  * @enum
@@ -1574,6 +1602,11 @@ export interface AssetBundleCloudFormationOverridePropertyConfiguration {
1574
1602
  * @public
1575
1603
  */
1576
1604
  Dashboards?: AssetBundleExportJobDashboardOverrideProperties[];
1605
+ /**
1606
+ * <p>An optional list of structures that controls how <code>Folder</code> resources are parameterized in the returned CloudFormation template.</p>
1607
+ * @public
1608
+ */
1609
+ Folders?: AssetBundleExportJobFolderOverrideProperties[];
1577
1610
  }
1578
1611
  /**
1579
1612
  * @public
@@ -3509,6 +3542,59 @@ export interface AssetBundleImportJobError {
3509
3542
  */
3510
3543
  Message?: string;
3511
3544
  }
3545
+ /**
3546
+ * <p>The override parameters for a single folder that is being imported.</p>
3547
+ * @public
3548
+ */
3549
+ export interface AssetBundleImportJobFolderOverrideParameters {
3550
+ /**
3551
+ * <p>The ID of the folder that you want to apply overrides to.</p>
3552
+ * @public
3553
+ */
3554
+ FolderId: string | undefined;
3555
+ /**
3556
+ * <p>A new name for the folder.</p>
3557
+ * @public
3558
+ */
3559
+ Name?: string;
3560
+ /**
3561
+ * <p>A new parent folder arn. This change can only be applied if the import creates a brand new folder. Existing folders cannot be moved.</p>
3562
+ * @public
3563
+ */
3564
+ ParentFolderArn?: string;
3565
+ }
3566
+ /**
3567
+ * <p>An object that contains a list of permissions to be applied to a list of folder IDs.</p>
3568
+ * @public
3569
+ */
3570
+ export interface AssetBundleImportJobFolderOverridePermissions {
3571
+ /**
3572
+ * <p>A list of folder IDs that you want to apply overrides to. You can use <code>*</code> to override all folders in this asset bundle.</p>
3573
+ * @public
3574
+ */
3575
+ FolderIds: string[] | undefined;
3576
+ /**
3577
+ * <p>A structure that contains the permissions for the resource that you want to override in an asset bundle import job.</p>
3578
+ * @public
3579
+ */
3580
+ Permissions?: AssetBundleResourcePermissions;
3581
+ }
3582
+ /**
3583
+ * <p>An object that contains a list of tags to be assigned to a list of folder IDs.</p>
3584
+ * @public
3585
+ */
3586
+ export interface AssetBundleImportJobFolderOverrideTags {
3587
+ /**
3588
+ * <p>A list of folder IDs that you want to apply overrides to. You can use <code>*</code> to override all folders in this asset bundle.</p>
3589
+ * @public
3590
+ */
3591
+ FolderIds: string[] | undefined;
3592
+ /**
3593
+ * <p>A list of tags for the folders that you want to apply overrides to.</p>
3594
+ * @public
3595
+ */
3596
+ Tags: Tag[] | undefined;
3597
+ }
3512
3598
  /**
3513
3599
  * <p>A list of overrides for a specific <code>RefreshsSchedule</code> resource that is present in the asset bundle that is imported.</p>
3514
3600
  * @public
@@ -3642,6 +3728,11 @@ export interface AssetBundleImportJobOverrideParameters {
3642
3728
  * @public
3643
3729
  */
3644
3730
  Dashboards?: AssetBundleImportJobDashboardOverrideParameters[];
3731
+ /**
3732
+ * <p>A list of overrides for any <code>Folder</code> resources that are present in the asset bundle that is imported.</p>
3733
+ * @public
3734
+ */
3735
+ Folders?: AssetBundleImportJobFolderOverrideParameters[];
3645
3736
  }
3646
3737
  /**
3647
3738
  * <p>An object that contains a list of permissions to be applied to a list of theme IDs.</p>
@@ -3689,6 +3780,11 @@ export interface AssetBundleImportJobOverridePermissions {
3689
3780
  * @public
3690
3781
  */
3691
3782
  Dashboards?: AssetBundleImportJobDashboardOverridePermissions[];
3783
+ /**
3784
+ * <p>A list of permissions for the folders that you want to apply overrides to.</p>
3785
+ * @public
3786
+ */
3787
+ Folders?: AssetBundleImportJobFolderOverridePermissions[];
3692
3788
  }
3693
3789
  /**
3694
3790
  * <p>An object that contains a list of tags to be assigned to a list of theme IDs.</p>
@@ -3757,6 +3853,11 @@ export interface AssetBundleImportJobOverrideTags {
3757
3853
  * @public
3758
3854
  */
3759
3855
  Dashboards?: AssetBundleImportJobDashboardOverrideTags[];
3856
+ /**
3857
+ * <p>A list of tag overrides for any <code>Folder</code> resources that are present in the asset bundle that is imported.</p>
3858
+ * @public
3859
+ */
3860
+ Folders?: AssetBundleImportJobFolderOverrideTags[];
3760
3861
  }
3761
3862
  /**
3762
3863
  * <p>An optional parameter that overrides the validation strategy for all analyses and dashboards before the resource is imported.</p>
@@ -7349,206 +7450,6 @@ export interface RowLevelPermissionDataSet {
7349
7450
  */
7350
7451
  Status?: Status;
7351
7452
  }
7352
- /**
7353
- * <p>A set of rules associated with a tag.</p>
7354
- * @public
7355
- */
7356
- export interface RowLevelPermissionTagRule {
7357
- /**
7358
- * <p>The unique key for a tag.</p>
7359
- * @public
7360
- */
7361
- TagKey: string | undefined;
7362
- /**
7363
- * <p>The column name that a tag key is assigned to.</p>
7364
- * @public
7365
- */
7366
- ColumnName: string | undefined;
7367
- /**
7368
- * <p>A string that you want to use to delimit the values when you pass the values at run time. For example, you can delimit the values with a comma.</p>
7369
- * @public
7370
- */
7371
- TagMultiValueDelimiter?: string;
7372
- /**
7373
- * <p>A string that you want to use to filter by all the values in a column in the dataset and don’t want to list the values one by one. For example, you can use an asterisk as your match all value.</p>
7374
- * @public
7375
- */
7376
- MatchAllValue?: string;
7377
- }
7378
- /**
7379
- * <p>The configuration of tags on a dataset to set row-level security. </p>
7380
- * @public
7381
- */
7382
- export interface RowLevelPermissionTagConfiguration {
7383
- /**
7384
- * <p>The status of row-level security tags. If enabled, the status is <code>ENABLED</code>. If disabled, the status is <code>DISABLED</code>.</p>
7385
- * @public
7386
- */
7387
- Status?: Status;
7388
- /**
7389
- * <p>A set of rules associated with row-level security, such as the tag names and columns that they are assigned to.</p>
7390
- * @public
7391
- */
7392
- TagRules: RowLevelPermissionTagRule[] | undefined;
7393
- /**
7394
- * <p>A list of tag configuration rules to apply to a dataset. All tag configurations have the OR condition. Tags within each tile will be joined (AND). At least one rule in this structure must have all tag values assigned to it to apply Row-level security (RLS) to the dataset.</p>
7395
- * @public
7396
- */
7397
- TagRuleConfigurations?: string[][];
7398
- }
7399
- /**
7400
- * @public
7401
- */
7402
- export interface CreateDataSetRequest {
7403
- /**
7404
- * <p>The Amazon Web Services account ID.</p>
7405
- * @public
7406
- */
7407
- AwsAccountId: string | undefined;
7408
- /**
7409
- * <p>An ID for the dataset that you want to create. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>
7410
- * @public
7411
- */
7412
- DataSetId: string | undefined;
7413
- /**
7414
- * <p>The display name for the dataset.</p>
7415
- * @public
7416
- */
7417
- Name: string | undefined;
7418
- /**
7419
- * <p>Declares the physical tables that are available in the underlying data sources.</p>
7420
- * @public
7421
- */
7422
- PhysicalTableMap: Record<string, PhysicalTable> | undefined;
7423
- /**
7424
- * <p>Configures the combination and transformation of the data from the physical tables.</p>
7425
- * @public
7426
- */
7427
- LogicalTableMap?: Record<string, LogicalTable>;
7428
- /**
7429
- * <p>Indicates whether you want to import the data into SPICE.</p>
7430
- * @public
7431
- */
7432
- ImportMode: DataSetImportMode | undefined;
7433
- /**
7434
- * <p>Groupings of columns that work together in certain Amazon QuickSight features. Currently, only geospatial hierarchy is supported.</p>
7435
- * @public
7436
- */
7437
- ColumnGroups?: ColumnGroup[];
7438
- /**
7439
- * <p>The folder that contains fields and nested subfolders for your dataset.</p>
7440
- * @public
7441
- */
7442
- FieldFolders?: Record<string, FieldFolder>;
7443
- /**
7444
- * <p>A list of resource permissions on the dataset.</p>
7445
- * @public
7446
- */
7447
- Permissions?: ResourcePermission[];
7448
- /**
7449
- * <p>The row-level security configuration for the data that you want to create.</p>
7450
- * @public
7451
- */
7452
- RowLevelPermissionDataSet?: RowLevelPermissionDataSet;
7453
- /**
7454
- * <p>The configuration of tags on a dataset to set row-level security. Row-level security tags are currently supported for anonymous embedding only.</p>
7455
- * @public
7456
- */
7457
- RowLevelPermissionTagConfiguration?: RowLevelPermissionTagConfiguration;
7458
- /**
7459
- * <p>A set of one or more definitions of a <code>
7460
- * <a href="https://docs.aws.amazon.com/quicksight/latest/APIReference/API_ColumnLevelPermissionRule.html">ColumnLevelPermissionRule</a>
7461
- * </code>.</p>
7462
- * @public
7463
- */
7464
- ColumnLevelPermissionRules?: ColumnLevelPermissionRule[];
7465
- /**
7466
- * <p>Contains a map of the key-value pairs for the resource tag or tags assigned to the dataset.</p>
7467
- * @public
7468
- */
7469
- Tags?: Tag[];
7470
- /**
7471
- * <p>The usage configuration to apply to child datasets that reference this dataset as a source.</p>
7472
- * @public
7473
- */
7474
- DataSetUsageConfiguration?: DataSetUsageConfiguration;
7475
- /**
7476
- * <p>The parameter declarations of the dataset.</p>
7477
- * @public
7478
- */
7479
- DatasetParameters?: DatasetParameter[];
7480
- /**
7481
- * <p>When you create the dataset, Amazon QuickSight adds the dataset to these folders.</p>
7482
- * @public
7483
- */
7484
- FolderArns?: string[];
7485
- }
7486
- /**
7487
- * @public
7488
- */
7489
- export interface CreateDataSetResponse {
7490
- /**
7491
- * <p>The Amazon Resource Name (ARN) of the dataset.</p>
7492
- * @public
7493
- */
7494
- Arn?: string;
7495
- /**
7496
- * <p>The ID for the dataset that you want to create. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>
7497
- * @public
7498
- */
7499
- DataSetId?: string;
7500
- /**
7501
- * <p>The ARN for the ingestion, which is triggered as a result of dataset creation if the import
7502
- * mode is SPICE.</p>
7503
- * @public
7504
- */
7505
- IngestionArn?: string;
7506
- /**
7507
- * <p>The ID of the ingestion, which is triggered as a result of dataset creation if the import
7508
- * mode is SPICE.</p>
7509
- * @public
7510
- */
7511
- IngestionId?: string;
7512
- /**
7513
- * <p>The Amazon Web Services request ID for this operation.</p>
7514
- * @public
7515
- */
7516
- RequestId?: string;
7517
- /**
7518
- * <p>The HTTP status of the request.</p>
7519
- * @public
7520
- */
7521
- Status?: number;
7522
- }
7523
- /**
7524
- * <p>The combination of user name and password that are used as credentials.</p>
7525
- * @public
7526
- */
7527
- export interface CredentialPair {
7528
- /**
7529
- * <p>User name.</p>
7530
- * @public
7531
- */
7532
- Username: string | undefined;
7533
- /**
7534
- * <p>Password.</p>
7535
- * @public
7536
- */
7537
- Password: string | undefined;
7538
- /**
7539
- * <p>A set of alternate data source parameters that you want to share for these
7540
- * credentials. The credentials are applied in tandem with the data source parameters when
7541
- * you copy a data source by using a create or update request. The API operation compares
7542
- * the <code>DataSourceParameters</code> structure that's in the request with the
7543
- * structures in the <code>AlternateDataSourceParameters</code> allow list. If the
7544
- * structures are an exact match, the request is allowed to use the new data source with
7545
- * the existing credentials. If the <code>AlternateDataSourceParameters</code> list is
7546
- * null, the <code>DataSourceParameters</code> originally used with these
7547
- * <code>Credentials</code> is automatically allowed.</p>
7548
- * @public
7549
- */
7550
- AlternateDataSourceParameters?: DataSourceParameters[];
7551
- }
7552
7453
  /**
7553
7454
  * @internal
7554
7455
  */
@@ -7709,15 +7610,3 @@ export declare const TransformOperationFilterSensitiveLog: (obj: TransformOperat
7709
7610
  * @internal
7710
7611
  */
7711
7612
  export declare const LogicalTableFilterSensitiveLog: (obj: LogicalTable) => any;
7712
- /**
7713
- * @internal
7714
- */
7715
- export declare const RowLevelPermissionTagRuleFilterSensitiveLog: (obj: RowLevelPermissionTagRule) => any;
7716
- /**
7717
- * @internal
7718
- */
7719
- export declare const RowLevelPermissionTagConfigurationFilterSensitiveLog: (obj: RowLevelPermissionTagConfiguration) => any;
7720
- /**
7721
- * @internal
7722
- */
7723
- export declare const CreateDataSetRequestFilterSensitiveLog: (obj: CreateDataSetRequest) => any;