Skip to content

Commit 53bc853

Browse files
Release v1.37.19 (2021-02-25) (#3799)
Release v1.37.19 (2021-02-25) === ### Service Client Updates * `service/databrew`: Updates service API and documentation * `service/detective`: Updates service API and documentation * `service/imagebuilder`: Updates service API, documentation, and paginators * `service/lightsail`: Updates service documentation * Documentation updates for Lightsail * `service/transfer`: Updates service API * Corrected the upper limit for TestIdentityProvider input lengths to 1024 characters
1 parent b843e71 commit 53bc853

File tree

17 files changed

+679
-48
lines changed

17 files changed

+679
-48
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
Release v1.37.19 (2021-02-25)
2+
===
3+
4+
### Service Client Updates
5+
* `service/databrew`: Updates service API and documentation
6+
* `service/detective`: Updates service API and documentation
7+
* `service/imagebuilder`: Updates service API, documentation, and paginators
8+
* `service/lightsail`: Updates service documentation
9+
* Documentation updates for Lightsail
10+
* `service/transfer`: Updates service API
11+
* Corrected the upper limit for TestIdentityProvider input lengths to 1024 characters
12+
113
Release v1.37.18 (2021-02-24)
214
===
315

aws/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ package aws
55
const SDKName = "aws-sdk-go"
66

77
// SDKVersion is the version of this SDK
8-
const SDKVersion = "1.37.18"
8+
const SDKVersion = "1.37.19"

models/apis/databrew/2017-07-25/api-2.json

+18-2
Original file line numberDiff line numberDiff line change
@@ -675,6 +675,7 @@
675675
],
676676
"members":{
677677
"Name":{"shape":"DatasetName"},
678+
"Format":{"shape":"InputFormat"},
678679
"FormatOptions":{"shape":"FormatOptions"},
679680
"Input":{"shape":"Input"},
680681
"Tags":{"shape":"TagMap"}
@@ -820,7 +821,8 @@
820821
"CsvOptions":{
821822
"type":"structure",
822823
"members":{
823-
"Delimiter":{"shape":"Delimiter"}
824+
"Delimiter":{"shape":"Delimiter"},
825+
"HeaderRow":{"shape":"HeaderRow"}
824826
}
825827
},
826828
"CsvOutputOptions":{
@@ -858,6 +860,7 @@
858860
"CreatedBy":{"shape":"CreatedBy"},
859861
"CreateDate":{"shape":"Date"},
860862
"Name":{"shape":"DatasetName"},
863+
"Format":{"shape":"InputFormat"},
861864
"FormatOptions":{"shape":"FormatOptions"},
862865
"Input":{"shape":"Input"},
863866
"LastModifiedDate":{"shape":"Date"},
@@ -1005,6 +1008,7 @@
10051008
"CreatedBy":{"shape":"CreatedBy"},
10061009
"CreateDate":{"shape":"Date"},
10071010
"Name":{"shape":"DatasetName"},
1011+
"Format":{"shape":"InputFormat"},
10081012
"FormatOptions":{"shape":"FormatOptions"},
10091013
"Input":{"shape":"Input"},
10101014
"LastModifiedDate":{"shape":"Date"},
@@ -1203,7 +1207,8 @@
12031207
"type":"structure",
12041208
"members":{
12051209
"SheetNames":{"shape":"SheetNameList"},
1206-
"SheetIndexes":{"shape":"SheetIndexList"}
1210+
"SheetIndexes":{"shape":"SheetIndexList"},
1211+
"HeaderRow":{"shape":"HeaderRow"}
12071212
}
12081213
},
12091214
"ExecutionTime":{"type":"integer"},
@@ -1215,6 +1220,7 @@
12151220
"Csv":{"shape":"CsvOptions"}
12161221
}
12171222
},
1223+
"HeaderRow":{"type":"boolean"},
12181224
"HiddenColumnList":{
12191225
"type":"list",
12201226
"member":{"shape":"ColumnName"}
@@ -1226,6 +1232,15 @@
12261232
"DataCatalogInputDefinition":{"shape":"DataCatalogInputDefinition"}
12271233
}
12281234
},
1235+
"InputFormat":{
1236+
"type":"string",
1237+
"enum":[
1238+
"CSV",
1239+
"JSON",
1240+
"PARQUET",
1241+
"EXCEL"
1242+
]
1243+
},
12291244
"InternalServerException":{
12301245
"type":"structure",
12311246
"members":{
@@ -2091,6 +2106,7 @@
20912106
"location":"uri",
20922107
"locationName":"name"
20932108
},
2109+
"Format":{"shape":"InputFormat"},
20942110
"FormatOptions":{"shape":"FormatOptions"},
20952111
"Input":{"shape":"Input"}
20962112
}

models/apis/databrew/2017-07-25/docs-2.json

+16
Original file line numberDiff line numberDiff line change
@@ -532,6 +532,13 @@
532532
"UpdateDatasetRequest$FormatOptions": null
533533
}
534534
},
535+
"HeaderRow": {
536+
"base": null,
537+
"refs": {
538+
"CsvOptions$HeaderRow": "<p>A variable that specifies whether the first row in the file will be parsed as the header. If false, column names will be auto-generated.</p>",
539+
"ExcelOptions$HeaderRow": "<p>A variable that specifies whether the first row in the file will be parsed as the header. If false, column names will be auto-generated.</p>"
540+
}
541+
},
535542
"HiddenColumnList": {
536543
"base": null,
537544
"refs": {
@@ -547,6 +554,15 @@
547554
"UpdateDatasetRequest$Input": null
548555
}
549556
},
557+
"InputFormat": {
558+
"base": null,
559+
"refs": {
560+
"CreateDatasetRequest$Format": "<p>Specifies the file format of a dataset created from an S3 file or folder.</p>",
561+
"Dataset$Format": "<p>Specifies the file format of a dataset created from an S3 file or folder.</p>",
562+
"DescribeDatasetResponse$Format": "<p>Specifies the file format of a dataset created from an S3 file or folder.</p>",
563+
"UpdateDatasetRequest$Format": "<p>Specifies the file format of a dataset created from an S3 file or folder.</p>"
564+
}
565+
},
550566
"InternalServerException": {
551567
"base": "<p>An internal service failure occurred.</p>",
552568
"refs": {

models/apis/detective/2018-10-26/api-2.json

+8-1
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,7 @@
217217
"max":50,
218218
"min":1
219219
},
220+
"Boolean":{"type":"boolean"},
220221
"ConflictException":{
221222
"type":"structure",
222223
"members":{
@@ -240,6 +241,7 @@
240241
"members":{
241242
"GraphArn":{"shape":"GraphArn"},
242243
"Message":{"shape":"EmailMessage"},
244+
"DisableEmailNotification":{"shape":"Boolean"},
243245
"Accounts":{"shape":"AccountList"}
244246
}
245247
},
@@ -385,7 +387,12 @@
385387
"AccountId":{"shape":"AccountId"},
386388
"EmailAddress":{"shape":"EmailAddress"},
387389
"GraphArn":{"shape":"GraphArn"},
388-
"MasterId":{"shape":"AccountId"},
390+
"MasterId":{
391+
"shape":"AccountId",
392+
"deprecated":true,
393+
"deprecatedMessage":"This property is deprecated, use AdministratorId instead."
394+
},
395+
"AdministratorId":{"shape":"AccountId"},
389396
"Status":{"shape":"MemberStatus"},
390397
"DisabledReason":{"shape":"MemberDisabledReason"},
391398
"InvitedTime":{"shape":"Timestamp"},

models/apis/detective/2018-10-26/docs-2.json

+16-9
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"version": "2.0",
3-
"service": "<p>Detective uses machine learning and purpose-built visualizations to help you analyze and investigate security issues across your Amazon Web Services (AWS) workloads. Detective automatically extracts time-based events such as login attempts, API calls, and network traffic from AWS CloudTrail and Amazon Virtual Private Cloud (Amazon VPC) flow logs. It also extracts findings detected by Amazon GuardDuty.</p> <p>The Detective API primarily supports the creation and management of behavior graphs. A behavior graph contains the extracted data from a set of member accounts, and is created and managed by a master account.</p> <p>Every behavior graph is specific to a Region. You can only use the API to manage graphs that belong to the Region that is associated with the currently selected endpoint.</p> <p>A Detective master account can use the Detective API to do the following:</p> <ul> <li> <p>Enable and disable Detective. Enabling Detective creates a new behavior graph.</p> </li> <li> <p>View the list of member accounts in a behavior graph.</p> </li> <li> <p>Add member accounts to a behavior graph.</p> </li> <li> <p>Remove member accounts from a behavior graph.</p> </li> </ul> <p>A member account can use the Detective API to do the following:</p> <ul> <li> <p>View the list of behavior graphs that they are invited to.</p> </li> <li> <p>Accept an invitation to contribute to a behavior graph.</p> </li> <li> <p>Decline an invitation to contribute to a behavior graph.</p> </li> <li> <p>Remove their account from a behavior graph.</p> </li> </ul> <p>All API actions are logged as CloudTrail events. See <a href=\"https://docs.aws.amazon.com/detective/latest/adminguide/logging-using-cloudtrail.html\">Logging Detective API Calls with CloudTrail</a>.</p>",
3+
"service": "<p>Detective uses machine learning and purpose-built visualizations to help you analyze and investigate security issues across your Amazon Web Services (AWS) workloads. Detective automatically extracts time-based events such as login attempts, API calls, and network traffic from AWS CloudTrail and Amazon Virtual Private Cloud (Amazon VPC) flow logs. It also extracts findings detected by Amazon GuardDuty.</p> <p>The Detective API primarily supports the creation and management of behavior graphs. A behavior graph contains the extracted data from a set of member accounts, and is created and managed by an administrator account.</p> <p>Every behavior graph is specific to a Region. You can only use the API to manage graphs that belong to the Region that is associated with the currently selected endpoint.</p> <p>A Detective administrator account can use the Detective API to do the following:</p> <ul> <li> <p>Enable and disable Detective. Enabling Detective creates a new behavior graph.</p> </li> <li> <p>View the list of member accounts in a behavior graph.</p> </li> <li> <p>Add member accounts to a behavior graph.</p> </li> <li> <p>Remove member accounts from a behavior graph.</p> </li> </ul> <p>A member account can use the Detective API to do the following:</p> <ul> <li> <p>View the list of behavior graphs that they are invited to.</p> </li> <li> <p>Accept an invitation to contribute to a behavior graph.</p> </li> <li> <p>Decline an invitation to contribute to a behavior graph.</p> </li> <li> <p>Remove their account from a behavior graph.</p> </li> </ul> <p>All API actions are logged as CloudTrail events. See <a href=\"https://docs.aws.amazon.com/detective/latest/adminguide/logging-using-cloudtrail.html\">Logging Detective API Calls with CloudTrail</a>.</p> <note> <p>We replaced the term \"master account\" with the term \"administrator account.\" An administrator account is used to centrally manage multiple accounts. In the case of Detective, the administrator account manages the accounts in their behavior graph.</p> </note>",
44
"operations": {
55
"AcceptInvitation": "<p>Accepts an invitation for the member account to contribute data to a behavior graph. This operation can only be called by an invited member account. </p> <p>The request provides the ARN of behavior graph.</p> <p>The member account status in the graph must be <code>INVITED</code>.</p>",
6-
"CreateGraph": "<p>Creates a new behavior graph for the calling account, and sets that account as the master account. This operation is called by the account that is enabling Detective.</p> <p>Before you try to enable Detective, make sure that your account has been enrolled in Amazon GuardDuty for at least 48 hours. If you do not meet this requirement, you cannot enable Detective. If you do meet the GuardDuty prerequisite, then when you make the request to enable Detective, it checks whether your data volume is within the Detective quota. If it exceeds the quota, then you cannot enable Detective. </p> <p>The operation also enables Detective for the calling account in the currently selected Region. It returns the ARN of the new behavior graph.</p> <p> <code>CreateGraph</code> triggers a process to create the corresponding data tables for the new behavior graph.</p> <p>An account can only be the master account for one behavior graph within a Region. If the same account calls <code>CreateGraph</code> with the same master account, it always returns the same behavior graph ARN. It does not create a new behavior graph.</p>",
7-
"CreateMembers": "<p>Sends a request to invite the specified AWS accounts to be member accounts in the behavior graph. This operation can only be called by the master account for a behavior graph. </p> <p> <code>CreateMembers</code> verifies the accounts and then sends invitations to the verified accounts.</p> <p>The request provides the behavior graph ARN and the list of accounts to invite.</p> <p>The response separates the requested accounts into two lists:</p> <ul> <li> <p>The accounts that <code>CreateMembers</code> was able to start the verification for. This list includes member accounts that are being verified, that have passed verification and are being sent an invitation, and that have failed verification.</p> </li> <li> <p>The accounts that <code>CreateMembers</code> was unable to process. This list includes accounts that were already invited to be member accounts in the behavior graph.</p> </li> </ul>",
8-
"DeleteGraph": "<p>Disables the specified behavior graph and queues it to be deleted. This operation removes the graph from each member account's list of behavior graphs.</p> <p> <code>DeleteGraph</code> can only be called by the master account for a behavior graph.</p>",
9-
"DeleteMembers": "<p>Deletes one or more member accounts from the master account behavior graph. This operation can only be called by a Detective master account. That account cannot use <code>DeleteMembers</code> to delete their own account from the behavior graph. To disable a behavior graph, the master account uses the <code>DeleteGraph</code> API method.</p>",
6+
"CreateGraph": "<p>Creates a new behavior graph for the calling account, and sets that account as the administrator account. This operation is called by the account that is enabling Detective.</p> <p>Before you try to enable Detective, make sure that your account has been enrolled in Amazon GuardDuty for at least 48 hours. If you do not meet this requirement, you cannot enable Detective. If you do meet the GuardDuty prerequisite, then when you make the request to enable Detective, it checks whether your data volume is within the Detective quota. If it exceeds the quota, then you cannot enable Detective. </p> <p>The operation also enables Detective for the calling account in the currently selected Region. It returns the ARN of the new behavior graph.</p> <p> <code>CreateGraph</code> triggers a process to create the corresponding data tables for the new behavior graph.</p> <p>An account can only be the administrator account for one behavior graph within a Region. If the same account calls <code>CreateGraph</code> with the same administrator account, it always returns the same behavior graph ARN. It does not create a new behavior graph.</p>",
7+
"CreateMembers": "<p>Sends a request to invite the specified AWS accounts to be member accounts in the behavior graph. This operation can only be called by the administrator account for a behavior graph. </p> <p> <code>CreateMembers</code> verifies the accounts and then invites the verified accounts. The administrator can optionally specify to not send invitation emails to the member accounts. This would be used when the administrator manages their member accounts centrally.</p> <p>The request provides the behavior graph ARN and the list of accounts to invite.</p> <p>The response separates the requested accounts into two lists:</p> <ul> <li> <p>The accounts that <code>CreateMembers</code> was able to start the verification for. This list includes member accounts that are being verified, that have passed verification and are to be invited, and that have failed verification.</p> </li> <li> <p>The accounts that <code>CreateMembers</code> was unable to process. This list includes accounts that were already invited to be member accounts in the behavior graph.</p> </li> </ul>",
8+
"DeleteGraph": "<p>Disables the specified behavior graph and queues it to be deleted. This operation removes the graph from each member account's list of behavior graphs.</p> <p> <code>DeleteGraph</code> can only be called by the administrator account for a behavior graph.</p>",
9+
"DeleteMembers": "<p>Deletes one or more member accounts from the administrator account's behavior graph. This operation can only be called by a Detective administrator account. That account cannot use <code>DeleteMembers</code> to delete their own account from the behavior graph. To disable a behavior graph, the administrator account uses the <code>DeleteGraph</code> API method.</p>",
1010
"DisassociateMembership": "<p>Removes the member account from the specified behavior graph. This operation can only be called by a member account that has the <code>ENABLED</code> status.</p>",
1111
"GetMembers": "<p>Returns the membership details for specified member accounts for a behavior graph.</p>",
12-
"ListGraphs": "<p>Returns the list of behavior graphs that the calling account is a master of. This operation can only be called by a master account.</p> <p>Because an account can currently only be the master of one behavior graph within a Region, the results always contain a single graph.</p>",
12+
"ListGraphs": "<p>Returns the list of behavior graphs that the calling account is an administrator account of. This operation can only be called by an administrator account.</p> <p>Because an account can currently only be the administrator of one behavior graph within a Region, the results always contain a single behavior graph.</p>",
1313
"ListInvitations": "<p>Retrieves the list of open and accepted behavior graph invitations for the member account. This operation can only be called by a member account.</p> <p>Open invitations are invitations that the member account has not responded to.</p> <p>The results do not include behavior graphs for which the member account declined the invitation. The results also do not include behavior graphs that the member account resigned from or was removed from.</p>",
1414
"ListMembers": "<p>Retrieves the list of member accounts for a behavior graph. Does not return member accounts that were removed from the behavior graph.</p>",
1515
"RejectInvitation": "<p>Rejects an invitation to contribute the account data to a behavior graph. This operation must be called by a member account that has the <code>INVITED</code> status.</p>",
@@ -22,7 +22,7 @@
2222
}
2323
},
2424
"Account": {
25-
"base": "<p>An AWS account that is the master of or a member of a behavior graph.</p>",
25+
"base": "<p>An AWS account that is the administrator account of or a member of a behavior graph.</p>",
2626
"refs": {
2727
"AccountList$member": null
2828
}
@@ -33,7 +33,8 @@
3333
"Account$AccountId": "<p>The account identifier of the AWS account.</p>",
3434
"AccountIdList$member": null,
3535
"MemberDetail$AccountId": "<p>The AWS account identifier for the member account.</p>",
36-
"MemberDetail$MasterId": "<p>The AWS account identifier of the master account for the behavior graph.</p>",
36+
"MemberDetail$MasterId": "<p>Deprecated. Instead of <code>MasterId</code>, use <code>AdministratorId</code>.</p> <p>The AWS account identifier of the administrator account for the behavior graph.</p>",
37+
"MemberDetail$AdministratorId": "<p>The AWS account identifier of the administrator account for the behavior graph.</p>",
3738
"StartMonitoringMemberRequest$AccountId": "<p>The account ID of the member account to try to enable.</p> <p>The account must be an invited member account with a status of <code>ACCEPTED_BUT_DISABLED</code>. </p>",
3839
"UnprocessedAccount$AccountId": "<p>The AWS account identifier of the member account that was not processed.</p>"
3940
}
@@ -52,6 +53,12 @@
5253
"CreateMembersRequest$Accounts": "<p>The list of AWS accounts to invite to become member accounts in the behavior graph. For each invited account, the account list contains the account identifier and the AWS account root user email address.</p>"
5354
}
5455
},
56+
"Boolean": {
57+
"base": null,
58+
"refs": {
59+
"CreateMembersRequest$DisableEmailNotification": "<p>if set to <code>true</code>, then the member accounts do not receive email notifications. By default, this is set to <code>false</code>, and the member accounts receive email notifications.</p>"
60+
}
61+
},
5562
"ConflictException": {
5663
"base": "<p>The request attempted an invalid action.</p>",
5764
"refs": {
@@ -151,7 +158,7 @@
151158
"GraphList": {
152159
"base": null,
153160
"refs": {
154-
"ListGraphsResponse$GraphList": "<p>A list of behavior graphs that the account is a master for.</p>"
161+
"ListGraphsResponse$GraphList": "<p>A list of behavior graphs that the account is an administrator account for.</p>"
155162
}
156163
},
157164
"InternalServerException": {

0 commit comments

Comments
 (0)