Skip to content

Commit

Permalink
Updated API models and rebuilt service gems.
Browse files Browse the repository at this point in the history
  • Loading branch information
aws-sdk-ruby-automation committed May 15, 2024
1 parent 13cbf33 commit e65b4a5
Show file tree
Hide file tree
Showing 62 changed files with 2,575 additions and 215 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,6 @@ RubyGems.org page under "LINKS" section.
| Access Analyzer | Aws::AccessAnalyzer | aws-sdk-accessanalyzer | 2019-11-01 |
| Agents for Amazon Bedrock | Aws::BedrockAgent | aws-sdk-bedrockagent | 2023-06-05 |
| Agents for Amazon Bedrock Runtime | Aws::BedrockAgentRuntime | aws-sdk-bedrockagentruntime | 2023-07-26 |
| Alexa For Business | Aws::AlexaForBusiness | aws-sdk-alexaforbusiness | 2017-11-09 |
| Amazon API Gateway | Aws::APIGateway | aws-sdk-apigateway | 2015-07-09 |
| Amazon AppConfig | Aws::AppConfig | aws-sdk-appconfig | 2019-10-09 |
| Amazon AppIntegrations Service | Aws::AppIntegrationsService | aws-sdk-appintegrationsservice | 2020-07-29 |
Expand Down Expand Up @@ -573,7 +572,6 @@ RubyGems.org page under "LINKS" section.
| Amazon Glacier | Aws::Glacier | aws-sdk-glacier | 2012-06-01 |
| Amazon GuardDuty | Aws::GuardDuty | aws-sdk-guardduty | 2017-11-28 |
| Amazon HealthLake | Aws::HealthLake | aws-sdk-healthlake | 2017-07-01 |
| Amazon Honeycode | Aws::Honeycode | aws-sdk-honeycode | 2020-03-01 |
| Amazon Import/Export Snowball | Aws::Snowball | aws-sdk-snowball | 2016-06-30 |
| Amazon Inspector | Aws::Inspector | aws-sdk-inspector | 2016-02-16 |
| Amazon Interactive Video Service | Aws::IVS | aws-sdk-ivs | 2020-07-14 |
Expand Down
4 changes: 3 additions & 1 deletion apis/bedrock-agent-runtime/2023-07-26/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -957,10 +957,12 @@
"in":{"shape":"FilterAttribute"},
"lessThan":{"shape":"FilterAttribute"},
"lessThanOrEquals":{"shape":"FilterAttribute"},
"listContains":{"shape":"FilterAttribute"},
"notEquals":{"shape":"FilterAttribute"},
"notIn":{"shape":"FilterAttribute"},
"orAll":{"shape":"RetrievalFilterList"},
"startsWith":{"shape":"FilterAttribute"}
"startsWith":{"shape":"FilterAttribute"},
"stringContains":{"shape":"FilterAttribute"}
},
"sensitive":true,
"union":true
Expand Down
26 changes: 14 additions & 12 deletions apis/bedrock-agent-runtime/2023-07-26/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -260,15 +260,17 @@
"FilterAttribute": {
"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>",
"refs": {
"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>",
"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>",
"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>",
"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>",
"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>",
"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>",
"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>",
"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>",
"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>"
"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>",
"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>",
"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>",
"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>",
"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>",
"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>",
"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>",
"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>",
"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>",
"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>",
"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>"
}
},
"FilterKey": {
Expand Down Expand Up @@ -755,7 +757,7 @@
}
},
"RetrievalFilter": {
"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>",
"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>",
"refs": {
"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>",
"RetrievalFilterList$member": null
Expand All @@ -764,8 +766,8 @@
"RetrievalFilterList": {
"base": null,
"refs": {
"RetrievalFilter$andAll": "<p>Knowledge base data sources whose metadata attributes fulfill all the filter conditions inside this list are returned.</p>",
"RetrievalFilter$orAll": "<p>Knowledge base data sources whose metadata attributes fulfill at least one of the filter conditions inside this list are returned.</p>"
"RetrievalFilter$andAll": "<p>Knowledge base data sources are returned if their metadata attributes fulfill all the filter conditions inside this list.</p>",
"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>"
}
},
"RetrievalResultContent": {
Expand Down
14 changes: 11 additions & 3 deletions apis/codebuild/2016-10-06/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"endpointPrefix":"codebuild",
"jsonVersion":"1.1",
"protocol":"json",
"protocols":["json"],
"serviceFullName":"AWS CodeBuild",
"serviceId":"CodeBuild",
"signatureVersion":"v4",
Expand Down Expand Up @@ -1121,6 +1122,8 @@
"computeType":{"shape":"ComputeType"},
"scalingConfiguration":{"shape":"ScalingConfigurationInput"},
"overflowBehavior":{"shape":"FleetOverflowBehavior"},
"vpcConfig":{"shape":"VpcConfig"},
"fleetServiceRole":{"shape":"NonEmptyString"},
"tags":{"shape":"TagList"}
}
},
Expand Down Expand Up @@ -1461,6 +1464,8 @@
"computeType":{"shape":"ComputeType"},
"scalingConfiguration":{"shape":"ScalingConfigurationOutput"},
"overflowBehavior":{"shape":"FleetOverflowBehavior"},
"vpcConfig":{"shape":"VpcConfig"},
"fleetServiceRole":{"shape":"NonEmptyString"},
"tags":{"shape":"TagList"}
}
},
Expand All @@ -1478,7 +1483,8 @@
"type":"string",
"enum":[
"CREATE_FAILED",
"UPDATE_FAILED"
"UPDATE_FAILED",
"ACTION_REQUIRED"
]
},
"FleetName":{
Expand Down Expand Up @@ -2074,9 +2080,9 @@
},
"ProjectName":{
"type":"string",
"max":255,
"max":150,
"min":2,
"pattern":"[A-Za-z0-9][A-Za-z0-9\\-_]{1,254}"
"pattern":"[A-Za-z0-9][A-Za-z0-9\\-_]{1,149}"
},
"ProjectNames":{
"type":"list",
Expand Down Expand Up @@ -2716,6 +2722,8 @@
"computeType":{"shape":"ComputeType"},
"scalingConfiguration":{"shape":"ScalingConfigurationInput"},
"overflowBehavior":{"shape":"FleetOverflowBehavior"},
"vpcConfig":{"shape":"VpcConfig"},
"fleetServiceRole":{"shape":"NonEmptyString"},
"tags":{"shape":"TagList"}
}
},
Expand Down

0 comments on commit e65b4a5

Please sign in to comment.