aws-sdk-core 2.11.358 → 2.11.359
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 +4 -4
- data/apis/rds-data/2018-08-01/api-2.json +466 -713
- data/apis/rds-data/2018-08-01/examples-1.json +3 -2
- data/apis/rds-data/2018-08-01/paginators-1.json +3 -2
- data/apis/redshift/2012-12-01/api-2.json +105 -1
- data/apis/redshift/2012-12-01/paginators-1.json +6 -0
- data/endpoints.json +12 -0
- data/lib/aws-sdk-core/version.rb +1 -1
- metadata +2 -2
|
@@ -761,6 +761,22 @@
|
|
|
761
761
|
{"shape":"ClusterNotFoundFault"}
|
|
762
762
|
]
|
|
763
763
|
},
|
|
764
|
+
"DescribeNodeConfigurationOptions":{
|
|
765
|
+
"name":"DescribeNodeConfigurationOptions",
|
|
766
|
+
"http":{
|
|
767
|
+
"method":"POST",
|
|
768
|
+
"requestUri":"/"
|
|
769
|
+
},
|
|
770
|
+
"input":{"shape":"DescribeNodeConfigurationOptionsMessage"},
|
|
771
|
+
"output":{
|
|
772
|
+
"shape":"NodeConfigurationOptionsMessage",
|
|
773
|
+
"resultWrapper":"DescribeNodeConfigurationOptionsResult"
|
|
774
|
+
},
|
|
775
|
+
"errors":[
|
|
776
|
+
{"shape":"ClusterSnapshotNotFoundFault"},
|
|
777
|
+
{"shape":"InvalidClusterSnapshotStateFault"}
|
|
778
|
+
]
|
|
779
|
+
},
|
|
764
780
|
"DescribeOrderableClusterOptions":{
|
|
765
781
|
"name":"DescribeOrderableClusterOptions",
|
|
766
782
|
"http":{
|
|
@@ -1453,6 +1469,10 @@
|
|
|
1453
1469
|
"locationName":"AccountWithRestoreAccess"
|
|
1454
1470
|
}
|
|
1455
1471
|
},
|
|
1472
|
+
"ActionType":{
|
|
1473
|
+
"type":"string",
|
|
1474
|
+
"enum":["restore-cluster"]
|
|
1475
|
+
},
|
|
1456
1476
|
"AssociatedClusterList":{
|
|
1457
1477
|
"type":"list",
|
|
1458
1478
|
"member":{
|
|
@@ -1702,6 +1722,7 @@
|
|
|
1702
1722
|
"SnapshotScheduleState":{"shape":"ScheduleState"},
|
|
1703
1723
|
"ExpectedNextSnapshotScheduleTime":{"shape":"TStamp"},
|
|
1704
1724
|
"ExpectedNextSnapshotScheduleTimeStatus":{"shape":"String"},
|
|
1725
|
+
"NextMaintenanceWindowStartTime":{"shape":"TStamp"},
|
|
1705
1726
|
"ResizeInfo":{"shape":"ResizeInfo"}
|
|
1706
1727
|
},
|
|
1707
1728
|
"wrapper":true
|
|
@@ -2729,6 +2750,21 @@
|
|
|
2729
2750
|
"ClusterIdentifier":{"shape":"String"}
|
|
2730
2751
|
}
|
|
2731
2752
|
},
|
|
2753
|
+
"DescribeNodeConfigurationOptionsMessage":{
|
|
2754
|
+
"type":"structure",
|
|
2755
|
+
"required":["ActionType"],
|
|
2756
|
+
"members":{
|
|
2757
|
+
"ActionType":{"shape":"ActionType"},
|
|
2758
|
+
"SnapshotIdentifier":{"shape":"String"},
|
|
2759
|
+
"OwnerAccount":{"shape":"String"},
|
|
2760
|
+
"Filters":{
|
|
2761
|
+
"shape":"NodeConfigurationOptionsFilterList",
|
|
2762
|
+
"locationName":"Filter"
|
|
2763
|
+
},
|
|
2764
|
+
"Marker":{"shape":"String"},
|
|
2765
|
+
"MaxRecords":{"shape":"IntegerOptional"}
|
|
2766
|
+
}
|
|
2767
|
+
},
|
|
2732
2768
|
"DescribeOrderableClusterOptionsMessage":{
|
|
2733
2769
|
"type":"structure",
|
|
2734
2770
|
"members":{
|
|
@@ -3716,6 +3752,54 @@
|
|
|
3716
3752
|
"ScheduleDefinitions":{"shape":"ScheduleDefinitionList"}
|
|
3717
3753
|
}
|
|
3718
3754
|
},
|
|
3755
|
+
"NodeConfigurationOption":{
|
|
3756
|
+
"type":"structure",
|
|
3757
|
+
"members":{
|
|
3758
|
+
"NodeType":{"shape":"String"},
|
|
3759
|
+
"NumberOfNodes":{"shape":"Integer"},
|
|
3760
|
+
"EstimatedDiskUtilizationPercent":{"shape":"DoubleOptional"}
|
|
3761
|
+
}
|
|
3762
|
+
},
|
|
3763
|
+
"NodeConfigurationOptionList":{
|
|
3764
|
+
"type":"list",
|
|
3765
|
+
"member":{
|
|
3766
|
+
"shape":"NodeConfigurationOption",
|
|
3767
|
+
"locationName":"NodeConfigurationOption"
|
|
3768
|
+
}
|
|
3769
|
+
},
|
|
3770
|
+
"NodeConfigurationOptionsFilter":{
|
|
3771
|
+
"type":"structure",
|
|
3772
|
+
"members":{
|
|
3773
|
+
"Name":{"shape":"NodeConfigurationOptionsFilterName"},
|
|
3774
|
+
"Operator":{"shape":"OperatorType"},
|
|
3775
|
+
"Values":{
|
|
3776
|
+
"shape":"ValueStringList",
|
|
3777
|
+
"locationName":"Value"
|
|
3778
|
+
}
|
|
3779
|
+
}
|
|
3780
|
+
},
|
|
3781
|
+
"NodeConfigurationOptionsFilterList":{
|
|
3782
|
+
"type":"list",
|
|
3783
|
+
"member":{
|
|
3784
|
+
"shape":"NodeConfigurationOptionsFilter",
|
|
3785
|
+
"locationName":"NodeConfigurationOptionsFilter"
|
|
3786
|
+
}
|
|
3787
|
+
},
|
|
3788
|
+
"NodeConfigurationOptionsFilterName":{
|
|
3789
|
+
"type":"string",
|
|
3790
|
+
"enum":[
|
|
3791
|
+
"NodeType",
|
|
3792
|
+
"NumberOfNodes",
|
|
3793
|
+
"EstimatedDiskUtilizationPercent"
|
|
3794
|
+
]
|
|
3795
|
+
},
|
|
3796
|
+
"NodeConfigurationOptionsMessage":{
|
|
3797
|
+
"type":"structure",
|
|
3798
|
+
"members":{
|
|
3799
|
+
"NodeConfigurationOptionList":{"shape":"NodeConfigurationOptionList"},
|
|
3800
|
+
"Marker":{"shape":"String"}
|
|
3801
|
+
}
|
|
3802
|
+
},
|
|
3719
3803
|
"NumberOfNodesPerClusterLimitExceededFault":{
|
|
3720
3804
|
"type":"structure",
|
|
3721
3805
|
"members":{
|
|
@@ -3738,6 +3822,18 @@
|
|
|
3738
3822
|
},
|
|
3739
3823
|
"exception":true
|
|
3740
3824
|
},
|
|
3825
|
+
"OperatorType":{
|
|
3826
|
+
"type":"string",
|
|
3827
|
+
"enum":[
|
|
3828
|
+
"eq",
|
|
3829
|
+
"lt",
|
|
3830
|
+
"gt",
|
|
3831
|
+
"le",
|
|
3832
|
+
"ge",
|
|
3833
|
+
"in",
|
|
3834
|
+
"between"
|
|
3835
|
+
]
|
|
3836
|
+
},
|
|
3741
3837
|
"OrderableClusterOption":{
|
|
3742
3838
|
"type":"structure",
|
|
3743
3839
|
"members":{
|
|
@@ -4100,7 +4196,8 @@
|
|
|
4100
4196
|
"AdditionalInfo":{"shape":"String"},
|
|
4101
4197
|
"IamRoles":{"shape":"IamRoleArnList"},
|
|
4102
4198
|
"MaintenanceTrackName":{"shape":"String"},
|
|
4103
|
-
"SnapshotScheduleIdentifier":{"shape":"String"}
|
|
4199
|
+
"SnapshotScheduleIdentifier":{"shape":"String"},
|
|
4200
|
+
"NumberOfNodes":{"shape":"IntegerOptional"}
|
|
4104
4201
|
}
|
|
4105
4202
|
},
|
|
4106
4203
|
"RestoreFromClusterSnapshotResult":{
|
|
@@ -4866,6 +4963,13 @@
|
|
|
4866
4963
|
"SupportedOperations":{"shape":"SupportedOperationList"}
|
|
4867
4964
|
}
|
|
4868
4965
|
},
|
|
4966
|
+
"ValueStringList":{
|
|
4967
|
+
"type":"list",
|
|
4968
|
+
"member":{
|
|
4969
|
+
"shape":"String",
|
|
4970
|
+
"locationName":"item"
|
|
4971
|
+
}
|
|
4972
|
+
},
|
|
4869
4973
|
"VpcSecurityGroupIdList":{
|
|
4870
4974
|
"type":"list",
|
|
4871
4975
|
"member":{
|
|
@@ -72,6 +72,12 @@
|
|
|
72
72
|
"output_token": "Marker",
|
|
73
73
|
"result_key": "HsmConfigurations"
|
|
74
74
|
},
|
|
75
|
+
"DescribeNodeConfigurationOptions": {
|
|
76
|
+
"input_token": "Marker",
|
|
77
|
+
"limit_key": "MaxRecords",
|
|
78
|
+
"output_token": "Marker",
|
|
79
|
+
"result_key": "NodeConfigurationOptionList"
|
|
80
|
+
},
|
|
75
81
|
"DescribeOrderableClusterOptions": {
|
|
76
82
|
"input_token": "Marker",
|
|
77
83
|
"limit_key": "MaxRecords",
|
data/endpoints.json
CHANGED
|
@@ -4859,6 +4859,18 @@
|
|
|
4859
4859
|
"us-iso-east-1" : { }
|
|
4860
4860
|
}
|
|
4861
4861
|
},
|
|
4862
|
+
"route53" : {
|
|
4863
|
+
"endpoints" : {
|
|
4864
|
+
"aws-iso-global" : {
|
|
4865
|
+
"credentialScope" : {
|
|
4866
|
+
"region" : "us-iso-east-1"
|
|
4867
|
+
},
|
|
4868
|
+
"hostname" : "route53.c2s.ic.gov"
|
|
4869
|
+
}
|
|
4870
|
+
},
|
|
4871
|
+
"isRegionalized" : false,
|
|
4872
|
+
"partitionEndpoint" : "aws-iso-global"
|
|
4873
|
+
},
|
|
4862
4874
|
"s3" : {
|
|
4863
4875
|
"defaults" : {
|
|
4864
4876
|
"signatureVersions" : [ "s3v4" ]
|
data/lib/aws-sdk-core/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-core
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.11.
|
|
4
|
+
version: 2.11.359
|
|
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: 2019-09-
|
|
11
|
+
date: 2019-09-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jmespath
|