@aws-sdk/client-rbin 3.170.0 → 3.171.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-rbin
9
+
10
+
11
+
12
+
13
+
6
14
  # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
7
15
 
8
16
  **Note:** Version bump only for package @aws-sdk/client-rbin
@@ -32,7 +32,6 @@ import {
32
32
  UpdateRuleCommandOutput,
33
33
  } from "./commands/UpdateRuleCommand";
34
34
  import { RbinClient } from "./RbinClient";
35
-
36
35
  export declare class Rbin extends RbinClient {
37
36
  createRule(
38
37
  args: CreateRuleCommandInput,
@@ -47,7 +46,6 @@ export declare class Rbin extends RbinClient {
47
46
  options: __HttpHandlerOptions,
48
47
  cb: (err: any, data?: CreateRuleCommandOutput) => void
49
48
  ): void;
50
-
51
49
  deleteRule(
52
50
  args: DeleteRuleCommandInput,
53
51
  options?: __HttpHandlerOptions
@@ -61,7 +59,6 @@ export declare class Rbin extends RbinClient {
61
59
  options: __HttpHandlerOptions,
62
60
  cb: (err: any, data?: DeleteRuleCommandOutput) => void
63
61
  ): void;
64
-
65
62
  getRule(
66
63
  args: GetRuleCommandInput,
67
64
  options?: __HttpHandlerOptions
@@ -75,7 +72,6 @@ export declare class Rbin extends RbinClient {
75
72
  options: __HttpHandlerOptions,
76
73
  cb: (err: any, data?: GetRuleCommandOutput) => void
77
74
  ): void;
78
-
79
75
  listRules(
80
76
  args: ListRulesCommandInput,
81
77
  options?: __HttpHandlerOptions
@@ -89,7 +85,6 @@ export declare class Rbin extends RbinClient {
89
85
  options: __HttpHandlerOptions,
90
86
  cb: (err: any, data?: ListRulesCommandOutput) => void
91
87
  ): void;
92
-
93
88
  listTagsForResource(
94
89
  args: ListTagsForResourceCommandInput,
95
90
  options?: __HttpHandlerOptions
@@ -103,7 +98,6 @@ export declare class Rbin extends RbinClient {
103
98
  options: __HttpHandlerOptions,
104
99
  cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
105
100
  ): void;
106
-
107
101
  tagResource(
108
102
  args: TagResourceCommandInput,
109
103
  options?: __HttpHandlerOptions
@@ -117,7 +111,6 @@ export declare class Rbin extends RbinClient {
117
111
  options: __HttpHandlerOptions,
118
112
  cb: (err: any, data?: TagResourceCommandOutput) => void
119
113
  ): void;
120
-
121
114
  untagResource(
122
115
  args: UntagResourceCommandInput,
123
116
  options?: __HttpHandlerOptions
@@ -131,7 +124,6 @@ export declare class Rbin extends RbinClient {
131
124
  options: __HttpHandlerOptions,
132
125
  cb: (err: any, data?: UntagResourceCommandOutput) => void
133
126
  ): void;
134
-
135
127
  updateRule(
136
128
  args: UpdateRuleCommandInput,
137
129
  options?: __HttpHandlerOptions
@@ -95,47 +95,26 @@ export declare type ServiceOutputTypes =
95
95
  export interface ClientDefaults
96
96
  extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
97
97
  requestHandler?: __HttpHandler;
98
-
99
98
  sha256?: __HashConstructor;
100
-
101
99
  urlParser?: __UrlParser;
102
-
103
100
  bodyLengthChecker?: __BodyLengthCalculator;
104
-
105
101
  streamCollector?: __StreamCollector;
106
-
107
102
  base64Decoder?: __Decoder;
108
-
109
103
  base64Encoder?: __Encoder;
110
-
111
104
  utf8Decoder?: __Decoder;
112
-
113
105
  utf8Encoder?: __Encoder;
114
-
115
106
  runtime?: string;
116
-
117
107
  disableHostPrefix?: boolean;
118
-
119
108
  maxAttempts?: number | __Provider<number>;
120
-
121
109
  retryMode?: string | __Provider<string>;
122
-
123
110
  logger?: __Logger;
124
-
125
111
  useDualstackEndpoint?: boolean | __Provider<boolean>;
126
-
127
112
  useFipsEndpoint?: boolean | __Provider<boolean>;
128
-
129
113
  serviceId?: string;
130
-
131
114
  region?: string | __Provider<string>;
132
-
133
115
  credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
134
-
135
116
  regionInfoProvider?: RegionInfoProvider;
136
-
137
117
  defaultUserAgentProvider?: Provider<__UserAgent>;
138
-
139
118
  defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
140
119
  }
141
120
  declare type RbinClientConfigType = Partial<
@@ -148,7 +127,6 @@ declare type RbinClientConfigType = Partial<
148
127
  HostHeaderInputConfig &
149
128
  AwsAuthInputConfig &
150
129
  UserAgentInputConfig;
151
-
152
130
  export interface RbinClientConfig extends RbinClientConfigType {}
153
131
  declare type RbinClientResolvedConfigType =
154
132
  __SmithyResolvedConfiguration<__HttpHandlerOptions> &
@@ -159,10 +137,8 @@ declare type RbinClientResolvedConfigType =
159
137
  HostHeaderResolvedConfig &
160
138
  AwsAuthResolvedConfig &
161
139
  UserAgentResolvedConfig;
162
-
163
140
  export interface RbinClientResolvedConfig
164
141
  extends RbinClientResolvedConfigType {}
165
-
166
142
  export declare class RbinClient extends __Client<
167
143
  __HttpHandlerOptions,
168
144
  ServiceInputTypes,
@@ -171,7 +147,6 @@ export declare class RbinClient extends __Client<
171
147
  > {
172
148
  readonly config: RbinClientResolvedConfig;
173
149
  constructor(configuration: RbinClientConfig);
174
-
175
150
  destroy(): void;
176
151
  }
177
152
  export {};
@@ -15,7 +15,6 @@ export interface CreateRuleCommandInput extends CreateRuleRequest {}
15
15
  export interface CreateRuleCommandOutput
16
16
  extends CreateRuleResponse,
17
17
  __MetadataBearer {}
18
-
19
18
  export declare class CreateRuleCommand extends $Command<
20
19
  CreateRuleCommandInput,
21
20
  CreateRuleCommandOutput,
@@ -23,7 +22,6 @@ export declare class CreateRuleCommand extends $Command<
23
22
  > {
24
23
  readonly input: CreateRuleCommandInput;
25
24
  constructor(input: CreateRuleCommandInput);
26
-
27
25
  resolveMiddleware(
28
26
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
27
  configuration: RbinClientResolvedConfig,
@@ -15,7 +15,6 @@ export interface DeleteRuleCommandInput extends DeleteRuleRequest {}
15
15
  export interface DeleteRuleCommandOutput
16
16
  extends DeleteRuleResponse,
17
17
  __MetadataBearer {}
18
-
19
18
  export declare class DeleteRuleCommand extends $Command<
20
19
  DeleteRuleCommandInput,
21
20
  DeleteRuleCommandOutput,
@@ -23,7 +22,6 @@ export declare class DeleteRuleCommand extends $Command<
23
22
  > {
24
23
  readonly input: DeleteRuleCommandInput;
25
24
  constructor(input: DeleteRuleCommandInput);
26
-
27
25
  resolveMiddleware(
28
26
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
27
  configuration: RbinClientResolvedConfig,
@@ -15,7 +15,6 @@ export interface GetRuleCommandInput extends GetRuleRequest {}
15
15
  export interface GetRuleCommandOutput
16
16
  extends GetRuleResponse,
17
17
  __MetadataBearer {}
18
-
19
18
  export declare class GetRuleCommand extends $Command<
20
19
  GetRuleCommandInput,
21
20
  GetRuleCommandOutput,
@@ -23,7 +22,6 @@ export declare class GetRuleCommand extends $Command<
23
22
  > {
24
23
  readonly input: GetRuleCommandInput;
25
24
  constructor(input: GetRuleCommandInput);
26
-
27
25
  resolveMiddleware(
28
26
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
27
  configuration: RbinClientResolvedConfig,
@@ -15,7 +15,6 @@ export interface ListRulesCommandInput extends ListRulesRequest {}
15
15
  export interface ListRulesCommandOutput
16
16
  extends ListRulesResponse,
17
17
  __MetadataBearer {}
18
-
19
18
  export declare class ListRulesCommand extends $Command<
20
19
  ListRulesCommandInput,
21
20
  ListRulesCommandOutput,
@@ -23,7 +22,6 @@ export declare class ListRulesCommand extends $Command<
23
22
  > {
24
23
  readonly input: ListRulesCommandInput;
25
24
  constructor(input: ListRulesCommandInput);
26
-
27
25
  resolveMiddleware(
28
26
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
27
  configuration: RbinClientResolvedConfig,
@@ -19,7 +19,6 @@ export interface ListTagsForResourceCommandInput
19
19
  export interface ListTagsForResourceCommandOutput
20
20
  extends ListTagsForResourceResponse,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class ListTagsForResourceCommand extends $Command<
24
23
  ListTagsForResourceCommandInput,
25
24
  ListTagsForResourceCommandOutput,
@@ -27,7 +26,6 @@ export declare class ListTagsForResourceCommand extends $Command<
27
26
  > {
28
27
  readonly input: ListTagsForResourceCommandInput;
29
28
  constructor(input: ListTagsForResourceCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: RbinClientResolvedConfig,
@@ -15,7 +15,6 @@ export interface TagResourceCommandInput extends TagResourceRequest {}
15
15
  export interface TagResourceCommandOutput
16
16
  extends TagResourceResponse,
17
17
  __MetadataBearer {}
18
-
19
18
  export declare class TagResourceCommand extends $Command<
20
19
  TagResourceCommandInput,
21
20
  TagResourceCommandOutput,
@@ -23,7 +22,6 @@ export declare class TagResourceCommand extends $Command<
23
22
  > {
24
23
  readonly input: TagResourceCommandInput;
25
24
  constructor(input: TagResourceCommandInput);
26
-
27
25
  resolveMiddleware(
28
26
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
27
  configuration: RbinClientResolvedConfig,
@@ -18,7 +18,6 @@ export interface UntagResourceCommandInput extends UntagResourceRequest {}
18
18
  export interface UntagResourceCommandOutput
19
19
  extends UntagResourceResponse,
20
20
  __MetadataBearer {}
21
-
22
21
  export declare class UntagResourceCommand extends $Command<
23
22
  UntagResourceCommandInput,
24
23
  UntagResourceCommandOutput,
@@ -26,7 +25,6 @@ export declare class UntagResourceCommand extends $Command<
26
25
  > {
27
26
  readonly input: UntagResourceCommandInput;
28
27
  constructor(input: UntagResourceCommandInput);
29
-
30
28
  resolveMiddleware(
31
29
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
30
  configuration: RbinClientResolvedConfig,
@@ -15,7 +15,6 @@ export interface UpdateRuleCommandInput extends UpdateRuleRequest {}
15
15
  export interface UpdateRuleCommandOutput
16
16
  extends UpdateRuleResponse,
17
17
  __MetadataBearer {}
18
-
19
18
  export declare class UpdateRuleCommand extends $Command<
20
19
  UpdateRuleCommandInput,
21
20
  UpdateRuleCommandOutput,
@@ -23,7 +22,6 @@ export declare class UpdateRuleCommand extends $Command<
23
22
  > {
24
23
  readonly input: UpdateRuleCommandInput;
25
24
  constructor(input: UpdateRuleCommandInput);
26
-
27
25
  resolveMiddleware(
28
26
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
27
  configuration: RbinClientResolvedConfig,
@@ -2,7 +2,6 @@ import {
2
2
  ServiceException as __ServiceException,
3
3
  ServiceExceptionOptions as __ServiceExceptionOptions,
4
4
  } from "@aws-sdk/smithy-client";
5
-
6
5
  export declare class RbinServiceException extends __ServiceException {
7
6
  constructor(options: __ServiceExceptionOptions);
8
7
  }
@@ -1,9 +1,7 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { RbinServiceException as __BaseException } from "./RbinServiceException";
3
-
4
3
  export interface ResourceTag {
5
4
  ResourceTagKey: string | undefined;
6
-
7
5
  ResourceTagValue?: string;
8
6
  }
9
7
  export declare enum ResourceType {
@@ -13,27 +11,19 @@ export declare enum ResourceType {
13
11
  export declare enum RetentionPeriodUnit {
14
12
  DAYS = "DAYS",
15
13
  }
16
-
17
14
  export interface RetentionPeriod {
18
15
  RetentionPeriodValue: number | undefined;
19
-
20
16
  RetentionPeriodUnit: RetentionPeriodUnit | string | undefined;
21
17
  }
22
-
23
18
  export interface Tag {
24
19
  Key: string | undefined;
25
-
26
20
  Value: string | undefined;
27
21
  }
28
22
  export interface CreateRuleRequest {
29
23
  RetentionPeriod: RetentionPeriod | undefined;
30
-
31
24
  Description?: string;
32
-
33
25
  Tags?: Tag[];
34
-
35
26
  ResourceType: ResourceType | string | undefined;
36
-
37
27
  ResourceTags?: ResourceTag[];
38
28
  }
39
29
  export declare enum RuleStatus {
@@ -42,25 +32,17 @@ export declare enum RuleStatus {
42
32
  }
43
33
  export interface CreateRuleResponse {
44
34
  Identifier?: string;
45
-
46
35
  RetentionPeriod?: RetentionPeriod;
47
-
48
36
  Description?: string;
49
-
50
37
  Tags?: Tag[];
51
-
52
38
  ResourceType?: ResourceType | string;
53
-
54
39
  ResourceTags?: ResourceTag[];
55
-
56
40
  Status?: RuleStatus | string;
57
41
  }
58
-
59
42
  export declare class InternalServerException extends __BaseException {
60
43
  readonly name: "InternalServerException";
61
44
  readonly $fault: "server";
62
45
  Message?: string;
63
-
64
46
  constructor(
65
47
  opts: __ExceptionOptionType<InternalServerException, __BaseException>
66
48
  );
@@ -68,14 +50,11 @@ export declare class InternalServerException extends __BaseException {
68
50
  export declare enum ServiceQuotaExceededExceptionReason {
69
51
  SERVICE_QUOTA_EXCEEDED = "SERVICE_QUOTA_EXCEEDED",
70
52
  }
71
-
72
53
  export declare class ServiceQuotaExceededException extends __BaseException {
73
54
  readonly name: "ServiceQuotaExceededException";
74
55
  readonly $fault: "client";
75
56
  Message?: string;
76
-
77
57
  Reason?: ServiceQuotaExceededExceptionReason | string;
78
-
79
58
  constructor(
80
59
  opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
81
60
  );
@@ -84,14 +63,11 @@ export declare enum ValidationExceptionReason {
84
63
  INVALID_PAGE_TOKEN = "INVALID_PAGE_TOKEN",
85
64
  INVALID_PARAMETER_VALUE = "INVALID_PARAMETER_VALUE",
86
65
  }
87
-
88
66
  export declare class ValidationException extends __BaseException {
89
67
  readonly name: "ValidationException";
90
68
  readonly $fault: "client";
91
69
  Message?: string;
92
-
93
70
  Reason?: ValidationExceptionReason | string;
94
-
95
71
  constructor(
96
72
  opts: __ExceptionOptionType<ValidationException, __BaseException>
97
73
  );
@@ -103,14 +79,11 @@ export interface DeleteRuleResponse {}
103
79
  export declare enum ResourceNotFoundExceptionReason {
104
80
  RULE_NOT_FOUND = "RULE_NOT_FOUND",
105
81
  }
106
-
107
82
  export declare class ResourceNotFoundException extends __BaseException {
108
83
  readonly name: "ResourceNotFoundException";
109
84
  readonly $fault: "client";
110
85
  Message?: string;
111
-
112
86
  Reason?: ResourceNotFoundExceptionReason | string;
113
-
114
87
  constructor(
115
88
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
116
89
  );
@@ -120,37 +93,25 @@ export interface GetRuleRequest {
120
93
  }
121
94
  export interface GetRuleResponse {
122
95
  Identifier?: string;
123
-
124
96
  Description?: string;
125
-
126
97
  ResourceType?: ResourceType | string;
127
-
128
98
  RetentionPeriod?: RetentionPeriod;
129
-
130
99
  ResourceTags?: ResourceTag[];
131
-
132
100
  Status?: RuleStatus | string;
133
101
  }
134
102
  export interface ListRulesRequest {
135
103
  MaxResults?: number;
136
-
137
104
  NextToken?: string;
138
-
139
105
  ResourceType: ResourceType | string | undefined;
140
-
141
106
  ResourceTags?: ResourceTag[];
142
107
  }
143
-
144
108
  export interface RuleSummary {
145
109
  Identifier?: string;
146
-
147
110
  Description?: string;
148
-
149
111
  RetentionPeriod?: RetentionPeriod;
150
112
  }
151
113
  export interface ListRulesResponse {
152
114
  Rules?: RuleSummary[];
153
-
154
115
  NextToken?: string;
155
116
  }
156
117
  export interface ListTagsForResourceRequest {
@@ -161,111 +122,80 @@ export interface ListTagsForResourceResponse {
161
122
  }
162
123
  export interface TagResourceRequest {
163
124
  ResourceArn: string | undefined;
164
-
165
125
  Tags: Tag[] | undefined;
166
126
  }
167
127
  export interface TagResourceResponse {}
168
128
  export interface UntagResourceRequest {
169
129
  ResourceArn: string | undefined;
170
-
171
130
  TagKeys: string[] | undefined;
172
131
  }
173
132
  export interface UntagResourceResponse {}
174
133
  export interface UpdateRuleRequest {
175
134
  Identifier: string | undefined;
176
-
177
135
  RetentionPeriod?: RetentionPeriod;
178
-
179
136
  Description?: string;
180
-
181
137
  ResourceType?: ResourceType | string;
182
-
183
138
  ResourceTags?: ResourceTag[];
184
139
  }
185
140
  export interface UpdateRuleResponse {
186
141
  Identifier?: string;
187
-
188
142
  RetentionPeriod?: RetentionPeriod;
189
-
190
143
  Description?: string;
191
-
192
144
  ResourceType?: ResourceType | string;
193
-
194
145
  ResourceTags?: ResourceTag[];
195
-
196
146
  Status?: RuleStatus | string;
197
147
  }
198
-
199
148
  export declare const ResourceTagFilterSensitiveLog: (obj: ResourceTag) => any;
200
-
201
149
  export declare const RetentionPeriodFilterSensitiveLog: (
202
150
  obj: RetentionPeriod
203
151
  ) => any;
204
-
205
152
  export declare const TagFilterSensitiveLog: (obj: Tag) => any;
206
-
207
153
  export declare const CreateRuleRequestFilterSensitiveLog: (
208
154
  obj: CreateRuleRequest
209
155
  ) => any;
210
-
211
156
  export declare const CreateRuleResponseFilterSensitiveLog: (
212
157
  obj: CreateRuleResponse
213
158
  ) => any;
214
-
215
159
  export declare const DeleteRuleRequestFilterSensitiveLog: (
216
160
  obj: DeleteRuleRequest
217
161
  ) => any;
218
-
219
162
  export declare const DeleteRuleResponseFilterSensitiveLog: (
220
163
  obj: DeleteRuleResponse
221
164
  ) => any;
222
-
223
165
  export declare const GetRuleRequestFilterSensitiveLog: (
224
166
  obj: GetRuleRequest
225
167
  ) => any;
226
-
227
168
  export declare const GetRuleResponseFilterSensitiveLog: (
228
169
  obj: GetRuleResponse
229
170
  ) => any;
230
-
231
171
  export declare const ListRulesRequestFilterSensitiveLog: (
232
172
  obj: ListRulesRequest
233
173
  ) => any;
234
-
235
174
  export declare const RuleSummaryFilterSensitiveLog: (obj: RuleSummary) => any;
236
-
237
175
  export declare const ListRulesResponseFilterSensitiveLog: (
238
176
  obj: ListRulesResponse
239
177
  ) => any;
240
-
241
178
  export declare const ListTagsForResourceRequestFilterSensitiveLog: (
242
179
  obj: ListTagsForResourceRequest
243
180
  ) => any;
244
-
245
181
  export declare const ListTagsForResourceResponseFilterSensitiveLog: (
246
182
  obj: ListTagsForResourceResponse
247
183
  ) => any;
248
-
249
184
  export declare const TagResourceRequestFilterSensitiveLog: (
250
185
  obj: TagResourceRequest
251
186
  ) => any;
252
-
253
187
  export declare const TagResourceResponseFilterSensitiveLog: (
254
188
  obj: TagResourceResponse
255
189
  ) => any;
256
-
257
190
  export declare const UntagResourceRequestFilterSensitiveLog: (
258
191
  obj: UntagResourceRequest
259
192
  ) => any;
260
-
261
193
  export declare const UntagResourceResponseFilterSensitiveLog: (
262
194
  obj: UntagResourceResponse
263
195
  ) => any;
264
-
265
196
  export declare const UpdateRuleRequestFilterSensitiveLog: (
266
197
  obj: UpdateRuleRequest
267
198
  ) => any;
268
-
269
199
  export declare const UpdateRuleResponseFilterSensitiveLog: (
270
200
  obj: UpdateRuleResponse
271
201
  ) => any;
@@ -1,6 +1,5 @@
1
1
  import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
2
  import { RbinClientConfig } from "./RbinClient";
3
-
4
3
  export declare const getRuntimeConfig: (config: RbinClientConfig) => {
5
4
  runtime: string;
6
5
  defaultsMode: import("@aws-sdk/types").Provider<
@@ -1,6 +1,5 @@
1
1
  import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
2
  import { RbinClientConfig } from "./RbinClient";
3
-
4
3
  export declare const getRuntimeConfig: (config: RbinClientConfig) => {
5
4
  runtime: string;
6
5
  defaultsMode: import("@aws-sdk/types").Provider<
@@ -1,5 +1,4 @@
1
1
  import { RbinClientConfig } from "./RbinClient";
2
-
3
2
  export declare const getRuntimeConfig: (config: RbinClientConfig) => {
4
3
  runtime: string;
5
4
  sha256: import("@aws-sdk/types").HashConstructor;
@@ -1,6 +1,5 @@
1
1
  import { Logger as __Logger } from "@aws-sdk/types";
2
2
  import { RbinClientConfig } from "./RbinClient";
3
-
4
3
  export declare const getRuntimeConfig: (config: RbinClientConfig) => {
5
4
  apiVersion: string;
6
5
  disableHostPrefix: boolean;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-rbin",
3
3
  "description": "AWS SDK for JavaScript Rbin Client for Node.js, Browser and React Native",
4
- "version": "3.170.0",
4
+ "version": "3.171.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -19,35 +19,35 @@
19
19
  "dependencies": {
20
20
  "@aws-crypto/sha256-browser": "2.0.0",
21
21
  "@aws-crypto/sha256-js": "2.0.0",
22
- "@aws-sdk/client-sts": "3.170.0",
23
- "@aws-sdk/config-resolver": "3.170.0",
24
- "@aws-sdk/credential-provider-node": "3.170.0",
25
- "@aws-sdk/fetch-http-handler": "3.170.0",
26
- "@aws-sdk/hash-node": "3.170.0",
27
- "@aws-sdk/invalid-dependency": "3.170.0",
28
- "@aws-sdk/middleware-content-length": "3.170.0",
29
- "@aws-sdk/middleware-host-header": "3.170.0",
30
- "@aws-sdk/middleware-logger": "3.170.0",
31
- "@aws-sdk/middleware-recursion-detection": "3.170.0",
32
- "@aws-sdk/middleware-retry": "3.170.0",
33
- "@aws-sdk/middleware-serde": "3.170.0",
34
- "@aws-sdk/middleware-signing": "3.170.0",
35
- "@aws-sdk/middleware-stack": "3.170.0",
36
- "@aws-sdk/middleware-user-agent": "3.170.0",
37
- "@aws-sdk/node-config-provider": "3.170.0",
38
- "@aws-sdk/node-http-handler": "3.170.0",
39
- "@aws-sdk/protocol-http": "3.170.0",
40
- "@aws-sdk/smithy-client": "3.170.0",
41
- "@aws-sdk/types": "3.170.0",
42
- "@aws-sdk/url-parser": "3.170.0",
22
+ "@aws-sdk/client-sts": "3.171.0",
23
+ "@aws-sdk/config-resolver": "3.171.0",
24
+ "@aws-sdk/credential-provider-node": "3.171.0",
25
+ "@aws-sdk/fetch-http-handler": "3.171.0",
26
+ "@aws-sdk/hash-node": "3.171.0",
27
+ "@aws-sdk/invalid-dependency": "3.171.0",
28
+ "@aws-sdk/middleware-content-length": "3.171.0",
29
+ "@aws-sdk/middleware-host-header": "3.171.0",
30
+ "@aws-sdk/middleware-logger": "3.171.0",
31
+ "@aws-sdk/middleware-recursion-detection": "3.171.0",
32
+ "@aws-sdk/middleware-retry": "3.171.0",
33
+ "@aws-sdk/middleware-serde": "3.171.0",
34
+ "@aws-sdk/middleware-signing": "3.171.0",
35
+ "@aws-sdk/middleware-stack": "3.171.0",
36
+ "@aws-sdk/middleware-user-agent": "3.171.0",
37
+ "@aws-sdk/node-config-provider": "3.171.0",
38
+ "@aws-sdk/node-http-handler": "3.171.0",
39
+ "@aws-sdk/protocol-http": "3.171.0",
40
+ "@aws-sdk/smithy-client": "3.171.0",
41
+ "@aws-sdk/types": "3.171.0",
42
+ "@aws-sdk/url-parser": "3.171.0",
43
43
  "@aws-sdk/util-base64-browser": "3.170.0",
44
44
  "@aws-sdk/util-base64-node": "3.170.0",
45
45
  "@aws-sdk/util-body-length-browser": "3.170.0",
46
46
  "@aws-sdk/util-body-length-node": "3.170.0",
47
- "@aws-sdk/util-defaults-mode-browser": "3.170.0",
48
- "@aws-sdk/util-defaults-mode-node": "3.170.0",
49
- "@aws-sdk/util-user-agent-browser": "3.170.0",
50
- "@aws-sdk/util-user-agent-node": "3.170.0",
47
+ "@aws-sdk/util-defaults-mode-browser": "3.171.0",
48
+ "@aws-sdk/util-defaults-mode-node": "3.171.0",
49
+ "@aws-sdk/util-user-agent-browser": "3.171.0",
50
+ "@aws-sdk/util-user-agent-node": "3.171.0",
51
51
  "@aws-sdk/util-utf8-browser": "3.170.0",
52
52
  "@aws-sdk/util-utf8-node": "3.170.0",
53
53
  "tslib": "^2.3.1"