Skip to content

Commit 191cd2e

Browse files
Add Paginator for DescribeAccountLimits, and fix Paginators for DescribeTrustStoreAssociations, DescribeTrustStoreRevocations, and DescribeTrustStores
1 parent 69bdfb1 commit 191cd2e

34 files changed

+860
-894
lines changed

generator/ServiceModels/elasticloadbalancingv2/elasticloadbalancingv2-2015-12-01.api.json

Lines changed: 68 additions & 136 deletions
Large diffs are not rendered by default.

generator/ServiceModels/elasticloadbalancingv2/elasticloadbalancingv2-2015-12-01.docs.json

Lines changed: 176 additions & 334 deletions
Large diffs are not rendered by default.

generator/ServiceModels/elasticloadbalancingv2/elasticloadbalancingv2-2015-12-01.examples.json

Lines changed: 80 additions & 161 deletions
Large diffs are not rendered by default.

generator/ServiceModels/elasticloadbalancingv2/elasticloadbalancingv2-2015-12-01.normal.json

Lines changed: 86 additions & 154 deletions
Large diffs are not rendered by default.

generator/ServiceModels/elasticloadbalancingv2/elasticloadbalancingv2-2015-12-01.paginators.json

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
{
22
"pagination": {
3+
"DescribeAccountLimits": {
4+
"input_token": "Marker",
5+
"output_token": "NextMarker",
6+
"result_key": "Limits"
7+
},
38
"DescribeListenerCertificates": {
49
"input_token": "Marker",
510
"output_token": "NextMarker",
@@ -28,17 +33,20 @@
2833
"DescribeTrustStoreAssociations": {
2934
"input_token": "Marker",
3035
"limit_key": "PageSize",
31-
"output_token": "NextMarker"
36+
"output_token": "NextMarker",
37+
"result_key": "TrustStoreAssociations"
3238
},
3339
"DescribeTrustStoreRevocations": {
3440
"input_token": "Marker",
3541
"limit_key": "PageSize",
36-
"output_token": "NextMarker"
42+
"output_token": "NextMarker",
43+
"result_key": "TrustStoreRevocations"
3744
},
3845
"DescribeTrustStores": {
3946
"input_token": "Marker",
4047
"limit_key": "PageSize",
41-
"output_token": "NextMarker"
48+
"output_token": "NextMarker",
49+
"result_key": "TrustStores"
4250
}
4351
}
4452
}

sdk/src/Services/ElasticLoadBalancingV2/Generated/Model/AddListenerCertificatesRequest.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ namespace Amazon.ElasticLoadBalancingV2.Model
4141
/// </para>
4242
///
4343
/// <para>
44-
/// For more information, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/application/create-https-listener.html">HTTPS
45-
/// listeners</a> in the <i>Application Load Balancers Guide</i> or <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/network/create-tls-listener.html">TLS
46-
/// listeners</a> in the <i>Network Load Balancers Guide</i>.
44+
/// For more information, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/application/https-listener-certificates.html">SSL
45+
/// certificates</a> in the <i>Application Load Balancers Guide</i> or <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/network/tls-listener-certificates.html">Server
46+
/// certificates</a> in the <i>Network Load Balancers Guide</i>.
4747
/// </para>
4848
/// </summary>
4949
public partial class AddListenerCertificatesRequest : AmazonElasticLoadBalancingV2Request

sdk/src/Services/ElasticLoadBalancingV2/Generated/Model/CreateListenerRequest.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ public partial class CreateListenerRequest : AmazonElasticLoadBalancingV2Request
9999
/// </para>
100100
/// </li> </ul>
101101
/// <para>
102-
/// For more information, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/network/create-tls-listener.html#alpn-policies">ALPN
102+
/// For more information, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/network/load-balancer-listeners.html#alpn-policies">ALPN
103103
/// policies</a> in the <i>Network Load Balancers Guide</i>.
104104
/// </para>
105105
/// <para />
@@ -256,8 +256,8 @@ internal bool IsSetProtocol()
256256
/// </para>
257257
///
258258
/// <para>
259-
/// For more information, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/application/create-https-listener.html#describe-ssl-policies">Security
260-
/// policies</a> in the <i>Application Load Balancers Guide</i> and <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/network/create-tls-listener.html#describe-ssl-policies">Security
259+
/// For more information, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/application/describe-ssl-policies.html">Security
260+
/// policies</a> in the <i>Application Load Balancers Guide</i> and <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/network/describe-ssl-policies.html">Security
261261
/// policies</a> in the <i>Network Load Balancers Guide</i>.
262262
/// </para>
263263
/// </summary>

sdk/src/Services/ElasticLoadBalancingV2/Generated/Model/CreateTrustStoreRequest.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,12 @@ namespace Amazon.ElasticLoadBalancingV2.Model
3232
/// <summary>
3333
/// Container for the parameters to the CreateTrustStore operation.
3434
/// Creates a trust store.
35+
///
36+
///
37+
/// <para>
38+
/// For more information, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/application/mutual-authentication.html">Mutual
39+
/// TLS for Application Load Balancers</a>.
40+
/// </para>
3541
/// </summary>
3642
public partial class CreateTrustStoreRequest : AmazonElasticLoadBalancingV2Request
3743
{

sdk/src/Services/ElasticLoadBalancingV2/Generated/Model/DeregisterTargetsRequest.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,17 +47,17 @@ namespace Amazon.ElasticLoadBalancingV2.Model
4747
/// </para>
4848
/// <ul> <li>
4949
/// <para>
50-
/// <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/application/load-balancer-target-groups.html#deregistration-delay">
50+
/// <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/application/edit-target-group-attributes.html#deregistration-delay">
5151
/// Deregistration delay</a> in the <i>Application Load Balancers User Guide</i>
5252
/// </para>
5353
/// </li> <li>
5454
/// <para>
55-
/// <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/network/load-balancer-target-groups.html#deregistration-delay">
55+
/// <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/network/edit-target-group-attributes.html#deregistration-delay">
5656
/// Deregistration delay</a> in the <i>Network Load Balancers User Guide</i>
5757
/// </para>
5858
/// </li> <li>
5959
/// <para>
60-
/// <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/gateway/target-groups.html#deregistration-delay">
60+
/// <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/gateway/edit-target-group-attributes.html#deregistration-delay">
6161
/// Deregistration delay</a> in the <i>Gateway Load Balancers User Guide</i>
6262
/// </para>
6363
/// </li> </ul>

sdk/src/Services/ElasticLoadBalancingV2/Generated/Model/DescribeListenerCertificatesRequest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ namespace Amazon.ElasticLoadBalancingV2.Model
4242
/// </para>
4343
///
4444
/// <para>
45-
/// For more information, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/application/create-https-listener.html#https-listener-certificates">SSL
46-
/// certificates</a> in the <i>Application Load Balancers Guide</i> or <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/network/create-tls-listener.html#tls-listener-certificate">Server
45+
/// For more information, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/application/https-listener-certificates.html">SSL
46+
/// certificates</a> in the <i>Application Load Balancers Guide</i> or <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/network/tls-listener-certificates.html">Server
4747
/// certificates</a> in the <i>Network Load Balancers Guide</i>.
4848
/// </para>
4949
/// </summary>

0 commit comments

Comments
 (0)