diff --git a/clients/client-finspace-data/src/commands/AssociateUserToPermissionGroupCommand.ts b/clients/client-finspace-data/src/commands/AssociateUserToPermissionGroupCommand.ts index e94054f091ed..e3ed712ca3ad 100644 --- a/clients/client-finspace-data/src/commands/AssociateUserToPermissionGroupCommand.ts +++ b/clients/client-finspace-data/src/commands/AssociateUserToPermissionGroupCommand.ts @@ -42,7 +42,7 @@ export interface AssociateUserToPermissionGroupCommandOutput /** * @public - *

Adds a user account to a permission group to grant permissions for actions a user can perform in FinSpace.

+ *

Adds a user to a permission group to grant permissions for actions a user can perform in FinSpace.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript diff --git a/clients/client-finspace-data/src/commands/CreateUserCommand.ts b/clients/client-finspace-data/src/commands/CreateUserCommand.ts index ef8a08889db0..b72213668424 100644 --- a/clients/client-finspace-data/src/commands/CreateUserCommand.ts +++ b/clients/client-finspace-data/src/commands/CreateUserCommand.ts @@ -49,7 +49,7 @@ export interface CreateUserCommandOutput extends CreateUserResponse, __MetadataB * type: "SUPER_USER" || "APP_USER", // required * firstName: "STRING_VALUE", * lastName: "STRING_VALUE", - * ApiAccess: "ENABLED" || "DISABLED", + * apiAccess: "ENABLED" || "DISABLED", * apiAccessPrincipalArn: "STRING_VALUE", * clientToken: "STRING_VALUE", * }; diff --git a/clients/client-finspace-data/src/commands/DisassociateUserFromPermissionGroupCommand.ts b/clients/client-finspace-data/src/commands/DisassociateUserFromPermissionGroupCommand.ts index 2463753aea08..0e374a37e2ed 100644 --- a/clients/client-finspace-data/src/commands/DisassociateUserFromPermissionGroupCommand.ts +++ b/clients/client-finspace-data/src/commands/DisassociateUserFromPermissionGroupCommand.ts @@ -45,7 +45,7 @@ export interface DisassociateUserFromPermissionGroupCommandOutput /** * @public - *

Removes a user account from a permission group.

+ *

Removes a user from a permission group.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript diff --git a/clients/client-finspace-data/src/commands/GetProgrammaticAccessCredentialsCommand.ts b/clients/client-finspace-data/src/commands/GetProgrammaticAccessCredentialsCommand.ts index 343a276ec0f0..e5b915da927b 100644 --- a/clients/client-finspace-data/src/commands/GetProgrammaticAccessCredentialsCommand.ts +++ b/clients/client-finspace-data/src/commands/GetProgrammaticAccessCredentialsCommand.ts @@ -15,7 +15,11 @@ import { } from "@smithy/types"; import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; -import { GetProgrammaticAccessCredentialsRequest, GetProgrammaticAccessCredentialsResponse } from "../models/models_0"; +import { + GetProgrammaticAccessCredentialsRequest, + GetProgrammaticAccessCredentialsResponse, + GetProgrammaticAccessCredentialsResponseFilterSensitiveLog, +} from "../models/models_0"; import { de_GetProgrammaticAccessCredentialsCommand, se_GetProgrammaticAccessCredentialsCommand, @@ -42,7 +46,7 @@ export interface GetProgrammaticAccessCredentialsCommandOutput /** * @public - *

Request programmatic credentials to use with FinSpace SDK.

+ *

Request programmatic credentials to use with FinSpace SDK. For more information, see Step 2. Access credentials programmatically using IAM access key id and secret access key.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript @@ -138,7 +142,7 @@ export class GetProgrammaticAccessCredentialsCommand extends $Command< clientName, commandName, inputFilterSensitiveLog: (_: any) => _, - outputFilterSensitiveLog: (_: any) => _, + outputFilterSensitiveLog: GetProgrammaticAccessCredentialsResponseFilterSensitiveLog, [SMITHY_CONTEXT_KEY]: { service: "AWSHabaneroPublicAPI", operation: "GetProgrammaticAccessCredentials", diff --git a/clients/client-finspace-data/src/commands/ListPermissionGroupsByUserCommand.ts b/clients/client-finspace-data/src/commands/ListPermissionGroupsByUserCommand.ts index 1cfa671f909a..3cdebf097cbb 100644 --- a/clients/client-finspace-data/src/commands/ListPermissionGroupsByUserCommand.ts +++ b/clients/client-finspace-data/src/commands/ListPermissionGroupsByUserCommand.ts @@ -41,7 +41,7 @@ export interface ListPermissionGroupsByUserCommandOutput extends ListPermissionG /** * @public - *

Lists all the permission groups that are associated with a specific user account.

+ *

Lists all the permission groups that are associated with a specific user.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript diff --git a/clients/client-finspace-data/src/commands/ListUsersCommand.ts b/clients/client-finspace-data/src/commands/ListUsersCommand.ts index 150e8018c243..84da3ad1a696 100644 --- a/clients/client-finspace-data/src/commands/ListUsersCommand.ts +++ b/clients/client-finspace-data/src/commands/ListUsersCommand.ts @@ -37,7 +37,7 @@ export interface ListUsersCommandOutput extends ListUsersResponse, __MetadataBea /** * @public - *

Lists all available user accounts in FinSpace.

+ *

Lists all available users in FinSpace.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript diff --git a/clients/client-finspace-data/src/commands/UpdateUserCommand.ts b/clients/client-finspace-data/src/commands/UpdateUserCommand.ts index 149020ed4a9c..84b465cb143f 100644 --- a/clients/client-finspace-data/src/commands/UpdateUserCommand.ts +++ b/clients/client-finspace-data/src/commands/UpdateUserCommand.ts @@ -37,7 +37,7 @@ export interface UpdateUserCommandOutput extends UpdateUserResponse, __MetadataB /** * @public - *

Modifies the details of the specified user account. You cannot update the userId for a user.

+ *

Modifies the details of the specified user. You cannot update the userId for a user.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript diff --git a/clients/client-finspace-data/src/models/models_0.ts b/clients/client-finspace-data/src/models/models_0.ts index ccec5c234ac2..1a19fa819be8 100644 --- a/clients/client-finspace-data/src/models/models_0.ts +++ b/clients/client-finspace-data/src/models/models_0.ts @@ -962,7 +962,7 @@ export interface CreateUserRequest { * * */ - ApiAccess?: ApiAccess | string; + apiAccess?: ApiAccess | string; /** * @public @@ -1052,7 +1052,7 @@ export interface DeletePermissionGroupResponse { export interface DisableUserRequest { /** * @public - *

The unique identifier for the user account that you want to disable.

+ *

The unique identifier for the user that you want to deactivate.

*/ userId: string | undefined; @@ -1069,7 +1069,7 @@ export interface DisableUserRequest { export interface DisableUserResponse { /** * @public - *

The unique identifier for the disabled user account.

+ *

The unique identifier for the deactivated user.

*/ userId?: string; } @@ -1114,7 +1114,7 @@ export interface DisassociateUserFromPermissionGroupResponse { export interface EnableUserRequest { /** * @public - *

The unique identifier for the user account that you want to enable.

+ *

The unique identifier for the user that you want to activate.

*/ userId: string | undefined; @@ -1131,7 +1131,7 @@ export interface EnableUserRequest { export interface EnableUserResponse { /** * @public - *

The unique identifier for the enabled user account.

+ *

The unique identifier for the active user.

*/ userId?: string; } @@ -1832,15 +1832,15 @@ export interface PermissionGroup { /** * @public - *

Indicates the status of the user account within a permission group.

+ *

Indicates the status of the user within a permission group.

*