@aws-sdk/client-finspace-data 3.535.0 → 3.540.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/dist-cjs/endpoint/endpointResolver.js +4 -2
  2. package/dist-cjs/index.js +0 -3
  3. package/dist-es/endpoint/endpointResolver.js +3 -1
  4. package/dist-es/index.js +0 -1
  5. package/dist-types/commands/AssociateUserToPermissionGroupCommand.d.ts +2 -1
  6. package/dist-types/commands/CreateChangesetCommand.d.ts +2 -1
  7. package/dist-types/commands/CreateDataViewCommand.d.ts +2 -1
  8. package/dist-types/commands/CreateDatasetCommand.d.ts +2 -1
  9. package/dist-types/commands/CreatePermissionGroupCommand.d.ts +2 -1
  10. package/dist-types/commands/CreateUserCommand.d.ts +2 -1
  11. package/dist-types/commands/DeleteDatasetCommand.d.ts +2 -1
  12. package/dist-types/commands/DeletePermissionGroupCommand.d.ts +2 -1
  13. package/dist-types/commands/DisableUserCommand.d.ts +2 -1
  14. package/dist-types/commands/DisassociateUserFromPermissionGroupCommand.d.ts +2 -1
  15. package/dist-types/commands/EnableUserCommand.d.ts +2 -1
  16. package/dist-types/commands/GetChangesetCommand.d.ts +2 -1
  17. package/dist-types/commands/GetDataViewCommand.d.ts +2 -1
  18. package/dist-types/commands/GetDatasetCommand.d.ts +2 -1
  19. package/dist-types/commands/GetExternalDataViewAccessDetailsCommand.d.ts +2 -1
  20. package/dist-types/commands/GetPermissionGroupCommand.d.ts +2 -1
  21. package/dist-types/commands/GetProgrammaticAccessCredentialsCommand.d.ts +2 -1
  22. package/dist-types/commands/GetUserCommand.d.ts +2 -1
  23. package/dist-types/commands/GetWorkingLocationCommand.d.ts +2 -1
  24. package/dist-types/commands/ListChangesetsCommand.d.ts +2 -1
  25. package/dist-types/commands/ListDataViewsCommand.d.ts +2 -1
  26. package/dist-types/commands/ListDatasetsCommand.d.ts +2 -1
  27. package/dist-types/commands/ListPermissionGroupsByUserCommand.d.ts +2 -1
  28. package/dist-types/commands/ListPermissionGroupsCommand.d.ts +2 -1
  29. package/dist-types/commands/ListUsersByPermissionGroupCommand.d.ts +2 -1
  30. package/dist-types/commands/ListUsersCommand.d.ts +2 -1
  31. package/dist-types/commands/ResetUserPasswordCommand.d.ts +2 -1
  32. package/dist-types/commands/UpdateChangesetCommand.d.ts +2 -1
  33. package/dist-types/commands/UpdateDatasetCommand.d.ts +2 -1
  34. package/dist-types/commands/UpdatePermissionGroupCommand.d.ts +2 -1
  35. package/dist-types/commands/UpdateUserCommand.d.ts +2 -1
  36. package/dist-types/index.d.ts +0 -1
  37. package/dist-types/ts3.4/index.d.ts +0 -1
  38. package/package.json +5 -5
@@ -1,12 +1,14 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.defaultEndpointResolver = void 0;
4
- const util_endpoints_1 = require("@smithy/util-endpoints");
4
+ const util_endpoints_1 = require("@aws-sdk/util-endpoints");
5
+ const util_endpoints_2 = require("@smithy/util-endpoints");
5
6
  const ruleset_1 = require("./ruleset");
6
7
  const defaultEndpointResolver = (endpointParams, context = {}) => {
7
- return (0, util_endpoints_1.resolveEndpoint)(ruleset_1.ruleSet, {
8
+ return (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
8
9
  endpointParams: endpointParams,
9
10
  logger: context.logger,
10
11
  });
11
12
  };
12
13
  exports.defaultEndpointResolver = defaultEndpointResolver;
14
+ util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
package/dist-cjs/index.js CHANGED
@@ -2275,9 +2275,6 @@ var paginateListPermissionGroups = (0, import_core.createPaginator)(FinspaceData
2275
2275
  // src/pagination/ListUsersPaginator.ts
2276
2276
 
2277
2277
  var paginateListUsers = (0, import_core.createPaginator)(FinspaceDataClient, ListUsersCommand, "nextToken", "nextToken", "maxResults");
2278
-
2279
- // src/index.ts
2280
- var import_util_endpoints = require("@aws-sdk/util-endpoints");
2281
2278
  // Annotate the CommonJS export names for ESM import in node:
2282
2279
 
2283
2280
  0 && (module.exports = {
@@ -1,4 +1,5 @@
1
- import { resolveEndpoint } from "@smithy/util-endpoints";
1
+ import { awsEndpointFunctions } from "@aws-sdk/util-endpoints";
2
+ import { customEndpointFunctions, resolveEndpoint } from "@smithy/util-endpoints";
2
3
  import { ruleSet } from "./ruleset";
3
4
  export const defaultEndpointResolver = (endpointParams, context = {}) => {
4
5
  return resolveEndpoint(ruleSet, {
@@ -6,3 +7,4 @@ export const defaultEndpointResolver = (endpointParams, context = {}) => {
6
7
  logger: context.logger,
7
8
  });
8
9
  };
10
+ customEndpointFunctions.aws = awsEndpointFunctions;
package/dist-es/index.js CHANGED
@@ -3,5 +3,4 @@ export * from "./FinspaceData";
3
3
  export * from "./commands";
4
4
  export * from "./pagination";
5
5
  export * from "./models";
6
- import "@aws-sdk/util-endpoints";
7
6
  export { FinspaceDataServiceException } from "./models/FinspaceDataServiceException";
@@ -27,6 +27,8 @@ declare const AssociateUserToPermissionGroupCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Adds a user to a permission group to grant permissions for actions a user can perform in FinSpace.</p>
30
+ *
31
+ * @deprecated This method will be discontinued.
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -75,7 +77,6 @@ declare const AssociateUserToPermissionGroupCommand_base: {
75
77
  * <p>Base exception class for all service exceptions from FinspaceData service.</p>
76
78
  *
77
79
  * @public
78
- * @deprecated This method will be discontinued.
79
80
  */
80
81
  export declare class AssociateUserToPermissionGroupCommand extends AssociateUserToPermissionGroupCommand_base {
81
82
  }
@@ -27,6 +27,8 @@ declare const CreateChangesetCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Creates a new Changeset in a FinSpace Dataset.</p>
30
+ *
31
+ * @deprecated This method will be discontinued.
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -85,7 +87,6 @@ declare const CreateChangesetCommand_base: {
85
87
  * <p>Base exception class for all service exceptions from FinspaceData service.</p>
86
88
  *
87
89
  * @public
88
- * @deprecated This method will be discontinued.
89
90
  */
90
91
  export declare class CreateChangesetCommand extends CreateChangesetCommand_base {
91
92
  }
@@ -27,6 +27,8 @@ declare const CreateDataViewCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Creates a Dataview for a Dataset.</p>
30
+ *
31
+ * @deprecated This method will be discontinued.
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -90,7 +92,6 @@ declare const CreateDataViewCommand_base: {
90
92
  * <p>Base exception class for all service exceptions from FinspaceData service.</p>
91
93
  *
92
94
  * @public
93
- * @deprecated This method will be discontinued.
94
95
  */
95
96
  export declare class CreateDataViewCommand extends CreateDataViewCommand_base {
96
97
  }
@@ -27,6 +27,8 @@ declare const CreateDatasetCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Creates a new FinSpace Dataset.</p>
30
+ *
31
+ * @deprecated This method will be discontinued.
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -107,7 +109,6 @@ declare const CreateDatasetCommand_base: {
107
109
  * <p>Base exception class for all service exceptions from FinspaceData service.</p>
108
110
  *
109
111
  * @public
110
- * @deprecated This method will be discontinued.
111
112
  */
112
113
  export declare class CreateDatasetCommand extends CreateDatasetCommand_base {
113
114
  }
@@ -27,6 +27,8 @@ declare const CreatePermissionGroupCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Creates a group of permissions for various actions that a user can perform in FinSpace.</p>
30
+ *
31
+ * @deprecated This method will be discontinued.
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -78,7 +80,6 @@ declare const CreatePermissionGroupCommand_base: {
78
80
  * <p>Base exception class for all service exceptions from FinspaceData service.</p>
79
81
  *
80
82
  * @public
81
- * @deprecated This method will be discontinued.
82
83
  */
83
84
  export declare class CreatePermissionGroupCommand extends CreatePermissionGroupCommand_base {
84
85
  }
@@ -27,6 +27,8 @@ declare const CreateUserCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Creates a new user in FinSpace.</p>
30
+ *
31
+ * @deprecated This method will be discontinued.
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -79,7 +81,6 @@ declare const CreateUserCommand_base: {
79
81
  * <p>Base exception class for all service exceptions from FinspaceData service.</p>
80
82
  *
81
83
  * @public
82
- * @deprecated This method will be discontinued.
83
84
  */
84
85
  export declare class CreateUserCommand extends CreateUserCommand_base {
85
86
  }
@@ -27,6 +27,8 @@ declare const DeleteDatasetCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Deletes a FinSpace Dataset.</p>
30
+ *
31
+ * @deprecated This method will be discontinued.
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -77,7 +79,6 @@ declare const DeleteDatasetCommand_base: {
77
79
  * <p>Base exception class for all service exceptions from FinspaceData service.</p>
78
80
  *
79
81
  * @public
80
- * @deprecated This method will be discontinued.
81
82
  */
82
83
  export declare class DeleteDatasetCommand extends DeleteDatasetCommand_base {
83
84
  }
@@ -27,6 +27,8 @@ declare const DeletePermissionGroupCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Deletes a permission group. This action is irreversible.</p>
30
+ *
31
+ * @deprecated This method will be discontinued.
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -77,7 +79,6 @@ declare const DeletePermissionGroupCommand_base: {
77
79
  * <p>Base exception class for all service exceptions from FinspaceData service.</p>
78
80
  *
79
81
  * @public
80
- * @deprecated This method will be discontinued.
81
82
  */
82
83
  export declare class DeletePermissionGroupCommand extends DeletePermissionGroupCommand_base {
83
84
  }
@@ -27,6 +27,8 @@ declare const DisableUserCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Denies access to the FinSpace web application and API for the specified user.</p>
30
+ *
31
+ * @deprecated This method will be discontinued.
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -74,7 +76,6 @@ declare const DisableUserCommand_base: {
74
76
  * <p>Base exception class for all service exceptions from FinspaceData service.</p>
75
77
  *
76
78
  * @public
77
- * @deprecated This method will be discontinued.
78
79
  */
79
80
  export declare class DisableUserCommand extends DisableUserCommand_base {
80
81
  }
@@ -27,6 +27,8 @@ declare const DisassociateUserFromPermissionGroupCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Removes a user from a permission group.</p>
30
+ *
31
+ * @deprecated This method will be discontinued.
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -75,7 +77,6 @@ declare const DisassociateUserFromPermissionGroupCommand_base: {
75
77
  * <p>Base exception class for all service exceptions from FinspaceData service.</p>
76
78
  *
77
79
  * @public
78
- * @deprecated This method will be discontinued.
79
80
  */
80
81
  export declare class DisassociateUserFromPermissionGroupCommand extends DisassociateUserFromPermissionGroupCommand_base {
81
82
  }
@@ -27,6 +27,8 @@ declare const EnableUserCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p> Allows the specified user to access the FinSpace web application and API.</p>
30
+ *
31
+ * @deprecated This method will be discontinued.
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -77,7 +79,6 @@ declare const EnableUserCommand_base: {
77
79
  * <p>Base exception class for all service exceptions from FinspaceData service.</p>
78
80
  *
79
81
  * @public
80
- * @deprecated This method will be discontinued.
81
82
  */
82
83
  export declare class EnableUserCommand extends EnableUserCommand_base {
83
84
  }
@@ -27,6 +27,8 @@ declare const GetChangesetCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Get information about a Changeset.</p>
30
+ *
31
+ * @deprecated This method will be discontinued.
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -93,7 +95,6 @@ declare const GetChangesetCommand_base: {
93
95
  * <p>Base exception class for all service exceptions from FinspaceData service.</p>
94
96
  *
95
97
  * @public
96
- * @deprecated This method will be discontinued.
97
98
  */
98
99
  export declare class GetChangesetCommand extends GetChangesetCommand_base {
99
100
  }
@@ -27,6 +27,8 @@ declare const GetDataViewCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Gets information about a Dataview.</p>
30
+ *
31
+ * @deprecated This method will be discontinued.
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -95,7 +97,6 @@ declare const GetDataViewCommand_base: {
95
97
  * <p>Base exception class for all service exceptions from FinspaceData service.</p>
96
98
  *
97
99
  * @public
98
- * @deprecated This method will be discontinued.
99
100
  */
100
101
  export declare class GetDataViewCommand extends GetDataViewCommand_base {
101
102
  }
@@ -27,6 +27,8 @@ declare const GetDatasetCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Returns information about a Dataset.</p>
30
+ *
31
+ * @deprecated This method will be discontinued.
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -95,7 +97,6 @@ declare const GetDatasetCommand_base: {
95
97
  * <p>Base exception class for all service exceptions from FinspaceData service.</p>
96
98
  *
97
99
  * @public
98
- * @deprecated This method will be discontinued.
99
100
  */
100
101
  export declare class GetDatasetCommand extends GetDatasetCommand_base {
101
102
  }
@@ -35,6 +35,8 @@ declare const GetExternalDataViewAccessDetailsCommand_base: {
35
35
  * <p>You must be a member of a FinSpace user group, where the dataset that you want to access has <code>Read Dataset Data</code> permissions.</p>
36
36
  * </li>
37
37
  * </ul>
38
+ *
39
+ * @deprecated This method will be discontinued.
38
40
  * @example
39
41
  * Use a bare-bones client and the command you need to make an API call.
40
42
  * ```javascript
@@ -88,7 +90,6 @@ declare const GetExternalDataViewAccessDetailsCommand_base: {
88
90
  * <p>Base exception class for all service exceptions from FinspaceData service.</p>
89
91
  *
90
92
  * @public
91
- * @deprecated This method will be discontinued.
92
93
  */
93
94
  export declare class GetExternalDataViewAccessDetailsCommand extends GetExternalDataViewAccessDetailsCommand_base {
94
95
  }
@@ -27,6 +27,8 @@ declare const GetPermissionGroupCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Retrieves the details of a specific permission group.</p>
30
+ *
31
+ * @deprecated This method will be discontinued.
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -80,7 +82,6 @@ declare const GetPermissionGroupCommand_base: {
80
82
  * <p>Base exception class for all service exceptions from FinspaceData service.</p>
81
83
  *
82
84
  * @public
83
- * @deprecated This method will be discontinued.
84
85
  */
85
86
  export declare class GetPermissionGroupCommand extends GetPermissionGroupCommand_base {
86
87
  }
@@ -27,6 +27,8 @@ declare const GetProgrammaticAccessCredentialsCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Request programmatic credentials to use with FinSpace SDK. For more information, see <a href="https://docs.aws.amazon.com/finspace/latest/data-api/fs-using-the-finspace-api.html#accessing-credentials">Step 2. Access credentials programmatically using IAM access key id and secret access key</a>.</p>
30
+ *
31
+ * @deprecated This method will be discontinued.
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -73,7 +75,6 @@ declare const GetProgrammaticAccessCredentialsCommand_base: {
73
75
  * <p>Base exception class for all service exceptions from FinspaceData service.</p>
74
76
  *
75
77
  * @public
76
- * @deprecated This method will be discontinued.
77
78
  */
78
79
  export declare class GetProgrammaticAccessCredentialsCommand extends GetProgrammaticAccessCredentialsCommand_base {
79
80
  }
@@ -27,6 +27,8 @@ declare const GetUserCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Retrieves details for a specific user.</p>
30
+ *
31
+ * @deprecated This method will be discontinued.
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -82,7 +84,6 @@ declare const GetUserCommand_base: {
82
84
  * <p>Base exception class for all service exceptions from FinspaceData service.</p>
83
85
  *
84
86
  * @public
85
- * @deprecated This method will be discontinued.
86
87
  */
87
88
  export declare class GetUserCommand extends GetUserCommand_base {
88
89
  }
@@ -28,6 +28,8 @@ declare const GetWorkingLocationCommand_base: {
28
28
  /**
29
29
  * <p>A temporary Amazon S3 location, where you can copy your files from a source location to stage or use
30
30
  * as a scratch space in FinSpace notebook.</p>
31
+ *
32
+ * @deprecated This method will be discontinued.
31
33
  * @example
32
34
  * Use a bare-bones client and the command you need to make an API call.
33
35
  * ```javascript
@@ -70,7 +72,6 @@ declare const GetWorkingLocationCommand_base: {
70
72
  * <p>Base exception class for all service exceptions from FinspaceData service.</p>
71
73
  *
72
74
  * @public
73
- * @deprecated This method will be discontinued.
74
75
  */
75
76
  export declare class GetWorkingLocationCommand extends GetWorkingLocationCommand_base {
76
77
  }
@@ -27,6 +27,8 @@ declare const ListChangesetsCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Lists the FinSpace Changesets for a Dataset.</p>
30
+ *
31
+ * @deprecated This method will be discontinued.
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -99,7 +101,6 @@ declare const ListChangesetsCommand_base: {
99
101
  * <p>Base exception class for all service exceptions from FinspaceData service.</p>
100
102
  *
101
103
  * @public
102
- * @deprecated This method will be discontinued.
103
104
  */
104
105
  export declare class ListChangesetsCommand extends ListChangesetsCommand_base {
105
106
  }
@@ -27,6 +27,8 @@ declare const ListDataViewsCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Lists all available Dataviews for a Dataset.</p>
30
+ *
31
+ * @deprecated This method will be discontinued.
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -101,7 +103,6 @@ declare const ListDataViewsCommand_base: {
101
103
  * <p>Base exception class for all service exceptions from FinspaceData service.</p>
102
104
  *
103
105
  * @public
104
- * @deprecated This method will be discontinued.
105
106
  */
106
107
  export declare class ListDataViewsCommand extends ListDataViewsCommand_base {
107
108
  }
@@ -27,6 +27,8 @@ declare const ListDatasetsCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Lists all of the active Datasets that a user has access to.</p>
30
+ *
31
+ * @deprecated This method will be discontinued.
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -102,7 +104,6 @@ declare const ListDatasetsCommand_base: {
102
104
  * <p>Base exception class for all service exceptions from FinspaceData service.</p>
103
105
  *
104
106
  * @public
105
- * @deprecated This method will be discontinued.
106
107
  */
107
108
  export declare class ListDatasetsCommand extends ListDatasetsCommand_base {
108
109
  }
@@ -27,6 +27,8 @@ declare const ListPermissionGroupsByUserCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Lists all the permission groups that are associated with a specific user.</p>
30
+ *
31
+ * @deprecated This method will be discontinued.
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -79,7 +81,6 @@ declare const ListPermissionGroupsByUserCommand_base: {
79
81
  * <p>Base exception class for all service exceptions from FinspaceData service.</p>
80
82
  *
81
83
  * @public
82
- * @deprecated This method will be discontinued.
83
84
  */
84
85
  export declare class ListPermissionGroupsByUserCommand extends ListPermissionGroupsByUserCommand_base {
85
86
  }
@@ -27,6 +27,8 @@ declare const ListPermissionGroupsCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Lists all available permission groups in FinSpace.</p>
30
+ *
31
+ * @deprecated This method will be discontinued.
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -81,7 +83,6 @@ declare const ListPermissionGroupsCommand_base: {
81
83
  * <p>Base exception class for all service exceptions from FinspaceData service.</p>
82
84
  *
83
85
  * @public
84
- * @deprecated This method will be discontinued.
85
86
  */
86
87
  export declare class ListPermissionGroupsCommand extends ListPermissionGroupsCommand_base {
87
88
  }
@@ -27,6 +27,8 @@ declare const ListUsersByPermissionGroupCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Lists details of all the users in a specific permission group.</p>
30
+ *
31
+ * @deprecated This method will be discontinued.
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -85,7 +87,6 @@ declare const ListUsersByPermissionGroupCommand_base: {
85
87
  * <p>Base exception class for all service exceptions from FinspaceData service.</p>
86
88
  *
87
89
  * @public
88
- * @deprecated This method will be discontinued.
89
90
  */
90
91
  export declare class ListUsersByPermissionGroupCommand extends ListUsersByPermissionGroupCommand_base {
91
92
  }
@@ -27,6 +27,8 @@ declare const ListUsersCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Lists all available users in FinSpace.</p>
30
+ *
31
+ * @deprecated This method will be discontinued.
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -85,7 +87,6 @@ declare const ListUsersCommand_base: {
85
87
  * <p>Base exception class for all service exceptions from FinspaceData service.</p>
86
88
  *
87
89
  * @public
88
- * @deprecated This method will be discontinued.
89
90
  */
90
91
  export declare class ListUsersCommand extends ListUsersCommand_base {
91
92
  }
@@ -27,6 +27,8 @@ declare const ResetUserPasswordCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Resets the password for a specified user ID and generates a temporary one. Only a superuser can reset password for other users. Resetting the password immediately invalidates the previous password associated with the user.</p>
30
+ *
31
+ * @deprecated This method will be discontinued.
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -75,7 +77,6 @@ declare const ResetUserPasswordCommand_base: {
75
77
  * <p>Base exception class for all service exceptions from FinspaceData service.</p>
76
78
  *
77
79
  * @public
78
- * @deprecated This method will be discontinued.
79
80
  */
80
81
  export declare class ResetUserPasswordCommand extends ResetUserPasswordCommand_base {
81
82
  }
@@ -27,6 +27,8 @@ declare const UpdateChangesetCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Updates a FinSpace Changeset.</p>
30
+ *
31
+ * @deprecated This method will be discontinued.
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -82,7 +84,6 @@ declare const UpdateChangesetCommand_base: {
82
84
  * <p>Base exception class for all service exceptions from FinspaceData service.</p>
83
85
  *
84
86
  * @public
85
- * @deprecated This method will be discontinued.
86
87
  */
87
88
  export declare class UpdateChangesetCommand extends UpdateChangesetCommand_base {
88
89
  }
@@ -27,6 +27,8 @@ declare const UpdateDatasetCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Updates a FinSpace Dataset.</p>
30
+ *
31
+ * @deprecated This method will be discontinued.
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -92,7 +94,6 @@ declare const UpdateDatasetCommand_base: {
92
94
  * <p>Base exception class for all service exceptions from FinspaceData service.</p>
93
95
  *
94
96
  * @public
95
- * @deprecated This method will be discontinued.
96
97
  */
97
98
  export declare class UpdateDatasetCommand extends UpdateDatasetCommand_base {
98
99
  }
@@ -27,6 +27,8 @@ declare const UpdatePermissionGroupCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Modifies the details of a permission group. You cannot modify a <code>permissionGroupID</code>.</p>
30
+ *
31
+ * @deprecated This method will be discontinued.
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -79,7 +81,6 @@ declare const UpdatePermissionGroupCommand_base: {
79
81
  * <p>Base exception class for all service exceptions from FinspaceData service.</p>
80
82
  *
81
83
  * @public
82
- * @deprecated This method will be discontinued.
83
84
  */
84
85
  export declare class UpdatePermissionGroupCommand extends UpdatePermissionGroupCommand_base {
85
86
  }
@@ -27,6 +27,8 @@ declare const UpdateUserCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Modifies the details of the specified user. You cannot update the <code>userId</code> for a user.</p>
30
+ *
31
+ * @deprecated This method will be discontinued.
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -79,7 +81,6 @@ declare const UpdateUserCommand_base: {
79
81
  * <p>Base exception class for all service exceptions from FinspaceData service.</p>
80
82
  *
81
83
  * @public
82
- * @deprecated This method will be discontinued.
83
84
  */
84
85
  export declare class UpdateUserCommand extends UpdateUserCommand_base {
85
86
  }
@@ -11,5 +11,4 @@ export { FinspaceDataExtensionConfiguration } from "./extensionConfiguration";
11
11
  export * from "./commands";
12
12
  export * from "./pagination";
13
13
  export * from "./models";
14
- import "@aws-sdk/util-endpoints";
15
14
  export { FinspaceDataServiceException } from "./models/FinspaceDataServiceException";
@@ -6,5 +6,4 @@ export { FinspaceDataExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
7
  export * from "./pagination";
8
8
  export * from "./models";
9
- import "@aws-sdk/util-endpoints";
10
9
  export { FinspaceDataServiceException } from "./models/FinspaceDataServiceException";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-finspace-data",
3
3
  "description": "AWS SDK for JavaScript Finspace Data Client for Node.js, Browser and React Native",
4
- "version": "3.535.0",
4
+ "version": "3.540.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-finspace-data",
@@ -20,16 +20,16 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.535.0",
23
+ "@aws-sdk/client-sts": "3.540.0",
24
24
  "@aws-sdk/core": "3.535.0",
25
- "@aws-sdk/credential-provider-node": "3.535.0",
25
+ "@aws-sdk/credential-provider-node": "3.540.0",
26
26
  "@aws-sdk/middleware-host-header": "3.535.0",
27
27
  "@aws-sdk/middleware-logger": "3.535.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.535.0",
29
- "@aws-sdk/middleware-user-agent": "3.535.0",
29
+ "@aws-sdk/middleware-user-agent": "3.540.0",
30
30
  "@aws-sdk/region-config-resolver": "3.535.0",
31
31
  "@aws-sdk/types": "3.535.0",
32
- "@aws-sdk/util-endpoints": "3.535.0",
32
+ "@aws-sdk/util-endpoints": "3.540.0",
33
33
  "@aws-sdk/util-user-agent-browser": "3.535.0",
34
34
  "@aws-sdk/util-user-agent-node": "3.535.0",
35
35
  "@smithy/config-resolver": "^2.2.0",