Skip to content

Commit e65b4a5

Browse files
Updated API models and rebuilt service gems.
1 parent 13cbf33 commit e65b4a5

File tree

62 files changed

+2575
-215
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+2575
-215
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,6 @@ RubyGems.org page under "LINKS" section.
496496
| Access Analyzer | Aws::AccessAnalyzer | aws-sdk-accessanalyzer | 2019-11-01 |
497497
| Agents for Amazon Bedrock | Aws::BedrockAgent | aws-sdk-bedrockagent | 2023-06-05 |
498498
| Agents for Amazon Bedrock Runtime | Aws::BedrockAgentRuntime | aws-sdk-bedrockagentruntime | 2023-07-26 |
499-
| Alexa For Business | Aws::AlexaForBusiness | aws-sdk-alexaforbusiness | 2017-11-09 |
500499
| Amazon API Gateway | Aws::APIGateway | aws-sdk-apigateway | 2015-07-09 |
501500
| Amazon AppConfig | Aws::AppConfig | aws-sdk-appconfig | 2019-10-09 |
502501
| Amazon AppIntegrations Service | Aws::AppIntegrationsService | aws-sdk-appintegrationsservice | 2020-07-29 |
@@ -573,7 +572,6 @@ RubyGems.org page under "LINKS" section.
573572
| Amazon Glacier | Aws::Glacier | aws-sdk-glacier | 2012-06-01 |
574573
| Amazon GuardDuty | Aws::GuardDuty | aws-sdk-guardduty | 2017-11-28 |
575574
| Amazon HealthLake | Aws::HealthLake | aws-sdk-healthlake | 2017-07-01 |
576-
| Amazon Honeycode | Aws::Honeycode | aws-sdk-honeycode | 2020-03-01 |
577575
| Amazon Import/Export Snowball | Aws::Snowball | aws-sdk-snowball | 2016-06-30 |
578576
| Amazon Inspector | Aws::Inspector | aws-sdk-inspector | 2016-02-16 |
579577
| Amazon Interactive Video Service | Aws::IVS | aws-sdk-ivs | 2020-07-14 |

apis/bedrock-agent-runtime/2023-07-26/api-2.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -957,10 +957,12 @@
957957
"in":{"shape":"FilterAttribute"},
958958
"lessThan":{"shape":"FilterAttribute"},
959959
"lessThanOrEquals":{"shape":"FilterAttribute"},
960+
"listContains":{"shape":"FilterAttribute"},
960961
"notEquals":{"shape":"FilterAttribute"},
961962
"notIn":{"shape":"FilterAttribute"},
962963
"orAll":{"shape":"RetrievalFilterList"},
963-
"startsWith":{"shape":"FilterAttribute"}
964+
"startsWith":{"shape":"FilterAttribute"},
965+
"stringContains":{"shape":"FilterAttribute"}
964966
},
965967
"sensitive":true,
966968
"union":true

apis/bedrock-agent-runtime/2023-07-26/docs-2.json

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -260,15 +260,17 @@
260260
"FilterAttribute": {
261261
"base": "<p>Specifies the name that the metadata attribute must match and the value to which to compare the value of the metadata attribute. For more information, see <a href=\"https://docs.aws.amazon.com/bedrock/latest/userguide/kb-test-config.html\">Query configurations</a>.</p> <p>This data type is used in the following API operations:</p> <ul> <li> <p> <a href=\"https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent-runtime_RetrieveAndGenerate.html#API_agent-runtime_RetrieveAndGenerate_RequestSyntax\">RetrieveAndGenerate request</a> </p> </li> </ul>",
262262
"refs": {
263-
"RetrievalFilter$equals": "<p>Knowledge base data sources that contain a metadata attribute whose name matches the <code>key</code> and whose value matches the <code>value</code> in this object are returned.</p>",
264-
"RetrievalFilter$greaterThan": "<p>Knowledge base data sources that contain a metadata attribute whose name matches the <code>key</code> and whose value is greater than the <code>value</code> in this object are returned.</p>",
265-
"RetrievalFilter$greaterThanOrEquals": "<p>Knowledge base data sources that contain a metadata attribute whose name matches the <code>key</code> and whose value is greater than or equal to the <code>value</code> in this object are returned.</p>",
266-
"RetrievalFilter$in": "<p>Knowledge base data sources that contain a metadata attribute whose name matches the <code>key</code> and whose value is in the list specified in the <code>value</code> in this object are returned.</p>",
267-
"RetrievalFilter$lessThan": "<p>Knowledge base data sources that contain a metadata attribute whose name matches the <code>key</code> and whose value is less than the <code>value</code> in this object are returned.</p>",
268-
"RetrievalFilter$lessThanOrEquals": "<p>Knowledge base data sources that contain a metadata attribute whose name matches the <code>key</code> and whose value is less than or equal to the <code>value</code> in this object are returned.</p>",
269-
"RetrievalFilter$notEquals": "<p>Knowledge base data sources that contain a metadata attribute whose name matches the <code>key</code> and whose value doesn't match the <code>value</code> in this object are returned.</p>",
270-
"RetrievalFilter$notIn": "<p>Knowledge base data sources that contain a metadata attribute whose name matches the <code>key</code> and whose value isn't in the list specified in the <code>value</code> in this object are returned.</p>",
271-
"RetrievalFilter$startsWith": "<p>Knowledge base data sources that contain a metadata attribute whose name matches the <code>key</code> and whose value starts with the <code>value</code> in this object are returned. This filter is currently only supported for Amazon OpenSearch Serverless vector stores.</p>"
263+
"RetrievalFilter$equals": "<p>Knowledge base data sources are returned if they contain a metadata attribute whose name matches the <code>key</code> and whose value matches the <code>value</code> in this object.</p> <p>The following example would return data sources with an <code>animal</code> attribute whose value is <code>cat</code>:</p> <p> <code>\"equals\": { \"key\": \"animal\", \"value\": \"cat\" }</code> </p>",
264+
"RetrievalFilter$greaterThan": "<p>Knowledge base data sources are returned if they contain a metadata attribute whose name matches the <code>key</code> and whose value is greater than the <code>value</code> in this object.</p> <p>The following example would return data sources with an <code>year</code> attribute whose value is greater than <code>1989</code>:</p> <p> <code>\"greaterThan\": { \"key\": \"year\", \"value\": 1989 }</code> </p>",
265+
"RetrievalFilter$greaterThanOrEquals": "<p>Knowledge base data sources are returned if they contain a metadata attribute whose name matches the <code>key</code> and whose value is greater than or equal to the <code>value</code> in this object.</p> <p>The following example would return data sources with an <code>year</code> attribute whose value is greater than or equal to <code>1989</code>:</p> <p> <code>\"greaterThanOrEquals\": { \"key\": \"year\", \"value\": 1989 }</code> </p>",
266+
"RetrievalFilter$in": "<p>Knowledge base data sources are returned if they contain a metadata attribute whose name matches the <code>key</code> and whose value is in the list specified in the <code>value</code> in this object.</p> <p>The following example would return data sources with an <code>animal</code> attribute that is either <code>cat</code> or <code>dog</code>:</p> <p> <code>\"in\": { \"key\": \"animal\", \"value\": [\"cat\", \"dog\"] }</code> </p>",
267+
"RetrievalFilter$lessThan": "<p>Knowledge base data sources are returned if they contain a metadata attribute whose name matches the <code>key</code> and whose value is less than the <code>value</code> in this object.</p> <p>The following example would return data sources with an <code>year</code> attribute whose value is less than to <code>1989</code>.</p> <p> <code>\"lessThan\": { \"key\": \"year\", \"value\": 1989 }</code> </p>",
268+
"RetrievalFilter$lessThanOrEquals": "<p>Knowledge base data sources are returned if they contain a metadata attribute whose name matches the <code>key</code> and whose value is less than or equal to the <code>value</code> in this object.</p> <p>The following example would return data sources with an <code>year</code> attribute whose value is less than or equal to <code>1989</code>.</p> <p> <code>\"lessThanOrEquals\": { \"key\": \"year\", \"value\": 1989 }</code> </p>",
269+
"RetrievalFilter$listContains": "<p>Knowledge base data sources are returned if they contain a metadata attribute whose name matches the <code>key</code> and whose value is a list that contains the <code>value</code> as one of its members.</p> <p>The following example would return data sources with an <code>animals</code> attribute that is a list containing a <code>cat</code> member (for example <code>[\"dog\", \"cat\"]</code>).</p> <p> <code>\"listContains\": { \"key\": \"animals\", \"value\": \"cat\" }</code> </p>",
270+
"RetrievalFilter$notEquals": "<p>Knowledge base data sources that contain a metadata attribute whose name matches the <code>key</code> and whose value doesn't match the <code>value</code> in this object are returned.</p> <p>The following example would return data sources that don't contain an <code>animal</code> attribute whose value is <code>cat</code>.</p> <p> <code>\"notEquals\": { \"key\": \"animal\", \"value\": \"cat\" }</code> </p>",
271+
"RetrievalFilter$notIn": "<p>Knowledge base data sources are returned if they contain a metadata attribute whose name matches the <code>key</code> and whose value isn't in the list specified in the <code>value</code> in this object.</p> <p>The following example would return data sources whose <code>animal</code> attribute is neither <code>cat</code> nor <code>dog</code>.</p> <p> <code>\"notIn\": { \"key\": \"animal\", \"value\": [\"cat\", \"dog\"] }</code> </p>",
272+
"RetrievalFilter$startsWith": "<p>Knowledge base data sources are returned if they contain a metadata attribute whose name matches the <code>key</code> and whose value starts with the <code>value</code> in this object. This filter is currently only supported for Amazon OpenSearch Serverless vector stores.</p> <p>The following example would return data sources with an <code>animal</code> attribute starts with <code>ca</code> (for example, <code>cat</code> or <code>camel</code>).</p> <p> <code>\"startsWith\": { \"key\": \"animal\", \"value\": \"ca\" }</code> </p>",
273+
"RetrievalFilter$stringContains": "<p>Knowledge base data sources are returned if they contain a metadata attribute whose name matches the <code>key</code> and whose value is one of the following:</p> <ul> <li> <p>A string that contains the <code>value</code> as a substring. The following example would return data sources with an <code>animal</code> attribute that contains the substring <code>at</code> (for example <code>cat</code>).</p> <p> <code>\"stringContains\": { \"key\": \"animal\", \"value\": \"at\" }</code> </p> </li> <li> <p>A list with a member that contains the <code>value</code> as a substring. The following example would return data sources with an <code>animals</code> attribute that is a list containing a member that contains the substring <code>at</code> (for example <code>[\"dog\", \"cat\"]</code>).</p> <p> <code>\"stringContains\": { \"key\": \"animals\", \"value\": \"at\" }</code> </p> </li> </ul>"
272274
}
273275
},
274276
"FilterKey": {
@@ -755,7 +757,7 @@
755757
}
756758
},
757759
"RetrievalFilter": {
758-
"base": "<p>Specifies the filters to use on the metadata attributes in the knowledge base data sources before returning results. For more information, see <a href=\"https://docs.aws.amazon.com/bedrock/latest/userguide/kb-test-config.html\">Query configurations</a>.</p> <p>This data type is used in the following API operations:</p> <ul> <li> <p> <a href=\"https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent-runtime_Retrieve.html#API_agent-runtime_Retrieve_RequestSyntax\">Retrieve request</a> – in the <code>filter</code> field</p> </li> <li> <p> <a href=\"https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent-runtime_RetrieveAndGenerate.html#API_agent-runtime_RetrieveAndGenerate_RequestSyntax\">RetrieveAndGenerate request</a> – in the <code>filter</code> field</p> </li> </ul>",
760+
"base": "<p>Specifies the filters to use on the metadata attributes in the knowledge base data sources before returning results. For more information, see <a href=\"https://docs.aws.amazon.com/bedrock/latest/userguide/kb-test-config.html\">Query configurations</a>. See the examples below to see how to use these filters.</p> <p>This data type is used in the following API operations:</p> <ul> <li> <p> <a href=\"https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent-runtime_Retrieve.html#API_agent-runtime_Retrieve_RequestSyntax\">Retrieve request</a> – in the <code>filter</code> field</p> </li> <li> <p> <a href=\"https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent-runtime_RetrieveAndGenerate.html#API_agent-runtime_RetrieveAndGenerate_RequestSyntax\">RetrieveAndGenerate request</a> – in the <code>filter</code> field</p> </li> </ul>",
759761
"refs": {
760762
"KnowledgeBaseVectorSearchConfiguration$filter": "<p>Specifies the filters to use on the metadata in the knowledge base data sources before returning results. For more information, see <a href=\"https://docs.aws.amazon.com/bedrock/latest/userguide/kb-test-config.html\">Query configurations</a>.</p>",
761763
"RetrievalFilterList$member": null
@@ -764,8 +766,8 @@
764766
"RetrievalFilterList": {
765767
"base": null,
766768
"refs": {
767-
"RetrievalFilter$andAll": "<p>Knowledge base data sources whose metadata attributes fulfill all the filter conditions inside this list are returned.</p>",
768-
"RetrievalFilter$orAll": "<p>Knowledge base data sources whose metadata attributes fulfill at least one of the filter conditions inside this list are returned.</p>"
769+
"RetrievalFilter$andAll": "<p>Knowledge base data sources are returned if their metadata attributes fulfill all the filter conditions inside this list.</p>",
770+
"RetrievalFilter$orAll": "<p>Knowledge base data sources are returned if their metadata attributes fulfill at least one of the filter conditions inside this list.</p>"
769771
}
770772
},
771773
"RetrievalResultContent": {

apis/codebuild/2016-10-06/api-2.json

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"endpointPrefix":"codebuild",
66
"jsonVersion":"1.1",
77
"protocol":"json",
8+
"protocols":["json"],
89
"serviceFullName":"AWS CodeBuild",
910
"serviceId":"CodeBuild",
1011
"signatureVersion":"v4",
@@ -1121,6 +1122,8 @@
11211122
"computeType":{"shape":"ComputeType"},
11221123
"scalingConfiguration":{"shape":"ScalingConfigurationInput"},
11231124
"overflowBehavior":{"shape":"FleetOverflowBehavior"},
1125+
"vpcConfig":{"shape":"VpcConfig"},
1126+
"fleetServiceRole":{"shape":"NonEmptyString"},
11241127
"tags":{"shape":"TagList"}
11251128
}
11261129
},
@@ -1461,6 +1464,8 @@
14611464
"computeType":{"shape":"ComputeType"},
14621465
"scalingConfiguration":{"shape":"ScalingConfigurationOutput"},
14631466
"overflowBehavior":{"shape":"FleetOverflowBehavior"},
1467+
"vpcConfig":{"shape":"VpcConfig"},
1468+
"fleetServiceRole":{"shape":"NonEmptyString"},
14641469
"tags":{"shape":"TagList"}
14651470
}
14661471
},
@@ -1478,7 +1483,8 @@
14781483
"type":"string",
14791484
"enum":[
14801485
"CREATE_FAILED",
1481-
"UPDATE_FAILED"
1486+
"UPDATE_FAILED",
1487+
"ACTION_REQUIRED"
14821488
]
14831489
},
14841490
"FleetName":{
@@ -2074,9 +2080,9 @@
20742080
},
20752081
"ProjectName":{
20762082
"type":"string",
2077-
"max":255,
2083+
"max":150,
20782084
"min":2,
2079-
"pattern":"[A-Za-z0-9][A-Za-z0-9\\-_]{1,254}"
2085+
"pattern":"[A-Za-z0-9][A-Za-z0-9\\-_]{1,149}"
20802086
},
20812087
"ProjectNames":{
20822088
"type":"list",
@@ -2716,6 +2722,8 @@
27162722
"computeType":{"shape":"ComputeType"},
27172723
"scalingConfiguration":{"shape":"ScalingConfigurationInput"},
27182724
"overflowBehavior":{"shape":"FleetOverflowBehavior"},
2725+
"vpcConfig":{"shape":"VpcConfig"},
2726+
"fleetServiceRole":{"shape":"NonEmptyString"},
27192727
"tags":{"shape":"TagList"}
27202728
}
27212729
},

0 commit comments

Comments
 (0)