Skip to content

chore(clients): regenerate clients with DirectedCodegen #3963

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 16, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
146 changes: 73 additions & 73 deletions clients/client-identitystore/src/models/models_0.ts
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,41 @@ export interface GetGroupIdResponse {
IdentityStoreId: string | undefined;
}

/**
* <p>The request processing has failed because of an unknown error, exception or failure with an internal server.</p>
*/
export class InternalServerException extends __BaseException {
readonly name: "InternalServerException" = "InternalServerException";
readonly $fault: "server" = "server";
$retryable = {};
Message?: string;
/**
* <p>The identifier for each request. This value is a globally unique ID that is generated by
* the identity store service for each sent request, and is then returned inside the exception
* if the request fails.</p>
*/
RequestId?: string;

/**
* <p>The number of seconds that you would like to wait before retrying the next request.</p>
*/
RetryAfterSeconds?: number;
/**
* @internal
*/
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>) {
super({
name: "InternalServerException",
$fault: "server",
...opts,
});
Object.setPrototypeOf(this, InternalServerException.prototype);
this.Message = opts.Message;
this.RequestId = opts.RequestId;
this.RetryAfterSeconds = opts.RetryAfterSeconds;
}
}

export enum ResourceType {
GROUP = "GROUP",
GROUP_MEMBERSHIP = "GROUP_MEMBERSHIP",
Expand Down Expand Up @@ -255,6 +290,44 @@ export class ResourceNotFoundException extends __BaseException {
}
}

/**
* <p>Indicates that the principal has crossed the throttling limits of the API operations.</p>
*/
export class ThrottlingException extends __BaseException {
readonly name: "ThrottlingException" = "ThrottlingException";
readonly $fault: "client" = "client";
$retryable = {
throttling: true,
};
Message?: string;
/**
* <p>The identifier for each request. This value is a globally unique ID that is generated by
* the identity store service for each sent request, and is then returned inside the exception
* if the request fails.</p>
*/
RequestId?: string;

/**
* <p>The number of seconds that you would like to wait before retrying the next
* request.</p>
*/
RetryAfterSeconds?: number;
/**
* @internal
*/
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>) {
super({
name: "ThrottlingException",
$fault: "client",
...opts,
});
Object.setPrototypeOf(this, ThrottlingException.prototype);
this.Message = opts.Message;
this.RequestId = opts.RequestId;
this.RetryAfterSeconds = opts.RetryAfterSeconds;
}
}

/**
* <p>The request failed because it contains a syntax error.</p>
*/
Expand Down Expand Up @@ -801,41 +874,6 @@ export interface UpdateGroupRequest {

export interface UpdateGroupResponse {}

/**
* <p>The request processing has failed because of an unknown error, exception or failure with an internal server.</p>
*/
export class InternalServerException extends __BaseException {
readonly name: "InternalServerException" = "InternalServerException";
readonly $fault: "server" = "server";
$retryable = {};
Message?: string;
/**
* <p>The identifier for each request. This value is a globally unique ID that is generated by
* the identity store service for each sent request, and is then returned inside the exception
* if the request fails.</p>
*/
RequestId?: string;

/**
* <p>The number of seconds that you would like to wait before retrying the next request.</p>
*/
RetryAfterSeconds?: number;
/**
* @internal
*/
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>) {
super({
name: "InternalServerException",
$fault: "server",
...opts,
});
Object.setPrototypeOf(this, InternalServerException.prototype);
this.Message = opts.Message;
this.RequestId = opts.RequestId;
this.RetryAfterSeconds = opts.RetryAfterSeconds;
}
}

export interface IsMemberInGroupsRequest {
/**
* <p>The globally unique identifier for the identity store.</p>
Expand Down Expand Up @@ -915,44 +953,6 @@ export interface ListGroupMembershipsForMemberResponse {
NextToken?: string;
}

/**
* <p>Indicates that the principal has crossed the throttling limits of the API operations.</p>
*/
export class ThrottlingException extends __BaseException {
readonly name: "ThrottlingException" = "ThrottlingException";
readonly $fault: "client" = "client";
$retryable = {
throttling: true,
};
Message?: string;
/**
* <p>The identifier for each request. This value is a globally unique ID that is generated by
* the identity store service for each sent request, and is then returned inside the exception
* if the request fails.</p>
*/
RequestId?: string;

/**
* <p>The number of seconds that you would like to wait before retrying the next
* request.</p>
*/
RetryAfterSeconds?: number;
/**
* @internal
*/
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>) {
super({
name: "ThrottlingException",
$fault: "client",
...opts,
});
Object.setPrototypeOf(this, ThrottlingException.prototype);
this.Message = opts.Message;
this.RequestId = opts.RequestId;
this.RetryAfterSeconds = opts.RetryAfterSeconds;
}
}

/**
* <p>The email address associated with the user.</p>
*/
Expand Down