aws-sdk-core 2.11.441 → 2.11.442
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 68e761fc0b43d936545462402c0af8074c260e71
|
4
|
+
data.tar.gz: fd9c415cfb8b8a63e73213a5f4c9ae52d9995eae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5efa129e062c3b83a4da466bb36ef00ecf49026b8a8a7ac440b6132926c91e2548d3e6dcf0aea6e4516b5e9bd1ea2a230de8b51fde1c35fd78cc233e6fc07237
|
7
|
+
data.tar.gz: a31089b668bfc16de624ba8f2bcb0e4bcbd4428684e0fce0ffc383e4ffd6c6ad434a40e142cc63fdc460e809001ab2a3ee983515981fdee71b931e0d915b3d5e
|
@@ -812,7 +812,7 @@
|
|
812
812
|
"shapes":{
|
813
813
|
"Account":{
|
814
814
|
"type":"string",
|
815
|
-
"pattern":"[0-9]{12}"
|
815
|
+
"pattern":"^[0-9]{12}$"
|
816
816
|
},
|
817
817
|
"AccountGateResult":{
|
818
818
|
"type":"structure",
|
@@ -862,6 +862,14 @@
|
|
862
862
|
"exception":true
|
863
863
|
},
|
864
864
|
"Arn":{"type":"string"},
|
865
|
+
"AutoDeployment":{
|
866
|
+
"type":"structure",
|
867
|
+
"members":{
|
868
|
+
"Enabled":{"shape":"AutoDeploymentNullable"},
|
869
|
+
"RetainStacksOnAccountRemoval":{"shape":"RetainStacksOnAccountRemovalNullable"}
|
870
|
+
}
|
871
|
+
},
|
872
|
+
"AutoDeploymentNullable":{"type":"boolean"},
|
865
873
|
"BoxedInteger":{
|
866
874
|
"type":"integer",
|
867
875
|
"box":true
|
@@ -1090,12 +1098,12 @@
|
|
1090
1098
|
"type":"structure",
|
1091
1099
|
"required":[
|
1092
1100
|
"StackSetName",
|
1093
|
-
"Accounts",
|
1094
1101
|
"Regions"
|
1095
1102
|
],
|
1096
1103
|
"members":{
|
1097
1104
|
"StackSetName":{"shape":"StackSetName"},
|
1098
1105
|
"Accounts":{"shape":"AccountList"},
|
1106
|
+
"DeploymentTargets":{"shape":"DeploymentTargets"},
|
1099
1107
|
"Regions":{"shape":"RegionList"},
|
1100
1108
|
"ParameterOverrides":{"shape":"Parameters"},
|
1101
1109
|
"OperationPreferences":{"shape":"StackSetOperationPreferences"},
|
@@ -1130,6 +1138,8 @@
|
|
1130
1138
|
"Tags":{"shape":"Tags"},
|
1131
1139
|
"AdministrationRoleARN":{"shape":"RoleARN"},
|
1132
1140
|
"ExecutionRoleName":{"shape":"ExecutionRoleName"},
|
1141
|
+
"PermissionModel":{"shape":"PermissionModels"},
|
1142
|
+
"AutoDeployment":{"shape":"AutoDeployment"},
|
1133
1143
|
"ClientRequestToken":{
|
1134
1144
|
"shape":"ClientRequestToken",
|
1135
1145
|
"idempotencyToken":true
|
@@ -1181,13 +1191,13 @@
|
|
1181
1191
|
"type":"structure",
|
1182
1192
|
"required":[
|
1183
1193
|
"StackSetName",
|
1184
|
-
"Accounts",
|
1185
1194
|
"Regions",
|
1186
1195
|
"RetainStacks"
|
1187
1196
|
],
|
1188
1197
|
"members":{
|
1189
1198
|
"StackSetName":{"shape":"StackSetName"},
|
1190
1199
|
"Accounts":{"shape":"AccountList"},
|
1200
|
+
"DeploymentTargets":{"shape":"DeploymentTargets"},
|
1191
1201
|
"Regions":{"shape":"RegionList"},
|
1192
1202
|
"OperationPreferences":{"shape":"StackSetOperationPreferences"},
|
1193
1203
|
"RetainStacks":{"shape":"RetainStacks"},
|
@@ -1216,6 +1226,13 @@
|
|
1216
1226
|
}
|
1217
1227
|
},
|
1218
1228
|
"DeletionTime":{"type":"timestamp"},
|
1229
|
+
"DeploymentTargets":{
|
1230
|
+
"type":"structure",
|
1231
|
+
"members":{
|
1232
|
+
"Accounts":{"shape":"AccountList"},
|
1233
|
+
"OrganizationalUnitIds":{"shape":"OrganizationalUnitIdList"}
|
1234
|
+
}
|
1235
|
+
},
|
1219
1236
|
"DeprecatedStatus":{
|
1220
1237
|
"type":"string",
|
1221
1238
|
"enum":[
|
@@ -2098,6 +2115,14 @@
|
|
2098
2115
|
"type":"string",
|
2099
2116
|
"max":4096
|
2100
2117
|
},
|
2118
|
+
"OrganizationalUnitId":{
|
2119
|
+
"type":"string",
|
2120
|
+
"pattern":"^(ou-[a-z0-9]{4,32}-[a-z0-9]{8,32}|r-[a-z0-9]{4,32})$"
|
2121
|
+
},
|
2122
|
+
"OrganizationalUnitIdList":{
|
2123
|
+
"type":"list",
|
2124
|
+
"member":{"shape":"OrganizationalUnitId"}
|
2125
|
+
},
|
2101
2126
|
"Output":{
|
2102
2127
|
"type":"structure",
|
2103
2128
|
"members":{
|
@@ -2150,6 +2175,13 @@
|
|
2150
2175
|
"type":"list",
|
2151
2176
|
"member":{"shape":"Parameter"}
|
2152
2177
|
},
|
2178
|
+
"PermissionModels":{
|
2179
|
+
"type":"string",
|
2180
|
+
"enum":[
|
2181
|
+
"SERVICE_MANAGED",
|
2182
|
+
"SELF_MANAGED"
|
2183
|
+
]
|
2184
|
+
},
|
2153
2185
|
"PhysicalResourceId":{"type":"string"},
|
2154
2186
|
"PhysicalResourceIdContext":{
|
2155
2187
|
"type":"list",
|
@@ -2225,7 +2257,10 @@
|
|
2225
2257
|
"members":{
|
2226
2258
|
}
|
2227
2259
|
},
|
2228
|
-
"Region":{
|
2260
|
+
"Region":{
|
2261
|
+
"type":"string",
|
2262
|
+
"pattern":"^[a-zA-Z0-9-]{1,128}$"
|
2263
|
+
},
|
2229
2264
|
"RegionList":{
|
2230
2265
|
"type":"list",
|
2231
2266
|
"member":{"shape":"Region"}
|
@@ -2453,6 +2488,7 @@
|
|
2453
2488
|
},
|
2454
2489
|
"RetainStacks":{"type":"boolean"},
|
2455
2490
|
"RetainStacksNullable":{"type":"boolean"},
|
2491
|
+
"RetainStacksOnAccountRemovalNullable":{"type":"boolean"},
|
2456
2492
|
"RoleARN":{
|
2457
2493
|
"type":"string",
|
2458
2494
|
"max":2048,
|
@@ -2642,6 +2678,7 @@
|
|
2642
2678
|
"ParameterOverrides":{"shape":"Parameters"},
|
2643
2679
|
"Status":{"shape":"StackInstanceStatus"},
|
2644
2680
|
"StatusReason":{"shape":"Reason"},
|
2681
|
+
"OrganizationalUnitId":{"shape":"OrganizationalUnitId"},
|
2645
2682
|
"DriftStatus":{"shape":"StackDriftStatus"},
|
2646
2683
|
"LastDriftCheckTimestamp":{"shape":"Timestamp"}
|
2647
2684
|
}
|
@@ -2678,6 +2715,7 @@
|
|
2678
2715
|
"StackId":{"shape":"StackId"},
|
2679
2716
|
"Status":{"shape":"StackInstanceStatus"},
|
2680
2717
|
"StatusReason":{"shape":"Reason"},
|
2718
|
+
"OrganizationalUnitId":{"shape":"OrganizationalUnitId"},
|
2681
2719
|
"DriftStatus":{"shape":"StackDriftStatus"},
|
2682
2720
|
"LastDriftCheckTimestamp":{"shape":"Timestamp"}
|
2683
2721
|
}
|
@@ -2848,7 +2886,10 @@
|
|
2848
2886
|
"StackSetARN":{"shape":"StackSetARN"},
|
2849
2887
|
"AdministrationRoleARN":{"shape":"RoleARN"},
|
2850
2888
|
"ExecutionRoleName":{"shape":"ExecutionRoleName"},
|
2851
|
-
"StackSetDriftDetectionDetails":{"shape":"StackSetDriftDetectionDetails"}
|
2889
|
+
"StackSetDriftDetectionDetails":{"shape":"StackSetDriftDetectionDetails"},
|
2890
|
+
"AutoDeployment":{"shape":"AutoDeployment"},
|
2891
|
+
"PermissionModel":{"shape":"PermissionModels"},
|
2892
|
+
"OrganizationalUnitIds":{"shape":"OrganizationalUnitIdList"}
|
2852
2893
|
}
|
2853
2894
|
},
|
2854
2895
|
"StackSetARN":{"type":"string"},
|
@@ -2924,6 +2965,7 @@
|
|
2924
2965
|
"ExecutionRoleName":{"shape":"ExecutionRoleName"},
|
2925
2966
|
"CreationTimestamp":{"shape":"Timestamp"},
|
2926
2967
|
"EndTimestamp":{"shape":"Timestamp"},
|
2968
|
+
"DeploymentTargets":{"shape":"DeploymentTargets"},
|
2927
2969
|
"StackSetDriftDetectionDetails":{"shape":"StackSetDriftDetectionDetails"}
|
2928
2970
|
}
|
2929
2971
|
},
|
@@ -2967,7 +3009,8 @@
|
|
2967
3009
|
"Region":{"shape":"Region"},
|
2968
3010
|
"Status":{"shape":"StackSetOperationResultStatus"},
|
2969
3011
|
"StatusReason":{"shape":"Reason"},
|
2970
|
-
"AccountGateResult":{"shape":"AccountGateResult"}
|
3012
|
+
"AccountGateResult":{"shape":"AccountGateResult"},
|
3013
|
+
"OrganizationalUnitId":{"shape":"OrganizationalUnitId"}
|
2971
3014
|
}
|
2972
3015
|
},
|
2973
3016
|
"StackSetOperationStatus":{
|
@@ -2977,7 +3020,8 @@
|
|
2977
3020
|
"SUCCEEDED",
|
2978
3021
|
"FAILED",
|
2979
3022
|
"STOPPING",
|
2980
|
-
"STOPPED"
|
3023
|
+
"STOPPED",
|
3024
|
+
"QUEUED"
|
2981
3025
|
]
|
2982
3026
|
},
|
2983
3027
|
"StackSetOperationSummaries":{
|
@@ -3012,6 +3056,8 @@
|
|
3012
3056
|
"StackSetId":{"shape":"StackSetId"},
|
3013
3057
|
"Description":{"shape":"Description"},
|
3014
3058
|
"Status":{"shape":"StackSetStatus"},
|
3059
|
+
"AutoDeployment":{"shape":"AutoDeployment"},
|
3060
|
+
"PermissionModel":{"shape":"PermissionModels"},
|
3015
3061
|
"DriftStatus":{"shape":"StackDriftStatus"},
|
3016
3062
|
"LastDriftCheckTimestamp":{"shape":"Timestamp"}
|
3017
3063
|
}
|
@@ -3283,12 +3329,12 @@
|
|
3283
3329
|
"type":"structure",
|
3284
3330
|
"required":[
|
3285
3331
|
"StackSetName",
|
3286
|
-
"Accounts",
|
3287
3332
|
"Regions"
|
3288
3333
|
],
|
3289
3334
|
"members":{
|
3290
3335
|
"StackSetName":{"shape":"StackSetNameOrId"},
|
3291
3336
|
"Accounts":{"shape":"AccountList"},
|
3337
|
+
"DeploymentTargets":{"shape":"DeploymentTargets"},
|
3292
3338
|
"Regions":{"shape":"RegionList"},
|
3293
3339
|
"ParameterOverrides":{"shape":"Parameters"},
|
3294
3340
|
"OperationPreferences":{"shape":"StackSetOperationPreferences"},
|
@@ -3325,6 +3371,9 @@
|
|
3325
3371
|
"OperationPreferences":{"shape":"StackSetOperationPreferences"},
|
3326
3372
|
"AdministrationRoleARN":{"shape":"RoleARN"},
|
3327
3373
|
"ExecutionRoleName":{"shape":"ExecutionRoleName"},
|
3374
|
+
"DeploymentTargets":{"shape":"DeploymentTargets"},
|
3375
|
+
"PermissionModel":{"shape":"PermissionModels"},
|
3376
|
+
"AutoDeployment":{"shape":"AutoDeployment"},
|
3328
3377
|
"OperationId":{
|
3329
3378
|
"shape":"ClientRequestToken",
|
3330
3379
|
"idempotencyToken":true
|
@@ -2584,7 +2584,11 @@
|
|
2584
2584
|
"AuthParametersType":{
|
2585
2585
|
"type":"map",
|
2586
2586
|
"key":{"shape":"StringType"},
|
2587
|
-
"value":{"shape":"
|
2587
|
+
"value":{"shape":"AuthParametersValueType"}
|
2588
|
+
},
|
2589
|
+
"AuthParametersValueType":{
|
2590
|
+
"type":"string",
|
2591
|
+
"sensitive":true
|
2588
2592
|
},
|
2589
2593
|
"AuthenticationResultType":{
|
2590
2594
|
"type":"structure",
|
@@ -3018,6 +3022,7 @@
|
|
3018
3022
|
"AdminCreateUserConfig":{"shape":"AdminCreateUserConfigType"},
|
3019
3023
|
"Schema":{"shape":"SchemaAttributesListType"},
|
3020
3024
|
"UserPoolAddOns":{"shape":"UserPoolAddOnsType"},
|
3025
|
+
"UsernameConfiguration":{"shape":"UsernameConfigurationType"},
|
3021
3026
|
"AccountRecoverySetting":{"shape":"AccountRecoverySettingType"}
|
3022
3027
|
}
|
3023
3028
|
},
|
@@ -5310,6 +5315,7 @@
|
|
5310
5315
|
"CustomDomain":{"shape":"DomainType"},
|
5311
5316
|
"AdminCreateUserConfig":{"shape":"AdminCreateUserConfigType"},
|
5312
5317
|
"UserPoolAddOns":{"shape":"UserPoolAddOnsType"},
|
5318
|
+
"UsernameConfiguration":{"shape":"UsernameConfigurationType"},
|
5313
5319
|
"Arn":{"shape":"ArnType"},
|
5314
5320
|
"AccountRecoverySetting":{"shape":"AccountRecoverySettingType"}
|
5315
5321
|
}
|
@@ -5349,6 +5355,13 @@
|
|
5349
5355
|
"type":"list",
|
5350
5356
|
"member":{"shape":"UsernameAttributeType"}
|
5351
5357
|
},
|
5358
|
+
"UsernameConfigurationType":{
|
5359
|
+
"type":"structure",
|
5360
|
+
"required":["CaseSensitive"],
|
5361
|
+
"members":{
|
5362
|
+
"CaseSensitive":{"shape":"WrappedBooleanType"}
|
5363
|
+
}
|
5364
|
+
},
|
5352
5365
|
"UsernameExistsException":{
|
5353
5366
|
"type":"structure",
|
5354
5367
|
"members":{
|
@@ -5430,6 +5443,7 @@
|
|
5430
5443
|
"type":"structure",
|
5431
5444
|
"members":{
|
5432
5445
|
}
|
5433
|
-
}
|
5446
|
+
},
|
5447
|
+
"WrappedBooleanType":{"type":"boolean"}
|
5434
5448
|
}
|
5435
5449
|
}
|
@@ -25355,7 +25355,7 @@
|
|
25355
25355
|
"locationName":"activityStatus"
|
25356
25356
|
},
|
25357
25357
|
"CreateTime":{
|
25358
|
-
"shape":"
|
25358
|
+
"shape":"MillisecondDateTime",
|
25359
25359
|
"locationName":"createTime"
|
25360
25360
|
},
|
25361
25361
|
"SpotFleetRequestConfig":{
|
@@ -25369,6 +25369,10 @@
|
|
25369
25369
|
"SpotFleetRequestState":{
|
25370
25370
|
"shape":"BatchState",
|
25371
25371
|
"locationName":"spotFleetRequestState"
|
25372
|
+
},
|
25373
|
+
"Tags":{
|
25374
|
+
"shape":"TagList",
|
25375
|
+
"locationName":"tagSet"
|
25372
25376
|
}
|
25373
25377
|
}
|
25374
25378
|
},
|
@@ -25466,6 +25470,10 @@
|
|
25466
25470
|
"InstancePoolsToUseCount":{
|
25467
25471
|
"shape":"Integer",
|
25468
25472
|
"locationName":"instancePoolsToUseCount"
|
25473
|
+
},
|
25474
|
+
"TagSpecifications":{
|
25475
|
+
"shape":"TagSpecificationList",
|
25476
|
+
"locationName":"TagSpecification"
|
25469
25477
|
}
|
25470
25478
|
}
|
25471
25479
|
},
|
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.442
|
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: 2020-02-
|
11
|
+
date: 2020-02-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jmespath
|