@aws-sdk/client-quicksight 3.473.0 → 3.474.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.
- package/README.md +8 -0
- package/dist-cjs/QuickSight.js +2 -0
- package/dist-cjs/commands/UpdateDashboardLinksCommand.js +51 -0
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/models/models_1.js +7 -4
- package/dist-cjs/models/models_2.js +1 -14
- package/dist-cjs/models/models_3.js +16 -3
- package/dist-cjs/protocols/Aws_restJson1.js +91 -5
- package/dist-es/QuickSight.js +2 -0
- package/dist-es/commands/UpdateDashboardLinksCommand.js +47 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_1.js +3 -0
- package/dist-es/models/models_2.js +0 -10
- package/dist-es/models/models_3.js +11 -1
- package/dist-es/protocols/Aws_restJson1.js +84 -0
- package/dist-types/QuickSight.d.ts +7 -0
- package/dist-types/QuickSightClient.d.ts +3 -2
- package/dist-types/commands/CreateAccountSubscriptionCommand.d.ts +1 -2
- package/dist-types/commands/CreateAnalysisCommand.d.ts +13 -0
- package/dist-types/commands/CreateDashboardCommand.d.ts +16 -0
- package/dist-types/commands/CreateTemplateCommand.d.ts +13 -0
- package/dist-types/commands/DescribeAnalysisDefinitionCommand.d.ts +13 -0
- package/dist-types/commands/DescribeDashboardCommand.d.ts +3 -0
- package/dist-types/commands/DescribeDashboardDefinitionCommand.d.ts +13 -0
- package/dist-types/commands/DescribeTemplateDefinitionCommand.d.ts +13 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/ListTemplateAliasesCommand.d.ts +1 -1
- package/dist-types/commands/ListTemplatesCommand.d.ts +1 -2
- package/dist-types/commands/UpdateAnalysisCommand.d.ts +13 -0
- package/dist-types/commands/UpdateDashboardCommand.d.ts +13 -0
- package/dist-types/commands/UpdateDashboardLinksCommand.d.ts +103 -0
- package/dist-types/commands/UpdateTemplateCommand.d.ts +13 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_1.d.ts +60 -78
- package/dist-types/models/models_2.d.ts +85 -93
- package/dist-types/models/models_3.d.ts +92 -87
- package/dist-types/models/models_4.d.ts +136 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/ts3.4/QuickSight.d.ts +17 -0
- package/dist-types/ts3.4/QuickSightClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListTemplateAliasesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTemplatesCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/UpdateDashboardLinksCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_1.d.ts +17 -16
- package/dist-types/ts3.4/models/models_2.d.ts +19 -29
- package/dist-types/ts3.4/models/models_3.d.ts +34 -26
- package/dist-types/ts3.4/models/models_4.d.ts +33 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
- package/package.json +4 -4
|
@@ -129,6 +129,7 @@ export const se_CreateDashboardCommand = async (input, context) => {
|
|
|
129
129
|
DashboardPublishOptions: (_) => _json(_),
|
|
130
130
|
Definition: (_) => se_DashboardVersionDefinition(_, context),
|
|
131
131
|
FolderArns: (_) => _json(_),
|
|
132
|
+
LinkEntities: (_) => _json(_),
|
|
132
133
|
LinkSharingConfiguration: (_) => _json(_),
|
|
133
134
|
Name: [],
|
|
134
135
|
Parameters: (_) => se__Parameters(_, context),
|
|
@@ -3154,6 +3155,29 @@ export const se_UpdateDashboardCommand = async (input, context) => {
|
|
|
3154
3155
|
body,
|
|
3155
3156
|
});
|
|
3156
3157
|
};
|
|
3158
|
+
export const se_UpdateDashboardLinksCommand = async (input, context) => {
|
|
3159
|
+
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
3160
|
+
const headers = {
|
|
3161
|
+
"content-type": "application/json",
|
|
3162
|
+
};
|
|
3163
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` +
|
|
3164
|
+
"/accounts/{AwsAccountId}/dashboards/{DashboardId}/linked-entities";
|
|
3165
|
+
resolvedPath = __resolvedPath(resolvedPath, input, "AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
3166
|
+
resolvedPath = __resolvedPath(resolvedPath, input, "DashboardId", () => input.DashboardId, "{DashboardId}", false);
|
|
3167
|
+
let body;
|
|
3168
|
+
body = JSON.stringify(take(input, {
|
|
3169
|
+
LinkEntities: (_) => _json(_),
|
|
3170
|
+
}));
|
|
3171
|
+
return new __HttpRequest({
|
|
3172
|
+
protocol,
|
|
3173
|
+
hostname,
|
|
3174
|
+
port,
|
|
3175
|
+
method: "PUT",
|
|
3176
|
+
headers,
|
|
3177
|
+
path: resolvedPath,
|
|
3178
|
+
body,
|
|
3179
|
+
});
|
|
3180
|
+
};
|
|
3157
3181
|
export const se_UpdateDashboardPermissionsCommand = async (input, context) => {
|
|
3158
3182
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
3159
3183
|
const headers = {
|
|
@@ -11752,6 +11776,59 @@ const de_UpdateDashboardCommandError = async (output, context) => {
|
|
|
11752
11776
|
});
|
|
11753
11777
|
}
|
|
11754
11778
|
};
|
|
11779
|
+
export const de_UpdateDashboardLinksCommand = async (output, context) => {
|
|
11780
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
11781
|
+
return de_UpdateDashboardLinksCommandError(output, context);
|
|
11782
|
+
}
|
|
11783
|
+
const contents = map({
|
|
11784
|
+
$metadata: deserializeMetadata(output),
|
|
11785
|
+
});
|
|
11786
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
11787
|
+
const doc = take(data, {
|
|
11788
|
+
DashboardArn: __expectString,
|
|
11789
|
+
LinkEntities: _json,
|
|
11790
|
+
RequestId: __expectString,
|
|
11791
|
+
});
|
|
11792
|
+
Object.assign(contents, doc);
|
|
11793
|
+
map(contents, {
|
|
11794
|
+
Status: [, output.statusCode],
|
|
11795
|
+
});
|
|
11796
|
+
return contents;
|
|
11797
|
+
};
|
|
11798
|
+
const de_UpdateDashboardLinksCommandError = async (output, context) => {
|
|
11799
|
+
const parsedOutput = {
|
|
11800
|
+
...output,
|
|
11801
|
+
body: await parseErrorBody(output.body, context),
|
|
11802
|
+
};
|
|
11803
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
11804
|
+
switch (errorCode) {
|
|
11805
|
+
case "AccessDeniedException":
|
|
11806
|
+
case "com.amazonaws.quicksight#AccessDeniedException":
|
|
11807
|
+
throw await de_AccessDeniedExceptionRes(parsedOutput, context);
|
|
11808
|
+
case "ConflictException":
|
|
11809
|
+
case "com.amazonaws.quicksight#ConflictException":
|
|
11810
|
+
throw await de_ConflictExceptionRes(parsedOutput, context);
|
|
11811
|
+
case "InternalFailureException":
|
|
11812
|
+
case "com.amazonaws.quicksight#InternalFailureException":
|
|
11813
|
+
throw await de_InternalFailureExceptionRes(parsedOutput, context);
|
|
11814
|
+
case "InvalidParameterValueException":
|
|
11815
|
+
case "com.amazonaws.quicksight#InvalidParameterValueException":
|
|
11816
|
+
throw await de_InvalidParameterValueExceptionRes(parsedOutput, context);
|
|
11817
|
+
case "ResourceNotFoundException":
|
|
11818
|
+
case "com.amazonaws.quicksight#ResourceNotFoundException":
|
|
11819
|
+
throw await de_ResourceNotFoundExceptionRes(parsedOutput, context);
|
|
11820
|
+
case "ThrottlingException":
|
|
11821
|
+
case "com.amazonaws.quicksight#ThrottlingException":
|
|
11822
|
+
throw await de_ThrottlingExceptionRes(parsedOutput, context);
|
|
11823
|
+
default:
|
|
11824
|
+
const parsedBody = parsedOutput.body;
|
|
11825
|
+
return throwDefaultError({
|
|
11826
|
+
output,
|
|
11827
|
+
parsedBody,
|
|
11828
|
+
errorCode,
|
|
11829
|
+
});
|
|
11830
|
+
}
|
|
11831
|
+
};
|
|
11755
11832
|
export const de_UpdateDashboardPermissionsCommand = async (output, context) => {
|
|
11756
11833
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
11757
11834
|
return de_UpdateDashboardPermissionsCommandError(output, context);
|
|
@@ -13787,6 +13864,7 @@ const se_ComboChartConfiguration = (input, context) => {
|
|
|
13787
13864
|
ReferenceLines: (_) => se_ReferenceLineList(_, context),
|
|
13788
13865
|
SecondaryYAxisDisplayOptions: (_) => se_AxisDisplayOptions(_, context),
|
|
13789
13866
|
SecondaryYAxisLabelOptions: _json,
|
|
13867
|
+
SingleAxisOptions: _json,
|
|
13790
13868
|
SortConfiguration: (_) => se_ComboChartSortConfiguration(_, context),
|
|
13791
13869
|
Tooltip: (_) => se_TooltipOptions(_, context),
|
|
13792
13870
|
VisualPalette: _json,
|
|
@@ -14670,6 +14748,7 @@ const se_LineChartConfiguration = (input, context) => {
|
|
|
14670
14748
|
SecondaryYAxisDisplayOptions: (_) => se_LineSeriesAxisDisplayOptions(_, context),
|
|
14671
14749
|
SecondaryYAxisLabelOptions: _json,
|
|
14672
14750
|
Series: _json,
|
|
14751
|
+
SingleAxisOptions: _json,
|
|
14673
14752
|
SmallMultiplesOptions: _json,
|
|
14674
14753
|
SortConfiguration: (_) => se_LineChartSortConfiguration(_, context),
|
|
14675
14754
|
Tooltip: (_) => se_TooltipOptions(_, context),
|
|
@@ -15206,6 +15285,7 @@ const se_ScatterPlotConfiguration = (input, context) => {
|
|
|
15206
15285
|
DataLabels: _json,
|
|
15207
15286
|
FieldWells: (_) => se_ScatterPlotFieldWells(_, context),
|
|
15208
15287
|
Legend: _json,
|
|
15288
|
+
SortConfiguration: _json,
|
|
15209
15289
|
Tooltip: (_) => se_TooltipOptions(_, context),
|
|
15210
15290
|
VisualPalette: _json,
|
|
15211
15291
|
XAxisDisplayOptions: (_) => se_AxisDisplayOptions(_, context),
|
|
@@ -16133,6 +16213,7 @@ const de_ComboChartConfiguration = (output, context) => {
|
|
|
16133
16213
|
ReferenceLines: (_) => de_ReferenceLineList(_, context),
|
|
16134
16214
|
SecondaryYAxisDisplayOptions: (_) => de_AxisDisplayOptions(_, context),
|
|
16135
16215
|
SecondaryYAxisLabelOptions: _json,
|
|
16216
|
+
SingleAxisOptions: _json,
|
|
16136
16217
|
SortConfiguration: (_) => de_ComboChartSortConfiguration(_, context),
|
|
16137
16218
|
Tooltip: (_) => de_TooltipOptions(_, context),
|
|
16138
16219
|
VisualPalette: _json,
|
|
@@ -16231,6 +16312,7 @@ const de_Dashboard = (output, context) => {
|
|
|
16231
16312
|
DashboardId: __expectString,
|
|
16232
16313
|
LastPublishedTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
16233
16314
|
LastUpdatedTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
16315
|
+
LinkEntities: _json,
|
|
16234
16316
|
Name: __expectString,
|
|
16235
16317
|
Version: (_) => de_DashboardVersion(_, context),
|
|
16236
16318
|
});
|
|
@@ -17240,6 +17322,7 @@ const de_LineChartConfiguration = (output, context) => {
|
|
|
17240
17322
|
SecondaryYAxisDisplayOptions: (_) => de_LineSeriesAxisDisplayOptions(_, context),
|
|
17241
17323
|
SecondaryYAxisLabelOptions: _json,
|
|
17242
17324
|
Series: _json,
|
|
17325
|
+
SingleAxisOptions: _json,
|
|
17243
17326
|
SmallMultiplesOptions: _json,
|
|
17244
17327
|
SortConfiguration: (_) => de_LineChartSortConfiguration(_, context),
|
|
17245
17328
|
Tooltip: (_) => de_TooltipOptions(_, context),
|
|
@@ -17793,6 +17876,7 @@ const de_ScatterPlotConfiguration = (output, context) => {
|
|
|
17793
17876
|
DataLabels: _json,
|
|
17794
17877
|
FieldWells: (_) => de_ScatterPlotFieldWells(_, context),
|
|
17795
17878
|
Legend: _json,
|
|
17879
|
+
SortConfiguration: _json,
|
|
17796
17880
|
Tooltip: (_) => de_TooltipOptions(_, context),
|
|
17797
17881
|
VisualPalette: _json,
|
|
17798
17882
|
XAxisDisplayOptions: (_) => de_AxisDisplayOptions(_, context),
|
|
@@ -143,6 +143,7 @@ import { UpdateAccountSettingsCommandInput, UpdateAccountSettingsCommandOutput }
|
|
|
143
143
|
import { UpdateAnalysisCommandInput, UpdateAnalysisCommandOutput } from "./commands/UpdateAnalysisCommand";
|
|
144
144
|
import { UpdateAnalysisPermissionsCommandInput, UpdateAnalysisPermissionsCommandOutput } from "./commands/UpdateAnalysisPermissionsCommand";
|
|
145
145
|
import { UpdateDashboardCommandInput, UpdateDashboardCommandOutput } from "./commands/UpdateDashboardCommand";
|
|
146
|
+
import { UpdateDashboardLinksCommandInput, UpdateDashboardLinksCommandOutput } from "./commands/UpdateDashboardLinksCommand";
|
|
146
147
|
import { UpdateDashboardPermissionsCommandInput, UpdateDashboardPermissionsCommandOutput } from "./commands/UpdateDashboardPermissionsCommand";
|
|
147
148
|
import { UpdateDashboardPublishedVersionCommandInput, UpdateDashboardPublishedVersionCommandOutput } from "./commands/UpdateDashboardPublishedVersionCommand";
|
|
148
149
|
import { UpdateDataSetCommandInput, UpdateDataSetCommandOutput } from "./commands/UpdateDataSetCommand";
|
|
@@ -1035,6 +1036,12 @@ export interface QuickSight {
|
|
|
1035
1036
|
updateDashboard(args: UpdateDashboardCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDashboardCommandOutput>;
|
|
1036
1037
|
updateDashboard(args: UpdateDashboardCommandInput, cb: (err: any, data?: UpdateDashboardCommandOutput) => void): void;
|
|
1037
1038
|
updateDashboard(args: UpdateDashboardCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDashboardCommandOutput) => void): void;
|
|
1039
|
+
/**
|
|
1040
|
+
* @see {@link UpdateDashboardLinksCommand}
|
|
1041
|
+
*/
|
|
1042
|
+
updateDashboardLinks(args: UpdateDashboardLinksCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDashboardLinksCommandOutput>;
|
|
1043
|
+
updateDashboardLinks(args: UpdateDashboardLinksCommandInput, cb: (err: any, data?: UpdateDashboardLinksCommandOutput) => void): void;
|
|
1044
|
+
updateDashboardLinks(args: UpdateDashboardLinksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDashboardLinksCommandOutput) => void): void;
|
|
1038
1045
|
/**
|
|
1039
1046
|
* @see {@link UpdateDashboardPermissionsCommand}
|
|
1040
1047
|
*/
|
|
@@ -152,6 +152,7 @@ import { UpdateAccountSettingsCommandInput, UpdateAccountSettingsCommandOutput }
|
|
|
152
152
|
import { UpdateAnalysisCommandInput, UpdateAnalysisCommandOutput } from "./commands/UpdateAnalysisCommand";
|
|
153
153
|
import { UpdateAnalysisPermissionsCommandInput, UpdateAnalysisPermissionsCommandOutput } from "./commands/UpdateAnalysisPermissionsCommand";
|
|
154
154
|
import { UpdateDashboardCommandInput, UpdateDashboardCommandOutput } from "./commands/UpdateDashboardCommand";
|
|
155
|
+
import { UpdateDashboardLinksCommandInput, UpdateDashboardLinksCommandOutput } from "./commands/UpdateDashboardLinksCommand";
|
|
155
156
|
import { UpdateDashboardPermissionsCommandInput, UpdateDashboardPermissionsCommandOutput } from "./commands/UpdateDashboardPermissionsCommand";
|
|
156
157
|
import { UpdateDashboardPublishedVersionCommandInput, UpdateDashboardPublishedVersionCommandOutput } from "./commands/UpdateDashboardPublishedVersionCommand";
|
|
157
158
|
import { UpdateDataSetCommandInput, UpdateDataSetCommandOutput } from "./commands/UpdateDataSetCommand";
|
|
@@ -184,11 +185,11 @@ export { __Client };
|
|
|
184
185
|
/**
|
|
185
186
|
* @public
|
|
186
187
|
*/
|
|
187
|
-
export type ServiceInputTypes = CancelIngestionCommandInput | CreateAccountCustomizationCommandInput | CreateAccountSubscriptionCommandInput | CreateAnalysisCommandInput | CreateDashboardCommandInput | CreateDataSetCommandInput | CreateDataSourceCommandInput | CreateFolderCommandInput | CreateFolderMembershipCommandInput | CreateGroupCommandInput | CreateGroupMembershipCommandInput | CreateIAMPolicyAssignmentCommandInput | CreateIngestionCommandInput | CreateNamespaceCommandInput | CreateRefreshScheduleCommandInput | CreateRoleMembershipCommandInput | CreateTemplateAliasCommandInput | CreateTemplateCommandInput | CreateThemeAliasCommandInput | CreateThemeCommandInput | CreateTopicCommandInput | CreateTopicRefreshScheduleCommandInput | CreateVPCConnectionCommandInput | DeleteAccountCustomizationCommandInput | DeleteAccountSubscriptionCommandInput | DeleteAnalysisCommandInput | DeleteDashboardCommandInput | DeleteDataSetCommandInput | DeleteDataSetRefreshPropertiesCommandInput | DeleteDataSourceCommandInput | DeleteFolderCommandInput | DeleteFolderMembershipCommandInput | DeleteGroupCommandInput | DeleteGroupMembershipCommandInput | DeleteIAMPolicyAssignmentCommandInput | DeleteIdentityPropagationConfigCommandInput | DeleteNamespaceCommandInput | DeleteRefreshScheduleCommandInput | DeleteRoleCustomPermissionCommandInput | DeleteRoleMembershipCommandInput | DeleteTemplateAliasCommandInput | DeleteTemplateCommandInput | DeleteThemeAliasCommandInput | DeleteThemeCommandInput | DeleteTopicCommandInput | DeleteTopicRefreshScheduleCommandInput | DeleteUserByPrincipalIdCommandInput | DeleteUserCommandInput | DeleteVPCConnectionCommandInput | DescribeAccountCustomizationCommandInput | DescribeAccountSettingsCommandInput | DescribeAccountSubscriptionCommandInput | DescribeAnalysisCommandInput | DescribeAnalysisDefinitionCommandInput | DescribeAnalysisPermissionsCommandInput | DescribeAssetBundleExportJobCommandInput | DescribeAssetBundleImportJobCommandInput | DescribeDashboardCommandInput | DescribeDashboardDefinitionCommandInput | DescribeDashboardPermissionsCommandInput | DescribeDashboardSnapshotJobCommandInput | DescribeDashboardSnapshotJobResultCommandInput | DescribeDataSetCommandInput | DescribeDataSetPermissionsCommandInput | DescribeDataSetRefreshPropertiesCommandInput | DescribeDataSourceCommandInput | DescribeDataSourcePermissionsCommandInput | DescribeFolderCommandInput | DescribeFolderPermissionsCommandInput | DescribeFolderResolvedPermissionsCommandInput | DescribeGroupCommandInput | DescribeGroupMembershipCommandInput | DescribeIAMPolicyAssignmentCommandInput | DescribeIngestionCommandInput | DescribeIpRestrictionCommandInput | DescribeNamespaceCommandInput | DescribeRefreshScheduleCommandInput | DescribeRoleCustomPermissionCommandInput | DescribeTemplateAliasCommandInput | DescribeTemplateCommandInput | DescribeTemplateDefinitionCommandInput | DescribeTemplatePermissionsCommandInput | DescribeThemeAliasCommandInput | DescribeThemeCommandInput | DescribeThemePermissionsCommandInput | DescribeTopicCommandInput | DescribeTopicPermissionsCommandInput | DescribeTopicRefreshCommandInput | DescribeTopicRefreshScheduleCommandInput | DescribeUserCommandInput | DescribeVPCConnectionCommandInput | GenerateEmbedUrlForAnonymousUserCommandInput | GenerateEmbedUrlForRegisteredUserCommandInput | GetDashboardEmbedUrlCommandInput | GetSessionEmbedUrlCommandInput | ListAnalysesCommandInput | ListAssetBundleExportJobsCommandInput | ListAssetBundleImportJobsCommandInput | ListDashboardVersionsCommandInput | ListDashboardsCommandInput | ListDataSetsCommandInput | ListDataSourcesCommandInput | ListFolderMembersCommandInput | ListFoldersCommandInput | ListGroupMembershipsCommandInput | ListGroupsCommandInput | ListIAMPolicyAssignmentsCommandInput | ListIAMPolicyAssignmentsForUserCommandInput | ListIdentityPropagationConfigsCommandInput | ListIngestionsCommandInput | ListNamespacesCommandInput | ListRefreshSchedulesCommandInput | ListRoleMembershipsCommandInput | ListTagsForResourceCommandInput | ListTemplateAliasesCommandInput | ListTemplateVersionsCommandInput | ListTemplatesCommandInput | ListThemeAliasesCommandInput | ListThemeVersionsCommandInput | ListThemesCommandInput | ListTopicRefreshSchedulesCommandInput | ListTopicsCommandInput | ListUserGroupsCommandInput | ListUsersCommandInput | ListVPCConnectionsCommandInput | PutDataSetRefreshPropertiesCommandInput | RegisterUserCommandInput | RestoreAnalysisCommandInput | SearchAnalysesCommandInput | SearchDashboardsCommandInput | SearchDataSetsCommandInput | SearchDataSourcesCommandInput | SearchFoldersCommandInput | SearchGroupsCommandInput | StartAssetBundleExportJobCommandInput | StartAssetBundleImportJobCommandInput | StartDashboardSnapshotJobCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAccountCustomizationCommandInput | UpdateAccountSettingsCommandInput | UpdateAnalysisCommandInput | UpdateAnalysisPermissionsCommandInput | UpdateDashboardCommandInput | UpdateDashboardPermissionsCommandInput | UpdateDashboardPublishedVersionCommandInput | UpdateDataSetCommandInput | UpdateDataSetPermissionsCommandInput | UpdateDataSourceCommandInput | UpdateDataSourcePermissionsCommandInput | UpdateFolderCommandInput | UpdateFolderPermissionsCommandInput | UpdateGroupCommandInput | UpdateIAMPolicyAssignmentCommandInput | UpdateIdentityPropagationConfigCommandInput | UpdateIpRestrictionCommandInput | UpdatePublicSharingSettingsCommandInput | UpdateRefreshScheduleCommandInput | UpdateRoleCustomPermissionCommandInput | UpdateTemplateAliasCommandInput | UpdateTemplateCommandInput | UpdateTemplatePermissionsCommandInput | UpdateThemeAliasCommandInput | UpdateThemeCommandInput | UpdateThemePermissionsCommandInput | UpdateTopicCommandInput | UpdateTopicPermissionsCommandInput | UpdateTopicRefreshScheduleCommandInput | UpdateUserCommandInput | UpdateVPCConnectionCommandInput;
|
|
188
|
+
export type ServiceInputTypes = CancelIngestionCommandInput | CreateAccountCustomizationCommandInput | CreateAccountSubscriptionCommandInput | CreateAnalysisCommandInput | CreateDashboardCommandInput | CreateDataSetCommandInput | CreateDataSourceCommandInput | CreateFolderCommandInput | CreateFolderMembershipCommandInput | CreateGroupCommandInput | CreateGroupMembershipCommandInput | CreateIAMPolicyAssignmentCommandInput | CreateIngestionCommandInput | CreateNamespaceCommandInput | CreateRefreshScheduleCommandInput | CreateRoleMembershipCommandInput | CreateTemplateAliasCommandInput | CreateTemplateCommandInput | CreateThemeAliasCommandInput | CreateThemeCommandInput | CreateTopicCommandInput | CreateTopicRefreshScheduleCommandInput | CreateVPCConnectionCommandInput | DeleteAccountCustomizationCommandInput | DeleteAccountSubscriptionCommandInput | DeleteAnalysisCommandInput | DeleteDashboardCommandInput | DeleteDataSetCommandInput | DeleteDataSetRefreshPropertiesCommandInput | DeleteDataSourceCommandInput | DeleteFolderCommandInput | DeleteFolderMembershipCommandInput | DeleteGroupCommandInput | DeleteGroupMembershipCommandInput | DeleteIAMPolicyAssignmentCommandInput | DeleteIdentityPropagationConfigCommandInput | DeleteNamespaceCommandInput | DeleteRefreshScheduleCommandInput | DeleteRoleCustomPermissionCommandInput | DeleteRoleMembershipCommandInput | DeleteTemplateAliasCommandInput | DeleteTemplateCommandInput | DeleteThemeAliasCommandInput | DeleteThemeCommandInput | DeleteTopicCommandInput | DeleteTopicRefreshScheduleCommandInput | DeleteUserByPrincipalIdCommandInput | DeleteUserCommandInput | DeleteVPCConnectionCommandInput | DescribeAccountCustomizationCommandInput | DescribeAccountSettingsCommandInput | DescribeAccountSubscriptionCommandInput | DescribeAnalysisCommandInput | DescribeAnalysisDefinitionCommandInput | DescribeAnalysisPermissionsCommandInput | DescribeAssetBundleExportJobCommandInput | DescribeAssetBundleImportJobCommandInput | DescribeDashboardCommandInput | DescribeDashboardDefinitionCommandInput | DescribeDashboardPermissionsCommandInput | DescribeDashboardSnapshotJobCommandInput | DescribeDashboardSnapshotJobResultCommandInput | DescribeDataSetCommandInput | DescribeDataSetPermissionsCommandInput | DescribeDataSetRefreshPropertiesCommandInput | DescribeDataSourceCommandInput | DescribeDataSourcePermissionsCommandInput | DescribeFolderCommandInput | DescribeFolderPermissionsCommandInput | DescribeFolderResolvedPermissionsCommandInput | DescribeGroupCommandInput | DescribeGroupMembershipCommandInput | DescribeIAMPolicyAssignmentCommandInput | DescribeIngestionCommandInput | DescribeIpRestrictionCommandInput | DescribeNamespaceCommandInput | DescribeRefreshScheduleCommandInput | DescribeRoleCustomPermissionCommandInput | DescribeTemplateAliasCommandInput | DescribeTemplateCommandInput | DescribeTemplateDefinitionCommandInput | DescribeTemplatePermissionsCommandInput | DescribeThemeAliasCommandInput | DescribeThemeCommandInput | DescribeThemePermissionsCommandInput | DescribeTopicCommandInput | DescribeTopicPermissionsCommandInput | DescribeTopicRefreshCommandInput | DescribeTopicRefreshScheduleCommandInput | DescribeUserCommandInput | DescribeVPCConnectionCommandInput | GenerateEmbedUrlForAnonymousUserCommandInput | GenerateEmbedUrlForRegisteredUserCommandInput | GetDashboardEmbedUrlCommandInput | GetSessionEmbedUrlCommandInput | ListAnalysesCommandInput | ListAssetBundleExportJobsCommandInput | ListAssetBundleImportJobsCommandInput | ListDashboardVersionsCommandInput | ListDashboardsCommandInput | ListDataSetsCommandInput | ListDataSourcesCommandInput | ListFolderMembersCommandInput | ListFoldersCommandInput | ListGroupMembershipsCommandInput | ListGroupsCommandInput | ListIAMPolicyAssignmentsCommandInput | ListIAMPolicyAssignmentsForUserCommandInput | ListIdentityPropagationConfigsCommandInput | ListIngestionsCommandInput | ListNamespacesCommandInput | ListRefreshSchedulesCommandInput | ListRoleMembershipsCommandInput | ListTagsForResourceCommandInput | ListTemplateAliasesCommandInput | ListTemplateVersionsCommandInput | ListTemplatesCommandInput | ListThemeAliasesCommandInput | ListThemeVersionsCommandInput | ListThemesCommandInput | ListTopicRefreshSchedulesCommandInput | ListTopicsCommandInput | ListUserGroupsCommandInput | ListUsersCommandInput | ListVPCConnectionsCommandInput | PutDataSetRefreshPropertiesCommandInput | RegisterUserCommandInput | RestoreAnalysisCommandInput | SearchAnalysesCommandInput | SearchDashboardsCommandInput | SearchDataSetsCommandInput | SearchDataSourcesCommandInput | SearchFoldersCommandInput | SearchGroupsCommandInput | StartAssetBundleExportJobCommandInput | StartAssetBundleImportJobCommandInput | StartDashboardSnapshotJobCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAccountCustomizationCommandInput | UpdateAccountSettingsCommandInput | UpdateAnalysisCommandInput | UpdateAnalysisPermissionsCommandInput | UpdateDashboardCommandInput | UpdateDashboardLinksCommandInput | UpdateDashboardPermissionsCommandInput | UpdateDashboardPublishedVersionCommandInput | UpdateDataSetCommandInput | UpdateDataSetPermissionsCommandInput | UpdateDataSourceCommandInput | UpdateDataSourcePermissionsCommandInput | UpdateFolderCommandInput | UpdateFolderPermissionsCommandInput | UpdateGroupCommandInput | UpdateIAMPolicyAssignmentCommandInput | UpdateIdentityPropagationConfigCommandInput | UpdateIpRestrictionCommandInput | UpdatePublicSharingSettingsCommandInput | UpdateRefreshScheduleCommandInput | UpdateRoleCustomPermissionCommandInput | UpdateTemplateAliasCommandInput | UpdateTemplateCommandInput | UpdateTemplatePermissionsCommandInput | UpdateThemeAliasCommandInput | UpdateThemeCommandInput | UpdateThemePermissionsCommandInput | UpdateTopicCommandInput | UpdateTopicPermissionsCommandInput | UpdateTopicRefreshScheduleCommandInput | UpdateUserCommandInput | UpdateVPCConnectionCommandInput;
|
|
188
189
|
/**
|
|
189
190
|
* @public
|
|
190
191
|
*/
|
|
191
|
-
export type ServiceOutputTypes = CancelIngestionCommandOutput | CreateAccountCustomizationCommandOutput | CreateAccountSubscriptionCommandOutput | CreateAnalysisCommandOutput | CreateDashboardCommandOutput | CreateDataSetCommandOutput | CreateDataSourceCommandOutput | CreateFolderCommandOutput | CreateFolderMembershipCommandOutput | CreateGroupCommandOutput | CreateGroupMembershipCommandOutput | CreateIAMPolicyAssignmentCommandOutput | CreateIngestionCommandOutput | CreateNamespaceCommandOutput | CreateRefreshScheduleCommandOutput | CreateRoleMembershipCommandOutput | CreateTemplateAliasCommandOutput | CreateTemplateCommandOutput | CreateThemeAliasCommandOutput | CreateThemeCommandOutput | CreateTopicCommandOutput | CreateTopicRefreshScheduleCommandOutput | CreateVPCConnectionCommandOutput | DeleteAccountCustomizationCommandOutput | DeleteAccountSubscriptionCommandOutput | DeleteAnalysisCommandOutput | DeleteDashboardCommandOutput | DeleteDataSetCommandOutput | DeleteDataSetRefreshPropertiesCommandOutput | DeleteDataSourceCommandOutput | DeleteFolderCommandOutput | DeleteFolderMembershipCommandOutput | DeleteGroupCommandOutput | DeleteGroupMembershipCommandOutput | DeleteIAMPolicyAssignmentCommandOutput | DeleteIdentityPropagationConfigCommandOutput | DeleteNamespaceCommandOutput | DeleteRefreshScheduleCommandOutput | DeleteRoleCustomPermissionCommandOutput | DeleteRoleMembershipCommandOutput | DeleteTemplateAliasCommandOutput | DeleteTemplateCommandOutput | DeleteThemeAliasCommandOutput | DeleteThemeCommandOutput | DeleteTopicCommandOutput | DeleteTopicRefreshScheduleCommandOutput | DeleteUserByPrincipalIdCommandOutput | DeleteUserCommandOutput | DeleteVPCConnectionCommandOutput | DescribeAccountCustomizationCommandOutput | DescribeAccountSettingsCommandOutput | DescribeAccountSubscriptionCommandOutput | DescribeAnalysisCommandOutput | DescribeAnalysisDefinitionCommandOutput | DescribeAnalysisPermissionsCommandOutput | DescribeAssetBundleExportJobCommandOutput | DescribeAssetBundleImportJobCommandOutput | DescribeDashboardCommandOutput | DescribeDashboardDefinitionCommandOutput | DescribeDashboardPermissionsCommandOutput | DescribeDashboardSnapshotJobCommandOutput | DescribeDashboardSnapshotJobResultCommandOutput | DescribeDataSetCommandOutput | DescribeDataSetPermissionsCommandOutput | DescribeDataSetRefreshPropertiesCommandOutput | DescribeDataSourceCommandOutput | DescribeDataSourcePermissionsCommandOutput | DescribeFolderCommandOutput | DescribeFolderPermissionsCommandOutput | DescribeFolderResolvedPermissionsCommandOutput | DescribeGroupCommandOutput | DescribeGroupMembershipCommandOutput | DescribeIAMPolicyAssignmentCommandOutput | DescribeIngestionCommandOutput | DescribeIpRestrictionCommandOutput | DescribeNamespaceCommandOutput | DescribeRefreshScheduleCommandOutput | DescribeRoleCustomPermissionCommandOutput | DescribeTemplateAliasCommandOutput | DescribeTemplateCommandOutput | DescribeTemplateDefinitionCommandOutput | DescribeTemplatePermissionsCommandOutput | DescribeThemeAliasCommandOutput | DescribeThemeCommandOutput | DescribeThemePermissionsCommandOutput | DescribeTopicCommandOutput | DescribeTopicPermissionsCommandOutput | DescribeTopicRefreshCommandOutput | DescribeTopicRefreshScheduleCommandOutput | DescribeUserCommandOutput | DescribeVPCConnectionCommandOutput | GenerateEmbedUrlForAnonymousUserCommandOutput | GenerateEmbedUrlForRegisteredUserCommandOutput | GetDashboardEmbedUrlCommandOutput | GetSessionEmbedUrlCommandOutput | ListAnalysesCommandOutput | ListAssetBundleExportJobsCommandOutput | ListAssetBundleImportJobsCommandOutput | ListDashboardVersionsCommandOutput | ListDashboardsCommandOutput | ListDataSetsCommandOutput | ListDataSourcesCommandOutput | ListFolderMembersCommandOutput | ListFoldersCommandOutput | ListGroupMembershipsCommandOutput | ListGroupsCommandOutput | ListIAMPolicyAssignmentsCommandOutput | ListIAMPolicyAssignmentsForUserCommandOutput | ListIdentityPropagationConfigsCommandOutput | ListIngestionsCommandOutput | ListNamespacesCommandOutput | ListRefreshSchedulesCommandOutput | ListRoleMembershipsCommandOutput | ListTagsForResourceCommandOutput | ListTemplateAliasesCommandOutput | ListTemplateVersionsCommandOutput | ListTemplatesCommandOutput | ListThemeAliasesCommandOutput | ListThemeVersionsCommandOutput | ListThemesCommandOutput | ListTopicRefreshSchedulesCommandOutput | ListTopicsCommandOutput | ListUserGroupsCommandOutput | ListUsersCommandOutput | ListVPCConnectionsCommandOutput | PutDataSetRefreshPropertiesCommandOutput | RegisterUserCommandOutput | RestoreAnalysisCommandOutput | SearchAnalysesCommandOutput | SearchDashboardsCommandOutput | SearchDataSetsCommandOutput | SearchDataSourcesCommandOutput | SearchFoldersCommandOutput | SearchGroupsCommandOutput | StartAssetBundleExportJobCommandOutput | StartAssetBundleImportJobCommandOutput | StartDashboardSnapshotJobCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAccountCustomizationCommandOutput | UpdateAccountSettingsCommandOutput | UpdateAnalysisCommandOutput | UpdateAnalysisPermissionsCommandOutput | UpdateDashboardCommandOutput | UpdateDashboardPermissionsCommandOutput | UpdateDashboardPublishedVersionCommandOutput | UpdateDataSetCommandOutput | UpdateDataSetPermissionsCommandOutput | UpdateDataSourceCommandOutput | UpdateDataSourcePermissionsCommandOutput | UpdateFolderCommandOutput | UpdateFolderPermissionsCommandOutput | UpdateGroupCommandOutput | UpdateIAMPolicyAssignmentCommandOutput | UpdateIdentityPropagationConfigCommandOutput | UpdateIpRestrictionCommandOutput | UpdatePublicSharingSettingsCommandOutput | UpdateRefreshScheduleCommandOutput | UpdateRoleCustomPermissionCommandOutput | UpdateTemplateAliasCommandOutput | UpdateTemplateCommandOutput | UpdateTemplatePermissionsCommandOutput | UpdateThemeAliasCommandOutput | UpdateThemeCommandOutput | UpdateThemePermissionsCommandOutput | UpdateTopicCommandOutput | UpdateTopicPermissionsCommandOutput | UpdateTopicRefreshScheduleCommandOutput | UpdateUserCommandOutput | UpdateVPCConnectionCommandOutput;
|
|
192
|
+
export type ServiceOutputTypes = CancelIngestionCommandOutput | CreateAccountCustomizationCommandOutput | CreateAccountSubscriptionCommandOutput | CreateAnalysisCommandOutput | CreateDashboardCommandOutput | CreateDataSetCommandOutput | CreateDataSourceCommandOutput | CreateFolderCommandOutput | CreateFolderMembershipCommandOutput | CreateGroupCommandOutput | CreateGroupMembershipCommandOutput | CreateIAMPolicyAssignmentCommandOutput | CreateIngestionCommandOutput | CreateNamespaceCommandOutput | CreateRefreshScheduleCommandOutput | CreateRoleMembershipCommandOutput | CreateTemplateAliasCommandOutput | CreateTemplateCommandOutput | CreateThemeAliasCommandOutput | CreateThemeCommandOutput | CreateTopicCommandOutput | CreateTopicRefreshScheduleCommandOutput | CreateVPCConnectionCommandOutput | DeleteAccountCustomizationCommandOutput | DeleteAccountSubscriptionCommandOutput | DeleteAnalysisCommandOutput | DeleteDashboardCommandOutput | DeleteDataSetCommandOutput | DeleteDataSetRefreshPropertiesCommandOutput | DeleteDataSourceCommandOutput | DeleteFolderCommandOutput | DeleteFolderMembershipCommandOutput | DeleteGroupCommandOutput | DeleteGroupMembershipCommandOutput | DeleteIAMPolicyAssignmentCommandOutput | DeleteIdentityPropagationConfigCommandOutput | DeleteNamespaceCommandOutput | DeleteRefreshScheduleCommandOutput | DeleteRoleCustomPermissionCommandOutput | DeleteRoleMembershipCommandOutput | DeleteTemplateAliasCommandOutput | DeleteTemplateCommandOutput | DeleteThemeAliasCommandOutput | DeleteThemeCommandOutput | DeleteTopicCommandOutput | DeleteTopicRefreshScheduleCommandOutput | DeleteUserByPrincipalIdCommandOutput | DeleteUserCommandOutput | DeleteVPCConnectionCommandOutput | DescribeAccountCustomizationCommandOutput | DescribeAccountSettingsCommandOutput | DescribeAccountSubscriptionCommandOutput | DescribeAnalysisCommandOutput | DescribeAnalysisDefinitionCommandOutput | DescribeAnalysisPermissionsCommandOutput | DescribeAssetBundleExportJobCommandOutput | DescribeAssetBundleImportJobCommandOutput | DescribeDashboardCommandOutput | DescribeDashboardDefinitionCommandOutput | DescribeDashboardPermissionsCommandOutput | DescribeDashboardSnapshotJobCommandOutput | DescribeDashboardSnapshotJobResultCommandOutput | DescribeDataSetCommandOutput | DescribeDataSetPermissionsCommandOutput | DescribeDataSetRefreshPropertiesCommandOutput | DescribeDataSourceCommandOutput | DescribeDataSourcePermissionsCommandOutput | DescribeFolderCommandOutput | DescribeFolderPermissionsCommandOutput | DescribeFolderResolvedPermissionsCommandOutput | DescribeGroupCommandOutput | DescribeGroupMembershipCommandOutput | DescribeIAMPolicyAssignmentCommandOutput | DescribeIngestionCommandOutput | DescribeIpRestrictionCommandOutput | DescribeNamespaceCommandOutput | DescribeRefreshScheduleCommandOutput | DescribeRoleCustomPermissionCommandOutput | DescribeTemplateAliasCommandOutput | DescribeTemplateCommandOutput | DescribeTemplateDefinitionCommandOutput | DescribeTemplatePermissionsCommandOutput | DescribeThemeAliasCommandOutput | DescribeThemeCommandOutput | DescribeThemePermissionsCommandOutput | DescribeTopicCommandOutput | DescribeTopicPermissionsCommandOutput | DescribeTopicRefreshCommandOutput | DescribeTopicRefreshScheduleCommandOutput | DescribeUserCommandOutput | DescribeVPCConnectionCommandOutput | GenerateEmbedUrlForAnonymousUserCommandOutput | GenerateEmbedUrlForRegisteredUserCommandOutput | GetDashboardEmbedUrlCommandOutput | GetSessionEmbedUrlCommandOutput | ListAnalysesCommandOutput | ListAssetBundleExportJobsCommandOutput | ListAssetBundleImportJobsCommandOutput | ListDashboardVersionsCommandOutput | ListDashboardsCommandOutput | ListDataSetsCommandOutput | ListDataSourcesCommandOutput | ListFolderMembersCommandOutput | ListFoldersCommandOutput | ListGroupMembershipsCommandOutput | ListGroupsCommandOutput | ListIAMPolicyAssignmentsCommandOutput | ListIAMPolicyAssignmentsForUserCommandOutput | ListIdentityPropagationConfigsCommandOutput | ListIngestionsCommandOutput | ListNamespacesCommandOutput | ListRefreshSchedulesCommandOutput | ListRoleMembershipsCommandOutput | ListTagsForResourceCommandOutput | ListTemplateAliasesCommandOutput | ListTemplateVersionsCommandOutput | ListTemplatesCommandOutput | ListThemeAliasesCommandOutput | ListThemeVersionsCommandOutput | ListThemesCommandOutput | ListTopicRefreshSchedulesCommandOutput | ListTopicsCommandOutput | ListUserGroupsCommandOutput | ListUsersCommandOutput | ListVPCConnectionsCommandOutput | PutDataSetRefreshPropertiesCommandOutput | RegisterUserCommandOutput | RestoreAnalysisCommandOutput | SearchAnalysesCommandOutput | SearchDashboardsCommandOutput | SearchDataSetsCommandOutput | SearchDataSourcesCommandOutput | SearchFoldersCommandOutput | SearchGroupsCommandOutput | StartAssetBundleExportJobCommandOutput | StartAssetBundleImportJobCommandOutput | StartDashboardSnapshotJobCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAccountCustomizationCommandOutput | UpdateAccountSettingsCommandOutput | UpdateAnalysisCommandOutput | UpdateAnalysisPermissionsCommandOutput | UpdateDashboardCommandOutput | UpdateDashboardLinksCommandOutput | UpdateDashboardPermissionsCommandOutput | UpdateDashboardPublishedVersionCommandOutput | UpdateDataSetCommandOutput | UpdateDataSetPermissionsCommandOutput | UpdateDataSourceCommandOutput | UpdateDataSourcePermissionsCommandOutput | UpdateFolderCommandOutput | UpdateFolderPermissionsCommandOutput | UpdateGroupCommandOutput | UpdateIAMPolicyAssignmentCommandOutput | UpdateIdentityPropagationConfigCommandOutput | UpdateIpRestrictionCommandOutput | UpdatePublicSharingSettingsCommandOutput | UpdateRefreshScheduleCommandOutput | UpdateRoleCustomPermissionCommandOutput | UpdateTemplateAliasCommandOutput | UpdateTemplateCommandOutput | UpdateTemplatePermissionsCommandOutput | UpdateThemeAliasCommandOutput | UpdateThemeCommandOutput | UpdateThemePermissionsCommandOutput | UpdateTopicCommandOutput | UpdateTopicPermissionsCommandOutput | UpdateTopicRefreshScheduleCommandOutput | UpdateUserCommandOutput | UpdateVPCConnectionCommandOutput;
|
|
192
193
|
/**
|
|
193
194
|
* @public
|
|
194
195
|
*/
|
|
@@ -25,8 +25,7 @@ export interface CreateAccountSubscriptionCommandOutput extends CreateAccountSub
|
|
|
25
25
|
* @public
|
|
26
26
|
* <p>Creates an Amazon QuickSight account, or subscribes to Amazon QuickSight Q.</p>
|
|
27
27
|
* <p>The Amazon Web Services Region for the account is derived from what is configured in the
|
|
28
|
-
* CLI or SDK
|
|
29
|
-
* Pacific (Singapore) Region. </p>
|
|
28
|
+
* CLI or SDK.</p>
|
|
30
29
|
* <p>Before you use this operation, make sure that you can connect to an existing Amazon Web Services account. If you don't have an Amazon Web Services account, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/setting-up-aws-sign-up.html">Sign
|
|
31
30
|
* up for Amazon Web Services</a> in the <i>Amazon QuickSight User
|
|
32
31
|
* Guide</i>. The person who signs up for Amazon QuickSight needs to have the
|
|
@@ -3083,6 +3083,11 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
|
|
|
3083
3083
|
* ],
|
|
3084
3084
|
* },
|
|
3085
3085
|
* SecondaryYAxisLabelOptions: "<ChartAxisLabelOptions>",
|
|
3086
|
+
* SingleAxisOptions: { // SingleAxisOptions
|
|
3087
|
+
* YAxisOptions: { // YAxisOptions
|
|
3088
|
+
* YAxis: "PRIMARY_Y_AXIS", // required
|
|
3089
|
+
* },
|
|
3090
|
+
* },
|
|
3086
3091
|
* DefaultSeriesSettings: { // LineChartDefaultSeriesSettings
|
|
3087
3092
|
* AxisBinding: "PRIMARY_YAXIS" || "SECONDARY_YAXIS",
|
|
3088
3093
|
* LineStyleSettings: { // LineChartLineStyleSettings
|
|
@@ -3621,6 +3626,9 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
|
|
|
3621
3626
|
* Label: "<DimensionFieldList>",
|
|
3622
3627
|
* },
|
|
3623
3628
|
* },
|
|
3629
|
+
* SortConfiguration: { // ScatterPlotSortConfiguration
|
|
3630
|
+
* ScatterPlotLimitConfiguration: "<ItemsLimitConfiguration>",
|
|
3631
|
+
* },
|
|
3624
3632
|
* XAxisLabelOptions: "<ChartAxisLabelOptions>",
|
|
3625
3633
|
* XAxisDisplayOptions: "<AxisDisplayOptions>",
|
|
3626
3634
|
* YAxisLabelOptions: "<ChartAxisLabelOptions>",
|
|
@@ -3659,6 +3667,11 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
|
|
|
3659
3667
|
* PrimaryYAxisLabelOptions: "<ChartAxisLabelOptions>",
|
|
3660
3668
|
* SecondaryYAxisDisplayOptions: "<AxisDisplayOptions>",
|
|
3661
3669
|
* SecondaryYAxisLabelOptions: "<ChartAxisLabelOptions>",
|
|
3670
|
+
* SingleAxisOptions: {
|
|
3671
|
+
* YAxisOptions: {
|
|
3672
|
+
* YAxis: "PRIMARY_Y_AXIS", // required
|
|
3673
|
+
* },
|
|
3674
|
+
* },
|
|
3662
3675
|
* ColorLabelOptions: "<ChartAxisLabelOptions>",
|
|
3663
3676
|
* Legend: "<LegendOptions>",
|
|
3664
3677
|
* BarDataLabels: "<DataLabelOptions>",
|
|
@@ -3129,6 +3129,11 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
|
|
|
3129
3129
|
* ],
|
|
3130
3130
|
* },
|
|
3131
3131
|
* SecondaryYAxisLabelOptions: "<ChartAxisLabelOptions>",
|
|
3132
|
+
* SingleAxisOptions: { // SingleAxisOptions
|
|
3133
|
+
* YAxisOptions: { // YAxisOptions
|
|
3134
|
+
* YAxis: "PRIMARY_Y_AXIS", // required
|
|
3135
|
+
* },
|
|
3136
|
+
* },
|
|
3132
3137
|
* DefaultSeriesSettings: { // LineChartDefaultSeriesSettings
|
|
3133
3138
|
* AxisBinding: "PRIMARY_YAXIS" || "SECONDARY_YAXIS",
|
|
3134
3139
|
* LineStyleSettings: { // LineChartLineStyleSettings
|
|
@@ -3667,6 +3672,9 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
|
|
|
3667
3672
|
* Label: "<DimensionFieldList>",
|
|
3668
3673
|
* },
|
|
3669
3674
|
* },
|
|
3675
|
+
* SortConfiguration: { // ScatterPlotSortConfiguration
|
|
3676
|
+
* ScatterPlotLimitConfiguration: "<ItemsLimitConfiguration>",
|
|
3677
|
+
* },
|
|
3670
3678
|
* XAxisLabelOptions: "<ChartAxisLabelOptions>",
|
|
3671
3679
|
* XAxisDisplayOptions: "<AxisDisplayOptions>",
|
|
3672
3680
|
* YAxisLabelOptions: "<ChartAxisLabelOptions>",
|
|
@@ -3705,6 +3713,11 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
|
|
|
3705
3713
|
* PrimaryYAxisLabelOptions: "<ChartAxisLabelOptions>",
|
|
3706
3714
|
* SecondaryYAxisDisplayOptions: "<AxisDisplayOptions>",
|
|
3707
3715
|
* SecondaryYAxisLabelOptions: "<ChartAxisLabelOptions>",
|
|
3716
|
+
* SingleAxisOptions: {
|
|
3717
|
+
* YAxisOptions: {
|
|
3718
|
+
* YAxis: "PRIMARY_Y_AXIS", // required
|
|
3719
|
+
* },
|
|
3720
|
+
* },
|
|
3708
3721
|
* ColorLabelOptions: "<ChartAxisLabelOptions>",
|
|
3709
3722
|
* Legend: "<LegendOptions>",
|
|
3710
3723
|
* BarDataLabels: "<DataLabelOptions>",
|
|
@@ -4623,6 +4636,9 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
|
|
|
4623
4636
|
* },
|
|
4624
4637
|
* ],
|
|
4625
4638
|
* },
|
|
4639
|
+
* LinkEntities: [ // LinkEntityArnList
|
|
4640
|
+
* "STRING_VALUE",
|
|
4641
|
+
* ],
|
|
4626
4642
|
* };
|
|
4627
4643
|
* const command = new CreateDashboardCommand(input);
|
|
4628
4644
|
* const response = await client.send(command);
|
|
@@ -3077,6 +3077,11 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
|
|
|
3077
3077
|
* ],
|
|
3078
3078
|
* },
|
|
3079
3079
|
* SecondaryYAxisLabelOptions: "<ChartAxisLabelOptions>",
|
|
3080
|
+
* SingleAxisOptions: { // SingleAxisOptions
|
|
3081
|
+
* YAxisOptions: { // YAxisOptions
|
|
3082
|
+
* YAxis: "PRIMARY_Y_AXIS", // required
|
|
3083
|
+
* },
|
|
3084
|
+
* },
|
|
3080
3085
|
* DefaultSeriesSettings: { // LineChartDefaultSeriesSettings
|
|
3081
3086
|
* AxisBinding: "PRIMARY_YAXIS" || "SECONDARY_YAXIS",
|
|
3082
3087
|
* LineStyleSettings: { // LineChartLineStyleSettings
|
|
@@ -3615,6 +3620,9 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
|
|
|
3615
3620
|
* Label: "<DimensionFieldList>",
|
|
3616
3621
|
* },
|
|
3617
3622
|
* },
|
|
3623
|
+
* SortConfiguration: { // ScatterPlotSortConfiguration
|
|
3624
|
+
* ScatterPlotLimitConfiguration: "<ItemsLimitConfiguration>",
|
|
3625
|
+
* },
|
|
3618
3626
|
* XAxisLabelOptions: "<ChartAxisLabelOptions>",
|
|
3619
3627
|
* XAxisDisplayOptions: "<AxisDisplayOptions>",
|
|
3620
3628
|
* YAxisLabelOptions: "<ChartAxisLabelOptions>",
|
|
@@ -3653,6 +3661,11 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
|
|
|
3653
3661
|
* PrimaryYAxisLabelOptions: "<ChartAxisLabelOptions>",
|
|
3654
3662
|
* SecondaryYAxisDisplayOptions: "<AxisDisplayOptions>",
|
|
3655
3663
|
* SecondaryYAxisLabelOptions: "<ChartAxisLabelOptions>",
|
|
3664
|
+
* SingleAxisOptions: {
|
|
3665
|
+
* YAxisOptions: {
|
|
3666
|
+
* YAxis: "PRIMARY_Y_AXIS", // required
|
|
3667
|
+
* },
|
|
3668
|
+
* },
|
|
3656
3669
|
* ColorLabelOptions: "<ChartAxisLabelOptions>",
|
|
3657
3670
|
* Legend: "<LegendOptions>",
|
|
3658
3671
|
* BarDataLabels: "<DataLabelOptions>",
|
|
@@ -3049,6 +3049,11 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
|
|
|
3049
3049
|
* // ],
|
|
3050
3050
|
* // },
|
|
3051
3051
|
* // SecondaryYAxisLabelOptions: "<ChartAxisLabelOptions>",
|
|
3052
|
+
* // SingleAxisOptions: { // SingleAxisOptions
|
|
3053
|
+
* // YAxisOptions: { // YAxisOptions
|
|
3054
|
+
* // YAxis: "PRIMARY_Y_AXIS", // required
|
|
3055
|
+
* // },
|
|
3056
|
+
* // },
|
|
3052
3057
|
* // DefaultSeriesSettings: { // LineChartDefaultSeriesSettings
|
|
3053
3058
|
* // AxisBinding: "PRIMARY_YAXIS" || "SECONDARY_YAXIS",
|
|
3054
3059
|
* // LineStyleSettings: { // LineChartLineStyleSettings
|
|
@@ -3587,6 +3592,9 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
|
|
|
3587
3592
|
* // Label: "<DimensionFieldList>",
|
|
3588
3593
|
* // },
|
|
3589
3594
|
* // },
|
|
3595
|
+
* // SortConfiguration: { // ScatterPlotSortConfiguration
|
|
3596
|
+
* // ScatterPlotLimitConfiguration: "<ItemsLimitConfiguration>",
|
|
3597
|
+
* // },
|
|
3590
3598
|
* // XAxisLabelOptions: "<ChartAxisLabelOptions>",
|
|
3591
3599
|
* // XAxisDisplayOptions: "<AxisDisplayOptions>",
|
|
3592
3600
|
* // YAxisLabelOptions: "<ChartAxisLabelOptions>",
|
|
@@ -3625,6 +3633,11 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
|
|
|
3625
3633
|
* // PrimaryYAxisLabelOptions: "<ChartAxisLabelOptions>",
|
|
3626
3634
|
* // SecondaryYAxisDisplayOptions: "<AxisDisplayOptions>",
|
|
3627
3635
|
* // SecondaryYAxisLabelOptions: "<ChartAxisLabelOptions>",
|
|
3636
|
+
* // SingleAxisOptions: {
|
|
3637
|
+
* // YAxisOptions: {
|
|
3638
|
+
* // YAxis: "PRIMARY_Y_AXIS", // required
|
|
3639
|
+
* // },
|
|
3640
|
+
* // },
|
|
3628
3641
|
* // ColorLabelOptions: "<ChartAxisLabelOptions>",
|
|
3629
3642
|
* // Legend: "<LegendOptions>",
|
|
3630
3643
|
* // BarDataLabels: "<DataLabelOptions>",
|
|
@@ -75,6 +75,9 @@ export interface DescribeDashboardCommandOutput extends DescribeDashboardRespons
|
|
|
75
75
|
* // CreatedTime: new Date("TIMESTAMP"),
|
|
76
76
|
* // LastPublishedTime: new Date("TIMESTAMP"),
|
|
77
77
|
* // LastUpdatedTime: new Date("TIMESTAMP"),
|
|
78
|
+
* // LinkEntities: [ // LinkEntityArnList
|
|
79
|
+
* // "STRING_VALUE",
|
|
80
|
+
* // ],
|
|
78
81
|
* // },
|
|
79
82
|
* // Status: Number("int"),
|
|
80
83
|
* // RequestId: "STRING_VALUE",
|
|
@@ -3051,6 +3051,11 @@ export interface DescribeDashboardDefinitionCommandOutput extends DescribeDashbo
|
|
|
3051
3051
|
* // ],
|
|
3052
3052
|
* // },
|
|
3053
3053
|
* // SecondaryYAxisLabelOptions: "<ChartAxisLabelOptions>",
|
|
3054
|
+
* // SingleAxisOptions: { // SingleAxisOptions
|
|
3055
|
+
* // YAxisOptions: { // YAxisOptions
|
|
3056
|
+
* // YAxis: "PRIMARY_Y_AXIS", // required
|
|
3057
|
+
* // },
|
|
3058
|
+
* // },
|
|
3054
3059
|
* // DefaultSeriesSettings: { // LineChartDefaultSeriesSettings
|
|
3055
3060
|
* // AxisBinding: "PRIMARY_YAXIS" || "SECONDARY_YAXIS",
|
|
3056
3061
|
* // LineStyleSettings: { // LineChartLineStyleSettings
|
|
@@ -3589,6 +3594,9 @@ export interface DescribeDashboardDefinitionCommandOutput extends DescribeDashbo
|
|
|
3589
3594
|
* // Label: "<DimensionFieldList>",
|
|
3590
3595
|
* // },
|
|
3591
3596
|
* // },
|
|
3597
|
+
* // SortConfiguration: { // ScatterPlotSortConfiguration
|
|
3598
|
+
* // ScatterPlotLimitConfiguration: "<ItemsLimitConfiguration>",
|
|
3599
|
+
* // },
|
|
3592
3600
|
* // XAxisLabelOptions: "<ChartAxisLabelOptions>",
|
|
3593
3601
|
* // XAxisDisplayOptions: "<AxisDisplayOptions>",
|
|
3594
3602
|
* // YAxisLabelOptions: "<ChartAxisLabelOptions>",
|
|
@@ -3627,6 +3635,11 @@ export interface DescribeDashboardDefinitionCommandOutput extends DescribeDashbo
|
|
|
3627
3635
|
* // PrimaryYAxisLabelOptions: "<ChartAxisLabelOptions>",
|
|
3628
3636
|
* // SecondaryYAxisDisplayOptions: "<AxisDisplayOptions>",
|
|
3629
3637
|
* // SecondaryYAxisLabelOptions: "<ChartAxisLabelOptions>",
|
|
3638
|
+
* // SingleAxisOptions: {
|
|
3639
|
+
* // YAxisOptions: {
|
|
3640
|
+
* // YAxis: "PRIMARY_Y_AXIS", // required
|
|
3641
|
+
* // },
|
|
3642
|
+
* // },
|
|
3630
3643
|
* // ColorLabelOptions: "<ChartAxisLabelOptions>",
|
|
3631
3644
|
* // Legend: "<LegendOptions>",
|
|
3632
3645
|
* // BarDataLabels: "<DataLabelOptions>",
|
|
@@ -3069,6 +3069,11 @@ export interface DescribeTemplateDefinitionCommandOutput extends DescribeTemplat
|
|
|
3069
3069
|
* // ],
|
|
3070
3070
|
* // },
|
|
3071
3071
|
* // SecondaryYAxisLabelOptions: "<ChartAxisLabelOptions>",
|
|
3072
|
+
* // SingleAxisOptions: { // SingleAxisOptions
|
|
3073
|
+
* // YAxisOptions: { // YAxisOptions
|
|
3074
|
+
* // YAxis: "PRIMARY_Y_AXIS", // required
|
|
3075
|
+
* // },
|
|
3076
|
+
* // },
|
|
3072
3077
|
* // DefaultSeriesSettings: { // LineChartDefaultSeriesSettings
|
|
3073
3078
|
* // AxisBinding: "PRIMARY_YAXIS" || "SECONDARY_YAXIS",
|
|
3074
3079
|
* // LineStyleSettings: { // LineChartLineStyleSettings
|
|
@@ -3607,6 +3612,9 @@ export interface DescribeTemplateDefinitionCommandOutput extends DescribeTemplat
|
|
|
3607
3612
|
* // Label: "<DimensionFieldList>",
|
|
3608
3613
|
* // },
|
|
3609
3614
|
* // },
|
|
3615
|
+
* // SortConfiguration: { // ScatterPlotSortConfiguration
|
|
3616
|
+
* // ScatterPlotLimitConfiguration: "<ItemsLimitConfiguration>",
|
|
3617
|
+
* // },
|
|
3610
3618
|
* // XAxisLabelOptions: "<ChartAxisLabelOptions>",
|
|
3611
3619
|
* // XAxisDisplayOptions: "<AxisDisplayOptions>",
|
|
3612
3620
|
* // YAxisLabelOptions: "<ChartAxisLabelOptions>",
|
|
@@ -3645,6 +3653,11 @@ export interface DescribeTemplateDefinitionCommandOutput extends DescribeTemplat
|
|
|
3645
3653
|
* // PrimaryYAxisLabelOptions: "<ChartAxisLabelOptions>",
|
|
3646
3654
|
* // SecondaryYAxisDisplayOptions: "<AxisDisplayOptions>",
|
|
3647
3655
|
* // SecondaryYAxisLabelOptions: "<ChartAxisLabelOptions>",
|
|
3656
|
+
* // SingleAxisOptions: {
|
|
3657
|
+
* // YAxisOptions: {
|
|
3658
|
+
* // YAxis: "PRIMARY_Y_AXIS", // required
|
|
3659
|
+
* // },
|
|
3660
|
+
* // },
|
|
3648
3661
|
* // ColorLabelOptions: "<ChartAxisLabelOptions>",
|
|
3649
3662
|
* // Legend: "<LegendOptions>",
|
|
3650
3663
|
* // BarDataLabels: "<DataLabelOptions>",
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
-
import { ListTagsForResourceRequest
|
|
4
|
+
import { ListTagsForResourceRequest } from "../models/models_3";
|
|
5
|
+
import { ListTagsForResourceResponse } from "../models/models_4";
|
|
5
6
|
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
|
|
6
7
|
/**
|
|
7
8
|
* @public
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
-
import { ListTemplateAliasesRequest, ListTemplateAliasesResponse } from "../models/
|
|
4
|
+
import { ListTemplateAliasesRequest, ListTemplateAliasesResponse } from "../models/models_4";
|
|
5
5
|
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
-
import { ListTemplatesRequest } from "../models/
|
|
5
|
-
import { ListTemplatesResponse } from "../models/models_4";
|
|
4
|
+
import { ListTemplatesRequest, ListTemplatesResponse } from "../models/models_4";
|
|
6
5
|
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
|
|
7
6
|
/**
|
|
8
7
|
* @public
|
|
@@ -3069,6 +3069,11 @@ export interface UpdateAnalysisCommandOutput extends UpdateAnalysisResponse, __M
|
|
|
3069
3069
|
* ],
|
|
3070
3070
|
* },
|
|
3071
3071
|
* SecondaryYAxisLabelOptions: "<ChartAxisLabelOptions>",
|
|
3072
|
+
* SingleAxisOptions: { // SingleAxisOptions
|
|
3073
|
+
* YAxisOptions: { // YAxisOptions
|
|
3074
|
+
* YAxis: "PRIMARY_Y_AXIS", // required
|
|
3075
|
+
* },
|
|
3076
|
+
* },
|
|
3072
3077
|
* DefaultSeriesSettings: { // LineChartDefaultSeriesSettings
|
|
3073
3078
|
* AxisBinding: "PRIMARY_YAXIS" || "SECONDARY_YAXIS",
|
|
3074
3079
|
* LineStyleSettings: { // LineChartLineStyleSettings
|
|
@@ -3607,6 +3612,9 @@ export interface UpdateAnalysisCommandOutput extends UpdateAnalysisResponse, __M
|
|
|
3607
3612
|
* Label: "<DimensionFieldList>",
|
|
3608
3613
|
* },
|
|
3609
3614
|
* },
|
|
3615
|
+
* SortConfiguration: { // ScatterPlotSortConfiguration
|
|
3616
|
+
* ScatterPlotLimitConfiguration: "<ItemsLimitConfiguration>",
|
|
3617
|
+
* },
|
|
3610
3618
|
* XAxisLabelOptions: "<ChartAxisLabelOptions>",
|
|
3611
3619
|
* XAxisDisplayOptions: "<AxisDisplayOptions>",
|
|
3612
3620
|
* YAxisLabelOptions: "<ChartAxisLabelOptions>",
|
|
@@ -3645,6 +3653,11 @@ export interface UpdateAnalysisCommandOutput extends UpdateAnalysisResponse, __M
|
|
|
3645
3653
|
* PrimaryYAxisLabelOptions: "<ChartAxisLabelOptions>",
|
|
3646
3654
|
* SecondaryYAxisDisplayOptions: "<AxisDisplayOptions>",
|
|
3647
3655
|
* SecondaryYAxisLabelOptions: "<ChartAxisLabelOptions>",
|
|
3656
|
+
* SingleAxisOptions: {
|
|
3657
|
+
* YAxisOptions: {
|
|
3658
|
+
* YAxis: "PRIMARY_Y_AXIS", // required
|
|
3659
|
+
* },
|
|
3660
|
+
* },
|
|
3648
3661
|
* ColorLabelOptions: "<ChartAxisLabelOptions>",
|
|
3649
3662
|
* Legend: "<LegendOptions>",
|
|
3650
3663
|
* BarDataLabels: "<DataLabelOptions>",
|
|
@@ -3114,6 +3114,11 @@ export interface UpdateDashboardCommandOutput extends UpdateDashboardResponse, _
|
|
|
3114
3114
|
* ],
|
|
3115
3115
|
* },
|
|
3116
3116
|
* SecondaryYAxisLabelOptions: "<ChartAxisLabelOptions>",
|
|
3117
|
+
* SingleAxisOptions: { // SingleAxisOptions
|
|
3118
|
+
* YAxisOptions: { // YAxisOptions
|
|
3119
|
+
* YAxis: "PRIMARY_Y_AXIS", // required
|
|
3120
|
+
* },
|
|
3121
|
+
* },
|
|
3117
3122
|
* DefaultSeriesSettings: { // LineChartDefaultSeriesSettings
|
|
3118
3123
|
* AxisBinding: "PRIMARY_YAXIS" || "SECONDARY_YAXIS",
|
|
3119
3124
|
* LineStyleSettings: { // LineChartLineStyleSettings
|
|
@@ -3652,6 +3657,9 @@ export interface UpdateDashboardCommandOutput extends UpdateDashboardResponse, _
|
|
|
3652
3657
|
* Label: "<DimensionFieldList>",
|
|
3653
3658
|
* },
|
|
3654
3659
|
* },
|
|
3660
|
+
* SortConfiguration: { // ScatterPlotSortConfiguration
|
|
3661
|
+
* ScatterPlotLimitConfiguration: "<ItemsLimitConfiguration>",
|
|
3662
|
+
* },
|
|
3655
3663
|
* XAxisLabelOptions: "<ChartAxisLabelOptions>",
|
|
3656
3664
|
* XAxisDisplayOptions: "<AxisDisplayOptions>",
|
|
3657
3665
|
* YAxisLabelOptions: "<ChartAxisLabelOptions>",
|
|
@@ -3690,6 +3698,11 @@ export interface UpdateDashboardCommandOutput extends UpdateDashboardResponse, _
|
|
|
3690
3698
|
* PrimaryYAxisLabelOptions: "<ChartAxisLabelOptions>",
|
|
3691
3699
|
* SecondaryYAxisDisplayOptions: "<AxisDisplayOptions>",
|
|
3692
3700
|
* SecondaryYAxisLabelOptions: "<ChartAxisLabelOptions>",
|
|
3701
|
+
* SingleAxisOptions: {
|
|
3702
|
+
* YAxisOptions: {
|
|
3703
|
+
* YAxis: "PRIMARY_Y_AXIS", // required
|
|
3704
|
+
* },
|
|
3705
|
+
* },
|
|
3693
3706
|
* ColorLabelOptions: "<ChartAxisLabelOptions>",
|
|
3694
3707
|
* Legend: "<LegendOptions>",
|
|
3695
3708
|
* BarDataLabels: "<DataLabelOptions>",
|