aws-sdk-elasticloadbalancingv2 1.0.0.rc6 → 1.0.0.rc7
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e4fd6514ac83b361c5d3732953dbbda3ad1cd6a8
|
4
|
+
data.tar.gz: e2ecbf2bc4efcdf7ee60fa7070c31509bf270dfd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 527d4d71ddd654ef36ca115be8a9aa5ac6a855ac96e9335f2aad72f436821f1cc1fc59191bec0dfd8dea9358f7d5b76c251d8a4fb89062f36b571b6ae0b8e593
|
7
|
+
data.tar.gz: c5aeb72a86c130866284e385a24e9f8706bd4de3a7170b7c567d466da131a6bf12745dc1a79df386f56f77e15d9e6ccecb08faf3b0d0e066ccf6899119446799
|
@@ -946,15 +946,25 @@ module Aws::ElasticLoadBalancingV2
|
|
946
946
|
# @option params [Array<String>] :rule_arns
|
947
947
|
# The Amazon Resource Names (ARN) of the rules.
|
948
948
|
#
|
949
|
+
# @option params [String] :marker
|
950
|
+
# The marker for the next set of results. (You received this marker from
|
951
|
+
# a previous call.)
|
952
|
+
#
|
953
|
+
# @option params [Integer] :page_size
|
954
|
+
# The maximum number of results to return with this call.
|
955
|
+
#
|
949
956
|
# @return [Types::DescribeRulesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
950
957
|
#
|
951
958
|
# * {Types::DescribeRulesOutput#rules #rules} => Array<Types::Rule>
|
959
|
+
# * {Types::DescribeRulesOutput#next_marker #next_marker} => String
|
952
960
|
#
|
953
961
|
# @example Request syntax with placeholder values
|
954
962
|
#
|
955
963
|
# resp = client.describe_rules({
|
956
964
|
# listener_arn: "ListenerArn",
|
957
965
|
# rule_arns: ["RuleArn"],
|
966
|
+
# marker: "Marker",
|
967
|
+
# page_size: 1,
|
958
968
|
# })
|
959
969
|
#
|
960
970
|
# @example Response structure
|
@@ -970,6 +980,7 @@ module Aws::ElasticLoadBalancingV2
|
|
970
980
|
# resp.rules[0].actions[0].type #=> String, one of "forward"
|
971
981
|
# resp.rules[0].actions[0].target_group_arn #=> String
|
972
982
|
# resp.rules[0].is_default #=> Boolean
|
983
|
+
# resp.next_marker #=> String
|
973
984
|
#
|
974
985
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/DescribeRules AWS API Documentation
|
975
986
|
#
|
@@ -1756,7 +1767,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1756
1767
|
params: params,
|
1757
1768
|
config: config)
|
1758
1769
|
context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
|
1759
|
-
context[:gem_version] = '1.0.0.
|
1770
|
+
context[:gem_version] = '1.0.0.rc7'
|
1760
1771
|
Seahorse::Client::Request.new(handlers, context)
|
1761
1772
|
end
|
1762
1773
|
|
@@ -348,9 +348,12 @@ module Aws::ElasticLoadBalancingV2
|
|
348
348
|
|
349
349
|
DescribeRulesInput.add_member(:listener_arn, Shapes::ShapeRef.new(shape: ListenerArn, location_name: "ListenerArn"))
|
350
350
|
DescribeRulesInput.add_member(:rule_arns, Shapes::ShapeRef.new(shape: RuleArns, location_name: "RuleArns"))
|
351
|
+
DescribeRulesInput.add_member(:marker, Shapes::ShapeRef.new(shape: Marker, location_name: "Marker"))
|
352
|
+
DescribeRulesInput.add_member(:page_size, Shapes::ShapeRef.new(shape: PageSize, location_name: "PageSize"))
|
351
353
|
DescribeRulesInput.struct_class = Types::DescribeRulesInput
|
352
354
|
|
353
355
|
DescribeRulesOutput.add_member(:rules, Shapes::ShapeRef.new(shape: Rules, location_name: "Rules"))
|
356
|
+
DescribeRulesOutput.add_member(:next_marker, Shapes::ShapeRef.new(shape: Marker, location_name: "NextMarker"))
|
354
357
|
DescribeRulesOutput.struct_class = Types::DescribeRulesOutput
|
355
358
|
|
356
359
|
DescribeSSLPoliciesInput.add_member(:names, Shapes::ShapeRef.new(shape: SslPolicyNames, location_name: "Names"))
|
@@ -921,6 +924,8 @@ module Aws::ElasticLoadBalancingV2
|
|
921
924
|
o.errors << Shapes::ShapeRef.new(shape: RuleNotFoundException)
|
922
925
|
o.errors << Shapes::ShapeRef.new(shape: OperationNotPermittedException)
|
923
926
|
o.errors << Shapes::ShapeRef.new(shape: TooManyRegistrationsForTargetIdException)
|
927
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyTargetsException)
|
928
|
+
o.errors << Shapes::ShapeRef.new(shape: TargetGroupNotFoundException)
|
924
929
|
end)
|
925
930
|
|
926
931
|
api.add_operation(:modify_target_group, Seahorse::Model::Operation.new.tap do |o|
|
@@ -789,6 +789,8 @@ module Aws::ElasticLoadBalancingV2
|
|
789
789
|
# {
|
790
790
|
# listener_arn: "ListenerArn",
|
791
791
|
# rule_arns: ["RuleArn"],
|
792
|
+
# marker: "Marker",
|
793
|
+
# page_size: 1,
|
792
794
|
# }
|
793
795
|
#
|
794
796
|
# @!attribute [rw] listener_arn
|
@@ -799,11 +801,22 @@ module Aws::ElasticLoadBalancingV2
|
|
799
801
|
# The Amazon Resource Names (ARN) of the rules.
|
800
802
|
# @return [Array<String>]
|
801
803
|
#
|
804
|
+
# @!attribute [rw] marker
|
805
|
+
# The marker for the next set of results. (You received this marker
|
806
|
+
# from a previous call.)
|
807
|
+
# @return [String]
|
808
|
+
#
|
809
|
+
# @!attribute [rw] page_size
|
810
|
+
# The maximum number of results to return with this call.
|
811
|
+
# @return [Integer]
|
812
|
+
#
|
802
813
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/DescribeRulesInput AWS API Documentation
|
803
814
|
#
|
804
815
|
class DescribeRulesInput < Struct.new(
|
805
816
|
:listener_arn,
|
806
|
-
:rule_arns
|
817
|
+
:rule_arns,
|
818
|
+
:marker,
|
819
|
+
:page_size)
|
807
820
|
include Aws::Structure
|
808
821
|
end
|
809
822
|
|
@@ -811,10 +824,16 @@ module Aws::ElasticLoadBalancingV2
|
|
811
824
|
# Information about the rules.
|
812
825
|
# @return [Array<Types::Rule>]
|
813
826
|
#
|
827
|
+
# @!attribute [rw] next_marker
|
828
|
+
# The marker to use when requesting the next set of results. If there
|
829
|
+
# are no additional results, the string is empty.
|
830
|
+
# @return [String]
|
831
|
+
#
|
814
832
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/DescribeRulesOutput AWS API Documentation
|
815
833
|
#
|
816
834
|
class DescribeRulesOutput < Struct.new(
|
817
|
-
:rules
|
835
|
+
:rules,
|
836
|
+
:next_marker)
|
818
837
|
include Aws::Structure
|
819
838
|
end
|
820
839
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-elasticloadbalancingv2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.
|
4
|
+
version: 1.0.0.rc7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-06-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 3.0.0.
|
19
|
+
version: 3.0.0.rc13
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 3.0.0.
|
26
|
+
version: 3.0.0.rc13
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: aws-sigv4
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|