Skip to content

Commit

Permalink
Release v1.38.47 (2021-05-25) (#3925)
Browse files Browse the repository at this point in the history
Release v1.38.47 (2021-05-25)
===

### Service Client Updates
* `service/iot`: Updates service API and documentation
  * This release includes support for a new feature: Job templates for AWS IoT Device Management Jobs. The release includes job templates as a new resource and APIs for managing job templates.
* `service/transfer`: Updates service API, documentation, and paginators
  * AWS Transfer Family customers can now use AWS Managed Active Directory or AD Connector to authenticate their end users, enabling seamless migration of file transfer workflows that rely on AD authentication, without changing end users' credentials or needing a custom authorizer.
* `service/workspaces`: Updates service API and documentation
  * Adds support for Linux device types in WorkspaceAccessProperties
  • Loading branch information
aws-sdk-go-automation authored May 25, 2021
1 parent 384419c commit 88f39b4
Show file tree
Hide file tree
Showing 15 changed files with 3,546 additions and 255 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
Release v1.38.47 (2021-05-25)
===

### Service Client Updates
* `service/iot`: Updates service API and documentation
* This release includes support for a new feature: Job templates for AWS IoT Device Management Jobs. The release includes job templates as a new resource and APIs for managing job templates.
* `service/transfer`: Updates service API, documentation, and paginators
* AWS Transfer Family customers can now use AWS Managed Active Directory or AD Connector to authenticate their end users, enabling seamless migration of file transfer workflows that rely on AD authentication, without changing end users' credentials or needing a custom authorizer.
* `service/workspaces`: Updates service API and documentation
* Adds support for Linux device types in WorkspaceAccessProperties

Release v1.38.46 (2021-05-24)
===

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.38.46"
const SDKVersion = "1.38.47"
189 changes: 186 additions & 3 deletions models/apis/iot/2015-05-28/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -420,6 +420,23 @@
{"shape":"ServiceUnavailableException"}
]
},
"CreateJobTemplate":{
"name":"CreateJobTemplate",
"http":{
"method":"PUT",
"requestUri":"/job-templates/{jobTemplateId}"
},
"input":{"shape":"CreateJobTemplateRequest"},
"output":{"shape":"CreateJobTemplateResponse"},
"errors":[
{"shape":"InvalidRequestException"},
{"shape":"ResourceNotFoundException"},
{"shape":"ConflictException"},
{"shape":"LimitExceededException"},
{"shape":"ThrottlingException"},
{"shape":"InternalFailureException"}
]
},
"CreateKeysAndCertificate":{
"name":"CreateKeysAndCertificate",
"http":{
Expand Down Expand Up @@ -899,6 +916,20 @@
{"shape":"ServiceUnavailableException"}
]
},
"DeleteJobTemplate":{
"name":"DeleteJobTemplate",
"http":{
"method":"DELETE",
"requestUri":"/job-templates/{jobTemplateId}"
},
"input":{"shape":"DeleteJobTemplateRequest"},
"errors":[
{"shape":"InvalidRequestException"},
{"shape":"ResourceNotFoundException"},
{"shape":"ThrottlingException"},
{"shape":"InternalFailureException"}
]
},
"DeleteMitigationAction":{
"name":"DeleteMitigationAction",
"http":{
Expand Down Expand Up @@ -1487,6 +1518,21 @@
{"shape":"ServiceUnavailableException"}
]
},
"DescribeJobTemplate":{
"name":"DescribeJobTemplate",
"http":{
"method":"GET",
"requestUri":"/job-templates/{jobTemplateId}"
},
"input":{"shape":"DescribeJobTemplateRequest"},
"output":{"shape":"DescribeJobTemplateResponse"},
"errors":[
{"shape":"InvalidRequestException"},
{"shape":"ResourceNotFoundException"},
{"shape":"ThrottlingException"},
{"shape":"InternalFailureException"}
]
},
"DescribeMitigationAction":{
"name":"DescribeMitigationAction",
"http":{
Expand Down Expand Up @@ -2307,6 +2353,20 @@
{"shape":"ServiceUnavailableException"}
]
},
"ListJobTemplates":{
"name":"ListJobTemplates",
"http":{
"method":"GET",
"requestUri":"/job-templates"
},
"input":{"shape":"ListJobTemplatesRequest"},
"output":{"shape":"ListJobTemplatesResponse"},
"errors":[
{"shape":"InvalidRequestException"},
{"shape":"ThrottlingException"},
{"shape":"InternalFailureException"}
]
},
"ListJobs":{
"name":"ListJobs",
"http":{
Expand Down Expand Up @@ -4931,6 +4991,14 @@
"max":2048,
"min":1
},
"ConflictException":{
"type":"structure",
"members":{
"message":{"shape":"errorMessage"}
},
"error":{"httpStatusCode":409},
"exception":true
},
"ConflictingResourceUpdateException":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -5178,7 +5246,8 @@
"abortConfig":{"shape":"AbortConfig"},
"timeoutConfig":{"shape":"TimeoutConfig"},
"tags":{"shape":"TagList"},
"namespaceId":{"shape":"NamespaceId"}
"namespaceId":{"shape":"NamespaceId"},
"jobTemplateArn":{"shape":"JobTemplateArn"}
}
},
"CreateJobResponse":{
Expand All @@ -5189,6 +5258,36 @@
"description":{"shape":"JobDescription"}
}
},
"CreateJobTemplateRequest":{
"type":"structure",
"required":[
"jobTemplateId",
"description"
],
"members":{
"jobTemplateId":{
"shape":"JobTemplateId",
"location":"uri",
"locationName":"jobTemplateId"
},
"jobArn":{"shape":"JobArn"},
"documentSource":{"shape":"JobDocumentSource"},
"document":{"shape":"JobDocument"},
"description":{"shape":"JobDescription"},
"presignedUrlConfig":{"shape":"PresignedUrlConfig"},
"jobExecutionsRolloutConfig":{"shape":"JobExecutionsRolloutConfig"},
"abortConfig":{"shape":"AbortConfig"},
"timeoutConfig":{"shape":"TimeoutConfig"},
"tags":{"shape":"TagList"}
}
},
"CreateJobTemplateResponse":{
"type":"structure",
"members":{
"jobTemplateArn":{"shape":"JobTemplateArn"},
"jobTemplateId":{"shape":"JobTemplateId"}
}
},
"CreateKeysAndCertificateRequest":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -5897,6 +5996,17 @@
}
}
},
"DeleteJobTemplateRequest":{
"type":"structure",
"required":["jobTemplateId"],
"members":{
"jobTemplateId":{
"shape":"JobTemplateId",
"location":"uri",
"locationName":"jobTemplateId"
}
}
},
"DeleteMitigationActionRequest":{
"type":"structure",
"required":["actionName"],
Expand Down Expand Up @@ -6583,6 +6693,32 @@
"job":{"shape":"Job"}
}
},
"DescribeJobTemplateRequest":{
"type":"structure",
"required":["jobTemplateId"],
"members":{
"jobTemplateId":{
"shape":"JobTemplateId",
"location":"uri",
"locationName":"jobTemplateId"
}
}
},
"DescribeJobTemplateResponse":{
"type":"structure",
"members":{
"jobTemplateArn":{"shape":"JobTemplateArn"},
"jobTemplateId":{"shape":"JobTemplateId"},
"description":{"shape":"JobDescription"},
"documentSource":{"shape":"JobDocumentSource"},
"document":{"shape":"JobDocument"},
"createdAt":{"shape":"DateType"},
"presignedUrlConfig":{"shape":"PresignedUrlConfig"},
"jobExecutionsRolloutConfig":{"shape":"JobExecutionsRolloutConfig"},
"abortConfig":{"shape":"AbortConfig"},
"timeoutConfig":{"shape":"TimeoutConfig"}
}
},
"DescribeMitigationActionRequest":{
"type":"structure",
"required":["actionName"],
Expand Down Expand Up @@ -7901,7 +8037,8 @@
"completedAt":{"shape":"DateType"},
"jobProcessDetails":{"shape":"JobProcessDetails"},
"timeoutConfig":{"shape":"TimeoutConfig"},
"namespaceId":{"shape":"NamespaceId"}
"namespaceId":{"shape":"NamespaceId"},
"jobTemplateArn":{"shape":"JobTemplateArn"}
}
},
"JobArn":{"type":"string"},
Expand Down Expand Up @@ -8053,6 +8190,31 @@
"member":{"shape":"TargetArn"},
"min":1
},
"JobTemplateArn":{
"type":"string",
"max":1600,
"min":1,
"pattern":"^arn:[!-~]+$"
},
"JobTemplateId":{
"type":"string",
"max":64,
"min":1,
"pattern":"[a-zA-Z0-9_-]+"
},
"JobTemplateSummary":{
"type":"structure",
"members":{
"jobTemplateArn":{"shape":"JobTemplateArn"},
"jobTemplateId":{"shape":"JobTemplateId"},
"description":{"shape":"JobDescription"},
"createdAt":{"shape":"DateType"}
}
},
"JobTemplateSummaryList":{
"type":"list",
"member":{"shape":"JobTemplateSummary"}
},
"JsonDocument":{"type":"string"},
"KafkaAction":{
"type":"structure",
Expand Down Expand Up @@ -8764,6 +8926,28 @@
"nextToken":{"shape":"NextToken"}
}
},
"ListJobTemplatesRequest":{
"type":"structure",
"members":{
"maxResults":{
"shape":"LaserMaxResults",
"location":"querystring",
"locationName":"maxResults"
},
"nextToken":{
"shape":"NextToken",
"location":"querystring",
"locationName":"nextToken"
}
}
},
"ListJobTemplatesResponse":{
"type":"structure",
"members":{
"jobTemplates":{"shape":"JobTemplateSummaryList"},
"nextToken":{"shape":"NextToken"}
}
},
"ListJobsRequest":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -9794,7 +9978,6 @@
},
"MaxJobExecutionsPerMin":{
"type":"integer",
"max":1000,
"min":1
},
"MaxResults":{
Expand Down
Loading

0 comments on commit 88f39b4

Please sign in to comment.