Skip to content

Commit

Permalink
Release v1.41.17 (2021-11-03) (#4158)
Browse files Browse the repository at this point in the history
Release v1.41.17 (2021-11-03)
===

### Service Client Updates
* `service/connectparticipant`: Updates service API
* `service/datasync`: Updates service API and documentation
* `service/finspace`: Updates service API and documentation
* `service/macie2`: Updates service API and documentation
  • Loading branch information
aws-sdk-go-automation authored Nov 3, 2021
1 parent c34ad3a commit 55a78b3
Show file tree
Hide file tree
Showing 16 changed files with 1,996 additions and 113 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
Release v1.41.17 (2021-11-03)
===

### Service Client Updates
* `service/connectparticipant`: Updates service API
* `service/datasync`: Updates service API and documentation
* `service/finspace`: Updates service API and documentation
* `service/macie2`: Updates service API and documentation

Release v1.41.16 (2021-11-02)
===

Expand Down
2 changes: 1 addition & 1 deletion aws/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.41.16"
const SDKVersion = "1.41.17"
6 changes: 1 addition & 5 deletions models/apis/connectparticipant/2018-09-07/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -216,11 +216,7 @@
"MESSAGE",
"EVENT",
"ATTACHMENT",
"CONNECTION_ACK",
"PARTICIPANT_ACTIVE",
"PARTICIPANT_INACTIVE",
"PARTICIPANT_ENGAGED",
"PARTICIPANT_DISENGAGED"
"CONNECTION_ACK"
]
},
"ClientToken":{
Expand Down
219 changes: 219 additions & 0 deletions models/apis/datasync/2018-11-09/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,19 @@
{"shape":"InternalException"}
]
},
"CreateLocationHdfs":{
"name":"CreateLocationHdfs",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"CreateLocationHdfsRequest"},
"output":{"shape":"CreateLocationHdfsResponse"},
"errors":[
{"shape":"InvalidRequestException"},
{"shape":"InternalException"}
]
},
"CreateLocationNfs":{
"name":"CreateLocationNfs",
"http":{
Expand Down Expand Up @@ -209,6 +222,19 @@
{"shape":"InternalException"}
]
},
"DescribeLocationHdfs":{
"name":"DescribeLocationHdfs",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DescribeLocationHdfsRequest"},
"output":{"shape":"DescribeLocationHdfsResponse"},
"errors":[
{"shape":"InvalidRequestException"},
{"shape":"InternalException"}
]
},
"DescribeLocationNfs":{
"name":"DescribeLocationNfs",
"http":{
Expand Down Expand Up @@ -404,6 +430,19 @@
{"shape":"InternalException"}
]
},
"UpdateLocationHdfs":{
"name":"UpdateLocationHdfs",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"UpdateLocationHdfsRequest"},
"output":{"shape":"UpdateLocationHdfsResponse"},
"errors":[
{"shape":"InvalidRequestException"},
{"shape":"InternalException"}
]
},
"UpdateLocationNfs":{
"name":"UpdateLocationNfs",
"http":{
Expand Down Expand Up @@ -590,6 +629,35 @@
"LocationArn":{"shape":"LocationArn"}
}
},
"CreateLocationHdfsRequest":{
"type":"structure",
"required":[
"NameNodes",
"AuthenticationType",
"AgentArns"
],
"members":{
"Subdirectory":{"shape":"HdfsSubdirectory"},
"NameNodes":{"shape":"HdfsNameNodeList"},
"BlockSize":{"shape":"HdfsBlockSize"},
"ReplicationFactor":{"shape":"HdfsReplicationFactor"},
"KmsKeyProviderUri":{"shape":"KmsKeyProviderUri"},
"QopConfiguration":{"shape":"QopConfiguration"},
"AuthenticationType":{"shape":"HdfsAuthenticationType"},
"SimpleUser":{"shape":"HdfsUser"},
"KerberosPrincipal":{"shape":"KerberosPrincipal"},
"KerberosKeytab":{"shape":"KerberosKeytabFile"},
"KerberosKrb5Conf":{"shape":"KerberosKrb5ConfFile"},
"AgentArns":{"shape":"AgentArnList"},
"Tags":{"shape":"InputTagList"}
}
},
"CreateLocationHdfsResponse":{
"type":"structure",
"members":{
"LocationArn":{"shape":"LocationArn"}
}
},
"CreateLocationNfsRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -796,6 +864,30 @@
"Domain":{"shape":"SmbDomain"}
}
},
"DescribeLocationHdfsRequest":{
"type":"structure",
"required":["LocationArn"],
"members":{
"LocationArn":{"shape":"LocationArn"}
}
},
"DescribeLocationHdfsResponse":{
"type":"structure",
"members":{
"LocationArn":{"shape":"LocationArn"},
"LocationUri":{"shape":"LocationUri"},
"NameNodes":{"shape":"HdfsNameNodeList"},
"BlockSize":{"shape":"HdfsBlockSize"},
"ReplicationFactor":{"shape":"HdfsReplicationFactor"},
"KmsKeyProviderUri":{"shape":"KmsKeyProviderUri"},
"QopConfiguration":{"shape":"QopConfiguration"},
"AuthenticationType":{"shape":"HdfsAuthenticationType"},
"SimpleUser":{"shape":"HdfsUser"},
"KerberosPrincipal":{"shape":"KerberosPrincipal"},
"AgentArns":{"shape":"AgentArnList"},
"CreationTime":{"shape":"Time"}
}
},
"DescribeLocationNfsRequest":{
"type":"structure",
"required":["LocationArn"],
Expand Down Expand Up @@ -1033,6 +1125,82 @@
"BOTH"
]
},
"HdfsAuthenticationType":{
"type":"string",
"enum":[
"SIMPLE",
"KERBEROS"
]
},
"HdfsBlockSize":{
"type":"integer",
"box":true,
"max":1073741824,
"min":1048576
},
"HdfsDataTransferProtection":{
"type":"string",
"enum":[
"DISABLED",
"AUTHENTICATION",
"INTEGRITY",
"PRIVACY"
]
},
"HdfsNameNode":{
"type":"structure",
"required":[
"Hostname",
"Port"
],
"members":{
"Hostname":{"shape":"HdfsServerHostname"},
"Port":{"shape":"HdfsServerPort"}
}
},
"HdfsNameNodeList":{
"type":"list",
"member":{"shape":"HdfsNameNode"},
"min":1
},
"HdfsReplicationFactor":{
"type":"integer",
"box":true,
"max":512,
"min":1
},
"HdfsRpcProtection":{
"type":"string",
"enum":[
"DISABLED",
"AUTHENTICATION",
"INTEGRITY",
"PRIVACY"
]
},
"HdfsServerHostname":{
"type":"string",
"max":255,
"min":1,
"pattern":"^(([a-zA-Z0-9\\-]*[a-zA-Z0-9])\\.)*([A-Za-z0-9\\-]*[A-Za-z0-9])$"
},
"HdfsServerPort":{
"type":"integer",
"box":true,
"max":65536,
"min":1
},
"HdfsSubdirectory":{
"type":"string",
"max":4096,
"pattern":"^[a-zA-Z0-9_\\-\\+\\./\\(\\)\\$\\p{Zs}]+$"
},
"HdfsUser":{
"type":"string",
"max":256,
"min":1,
"pattern":"^[_.A-Za-z0-9][-_.A-Za-z0-9]*$"
},
"IamRoleArn":{
"type":"string",
"max":2048,
Expand Down Expand Up @@ -1061,6 +1229,26 @@
},
"exception":true
},
"KerberosKeytabFile":{
"type":"blob",
"max":65536
},
"KerberosKrb5ConfFile":{
"type":"blob",
"max":131072
},
"KerberosPrincipal":{
"type":"string",
"max":256,
"min":1,
"pattern":"^.+$"
},
"KmsKeyProviderUri":{
"type":"string",
"max":255,
"min":1,
"pattern":"^kms:\\/\\/http[s]?@(([a-zA-Z0-9\\-]*[a-zA-Z0-9])\\.)*([A-Za-z0-9\\-]*[A-Za-z0-9])(;(([a-zA-Z0-9\\-]*[a-zA-Z0-9])\\.)*([A-Za-z0-9\\-]*[A-Za-z0-9]))*:[0-9]{1,5}\\/kms$"
},
"ListAgentsRequest":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -1373,6 +1561,13 @@
"SecurityGroupArns":{"shape":"PLSecurityGroupArnList"}
}
},
"QopConfiguration":{
"type":"structure",
"members":{
"RpcProtection":{"shape":"HdfsRpcProtection"},
"DataTransferProtection":{"shape":"HdfsDataTransferProtection"}
}
},
"S3BucketArn":{
"type":"string",
"max":156,
Expand Down Expand Up @@ -1675,6 +1870,30 @@
"members":{
}
},
"UpdateLocationHdfsRequest":{
"type":"structure",
"required":["LocationArn"],
"members":{
"LocationArn":{"shape":"LocationArn"},
"Subdirectory":{"shape":"HdfsSubdirectory"},
"NameNodes":{"shape":"HdfsNameNodeList"},
"BlockSize":{"shape":"HdfsBlockSize"},
"ReplicationFactor":{"shape":"HdfsReplicationFactor"},
"KmsKeyProviderUri":{"shape":"KmsKeyProviderUri"},
"QopConfiguration":{"shape":"QopConfiguration"},
"AuthenticationType":{"shape":"HdfsAuthenticationType"},
"SimpleUser":{"shape":"HdfsUser"},
"KerberosPrincipal":{"shape":"KerberosPrincipal"},
"KerberosKeytab":{"shape":"KerberosKeytabFile"},
"KerberosKrb5Conf":{"shape":"KerberosKrb5ConfFile"},
"AgentArns":{"shape":"AgentArnList"}
}
},
"UpdateLocationHdfsResponse":{
"type":"structure",
"members":{
}
},
"UpdateLocationNfsRequest":{
"type":"structure",
"required":["LocationArn"],
Expand Down
Loading

0 comments on commit 55a78b3

Please sign in to comment.