Skip to content

Commit

Permalink
fix(client-api-gateway): remove forward slash after * (#641)
Browse files Browse the repository at this point in the history
  • Loading branch information
trivikr committed Jan 6, 2020
1 parent 431c99b commit e852397
Showing 1 changed file with 45 additions and 29 deletions.
74 changes: 45 additions & 29 deletions clients/client-api-gateway/models/index.ts
Expand Up @@ -332,7 +332,7 @@ export namespace ApiKeyIds {

export enum ApiKeySourceType {
AUTHORIZER = "AUTHORIZER",
HEADER = "HEADER",
HEADER = "HEADER"
}

/**
Expand Down Expand Up @@ -384,7 +384,7 @@ export namespace ApiKeys {
}

export enum ApiKeysFormat {
csv = "csv",
csv = "csv"
}

/**
Expand Down Expand Up @@ -637,7 +637,7 @@ export namespace Authorizer {
export enum AuthorizerType {
COGNITO_USER_POOLS = "COGNITO_USER_POOLS",
REQUEST = "REQUEST",
TOKEN = "TOKEN",
TOKEN = "TOKEN"
}

/**
Expand Down Expand Up @@ -784,15 +784,15 @@ export enum CacheClusterSize {
SIZE_237_GB = "237",
SIZE_28_POINT_4_GB = "28.4",
SIZE_58_POINT_2_GB = "58.2",
SIZE_6_POINT_1_GB = "6.1",
SIZE_6_POINT_1_GB = "6.1"
}

export enum CacheClusterStatus {
AVAILABLE = "AVAILABLE",
CREATE_IN_PROGRESS = "CREATE_IN_PROGRESS",
DELETE_IN_PROGRESS = "DELETE_IN_PROGRESS",
FLUSH_IN_PROGRESS = "FLUSH_IN_PROGRESS",
NOT_AVAILABLE = "NOT_AVAILABLE",
NOT_AVAILABLE = "NOT_AVAILABLE"
}

/**
Expand Down Expand Up @@ -944,12 +944,12 @@ export namespace ClientCertificates {

export enum ConnectionType {
INTERNET = "INTERNET",
VPC_LINK = "VPC_LINK",
VPC_LINK = "VPC_LINK"
}

export enum ContentHandlingStrategy {
CONVERT_TO_BINARY = "CONVERT_TO_BINARY",
CONVERT_TO_TEXT = "CONVERT_TO_TEXT",
CONVERT_TO_TEXT = "CONVERT_TO_TEXT"
}

/**
Expand Down Expand Up @@ -3978,7 +3978,7 @@ export enum DocumentationPartType {
RESOURCE = "RESOURCE",
RESPONSE = "RESPONSE",
RESPONSE_BODY = "RESPONSE_BODY",
RESPONSE_HEADER = "RESPONSE_HEADER",
RESPONSE_HEADER = "RESPONSE_HEADER"
}

/**
Expand Down Expand Up @@ -4351,7 +4351,7 @@ export namespace DomainName {
export enum DomainNameStatus {
AVAILABLE = "AVAILABLE",
PENDING = "PENDING",
UPDATING = "UPDATING",
UPDATING = "UPDATING"
}

/**
Expand Down Expand Up @@ -4455,7 +4455,7 @@ export namespace EndpointConfiguration {
}
}

export type EndpointType = "EDGE" | "PRIVATE" | "REGIONAL"
export type EndpointType = "EDGE" | "PRIVATE" | "REGIONAL";

/**
* <p>
Expand Down Expand Up @@ -4816,7 +4816,7 @@ export enum GatewayResponseType {
RESOURCE_NOT_FOUND = "RESOURCE_NOT_FOUND",
THROTTLED = "THROTTLED",
UNAUTHORIZED = "UNAUTHORIZED",
UNSUPPORTED_MEDIA_TYPE = "UNSUPPORTED_MEDIA_TYPE",
UNSUPPORTED_MEDIA_TYPE = "UNSUPPORTED_MEDIA_TYPE"
}

/**
Expand Down Expand Up @@ -8751,12 +8751,12 @@ export enum IntegrationType {
AWS_PROXY = "AWS_PROXY",
HTTP = "HTTP",
HTTP_PROXY = "HTTP_PROXY",
MOCK = "MOCK",
MOCK = "MOCK"
}

export enum LocationStatusType {
DOCUMENTED = "DOCUMENTED",
UNDOCUMENTED = "UNDOCUMENTED",
UNDOCUMENTED = "UNDOCUMENTED"
}

/**
Expand Down Expand Up @@ -9658,7 +9658,9 @@ export interface MethodSetting {
* .
* </p>
*/
unauthorizedCacheControlHeaderStrategy?: UnauthorizedCacheControlHeaderStrategy | string;
unauthorizedCacheControlHeaderStrategy?:
| UnauthorizedCacheControlHeaderStrategy
| string;
}

export namespace MethodSetting {
Expand Down Expand Up @@ -9785,7 +9787,7 @@ export interface Model extends $MetadataBearer {
* <a href="https://tools.ietf.org/html/draft-zyp-json-schema-04" target="_blank">
* JSON schema draft 4
* </a>
* model. Do not include "\*/" characters in the description of any properties because such "\*/" characters may be interpreted as the closing marker for comments in some languages, such as Java or JavaScript, causing the installation of your API's SDK generated by API Gateway to fail.
* model. Do not include "*" characters in the description of any properties because such "*" characters may be interpreted as the closing marker for comments in some languages, such as Java or JavaScript, causing the installation of your API's SDK generated by API Gateway to fail.
* </p>
*/
schema?: string;
Expand Down Expand Up @@ -10831,7 +10833,7 @@ export namespace PutMethodResponseRequest {

export enum PutMode {
Merge = "merge",
Overwrite = "overwrite",
Overwrite = "overwrite"
}

/**
Expand Down Expand Up @@ -10922,7 +10924,7 @@ export namespace PutRestApiRequest {
export enum QuotaPeriodType {
DAY = "DAY",
MONTH = "MONTH",
WEEK = "WEEK",
WEEK = "WEEK"
}

/**
Expand Down Expand Up @@ -11757,7 +11759,7 @@ export namespace SdkTypes {
}
}

export type SecurityPolicy = "TLS_1_0" | "TLS_1_2"
export type SecurityPolicy = "TLS_1_0" | "TLS_1_2";

/**
* <p>
Expand Down Expand Up @@ -11872,7 +11874,7 @@ export interface Stage extends $MetadataBearer {
* </code>
* for an individual method override, or
* <code>
* /\*/\*
* /**
* </code>
* for overriding all methods in the stage.
* <!-- Any forward slash ("/") characters in the <code>resource_path</code> part must be encoded as "~1" as in, for example, <code>~1resource~1sub-resource/GET</code>.-->
Expand Down Expand Up @@ -12438,7 +12440,7 @@ export namespace ThrottleSettings {
export enum UnauthorizedCacheControlHeaderStrategy {
FAIL_WITH_403 = "FAIL_WITH_403",
SUCCEED_WITHOUT_RESPONSE_HEADER = "SUCCEED_WITHOUT_RESPONSE_HEADER",
SUCCEED_WITH_RESPONSE_HEADER = "SUCCEED_WITH_RESPONSE_HEADER",
SUCCEED_WITH_RESPONSE_HEADER = "SUCCEED_WITH_RESPONSE_HEADER"
}

/**
Expand Down Expand Up @@ -14046,7 +14048,7 @@ export enum VpcLinkStatus {
AVAILABLE = "AVAILABLE",
DELETING = "DELETING",
FAILED = "FAILED",
PENDING = "PENDING",
PENDING = "PENDING"
}

/**
Expand Down Expand Up @@ -14086,7 +14088,7 @@ export namespace VpcLinks {
}
}

export type Op = "add" | "copy" | "move" | "remove" | "replace" | "test"
export type Op = "add" | "copy" | "move" | "remove" | "replace" | "test";

/**
* A single patch operation to apply to the specified resource. Please refer to
Expand Down Expand Up @@ -14226,7 +14228,9 @@ export namespace PatchOperation {
* The submitted request is not valid, for example, the input is incomplete or incorrect. See the accompanying error message for details.
* </p>
*/
export interface BadRequestException extends _smithy.SmithyException, $MetadataBearer {
export interface BadRequestException
extends _smithy.SmithyException,
$MetadataBearer {
__type: "BadRequestException";
$fault: "client";
message?: string;
Expand All @@ -14243,7 +14247,9 @@ export namespace BadRequestException {
* The request configuration has conflicts. For details, see the accompanying error message.
* </p>
*/
export interface ConflictException extends _smithy.SmithyException, $MetadataBearer {
export interface ConflictException
extends _smithy.SmithyException,
$MetadataBearer {
__type: "ConflictException";
$fault: "client";
message?: string;
Expand All @@ -14260,7 +14266,9 @@ export namespace ConflictException {
* The request exceeded the rate limit. Retry after the specified time period.
* </p>
*/
export interface LimitExceededException extends _smithy.SmithyException, $MetadataBearer {
export interface LimitExceededException
extends _smithy.SmithyException,
$MetadataBearer {
__type: "LimitExceededException";
$fault: "client";
message?: string;
Expand All @@ -14278,7 +14286,9 @@ export namespace LimitExceededException {
* The requested resource is not found. Make sure that the request URI is correct.
* </p>
*/
export interface NotFoundException extends _smithy.SmithyException, $MetadataBearer {
export interface NotFoundException
extends _smithy.SmithyException,
$MetadataBearer {
__type: "NotFoundException";
$fault: "client";
message?: string;
Expand All @@ -14295,7 +14305,9 @@ export namespace NotFoundException {
* The requested service is not available. For details see the accompanying error message. Retry after the specified time period.
* </p>
*/
export interface ServiceUnavailableException extends _smithy.SmithyException, $MetadataBearer {
export interface ServiceUnavailableException
extends _smithy.SmithyException,
$MetadataBearer {
__type: "ServiceUnavailableException";
$fault: "server";
message?: string;
Expand All @@ -14313,7 +14325,9 @@ export namespace ServiceUnavailableException {
* The request has reached its throttling limit. Retry after the specified time period.
* </p>
*/
export interface TooManyRequestsException extends _smithy.SmithyException, $MetadataBearer {
export interface TooManyRequestsException
extends _smithy.SmithyException,
$MetadataBearer {
__type: "TooManyRequestsException";
$fault: "client";
message?: string;
Expand All @@ -14331,7 +14345,9 @@ export namespace TooManyRequestsException {
* The request is denied because the caller has insufficient permissions.
* </p>
*/
export interface UnauthorizedException extends _smithy.SmithyException, $MetadataBearer {
export interface UnauthorizedException
extends _smithy.SmithyException,
$MetadataBearer {
__type: "UnauthorizedException";
$fault: "client";
message?: string;
Expand Down

0 comments on commit e852397

Please sign in to comment.