Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
102 changes: 102 additions & 0 deletions botocore/data/elbv2/2015-12-01/service-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,22 @@
},
"documentation":"<p>Describes the current Elastic Load Balancing resource limits for your AWS account.</p> <p>For more information, see the following:</p> <ul> <li> <p> <a href=\"https://docs.aws.amazon.com/elasticloadbalancing/latest/application/load-balancer-limits.html\">Quotas for your Application Load Balancers</a> </p> </li> <li> <p> <a href=\"https://docs.aws.amazon.com/elasticloadbalancing/latest/network/load-balancer-limits.html\">Quotas for your Network Load Balancers</a> </p> </li> <li> <p> <a href=\"https://docs.aws.amazon.com/elasticloadbalancing/latest/gateway/quotas-limits.html\">Quotas for your Gateway Load Balancers</a> </p> </li> </ul>"
},
"DescribeListenerAttributes":{
"name":"DescribeListenerAttributes",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DescribeListenerAttributesInput"},
"output":{
"shape":"DescribeListenerAttributesOutput",
"resultWrapper":"DescribeListenerAttributesResult"
},
"errors":[
{"shape":"ListenerNotFoundException"}
],
"documentation":"<p>Describes the attributes for the specified listener.</p>"
},
"DescribeListenerCertificates":{
"name":"DescribeListenerCertificates",
"http":{
Expand Down Expand Up @@ -458,6 +474,23 @@
],
"documentation":"<p>Replaces the specified properties of the specified listener. Any properties that you do not specify remain unchanged.</p> <p>Changing the protocol from HTTPS to HTTP, or from TLS to TCP, removes the security policy and default certificate properties. If you change the protocol from HTTP to HTTPS, or from TCP to TLS, you must add the security policy and default certificate properties.</p> <p>To add an item to a list, remove an item from a list, or update an item in a list, you must provide the entire list. For example, to add an action, specify a list with the current actions plus the new action.</p>"
},
"ModifyListenerAttributes":{
"name":"ModifyListenerAttributes",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"ModifyListenerAttributesInput"},
"output":{
"shape":"ModifyListenerAttributesOutput",
"resultWrapper":"ModifyListenerAttributesResult"
},
"errors":[
{"shape":"ListenerNotFoundException"},
{"shape":"InvalidConfigurationRequestException"}
],
"documentation":"<p>Modifies the specified attributes of the specified listener.</p>"
},
"ModifyLoadBalancerAttributes":{
"name":"ModifyLoadBalancerAttributes",
"http":{
Expand Down Expand Up @@ -1384,6 +1417,25 @@
}
}
},
"DescribeListenerAttributesInput":{
"type":"structure",
"required":["ListenerArn"],
"members":{
"ListenerArn":{
"shape":"ListenerArn",
"documentation":"<p>The Amazon Resource Name (ARN) of the listener.</p>"
}
}
},
"DescribeListenerAttributesOutput":{
"type":"structure",
"members":{
"Attributes":{
"shape":"ListenerAttributes",
"documentation":"<p>Information about the listener attributes.</p>"
}
}
},
"DescribeListenerCertificatesInput":{
"type":"structure",
"required":["ListenerArn"],
Expand Down Expand Up @@ -1985,6 +2037,30 @@
"type":"list",
"member":{"shape":"ListenerArn"}
},
"ListenerAttribute":{
"type":"structure",
"members":{
"Key":{
"shape":"ListenerAttributeKey",
"documentation":"<p>The name of the attribute.</p> <p>The following attribute is supported by Network Load Balancers, and Gateway Load Balancers.</p> <ul> <li> <p> <code>tcp.idle_timeout.seconds</code> - The tcp idle timeout value, in seconds. The valid range is 60-6000 seconds. The default is 350 seconds.</p> </li> </ul>"
},
"Value":{
"shape":"ListenerAttributeValue",
"documentation":"<p>The value of the attribute.</p>"
}
},
"documentation":"<p>Information about a listener attribute.</p>"
},
"ListenerAttributeKey":{
"type":"string",
"max":256,
"pattern":"^[a-zA-Z0-9._]+$"
},
"ListenerAttributeValue":{"type":"string"},
"ListenerAttributes":{
"type":"list",
"member":{"shape":"ListenerAttribute"}
},
"ListenerNotFoundException":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -2193,6 +2269,32 @@
"documentation":"<p>The codes to use when checking for a successful response from a target. If the protocol version is gRPC, these are gRPC codes. Otherwise, these are HTTP codes.</p>"
},
"Max":{"type":"string"},
"ModifyListenerAttributesInput":{
"type":"structure",
"required":[
"ListenerArn",
"Attributes"
],
"members":{
"ListenerArn":{
"shape":"ListenerArn",
"documentation":"<p>The Amazon Resource Name (ARN) of the listener.</p>"
},
"Attributes":{
"shape":"ListenerAttributes",
"documentation":"<p>The listener attributes.</p>"
}
}
},
"ModifyListenerAttributesOutput":{
"type":"structure",
"members":{
"Attributes":{
"shape":"ListenerAttributes",
"documentation":"<p>Information about the listener attributes.</p>"
}
}
},
"ModifyListenerInput":{
"type":"structure",
"required":["ListenerArn"],
Expand Down