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.44.78 #4521

Merged
merged 1 commit into from Aug 16, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,12 @@
Release v1.44.78 (2022-08-16)
===

### Service Client Updates
* `service/rekognition`: Updates service API, documentation, paginators, and examples
* This release adds APIs which support copying an Amazon Rekognition Custom Labels model and managing project policies across AWS account.
* `service/servicecatalog`: Updates service documentation
* Documentation updates for Service Catalog

Release v1.44.77 (2022-08-15)
===

Expand Down
12 changes: 12 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
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.44.77"
const SDKVersion = "1.44.78"
213 changes: 211 additions & 2 deletions models/apis/rekognition/2016-06-27/api-2.json
Expand Up @@ -31,6 +31,26 @@
{"shape":"InvalidImageFormatException"}
]
},
"CopyProjectVersion":{
"name":"CopyProjectVersion",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"CopyProjectVersionRequest"},
"output":{"shape":"CopyProjectVersionResponse"},
"errors":[
{"shape":"AccessDeniedException"},
{"shape":"InternalServerError"},
{"shape":"InvalidParameterException"},
{"shape":"LimitExceededException"},
{"shape":"ResourceNotFoundException"},
{"shape":"ThrottlingException"},
{"shape":"ServiceQuotaExceededException"},
{"shape":"ProvisionedThroughputExceededException"},
{"shape":"ResourceInUseException"}
]
},
"CreateCollection":{
"name":"CreateCollection",
"http":{
Expand Down Expand Up @@ -197,6 +217,24 @@
{"shape":"ProvisionedThroughputExceededException"}
]
},
"DeleteProjectPolicy":{
"name":"DeleteProjectPolicy",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DeleteProjectPolicyRequest"},
"output":{"shape":"DeleteProjectPolicyResponse"},
"errors":[
{"shape":"AccessDeniedException"},
{"shape":"InternalServerError"},
{"shape":"InvalidParameterException"},
{"shape":"ResourceNotFoundException"},
{"shape":"ThrottlingException"},
{"shape":"ProvisionedThroughputExceededException"},
{"shape":"InvalidPolicyRevisionIdException"}
]
},
"DeleteProjectVersion":{
"name":"DeleteProjectVersion",
"http":{
Expand Down Expand Up @@ -713,6 +751,24 @@
{"shape":"ResourceNotFoundException"}
]
},
"ListProjectPolicies":{
"name":"ListProjectPolicies",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"ListProjectPoliciesRequest"},
"output":{"shape":"ListProjectPoliciesResponse"},
"errors":[
{"shape":"AccessDeniedException"},
{"shape":"InternalServerError"},
{"shape":"InvalidParameterException"},
{"shape":"ResourceNotFoundException"},
{"shape":"ThrottlingException"},
{"shape":"ProvisionedThroughputExceededException"},
{"shape":"InvalidPaginationTokenException"}
]
},
"ListStreamProcessors":{
"name":"ListStreamProcessors",
"http":{
Expand Down Expand Up @@ -747,6 +803,28 @@
{"shape":"ProvisionedThroughputExceededException"}
]
},
"PutProjectPolicy":{
"name":"PutProjectPolicy",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"PutProjectPolicyRequest"},
"output":{"shape":"PutProjectPolicyResponse"},
"errors":[
{"shape":"AccessDeniedException"},
{"shape":"InternalServerError"},
{"shape":"InvalidParameterException"},
{"shape":"InvalidPolicyRevisionIdException"},
{"shape":"MalformedPolicyDocumentException"},
{"shape":"ResourceNotFoundException"},
{"shape":"ResourceAlreadyExistsException"},
{"shape":"ThrottlingException"},
{"shape":"ServiceQuotaExceededException"},
{"shape":"ProvisionedThroughputExceededException"},
{"shape":"LimitExceededException"}
]
},
"RecognizeCelebrities":{
"name":"RecognizeCelebrities",
"http":{
Expand Down Expand Up @@ -1387,6 +1465,31 @@
"TIMESTAMP"
]
},
"CopyProjectVersionRequest":{
"type":"structure",
"required":[
"SourceProjectArn",
"SourceProjectVersionArn",
"DestinationProjectArn",
"VersionName",
"OutputConfig"
],
"members":{
"SourceProjectArn":{"shape":"ProjectArn"},
"SourceProjectVersionArn":{"shape":"ProjectVersionArn"},
"DestinationProjectArn":{"shape":"ProjectArn"},
"VersionName":{"shape":"VersionName"},
"OutputConfig":{"shape":"OutputConfig"},
"Tags":{"shape":"TagMap"},
"KmsKeyId":{"shape":"KmsKeyId"}
}
},
"CopyProjectVersionResponse":{
"type":"structure",
"members":{
"ProjectVersionArn":{"shape":"ProjectVersionArn"}
}
},
"CoversBodyPart":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -1674,6 +1777,23 @@
"DeletedFaces":{"shape":"FaceIdList"}
}
},
"DeleteProjectPolicyRequest":{
"type":"structure",
"required":[
"ProjectArn",
"PolicyName"
],
"members":{
"ProjectArn":{"shape":"ProjectArn"},
"PolicyName":{"shape":"ProjectPolicyName"},
"PolicyRevisionId":{"shape":"ProjectPolicyRevisionId"}
}
},
"DeleteProjectPolicyResponse":{
"type":"structure",
"members":{
}
},
"DeleteProjectRequest":{
"type":"structure",
"required":["ProjectArn"],
Expand Down Expand Up @@ -2490,6 +2610,12 @@
},
"exception":true
},
"InvalidPolicyRevisionIdException":{
"type":"structure",
"members":{
},
"exception":true
},
"InvalidS3ObjectException":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -2725,6 +2851,27 @@
"FaceModelVersion":{"shape":"String"}
}
},
"ListProjectPoliciesPageSize":{
"type":"integer",
"max":5,
"min":1
},
"ListProjectPoliciesRequest":{
"type":"structure",
"required":["ProjectArn"],
"members":{
"ProjectArn":{"shape":"ProjectArn"},
"NextToken":{"shape":"ExtendedPaginationToken"},
"MaxResults":{"shape":"ListProjectPoliciesPageSize"}
}
},
"ListProjectPoliciesResponse":{
"type":"structure",
"members":{
"ProjectPolicies":{"shape":"ProjectPolicies"},
"NextToken":{"shape":"ExtendedPaginationToken"}
}
},
"ListStreamProcessorsRequest":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -2752,6 +2899,12 @@
"Tags":{"shape":"TagMap"}
}
},
"MalformedPolicyDocumentException":{
"type":"structure",
"members":{
},
"exception":true
},
"MaxDurationInSecondsULong":{
"type":"long",
"max":120,
Expand Down Expand Up @@ -2946,6 +3099,38 @@
"max":10,
"min":1
},
"ProjectPolicies":{
"type":"list",
"member":{"shape":"ProjectPolicy"}
},
"ProjectPolicy":{
"type":"structure",
"members":{
"ProjectArn":{"shape":"ProjectArn"},
"PolicyName":{"shape":"ProjectPolicyName"},
"PolicyRevisionId":{"shape":"ProjectPolicyRevisionId"},
"PolicyDocument":{"shape":"ProjectPolicyDocument"},
"CreationTimestamp":{"shape":"DateTime"},
"LastUpdatedTimestamp":{"shape":"DateTime"}
}
},
"ProjectPolicyDocument":{
"type":"string",
"max":2000,
"min":1,
"pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u00FF]+"
},
"ProjectPolicyName":{
"type":"string",
"max":128,
"min":1,
"pattern":"[a-zA-Z0-9_.\\-]+"
},
"ProjectPolicyRevisionId":{
"type":"string",
"max":64,
"pattern":"[0-9A-Fa-f]+"
},
"ProjectStatus":{
"type":"string",
"enum":[
Expand Down Expand Up @@ -2976,7 +3161,8 @@
"EvaluationResult":{"shape":"EvaluationResult"},
"ManifestSummary":{"shape":"GroundTruthManifest"},
"KmsKeyId":{"shape":"KmsKeyId"},
"MaxInferenceUnits":{"shape":"InferenceUnits"}
"MaxInferenceUnits":{"shape":"InferenceUnits"},
"SourceProjectVersionArn":{"shape":"ProjectVersionArn"}
}
},
"ProjectVersionDescriptions":{
Expand All @@ -2994,7 +3180,10 @@
"FAILED",
"STOPPING",
"STOPPED",
"DELETING"
"DELETING",
"COPYING_IN_PROGRESS",
"COPYING_COMPLETED",
"COPYING_FAILED"
]
},
"ProjectVersionsPageSize":{
Expand Down Expand Up @@ -3069,6 +3258,26 @@
},
"exception":true
},
"PutProjectPolicyRequest":{
"type":"structure",
"required":[
"ProjectArn",
"PolicyName",
"PolicyDocument"
],
"members":{
"ProjectArn":{"shape":"ProjectArn"},
"PolicyName":{"shape":"ProjectPolicyName"},
"PolicyRevisionId":{"shape":"ProjectPolicyRevisionId"},
"PolicyDocument":{"shape":"ProjectPolicyDocument"}
}
},
"PutProjectPolicyResponse":{
"type":"structure",
"members":{
"PolicyRevisionId":{"shape":"ProjectPolicyRevisionId"}
}
},
"QualityFilter":{
"type":"string",
"enum":[
Expand Down
121 changes: 117 additions & 4 deletions models/apis/rekognition/2016-06-27/docs-2.json

Large diffs are not rendered by default.