Skip to content

Commit 18135bc

Browse files
author
awstools
committed
feat(client-quicksight): Explicit query for authors and dashboard viewing sharing for embedded users
1 parent 06501cb commit 18135bc

16 files changed

+747
-573
lines changed

clients/client-quicksight/src/commands/CreateAnalysisCommand.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5030,6 +5030,9 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
50305030
* Timezone: "STRING_VALUE",
50315031
* WeekStart: "SUNDAY" || "MONDAY" || "TUESDAY" || "WEDNESDAY" || "THURSDAY" || "FRIDAY" || "SATURDAY",
50325032
* },
5033+
* QueryExecutionOptions: { // QueryExecutionOptions
5034+
* QueryExecutionMode: "AUTO" || "MANUAL",
5035+
* },
50335036
* },
50345037
* ValidationStrategy: { // ValidationStrategy
50355038
* Mode: "STRICT" || "LENIENT", // required

clients/client-quicksight/src/commands/CreateDataSourceCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
CreateDataSourceRequest,
1010
CreateDataSourceRequestFilterSensitiveLog,
1111
CreateDataSourceResponse,
12-
} from "../models/models_2";
12+
} from "../models/models_3";
1313
import { de_CreateDataSourceCommand, se_CreateDataSourceCommand } from "../protocols/Aws_restJson1";
1414
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
1515

clients/client-quicksight/src/commands/CreateTemplateCommand.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5024,6 +5024,9 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
50245024
* Timezone: "STRING_VALUE",
50255025
* WeekStart: "SUNDAY" || "MONDAY" || "TUESDAY" || "WEDNESDAY" || "THURSDAY" || "FRIDAY" || "SATURDAY",
50265026
* },
5027+
* QueryExecutionOptions: { // QueryExecutionOptions
5028+
* QueryExecutionMode: "AUTO" || "MANUAL",
5029+
* },
50275030
* },
50285031
* ValidationStrategy: { // ValidationStrategy
50295032
* Mode: "STRICT" || "LENIENT", // required

clients/client-quicksight/src/commands/DescribeAnalysisDefinitionCommand.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4996,6 +4996,9 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
49964996
* // Timezone: "STRING_VALUE",
49974997
* // WeekStart: "SUNDAY" || "MONDAY" || "TUESDAY" || "WEDNESDAY" || "THURSDAY" || "FRIDAY" || "SATURDAY",
49984998
* // },
4999+
* // QueryExecutionOptions: { // QueryExecutionOptions
5000+
* // QueryExecutionMode: "AUTO" || "MANUAL",
5001+
* // },
49995002
* // },
50005003
* // Status: Number("int"),
50015004
* // RequestId: "STRING_VALUE",

clients/client-quicksight/src/commands/DescribeTemplateDefinitionCommand.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5016,6 +5016,9 @@ export interface DescribeTemplateDefinitionCommandOutput extends DescribeTemplat
50165016
* // Timezone: "STRING_VALUE",
50175017
* // WeekStart: "SUNDAY" || "MONDAY" || "TUESDAY" || "WEDNESDAY" || "THURSDAY" || "FRIDAY" || "SATURDAY",
50185018
* // },
5019+
* // QueryExecutionOptions: { // QueryExecutionOptions
5020+
* // QueryExecutionMode: "AUTO" || "MANUAL",
5021+
* // },
50195022
* // },
50205023
* // Status: Number("int"),
50215024
* // RequestId: "STRING_VALUE",

clients/client-quicksight/src/commands/DescribeVPCConnectionCommand.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ import { Command as $Command } from "@smithy/smithy-client";
55
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
66

77
import { commonParams } from "../endpoint/EndpointParameters";
8-
import { DescribeVPCConnectionRequest, DescribeVPCConnectionResponse } from "../models/models_3";
8+
import { DescribeVPCConnectionRequest } from "../models/models_3";
9+
import { DescribeVPCConnectionResponse } from "../models/models_4";
910
import { de_DescribeVPCConnectionCommand, se_DescribeVPCConnectionCommand } from "../protocols/Aws_restJson1";
1011
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
1112

clients/client-quicksight/src/commands/GenerateEmbedUrlForAnonymousUserCommand.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,17 @@ export interface GenerateEmbedUrlForAnonymousUserCommandOutput
7878
* ExperienceConfiguration: { // AnonymousUserEmbeddingExperienceConfiguration
7979
* Dashboard: { // AnonymousUserDashboardEmbeddingConfiguration
8080
* InitialDashboardId: "STRING_VALUE", // required
81+
* EnabledFeatures: [ // AnonymousUserDashboardEmbeddingConfigurationEnabledFeatures
82+
* "SHARED_VIEW",
83+
* ],
84+
* DisabledFeatures: [ // AnonymousUserDashboardEmbeddingConfigurationDisabledFeatures
85+
* "SHARED_VIEW",
86+
* ],
87+
* FeatureConfigurations: { // AnonymousUserDashboardFeatureConfigurations
88+
* SharedView: { // SharedViewConfigurations
89+
* Enabled: true || false, // required
90+
* },
91+
* },
8192
* },
8293
* DashboardVisual: { // AnonymousUserDashboardVisualEmbeddingConfiguration
8394
* InitialDashboardVisualId: { // DashboardVisualId

clients/client-quicksight/src/commands/GenerateEmbedUrlForRegisteredUserCommand.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,9 @@ export interface GenerateEmbedUrlForRegisteredUserCommandOutput
7575
* StatePersistence: { // StatePersistenceConfigurations
7676
* Enabled: true || false, // required
7777
* },
78+
* SharedView: { // SharedViewConfigurations
79+
* Enabled: true || false, // required
80+
* },
7881
* Bookmarks: { // BookmarksConfigurations
7982
* Enabled: true || false, // required
8083
* },
@@ -86,6 +89,9 @@ export interface GenerateEmbedUrlForRegisteredUserCommandOutput
8689
* StatePersistence: {
8790
* Enabled: true || false, // required
8891
* },
92+
* SharedView: {
93+
* Enabled: true || false, // required
94+
* },
8995
* },
9096
* },
9197
* QSearchBar: { // RegisteredUserQSearchBarEmbeddingConfiguration

clients/client-quicksight/src/commands/UpdateAnalysisCommand.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5016,6 +5016,9 @@ export interface UpdateAnalysisCommandOutput extends UpdateAnalysisResponse, __M
50165016
* Timezone: "STRING_VALUE",
50175017
* WeekStart: "SUNDAY" || "MONDAY" || "TUESDAY" || "WEDNESDAY" || "THURSDAY" || "FRIDAY" || "SATURDAY",
50185018
* },
5019+
* QueryExecutionOptions: { // QueryExecutionOptions
5020+
* QueryExecutionMode: "AUTO" || "MANUAL",
5021+
* },
50195022
* },
50205023
* ValidationStrategy: { // ValidationStrategy
50215024
* Mode: "STRICT" || "LENIENT", // required

clients/client-quicksight/src/commands/UpdateTemplateCommand.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5003,6 +5003,9 @@ export interface UpdateTemplateCommandOutput extends UpdateTemplateResponse, __M
50035003
* Timezone: "STRING_VALUE",
50045004
* WeekStart: "SUNDAY" || "MONDAY" || "TUESDAY" || "WEDNESDAY" || "THURSDAY" || "FRIDAY" || "SATURDAY",
50055005
* },
5006+
* QueryExecutionOptions: { // QueryExecutionOptions
5007+
* QueryExecutionMode: "AUTO" || "MANUAL",
5008+
* },
50065009
* },
50075010
* ValidationStrategy: { // ValidationStrategy
50085011
* Mode: "STRICT" || "LENIENT", // required

0 commit comments

Comments
 (0)