@aws-sdk/client-quicksight 3.1056.0 → 3.1057.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 +35 -0
- package/dist-cjs/index.js +78 -0
- package/dist-cjs/schemas/schemas_0.js +140 -35
- package/dist-es/QuickSight.js +12 -0
- package/dist-es/commands/CreateOAuthClientApplicationCommand.js +16 -0
- package/dist-es/commands/DeleteOAuthClientApplicationCommand.js +16 -0
- package/dist-es/commands/DescribeOAuthClientApplicationCommand.js +16 -0
- package/dist-es/commands/ListOAuthClientApplicationsCommand.js +16 -0
- package/dist-es/commands/UpdateOAuthClientApplicationCommand.js +16 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/enums.js +3 -0
- package/dist-es/pagination/ListOAuthClientApplicationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +109 -4
- package/dist-types/QuickSight.d.ts +42 -0
- package/dist-types/QuickSightClient.d.ts +7 -2
- package/dist-types/commands/CreateOAuthClientApplicationCommand.d.ts +125 -0
- package/dist-types/commands/DeleteOAuthClientApplicationCommand.d.ts +101 -0
- package/dist-types/commands/DescribeIpRestrictionCommand.d.ts +2 -1
- package/dist-types/commands/DescribeKeyRegistrationCommand.d.ts +1 -2
- package/dist-types/commands/DescribeOAuthClientApplicationCommand.d.ts +111 -0
- package/dist-types/commands/ListOAuthClientApplicationsCommand.d.ts +115 -0
- package/dist-types/commands/UpdateOAuthClientApplicationCommand.d.ts +115 -0
- package/dist-types/commands/UpdateRoleCustomPermissionCommand.d.ts +2 -1
- package/dist-types/commands/UpdateSPICECapacityConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/UpdateSelfUpgradeCommand.d.ts +1 -1
- package/dist-types/commands/UpdateSelfUpgradeConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/UpdateTemplateAliasCommand.d.ts +1 -1
- package/dist-types/commands/UpdateTemplateCommand.d.ts +1 -1
- package/dist-types/commands/UpdateTemplatePermissionsCommand.d.ts +1 -2
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/enums.d.ts +11 -0
- package/dist-types/models/models_3.d.ts +136 -99
- package/dist-types/models/models_4.d.ts +356 -282
- package/dist-types/models/models_5.d.ts +300 -4
- package/dist-types/pagination/ListOAuthClientApplicationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +17 -0
- package/dist-types/ts3.4/QuickSight.d.ts +92 -0
- package/dist-types/ts3.4/QuickSightClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/CreateOAuthClientApplicationCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/DeleteOAuthClientApplicationCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/DescribeIpRestrictionCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeKeyRegistrationCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeOAuthClientApplicationCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListOAuthClientApplicationsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/UpdateOAuthClientApplicationCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/UpdateRoleCustomPermissionCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/UpdateSPICECapacityConfigurationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateSelfUpgradeCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateSelfUpgradeConfigurationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateTemplateAliasCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateTemplateCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateTemplatePermissionsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/enums.d.ts +5 -0
- package/dist-types/ts3.4/models/models_3.d.ts +32 -22
- package/dist-types/ts3.4/models/models_4.d.ts +86 -71
- package/dist-types/ts3.4/models/models_5.d.ts +79 -2
- package/dist-types/ts3.4/pagination/ListOAuthClientApplicationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +17 -0
- package/package.json +2 -2
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { UpdateOAuthClientApplicationRequest, UpdateOAuthClientApplicationResponse } from "../models/models_4";
|
|
4
|
+
import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link UpdateOAuthClientApplicationCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface UpdateOAuthClientApplicationCommandInput extends UpdateOAuthClientApplicationRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link UpdateOAuthClientApplicationCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateOAuthClientApplicationCommandOutput extends UpdateOAuthClientApplicationResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const UpdateOAuthClientApplicationCommand_base: {
|
|
25
|
+
new (input: UpdateOAuthClientApplicationCommandInput): import("@smithy/core/client").CommandImpl<UpdateOAuthClientApplicationCommandInput, UpdateOAuthClientApplicationCommandOutput, QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: UpdateOAuthClientApplicationCommandInput): import("@smithy/core/client").CommandImpl<UpdateOAuthClientApplicationCommandInput, UpdateOAuthClientApplicationCommandOutput, QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* <p>Updates an OAuthClientApplication.</p>
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { QuickSightClient, UpdateOAuthClientApplicationCommand } from "@aws-sdk/client-quicksight"; // ES Modules import
|
|
37
|
+
* // const { QuickSightClient, UpdateOAuthClientApplicationCommand } = require("@aws-sdk/client-quicksight"); // CommonJS import
|
|
38
|
+
* // import type { QuickSightClientConfig } from "@aws-sdk/client-quicksight";
|
|
39
|
+
* const config = {}; // type is QuickSightClientConfig
|
|
40
|
+
* const client = new QuickSightClient(config);
|
|
41
|
+
* const input = { // UpdateOAuthClientApplicationRequest
|
|
42
|
+
* AwsAccountId: "STRING_VALUE", // required
|
|
43
|
+
* OAuthClientApplicationId: "STRING_VALUE", // required
|
|
44
|
+
* Name: "STRING_VALUE", // required
|
|
45
|
+
* ClientId: "STRING_VALUE",
|
|
46
|
+
* ClientSecret: "STRING_VALUE",
|
|
47
|
+
* OAuthTokenEndpointUrl: "STRING_VALUE",
|
|
48
|
+
* OAuthAuthorizationEndpointUrl: "STRING_VALUE",
|
|
49
|
+
* OAuthScopes: "STRING_VALUE",
|
|
50
|
+
* DataSourceType: "ADOBE_ANALYTICS" || "AMAZON_ELASTICSEARCH" || "ATHENA" || "AURORA" || "AURORA_POSTGRESQL" || "AWS_IOT_ANALYTICS" || "GITHUB" || "JIRA" || "MARIADB" || "MYSQL" || "ORACLE" || "POSTGRESQL" || "PRESTO" || "REDSHIFT" || "S3" || "S3_TABLES" || "SALESFORCE" || "SERVICENOW" || "SNOWFLAKE" || "SPARK" || "SQLSERVER" || "TERADATA" || "TWITTER" || "TIMESTREAM" || "AMAZON_OPENSEARCH" || "EXASOL" || "DATABRICKS" || "STARBURST" || "TRINO" || "BIGQUERY" || "GOOGLESHEETS" || "GOOGLE_DRIVE" || "CONFLUENCE" || "SHAREPOINT" || "ONE_DRIVE" || "WEB_CRAWLER" || "S3_KNOWLEDGE_BASE" || "QBUSINESS",
|
|
51
|
+
* IdentityProviderVpcConnectionProperties: { // VpcConnectionProperties
|
|
52
|
+
* VpcConnectionArn: "STRING_VALUE", // required
|
|
53
|
+
* },
|
|
54
|
+
* };
|
|
55
|
+
* const command = new UpdateOAuthClientApplicationCommand(input);
|
|
56
|
+
* const response = await client.send(command);
|
|
57
|
+
* // { // UpdateOAuthClientApplicationResponse
|
|
58
|
+
* // Arn: "STRING_VALUE",
|
|
59
|
+
* // OAuthClientApplicationId: "STRING_VALUE",
|
|
60
|
+
* // UpdateStatus: "CREATION_IN_PROGRESS" || "CREATION_SUCCESSFUL" || "CREATION_FAILED" || "UPDATE_IN_PROGRESS" || "UPDATE_SUCCESSFUL" || "UPDATE_FAILED" || "DELETED",
|
|
61
|
+
* // RequestId: "STRING_VALUE",
|
|
62
|
+
* // Status: Number("int"),
|
|
63
|
+
* // };
|
|
64
|
+
*
|
|
65
|
+
* ```
|
|
66
|
+
*
|
|
67
|
+
* @param UpdateOAuthClientApplicationCommandInput - {@link UpdateOAuthClientApplicationCommandInput}
|
|
68
|
+
* @returns {@link UpdateOAuthClientApplicationCommandOutput}
|
|
69
|
+
* @see {@link UpdateOAuthClientApplicationCommandInput} for command's `input` shape.
|
|
70
|
+
* @see {@link UpdateOAuthClientApplicationCommandOutput} for command's `response` shape.
|
|
71
|
+
* @see {@link QuickSightClientResolvedConfig | config} for QuickSightClient's `config` shape.
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
74
|
+
* <p>You don't have access to this item. The provided credentials couldn't be
|
|
75
|
+
* validated. You might not be authorized to carry out the request. Make sure that your
|
|
76
|
+
* account is authorized to use the Amazon Quick Sight service, that your policies have the
|
|
77
|
+
* correct permissions, and that you are using the correct credentials.</p>
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link ConflictException} (client fault)
|
|
80
|
+
* <p>Updating or deleting a resource can cause an inconsistent state.</p>
|
|
81
|
+
*
|
|
82
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
83
|
+
* <p>An internal failure occurred.</p>
|
|
84
|
+
*
|
|
85
|
+
* @throws {@link InvalidParameterValueException} (client fault)
|
|
86
|
+
* <p>One or more parameters has a value that isn't valid.</p>
|
|
87
|
+
*
|
|
88
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
89
|
+
* <p>A limit is exceeded.</p>
|
|
90
|
+
*
|
|
91
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
92
|
+
* <p>One or more resources can't be found.</p>
|
|
93
|
+
*
|
|
94
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
95
|
+
* <p>Access is throttled.</p>
|
|
96
|
+
*
|
|
97
|
+
* @throws {@link QuickSightServiceException}
|
|
98
|
+
* <p>Base exception class for all service exceptions from QuickSight service.</p>
|
|
99
|
+
*
|
|
100
|
+
*
|
|
101
|
+
* @public
|
|
102
|
+
*/
|
|
103
|
+
export declare class UpdateOAuthClientApplicationCommand extends UpdateOAuthClientApplicationCommand_base {
|
|
104
|
+
/** @internal type navigation helper, not in runtime. */
|
|
105
|
+
protected static __types: {
|
|
106
|
+
api: {
|
|
107
|
+
input: UpdateOAuthClientApplicationRequest;
|
|
108
|
+
output: UpdateOAuthClientApplicationResponse;
|
|
109
|
+
};
|
|
110
|
+
sdk: {
|
|
111
|
+
input: UpdateOAuthClientApplicationCommandInput;
|
|
112
|
+
output: UpdateOAuthClientApplicationCommandOutput;
|
|
113
|
+
};
|
|
114
|
+
};
|
|
115
|
+
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { UpdateRoleCustomPermissionRequest
|
|
3
|
+
import type { UpdateRoleCustomPermissionRequest } from "../models/models_4";
|
|
4
|
+
import type { UpdateRoleCustomPermissionResponse } from "../models/models_5";
|
|
4
5
|
import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
|
|
5
6
|
/**
|
|
6
7
|
* @public
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { UpdateSPICECapacityConfigurationRequest, UpdateSPICECapacityConfigurationResponse } from "../models/
|
|
3
|
+
import type { UpdateSPICECapacityConfigurationRequest, UpdateSPICECapacityConfigurationResponse } from "../models/models_5";
|
|
4
4
|
import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { UpdateSelfUpgradeRequest, UpdateSelfUpgradeResponse } from "../models/
|
|
3
|
+
import type { UpdateSelfUpgradeRequest, UpdateSelfUpgradeResponse } from "../models/models_5";
|
|
4
4
|
import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { UpdateSelfUpgradeConfigurationRequest, UpdateSelfUpgradeConfigurationResponse } from "../models/
|
|
3
|
+
import type { UpdateSelfUpgradeConfigurationRequest, UpdateSelfUpgradeConfigurationResponse } from "../models/models_5";
|
|
4
4
|
import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { UpdateTemplateAliasRequest, UpdateTemplateAliasResponse } from "../models/
|
|
3
|
+
import type { UpdateTemplateAliasRequest, UpdateTemplateAliasResponse } from "../models/models_5";
|
|
4
4
|
import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { UpdateTemplateRequest, UpdateTemplateResponse } from "../models/
|
|
3
|
+
import type { UpdateTemplateRequest, UpdateTemplateResponse } from "../models/models_5";
|
|
4
4
|
import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { UpdateTemplatePermissionsRequest } from "../models/
|
|
4
|
-
import type { UpdateTemplatePermissionsResponse } from "../models/models_5";
|
|
3
|
+
import type { UpdateTemplatePermissionsRequest, UpdateTemplatePermissionsResponse } from "../models/models_5";
|
|
5
4
|
import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
@@ -17,6 +17,7 @@ export * from "./CreateGroupMembershipCommand";
|
|
|
17
17
|
export * from "./CreateIAMPolicyAssignmentCommand";
|
|
18
18
|
export * from "./CreateIngestionCommand";
|
|
19
19
|
export * from "./CreateNamespaceCommand";
|
|
20
|
+
export * from "./CreateOAuthClientApplicationCommand";
|
|
20
21
|
export * from "./CreateRefreshScheduleCommand";
|
|
21
22
|
export * from "./CreateRoleMembershipCommand";
|
|
22
23
|
export * from "./CreateTemplateAliasCommand";
|
|
@@ -46,6 +47,7 @@ export * from "./DeleteGroupMembershipCommand";
|
|
|
46
47
|
export * from "./DeleteIAMPolicyAssignmentCommand";
|
|
47
48
|
export * from "./DeleteIdentityPropagationConfigCommand";
|
|
48
49
|
export * from "./DeleteNamespaceCommand";
|
|
50
|
+
export * from "./DeleteOAuthClientApplicationCommand";
|
|
49
51
|
export * from "./DeleteRefreshScheduleCommand";
|
|
50
52
|
export * from "./DeleteRoleCustomPermissionCommand";
|
|
51
53
|
export * from "./DeleteRoleMembershipCommand";
|
|
@@ -97,6 +99,7 @@ export * from "./DescribeIngestionCommand";
|
|
|
97
99
|
export * from "./DescribeIpRestrictionCommand";
|
|
98
100
|
export * from "./DescribeKeyRegistrationCommand";
|
|
99
101
|
export * from "./DescribeNamespaceCommand";
|
|
102
|
+
export * from "./DescribeOAuthClientApplicationCommand";
|
|
100
103
|
export * from "./DescribeQPersonalizationConfigurationCommand";
|
|
101
104
|
export * from "./DescribeQuickSightQSearchConfigurationCommand";
|
|
102
105
|
export * from "./DescribeRefreshScheduleCommand";
|
|
@@ -144,6 +147,7 @@ export * from "./ListIAMPolicyAssignmentsForUserCommand";
|
|
|
144
147
|
export * from "./ListIdentityPropagationConfigsCommand";
|
|
145
148
|
export * from "./ListIngestionsCommand";
|
|
146
149
|
export * from "./ListNamespacesCommand";
|
|
150
|
+
export * from "./ListOAuthClientApplicationsCommand";
|
|
147
151
|
export * from "./ListRefreshSchedulesCommand";
|
|
148
152
|
export * from "./ListRoleMembershipsCommand";
|
|
149
153
|
export * from "./ListSelfUpgradesCommand";
|
|
@@ -210,6 +214,7 @@ export * from "./UpdateIAMPolicyAssignmentCommand";
|
|
|
210
214
|
export * from "./UpdateIdentityPropagationConfigCommand";
|
|
211
215
|
export * from "./UpdateIpRestrictionCommand";
|
|
212
216
|
export * from "./UpdateKeyRegistrationCommand";
|
|
217
|
+
export * from "./UpdateOAuthClientApplicationCommand";
|
|
213
218
|
export * from "./UpdatePublicSharingSettingsCommand";
|
|
214
219
|
export * from "./UpdateQPersonalizationConfigurationCommand";
|
|
215
220
|
export * from "./UpdateQuickSightQSearchConfigurationCommand";
|
|
@@ -3133,6 +3133,17 @@ export declare const NamespaceStatus: {
|
|
|
3133
3133
|
* @public
|
|
3134
3134
|
*/
|
|
3135
3135
|
export type NamespaceStatus = (typeof NamespaceStatus)[keyof typeof NamespaceStatus];
|
|
3136
|
+
/**
|
|
3137
|
+
* @public
|
|
3138
|
+
* @enum
|
|
3139
|
+
*/
|
|
3140
|
+
export declare const OAuthClientAuthenticationType: {
|
|
3141
|
+
readonly TOKEN: "TOKEN";
|
|
3142
|
+
};
|
|
3143
|
+
/**
|
|
3144
|
+
* @public
|
|
3145
|
+
*/
|
|
3146
|
+
export type OAuthClientAuthenticationType = (typeof OAuthClientAuthenticationType)[keyof typeof OAuthClientAuthenticationType];
|
|
3136
3147
|
/**
|
|
3137
3148
|
* @public
|
|
3138
3149
|
* @enum
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { AssetBundleExportFormat, AssetBundleExportJobStatus, AssetBundleImportFailureAction, AssetBundleImportJobStatus, AssignmentStatus, AuthorSpecifiedAggregation, AutomationJobStatus, CategoryFilterFunction, CategoryFilterType, ColumnDataRole, ColumnDataSubType, ColumnDataType, ColumnTagName, ConstantType, DashboardErrorType, DashboardFilterAttribute, DashboardsQAStatus, DataSetFilterAttribute, DataSetImportMode, DatasetParameterValueType, DataSetUseAs, DataSourceErrorInfoType, DataSourceFilterAttribute, DataSourceType, DayOfWeek, DefaultAggregation, DisplayFormat, FileFormat, FilterClass, FilterOperator, FolderType, HorizontalTextAlignment, IdentityStore, IncludeFolderMembers, IngestionErrorType, IngestionRequestSource, IngestionRequestType, IngestionStatus, IngestionType, JoinType, MemberType, NamedEntityAggType, NamedFilterAggType, NamedFilterType, NamespaceStatus, NullFilterType, PropertyRole, PropertyUsage,
|
|
1
|
+
import type { AssetBundleExportFormat, AssetBundleExportJobStatus, AssetBundleImportFailureAction, AssetBundleImportJobStatus, AssignmentStatus, AuthorSpecifiedAggregation, AutomationJobStatus, CategoryFilterFunction, CategoryFilterType, ColumnDataRole, ColumnDataSubType, ColumnDataType, ColumnTagName, ConstantType, DashboardErrorType, DashboardFilterAttribute, DashboardsQAStatus, DataSetFilterAttribute, DataSetImportMode, DatasetParameterValueType, DataSetUseAs, DataSourceErrorInfoType, DataSourceFilterAttribute, DataSourceType, DayOfWeek, DefaultAggregation, DisplayFormat, FileFormat, FilterClass, FilterOperator, FolderType, HorizontalTextAlignment, IdentityStore, IncludeFolderMembers, IngestionErrorType, IngestionRequestSource, IngestionRequestType, IngestionStatus, IngestionType, JoinType, MemberType, NamedEntityAggType, NamedFilterAggType, NamedFilterType, NamespaceStatus, NullFilterType, OAuthClientAuthenticationType, PropertyRole, PropertyUsage, RefreshInterval, ResourceStatus, Role, RowLevelPermissionFormatVersion, RowLevelPermissionPolicy, ServiceType, SharingModel, SnapshotJobStatus, Status, TextQualifier, TextTransform, TopicRelativeDateFilterFunction, TopicScheduleType, TopicTimeGranularity, TopicUserExperienceVersion, VPCConnectionAvailabilityStatus, VPCConnectionResourceStatus } from "./enums";
|
|
2
2
|
import type { AccountCustomization, AccountInfo, AccountSettings, ActionConnector, Analysis, AnalysisDefaults, AnalysisError, AssetOptions, CalculatedField, ColumnConfiguration, Entity, FilterGroup, FontConfiguration, ParameterDeclaration, QueryExecutionOptions, Sheet } from "./models_0";
|
|
3
3
|
import type { _Parameters, AnalysisDefinition, AnonymousUserSnapshotJobResult, AssetBundleCloudFormationOverridePropertyConfiguration, AssetBundleExportJobError, AssetBundleExportJobValidationStrategy, AssetBundleExportJobWarning, AssetBundleImportJobError, AssetBundleImportJobOverrideParameters, AssetBundleImportJobOverridePermissions, AssetBundleImportJobOverrideTags, AssetBundleImportJobOverrideValidationStrategy, AssetBundleImportJobWarning, AssetBundleImportSourceDescription, BorderStyle, BrandDefinition, BrandDetail, Capabilities, CastColumnTypeOperation, CellValueSynonym, CollectiveConstant, ColumnGroup, ColumnGroupSchema, ColumnLevelPermissionRule, ColumnSchema, ColumnSemanticProperty, ColumnTag, ComparativeOrder, ControlTitleFontConfiguration, CreateColumnsOperation, DashboardPublishOptions, DashboardVersionDefinition, DataPrepConfiguration, DataSetReference, DataSetRefreshProperties, DataSourceParameters, DateTimeDatasetParameter, DecimalDatasetParameter, DisplayFormatOptions, FilterOperation, InputColumn, IntegerDatasetParameter, LinkSharingConfiguration, ProjectOperation, RenameColumnOperation, ResourcePermission, SheetDefinition, SnapshotFile, SnapshotJobResultFileGroup, SnapshotS3DestinationConfiguration, SslProperties, StaticFile, StringDatasetParameterDefaultValues, Tag, TooltipSheetDefinition, ValidationStrategy, VpcConnectionProperties } from "./models_2";
|
|
4
4
|
/**
|
|
@@ -1840,6 +1840,101 @@ export interface CreateNamespaceResponse {
|
|
|
1840
1840
|
*/
|
|
1841
1841
|
Status?: number | undefined;
|
|
1842
1842
|
}
|
|
1843
|
+
/**
|
|
1844
|
+
* @public
|
|
1845
|
+
*/
|
|
1846
|
+
export interface CreateOAuthClientApplicationRequest {
|
|
1847
|
+
/**
|
|
1848
|
+
* <p>The Amazon Web Services account ID.</p>
|
|
1849
|
+
* @public
|
|
1850
|
+
*/
|
|
1851
|
+
AwsAccountId: string | undefined;
|
|
1852
|
+
/**
|
|
1853
|
+
* <p>An ID for the OAuthClientApplication that you want to create. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>
|
|
1854
|
+
* @public
|
|
1855
|
+
*/
|
|
1856
|
+
OAuthClientApplicationId: string | undefined;
|
|
1857
|
+
/**
|
|
1858
|
+
* <p>The display name for the OAuthClientApplication.</p>
|
|
1859
|
+
* @public
|
|
1860
|
+
*/
|
|
1861
|
+
Name: string | undefined;
|
|
1862
|
+
/**
|
|
1863
|
+
* <p>The authentication type to use for the OAuthClientApplication. This determines the OAuth 2.0 grant flow that is used when the data source connects to the identity provider. Valid values are <code>TOKEN</code>.</p>
|
|
1864
|
+
* @public
|
|
1865
|
+
*/
|
|
1866
|
+
OAuthClientAuthenticationType: OAuthClientAuthenticationType | undefined;
|
|
1867
|
+
/**
|
|
1868
|
+
* <p>The client ID of the OAuth application that is registered with the identity provider.</p>
|
|
1869
|
+
* @public
|
|
1870
|
+
*/
|
|
1871
|
+
ClientId: string | undefined;
|
|
1872
|
+
/**
|
|
1873
|
+
* <p>The client secret of the OAuth application that is registered with the identity provider.</p>
|
|
1874
|
+
* @public
|
|
1875
|
+
*/
|
|
1876
|
+
ClientSecret: string | undefined;
|
|
1877
|
+
/**
|
|
1878
|
+
* <p>The token endpoint URL of the identity provider that is used to obtain access tokens.</p>
|
|
1879
|
+
* @public
|
|
1880
|
+
*/
|
|
1881
|
+
OAuthTokenEndpointUrl: string | undefined;
|
|
1882
|
+
/**
|
|
1883
|
+
* <p>The authorization endpoint URL of the identity provider that is used to obtain authorization codes.</p>
|
|
1884
|
+
* @public
|
|
1885
|
+
*/
|
|
1886
|
+
OAuthAuthorizationEndpointUrl?: string | undefined;
|
|
1887
|
+
/**
|
|
1888
|
+
* <p>The OAuth scopes that are requested when the OAuthClientApplication obtains an access token from the identity provider.</p>
|
|
1889
|
+
* @public
|
|
1890
|
+
*/
|
|
1891
|
+
OAuthScopes?: string | undefined;
|
|
1892
|
+
/**
|
|
1893
|
+
* <p>The type of data source that the OAuthClientApplication is used with. Valid values are <code>SNOWFLAKE</code>.</p>
|
|
1894
|
+
* @public
|
|
1895
|
+
*/
|
|
1896
|
+
DataSourceType?: DataSourceType | undefined;
|
|
1897
|
+
/**
|
|
1898
|
+
* <p>VPC connection properties.</p>
|
|
1899
|
+
* @public
|
|
1900
|
+
*/
|
|
1901
|
+
IdentityProviderVpcConnectionProperties?: VpcConnectionProperties | undefined;
|
|
1902
|
+
/**
|
|
1903
|
+
* <p>Contains a map of the key-value pairs for the resource tag or tags assigned to the OAuthClientApplication.</p>
|
|
1904
|
+
* @public
|
|
1905
|
+
*/
|
|
1906
|
+
Tags?: Tag[] | undefined;
|
|
1907
|
+
}
|
|
1908
|
+
/**
|
|
1909
|
+
* @public
|
|
1910
|
+
*/
|
|
1911
|
+
export interface CreateOAuthClientApplicationResponse {
|
|
1912
|
+
/**
|
|
1913
|
+
* <p>The Amazon Resource Name (ARN) of the OAuthClientApplication.</p>
|
|
1914
|
+
* @public
|
|
1915
|
+
*/
|
|
1916
|
+
Arn?: string | undefined;
|
|
1917
|
+
/**
|
|
1918
|
+
* <p>The ID of the OAuthClientApplication. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>
|
|
1919
|
+
* @public
|
|
1920
|
+
*/
|
|
1921
|
+
OAuthClientApplicationId?: string | undefined;
|
|
1922
|
+
/**
|
|
1923
|
+
* <p>The status of creating the OAuthClientApplication.</p>
|
|
1924
|
+
* @public
|
|
1925
|
+
*/
|
|
1926
|
+
CreationStatus?: ResourceStatus | undefined;
|
|
1927
|
+
/**
|
|
1928
|
+
* <p>The Amazon Web Services request ID for this operation.</p>
|
|
1929
|
+
* @public
|
|
1930
|
+
*/
|
|
1931
|
+
RequestId?: string | undefined;
|
|
1932
|
+
/**
|
|
1933
|
+
* <p>The HTTP status of the request.</p>
|
|
1934
|
+
* @public
|
|
1935
|
+
*/
|
|
1936
|
+
Status?: number | undefined;
|
|
1937
|
+
}
|
|
1843
1938
|
/**
|
|
1844
1939
|
* <p>The refresh on entity for weekly or monthly schedules.</p>
|
|
1845
1940
|
* @public
|
|
@@ -5374,6 +5469,46 @@ export interface DeleteNamespaceResponse {
|
|
|
5374
5469
|
*/
|
|
5375
5470
|
Status?: number | undefined;
|
|
5376
5471
|
}
|
|
5472
|
+
/**
|
|
5473
|
+
* @public
|
|
5474
|
+
*/
|
|
5475
|
+
export interface DeleteOAuthClientApplicationRequest {
|
|
5476
|
+
/**
|
|
5477
|
+
* <p>The Amazon Web Services account ID.</p>
|
|
5478
|
+
* @public
|
|
5479
|
+
*/
|
|
5480
|
+
AwsAccountId: string | undefined;
|
|
5481
|
+
/**
|
|
5482
|
+
* <p>The ID of the OAuthClientApplication that you want to delete.</p>
|
|
5483
|
+
* @public
|
|
5484
|
+
*/
|
|
5485
|
+
OAuthClientApplicationId: string | undefined;
|
|
5486
|
+
}
|
|
5487
|
+
/**
|
|
5488
|
+
* @public
|
|
5489
|
+
*/
|
|
5490
|
+
export interface DeleteOAuthClientApplicationResponse {
|
|
5491
|
+
/**
|
|
5492
|
+
* <p>The Amazon Resource Name (ARN) of the OAuthClientApplication that you deleted.</p>
|
|
5493
|
+
* @public
|
|
5494
|
+
*/
|
|
5495
|
+
Arn?: string | undefined;
|
|
5496
|
+
/**
|
|
5497
|
+
* <p>The ID of the OAuthClientApplication. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>
|
|
5498
|
+
* @public
|
|
5499
|
+
*/
|
|
5500
|
+
OAuthClientApplicationId?: string | undefined;
|
|
5501
|
+
/**
|
|
5502
|
+
* <p>The Amazon Web Services request ID for this operation.</p>
|
|
5503
|
+
* @public
|
|
5504
|
+
*/
|
|
5505
|
+
RequestId?: string | undefined;
|
|
5506
|
+
/**
|
|
5507
|
+
* <p>The HTTP status of the request.</p>
|
|
5508
|
+
* @public
|
|
5509
|
+
*/
|
|
5510
|
+
Status?: number | undefined;
|
|
5511
|
+
}
|
|
5377
5512
|
/**
|
|
5378
5513
|
* @public
|
|
5379
5514
|
*/
|
|
@@ -8229,101 +8364,3 @@ export interface DescribeIpRestrictionRequest {
|
|
|
8229
8364
|
*/
|
|
8230
8365
|
AwsAccountId: string | undefined;
|
|
8231
8366
|
}
|
|
8232
|
-
/**
|
|
8233
|
-
* @public
|
|
8234
|
-
*/
|
|
8235
|
-
export interface DescribeIpRestrictionResponse {
|
|
8236
|
-
/**
|
|
8237
|
-
* <p>The ID of the Amazon Web Services account that contains the IP rules.</p>
|
|
8238
|
-
* @public
|
|
8239
|
-
*/
|
|
8240
|
-
AwsAccountId?: string | undefined;
|
|
8241
|
-
/**
|
|
8242
|
-
* <p>A map that describes the IP rules with CIDR range and description.</p>
|
|
8243
|
-
* @public
|
|
8244
|
-
*/
|
|
8245
|
-
IpRestrictionRuleMap?: Record<string, string> | undefined;
|
|
8246
|
-
/**
|
|
8247
|
-
* <p>A map of allowed VPC IDs and their rule descriptions.</p>
|
|
8248
|
-
* @public
|
|
8249
|
-
*/
|
|
8250
|
-
VpcIdRestrictionRuleMap?: Record<string, string> | undefined;
|
|
8251
|
-
/**
|
|
8252
|
-
* <p>A map of allowed VPC endpoint IDs and their rule descriptions.</p>
|
|
8253
|
-
* @public
|
|
8254
|
-
*/
|
|
8255
|
-
VpcEndpointIdRestrictionRuleMap?: Record<string, string> | undefined;
|
|
8256
|
-
/**
|
|
8257
|
-
* <p>A value that specifies whether IP rules are turned on.</p>
|
|
8258
|
-
* @public
|
|
8259
|
-
*/
|
|
8260
|
-
Enabled?: boolean | undefined;
|
|
8261
|
-
/**
|
|
8262
|
-
* <p>The Amazon Web Services request ID for this operation.</p>
|
|
8263
|
-
* @public
|
|
8264
|
-
*/
|
|
8265
|
-
RequestId?: string | undefined;
|
|
8266
|
-
/**
|
|
8267
|
-
* <p>The HTTP status of the request.
|
|
8268
|
-
* </p>
|
|
8269
|
-
* @public
|
|
8270
|
-
*/
|
|
8271
|
-
Status?: number | undefined;
|
|
8272
|
-
}
|
|
8273
|
-
/**
|
|
8274
|
-
* @public
|
|
8275
|
-
*/
|
|
8276
|
-
export interface DescribeKeyRegistrationRequest {
|
|
8277
|
-
/**
|
|
8278
|
-
* <p>The ID of the Amazon Web Services account that contains the customer managed key registration that you want to describe.</p>
|
|
8279
|
-
* @public
|
|
8280
|
-
*/
|
|
8281
|
-
AwsAccountId: string | undefined;
|
|
8282
|
-
/**
|
|
8283
|
-
* <p>Determines whether the request returns the default key only.</p>
|
|
8284
|
-
* @public
|
|
8285
|
-
*/
|
|
8286
|
-
DefaultKeyOnly?: boolean | undefined;
|
|
8287
|
-
}
|
|
8288
|
-
/**
|
|
8289
|
-
* <p>A customer managed key structure that contains the information listed below: </p>
|
|
8290
|
-
* <ul>
|
|
8291
|
-
* <li>
|
|
8292
|
-
* <p>
|
|
8293
|
-
* <code>KeyArn</code> - The ARN of a KMS key that is registered to a Quick Sight account for encryption and decryption use.</p>
|
|
8294
|
-
* </li>
|
|
8295
|
-
* <li>
|
|
8296
|
-
* <p>
|
|
8297
|
-
* <code>DefaultKey</code> - Indicates whether the current key is set as the default key for encryption and decryption use.</p>
|
|
8298
|
-
* </li>
|
|
8299
|
-
* </ul>
|
|
8300
|
-
* @public
|
|
8301
|
-
*/
|
|
8302
|
-
export interface RegisteredCustomerManagedKey {
|
|
8303
|
-
/**
|
|
8304
|
-
* <p>The ARN of the KMS key that is registered to a Quick Sight account for encryption and decryption use.</p>
|
|
8305
|
-
* @public
|
|
8306
|
-
*/
|
|
8307
|
-
KeyArn?: string | undefined;
|
|
8308
|
-
/**
|
|
8309
|
-
* <p>Indicates whether a <code>RegisteredCustomerManagedKey</code> is set as the default key for encryption and decryption use.</p>
|
|
8310
|
-
* @public
|
|
8311
|
-
*/
|
|
8312
|
-
DefaultKey?: boolean | undefined;
|
|
8313
|
-
}
|
|
8314
|
-
/**
|
|
8315
|
-
* <p>A structure that contains information about the <code>QDataKey</code>.</p>
|
|
8316
|
-
* @public
|
|
8317
|
-
*/
|
|
8318
|
-
export interface QDataKey {
|
|
8319
|
-
/**
|
|
8320
|
-
* <p>The ARN of the KMS key that is registered to a Quick Sight account for encryption and decryption use as a <code>QDataKey</code>.</p>
|
|
8321
|
-
* @public
|
|
8322
|
-
*/
|
|
8323
|
-
QDataKeyArn?: string | undefined;
|
|
8324
|
-
/**
|
|
8325
|
-
* <p>The type of <code>QDataKey</code>.</p>
|
|
8326
|
-
* @public
|
|
8327
|
-
*/
|
|
8328
|
-
QDataKeyType?: QDataKeyType | undefined;
|
|
8329
|
-
}
|