Skip to content

Commit

Permalink
Release v1.31.9 (2020-06-02)
Browse files Browse the repository at this point in the history
===

### Service Client Updates
* `service/guardduty`: Updates service API and documentation
  * Amazon GuardDuty findings now include S3 bucket details under the resource section if an S3 Bucket was one of the affected resources
  • Loading branch information
awssdkgo committed Jun 2, 2020
1 parent 0fd0b06 commit 535fa09
Show file tree
Hide file tree
Showing 5 changed files with 699 additions and 27 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
Release v1.31.9 (2020-06-02)
===

### Service Client Updates
* `service/guardduty`: Updates service API and documentation
* Amazon GuardDuty findings now include S3 bucket details under the resource section if an S3 Bucket was one of the affected resources

Release v1.31.8 (2020-06-01)
===

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.31.8"
const SDKVersion = "1.31.9"
167 changes: 167 additions & 0 deletions models/apis/guardduty/2017-11-28/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -812,6 +812,19 @@
"members":{
}
},
"AccessControlList":{
"type":"structure",
"members":{
"AllowsPublicReadAccess":{
"shape":"Boolean",
"locationName":"allowsPublicReadAccess"
},
"AllowsPublicWriteAccess":{
"shape":"Boolean",
"locationName":"allowsPublicWriteAccess"
}
}
},
"AccessKeyDetails":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -867,6 +880,15 @@
"max":50,
"min":1
},
"AccountLevelPermissions":{
"type":"structure",
"members":{
"BlockPublicAccess":{
"shape":"BlockPublicAccess",
"locationName":"blockPublicAccess"
}
}
},
"Action":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -983,7 +1005,58 @@
"error":{"httpStatusCode":400},
"exception":true
},
"BlockPublicAccess":{
"type":"structure",
"members":{
"IgnorePublicAcls":{
"shape":"Boolean",
"locationName":"ignorePublicAcls"
},
"RestrictPublicBuckets":{
"shape":"Boolean",
"locationName":"restrictPublicBuckets"
},
"BlockPublicAcls":{
"shape":"Boolean",
"locationName":"blockPublicAcls"
},
"BlockPublicPolicy":{
"shape":"Boolean",
"locationName":"blockPublicPolicy"
}
}
},
"Boolean":{"type":"boolean"},
"BucketLevelPermissions":{
"type":"structure",
"members":{
"AccessControlList":{
"shape":"AccessControlList",
"locationName":"accessControlList"
},
"BucketPolicy":{
"shape":"BucketPolicy",
"locationName":"bucketPolicy"
},
"BlockPublicAccess":{
"shape":"BlockPublicAccess",
"locationName":"blockPublicAccess"
}
}
},
"BucketPolicy":{
"type":"structure",
"members":{
"AllowsPublicReadAccess":{
"shape":"Boolean",
"locationName":"allowsPublicReadAccess"
},
"AllowsPublicWriteAccess":{
"shape":"Boolean",
"locationName":"allowsPublicWriteAccess"
}
}
},
"City":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -1376,6 +1449,19 @@
}
}
},
"DefaultServerSideEncryption":{
"type":"structure",
"members":{
"EncryptionType":{
"shape":"String",
"locationName":"encryptionType"
},
"KmsMasterKeyArn":{
"shape":"String",
"locationName":"kmsMasterKeyArn"
}
}
},
"DeleteDetectorRequest":{
"type":"structure",
"required":["DetectorId"],
Expand Down Expand Up @@ -3055,6 +3141,28 @@
}
}
},
"Owner":{
"type":"structure",
"members":{
"Id":{
"shape":"String",
"locationName":"id"
}
}
},
"PermissionConfiguration":{
"type":"structure",
"members":{
"BucketLevelPermissions":{
"shape":"BucketLevelPermissions",
"locationName":"bucketLevelPermissions"
},
"AccountLevelPermissions":{
"shape":"AccountLevelPermissions",
"locationName":"accountLevelPermissions"
}
}
},
"PortProbeAction":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -3123,6 +3231,19 @@
"type":"list",
"member":{"shape":"ProductCode"}
},
"PublicAccess":{
"type":"structure",
"members":{
"PermissionConfiguration":{
"shape":"PermissionConfiguration",
"locationName":"permissionConfiguration"
},
"EffectivePermission":{
"shape":"String",
"locationName":"effectivePermission"
}
}
},
"PublishingStatus":{
"type":"string",
"enum":[
Expand Down Expand Up @@ -3179,6 +3300,10 @@
"shape":"AccessKeyDetails",
"locationName":"accessKeyDetails"
},
"S3BucketDetails":{
"shape":"S3BucketDetails",
"locationName":"s3BucketDetails"
},
"InstanceDetails":{
"shape":"InstanceDetails",
"locationName":"instanceDetails"
Expand All @@ -3189,6 +3314,47 @@
}
}
},
"S3BucketDetail":{
"type":"structure",
"members":{
"Arn":{
"shape":"String",
"locationName":"arn"
},
"Name":{
"shape":"String",
"locationName":"name"
},
"Type":{
"shape":"String",
"locationName":"type"
},
"CreatedAt":{
"shape":"Timestamp",
"locationName":"createdAt"
},
"Owner":{
"shape":"Owner",
"locationName":"owner"
},
"Tags":{
"shape":"Tags",
"locationName":"tags"
},
"DefaultServerSideEncryption":{
"shape":"DefaultServerSideEncryption",
"locationName":"defaultServerSideEncryption"
},
"PublicAccess":{
"shape":"PublicAccess",
"locationName":"publicAccess"
}
}
},
"S3BucketDetails":{
"type":"list",
"member":{"shape":"S3BucketDetail"}
},
"SecurityGroup":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -3438,6 +3604,7 @@
"type":"list",
"member":{"shape":"String"}
},
"Timestamp":{"type":"timestamp"},
"UnarchiveFindingsRequest":{
"type":"structure",
"required":[
Expand Down
Loading

0 comments on commit 535fa09

Please sign in to comment.