Skip to content

Commit 7e4ac48

Browse files
trivikrsrchase
andauthored
chore: codegen for endpoint and hostname prefixing (#777)
Co-authored-by: Chase Coalwell <[email protected]>
1 parent ded2ad3 commit 7e4ac48

File tree

412 files changed

+1449
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

412 files changed

+1449
-2
lines changed

clients/client-acm-pca/ACMPCAClient.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,12 @@ export interface ClientDefaults
178178
*/
179179
runtime?: string;
180180

181+
/**
182+
* Disable dyanamically changing the endpoint of the client based on the hostPrefix
183+
* trait of an operation.
184+
*/
185+
disableHostPrefix?: boolean;
186+
181187
/**
182188
* The service name with which to sign requests.
183189
*/

clients/client-acm-pca/runtimeConfig.shared.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { defaultRegionInfoProvider } from "./endpoints";
22

33
export const ClientSharedValues = {
44
apiVersion: "2017-08-22",
5+
disableHostPrefix: false,
56
signingName: "acm-pca",
67
regionInfoProvider: defaultRegionInfoProvider
78
};

clients/client-acm/ACMClient.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,12 @@ export interface ClientDefaults
156156
*/
157157
runtime?: string;
158158

159+
/**
160+
* Disable dyanamically changing the endpoint of the client based on the hostPrefix
161+
* trait of an operation.
162+
*/
163+
disableHostPrefix?: boolean;
164+
159165
/**
160166
* The service name with which to sign requests.
161167
*/

clients/client-acm/runtimeConfig.shared.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { defaultRegionInfoProvider } from "./endpoints";
22

33
export const ClientSharedValues = {
44
apiVersion: "2015-12-08",
5+
disableHostPrefix: false,
56
signingName: "acm",
67
regionInfoProvider: defaultRegionInfoProvider
78
};

clients/client-alexa-for-business/AlexaForBusinessClient.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -486,6 +486,12 @@ export interface ClientDefaults
486486
*/
487487
runtime?: string;
488488

489+
/**
490+
* Disable dyanamically changing the endpoint of the client based on the hostPrefix
491+
* trait of an operation.
492+
*/
493+
disableHostPrefix?: boolean;
494+
489495
/**
490496
* The service name with which to sign requests.
491497
*/

clients/client-alexa-for-business/runtimeConfig.shared.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { defaultRegionInfoProvider } from "./endpoints";
22

33
export const ClientSharedValues = {
44
apiVersion: "2017-11-09",
5+
disableHostPrefix: false,
56
signingName: "a4b",
67
regionInfoProvider: defaultRegionInfoProvider
78
};

clients/client-amplify/AmplifyClient.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,12 @@ export interface ClientDefaults
262262
*/
263263
runtime?: string;
264264

265+
/**
266+
* Disable dyanamically changing the endpoint of the client based on the hostPrefix
267+
* trait of an operation.
268+
*/
269+
disableHostPrefix?: boolean;
270+
265271
/**
266272
* The service name with which to sign requests.
267273
*/

clients/client-amplify/runtimeConfig.shared.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { defaultRegionInfoProvider } from "./endpoints";
22

33
export const ClientSharedValues = {
44
apiVersion: "2017-07-25",
5+
disableHostPrefix: false,
56
signingName: "amplify",
67
regionInfoProvider: defaultRegionInfoProvider
78
};

clients/client-api-gateway/APIGatewayClient.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -502,6 +502,12 @@ export interface ClientDefaults
502502
*/
503503
runtime?: string;
504504

505+
/**
506+
* Disable dyanamically changing the endpoint of the client based on the hostPrefix
507+
* trait of an operation.
508+
*/
509+
disableHostPrefix?: boolean;
510+
505511
/**
506512
* The service name with which to sign requests.
507513
*/

clients/client-api-gateway/runtimeConfig.shared.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { defaultRegionInfoProvider } from "./endpoints";
22

33
export const ClientSharedValues = {
44
apiVersion: "2015-07-09",
5+
disableHostPrefix: false,
56
signingName: "apigateway",
67
regionInfoProvider: defaultRegionInfoProvider
78
};

0 commit comments

Comments
 (0)