aws-sdk-neptune 1.48.0 → 1.50.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 +12 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-neptune/client.rb +114 -4
- data/lib/aws-sdk-neptune/client_api.rb +13 -1
- data/lib/aws-sdk-neptune/endpoint_provider.rb +41 -121
- data/lib/aws-sdk-neptune/types.rb +66 -1068
- data/lib/aws-sdk-neptune.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5483e7e018d9bc0406dbcc449bb65084e1ed6594689727c0a0eec8715bf02925
|
4
|
+
data.tar.gz: 6695f0fbbffd0a5cfad0c78684edf5c0c2db20b8687b225f0df0181824915382
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 22b1a7f6dfce4a7ea32c91d436272fce81ca91a331cabf600b9f67895051de5e7e9379716ed8151fcd7b4065f57a78158a04d5639af84052f36a069e07c04466
|
7
|
+
data.tar.gz: 2099426fccc1919314c2fc2e367c4df4056dd2df27230f3aa121390858447cbac686694b5653bbfa1432d648677a0e1dbea70aa4062de42d510024da4174a364
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,18 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.50.0 (2023-03-20)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release makes following few changes. db-cluster-identifier is now a required parameter of create-db-instance. describe-db-cluster will now return PendingModifiedValues and GlobalClusterIdentifier fields in the response.
|
8
|
+
|
9
|
+
1.49.0 (2023-01-18)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
* Issue - Replace runtime endpoint resolution approach with generated ruby code.
|
15
|
+
|
4
16
|
1.48.0 (2022-10-26)
|
5
17
|
------------------
|
6
18
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.50.0
|
@@ -1005,7 +1005,7 @@ module Aws::Neptune
|
|
1005
1005
|
# cluster, then you can use the KMS key alias instead of the ARN for the
|
1006
1006
|
# KMS encryption key.
|
1007
1007
|
#
|
1008
|
-
# If an encryption key is not specified in `KmsKeyId
|
1008
|
+
# If an encryption key is not specified in `KmsKeyId`:
|
1009
1009
|
#
|
1010
1010
|
# * If `ReplicationSourceIdentifier` identifies an encrypted source,
|
1011
1011
|
# then Amazon Neptune will use the encryption key used to encrypt the
|
@@ -1160,11 +1160,22 @@ module Aws::Neptune
|
|
1160
1160
|
# resp.db_cluster.copy_tags_to_snapshot #=> Boolean
|
1161
1161
|
# resp.db_cluster.enabled_cloudwatch_logs_exports #=> Array
|
1162
1162
|
# resp.db_cluster.enabled_cloudwatch_logs_exports[0] #=> String
|
1163
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
1164
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
1165
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
1166
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
1167
|
+
# resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
|
1168
|
+
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
1169
|
+
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
1170
|
+
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
1171
|
+
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
1172
|
+
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
1163
1173
|
# resp.db_cluster.deletion_protection #=> Boolean
|
1164
1174
|
# resp.db_cluster.cross_account_clone #=> Boolean
|
1165
1175
|
# resp.db_cluster.automatic_restart_time #=> Time
|
1166
1176
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
1167
1177
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
1178
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
1168
1179
|
#
|
1169
1180
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/CreateDBCluster AWS API Documentation
|
1170
1181
|
#
|
@@ -1591,7 +1602,7 @@ module Aws::Neptune
|
|
1591
1602
|
# @option params [Array<Types::Tag>] :tags
|
1592
1603
|
# The tags to assign to the new instance.
|
1593
1604
|
#
|
1594
|
-
# @option params [String] :db_cluster_identifier
|
1605
|
+
# @option params [required, String] :db_cluster_identifier
|
1595
1606
|
# The identifier of the DB cluster that the instance will belong to.
|
1596
1607
|
#
|
1597
1608
|
# For information on creating a DB cluster, see CreateDBCluster.
|
@@ -1741,7 +1752,7 @@ module Aws::Neptune
|
|
1741
1752
|
# value: "String",
|
1742
1753
|
# },
|
1743
1754
|
# ],
|
1744
|
-
# db_cluster_identifier: "String",
|
1755
|
+
# db_cluster_identifier: "String", # required
|
1745
1756
|
# storage_type: "String",
|
1746
1757
|
# tde_credential_arn: "String",
|
1747
1758
|
# tde_credential_password: "String",
|
@@ -2326,11 +2337,22 @@ module Aws::Neptune
|
|
2326
2337
|
# resp.db_cluster.copy_tags_to_snapshot #=> Boolean
|
2327
2338
|
# resp.db_cluster.enabled_cloudwatch_logs_exports #=> Array
|
2328
2339
|
# resp.db_cluster.enabled_cloudwatch_logs_exports[0] #=> String
|
2340
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
2341
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
2342
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
2343
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
2344
|
+
# resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
|
2345
|
+
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
2346
|
+
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
2347
|
+
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
2348
|
+
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
2349
|
+
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
2329
2350
|
# resp.db_cluster.deletion_protection #=> Boolean
|
2330
2351
|
# resp.db_cluster.cross_account_clone #=> Boolean
|
2331
2352
|
# resp.db_cluster.automatic_restart_time #=> Time
|
2332
2353
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
2333
2354
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
2355
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
2334
2356
|
#
|
2335
2357
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DeleteDBCluster AWS API Documentation
|
2336
2358
|
#
|
@@ -3393,11 +3415,22 @@ module Aws::Neptune
|
|
3393
3415
|
# resp.db_clusters[0].copy_tags_to_snapshot #=> Boolean
|
3394
3416
|
# resp.db_clusters[0].enabled_cloudwatch_logs_exports #=> Array
|
3395
3417
|
# resp.db_clusters[0].enabled_cloudwatch_logs_exports[0] #=> String
|
3418
|
+
# resp.db_clusters[0].pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
3419
|
+
# resp.db_clusters[0].pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
3420
|
+
# resp.db_clusters[0].pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
3421
|
+
# resp.db_clusters[0].pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
3422
|
+
# resp.db_clusters[0].pending_modified_values.db_cluster_identifier #=> String
|
3423
|
+
# resp.db_clusters[0].pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
3424
|
+
# resp.db_clusters[0].pending_modified_values.engine_version #=> String
|
3425
|
+
# resp.db_clusters[0].pending_modified_values.backup_retention_period #=> Integer
|
3426
|
+
# resp.db_clusters[0].pending_modified_values.allocated_storage #=> Integer
|
3427
|
+
# resp.db_clusters[0].pending_modified_values.iops #=> Integer
|
3396
3428
|
# resp.db_clusters[0].deletion_protection #=> Boolean
|
3397
3429
|
# resp.db_clusters[0].cross_account_clone #=> Boolean
|
3398
3430
|
# resp.db_clusters[0].automatic_restart_time #=> Time
|
3399
3431
|
# resp.db_clusters[0].serverless_v2_scaling_configuration.min_capacity #=> Float
|
3400
3432
|
# resp.db_clusters[0].serverless_v2_scaling_configuration.max_capacity #=> Float
|
3433
|
+
# resp.db_clusters[0].global_cluster_identifier #=> String
|
3401
3434
|
#
|
3402
3435
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DescribeDBClusters AWS API Documentation
|
3403
3436
|
#
|
@@ -4720,11 +4753,22 @@ module Aws::Neptune
|
|
4720
4753
|
# resp.db_cluster.copy_tags_to_snapshot #=> Boolean
|
4721
4754
|
# resp.db_cluster.enabled_cloudwatch_logs_exports #=> Array
|
4722
4755
|
# resp.db_cluster.enabled_cloudwatch_logs_exports[0] #=> String
|
4756
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
4757
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
4758
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
4759
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
4760
|
+
# resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
|
4761
|
+
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
4762
|
+
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
4763
|
+
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
4764
|
+
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
4765
|
+
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
4723
4766
|
# resp.db_cluster.deletion_protection #=> Boolean
|
4724
4767
|
# resp.db_cluster.cross_account_clone #=> Boolean
|
4725
4768
|
# resp.db_cluster.automatic_restart_time #=> Time
|
4726
4769
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
4727
4770
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
4771
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
4728
4772
|
#
|
4729
4773
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/FailoverDBCluster AWS API Documentation
|
4730
4774
|
#
|
@@ -5111,11 +5155,22 @@ module Aws::Neptune
|
|
5111
5155
|
# resp.db_cluster.copy_tags_to_snapshot #=> Boolean
|
5112
5156
|
# resp.db_cluster.enabled_cloudwatch_logs_exports #=> Array
|
5113
5157
|
# resp.db_cluster.enabled_cloudwatch_logs_exports[0] #=> String
|
5158
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
5159
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
5160
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
5161
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
5162
|
+
# resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
|
5163
|
+
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
5164
|
+
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
5165
|
+
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
5166
|
+
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
5167
|
+
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
5114
5168
|
# resp.db_cluster.deletion_protection #=> Boolean
|
5115
5169
|
# resp.db_cluster.cross_account_clone #=> Boolean
|
5116
5170
|
# resp.db_cluster.automatic_restart_time #=> Time
|
5117
5171
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
5118
5172
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
5173
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
5119
5174
|
#
|
5120
5175
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/ModifyDBCluster AWS API Documentation
|
5121
5176
|
#
|
@@ -6161,11 +6216,22 @@ module Aws::Neptune
|
|
6161
6216
|
# resp.db_cluster.copy_tags_to_snapshot #=> Boolean
|
6162
6217
|
# resp.db_cluster.enabled_cloudwatch_logs_exports #=> Array
|
6163
6218
|
# resp.db_cluster.enabled_cloudwatch_logs_exports[0] #=> String
|
6219
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
6220
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
6221
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
6222
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
6223
|
+
# resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
|
6224
|
+
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
6225
|
+
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
6226
|
+
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
6227
|
+
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
6228
|
+
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
6164
6229
|
# resp.db_cluster.deletion_protection #=> Boolean
|
6165
6230
|
# resp.db_cluster.cross_account_clone #=> Boolean
|
6166
6231
|
# resp.db_cluster.automatic_restart_time #=> Time
|
6167
6232
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
6168
6233
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
6234
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
6169
6235
|
#
|
6170
6236
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/PromoteReadReplicaDBCluster AWS API Documentation
|
6171
6237
|
#
|
@@ -6852,11 +6918,22 @@ module Aws::Neptune
|
|
6852
6918
|
# resp.db_cluster.copy_tags_to_snapshot #=> Boolean
|
6853
6919
|
# resp.db_cluster.enabled_cloudwatch_logs_exports #=> Array
|
6854
6920
|
# resp.db_cluster.enabled_cloudwatch_logs_exports[0] #=> String
|
6921
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
6922
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
6923
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
6924
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
6925
|
+
# resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
|
6926
|
+
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
6927
|
+
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
6928
|
+
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
6929
|
+
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
6930
|
+
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
6855
6931
|
# resp.db_cluster.deletion_protection #=> Boolean
|
6856
6932
|
# resp.db_cluster.cross_account_clone #=> Boolean
|
6857
6933
|
# resp.db_cluster.automatic_restart_time #=> Time
|
6858
6934
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
6859
6935
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
6936
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
6860
6937
|
#
|
6861
6938
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/RestoreDBClusterFromSnapshot AWS API Documentation
|
6862
6939
|
#
|
@@ -7118,11 +7195,22 @@ module Aws::Neptune
|
|
7118
7195
|
# resp.db_cluster.copy_tags_to_snapshot #=> Boolean
|
7119
7196
|
# resp.db_cluster.enabled_cloudwatch_logs_exports #=> Array
|
7120
7197
|
# resp.db_cluster.enabled_cloudwatch_logs_exports[0] #=> String
|
7198
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
7199
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
7200
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
7201
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
7202
|
+
# resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
|
7203
|
+
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
7204
|
+
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
7205
|
+
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
7206
|
+
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
7207
|
+
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
7121
7208
|
# resp.db_cluster.deletion_protection #=> Boolean
|
7122
7209
|
# resp.db_cluster.cross_account_clone #=> Boolean
|
7123
7210
|
# resp.db_cluster.automatic_restart_time #=> Time
|
7124
7211
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
7125
7212
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
7213
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
7126
7214
|
#
|
7127
7215
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/RestoreDBClusterToPointInTime AWS API Documentation
|
7128
7216
|
#
|
@@ -7204,11 +7292,22 @@ module Aws::Neptune
|
|
7204
7292
|
# resp.db_cluster.copy_tags_to_snapshot #=> Boolean
|
7205
7293
|
# resp.db_cluster.enabled_cloudwatch_logs_exports #=> Array
|
7206
7294
|
# resp.db_cluster.enabled_cloudwatch_logs_exports[0] #=> String
|
7295
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
7296
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
7297
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
7298
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
7299
|
+
# resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
|
7300
|
+
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
7301
|
+
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
7302
|
+
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
7303
|
+
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
7304
|
+
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
7207
7305
|
# resp.db_cluster.deletion_protection #=> Boolean
|
7208
7306
|
# resp.db_cluster.cross_account_clone #=> Boolean
|
7209
7307
|
# resp.db_cluster.automatic_restart_time #=> Time
|
7210
7308
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
7211
7309
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
7310
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
7212
7311
|
#
|
7213
7312
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/StartDBCluster AWS API Documentation
|
7214
7313
|
#
|
@@ -7293,11 +7392,22 @@ module Aws::Neptune
|
|
7293
7392
|
# resp.db_cluster.copy_tags_to_snapshot #=> Boolean
|
7294
7393
|
# resp.db_cluster.enabled_cloudwatch_logs_exports #=> Array
|
7295
7394
|
# resp.db_cluster.enabled_cloudwatch_logs_exports[0] #=> String
|
7395
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
7396
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
7397
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
7398
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
7399
|
+
# resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
|
7400
|
+
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
7401
|
+
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
7402
|
+
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
7403
|
+
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
7404
|
+
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
7296
7405
|
# resp.db_cluster.deletion_protection #=> Boolean
|
7297
7406
|
# resp.db_cluster.cross_account_clone #=> Boolean
|
7298
7407
|
# resp.db_cluster.automatic_restart_time #=> Time
|
7299
7408
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
7300
7409
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
7410
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
7301
7411
|
#
|
7302
7412
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/StopDBCluster AWS API Documentation
|
7303
7413
|
#
|
@@ -7321,7 +7431,7 @@ module Aws::Neptune
|
|
7321
7431
|
params: params,
|
7322
7432
|
config: config)
|
7323
7433
|
context[:gem_name] = 'aws-sdk-neptune'
|
7324
|
-
context[:gem_version] = '1.
|
7434
|
+
context[:gem_version] = '1.50.0'
|
7325
7435
|
Seahorse::Client::Request.new(handlers, context)
|
7326
7436
|
end
|
7327
7437
|
|
@@ -30,6 +30,7 @@ module Aws::Neptune
|
|
30
30
|
CertificateNotFoundFault = Shapes::StructureShape.new(name: 'CertificateNotFoundFault')
|
31
31
|
CharacterSet = Shapes::StructureShape.new(name: 'CharacterSet')
|
32
32
|
CloudwatchLogsExportConfiguration = Shapes::StructureShape.new(name: 'CloudwatchLogsExportConfiguration')
|
33
|
+
ClusterPendingModifiedValues = Shapes::StructureShape.new(name: 'ClusterPendingModifiedValues')
|
33
34
|
CopyDBClusterParameterGroupMessage = Shapes::StructureShape.new(name: 'CopyDBClusterParameterGroupMessage')
|
34
35
|
CopyDBClusterParameterGroupResult = Shapes::StructureShape.new(name: 'CopyDBClusterParameterGroupResult')
|
35
36
|
CopyDBClusterSnapshotMessage = Shapes::StructureShape.new(name: 'CopyDBClusterSnapshotMessage')
|
@@ -364,6 +365,15 @@ module Aws::Neptune
|
|
364
365
|
CloudwatchLogsExportConfiguration.add_member(:disable_log_types, Shapes::ShapeRef.new(shape: LogTypeList, location_name: "DisableLogTypes"))
|
365
366
|
CloudwatchLogsExportConfiguration.struct_class = Types::CloudwatchLogsExportConfiguration
|
366
367
|
|
368
|
+
ClusterPendingModifiedValues.add_member(:pending_cloudwatch_logs_exports, Shapes::ShapeRef.new(shape: PendingCloudwatchLogsExports, location_name: "PendingCloudwatchLogsExports"))
|
369
|
+
ClusterPendingModifiedValues.add_member(:db_cluster_identifier, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterIdentifier"))
|
370
|
+
ClusterPendingModifiedValues.add_member(:iam_database_authentication_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "IAMDatabaseAuthenticationEnabled"))
|
371
|
+
ClusterPendingModifiedValues.add_member(:engine_version, Shapes::ShapeRef.new(shape: String, location_name: "EngineVersion"))
|
372
|
+
ClusterPendingModifiedValues.add_member(:backup_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "BackupRetentionPeriod"))
|
373
|
+
ClusterPendingModifiedValues.add_member(:allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "AllocatedStorage"))
|
374
|
+
ClusterPendingModifiedValues.add_member(:iops, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "Iops"))
|
375
|
+
ClusterPendingModifiedValues.struct_class = Types::ClusterPendingModifiedValues
|
376
|
+
|
367
377
|
CopyDBClusterParameterGroupMessage.add_member(:source_db_cluster_parameter_group_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "SourceDBClusterParameterGroupIdentifier"))
|
368
378
|
CopyDBClusterParameterGroupMessage.add_member(:target_db_cluster_parameter_group_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "TargetDBClusterParameterGroupIdentifier"))
|
369
379
|
CopyDBClusterParameterGroupMessage.add_member(:target_db_cluster_parameter_group_description, Shapes::ShapeRef.new(shape: String, required: true, location_name: "TargetDBClusterParameterGroupDescription"))
|
@@ -489,7 +499,7 @@ module Aws::Neptune
|
|
489
499
|
CreateDBInstanceMessage.add_member(:character_set_name, Shapes::ShapeRef.new(shape: String, location_name: "CharacterSetName"))
|
490
500
|
CreateDBInstanceMessage.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: BooleanOptional, deprecated: true, location_name: "PubliclyAccessible"))
|
491
501
|
CreateDBInstanceMessage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
492
|
-
CreateDBInstanceMessage.add_member(:db_cluster_identifier, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterIdentifier"))
|
502
|
+
CreateDBInstanceMessage.add_member(:db_cluster_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterIdentifier"))
|
493
503
|
CreateDBInstanceMessage.add_member(:storage_type, Shapes::ShapeRef.new(shape: String, location_name: "StorageType"))
|
494
504
|
CreateDBInstanceMessage.add_member(:tde_credential_arn, Shapes::ShapeRef.new(shape: String, location_name: "TdeCredentialArn"))
|
495
505
|
CreateDBInstanceMessage.add_member(:tde_credential_password, Shapes::ShapeRef.new(shape: String, location_name: "TdeCredentialPassword"))
|
@@ -590,10 +600,12 @@ module Aws::Neptune
|
|
590
600
|
DBCluster.add_member(:cluster_create_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "ClusterCreateTime"))
|
591
601
|
DBCluster.add_member(:copy_tags_to_snapshot, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CopyTagsToSnapshot"))
|
592
602
|
DBCluster.add_member(:enabled_cloudwatch_logs_exports, Shapes::ShapeRef.new(shape: LogTypeList, location_name: "EnabledCloudwatchLogsExports"))
|
603
|
+
DBCluster.add_member(:pending_modified_values, Shapes::ShapeRef.new(shape: ClusterPendingModifiedValues, location_name: "PendingModifiedValues"))
|
593
604
|
DBCluster.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
|
594
605
|
DBCluster.add_member(:cross_account_clone, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CrossAccountClone"))
|
595
606
|
DBCluster.add_member(:automatic_restart_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "AutomaticRestartTime"))
|
596
607
|
DBCluster.add_member(:serverless_v2_scaling_configuration, Shapes::ShapeRef.new(shape: ServerlessV2ScalingConfigurationInfo, location_name: "ServerlessV2ScalingConfiguration"))
|
608
|
+
DBCluster.add_member(:global_cluster_identifier, Shapes::ShapeRef.new(shape: GlobalClusterIdentifier, location_name: "GlobalClusterIdentifier"))
|
597
609
|
DBCluster.struct_class = Types::DBCluster
|
598
610
|
|
599
611
|
DBClusterAlreadyExistsFault.struct_class = Types::DBClusterAlreadyExistsFault
|
@@ -9,129 +9,49 @@
|
|
9
9
|
|
10
10
|
module Aws::Neptune
|
11
11
|
class EndpointProvider
|
12
|
-
def
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
12
|
+
def resolve_endpoint(parameters)
|
13
|
+
region = parameters.region
|
14
|
+
use_dual_stack = parameters.use_dual_stack
|
15
|
+
use_fips = parameters.use_fips
|
16
|
+
endpoint = parameters.endpoint
|
17
|
+
if Aws::Endpoints::Matchers.set?(endpoint)
|
18
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
19
|
+
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
20
|
+
end
|
21
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
22
|
+
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
23
|
+
end
|
24
|
+
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
21
25
|
end
|
22
|
-
|
23
|
-
|
26
|
+
if Aws::Endpoints::Matchers.set?(region)
|
27
|
+
if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
|
28
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
29
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
30
|
+
return Aws::Endpoints::Endpoint.new(url: "https://rds-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
31
|
+
end
|
32
|
+
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
33
|
+
end
|
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"))
|
36
|
+
if Aws::Endpoints::Matchers.string_equals?("aws-us-gov", Aws::Endpoints::Matchers.attr(partition_result, "name"))
|
37
|
+
return Aws::Endpoints::Endpoint.new(url: "https://rds.#{region}.amazonaws.com", headers: {}, properties: {})
|
38
|
+
end
|
39
|
+
return Aws::Endpoints::Endpoint.new(url: "https://rds-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
40
|
+
end
|
41
|
+
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
42
|
+
end
|
43
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
44
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
45
|
+
return Aws::Endpoints::Endpoint.new(url: "https://rds.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
46
|
+
end
|
47
|
+
raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
|
48
|
+
end
|
49
|
+
return Aws::Endpoints::Endpoint.new(url: "https://rds.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
50
|
+
end
|
51
|
+
end
|
52
|
+
raise ArgumentError, "Invalid Configuration: Missing Region"
|
53
|
+
raise ArgumentError, 'No endpoint could be resolved'
|
24
54
|
|
25
|
-
def resolve_endpoint(parameters)
|
26
|
-
@provider.resolve_endpoint(parameters)
|
27
55
|
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
|
-
dCI6eyJ1cmwiOiJodHRwczovL3Jkcy1maXBzLntSZWdpb259LntQYXJ0aXRp
|
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
|
-
biJ9LCJyZHMuY2EtY2VudHJhbC0xIl19XSwiZW5kcG9pbnQiOnsidXJsIjoi
|
90
|
-
aHR0cHM6Ly9yZHMtZmlwcy5jYS1jZW50cmFsLTEuYW1hem9uYXdzLmNvbSIs
|
91
|
-
InByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2lu
|
92
|
-
dCJ9LHsiY29uZGl0aW9ucyI6W3siZm4iOiJzdHJpbmdFcXVhbHMiLCJhcmd2
|
93
|
-
IjpbeyJyZWYiOiJSZWdpb24ifSwicmRzLnVzLWVhc3QtMSJdfV0sImVuZHBv
|
94
|
-
aW50Ijp7InVybCI6Imh0dHBzOi8vcmRzLWZpcHMudXMtZWFzdC0xLmFtYXpv
|
95
|
-
bmF3cy5jb20iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBl
|
96
|
-
IjoiZW5kcG9pbnQifSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoic3RyaW5nRXF1
|
97
|
-
YWxzIiwiYXJndiI6W3sicmVmIjoiUmVnaW9uIn0sInJkcy51cy1lYXN0LTIi
|
98
|
-
XX1dLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL3Jkcy1maXBzLnVzLWVh
|
99
|
-
c3QtMi5hbWF6b25hd3MuY29tIiwicHJvcGVydGllcyI6e30sImhlYWRlcnMi
|
100
|
-
Ont9fSwidHlwZSI6ImVuZHBvaW50In0seyJjb25kaXRpb25zIjpbeyJmbiI6
|
101
|
-
InN0cmluZ0VxdWFscyIsImFyZ3YiOlt7InJlZiI6IlJlZ2lvbiJ9LCJyZHMu
|
102
|
-
dXMtd2VzdC0xIl19XSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9yZHMt
|
103
|
-
Zmlwcy51cy13ZXN0LTEuYW1hem9uYXdzLmNvbSIsInByb3BlcnRpZXMiOnt9
|
104
|
-
LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9LHsiY29uZGl0aW9u
|
105
|
-
cyI6W3siZm4iOiJzdHJpbmdFcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJSZWdp
|
106
|
-
b24ifSwicmRzLnVzLXdlc3QtMiJdfV0sImVuZHBvaW50Ijp7InVybCI6Imh0
|
107
|
-
dHBzOi8vcmRzLWZpcHMudXMtd2VzdC0yLmFtYXpvbmF3cy5jb20iLCJwcm9w
|
108
|
-
ZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifSx7
|
109
|
-
ImNvbmRpdGlvbnMiOlt7ImZuIjoic3RyaW5nRXF1YWxzIiwiYXJndiI6WyJh
|
110
|
-
d3MtdXMtZ292Iix7ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBh
|
111
|
-
cnRpdGlvblJlc3VsdCJ9LCJuYW1lIl19XX1dLCJlbmRwb2ludCI6eyJ1cmwi
|
112
|
-
OiJodHRwczovL3Jkcy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1
|
113
|
-
ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoi
|
114
|
-
ZW5kcG9pbnQifSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwi
|
115
|
-
OiJodHRwczovL3Jkcy1maXBzLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQj
|
116
|
-
ZG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5
|
117
|
-
cGUiOiJlbmRwb2ludCJ9XX1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6
|
118
|
-
IkZJUFMgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qg
|
119
|
-
c3VwcG9ydCBGSVBTIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMi
|
120
|
-
Olt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1
|
121
|
-
YWxTdGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNv
|
122
|
-
bmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVl
|
123
|
-
LHsiZm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVz
|
124
|
-
dWx0In0sInN1cHBvcnRzRHVhbFN0YWNrIl19XX1dLCJ0eXBlIjoidHJlZSIs
|
125
|
-
InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoi
|
126
|
-
aHR0cHM6Ly9yZHMue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkdWFsU3Rh
|
127
|
-
Y2tEbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwi
|
128
|
-
dHlwZSI6ImVuZHBvaW50In1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6
|
129
|
-
IkR1YWxTdGFjayBpcyBlbmFibGVkIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2Vz
|
130
|
-
IG5vdCBzdXBwb3J0IER1YWxTdGFjayIsInR5cGUiOiJlcnJvciJ9XX0seyJj
|
131
|
-
b25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9yZHMu
|
132
|
-
e1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVy
|
133
|
-
dGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfV19
|
134
|
-
|
135
|
-
JSON
|
136
56
|
end
|
137
57
|
end
|