aws-sdk-route53recoverycluster 1.20.0 → 1.21.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: eb96cca9319fda45a4bd35fb6459afb7651a835f056c736433ebfdfdd25a01b0
4
- data.tar.gz: 962f3bcaebab60bef80c852012c9e0b406214356a8384c48add228175005ad1a
3
+ metadata.gz: b9619542f8e9ba47cff40792f7f7ff7bc9930d578041ba6cc04342756132159d
4
+ data.tar.gz: 6c865128c3167f303c9424d045847f401f220e4dc173ffb470cfeda3f19b4187
5
5
  SHA512:
6
- metadata.gz: 73ed383eec1e7758e03d615939c86b75ba8aa862103c2a57f1587ec0b1bea3b69f5a11399e3aea5bdd5b603dbed93615618a850545b31d134a8382ff67407471
7
- data.tar.gz: fcdb1f8ae503d56e56badca1bb20805cb3258f0a520cf2c6a7eaa3314c75f68a192164a364f1a2542db429f1352c415cd19be57e6bdf3936094f2f870c5cde7c
6
+ metadata.gz: aaf34b57fa660caf3399bfab02db8353000a0fda6fa3e0f5e676b265f188975df633ae2b2dfb61f4124b4717b97aea7cdca0e4a4aaa668060ebd839db6efeb89
7
+ data.tar.gz: a6635c188c5d8fd4fe826ad0e783ad27bbfbb06309fd2563c64fe527ea1ac7e356ce45dcaa1dd1ab5914f74537abe3ba9f6b49017e01d3c8a32797319bf336a4
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.21.0 (2023-10-17)
5
+ ------------------
6
+
7
+ * Feature - Adds Owner field to ListRoutingControls API.
8
+
4
9
  1.20.0 (2023-09-27)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.20.0
1
+ 1.21.0
@@ -400,8 +400,8 @@ module Aws::Route53RecoveryCluster
400
400
 
401
401
  # Get the state for a routing control. A routing control is a simple
402
402
  # on/off switch that you can use to route traffic to cells. When a
403
- # routing control state is On, traffic flows to a cell. When the state
404
- # is Off, traffic does not flow.
403
+ # routing control state is set to ON, traffic flows to a cell. When the
404
+ # state is set to OFF, traffic does not flow.
405
405
  #
406
406
  # Before you can create a routing control, you must first create a
407
407
  # cluster, and then host the control in a control panel on the cluster.
@@ -472,8 +472,9 @@ module Aws::Route53RecoveryCluster
472
472
  # the cluster.
473
473
  #
474
474
  # A routing control is a simple on/off switch in Route 53 ARC that you
475
- # can use to route traffic to cells. When a routing control state is On,
476
- # traffic flows to a cell. When the state is Off, traffic does not flow.
475
+ # can use to route traffic to cells. When a routing control state is set
476
+ # to ON, traffic flows to a cell. When the state is set to OFF, traffic
477
+ # does not flow.
477
478
  #
478
479
  # Before you can create a routing control, you must first create a
479
480
  # cluster, and then host the control in a control panel on the cluster.
@@ -535,6 +536,7 @@ module Aws::Route53RecoveryCluster
535
536
  # resp.routing_controls[0].routing_control_arn #=> String
536
537
  # resp.routing_controls[0].routing_control_name #=> String
537
538
  # resp.routing_controls[0].routing_control_state #=> String, one of "On", "Off"
539
+ # resp.routing_controls[0].owner #=> String
538
540
  # resp.next_token #=> String
539
541
  #
540
542
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-recovery-cluster-2019-12-02/ListRoutingControls AWS API Documentation
@@ -547,8 +549,8 @@ module Aws::Route53RecoveryCluster
547
549
  end
548
550
 
549
551
  # Set the state of the routing control to reroute traffic. You can set
550
- # the value to be On or Off. When the state is On, traffic flows to a
551
- # cell. When the state is Off, traffic does not flow.
552
+ # the value to ON or OFF. When the state is ON, traffic flows to a cell.
553
+ # When the state is OFF, traffic does not flow.
552
554
  #
553
555
  # With Route 53 ARC, you can add safety rules for routing controls,
554
556
  # which are safeguards for routing control state updates that help
@@ -591,8 +593,7 @@ module Aws::Route53RecoveryCluster
591
593
  # to update the state for.
592
594
  #
593
595
  # @option params [required, String] :routing_control_state
594
- # The state of the routing control. You can set the value to be On or
595
- # Off.
596
+ # The state of the routing control. You can set the value to ON or OFF.
596
597
  #
597
598
  # @option params [Array<String>] :safety_rules_to_override
598
599
  # The Amazon Resource Names (ARNs) for the safety rules that you want to
@@ -628,8 +629,8 @@ module Aws::Route53RecoveryCluster
628
629
  end
629
630
 
630
631
  # Set multiple routing control states. You can set the value for each
631
- # state to be On or Off. When the state is On, traffic flows to a cell.
632
- # When it's Off, traffic does not flow.
632
+ # state to be ON or OFF. When the state is ON, traffic flows to a cell.
633
+ # When it's OFF, traffic does not flow.
633
634
  #
634
635
  # With Route 53 ARC, you can add safety rules for routing controls,
635
636
  # which are safeguards for routing control state updates that help
@@ -720,7 +721,7 @@ module Aws::Route53RecoveryCluster
720
721
  params: params,
721
722
  config: config)
722
723
  context[:gem_name] = 'aws-sdk-route53recoverycluster'
723
- context[:gem_version] = '1.20.0'
724
+ context[:gem_version] = '1.21.0'
724
725
  Seahorse::Client::Request.new(handlers, context)
725
726
  end
726
727
 
@@ -25,6 +25,7 @@ module Aws::Route53RecoveryCluster
25
25
  ListRoutingControlsRequest = Shapes::StructureShape.new(name: 'ListRoutingControlsRequest')
26
26
  ListRoutingControlsResponse = Shapes::StructureShape.new(name: 'ListRoutingControlsResponse')
27
27
  MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
28
+ Owner = Shapes::StringShape.new(name: 'Owner')
28
29
  PageToken = Shapes::StringShape.new(name: 'PageToken')
29
30
  ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
30
31
  RetryAfterSeconds = Shapes::IntegerShape.new(name: 'RetryAfterSeconds')
@@ -90,6 +91,7 @@ module Aws::Route53RecoveryCluster
90
91
  RoutingControl.add_member(:routing_control_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "RoutingControlArn"))
91
92
  RoutingControl.add_member(:routing_control_name, Shapes::ShapeRef.new(shape: RoutingControlName, location_name: "RoutingControlName"))
92
93
  RoutingControl.add_member(:routing_control_state, Shapes::ShapeRef.new(shape: RoutingControlState, location_name: "RoutingControlState"))
94
+ RoutingControl.add_member(:owner, Shapes::ShapeRef.new(shape: Owner, location_name: "Owner"))
93
95
  RoutingControl.struct_class = Types::RoutingControl
94
96
 
95
97
  RoutingControls.member = Shapes::ShapeRef.new(shape: RoutingControl)
@@ -32,7 +32,7 @@ module Aws::Route53RecoveryCluster
32
32
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
33
  end
34
34
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
36
36
  return Aws::Endpoints::Endpoint.new(url: "https://route53-recovery-cluster-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
37
  end
38
38
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
@@ -181,8 +181,9 @@ module Aws::Route53RecoveryCluster
181
181
  end
182
182
 
183
183
  # A routing control, which is a simple on/off switch that you can use to
184
- # route traffic to cells. When a routing control state is On, traffic
185
- # flows to a cell. When the state is Off, traffic does not flow.
184
+ # route traffic to cells. When a routing control state is set to ON,
185
+ # traffic flows to a cell. When the state is set to OFF, traffic does
186
+ # not flow.
186
187
  #
187
188
  # @!attribute [rw] control_panel_arn
188
189
  # The Amazon Resource Name (ARN) of the control panel where the
@@ -191,6 +192,7 @@ module Aws::Route53RecoveryCluster
191
192
  #
192
193
  # @!attribute [rw] control_panel_name
193
194
  # The name of the control panel where the routing control is located.
195
+ # Only ASCII characters are supported for control panel names.
194
196
  # @return [String]
195
197
  #
196
198
  # @!attribute [rw] routing_control_arn
@@ -203,8 +205,12 @@ module Aws::Route53RecoveryCluster
203
205
  #
204
206
  # @!attribute [rw] routing_control_state
205
207
  # The current state of the routing control. When a routing control
206
- # state is On, traffic flows to a cell. When the state is Off, traffic
207
- # does not flow.
208
+ # state is set to ON, traffic flows to a cell. When the state is set
209
+ # to OFF, traffic does not flow.
210
+ # @return [String]
211
+ #
212
+ # @!attribute [rw] owner
213
+ # The Amazon Web Services account ID of the routing control owner.
208
214
  # @return [String]
209
215
  #
210
216
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-recovery-cluster-2019-12-02/RoutingControl AWS API Documentation
@@ -214,7 +220,8 @@ module Aws::Route53RecoveryCluster
214
220
  :control_panel_name,
215
221
  :routing_control_arn,
216
222
  :routing_control_name,
217
- :routing_control_state)
223
+ :routing_control_state,
224
+ :owner)
218
225
  SENSITIVE = []
219
226
  include Aws::Structure
220
227
  end
@@ -296,8 +303,8 @@ module Aws::Route53RecoveryCluster
296
303
  # @return [String]
297
304
  #
298
305
  # @!attribute [rw] routing_control_state
299
- # The state of the routing control. You can set the value to be On or
300
- # Off.
306
+ # The state of the routing control. You can set the value to ON or
307
+ # OFF.
301
308
  # @return [String]
302
309
  #
303
310
  # @!attribute [rw] safety_rules_to_override
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-route53recoverycluster/customizations'
52
52
  # @!group service
53
53
  module Aws::Route53RecoveryCluster
54
54
 
55
- GEM_VERSION = '1.20.0'
55
+ GEM_VERSION = '1.21.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-route53recoverycluster
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.20.0
4
+ version: 1.21.0
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: 2023-09-27 00:00:00.000000000 Z
11
+ date: 2023-10-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core