Skip to content

Commit 6cd8d3c

Browse files
AWS SDK for RubyNobody
authored andcommitted
Updated service API models for release.
1 parent 8eca401 commit 6cd8d3c

File tree

19 files changed

+2236
-55
lines changed

19 files changed

+2236
-55
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
Unreleased Changes
22
------------------
33

4+
* Feature - Aws::CodeBuild - Updated the documentation for AWS CodeBuild.
5+
6+
* Feature - Aws::CognitoIdentityProvider - Updated the API, and documentation for Amazon Cognito Identity Provider.
7+
8+
* Feature - Aws::DataSync - Updated the API, and documentation for AWS DataSync.
9+
10+
* Feature - Aws::SecurityHub - Updated the API, and documentation for AWS SecurityHub.
11+
12+
* Feature - Aws::SESV2 - Updated the API, and documentation for Amazon Simple Email Service.
13+
14+
* Feature - Aws::IdentityStore - Added support for a new service, AWS SSO Identity Store.
15+
416
2.11.568 (2020-08-17)
517
------------------
618

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -342,6 +342,7 @@ to be backwards compatible.
342342
| AWS Resource Groups Tagging API | ResourceGroupsTaggingAPI | 2017-01-26 |
343343
| AWS RoboMaker | RoboMaker | 2018-06-29 |
344344
| AWS S3 Control | S3Control | 2018-08-20 |
345+
| AWS SSO Identity Store | IdentityStore | 2020-06-15 |
345346
| AWS SSO OIDC | SSOOIDC | 2019-06-10 |
346347
| AWS Savings Plans | SavingsPlans | 2019-06-28 |
347348
| AWS Secrets Manager | SecretsManager | 2017-10-17 |

aws-sdk-core/apis/codebuild/2016-10-06/docs-2.json

Lines changed: 10 additions & 10 deletions
Large diffs are not rendered by default.

aws-sdk-core/apis/cognito-idp/2016-04-18/api-2.json

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2477,13 +2477,9 @@
24772477
},
24782478
"AnalyticsConfigurationType":{
24792479
"type":"structure",
2480-
"required":[
2481-
"ApplicationId",
2482-
"RoleArn",
2483-
"ExternalId"
2484-
],
24852480
"members":{
24862481
"ApplicationId":{"shape":"HexStringType"},
2482+
"ApplicationArn":{"shape":"ArnType"},
24872483
"RoleArn":{"shape":"ArnType"},
24882484
"ExternalId":{"shape":"StringType"},
24892485
"UserDataShared":{"shape":"BooleanType"}

aws-sdk-core/apis/cognito-idp/2016-04-18/docs-2.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -472,6 +472,7 @@
472472
"ArnType": {
473473
"base": null,
474474
"refs": {
475+
"AnalyticsConfigurationType$ApplicationArn": "<p>The Amazon Resource Name (ARN) of an Amazon Pinpoint project. You can use the Amazon Pinpoint project for Pinpoint integration with the chosen User Pool Client. Amazon Cognito publishes events to the pinpoint project declared by the app ARN.</p>",
475476
"AnalyticsConfigurationType$RoleArn": "<p>The ARN of an IAM role that authorizes Amazon Cognito to publish events to Amazon Pinpoint analytics.</p>",
476477
"CreateGroupRequest$RoleArn": "<p>The role ARN for the group.</p>",
477478
"CreateUserImportJobRequest$CloudWatchLogsRoleArn": "<p>The role ARN for the Amazon CloudWatch Logging role for the user import job.</p>",

aws-sdk-core/apis/datasync/2018-11-09/api-2.json

Lines changed: 78 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -924,6 +924,12 @@
924924
"FIPS"
925925
]
926926
},
927+
"FilterAttributeValue":{
928+
"type":"string",
929+
"max":255,
930+
"min":1,
931+
"pattern":"^[0-9a-zA-Z_\\ \\-\\:\\*\\.\\\\/\\?-]*$"
932+
},
927933
"FilterList":{
928934
"type":"list",
929935
"member":{"shape":"FilterRule"},
@@ -948,6 +954,10 @@
948954
"max":409600,
949955
"pattern":"^[^\\x00]+$"
950956
},
957+
"FilterValues":{
958+
"type":"list",
959+
"member":{"shape":"FilterAttributeValue"}
960+
},
951961
"FsxFilesystemArn":{
952962
"type":"string",
953963
"max":128,
@@ -1013,7 +1023,8 @@
10131023
"type":"structure",
10141024
"members":{
10151025
"MaxResults":{"shape":"MaxResults"},
1016-
"NextToken":{"shape":"NextToken"}
1026+
"NextToken":{"shape":"NextToken"},
1027+
"Filters":{"shape":"LocationFilters"}
10171028
}
10181029
},
10191030
"ListLocationsResponse":{
@@ -1058,7 +1069,8 @@
10581069
"type":"structure",
10591070
"members":{
10601071
"MaxResults":{"shape":"MaxResults"},
1061-
"NextToken":{"shape":"NextToken"}
1072+
"NextToken":{"shape":"NextToken"},
1073+
"Filters":{"shape":"TaskFilters"}
10621074
}
10631075
},
10641076
"ListTasksResponse":{
@@ -1073,6 +1085,31 @@
10731085
"max":128,
10741086
"pattern":"^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):datasync:[a-z\\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$"
10751087
},
1088+
"LocationFilter":{
1089+
"type":"structure",
1090+
"required":[
1091+
"Name",
1092+
"Values",
1093+
"Operator"
1094+
],
1095+
"members":{
1096+
"Name":{"shape":"LocationFilterName"},
1097+
"Values":{"shape":"FilterValues"},
1098+
"Operator":{"shape":"Operator"}
1099+
}
1100+
},
1101+
"LocationFilterName":{
1102+
"type":"string",
1103+
"enum":[
1104+
"LocationUri",
1105+
"LocationType",
1106+
"CreationTime"
1107+
]
1108+
},
1109+
"LocationFilters":{
1110+
"type":"list",
1111+
"member":{"shape":"LocationFilter"}
1112+
},
10761113
"LocationList":{
10771114
"type":"list",
10781115
"member":{"shape":"LocationListEntry"}
@@ -1183,6 +1220,21 @@
11831220
"AgentArns":{"shape":"AgentArnList"}
11841221
}
11851222
},
1223+
"Operator":{
1224+
"type":"string",
1225+
"enum":[
1226+
"Equals",
1227+
"NotEquals",
1228+
"In",
1229+
"LessThanOrEqual",
1230+
"LessThan",
1231+
"GreaterThanOrEqual",
1232+
"GreaterThan",
1233+
"Contains",
1234+
"NotContains",
1235+
"BeginsWith"
1236+
]
1237+
},
11861238
"Options":{
11871239
"type":"structure",
11881240
"members":{
@@ -1450,6 +1502,30 @@
14501502
"ERROR"
14511503
]
14521504
},
1505+
"TaskFilter":{
1506+
"type":"structure",
1507+
"required":[
1508+
"Name",
1509+
"Values",
1510+
"Operator"
1511+
],
1512+
"members":{
1513+
"Name":{"shape":"TaskFilterName"},
1514+
"Values":{"shape":"FilterValues"},
1515+
"Operator":{"shape":"Operator"}
1516+
}
1517+
},
1518+
"TaskFilterName":{
1519+
"type":"string",
1520+
"enum":[
1521+
"LocationId",
1522+
"CreationTime"
1523+
]
1524+
},
1525+
"TaskFilters":{
1526+
"type":"list",
1527+
"member":{"shape":"TaskFilter"}
1528+
},
14531529
"TaskList":{
14541530
"type":"list",
14551531
"member":{"shape":"TaskListEntry"}

aws-sdk-core/apis/datasync/2018-11-09/docs-2.json

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -372,6 +372,12 @@
372372
"DescribeAgentResponse$EndpointType": "<p>The type of endpoint that your agent is connected to. If the endpoint is a VPC endpoint, the agent is not accessible over the public internet. </p>"
373373
}
374374
},
375+
"FilterAttributeValue": {
376+
"base": null,
377+
"refs": {
378+
"FilterValues$member": null
379+
}
380+
},
375381
"FilterList": {
376382
"base": null,
377383
"refs": {
@@ -401,6 +407,13 @@
401407
"FilterRule$Value": "<p>A single filter string that consists of the patterns to include or exclude. The patterns are delimited by \"|\" (that is, a pipe), for example: <code>/folder1|/folder2</code> </p> <p> </p>"
402408
}
403409
},
410+
"FilterValues": {
411+
"base": null,
412+
"refs": {
413+
"LocationFilter$Values": null,
414+
"TaskFilter$Values": null
415+
}
416+
},
404417
"FsxFilesystemArn": {
405418
"base": null,
406419
"refs": {
@@ -528,6 +541,24 @@
528541
"LocationListEntry$LocationArn": "<p>The Amazon Resource Name (ARN) of the location. For Network File System (NFS) or Amazon EFS, the location is the export path. For Amazon S3, the location is the prefix path that you want to mount and use as the root of the location.</p>"
529542
}
530543
},
544+
"LocationFilter": {
545+
"base": null,
546+
"refs": {
547+
"LocationFilters$member": null
548+
}
549+
},
550+
"LocationFilterName": {
551+
"base": null,
552+
"refs": {
553+
"LocationFilter$Name": null
554+
}
555+
},
556+
"LocationFilters": {
557+
"base": null,
558+
"refs": {
559+
"ListLocationsRequest$Filters": null
560+
}
561+
},
531562
"LocationList": {
532563
"base": null,
533564
"refs": {
@@ -663,6 +694,13 @@
663694
"DescribeLocationNfsResponse$OnPremConfig": null
664695
}
665696
},
697+
"Operator": {
698+
"base": null,
699+
"refs": {
700+
"LocationFilter$Operator": null,
701+
"TaskFilter$Operator": null
702+
}
703+
},
666704
"Options": {
667705
"base": "<p>Represents the options that are available to control the behavior of a <a>StartTaskExecution</a> operation. Behavior includes preserving metadata such as user ID (UID), group ID (GID), and file permissions, and also overwriting files in the destination, data integrity verification, and so on.</p> <p>A task has a set of default options associated with it. If you don't specify an option in <a>StartTaskExecution</a>, the default value is used. You can override the defaults options on each task execution by specifying an overriding <code>Options</code> value to <a>StartTaskExecution</a>.</p>",
668706
"refs": {
@@ -933,6 +971,24 @@
933971
"TaskExecutionListEntry$Status": "<p>The status of a task execution.</p>"
934972
}
935973
},
974+
"TaskFilter": {
975+
"base": null,
976+
"refs": {
977+
"TaskFilters$member": null
978+
}
979+
},
980+
"TaskFilterName": {
981+
"base": null,
982+
"refs": {
983+
"TaskFilter$Name": null
984+
}
985+
},
986+
"TaskFilters": {
987+
"base": null,
988+
"refs": {
989+
"ListTasksRequest$Filters": null
990+
}
991+
},
936992
"TaskList": {
937993
"base": null,
938994
"refs": {

0 commit comments

Comments
 (0)