Skip to content

Commit

Permalink
Release v1.33.15 (2020-07-29)
Browse files Browse the repository at this point in the history
===

### Service Client Updates
* `service/ec2`: Updates service API, documentation, and paginators
  * Adding support to target EC2 On-Demand Capacity Reservations within an AWS Resource Group to launch EC2 instances.
* `service/ecr`: Updates service API and documentation
  * This release adds support for encrypting the contents of your Amazon ECR repository with customer master keys (CMKs) stored in AWS Key Management Service.
* `service/firehose`: Updates service API and documentation
  * This release includes a new Kinesis Data Firehose feature that supports data delivery to Https endpoint and to partners. You can now use Kinesis Data Firehose to ingest real-time data and deliver to Https endpoint and partners in a serverless, reliable, and salable manner.
* `service/guardduty`: Updates service API and documentation
  * GuardDuty now supports S3 Data Events as a configurable data source type. This feature expands GuardDuty's monitoring scope to include S3 data plane operations, such as GetObject and PutObject. This data source is optional and can be enabled or disabled at anytime. Accounts already using GuardDuty must first enable the new feature to use it; new accounts will be enabled by default. GuardDuty masters can configure this data source for individual member accounts and GuardDuty masters associated through AWS Organizations can automatically enable the data source in member accounts.
* `service/resource-groups`: Updates service API and documentation
* `service/servicediscovery`: Updates service documentation
  • Loading branch information
awssdkgo committed Jul 29, 2020
1 parent e5d9526 commit 1564a88
Show file tree
Hide file tree
Showing 30 changed files with 5,043 additions and 610 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
Release v1.33.15 (2020-07-29)
===

### Service Client Updates
* `service/ec2`: Updates service API, documentation, and paginators
* Adding support to target EC2 On-Demand Capacity Reservations within an AWS Resource Group to launch EC2 instances.
* `service/ecr`: Updates service API and documentation
* This release adds support for encrypting the contents of your Amazon ECR repository with customer master keys (CMKs) stored in AWS Key Management Service.
* `service/firehose`: Updates service API and documentation
* This release includes a new Kinesis Data Firehose feature that supports data delivery to Https endpoint and to partners. You can now use Kinesis Data Firehose to ingest real-time data and deliver to Https endpoint and partners in a serverless, reliable, and salable manner.
* `service/guardduty`: Updates service API and documentation
* GuardDuty now supports S3 Data Events as a configurable data source type. This feature expands GuardDuty's monitoring scope to include S3 data plane operations, such as GetObject and PutObject. This data source is optional and can be enabled or disabled at anytime. Accounts already using GuardDuty must first enable the new feature to use it; new accounts will be enabled by default. GuardDuty masters can configure this data source for individual member accounts and GuardDuty masters associated through AWS Organizations can automatically enable the data source in member accounts.
* `service/resource-groups`: Updates service API and documentation
* `service/servicediscovery`: Updates service documentation

Release v1.33.14 (2020-07-28)
===

Expand Down
25 changes: 25 additions & 0 deletions aws/endpoints/defaults.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.33.14"
const SDKVersion = "1.33.15"
64 changes: 63 additions & 1 deletion models/apis/ec2/2016-11-15/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -2674,6 +2674,15 @@
"input":{"shape":"GetEbsEncryptionByDefaultRequest"},
"output":{"shape":"GetEbsEncryptionByDefaultResult"}
},
"GetGroupsForCapacityReservation":{
"name":"GetGroupsForCapacityReservation",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"GetGroupsForCapacityReservationRequest"},
"output":{"shape":"GetGroupsForCapacityReservationResult"}
},
"GetHostReservationPurchasePreview":{
"name":"GetHostReservationPurchasePreview",
"http":{
Expand Down Expand Up @@ -5465,6 +5474,26 @@
}
}
},
"CapacityReservationGroup":{
"type":"structure",
"members":{
"GroupArn":{
"shape":"String",
"locationName":"groupArn"
},
"OwnerId":{
"shape":"String",
"locationName":"ownerId"
}
}
},
"CapacityReservationGroupSet":{
"type":"list",
"member":{
"shape":"CapacityReservationGroup",
"locationName":"item"
}
},
"CapacityReservationId":{"type":"string"},
"CapacityReservationIdSet":{
"type":"list",
Expand Down Expand Up @@ -5551,7 +5580,8 @@
"CapacityReservationTarget":{
"type":"structure",
"members":{
"CapacityReservationId":{"shape":"CapacityReservationId"}
"CapacityReservationId":{"shape":"CapacityReservationId"},
"CapacityReservationResourceGroupArn":{"shape":"String"}
}
},
"CapacityReservationTargetResponse":{
Expand All @@ -5560,6 +5590,10 @@
"CapacityReservationId":{
"shape":"String",
"locationName":"capacityReservationId"
},
"CapacityReservationResourceGroupArn":{
"shape":"String",
"locationName":"capacityReservationResourceGroupArn"
}
}
},
Expand Down Expand Up @@ -15510,6 +15544,34 @@
}
}
},
"GetGroupsForCapacityReservationRequest":{
"type":"structure",
"required":["CapacityReservationId"],
"members":{
"CapacityReservationId":{"shape":"CapacityReservationId"},
"NextToken":{"shape":"String"},
"MaxResults":{"shape":"GetGroupsForCapacityReservationRequestMaxResults"},
"DryRun":{"shape":"Boolean"}
}
},
"GetGroupsForCapacityReservationRequestMaxResults":{
"type":"integer",
"max":1000,
"min":1
},
"GetGroupsForCapacityReservationResult":{
"type":"structure",
"members":{
"NextToken":{
"shape":"String",
"locationName":"nextToken"
},
"CapacityReservationGroups":{
"shape":"CapacityReservationGroupSet",
"locationName":"capacityReservationGroupSet"
}
}
},
"GetHostReservationPurchasePreviewRequest":{
"type":"structure",
"required":[
Expand Down
Loading

0 comments on commit 1564a88

Please sign in to comment.