diff --git a/generator/ServiceModels/bedrock-agent-runtime/bedrock-agent-runtime-2023-07-26.api.json b/generator/ServiceModels/bedrock-agent-runtime/bedrock-agent-runtime-2023-07-26.api.json index c58c1414ff8e..821152e72abb 100644 --- a/generator/ServiceModels/bedrock-agent-runtime/bedrock-agent-runtime-2023-07-26.api.json +++ b/generator/ServiceModels/bedrock-agent-runtime/bedrock-agent-runtime-2023-07-26.api.json @@ -5,11 +5,13 @@ "endpointPrefix":"bedrock-agent-runtime", "jsonVersion":"1.1", "protocol":"rest-json", + "protocols":["rest-json"], "serviceFullName":"Agents for Amazon Bedrock Runtime", "serviceId":"Bedrock Agent Runtime", "signatureVersion":"v4", "signingName":"bedrock", - "uid":"bedrock-agent-runtime-2023-07-26" + "uid":"bedrock-agent-runtime-2023-07-26", + "auth":["aws.auth#sigv4"] }, "operations":{ "DeleteAgentMemory":{ @@ -1722,7 +1724,6 @@ "RetrievalFilterList":{ "type":"list", "member":{"shape":"RetrievalFilter"}, - "max":5, "min":2 }, "RetrievalResultConfluenceLocation":{ diff --git a/generator/ServiceModels/bedrock-agent-runtime/bedrock-agent-runtime-2023-07-26.docs.json b/generator/ServiceModels/bedrock-agent-runtime/bedrock-agent-runtime-2023-07-26.docs.json index 18328ce82fc4..7bd9b8b960f4 100644 --- a/generator/ServiceModels/bedrock-agent-runtime/bedrock-agent-runtime-2023-07-26.docs.json +++ b/generator/ServiceModels/bedrock-agent-runtime/bedrock-agent-runtime-2023-07-26.docs.json @@ -168,7 +168,7 @@ "base": null, "refs": { "ByteContentDoc$data": "

The byte value of the file to upload, encoded as a Base-64 string.

", - "ByteContentFile$data": "

The byte value of the file to attach, encoded as Base-64 string. The maximum size of all files that is attached is 10MB. You can attach a maximum of 5 files.

" + "ByteContentFile$data": "

The raw bytes of the file to attach. The maximum size of all files that is attached is 10MB. You can attach a maximum of 5 files.

" } }, "ByteContentDoc": { diff --git a/generator/ServiceModels/bedrock-agent-runtime/bedrock-agent-runtime-2023-07-26.normal.json b/generator/ServiceModels/bedrock-agent-runtime/bedrock-agent-runtime-2023-07-26.normal.json index 7dd578eb4382..0108a86c9632 100644 --- a/generator/ServiceModels/bedrock-agent-runtime/bedrock-agent-runtime-2023-07-26.normal.json +++ b/generator/ServiceModels/bedrock-agent-runtime/bedrock-agent-runtime-2023-07-26.normal.json @@ -5,11 +5,13 @@ "endpointPrefix":"bedrock-agent-runtime", "jsonVersion":"1.1", "protocol":"rest-json", + "protocols":["rest-json"], "serviceFullName":"Agents for Amazon Bedrock Runtime", "serviceId":"Bedrock Agent Runtime", "signatureVersion":"v4", "signingName":"bedrock", - "uid":"bedrock-agent-runtime-2023-07-26" + "uid":"bedrock-agent-runtime-2023-07-26", + "auth":["aws.auth#sigv4"] }, "operations":{ "DeleteAgentMemory":{ @@ -436,7 +438,7 @@ "members":{ "data":{ "shape":"ByteContentBlob", - "documentation":"

The byte value of the file to attach, encoded as Base-64 string. The maximum size of all files that is attached is 10MB. You can attach a maximum of 5 files.

" + "documentation":"

The raw bytes of the file to attach. The maximum size of all files that is attached is 10MB. You can attach a maximum of 5 files.

" }, "mediaType":{ "shape":"MimeType", @@ -2628,7 +2630,6 @@ "RetrievalFilterList":{ "type":"list", "member":{"shape":"RetrievalFilter"}, - "max":5, "min":2 }, "RetrievalResultConfluenceLocation":{ diff --git a/sdk/src/Services/BedrockAgentRuntime/Generated/Model/ByteContentFile.cs b/sdk/src/Services/BedrockAgentRuntime/Generated/Model/ByteContentFile.cs index 23a1351c3727..574792e52c8d 100644 --- a/sdk/src/Services/BedrockAgentRuntime/Generated/Model/ByteContentFile.cs +++ b/sdk/src/Services/BedrockAgentRuntime/Generated/Model/ByteContentFile.cs @@ -40,8 +40,8 @@ public partial class ByteContentFile /// /// Gets and sets the property Data. /// - /// The byte value of the file to attach, encoded as Base-64 string. The maximum size - /// of all files that is attached is 10MB. You can attach a maximum of 5 files. + /// The raw bytes of the file to attach. The maximum size of all files that is attached + /// is 10MB. You can attach a maximum of 5 files. /// /// [AWSProperty(Required=true, Sensitive=true, Min=1, Max=10485760)] diff --git a/sdk/src/Services/BedrockAgentRuntime/Generated/Model/RetrievalFilter.cs b/sdk/src/Services/BedrockAgentRuntime/Generated/Model/RetrievalFilter.cs index 7468b1b68cb5..440c9bdbd9d2 100644 --- a/sdk/src/Services/BedrockAgentRuntime/Generated/Model/RetrievalFilter.cs +++ b/sdk/src/Services/BedrockAgentRuntime/Generated/Model/RetrievalFilter.cs @@ -73,7 +73,7 @@ public partial class RetrievalFilter /// the filter conditions inside this list. /// /// - [AWSProperty(Min=2, Max=5)] + [AWSProperty(Min=2)] public List AndAll { get { return this._andAll; } @@ -352,7 +352,7 @@ internal bool IsSetNotIn() /// one of the filter conditions inside this list. /// /// - [AWSProperty(Min=2, Max=5)] + [AWSProperty(Min=2)] public List OrAll { get { return this._orAll; }