aws-sdk-core 2.6.41 → 2.6.42

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: b38bdd0076433d84231d4ad3c7521e71624632cf
4
- data.tar.gz: cce57657ccd21bc39327713093dee26333a008b2
3
+ metadata.gz: 5923a9e6d85091a83fafc492086be8cbc30c96d3
4
+ data.tar.gz: ebfa2b01fc8671d722fc6a2dd834785cce5deaef
5
5
  SHA512:
6
- metadata.gz: 9102bb23a1d23f15385f3d8d5e5bddeda48017dbd8ba52c34bcd241538dc3ce8617523f2a11c01be51a0bfa4dd98497ff0b9022292e49f251a7198ef99319c33
7
- data.tar.gz: d8e0e9b28df7d5c71b8b52de1fee43163edc0cb43802ebb65b7f1e0c95d2732e4ef272a4791dedd24d52b009ba7513fba63d291cc536997edf324a8a80439f04
6
+ metadata.gz: 7766a52408f375ecd8e6a5b9e6b6c9e96e2727e766c5cd53d954c2457dc81ad270f95fb34a1397a2966972fb70d5d10d7a44029c1db97e95c51f11c35df9fbc2
7
+ data.tar.gz: f4c2f8accbd165055e343b3360501ec45ec0367508cab3aea0e5e7634180496dc545f7687501e207980f68aebebb2b9f1fc22f31c9d4cf400028e111217aabe9
@@ -990,6 +990,33 @@
990
990
  {"shape":"TooManyRequestsException"}
991
991
  ]
992
992
  },
993
+ "GetSdkType":{
994
+ "name":"GetSdkType",
995
+ "http":{
996
+ "method":"GET",
997
+ "requestUri":"/sdktypes/{sdktype_id}"
998
+ },
999
+ "input":{"shape":"GetSdkTypeRequest"},
1000
+ "output":{"shape":"SdkType"},
1001
+ "errors":[
1002
+ {"shape":"UnauthorizedException"},
1003
+ {"shape":"NotFoundException"},
1004
+ {"shape":"TooManyRequestsException"}
1005
+ ]
1006
+ },
1007
+ "GetSdkTypes":{
1008
+ "name":"GetSdkTypes",
1009
+ "http":{
1010
+ "method":"GET",
1011
+ "requestUri":"/sdktypes"
1012
+ },
1013
+ "input":{"shape":"GetSdkTypesRequest"},
1014
+ "output":{"shape":"SdkTypes"},
1015
+ "errors":[
1016
+ {"shape":"UnauthorizedException"},
1017
+ {"shape":"TooManyRequestsException"}
1018
+ ]
1019
+ },
993
1020
  "GetStage":{
994
1021
  "name":"GetStage",
995
1022
  "http":{
@@ -3098,6 +3125,32 @@
3098
3125
  }
3099
3126
  }
3100
3127
  },
3128
+ "GetSdkTypeRequest":{
3129
+ "type":"structure",
3130
+ "required":["id"],
3131
+ "members":{
3132
+ "id":{
3133
+ "shape":"String",
3134
+ "location":"uri",
3135
+ "locationName":"sdktype_id"
3136
+ }
3137
+ }
3138
+ },
3139
+ "GetSdkTypesRequest":{
3140
+ "type":"structure",
3141
+ "members":{
3142
+ "position":{
3143
+ "shape":"String",
3144
+ "location":"querystring",
3145
+ "locationName":"position"
3146
+ },
3147
+ "limit":{
3148
+ "shape":"NullableInteger",
3149
+ "location":"querystring",
3150
+ "locationName":"limit"
3151
+ }
3152
+ }
3153
+ },
3101
3154
  "GetStageRequest":{
3102
3155
  "type":"structure",
3103
3156
  "required":[
@@ -3423,6 +3476,14 @@
3423
3476
  "type":"list",
3424
3477
  "member":{"shape":"RestApi"}
3425
3478
  },
3479
+ "ListOfSdkConfigurationProperty":{
3480
+ "type":"list",
3481
+ "member":{"shape":"SdkConfigurationProperty"}
3482
+ },
3483
+ "ListOfSdkType":{
3484
+ "type":"list",
3485
+ "member":{"shape":"SdkType"}
3486
+ },
3426
3487
  "ListOfStage":{
3427
3488
  "type":"list",
3428
3489
  "member":{"shape":"Stage"}
@@ -3505,6 +3566,7 @@
3505
3566
  "authorizationType":{"shape":"String"},
3506
3567
  "authorizerId":{"shape":"String"},
3507
3568
  "apiKeyRequired":{"shape":"NullableBoolean"},
3569
+ "operationName":{"shape":"String"},
3508
3570
  "requestParameters":{"shape":"MapOfStringToBoolean"},
3509
3571
  "requestModels":{"shape":"MapOfStringToString"},
3510
3572
  "methodResponses":{"shape":"MapOfMethodResponse"},
@@ -3698,6 +3760,7 @@
3698
3760
  "authorizationType":{"shape":"String"},
3699
3761
  "authorizerId":{"shape":"String"},
3700
3762
  "apiKeyRequired":{"shape":"Boolean"},
3763
+ "operationName":{"shape":"String"},
3701
3764
  "requestParameters":{"shape":"MapOfStringToBoolean"},
3702
3765
  "requestModels":{"shape":"MapOfStringToString"}
3703
3766
  }
@@ -3830,6 +3893,16 @@
3830
3893
  }
3831
3894
  }
3832
3895
  },
3896
+ "SdkConfigurationProperty":{
3897
+ "type":"structure",
3898
+ "members":{
3899
+ "name":{"shape":"String"},
3900
+ "friendlyName":{"shape":"String"},
3901
+ "description":{"shape":"String"},
3902
+ "required":{"shape":"Boolean"},
3903
+ "defaultValue":{"shape":"String"}
3904
+ }
3905
+ },
3833
3906
  "SdkResponse":{
3834
3907
  "type":"structure",
3835
3908
  "members":{
@@ -3847,6 +3920,25 @@
3847
3920
  },
3848
3921
  "payload":"body"
3849
3922
  },
3923
+ "SdkType":{
3924
+ "type":"structure",
3925
+ "members":{
3926
+ "id":{"shape":"String"},
3927
+ "friendlyName":{"shape":"String"},
3928
+ "description":{"shape":"String"},
3929
+ "configurationProperties":{"shape":"ListOfSdkConfigurationProperty"}
3930
+ }
3931
+ },
3932
+ "SdkTypes":{
3933
+ "type":"structure",
3934
+ "members":{
3935
+ "position":{"shape":"String"},
3936
+ "items":{
3937
+ "shape":"ListOfSdkType",
3938
+ "locationName":"item"
3939
+ }
3940
+ }
3941
+ },
3850
3942
  "ServiceUnavailableException":{
3851
3943
  "type":"structure",
3852
3944
  "members":{
@@ -433,6 +433,21 @@
433
433
  "resultWrapper":"UpdateApplicationResult"
434
434
  }
435
435
  },
436
+ "UpdateApplicationResourceLifecycle":{
437
+ "name":"UpdateApplicationResourceLifecycle",
438
+ "http":{
439
+ "method":"POST",
440
+ "requestUri":"/"
441
+ },
442
+ "input":{"shape":"UpdateApplicationResourceLifecycleMessage"},
443
+ "output":{
444
+ "shape":"ApplicationResourceLifecycleDescriptionMessage",
445
+ "resultWrapper":"UpdateApplicationResourceLifecycleResult"
446
+ },
447
+ "errors":[
448
+ {"shape":"InsufficientPrivilegesException"}
449
+ ]
450
+ },
436
451
  "UpdateApplicationVersion":{
437
452
  "name":"UpdateApplicationVersion",
438
453
  "http":{
@@ -536,7 +551,8 @@
536
551
  "DateCreated":{"shape":"CreationDate"},
537
552
  "DateUpdated":{"shape":"UpdateDate"},
538
553
  "Versions":{"shape":"VersionLabelsList"},
539
- "ConfigurationTemplates":{"shape":"ConfigurationTemplateNamesList"}
554
+ "ConfigurationTemplates":{"shape":"ConfigurationTemplateNamesList"},
555
+ "ResourceLifecycleConfig":{"shape":"ApplicationResourceLifecycleConfig"}
540
556
  }
541
557
  },
542
558
  "ApplicationDescriptionList":{
@@ -573,6 +589,20 @@
573
589
  "type":"list",
574
590
  "member":{"shape":"ApplicationName"}
575
591
  },
592
+ "ApplicationResourceLifecycleConfig":{
593
+ "type":"structure",
594
+ "members":{
595
+ "ServiceRole":{"shape":"String"},
596
+ "VersionLifecycleConfig":{"shape":"ApplicationVersionLifecycleConfig"}
597
+ }
598
+ },
599
+ "ApplicationResourceLifecycleDescriptionMessage":{
600
+ "type":"structure",
601
+ "members":{
602
+ "ApplicationName":{"shape":"ApplicationName"},
603
+ "ResourceLifecycleConfig":{"shape":"ApplicationResourceLifecycleConfig"}
604
+ }
605
+ },
576
606
  "ApplicationVersionDescription":{
577
607
  "type":"structure",
578
608
  "members":{
@@ -604,6 +634,13 @@
604
634
  "NextToken":{"shape":"Token"}
605
635
  }
606
636
  },
637
+ "ApplicationVersionLifecycleConfig":{
638
+ "type":"structure",
639
+ "members":{
640
+ "MaxCountRule":{"shape":"MaxCountRule"},
641
+ "MaxAgeRule":{"shape":"MaxAgeRule"}
642
+ }
643
+ },
607
644
  "ApplicationVersionProccess":{"type":"boolean"},
608
645
  "ApplicationVersionStatus":{
609
646
  "type":"string",
@@ -652,6 +689,7 @@
652
689
  "type":"list",
653
690
  "member":{"shape":"SolutionStackName"}
654
691
  },
692
+ "BoxedBoolean":{"type":"boolean"},
655
693
  "BoxedInt":{"type":"integer"},
656
694
  "BuildConfiguration":{
657
695
  "type":"structure",
@@ -838,7 +876,8 @@
838
876
  "required":["ApplicationName"],
839
877
  "members":{
840
878
  "ApplicationName":{"shape":"ApplicationName"},
841
- "Description":{"shape":"Description"}
879
+ "Description":{"shape":"Description"},
880
+ "ResourceLifecycleConfig":{"shape":"ApplicationResourceLifecycleConfig"}
842
881
  }
843
882
  },
844
883
  "CreateApplicationVersionMessage":{
@@ -1519,6 +1558,24 @@
1519
1558
  "max":100,
1520
1559
  "min":1
1521
1560
  },
1561
+ "MaxAgeRule":{
1562
+ "type":"structure",
1563
+ "required":["Enabled"],
1564
+ "members":{
1565
+ "Enabled":{"shape":"BoxedBoolean"},
1566
+ "MaxAgeInDays":{"shape":"BoxedInt"},
1567
+ "DeleteSourceFromS3":{"shape":"BoxedBoolean"}
1568
+ }
1569
+ },
1570
+ "MaxCountRule":{
1571
+ "type":"structure",
1572
+ "required":["Enabled"],
1573
+ "members":{
1574
+ "Enabled":{"shape":"BoxedBoolean"},
1575
+ "MaxCount":{"shape":"BoxedInt"},
1576
+ "DeleteSourceFromS3":{"shape":"BoxedBoolean"}
1577
+ }
1578
+ },
1522
1579
  "MaxRecords":{
1523
1580
  "type":"integer",
1524
1581
  "max":1000,
@@ -1880,6 +1937,17 @@
1880
1937
  "Description":{"shape":"Description"}
1881
1938
  }
1882
1939
  },
1940
+ "UpdateApplicationResourceLifecycleMessage":{
1941
+ "type":"structure",
1942
+ "required":[
1943
+ "ApplicationName",
1944
+ "ResourceLifecycleConfig"
1945
+ ],
1946
+ "members":{
1947
+ "ApplicationName":{"shape":"ApplicationName"},
1948
+ "ResourceLifecycleConfig":{"shape":"ApplicationResourceLifecycleConfig"}
1949
+ }
1950
+ },
1883
1951
  "UpdateApplicationVersionMessage":{
1884
1952
  "type":"structure",
1885
1953
  "required":[
@@ -1,7 +1,6 @@
1
1
  {
2
2
  "version":"2.0",
3
3
  "metadata":{
4
- "uid":"iam-2010-05-08",
5
4
  "apiVersion":"2010-05-08",
6
5
  "endpointPrefix":"iam",
7
6
  "globalEndpoint":"iam.amazonaws.com",
@@ -9,6 +8,7 @@
9
8
  "serviceAbbreviation":"IAM",
10
9
  "serviceFullName":"AWS Identity and Access Management",
11
10
  "signatureVersion":"v4",
11
+ "uid":"iam-2010-05-08",
12
12
  "xmlNamespace":"https://iam.amazonaws.com/doc/2010-05-08/"
13
13
  },
14
14
  "operations":{
@@ -287,6 +287,23 @@
287
287
  {"shape":"ServiceFailureException"}
288
288
  ]
289
289
  },
290
+ "CreateServiceSpecificCredential":{
291
+ "name":"CreateServiceSpecificCredential",
292
+ "http":{
293
+ "method":"POST",
294
+ "requestUri":"/"
295
+ },
296
+ "input":{"shape":"CreateServiceSpecificCredentialRequest"},
297
+ "output":{
298
+ "shape":"CreateServiceSpecificCredentialResponse",
299
+ "resultWrapper":"CreateServiceSpecificCredentialResult"
300
+ },
301
+ "errors":[
302
+ {"shape":"LimitExceededException"},
303
+ {"shape":"NoSuchEntityException"},
304
+ {"shape":"ServiceNotSupportedException"}
305
+ ]
306
+ },
290
307
  "CreateUser":{
291
308
  "name":"CreateUser",
292
309
  "http":{
@@ -538,6 +555,17 @@
538
555
  {"shape":"ServiceFailureException"}
539
556
  ]
540
557
  },
558
+ "DeleteServiceSpecificCredential":{
559
+ "name":"DeleteServiceSpecificCredential",
560
+ "http":{
561
+ "method":"POST",
562
+ "requestUri":"/"
563
+ },
564
+ "input":{"shape":"DeleteServiceSpecificCredentialRequest"},
565
+ "errors":[
566
+ {"shape":"NoSuchEntityException"}
567
+ ]
568
+ },
541
569
  "DeleteSigningCertificate":{
542
570
  "name":"DeleteSigningCertificate",
543
571
  "http":{
@@ -1316,6 +1344,22 @@
1316
1344
  {"shape":"ServiceFailureException"}
1317
1345
  ]
1318
1346
  },
1347
+ "ListServiceSpecificCredentials":{
1348
+ "name":"ListServiceSpecificCredentials",
1349
+ "http":{
1350
+ "method":"POST",
1351
+ "requestUri":"/"
1352
+ },
1353
+ "input":{"shape":"ListServiceSpecificCredentialsRequest"},
1354
+ "output":{
1355
+ "shape":"ListServiceSpecificCredentialsResponse",
1356
+ "resultWrapper":"ListServiceSpecificCredentialsResult"
1357
+ },
1358
+ "errors":[
1359
+ {"shape":"NoSuchEntityException"},
1360
+ {"shape":"ServiceNotSupportedException"}
1361
+ ]
1362
+ },
1319
1363
  "ListSigningCertificates":{
1320
1364
  "name":"ListSigningCertificates",
1321
1365
  "http":{
@@ -1456,6 +1500,21 @@
1456
1500
  {"shape":"ServiceFailureException"}
1457
1501
  ]
1458
1502
  },
1503
+ "ResetServiceSpecificCredential":{
1504
+ "name":"ResetServiceSpecificCredential",
1505
+ "http":{
1506
+ "method":"POST",
1507
+ "requestUri":"/"
1508
+ },
1509
+ "input":{"shape":"ResetServiceSpecificCredentialRequest"},
1510
+ "output":{
1511
+ "shape":"ResetServiceSpecificCredentialResponse",
1512
+ "resultWrapper":"ResetServiceSpecificCredentialResult"
1513
+ },
1514
+ "errors":[
1515
+ {"shape":"NoSuchEntityException"}
1516
+ ]
1517
+ },
1459
1518
  "ResyncMFADevice":{
1460
1519
  "name":"ResyncMFADevice",
1461
1520
  "http":{
@@ -1643,6 +1702,17 @@
1643
1702
  {"shape":"ServiceFailureException"}
1644
1703
  ]
1645
1704
  },
1705
+ "UpdateServiceSpecificCredential":{
1706
+ "name":"UpdateServiceSpecificCredential",
1707
+ "http":{
1708
+ "method":"POST",
1709
+ "requestUri":"/"
1710
+ },
1711
+ "input":{"shape":"UpdateServiceSpecificCredentialRequest"},
1712
+ "errors":[
1713
+ {"shape":"NoSuchEntityException"}
1714
+ ]
1715
+ },
1646
1716
  "UpdateSigningCertificate":{
1647
1717
  "name":"UpdateSigningCertificate",
1648
1718
  "http":{
@@ -2071,6 +2141,23 @@
2071
2141
  "SAMLProviderArn":{"shape":"arnType"}
2072
2142
  }
2073
2143
  },
2144
+ "CreateServiceSpecificCredentialRequest":{
2145
+ "type":"structure",
2146
+ "required":[
2147
+ "UserName",
2148
+ "ServiceName"
2149
+ ],
2150
+ "members":{
2151
+ "UserName":{"shape":"userNameType"},
2152
+ "ServiceName":{"shape":"serviceName"}
2153
+ }
2154
+ },
2155
+ "CreateServiceSpecificCredentialResponse":{
2156
+ "type":"structure",
2157
+ "members":{
2158
+ "ServiceSpecificCredential":{"shape":"ServiceSpecificCredential"}
2159
+ }
2160
+ },
2074
2161
  "CreateUserRequest":{
2075
2162
  "type":"structure",
2076
2163
  "required":["UserName"],
@@ -2274,6 +2361,14 @@
2274
2361
  "ServerCertificateName":{"shape":"serverCertificateNameType"}
2275
2362
  }
2276
2363
  },
2364
+ "DeleteServiceSpecificCredentialRequest":{
2365
+ "type":"structure",
2366
+ "required":["ServiceSpecificCredentialId"],
2367
+ "members":{
2368
+ "UserName":{"shape":"userNameType"},
2369
+ "ServiceSpecificCredentialId":{"shape":"serviceSpecificCredentialId"}
2370
+ }
2371
+ },
2277
2372
  "DeleteSigningCertificateRequest":{
2278
2373
  "type":"structure",
2279
2374
  "required":["CertificateId"],
@@ -3239,6 +3334,19 @@
3239
3334
  "Marker":{"shape":"markerType"}
3240
3335
  }
3241
3336
  },
3337
+ "ListServiceSpecificCredentialsRequest":{
3338
+ "type":"structure",
3339
+ "members":{
3340
+ "UserName":{"shape":"userNameType"},
3341
+ "ServiceName":{"shape":"serviceName"}
3342
+ }
3343
+ },
3344
+ "ListServiceSpecificCredentialsResponse":{
3345
+ "type":"structure",
3346
+ "members":{
3347
+ "ServiceSpecificCredentials":{"shape":"ServiceSpecificCredentialsListType"}
3348
+ }
3349
+ },
3242
3350
  "ListSigningCertificatesRequest":{
3243
3351
  "type":"structure",
3244
3352
  "members":{
@@ -3620,6 +3728,20 @@
3620
3728
  "COMPLETE"
3621
3729
  ]
3622
3730
  },
3731
+ "ResetServiceSpecificCredentialRequest":{
3732
+ "type":"structure",
3733
+ "required":["ServiceSpecificCredentialId"],
3734
+ "members":{
3735
+ "UserName":{"shape":"userNameType"},
3736
+ "ServiceSpecificCredentialId":{"shape":"serviceSpecificCredentialId"}
3737
+ }
3738
+ },
3739
+ "ResetServiceSpecificCredentialResponse":{
3740
+ "type":"structure",
3741
+ "members":{
3742
+ "ServiceSpecificCredential":{"shape":"ServiceSpecificCredential"}
3743
+ }
3744
+ },
3623
3745
  "ResourceHandlingOptionType":{
3624
3746
  "type":"string",
3625
3747
  "max":64,
@@ -3799,6 +3921,62 @@
3799
3921
  },
3800
3922
  "exception":true
3801
3923
  },
3924
+ "ServiceNotSupportedException":{
3925
+ "type":"structure",
3926
+ "members":{
3927
+ "message":{"shape":"serviceNotSupportedMessage"}
3928
+ },
3929
+ "error":{
3930
+ "code":"NotSupportedService",
3931
+ "httpStatusCode":404,
3932
+ "senderFault":true
3933
+ },
3934
+ "exception":true
3935
+ },
3936
+ "ServiceSpecificCredential":{
3937
+ "type":"structure",
3938
+ "required":[
3939
+ "CreateDate",
3940
+ "ServiceName",
3941
+ "ServiceUserName",
3942
+ "ServicePassword",
3943
+ "ServiceSpecificCredentialId",
3944
+ "UserName",
3945
+ "Status"
3946
+ ],
3947
+ "members":{
3948
+ "CreateDate":{"shape":"dateType"},
3949
+ "ServiceName":{"shape":"serviceName"},
3950
+ "ServiceUserName":{"shape":"serviceUserName"},
3951
+ "ServicePassword":{"shape":"servicePassword"},
3952
+ "ServiceSpecificCredentialId":{"shape":"serviceSpecificCredentialId"},
3953
+ "UserName":{"shape":"userNameType"},
3954
+ "Status":{"shape":"statusType"}
3955
+ }
3956
+ },
3957
+ "ServiceSpecificCredentialMetadata":{
3958
+ "type":"structure",
3959
+ "required":[
3960
+ "UserName",
3961
+ "Status",
3962
+ "ServiceUserName",
3963
+ "CreateDate",
3964
+ "ServiceSpecificCredentialId",
3965
+ "ServiceName"
3966
+ ],
3967
+ "members":{
3968
+ "UserName":{"shape":"userNameType"},
3969
+ "Status":{"shape":"statusType"},
3970
+ "ServiceUserName":{"shape":"serviceUserName"},
3971
+ "CreateDate":{"shape":"dateType"},
3972
+ "ServiceSpecificCredentialId":{"shape":"serviceSpecificCredentialId"},
3973
+ "ServiceName":{"shape":"serviceName"}
3974
+ }
3975
+ },
3976
+ "ServiceSpecificCredentialsListType":{
3977
+ "type":"list",
3978
+ "member":{"shape":"ServiceSpecificCredentialMetadata"}
3979
+ },
3802
3980
  "SetDefaultPolicyVersionRequest":{
3803
3981
  "type":"structure",
3804
3982
  "required":[
@@ -4007,6 +4185,18 @@
4007
4185
  "NewServerCertificateName":{"shape":"serverCertificateNameType"}
4008
4186
  }
4009
4187
  },
4188
+ "UpdateServiceSpecificCredentialRequest":{
4189
+ "type":"structure",
4190
+ "required":[
4191
+ "ServiceSpecificCredentialId",
4192
+ "Status"
4193
+ ],
4194
+ "members":{
4195
+ "UserName":{"shape":"userNameType"},
4196
+ "ServiceSpecificCredentialId":{"shape":"serviceSpecificCredentialId"},
4197
+ "Status":{"shape":"statusType"}
4198
+ }
4199
+ },
4010
4200
  "UpdateSigningCertificateRequest":{
4011
4201
  "type":"structure",
4012
4202
  "required":[
@@ -4434,6 +4624,24 @@
4434
4624
  "pattern":"[\\w+=,.@-]+"
4435
4625
  },
4436
4626
  "serviceFailureExceptionMessage":{"type":"string"},
4627
+ "serviceName":{"type":"string"},
4628
+ "serviceNotSupportedMessage":{"type":"string"},
4629
+ "servicePassword":{
4630
+ "type":"string",
4631
+ "sensitive":true
4632
+ },
4633
+ "serviceSpecificCredentialId":{
4634
+ "type":"string",
4635
+ "max":128,
4636
+ "min":20,
4637
+ "pattern":"[\\w]+"
4638
+ },
4639
+ "serviceUserName":{
4640
+ "type":"string",
4641
+ "max":200,
4642
+ "min":17,
4643
+ "pattern":"[\\w+=,.@-]+"
4644
+ },
4437
4645
  "statusType":{
4438
4646
  "type":"string",
4439
4647
  "enum":[