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.51.25 #5232

Merged
merged 1 commit into from
Apr 19, 2024
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
Release v1.51.25 (2024-04-19)
===

### Service Client Updates
* `service/glue`: Updates service API and documentation
* Adding RowFilter in the response for GetUnfilteredTableMetadata API
* `service/internetmonitor`: Updates service API, documentation, and paginators
* `service/personalize`: Updates service API and documentation

Release v1.51.24 (2024-04-18)
===

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.51.24"
const SDKVersion = "1.51.25"
3 changes: 2 additions & 1 deletion models/apis/glue/2017-03-31/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -8447,7 +8447,8 @@
"IsMultiDialectView":{"shape":"Boolean"},
"ResourceArn":{"shape":"ArnString"},
"IsProtected":{"shape":"Boolean"},
"Permissions":{"shape":"PermissionList"}
"Permissions":{"shape":"PermissionList"},
"RowFilter":{"shape":"PredicateString"}
}
},
"GetUserDefinedFunctionRequest":{
Expand Down
3 changes: 2 additions & 1 deletion models/apis/glue/2017-03-31/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -6852,7 +6852,8 @@
"refs": {
"ColumnRowFilter$RowFilterExpression": "<p>A string containing the row-level filter expression.</p>",
"GetPartitionsRequest$Expression": "<p>An expression that filters the partitions to be returned.</p> <p>The expression uses SQL syntax similar to the SQL <code>WHERE</code> filter clause. The SQL statement parser <a href=\"http://jsqlparser.sourceforge.net/home.php\">JSQLParser</a> parses the expression. </p> <p> <i>Operators</i>: The following are the operators that you can use in the <code>Expression</code> API call:</p> <dl> <dt>=</dt> <dd> <p>Checks whether the values of the two operands are equal; if yes, then the condition becomes true.</p> <p>Example: Assume 'variable a' holds 10 and 'variable b' holds 20. </p> <p>(a = b) is not true.</p> </dd> <dt>&lt; &gt;</dt> <dd> <p>Checks whether the values of two operands are equal; if the values are not equal, then the condition becomes true.</p> <p>Example: (a &lt; &gt; b) is true.</p> </dd> <dt>&gt;</dt> <dd> <p>Checks whether the value of the left operand is greater than the value of the right operand; if yes, then the condition becomes true.</p> <p>Example: (a &gt; b) is not true.</p> </dd> <dt>&lt;</dt> <dd> <p>Checks whether the value of the left operand is less than the value of the right operand; if yes, then the condition becomes true.</p> <p>Example: (a &lt; b) is true.</p> </dd> <dt>&gt;=</dt> <dd> <p>Checks whether the value of the left operand is greater than or equal to the value of the right operand; if yes, then the condition becomes true.</p> <p>Example: (a &gt;= b) is not true.</p> </dd> <dt>&lt;=</dt> <dd> <p>Checks whether the value of the left operand is less than or equal to the value of the right operand; if yes, then the condition becomes true.</p> <p>Example: (a &lt;= b) is true.</p> </dd> <dt>AND, OR, IN, BETWEEN, LIKE, NOT, IS NULL</dt> <dd> <p>Logical operators.</p> </dd> </dl> <p> <i>Supported Partition Key Types</i>: The following are the supported partition keys.</p> <ul> <li> <p> <code>string</code> </p> </li> <li> <p> <code>date</code> </p> </li> <li> <p> <code>timestamp</code> </p> </li> <li> <p> <code>int</code> </p> </li> <li> <p> <code>bigint</code> </p> </li> <li> <p> <code>long</code> </p> </li> <li> <p> <code>tinyint</code> </p> </li> <li> <p> <code>smallint</code> </p> </li> <li> <p> <code>decimal</code> </p> </li> </ul> <p>If an type is encountered that is not valid, an exception is thrown. </p> <p>The following list shows the valid operators on each type. When you define a crawler, the <code>partitionKey</code> type is created as a <code>STRING</code>, to be compatible with the catalog partitions. </p> <p> <i>Sample API Call</i>: </p>",
"GetUnfilteredPartitionsMetadataRequest$Expression": "<p>An expression that filters the partitions to be returned.</p> <p>The expression uses SQL syntax similar to the SQL <code>WHERE</code> filter clause. The SQL statement parser <a href=\"http://jsqlparser.sourceforge.net/home.php\">JSQLParser</a> parses the expression. </p> <p> <i>Operators</i>: The following are the operators that you can use in the <code>Expression</code> API call:</p> <dl> <dt>=</dt> <dd> <p>Checks whether the values of the two operands are equal; if yes, then the condition becomes true.</p> <p>Example: Assume 'variable a' holds 10 and 'variable b' holds 20. </p> <p>(a = b) is not true.</p> </dd> <dt>&lt; &gt;</dt> <dd> <p>Checks whether the values of two operands are equal; if the values are not equal, then the condition becomes true.</p> <p>Example: (a &lt; &gt; b) is true.</p> </dd> <dt>&gt;</dt> <dd> <p>Checks whether the value of the left operand is greater than the value of the right operand; if yes, then the condition becomes true.</p> <p>Example: (a &gt; b) is not true.</p> </dd> <dt>&lt;</dt> <dd> <p>Checks whether the value of the left operand is less than the value of the right operand; if yes, then the condition becomes true.</p> <p>Example: (a &lt; b) is true.</p> </dd> <dt>&gt;=</dt> <dd> <p>Checks whether the value of the left operand is greater than or equal to the value of the right operand; if yes, then the condition becomes true.</p> <p>Example: (a &gt;= b) is not true.</p> </dd> <dt>&lt;=</dt> <dd> <p>Checks whether the value of the left operand is less than or equal to the value of the right operand; if yes, then the condition becomes true.</p> <p>Example: (a &lt;= b) is true.</p> </dd> <dt>AND, OR, IN, BETWEEN, LIKE, NOT, IS NULL</dt> <dd> <p>Logical operators.</p> </dd> </dl> <p> <i>Supported Partition Key Types</i>: The following are the supported partition keys.</p> <ul> <li> <p> <code>string</code> </p> </li> <li> <p> <code>date</code> </p> </li> <li> <p> <code>timestamp</code> </p> </li> <li> <p> <code>int</code> </p> </li> <li> <p> <code>bigint</code> </p> </li> <li> <p> <code>long</code> </p> </li> <li> <p> <code>tinyint</code> </p> </li> <li> <p> <code>smallint</code> </p> </li> <li> <p> <code>decimal</code> </p> </li> </ul> <p>If an type is encountered that is not valid, an exception is thrown. </p>"
"GetUnfilteredPartitionsMetadataRequest$Expression": "<p>An expression that filters the partitions to be returned.</p> <p>The expression uses SQL syntax similar to the SQL <code>WHERE</code> filter clause. The SQL statement parser <a href=\"http://jsqlparser.sourceforge.net/home.php\">JSQLParser</a> parses the expression. </p> <p> <i>Operators</i>: The following are the operators that you can use in the <code>Expression</code> API call:</p> <dl> <dt>=</dt> <dd> <p>Checks whether the values of the two operands are equal; if yes, then the condition becomes true.</p> <p>Example: Assume 'variable a' holds 10 and 'variable b' holds 20. </p> <p>(a = b) is not true.</p> </dd> <dt>&lt; &gt;</dt> <dd> <p>Checks whether the values of two operands are equal; if the values are not equal, then the condition becomes true.</p> <p>Example: (a &lt; &gt; b) is true.</p> </dd> <dt>&gt;</dt> <dd> <p>Checks whether the value of the left operand is greater than the value of the right operand; if yes, then the condition becomes true.</p> <p>Example: (a &gt; b) is not true.</p> </dd> <dt>&lt;</dt> <dd> <p>Checks whether the value of the left operand is less than the value of the right operand; if yes, then the condition becomes true.</p> <p>Example: (a &lt; b) is true.</p> </dd> <dt>&gt;=</dt> <dd> <p>Checks whether the value of the left operand is greater than or equal to the value of the right operand; if yes, then the condition becomes true.</p> <p>Example: (a &gt;= b) is not true.</p> </dd> <dt>&lt;=</dt> <dd> <p>Checks whether the value of the left operand is less than or equal to the value of the right operand; if yes, then the condition becomes true.</p> <p>Example: (a &lt;= b) is true.</p> </dd> <dt>AND, OR, IN, BETWEEN, LIKE, NOT, IS NULL</dt> <dd> <p>Logical operators.</p> </dd> </dl> <p> <i>Supported Partition Key Types</i>: The following are the supported partition keys.</p> <ul> <li> <p> <code>string</code> </p> </li> <li> <p> <code>date</code> </p> </li> <li> <p> <code>timestamp</code> </p> </li> <li> <p> <code>int</code> </p> </li> <li> <p> <code>bigint</code> </p> </li> <li> <p> <code>long</code> </p> </li> <li> <p> <code>tinyint</code> </p> </li> <li> <p> <code>smallint</code> </p> </li> <li> <p> <code>decimal</code> </p> </li> </ul> <p>If an type is encountered that is not valid, an exception is thrown. </p>",
"GetUnfilteredTableMetadataResponse$RowFilter": "<p>The filter that applies to the table. For example when applying the filter in SQL, it would go in the <code>WHERE</code> clause and can be evaluated by using an <code>AND</code> operator with any other predicates applied by the user querying the table.</p>"
}
},
"PrincipalPermissions": {
Expand Down
177 changes: 177 additions & 0 deletions models/apis/internetmonitor/2021-06-03/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,22 @@
{"shape":"ValidationException"}
]
},
"GetInternetEvent":{
"name":"GetInternetEvent",
"http":{
"method":"GET",
"requestUri":"/v20210603/InternetEvents/{EventId}",
"responseCode":200
},
"input":{"shape":"GetInternetEventInput"},
"output":{"shape":"GetInternetEventOutput"},
"errors":[
{"shape":"InternalServerException"},
{"shape":"AccessDeniedException"},
{"shape":"ThrottlingException"},
{"shape":"ValidationException"}
]
},
"GetMonitor":{
"name":"GetMonitor",
"http":{
Expand Down Expand Up @@ -130,6 +146,22 @@
{"shape":"ValidationException"}
]
},
"ListInternetEvents":{
"name":"ListInternetEvents",
"http":{
"method":"GET",
"requestUri":"/v20210603/InternetEvents",
"responseCode":200
},
"input":{"shape":"ListInternetEventsInput"},
"output":{"shape":"ListInternetEventsOutput"},
"errors":[
{"shape":"InternalServerException"},
{"shape":"AccessDeniedException"},
{"shape":"ThrottlingException"},
{"shape":"ValidationException"}
]
},
"ListMonitors":{
"name":"ListMonitors",
"http":{
Expand Down Expand Up @@ -299,6 +331,27 @@
"type":"boolean",
"box":true
},
"ClientLocation":{
"type":"structure",
"required":[
"ASName",
"ASNumber",
"Country",
"City",
"Latitude",
"Longitude"
],
"members":{
"ASName":{"shape":"String"},
"ASNumber":{"shape":"Long"},
"Country":{"shape":"String"},
"Subdivision":{"shape":"String"},
"Metro":{"shape":"String"},
"City":{"shape":"String"},
"Latitude":{"shape":"Double"},
"Longitude":{"shape":"Double"}
}
},
"ConflictException":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -423,6 +476,37 @@
"HealthScoreThreshold":{"shape":"Percentage"}
}
},
"GetInternetEventInput":{
"type":"structure",
"required":["EventId"],
"members":{
"EventId":{
"shape":"InternetEventId",
"location":"uri",
"locationName":"EventId"
}
}
},
"GetInternetEventOutput":{
"type":"structure",
"required":[
"EventId",
"EventArn",
"StartedAt",
"ClientLocation",
"EventType",
"EventStatus"
],
"members":{
"EventId":{"shape":"InternetEventId"},
"EventArn":{"shape":"Arn"},
"StartedAt":{"shape":"SyntheticTimestamp_date_time"},
"EndedAt":{"shape":"SyntheticTimestamp_date_time"},
"ClientLocation":{"shape":"ClientLocation"},
"EventType":{"shape":"InternetEventType"},
"EventStatus":{"shape":"InternetEventStatus"}
}
},
"GetMonitorInput":{
"type":"structure",
"required":["MonitorName"],
Expand Down Expand Up @@ -642,6 +726,56 @@
"fault":true,
"retryable":{"throttling":false}
},
"InternetEventId":{
"type":"string",
"max":255,
"min":1,
"pattern":"[a-zA-Z0-9-]+"
},
"InternetEventMaxResults":{
"type":"integer",
"box":true,
"max":100,
"min":1
},
"InternetEventStatus":{
"type":"string",
"enum":[
"ACTIVE",
"RESOLVED"
]
},
"InternetEventSummary":{
"type":"structure",
"required":[
"EventId",
"EventArn",
"StartedAt",
"ClientLocation",
"EventType",
"EventStatus"
],
"members":{
"EventId":{"shape":"InternetEventId"},
"EventArn":{"shape":"Arn"},
"StartedAt":{"shape":"SyntheticTimestamp_date_time"},
"EndedAt":{"shape":"SyntheticTimestamp_date_time"},
"ClientLocation":{"shape":"ClientLocation"},
"EventType":{"shape":"InternetEventType"},
"EventStatus":{"shape":"InternetEventStatus"}
}
},
"InternetEventType":{
"type":"string",
"enum":[
"AVAILABILITY",
"PERFORMANCE"
]
},
"InternetEventsList":{
"type":"list",
"member":{"shape":"InternetEventSummary"}
},
"InternetHealth":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -719,6 +853,49 @@
"NextToken":{"shape":"String"}
}
},
"ListInternetEventsInput":{
"type":"structure",
"members":{
"NextToken":{
"shape":"String",
"location":"querystring",
"locationName":"NextToken"
},
"MaxResults":{
"shape":"InternetEventMaxResults",
"location":"querystring",
"locationName":"InternetEventMaxResults"
},
"StartTime":{
"shape":"SyntheticTimestamp_date_time",
"location":"querystring",
"locationName":"StartTime"
},
"EndTime":{
"shape":"SyntheticTimestamp_date_time",
"location":"querystring",
"locationName":"EndTime"
},
"EventStatus":{
"shape":"String",
"location":"querystring",
"locationName":"EventStatus"
},
"EventType":{
"shape":"String",
"location":"querystring",
"locationName":"EventType"
}
}
},
"ListInternetEventsOutput":{
"type":"structure",
"required":["InternetEvents"],
"members":{
"InternetEvents":{"shape":"InternetEventsList"},
"NextToken":{"shape":"String"}
}
},
"ListMonitorsInput":{
"type":"structure",
"members":{
Expand Down
Loading
Loading