Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v1.39.2 #3994

Merged
merged 1 commit into from
Jul 7, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
Release v1.39.2 (2021-07-07)
===

### Service Client Updates
* `service/chime`: Updates service API, documentation, and paginators
* Releasing new APIs for AWS Chime MediaCapturePipeline
* `service/cloudfront`: Updates service API and documentation
* Amazon CloudFront now provides two new APIs, ListConflictingAliases and AssociateAlias, that help locate and move Alternate Domain Names (CNAMEs) if you encounter the CNAMEAlreadyExists error code.
* `service/ec2`: Updates service API, documentation, and paginators
* This release adds resource ids and tagging support for VPC security group rules.
* `service/iam`: Updates service documentation
* Documentation updates for AWS Identity and Access Management (IAM).
* `service/iotsitewise`: Updates service API and documentation
* `service/mq`: Updates service API and documentation
* adds support for modifying the maintenance window for brokers.
* `service/storagegateway`: Updates service API and documentation
* Adding support for oplocks for SMB file shares, S3 Access Point and S3 Private Link for all file shares and IP address support for file system associations
* `service/sts`: Updates service documentation
* Documentation updates for AWS Security Token Service.

Release v1.39.1 (2021-07-06)
===

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.39.1"
const SDKVersion = "1.39.2"
184 changes: 184 additions & 0 deletions models/apis/chime/2018-05-01/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -448,6 +448,25 @@
],
"endpoint":{"hostPrefix":"messaging-"}
},
"CreateMediaCapturePipeline":{
"name":"CreateMediaCapturePipeline",
"http":{
"method":"POST",
"requestUri":"/media-capture-pipelines",
"responseCode":201
},
"input":{"shape":"CreateMediaCapturePipelineRequest"},
"output":{"shape":"CreateMediaCapturePipelineResponse"},
"errors":[
{"shape":"ResourceLimitExceededException"},
{"shape":"ForbiddenException"},
{"shape":"BadRequestException"},
{"shape":"UnauthorizedClientException"},
{"shape":"ThrottledClientException"},
{"shape":"ServiceUnavailableException"},
{"shape":"ServiceFailureException"}
]
},
"CreateMeeting":{
"name":"CreateMeeting",
"http":{
Expand Down Expand Up @@ -925,6 +944,24 @@
{"shape":"ResourceLimitExceededException"}
]
},
"DeleteMediaCapturePipeline":{
"name":"DeleteMediaCapturePipeline",
"http":{
"method":"DELETE",
"requestUri":"/media-capture-pipelines/{mediaPipelineId}",
"responseCode":204
},
"input":{"shape":"DeleteMediaCapturePipelineRequest"},
"errors":[
{"shape":"ForbiddenException"},
{"shape":"NotFoundException"},
{"shape":"BadRequestException"},
{"shape":"ThrottledClientException"},
{"shape":"UnauthorizedClientException"},
{"shape":"ServiceUnavailableException"},
{"shape":"ServiceFailureException"}
]
},
"DeleteMeeting":{
"name":"DeleteMeeting",
"http":{
Expand Down Expand Up @@ -1618,6 +1655,25 @@
{"shape":"ServiceFailureException"}
]
},
"GetMediaCapturePipeline":{
"name":"GetMediaCapturePipeline",
"http":{
"method":"GET",
"requestUri":"/media-capture-pipelines/{mediaPipelineId}",
"responseCode":200
},
"input":{"shape":"GetMediaCapturePipelineRequest"},
"output":{"shape":"GetMediaCapturePipelineResponse"},
"errors":[
{"shape":"NotFoundException"},
{"shape":"ForbiddenException"},
{"shape":"BadRequestException"},
{"shape":"UnauthorizedClientException"},
{"shape":"ThrottledClientException"},
{"shape":"ServiceUnavailableException"},
{"shape":"ServiceFailureException"}
]
},
"GetMeeting":{
"name":"GetMeeting",
"http":{
Expand Down Expand Up @@ -2315,6 +2371,24 @@
],
"endpoint":{"hostPrefix":"messaging-"}
},
"ListMediaCapturePipelines":{
"name":"ListMediaCapturePipelines",
"http":{
"method":"GET",
"requestUri":"/media-capture-pipelines",
"responseCode":200
},
"input":{"shape":"ListMediaCapturePipelinesRequest"},
"output":{"shape":"ListMediaCapturePipelinesResponse"},
"errors":[
{"shape":"BadRequestException"},
{"shape":"ForbiddenException"},
{"shape":"ThrottledClientException"},
{"shape":"UnauthorizedClientException"},
{"shape":"ServiceUnavailableException"},
{"shape":"ServiceFailureException"}
]
},
"ListMeetingTags":{
"name":"ListMeetingTags",
"http":{
Expand Down Expand Up @@ -4553,6 +4627,31 @@
"ChannelArn":{"shape":"ChimeArn"}
}
},
"CreateMediaCapturePipelineRequest":{
"type":"structure",
"required":[
"SourceType",
"SourceArn",
"SinkType",
"SinkArn"
],
"members":{
"SourceType":{"shape":"MediaPipelineSourceType"},
"SourceArn":{"shape":"Arn"},
"SinkType":{"shape":"MediaPipelineSinkType"},
"SinkArn":{"shape":"Arn"},
"ClientRequestToken":{
"shape":"ClientRequestToken",
"idempotencyToken":true
}
}
},
"CreateMediaCapturePipelineResponse":{
"type":"structure",
"members":{
"MediaCapturePipeline":{"shape":"MediaCapturePipeline"}
}
},
"CreateMeetingDialOutRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -5092,6 +5191,17 @@
}
}
},
"DeleteMediaCapturePipelineRequest":{
"type":"structure",
"required":["MediaPipelineId"],
"members":{
"MediaPipelineId":{
"shape":"GuidString",
"location":"uri",
"locationName":"mediaPipelineId"
}
}
},
"DeleteMeetingRequest":{
"type":"structure",
"required":["MeetingId"],
Expand Down Expand Up @@ -5890,6 +6000,23 @@
"VoiceConnector":{"shape":"VoiceConnectorSettings"}
}
},
"GetMediaCapturePipelineRequest":{
"type":"structure",
"required":["MediaPipelineId"],
"members":{
"MediaPipelineId":{
"shape":"GuidString",
"location":"uri",
"locationName":"mediaPipelineId"
}
}
},
"GetMediaCapturePipelineResponse":{
"type":"structure",
"members":{
"MediaCapturePipeline":{"shape":"MediaCapturePipeline"}
}
},
"GetMeetingRequest":{
"type":"structure",
"required":["MeetingId"],
Expand Down Expand Up @@ -6811,6 +6938,28 @@
"NextToken":{"shape":"NextToken"}
}
},
"ListMediaCapturePipelinesRequest":{
"type":"structure",
"members":{
"NextToken":{
"shape":"String",
"location":"querystring",
"locationName":"next-token"
},
"MaxResults":{
"shape":"ResultMax",
"location":"querystring",
"locationName":"max-results"
}
}
},
"ListMediaCapturePipelinesResponse":{
"type":"structure",
"members":{
"MediaCapturePipelines":{"shape":"MediaCapturePipelineList"},
"NextToken":{"shape":"String"}
}
},
"ListMeetingTagsRequest":{
"type":"structure",
"required":["MeetingId"],
Expand Down Expand Up @@ -7233,6 +7382,41 @@
"max":50,
"min":1
},
"MediaCapturePipeline":{
"type":"structure",
"members":{
"MediaPipelineId":{"shape":"GuidString"},
"SourceType":{"shape":"MediaPipelineSourceType"},
"SourceArn":{"shape":"Arn"},
"Status":{"shape":"MediaPipelineStatus"},
"SinkType":{"shape":"MediaPipelineSinkType"},
"SinkArn":{"shape":"Arn"},
"CreatedTimestamp":{"shape":"Iso8601Timestamp"},
"UpdatedTimestamp":{"shape":"Iso8601Timestamp"}
}
},
"MediaCapturePipelineList":{
"type":"list",
"member":{"shape":"MediaCapturePipeline"}
},
"MediaPipelineSinkType":{
"type":"string",
"enum":["S3Bucket"]
},
"MediaPipelineSourceType":{
"type":"string",
"enum":["ChimeSdkMeeting"]
},
"MediaPipelineStatus":{
"type":"string",
"enum":[
"Initializing",
"InProgress",
"Failed",
"Stopping",
"Stopped"
]
},
"MediaPlacement":{
"type":"structure",
"members":{
Expand Down
Loading