aws-sdk-databasemigrationservice 1.72.0 → 1.74.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-databasemigrationservice/client.rb +81 -12
- data/lib/aws-sdk-databasemigrationservice/client_api.rb +13 -0
- data/lib/aws-sdk-databasemigrationservice/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-databasemigrationservice/endpoint_provider.rb +143 -0
- data/lib/aws-sdk-databasemigrationservice/endpoints.rb +925 -0
- data/lib/aws-sdk-databasemigrationservice/plugins/endpoints.rb +198 -0
- data/lib/aws-sdk-databasemigrationservice/types.rb +97 -31
- data/lib/aws-sdk-databasemigrationservice.rb +5 -1
- metadata +8 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 68f9787cf168f87ad03998dd2b21e6f2a4ba196771e4d83924bdc6e849cc8343
|
4
|
+
data.tar.gz: ddbcbac0fb4df0f1cef3bb8b7bcd308ca21bfe3637b7e84632da9ba498f62a86
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 05c3c900f1b7bad21e48533a9a5ed531596e8bd81943e6143dc312bd25f010d9184458d5ff9eb8633af80065ca99490f2eb13bc639413d566838323cf6695197
|
7
|
+
data.tar.gz: 492311840a5c8fc3b39c92bd31b3a66cdcbc4a3a3ed75fc87ee10c7b314bf9d9ac0520374f927e496bb242e5d33a7116f88c07da1ff411b864ad3bb786afd3e0
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.74.0 (2022-11-17)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Adds support for Internet Protocol Version 6 (IPv6) on DMS Replication Instances
|
8
|
+
|
9
|
+
1.73.0 (2022-10-25)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.72.0 (2022-08-04)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.74.0
|
@@ -30,7 +30,7 @@ require 'aws-sdk-core/plugins/http_checksum.rb'
|
|
30
30
|
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
31
31
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
32
32
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
33
|
-
require 'aws-sdk-core/plugins/
|
33
|
+
require 'aws-sdk-core/plugins/sign.rb'
|
34
34
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
35
35
|
|
36
36
|
Aws::Plugins::GlobalConfiguration.add_identifier(:databasemigrationservice)
|
@@ -79,8 +79,9 @@ module Aws::DatabaseMigrationService
|
|
79
79
|
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
80
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
81
81
|
add_plugin(Aws::Plugins::RecursionDetection)
|
82
|
-
add_plugin(Aws::Plugins::
|
82
|
+
add_plugin(Aws::Plugins::Sign)
|
83
83
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
84
|
+
add_plugin(Aws::DatabaseMigrationService::Plugins::Endpoints)
|
84
85
|
|
85
86
|
# @overload initialize(options)
|
86
87
|
# @param [Hash] options
|
@@ -297,6 +298,19 @@ module Aws::DatabaseMigrationService
|
|
297
298
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
298
299
|
# requests are made, and retries are disabled.
|
299
300
|
#
|
301
|
+
# @option options [Aws::TokenProvider] :token_provider
|
302
|
+
# A Bearer Token Provider. This can be an instance of any one of the
|
303
|
+
# following classes:
|
304
|
+
#
|
305
|
+
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
306
|
+
# tokens.
|
307
|
+
#
|
308
|
+
# * `Aws::SSOTokenProvider` - Used for loading tokens from AWS SSO using an
|
309
|
+
# access token generated from `aws login`.
|
310
|
+
#
|
311
|
+
# When `:token_provider` is not configured directly, the `Aws::TokenProviderChain`
|
312
|
+
# will be used to search for tokens configured for your profile in shared configuration files.
|
313
|
+
#
|
300
314
|
# @option options [Boolean] :use_dualstack_endpoint
|
301
315
|
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
302
316
|
# will be used if available.
|
@@ -310,6 +324,9 @@ module Aws::DatabaseMigrationService
|
|
310
324
|
# When `true`, request parameters are validated before
|
311
325
|
# sending the request.
|
312
326
|
#
|
327
|
+
# @option options [Aws::DatabaseMigrationService::EndpointProvider] :endpoint_provider
|
328
|
+
# The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::DatabaseMigrationService::EndpointParameters`
|
329
|
+
#
|
313
330
|
# @option options [URI::HTTP,String] :http_proxy A proxy to send
|
314
331
|
# requests through. Formatted like 'http://proxy.com:123'.
|
315
332
|
#
|
@@ -552,9 +569,9 @@ module Aws::DatabaseMigrationService
|
|
552
569
|
# The type of engine for the endpoint. Valid values, depending on the
|
553
570
|
# `EndpointType` value, include `"mysql"`, `"oracle"`, `"postgres"`,
|
554
571
|
# `"mariadb"`, `"aurora"`, `"aurora-postgresql"`, `"opensearch"`,
|
555
|
-
# `"redshift"`, `"s3"`, `"db2"`, `"
|
556
|
-
# `"
|
557
|
-
# `"sqlserver"`, and `"
|
572
|
+
# `"redshift"`, `"s3"`, `"db2"`, `"db2-zos"`, `"azuredb"`, `"sybase"`,
|
573
|
+
# `"dynamodb"`, `"mongodb"`, `"kinesis"`, `"kafka"`, `"elasticsearch"`,
|
574
|
+
# `"docdb"`, `"sqlserver"`, `"neptune"`, and `"babelfish"`.
|
558
575
|
#
|
559
576
|
# @option params [String] :username
|
560
577
|
# The user name to be used to log in to the endpoint database.
|
@@ -1756,6 +1773,11 @@ module Aws::DatabaseMigrationService
|
|
1756
1773
|
# don't specify a `ResourceIdentifier` value, DMS generates a default
|
1757
1774
|
# identifier value for the end of `EndpointArn`.
|
1758
1775
|
#
|
1776
|
+
# @option params [String] :network_type
|
1777
|
+
# The type of IP address protocol used by a replication instance, such
|
1778
|
+
# as IPv4 only or Dual-stack that supports both IPv4 and IPv6
|
1779
|
+
# addressing. IPv6 only is not yet supported.
|
1780
|
+
#
|
1759
1781
|
# @return [Types::CreateReplicationInstanceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1760
1782
|
#
|
1761
1783
|
# * {Types::CreateReplicationInstanceResponse#replication_instance #replication_instance} => Types::ReplicationInstance
|
@@ -1865,6 +1887,7 @@ module Aws::DatabaseMigrationService
|
|
1865
1887
|
# publicly_accessible: false,
|
1866
1888
|
# dns_name_servers: "String",
|
1867
1889
|
# resource_identifier: "String",
|
1890
|
+
# network_type: "String",
|
1868
1891
|
# })
|
1869
1892
|
#
|
1870
1893
|
# @example Response structure
|
@@ -1886,11 +1909,14 @@ module Aws::DatabaseMigrationService
|
|
1886
1909
|
# resp.replication_instance.replication_subnet_group.subnets[0].subnet_identifier #=> String
|
1887
1910
|
# resp.replication_instance.replication_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
1888
1911
|
# resp.replication_instance.replication_subnet_group.subnets[0].subnet_status #=> String
|
1912
|
+
# resp.replication_instance.replication_subnet_group.supported_network_types #=> Array
|
1913
|
+
# resp.replication_instance.replication_subnet_group.supported_network_types[0] #=> String
|
1889
1914
|
# resp.replication_instance.preferred_maintenance_window #=> String
|
1890
1915
|
# resp.replication_instance.pending_modified_values.replication_instance_class #=> String
|
1891
1916
|
# resp.replication_instance.pending_modified_values.allocated_storage #=> Integer
|
1892
1917
|
# resp.replication_instance.pending_modified_values.multi_az #=> Boolean
|
1893
1918
|
# resp.replication_instance.pending_modified_values.engine_version #=> String
|
1919
|
+
# resp.replication_instance.pending_modified_values.network_type #=> String
|
1894
1920
|
# resp.replication_instance.multi_az #=> Boolean
|
1895
1921
|
# resp.replication_instance.engine_version #=> String
|
1896
1922
|
# resp.replication_instance.auto_minor_version_upgrade #=> Boolean
|
@@ -1902,10 +1928,13 @@ module Aws::DatabaseMigrationService
|
|
1902
1928
|
# resp.replication_instance.replication_instance_public_ip_addresses[0] #=> String
|
1903
1929
|
# resp.replication_instance.replication_instance_private_ip_addresses #=> Array
|
1904
1930
|
# resp.replication_instance.replication_instance_private_ip_addresses[0] #=> String
|
1931
|
+
# resp.replication_instance.replication_instance_ipv_6_addresses #=> Array
|
1932
|
+
# resp.replication_instance.replication_instance_ipv_6_addresses[0] #=> String
|
1905
1933
|
# resp.replication_instance.publicly_accessible #=> Boolean
|
1906
1934
|
# resp.replication_instance.secondary_availability_zone #=> String
|
1907
1935
|
# resp.replication_instance.free_until #=> Time
|
1908
1936
|
# resp.replication_instance.dns_name_servers #=> String
|
1937
|
+
# resp.replication_instance.network_type #=> String
|
1909
1938
|
#
|
1910
1939
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateReplicationInstance AWS API Documentation
|
1911
1940
|
#
|
@@ -1996,6 +2025,8 @@ module Aws::DatabaseMigrationService
|
|
1996
2025
|
# resp.replication_subnet_group.subnets[0].subnet_identifier #=> String
|
1997
2026
|
# resp.replication_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
1998
2027
|
# resp.replication_subnet_group.subnets[0].subnet_status #=> String
|
2028
|
+
# resp.replication_subnet_group.supported_network_types #=> Array
|
2029
|
+
# resp.replication_subnet_group.supported_network_types[0] #=> String
|
1999
2030
|
#
|
2000
2031
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateReplicationSubnetGroup AWS API Documentation
|
2001
2032
|
#
|
@@ -2869,11 +2900,14 @@ module Aws::DatabaseMigrationService
|
|
2869
2900
|
# resp.replication_instance.replication_subnet_group.subnets[0].subnet_identifier #=> String
|
2870
2901
|
# resp.replication_instance.replication_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
2871
2902
|
# resp.replication_instance.replication_subnet_group.subnets[0].subnet_status #=> String
|
2903
|
+
# resp.replication_instance.replication_subnet_group.supported_network_types #=> Array
|
2904
|
+
# resp.replication_instance.replication_subnet_group.supported_network_types[0] #=> String
|
2872
2905
|
# resp.replication_instance.preferred_maintenance_window #=> String
|
2873
2906
|
# resp.replication_instance.pending_modified_values.replication_instance_class #=> String
|
2874
2907
|
# resp.replication_instance.pending_modified_values.allocated_storage #=> Integer
|
2875
2908
|
# resp.replication_instance.pending_modified_values.multi_az #=> Boolean
|
2876
2909
|
# resp.replication_instance.pending_modified_values.engine_version #=> String
|
2910
|
+
# resp.replication_instance.pending_modified_values.network_type #=> String
|
2877
2911
|
# resp.replication_instance.multi_az #=> Boolean
|
2878
2912
|
# resp.replication_instance.engine_version #=> String
|
2879
2913
|
# resp.replication_instance.auto_minor_version_upgrade #=> Boolean
|
@@ -2885,10 +2919,13 @@ module Aws::DatabaseMigrationService
|
|
2885
2919
|
# resp.replication_instance.replication_instance_public_ip_addresses[0] #=> String
|
2886
2920
|
# resp.replication_instance.replication_instance_private_ip_addresses #=> Array
|
2887
2921
|
# resp.replication_instance.replication_instance_private_ip_addresses[0] #=> String
|
2922
|
+
# resp.replication_instance.replication_instance_ipv_6_addresses #=> Array
|
2923
|
+
# resp.replication_instance.replication_instance_ipv_6_addresses[0] #=> String
|
2888
2924
|
# resp.replication_instance.publicly_accessible #=> Boolean
|
2889
2925
|
# resp.replication_instance.secondary_availability_zone #=> String
|
2890
2926
|
# resp.replication_instance.free_until #=> Time
|
2891
2927
|
# resp.replication_instance.dns_name_servers #=> String
|
2928
|
+
# resp.replication_instance.network_type #=> String
|
2892
2929
|
#
|
2893
2930
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteReplicationInstance AWS API Documentation
|
2894
2931
|
#
|
@@ -4825,11 +4862,14 @@ module Aws::DatabaseMigrationService
|
|
4825
4862
|
# resp.replication_instances[0].replication_subnet_group.subnets[0].subnet_identifier #=> String
|
4826
4863
|
# resp.replication_instances[0].replication_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
4827
4864
|
# resp.replication_instances[0].replication_subnet_group.subnets[0].subnet_status #=> String
|
4865
|
+
# resp.replication_instances[0].replication_subnet_group.supported_network_types #=> Array
|
4866
|
+
# resp.replication_instances[0].replication_subnet_group.supported_network_types[0] #=> String
|
4828
4867
|
# resp.replication_instances[0].preferred_maintenance_window #=> String
|
4829
4868
|
# resp.replication_instances[0].pending_modified_values.replication_instance_class #=> String
|
4830
4869
|
# resp.replication_instances[0].pending_modified_values.allocated_storage #=> Integer
|
4831
4870
|
# resp.replication_instances[0].pending_modified_values.multi_az #=> Boolean
|
4832
4871
|
# resp.replication_instances[0].pending_modified_values.engine_version #=> String
|
4872
|
+
# resp.replication_instances[0].pending_modified_values.network_type #=> String
|
4833
4873
|
# resp.replication_instances[0].multi_az #=> Boolean
|
4834
4874
|
# resp.replication_instances[0].engine_version #=> String
|
4835
4875
|
# resp.replication_instances[0].auto_minor_version_upgrade #=> Boolean
|
@@ -4841,10 +4881,13 @@ module Aws::DatabaseMigrationService
|
|
4841
4881
|
# resp.replication_instances[0].replication_instance_public_ip_addresses[0] #=> String
|
4842
4882
|
# resp.replication_instances[0].replication_instance_private_ip_addresses #=> Array
|
4843
4883
|
# resp.replication_instances[0].replication_instance_private_ip_addresses[0] #=> String
|
4884
|
+
# resp.replication_instances[0].replication_instance_ipv_6_addresses #=> Array
|
4885
|
+
# resp.replication_instances[0].replication_instance_ipv_6_addresses[0] #=> String
|
4844
4886
|
# resp.replication_instances[0].publicly_accessible #=> Boolean
|
4845
4887
|
# resp.replication_instances[0].secondary_availability_zone #=> String
|
4846
4888
|
# resp.replication_instances[0].free_until #=> Time
|
4847
4889
|
# resp.replication_instances[0].dns_name_servers #=> String
|
4890
|
+
# resp.replication_instances[0].network_type #=> String
|
4848
4891
|
#
|
4849
4892
|
#
|
4850
4893
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -4941,6 +4984,8 @@ module Aws::DatabaseMigrationService
|
|
4941
4984
|
# resp.replication_subnet_groups[0].subnets[0].subnet_identifier #=> String
|
4942
4985
|
# resp.replication_subnet_groups[0].subnets[0].subnet_availability_zone.name #=> String
|
4943
4986
|
# resp.replication_subnet_groups[0].subnets[0].subnet_status #=> String
|
4987
|
+
# resp.replication_subnet_groups[0].supported_network_types #=> Array
|
4988
|
+
# resp.replication_subnet_groups[0].supported_network_types[0] #=> String
|
4944
4989
|
#
|
4945
4990
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationSubnetGroups AWS API Documentation
|
4946
4991
|
#
|
@@ -5443,6 +5488,10 @@ module Aws::DatabaseMigrationService
|
|
5443
5488
|
# resp.table_statistics[0].deletes #=> Integer
|
5444
5489
|
# resp.table_statistics[0].updates #=> Integer
|
5445
5490
|
# resp.table_statistics[0].ddls #=> Integer
|
5491
|
+
# resp.table_statistics[0].applied_inserts #=> Integer
|
5492
|
+
# resp.table_statistics[0].applied_deletes #=> Integer
|
5493
|
+
# resp.table_statistics[0].applied_updates #=> Integer
|
5494
|
+
# resp.table_statistics[0].applied_ddls #=> Integer
|
5446
5495
|
# resp.table_statistics[0].full_load_rows #=> Integer
|
5447
5496
|
# resp.table_statistics[0].full_load_condtnl_chk_failed_rows #=> Integer
|
5448
5497
|
# resp.table_statistics[0].full_load_error_rows #=> Integer
|
@@ -5631,12 +5680,12 @@ module Aws::DatabaseMigrationService
|
|
5631
5680
|
# The type of endpoint. Valid values are `source` and `target`.
|
5632
5681
|
#
|
5633
5682
|
# @option params [String] :engine_name
|
5634
|
-
# The
|
5635
|
-
#
|
5636
|
-
# `"
|
5637
|
-
# `"
|
5638
|
-
# `"
|
5639
|
-
# `"
|
5683
|
+
# The database engine name. Valid values, depending on the EndpointType,
|
5684
|
+
# include `"mysql"`, `"oracle"`, `"postgres"`, `"mariadb"`, `"aurora"`,
|
5685
|
+
# `"aurora-postgresql"`, `"redshift"`, `"s3"`, `"db2"`, `"db2-zos"`,
|
5686
|
+
# `"azuredb"`, `"sybase"`, `"dynamodb"`, `"mongodb"`, `"kinesis"`,
|
5687
|
+
# `"kafka"`, `"elasticsearch"`, `"documentdb"`, `"sqlserver"`,
|
5688
|
+
# `"neptune"`, and `"babelfish"`.
|
5640
5689
|
#
|
5641
5690
|
# @option params [String] :username
|
5642
5691
|
# The user name to be used to login to the endpoint database.
|
@@ -6674,6 +6723,11 @@ module Aws::DatabaseMigrationService
|
|
6674
6723
|
# The replication instance identifier. This parameter is stored as a
|
6675
6724
|
# lowercase string.
|
6676
6725
|
#
|
6726
|
+
# @option params [String] :network_type
|
6727
|
+
# The type of IP address protocol used by a replication instance, such
|
6728
|
+
# as IPv4 only or Dual-stack that supports both IPv4 and IPv6
|
6729
|
+
# addressing. IPv6 only is not yet supported.
|
6730
|
+
#
|
6677
6731
|
# @return [Types::ModifyReplicationInstanceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6678
6732
|
#
|
6679
6733
|
# * {Types::ModifyReplicationInstanceResponse#replication_instance #replication_instance} => Types::ReplicationInstance
|
@@ -6767,6 +6821,7 @@ module Aws::DatabaseMigrationService
|
|
6767
6821
|
# allow_major_version_upgrade: false,
|
6768
6822
|
# auto_minor_version_upgrade: false,
|
6769
6823
|
# replication_instance_identifier: "String",
|
6824
|
+
# network_type: "String",
|
6770
6825
|
# })
|
6771
6826
|
#
|
6772
6827
|
# @example Response structure
|
@@ -6788,11 +6843,14 @@ module Aws::DatabaseMigrationService
|
|
6788
6843
|
# resp.replication_instance.replication_subnet_group.subnets[0].subnet_identifier #=> String
|
6789
6844
|
# resp.replication_instance.replication_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
6790
6845
|
# resp.replication_instance.replication_subnet_group.subnets[0].subnet_status #=> String
|
6846
|
+
# resp.replication_instance.replication_subnet_group.supported_network_types #=> Array
|
6847
|
+
# resp.replication_instance.replication_subnet_group.supported_network_types[0] #=> String
|
6791
6848
|
# resp.replication_instance.preferred_maintenance_window #=> String
|
6792
6849
|
# resp.replication_instance.pending_modified_values.replication_instance_class #=> String
|
6793
6850
|
# resp.replication_instance.pending_modified_values.allocated_storage #=> Integer
|
6794
6851
|
# resp.replication_instance.pending_modified_values.multi_az #=> Boolean
|
6795
6852
|
# resp.replication_instance.pending_modified_values.engine_version #=> String
|
6853
|
+
# resp.replication_instance.pending_modified_values.network_type #=> String
|
6796
6854
|
# resp.replication_instance.multi_az #=> Boolean
|
6797
6855
|
# resp.replication_instance.engine_version #=> String
|
6798
6856
|
# resp.replication_instance.auto_minor_version_upgrade #=> Boolean
|
@@ -6804,10 +6862,13 @@ module Aws::DatabaseMigrationService
|
|
6804
6862
|
# resp.replication_instance.replication_instance_public_ip_addresses[0] #=> String
|
6805
6863
|
# resp.replication_instance.replication_instance_private_ip_addresses #=> Array
|
6806
6864
|
# resp.replication_instance.replication_instance_private_ip_addresses[0] #=> String
|
6865
|
+
# resp.replication_instance.replication_instance_ipv_6_addresses #=> Array
|
6866
|
+
# resp.replication_instance.replication_instance_ipv_6_addresses[0] #=> String
|
6807
6867
|
# resp.replication_instance.publicly_accessible #=> Boolean
|
6808
6868
|
# resp.replication_instance.secondary_availability_zone #=> String
|
6809
6869
|
# resp.replication_instance.free_until #=> Time
|
6810
6870
|
# resp.replication_instance.dns_name_servers #=> String
|
6871
|
+
# resp.replication_instance.network_type #=> String
|
6811
6872
|
#
|
6812
6873
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyReplicationInstance AWS API Documentation
|
6813
6874
|
#
|
@@ -6869,6 +6930,8 @@ module Aws::DatabaseMigrationService
|
|
6869
6930
|
# resp.replication_subnet_group.subnets[0].subnet_identifier #=> String
|
6870
6931
|
# resp.replication_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
6871
6932
|
# resp.replication_subnet_group.subnets[0].subnet_status #=> String
|
6933
|
+
# resp.replication_subnet_group.supported_network_types #=> Array
|
6934
|
+
# resp.replication_subnet_group.supported_network_types[0] #=> String
|
6872
6935
|
#
|
6873
6936
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyReplicationSubnetGroup AWS API Documentation
|
6874
6937
|
#
|
@@ -7147,11 +7210,14 @@ module Aws::DatabaseMigrationService
|
|
7147
7210
|
# resp.replication_instance.replication_subnet_group.subnets[0].subnet_identifier #=> String
|
7148
7211
|
# resp.replication_instance.replication_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
7149
7212
|
# resp.replication_instance.replication_subnet_group.subnets[0].subnet_status #=> String
|
7213
|
+
# resp.replication_instance.replication_subnet_group.supported_network_types #=> Array
|
7214
|
+
# resp.replication_instance.replication_subnet_group.supported_network_types[0] #=> String
|
7150
7215
|
# resp.replication_instance.preferred_maintenance_window #=> String
|
7151
7216
|
# resp.replication_instance.pending_modified_values.replication_instance_class #=> String
|
7152
7217
|
# resp.replication_instance.pending_modified_values.allocated_storage #=> Integer
|
7153
7218
|
# resp.replication_instance.pending_modified_values.multi_az #=> Boolean
|
7154
7219
|
# resp.replication_instance.pending_modified_values.engine_version #=> String
|
7220
|
+
# resp.replication_instance.pending_modified_values.network_type #=> String
|
7155
7221
|
# resp.replication_instance.multi_az #=> Boolean
|
7156
7222
|
# resp.replication_instance.engine_version #=> String
|
7157
7223
|
# resp.replication_instance.auto_minor_version_upgrade #=> Boolean
|
@@ -7163,10 +7229,13 @@ module Aws::DatabaseMigrationService
|
|
7163
7229
|
# resp.replication_instance.replication_instance_public_ip_addresses[0] #=> String
|
7164
7230
|
# resp.replication_instance.replication_instance_private_ip_addresses #=> Array
|
7165
7231
|
# resp.replication_instance.replication_instance_private_ip_addresses[0] #=> String
|
7232
|
+
# resp.replication_instance.replication_instance_ipv_6_addresses #=> Array
|
7233
|
+
# resp.replication_instance.replication_instance_ipv_6_addresses[0] #=> String
|
7166
7234
|
# resp.replication_instance.publicly_accessible #=> Boolean
|
7167
7235
|
# resp.replication_instance.secondary_availability_zone #=> String
|
7168
7236
|
# resp.replication_instance.free_until #=> Time
|
7169
7237
|
# resp.replication_instance.dns_name_servers #=> String
|
7238
|
+
# resp.replication_instance.network_type #=> String
|
7170
7239
|
#
|
7171
7240
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/RebootReplicationInstance AWS API Documentation
|
7172
7241
|
#
|
@@ -7901,7 +7970,7 @@ module Aws::DatabaseMigrationService
|
|
7901
7970
|
params: params,
|
7902
7971
|
config: config)
|
7903
7972
|
context[:gem_name] = 'aws-sdk-databasemigrationservice'
|
7904
|
-
context[:gem_version] = '1.
|
7973
|
+
context[:gem_version] = '1.74.0'
|
7905
7974
|
Seahorse::Client::Request.new(handlers, context)
|
7906
7975
|
end
|
7907
7976
|
|
@@ -242,6 +242,7 @@ module Aws::DatabaseMigrationService
|
|
242
242
|
RemoveTagsFromResourceResponse = Shapes::StructureShape.new(name: 'RemoveTagsFromResourceResponse')
|
243
243
|
ReplicationEndpointTypeValue = Shapes::StringShape.new(name: 'ReplicationEndpointTypeValue')
|
244
244
|
ReplicationInstance = Shapes::StructureShape.new(name: 'ReplicationInstance')
|
245
|
+
ReplicationInstanceIpv6AddressList = Shapes::ListShape.new(name: 'ReplicationInstanceIpv6AddressList')
|
245
246
|
ReplicationInstanceList = Shapes::ListShape.new(name: 'ReplicationInstanceList')
|
246
247
|
ReplicationInstancePrivateIpAddressList = Shapes::ListShape.new(name: 'ReplicationInstancePrivateIpAddressList')
|
247
248
|
ReplicationInstancePublicIpAddressList = Shapes::ListShape.new(name: 'ReplicationInstancePublicIpAddressList')
|
@@ -490,6 +491,7 @@ module Aws::DatabaseMigrationService
|
|
490
491
|
CreateReplicationInstanceMessage.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "PubliclyAccessible"))
|
491
492
|
CreateReplicationInstanceMessage.add_member(:dns_name_servers, Shapes::ShapeRef.new(shape: String, location_name: "DnsNameServers"))
|
492
493
|
CreateReplicationInstanceMessage.add_member(:resource_identifier, Shapes::ShapeRef.new(shape: String, location_name: "ResourceIdentifier"))
|
494
|
+
CreateReplicationInstanceMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
493
495
|
CreateReplicationInstanceMessage.struct_class = Types::CreateReplicationInstanceMessage
|
494
496
|
|
495
497
|
CreateReplicationInstanceResponse.add_member(:replication_instance, Shapes::ShapeRef.new(shape: ReplicationInstance, location_name: "ReplicationInstance"))
|
@@ -1193,6 +1195,7 @@ module Aws::DatabaseMigrationService
|
|
1193
1195
|
ModifyReplicationInstanceMessage.add_member(:allow_major_version_upgrade, Shapes::ShapeRef.new(shape: Boolean, location_name: "AllowMajorVersionUpgrade"))
|
1194
1196
|
ModifyReplicationInstanceMessage.add_member(:auto_minor_version_upgrade, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AutoMinorVersionUpgrade"))
|
1195
1197
|
ModifyReplicationInstanceMessage.add_member(:replication_instance_identifier, Shapes::ShapeRef.new(shape: String, location_name: "ReplicationInstanceIdentifier"))
|
1198
|
+
ModifyReplicationInstanceMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
1196
1199
|
ModifyReplicationInstanceMessage.struct_class = Types::ModifyReplicationInstanceMessage
|
1197
1200
|
|
1198
1201
|
ModifyReplicationInstanceResponse.add_member(:replication_instance, Shapes::ShapeRef.new(shape: ReplicationInstance, location_name: "ReplicationInstance"))
|
@@ -1453,12 +1456,16 @@ module Aws::DatabaseMigrationService
|
|
1453
1456
|
ReplicationInstance.add_member(:replication_instance_private_ip_address, Shapes::ShapeRef.new(shape: String, deprecated: true, location_name: "ReplicationInstancePrivateIpAddress"))
|
1454
1457
|
ReplicationInstance.add_member(:replication_instance_public_ip_addresses, Shapes::ShapeRef.new(shape: ReplicationInstancePublicIpAddressList, location_name: "ReplicationInstancePublicIpAddresses"))
|
1455
1458
|
ReplicationInstance.add_member(:replication_instance_private_ip_addresses, Shapes::ShapeRef.new(shape: ReplicationInstancePrivateIpAddressList, location_name: "ReplicationInstancePrivateIpAddresses"))
|
1459
|
+
ReplicationInstance.add_member(:replication_instance_ipv_6_addresses, Shapes::ShapeRef.new(shape: ReplicationInstanceIpv6AddressList, location_name: "ReplicationInstanceIpv6Addresses"))
|
1456
1460
|
ReplicationInstance.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: Boolean, location_name: "PubliclyAccessible"))
|
1457
1461
|
ReplicationInstance.add_member(:secondary_availability_zone, Shapes::ShapeRef.new(shape: String, location_name: "SecondaryAvailabilityZone"))
|
1458
1462
|
ReplicationInstance.add_member(:free_until, Shapes::ShapeRef.new(shape: TStamp, location_name: "FreeUntil"))
|
1459
1463
|
ReplicationInstance.add_member(:dns_name_servers, Shapes::ShapeRef.new(shape: String, location_name: "DnsNameServers"))
|
1464
|
+
ReplicationInstance.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
1460
1465
|
ReplicationInstance.struct_class = Types::ReplicationInstance
|
1461
1466
|
|
1467
|
+
ReplicationInstanceIpv6AddressList.member = Shapes::ShapeRef.new(shape: String)
|
1468
|
+
|
1462
1469
|
ReplicationInstanceList.member = Shapes::ShapeRef.new(shape: ReplicationInstance)
|
1463
1470
|
|
1464
1471
|
ReplicationInstancePrivateIpAddressList.member = Shapes::ShapeRef.new(shape: String)
|
@@ -1476,6 +1483,7 @@ module Aws::DatabaseMigrationService
|
|
1476
1483
|
ReplicationPendingModifiedValues.add_member(:allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "AllocatedStorage"))
|
1477
1484
|
ReplicationPendingModifiedValues.add_member(:multi_az, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "MultiAZ"))
|
1478
1485
|
ReplicationPendingModifiedValues.add_member(:engine_version, Shapes::ShapeRef.new(shape: String, location_name: "EngineVersion"))
|
1486
|
+
ReplicationPendingModifiedValues.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
1479
1487
|
ReplicationPendingModifiedValues.struct_class = Types::ReplicationPendingModifiedValues
|
1480
1488
|
|
1481
1489
|
ReplicationSubnetGroup.add_member(:replication_subnet_group_identifier, Shapes::ShapeRef.new(shape: String, location_name: "ReplicationSubnetGroupIdentifier"))
|
@@ -1483,6 +1491,7 @@ module Aws::DatabaseMigrationService
|
|
1483
1491
|
ReplicationSubnetGroup.add_member(:vpc_id, Shapes::ShapeRef.new(shape: String, location_name: "VpcId"))
|
1484
1492
|
ReplicationSubnetGroup.add_member(:subnet_group_status, Shapes::ShapeRef.new(shape: String, location_name: "SubnetGroupStatus"))
|
1485
1493
|
ReplicationSubnetGroup.add_member(:subnets, Shapes::ShapeRef.new(shape: SubnetList, location_name: "Subnets"))
|
1494
|
+
ReplicationSubnetGroup.add_member(:supported_network_types, Shapes::ShapeRef.new(shape: StringList, location_name: "SupportedNetworkTypes"))
|
1486
1495
|
ReplicationSubnetGroup.struct_class = Types::ReplicationSubnetGroup
|
1487
1496
|
|
1488
1497
|
ReplicationSubnetGroupDoesNotCoverEnoughAZs.add_member(:message, Shapes::ShapeRef.new(shape: ExceptionMessage, location_name: "message"))
|
@@ -1744,6 +1753,10 @@ module Aws::DatabaseMigrationService
|
|
1744
1753
|
TableStatistics.add_member(:deletes, Shapes::ShapeRef.new(shape: Long, location_name: "Deletes"))
|
1745
1754
|
TableStatistics.add_member(:updates, Shapes::ShapeRef.new(shape: Long, location_name: "Updates"))
|
1746
1755
|
TableStatistics.add_member(:ddls, Shapes::ShapeRef.new(shape: Long, location_name: "Ddls"))
|
1756
|
+
TableStatistics.add_member(:applied_inserts, Shapes::ShapeRef.new(shape: LongOptional, location_name: "AppliedInserts"))
|
1757
|
+
TableStatistics.add_member(:applied_deletes, Shapes::ShapeRef.new(shape: LongOptional, location_name: "AppliedDeletes"))
|
1758
|
+
TableStatistics.add_member(:applied_updates, Shapes::ShapeRef.new(shape: LongOptional, location_name: "AppliedUpdates"))
|
1759
|
+
TableStatistics.add_member(:applied_ddls, Shapes::ShapeRef.new(shape: LongOptional, location_name: "AppliedDdls"))
|
1747
1760
|
TableStatistics.add_member(:full_load_rows, Shapes::ShapeRef.new(shape: Long, location_name: "FullLoadRows"))
|
1748
1761
|
TableStatistics.add_member(:full_load_condtnl_chk_failed_rows, Shapes::ShapeRef.new(shape: Long, location_name: "FullLoadCondtnlChkFailedRows"))
|
1749
1762
|
TableStatistics.add_member(:full_load_error_rows, Shapes::ShapeRef.new(shape: Long, location_name: "FullLoadErrorRows"))
|
@@ -0,0 +1,66 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# WARNING ABOUT GENERATED CODE
|
4
|
+
#
|
5
|
+
# This file is generated. See the contributing guide for more information:
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
|
+
#
|
8
|
+
# WARNING ABOUT GENERATED CODE
|
9
|
+
|
10
|
+
module Aws::DatabaseMigrationService
|
11
|
+
# Endpoint parameters used to influence endpoints per request.
|
12
|
+
#
|
13
|
+
# @!attribute region
|
14
|
+
# The AWS region used to dispatch the request.
|
15
|
+
#
|
16
|
+
# @return [String]
|
17
|
+
#
|
18
|
+
# @!attribute use_dual_stack
|
19
|
+
# When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.
|
20
|
+
#
|
21
|
+
# @return [Boolean]
|
22
|
+
#
|
23
|
+
# @!attribute use_fips
|
24
|
+
# When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.
|
25
|
+
#
|
26
|
+
# @return [Boolean]
|
27
|
+
#
|
28
|
+
# @!attribute endpoint
|
29
|
+
# Override the endpoint used to send this request
|
30
|
+
#
|
31
|
+
# @return [String]
|
32
|
+
#
|
33
|
+
EndpointParameters = Struct.new(
|
34
|
+
:region,
|
35
|
+
:use_dual_stack,
|
36
|
+
:use_fips,
|
37
|
+
:endpoint,
|
38
|
+
) do
|
39
|
+
include Aws::Structure
|
40
|
+
|
41
|
+
# @api private
|
42
|
+
class << self
|
43
|
+
PARAM_MAP = {
|
44
|
+
'Region' => :region,
|
45
|
+
'UseDualStack' => :use_dual_stack,
|
46
|
+
'UseFIPS' => :use_fips,
|
47
|
+
'Endpoint' => :endpoint,
|
48
|
+
}.freeze
|
49
|
+
end
|
50
|
+
|
51
|
+
def initialize(options = {})
|
52
|
+
self[:region] = options[:region]
|
53
|
+
self[:use_dual_stack] = options[:use_dual_stack]
|
54
|
+
self[:use_dual_stack] = false if self[:use_dual_stack].nil?
|
55
|
+
if self[:use_dual_stack].nil?
|
56
|
+
raise ArgumentError, "Missing required EndpointParameter: :use_dual_stack"
|
57
|
+
end
|
58
|
+
self[:use_fips] = options[:use_fips]
|
59
|
+
self[:use_fips] = false if self[:use_fips].nil?
|
60
|
+
if self[:use_fips].nil?
|
61
|
+
raise ArgumentError, "Missing required EndpointParameter: :use_fips"
|
62
|
+
end
|
63
|
+
self[:endpoint] = options[:endpoint]
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
@@ -0,0 +1,143 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# WARNING ABOUT GENERATED CODE
|
4
|
+
#
|
5
|
+
# This file is generated. See the contributing guide for more information:
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
|
+
#
|
8
|
+
# WARNING ABOUT GENERATED CODE
|
9
|
+
|
10
|
+
module Aws::DatabaseMigrationService
|
11
|
+
class EndpointProvider
|
12
|
+
def initialize(rule_set = nil)
|
13
|
+
@@rule_set ||= begin
|
14
|
+
endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
|
15
|
+
Aws::Endpoints::RuleSet.new(
|
16
|
+
version: endpoint_rules['version'],
|
17
|
+
service_id: endpoint_rules['serviceId'],
|
18
|
+
parameters: endpoint_rules['parameters'],
|
19
|
+
rules: endpoint_rules['rules']
|
20
|
+
)
|
21
|
+
end
|
22
|
+
@provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
|
23
|
+
end
|
24
|
+
|
25
|
+
def resolve_endpoint(parameters)
|
26
|
+
@provider.resolve_endpoint(parameters)
|
27
|
+
end
|
28
|
+
|
29
|
+
# @api private
|
30
|
+
RULES = <<-JSON
|
31
|
+
eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
|
32
|
+
bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
|
33
|
+
dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
|
34
|
+
cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
|
35
|
+
dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
|
36
|
+
ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
|
37
|
+
ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
|
38
|
+
ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
|
39
|
+
aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
|
40
|
+
OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
|
41
|
+
UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
|
42
|
+
dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
|
43
|
+
UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
|
44
|
+
dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
|
45
|
+
ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
|
46
|
+
IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
|
47
|
+
aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
|
48
|
+
bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
|
49
|
+
ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
|
50
|
+
Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
|
51
|
+
cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
|
52
|
+
InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
|
53
|
+
aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
|
54
|
+
cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
|
55
|
+
InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
|
56
|
+
W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
|
57
|
+
UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
|
58
|
+
SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
|
59
|
+
eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
|
60
|
+
InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
|
61
|
+
LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
|
62
|
+
ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
|
63
|
+
b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
|
64
|
+
fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
|
65
|
+
RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
|
66
|
+
ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
|
67
|
+
ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
|
68
|
+
ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
|
69
|
+
dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
|
70
|
+
dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
|
71
|
+
Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
|
72
|
+
In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
|
73
|
+
YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
|
74
|
+
YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
|
75
|
+
cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
|
76
|
+
dCI6eyJ1cmwiOiJodHRwczovL2Rtcy1maXBzLntSZWdpb259LntQYXJ0aXRp
|
77
|
+
b25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9
|
78
|
+
LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRp
|
79
|
+
b25zIjpbXSwiZXJyb3IiOiJGSVBTIGFuZCBEdWFsU3RhY2sgYXJlIGVuYWJs
|
80
|
+
ZWQsIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IG9uZSBv
|
81
|
+
ciBib3RoIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOlt7ImZu
|
82
|
+
IjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUZJUFMifSx0
|
83
|
+
cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpb
|
84
|
+
eyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0
|
85
|
+
QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBw
|
86
|
+
b3J0c0ZJUFMiXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
|
87
|
+
dGlvbnMiOltdLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25z
|
88
|
+
IjpbeyJmbiI6InN0cmluZ0VxdWFscyIsImFyZ3YiOlt7InJlZiI6IlJlZ2lv
|
89
|
+
biJ9LCJkbXMiXX1dLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL2Rtcy1m
|
90
|
+
aXBzLnVzLXdlc3QtMS5hbWF6b25hd3MuY29tIiwicHJvcGVydGllcyI6e30s
|
91
|
+
ImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In0seyJjb25kaXRpb25z
|
92
|
+
IjpbeyJmbiI6InN0cmluZ0VxdWFscyIsImFyZ3YiOlt7InJlZiI6IlJlZ2lv
|
93
|
+
biJ9LCJkbXMiXX1dLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL2Rtcy51
|
94
|
+
cy1nb3Ytd2VzdC0xLmFtYXpvbmF3cy5jb20iLCJwcm9wZXJ0aWVzIjp7fSwi
|
95
|
+
aGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifSx7ImNvbmRpdGlvbnMi
|
96
|
+
Olt7ImZuIjoic3RyaW5nRXF1YWxzIiwiYXJndiI6WyJhd3MtdXMtZ292Iix7
|
97
|
+
ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3Vs
|
98
|
+
dCJ9LCJuYW1lIl19XX1dLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL2Rt
|
99
|
+
cy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9w
|
100
|
+
ZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifSx7
|
101
|
+
ImNvbmRpdGlvbnMiOlt7ImZuIjoic3RyaW5nRXF1YWxzIiwiYXJndiI6W3si
|
102
|
+
cmVmIjoiUmVnaW9uIn0sImRtcyJdfV0sImVuZHBvaW50Ijp7InVybCI6Imh0
|
103
|
+
dHBzOi8vZG1zLnVzLWlzby1lYXN0LTEuYzJzLmljLmdvdiIsInByb3BlcnRp
|
104
|
+
ZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9LHsiY29u
|
105
|
+
ZGl0aW9ucyI6W3siZm4iOiJzdHJpbmdFcXVhbHMiLCJhcmd2IjpbImF3cy1p
|
106
|
+
c28iLHsiZm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9u
|
107
|
+
UmVzdWx0In0sIm5hbWUiXX1dfV0sImVuZHBvaW50Ijp7InVybCI6Imh0dHBz
|
108
|
+
Oi8vZG1zLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZG5zU3VmZml4fSIs
|
109
|
+
InByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2lu
|
110
|
+
dCJ9LHsiY29uZGl0aW9ucyI6W3siZm4iOiJzdHJpbmdFcXVhbHMiLCJhcmd2
|
111
|
+
IjpbeyJyZWYiOiJSZWdpb24ifSwiZG1zIl19XSwiZW5kcG9pbnQiOnsidXJs
|
112
|
+
IjoiaHR0cHM6Ly9kbXMudXMtaXNvYi1lYXN0LTEuc2Mycy5zZ292LmdvdiIs
|
113
|
+
InByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2lu
|
114
|
+
dCJ9LHsiY29uZGl0aW9ucyI6W3siZm4iOiJzdHJpbmdFcXVhbHMiLCJhcmd2
|
115
|
+
IjpbImF3cy1pc28tYiIseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYi
|
116
|
+
OiJQYXJ0aXRpb25SZXN1bHQifSwibmFtZSJdfV19XSwiZW5kcG9pbnQiOnsi
|
117
|
+
dXJsIjoiaHR0cHM6Ly9kbXMue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNk
|
118
|
+
bnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
|
119
|
+
ZSI6ImVuZHBvaW50In0seyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsi
|
120
|
+
dXJsIjoiaHR0cHM6Ly9kbXMtZmlwcy57UmVnaW9ufS57UGFydGl0aW9uUmVz
|
121
|
+
dWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319
|
122
|
+
LCJ0eXBlIjoiZW5kcG9pbnQifV19XX0seyJjb25kaXRpb25zIjpbXSwiZXJy
|
123
|
+
b3IiOiJGSVBTIGlzIGVuYWJsZWQgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMg
|
124
|
+
bm90IHN1cHBvcnQgRklQUyIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRp
|
125
|
+
b25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJV
|
126
|
+
c2VEdWFsU3RhY2sifSx0cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpb
|
127
|
+
eyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2Ijpb
|
128
|
+
dHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlv
|
129
|
+
blJlc3VsdCJ9LCJzdXBwb3J0c0R1YWxTdGFjayJdfV19XSwidHlwZSI6InRy
|
130
|
+
ZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVy
|
131
|
+
bCI6Imh0dHBzOi8vZG1zLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZHVh
|
132
|
+
bFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7
|
133
|
+
fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJy
|
134
|
+
b3IiOiJEdWFsU3RhY2sgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24g
|
135
|
+
ZG9lcyBub3Qgc3VwcG9ydCBEdWFsU3RhY2siLCJ0eXBlIjoiZXJyb3IifV19
|
136
|
+
LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8v
|
137
|
+
ZG1zLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZG5zU3VmZml4fSIsInBy
|
138
|
+
b3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9
|
139
|
+
XX1dfQ==
|
140
|
+
|
141
|
+
JSON
|
142
|
+
end
|
143
|
+
end
|