@aws-sdk/client-rtbfabric 3.1049.0 → 3.1051.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.
@@ -207,6 +207,7 @@ const _k = "key";
207
207
  const _l = "links";
208
208
  const _lC = "listenerConfig";
209
209
  const _lI = "linkId";
210
+ const _lRC = "linksRequestedCount";
210
211
  const _lS = "logSettings";
211
212
  const _lT = "loggingTypes";
212
213
  const _m = "message";
@@ -558,8 +559,8 @@ exports.GetResponderGatewayRequest$ = [3, n0, _GRGRet,
558
559
  ];
559
560
  exports.GetResponderGatewayResponse$ = [3, n0, _GRGRete,
560
561
  0,
561
- [_vI, _sI, _sGI, _st, _po, _pr, _gI, _de, _cA, _uA, _dN, _lC, _tSC, _mEC, _t, _aLC, _tLC, _iLC, _gT, _eIE],
562
- [0, 64 | 0, 64 | 0, 0, 1, 0, 0, 0, 4, 4, 0, () => exports.ListenerConfig$, [() => exports.TrustStoreConfiguration$, 0], [() => exports.ManagedEndpointConfiguration$, 0], 128 | 0, 1, 1, 1, 0, 0], 7
562
+ [_vI, _sI, _sGI, _st, _po, _pr, _gI, _de, _cA, _uA, _dN, _lC, _tSC, _mEC, _t, _aLC, _tLC, _iLC, _lRC, _gT, _eIE],
563
+ [0, 64 | 0, 64 | 0, 0, 1, 0, 0, 0, 4, 4, 0, () => exports.ListenerConfig$, [() => exports.TrustStoreConfiguration$, 0], [() => exports.ManagedEndpointConfiguration$, 0], 128 | 0, 1, 1, 1, 1, 0, 0], 7
563
564
  ];
564
565
  exports.HeaderTagAction$ = [3, n0, _HTA,
565
566
  0,
@@ -202,6 +202,7 @@ const _k = "key";
202
202
  const _l = "links";
203
203
  const _lC = "listenerConfig";
204
204
  const _lI = "linkId";
205
+ const _lRC = "linksRequestedCount";
205
206
  const _lS = "logSettings";
206
207
  const _lT = "loggingTypes";
207
208
  const _m = "message";
@@ -553,8 +554,8 @@ export var GetResponderGatewayRequest$ = [3, n0, _GRGRet,
553
554
  ];
554
555
  export var GetResponderGatewayResponse$ = [3, n0, _GRGRete,
555
556
  0,
556
- [_vI, _sI, _sGI, _st, _po, _pr, _gI, _de, _cA, _uA, _dN, _lC, _tSC, _mEC, _t, _aLC, _tLC, _iLC, _gT, _eIE],
557
- [0, 64 | 0, 64 | 0, 0, 1, 0, 0, 0, 4, 4, 0, () => ListenerConfig$, [() => TrustStoreConfiguration$, 0], [() => ManagedEndpointConfiguration$, 0], 128 | 0, 1, 1, 1, 0, 0], 7
557
+ [_vI, _sI, _sGI, _st, _po, _pr, _gI, _de, _cA, _uA, _dN, _lC, _tSC, _mEC, _t, _aLC, _tLC, _iLC, _lRC, _gT, _eIE],
558
+ [0, 64 | 0, 64 | 0, 0, 1, 0, 0, 0, 4, 4, 0, () => ListenerConfig$, [() => TrustStoreConfiguration$, 0], [() => ManagedEndpointConfiguration$, 0], 128 | 0, 1, 1, 1, 1, 0, 0], 7
558
559
  ];
559
560
  export var HeaderTagAction$ = [3, n0, _HTA,
560
561
  0,
@@ -101,6 +101,7 @@ declare const GetResponderGatewayCommand_base: {
101
101
  * // activeLinksCount: Number("int"),
102
102
  * // totalLinksCount: Number("int"),
103
103
  * // inboundLinksCount: Number("int"),
104
+ * // linksRequestedCount: Number("int"),
104
105
  * // gatewayType: "EXTERNAL" || "INTERNAL",
105
106
  * // externalInboundEndpoint: "STRING_VALUE",
106
107
  * // };
@@ -147,6 +148,7 @@ declare const GetResponderGatewayCommand_base: {
147
148
  * description: "My responder gateway",
148
149
  * gatewayId: "rtb-gw-12345678",
149
150
  * inboundLinksCount: 3,
151
+ * linksRequestedCount: 3,
150
152
  * port: 443,
151
153
  * protocol: "HTTPS",
152
154
  * securityGroupIds: [
@@ -715,55 +715,53 @@ export interface CreateLinkResponse {
715
715
  customerProvidedId?: string | undefined;
716
716
  }
717
717
  /**
718
- * Key-value pair for query string matching
718
+ * <p>A key-value pair for query string matching in a routing rule condition.</p>
719
719
  * @public
720
720
  */
721
721
  export interface QueryStringKeyValuePair {
722
722
  /**
723
- * RFC 3986 unreserved characters
723
+ * <p>The key of the query string parameter to match. Must contain only RFC 3986 unreserved characters.</p>
724
724
  * @public
725
725
  */
726
726
  key: string | undefined;
727
727
  /**
728
- * RFC 3986 unreserved characters
728
+ * <p>The value of the query string parameter to match. Must contain only RFC 3986 unreserved characters.</p>
729
729
  * @public
730
730
  */
731
731
  value: string | undefined;
732
732
  }
733
733
  /**
734
- * Conditions bag for a routing rule.
735
- * All non-null fields must match (AND logic). At least one field must be set (enforced by CP).
734
+ * <p>The conditions for a routing rule. All specified fields must match for the rule to apply (AND logic). At least one condition field must be set.</p>
736
735
  * @public
737
736
  */
738
737
  export interface RuleCondition {
739
738
  /**
740
- * Exact host match RFC 3986 unreserved characters
739
+ * <p>The exact host header value to match.</p>
741
740
  * @public
742
741
  */
743
742
  hostHeader?: string | undefined;
744
743
  /**
745
- * Wildcard host pattern (e.g., *.example.com) — RFC 3986 unreserved plus *
744
+ * <p>A wildcard pattern for host header matching (for example, <code>*.example.com</code>).</p>
746
745
  * @public
747
746
  */
748
747
  hostHeaderWildcard?: string | undefined;
749
748
  /**
750
- * Path prefix matching strict starts-with, no wildcard (preferred for new rules).
751
- * Must start with /; RFC 3986 unreserved plus /
749
+ * <p>The path prefix to match. The request path must start with this value. Must start with <code>/</code>.</p>
752
750
  * @public
753
751
  */
754
752
  pathPrefix?: string | undefined;
755
753
  /**
756
- * Exact path match must start with /; RFC 3986 unreserved plus /
754
+ * <p>The exact path to match. Must start with <code>/</code>.</p>
757
755
  * @public
758
756
  */
759
757
  pathExact?: string | undefined;
760
758
  /**
761
- * Query string key=value pair match (single pair)
759
+ * <p>A query string key-value pair that must be present and match exactly.</p>
762
760
  * @public
763
761
  */
764
762
  queryStringEquals?: QueryStringKeyValuePair | undefined;
765
763
  /**
766
- * Query string key presence check (any value accepted) — RFC 3986 unreserved characters
764
+ * <p>A query string key that must be present in the request (any value is accepted).</p>
767
765
  * @public
768
766
  */
769
767
  queryStringExists?: string | undefined;
@@ -1532,7 +1530,7 @@ export interface ListLinkRoutingRulesRequest {
1532
1530
  maxResults?: number | undefined;
1533
1531
  }
1534
1532
  /**
1535
- * Summary of a routing rule for list responses
1533
+ * <p>A summary of a link routing rule.</p>
1536
1534
  * @public
1537
1535
  */
1538
1536
  export interface LinkRoutingRuleSummary {
@@ -2288,10 +2286,17 @@ export interface GetResponderGatewayResponse {
2288
2286
  */
2289
2287
  totalLinksCount?: number | undefined;
2290
2288
  /**
2291
- * <p>The count of inbound links for the responder gateway.</p>
2289
+ * <p>Deprecated. Use 'linksRequestedCount' instead.</p>
2290
+ *
2291
+ * @deprecated (since 2026-05-11) Use linksRequestedCount instead.
2292
2292
  * @public
2293
2293
  */
2294
2294
  inboundLinksCount?: number | undefined;
2295
+ /**
2296
+ * <p>The count of requested links waiting for the responder gateway to accept or reject.</p>
2297
+ * @public
2298
+ */
2299
+ linksRequestedCount?: number | undefined;
2295
2300
  /**
2296
2301
  * <p>The type of gateway. Valid values are <code>EXTERNAL</code> or <code>INTERNAL</code>.</p>
2297
2302
  * @public
@@ -603,6 +603,7 @@ export interface GetResponderGatewayResponse {
603
603
  activeLinksCount?: number | undefined;
604
604
  totalLinksCount?: number | undefined;
605
605
  inboundLinksCount?: number | undefined;
606
+ linksRequestedCount?: number | undefined;
606
607
  gatewayType?: GatewayType | undefined;
607
608
  externalInboundEndpoint?: string | undefined;
608
609
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-rtbfabric",
3
3
  "description": "AWS SDK for JavaScript Rtbfabric Client for Node.js, Browser and React Native",
4
- "version": "3.1049.0",
4
+ "version": "3.1051.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-rtbfabric",