Skip to content

Commit

Permalink
Regenerate Paws (#879)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions <[email protected]>
  • Loading branch information
github-actions[bot] and github-actions authored Jan 24, 2025
1 parent c25e459 commit c708359
Show file tree
Hide file tree
Showing 192 changed files with 22,651 additions and 13,682 deletions.
24 changes: 16 additions & 8 deletions cran/paws.analytics/R/glue_operations.R
Original file line number Diff line number Diff line change
Expand Up @@ -1423,13 +1423,18 @@ glue_create_integration_table_properties <- function(ResourceArn, TableName, Sou
#' pricing page](https://aws.amazon.com/glue/pricing/).
#' @param Timeout The job timeout in minutes. This is the maximum time that a job run can
#' consume resources before it is terminated and enters `TIMEOUT` status.
#' The default is 2,880 minutes (48 hours) for batch jobs.
#'
#' Streaming jobs must have timeout values less than 7 days or 10080
#' minutes. When the value is left blank, the job will be restarted after 7
#' days based if you have not setup a maintenance window. If you have setup
#' maintenance window, it will be restarted during the maintenance window
#' after 7 days.
#' Jobs must have timeout values less than 7 days or 10080 minutes.
#' Otherwise, the jobs will throw an exception.
#'
#' When the value is left blank, the timeout is defaulted to 2880 minutes.
#'
#' Any existing Glue jobs that had a timeout value greater than 7 days will
#' be defaulted to 7 days. For instance if you have specified a timeout of
#' 20 days for a batch job, it will be stopped on the 7th day.
#'
#' For streaming jobs, if you have set up a maintenance window, it will be
#' restarted during the maintenance window after 7 days.
#' @param MaxCapacity For Glue version 1.0 or earlier jobs, using the standard worker type,
#' the number of Glue data processing units (DPUs) that can be allocated
#' when this job runs. A DPU is a relative measure of processing power that
Expand Down Expand Up @@ -1969,8 +1974,8 @@ glue_create_security_configuration <- function(Name, EncryptionConfiguration) {
#' @param Role &#91;required&#93; The IAM Role ARN
#' @param Command &#91;required&#93; The `SessionCommand` that runs the job.
#' @param Timeout The number of minutes before session times out. Default for Spark ETL
#' jobs is 48 hours (2880 minutes), the maximum session lifetime for this
#' job type. Consult the documentation for other job types.
#' jobs is 48 hours (2880 minutes). Consult the documentation for other job
#' types.
#' @param IdleTimeout The number of minutes when idle before session times out. Default for
#' Spark ETL jobs is value of Timeout. Consult the documentation for other
#' job types.
Expand Down Expand Up @@ -8166,6 +8171,9 @@ glue_start_import_labels_task_run <- function(TransformId, InputS3Path, ReplaceA
#' Any existing Glue jobs that had a timeout value greater than 7 days will
#' be defaulted to 7 days. For instance if you have specified a timeout of
#' 20 days for a batch job, it will be stopped on the 7th day.
#'
#' For streaming jobs, if you have set up a maintenance window, it will be
#' restarted during the maintenance window after 7 days.
#' @param MaxCapacity For Glue version 1.0 or earlier jobs, using the standard worker type,
#' the number of Glue data processing units (DPUs) that can be allocated
#' when this job runs. A DPU is a relative measure of processing power that
Expand Down
38 changes: 31 additions & 7 deletions cran/paws.analytics/R/kafkaconnect_interfaces.R

Large diffs are not rendered by default.

95 changes: 82 additions & 13 deletions cran/paws.analytics/R/kafkaconnect_operations.R
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ NULL
#' resources depends on the logic of the connector. For example, a
#' connector that has Amazon S3 as a destination must have permissions that
#' allow it to write to the S3 destination bucket.
#' @param tags The tags you want to attach to the connector.
#' @param workerConfiguration Specifies which worker configuration to use with the connector.
#' @param tags The tags you want to attach to the connector.
#'
#' @keywords internal
#'
#' @rdname kafkaconnect_create_connector
kafkaconnect_create_connector <- function(capacity, connectorConfiguration, connectorDescription = NULL, connectorName, kafkaCluster, kafkaClusterClientAuthentication, kafkaClusterEncryptionInTransit, kafkaConnectVersion, logDelivery = NULL, plugins, serviceExecutionRoleArn, tags = NULL, workerConfiguration = NULL) {
kafkaconnect_create_connector <- function(capacity, connectorConfiguration, connectorDescription = NULL, connectorName, kafkaCluster, kafkaClusterClientAuthentication, kafkaClusterEncryptionInTransit, kafkaConnectVersion, logDelivery = NULL, plugins, serviceExecutionRoleArn, workerConfiguration = NULL, tags = NULL) {
op <- new_operation(
name = "CreateConnector",
http_method = "POST",
Expand All @@ -49,7 +49,7 @@ kafkaconnect_create_connector <- function(capacity, connectorConfiguration, conn
paginator = list(),
stream_api = FALSE
)
input <- .kafkaconnect$create_connector_input(capacity = capacity, connectorConfiguration = connectorConfiguration, connectorDescription = connectorDescription, connectorName = connectorName, kafkaCluster = kafkaCluster, kafkaClusterClientAuthentication = kafkaClusterClientAuthentication, kafkaClusterEncryptionInTransit = kafkaClusterEncryptionInTransit, kafkaConnectVersion = kafkaConnectVersion, logDelivery = logDelivery, plugins = plugins, serviceExecutionRoleArn = serviceExecutionRoleArn, tags = tags, workerConfiguration = workerConfiguration)
input <- .kafkaconnect$create_connector_input(capacity = capacity, connectorConfiguration = connectorConfiguration, connectorDescription = connectorDescription, connectorName = connectorName, kafkaCluster = kafkaCluster, kafkaClusterClientAuthentication = kafkaClusterClientAuthentication, kafkaClusterEncryptionInTransit = kafkaClusterEncryptionInTransit, kafkaConnectVersion = kafkaConnectVersion, logDelivery = logDelivery, plugins = plugins, serviceExecutionRoleArn = serviceExecutionRoleArn, workerConfiguration = workerConfiguration, tags = tags)
output <- .kafkaconnect$create_connector_output()
config <- get_config()
svc <- .kafkaconnect$service(config, op)
Expand Down Expand Up @@ -256,6 +256,37 @@ kafkaconnect_describe_connector <- function(connectorArn) {
}
.kafkaconnect$operations$describe_connector <- kafkaconnect_describe_connector

#' Returns information about the specified connector's operations
#'
#' @description
#' Returns information about the specified connector's operations.
#'
#' See [https://www.paws-r-sdk.com/docs/kafkaconnect_describe_connector_operation/](https://www.paws-r-sdk.com/docs/kafkaconnect_describe_connector_operation/) for full documentation.
#'
#' @param connectorOperationArn &#91;required&#93; ARN of the connector operation to be described.
#'
#' @keywords internal
#'
#' @rdname kafkaconnect_describe_connector_operation
kafkaconnect_describe_connector_operation <- function(connectorOperationArn) {
op <- new_operation(
name = "DescribeConnectorOperation",
http_method = "GET",
http_path = "/v1/connectorOperations/{connectorOperationArn}",
host_prefix = "",
paginator = list(),
stream_api = FALSE
)
input <- .kafkaconnect$describe_connector_operation_input(connectorOperationArn = connectorOperationArn)
output <- .kafkaconnect$describe_connector_operation_output()
config <- get_config()
svc <- .kafkaconnect$service(config, op)
request <- new_request(svc, op, input, output)
response <- send_request(request)
return(response)
}
.kafkaconnect$operations$describe_connector_operation <- kafkaconnect_describe_connector_operation

#' A summary description of the custom plugin
#'
#' @description
Expand Down Expand Up @@ -319,6 +350,42 @@ kafkaconnect_describe_worker_configuration <- function(workerConfigurationArn) {
}
.kafkaconnect$operations$describe_worker_configuration <- kafkaconnect_describe_worker_configuration

#' Lists information about a connector's operation(s)
#'
#' @description
#' Lists information about a connector's operation(s).
#'
#' See [https://www.paws-r-sdk.com/docs/kafkaconnect_list_connector_operations/](https://www.paws-r-sdk.com/docs/kafkaconnect_list_connector_operations/) for full documentation.
#'
#' @param connectorArn &#91;required&#93; The Amazon Resource Name (ARN) of the connector for which to list
#' operations.
#' @param maxResults Maximum number of connector operations to fetch in one get request.
#' @param nextToken If the response is truncated, it includes a NextToken. Send this
#' NextToken in a subsequent request to continue listing from where it left
#' off.
#'
#' @keywords internal
#'
#' @rdname kafkaconnect_list_connector_operations
kafkaconnect_list_connector_operations <- function(connectorArn, maxResults = NULL, nextToken = NULL) {
op <- new_operation(
name = "ListConnectorOperations",
http_method = "GET",
http_path = "/v1/connectors/{connectorArn}/operations",
host_prefix = "",
paginator = list(input_token = "nextToken", output_token = "nextToken", limit_key = "maxResults", result_key = "connectorOperations"),
stream_api = FALSE
)
input <- .kafkaconnect$list_connector_operations_input(connectorArn = connectorArn, maxResults = maxResults, nextToken = nextToken)
output <- .kafkaconnect$list_connector_operations_output()
config <- get_config()
svc <- .kafkaconnect$service(config, op)
request <- new_request(svc, op, input, output)
response <- send_request(request)
return(response)
}
.kafkaconnect$operations$list_connector_operations <- kafkaconnect_list_connector_operations

#' Returns a list of all the connectors in this account and Region
#'
#' @description
Expand Down Expand Up @@ -362,15 +429,15 @@ kafkaconnect_list_connectors <- function(connectorNamePrefix = NULL, maxResults
#' See [https://www.paws-r-sdk.com/docs/kafkaconnect_list_custom_plugins/](https://www.paws-r-sdk.com/docs/kafkaconnect_list_custom_plugins/) for full documentation.
#'
#' @param maxResults The maximum number of custom plugins to list in one response.
#' @param namePrefix Lists custom plugin names that start with the specified text string.
#' @param nextToken If the response of a ListCustomPlugins operation is truncated, it will
#' include a NextToken. Send this NextToken in a subsequent request to
#' continue listing from where the previous operation left off.
#' @param namePrefix Lists custom plugin names that start with the specified text string.
#'
#' @keywords internal
#'
#' @rdname kafkaconnect_list_custom_plugins
kafkaconnect_list_custom_plugins <- function(maxResults = NULL, namePrefix = NULL, nextToken = NULL) {
kafkaconnect_list_custom_plugins <- function(maxResults = NULL, nextToken = NULL, namePrefix = NULL) {
op <- new_operation(
name = "ListCustomPlugins",
http_method = "GET",
Expand All @@ -379,7 +446,7 @@ kafkaconnect_list_custom_plugins <- function(maxResults = NULL, namePrefix = NUL
paginator = list(input_token = "nextToken", output_token = "nextToken", limit_key = "maxResults", result_key = "customPlugins"),
stream_api = FALSE
)
input <- .kafkaconnect$list_custom_plugins_input(maxResults = maxResults, namePrefix = namePrefix, nextToken = nextToken)
input <- .kafkaconnect$list_custom_plugins_input(maxResults = maxResults, nextToken = nextToken, namePrefix = namePrefix)
output <- .kafkaconnect$list_custom_plugins_output()
config <- get_config()
svc <- .kafkaconnect$service(config, op)
Expand Down Expand Up @@ -430,16 +497,16 @@ kafkaconnect_list_tags_for_resource <- function(resourceArn) {
#' See [https://www.paws-r-sdk.com/docs/kafkaconnect_list_worker_configurations/](https://www.paws-r-sdk.com/docs/kafkaconnect_list_worker_configurations/) for full documentation.
#'
#' @param maxResults The maximum number of worker configurations to list in one response.
#' @param namePrefix Lists worker configuration names that start with the specified text
#' string.
#' @param nextToken If the response of a ListWorkerConfigurations operation is truncated, it
#' will include a NextToken. Send this NextToken in a subsequent request to
#' continue listing from where the previous operation left off.
#' @param namePrefix Lists worker configuration names that start with the specified text
#' string.
#'
#' @keywords internal
#'
#' @rdname kafkaconnect_list_worker_configurations
kafkaconnect_list_worker_configurations <- function(maxResults = NULL, namePrefix = NULL, nextToken = NULL) {
kafkaconnect_list_worker_configurations <- function(maxResults = NULL, nextToken = NULL, namePrefix = NULL) {
op <- new_operation(
name = "ListWorkerConfigurations",
http_method = "GET",
Expand All @@ -448,7 +515,7 @@ kafkaconnect_list_worker_configurations <- function(maxResults = NULL, namePrefi
paginator = list(input_token = "nextToken", output_token = "nextToken", limit_key = "maxResults", result_key = "workerConfigurations"),
stream_api = FALSE
)
input <- .kafkaconnect$list_worker_configurations_input(maxResults = maxResults, namePrefix = namePrefix, nextToken = nextToken)
input <- .kafkaconnect$list_worker_configurations_input(maxResults = maxResults, nextToken = nextToken, namePrefix = namePrefix)
output <- .kafkaconnect$list_worker_configurations_output()
config <- get_config()
svc <- .kafkaconnect$service(config, op)
Expand Down Expand Up @@ -531,14 +598,16 @@ kafkaconnect_untag_resource <- function(resourceArn, tagKeys) {
#'
#' See [https://www.paws-r-sdk.com/docs/kafkaconnect_update_connector/](https://www.paws-r-sdk.com/docs/kafkaconnect_update_connector/) for full documentation.
#'
#' @param capacity &#91;required&#93; The target capacity.
#' @param capacity The target capacity.
#' @param connectorConfiguration A map of keys to values that represent the configuration for the
#' connector.
#' @param connectorArn &#91;required&#93; The Amazon Resource Name (ARN) of the connector that you want to update.
#' @param currentVersion &#91;required&#93; The current version of the connector that you want to update.
#'
#' @keywords internal
#'
#' @rdname kafkaconnect_update_connector
kafkaconnect_update_connector <- function(capacity, connectorArn, currentVersion) {
kafkaconnect_update_connector <- function(capacity = NULL, connectorConfiguration = NULL, connectorArn, currentVersion) {
op <- new_operation(
name = "UpdateConnector",
http_method = "PUT",
Expand All @@ -547,7 +616,7 @@ kafkaconnect_update_connector <- function(capacity, connectorArn, currentVersion
paginator = list(),
stream_api = FALSE
)
input <- .kafkaconnect$update_connector_input(capacity = capacity, connectorArn = connectorArn, currentVersion = currentVersion)
input <- .kafkaconnect$update_connector_input(capacity = capacity, connectorConfiguration = connectorConfiguration, connectorArn = connectorArn, currentVersion = currentVersion)
output <- .kafkaconnect$update_connector_output()
config <- get_config()
svc <- .kafkaconnect$service(config, op)
Expand Down
4 changes: 3 additions & 1 deletion cran/paws.analytics/R/kafkaconnect_service.R
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,10 @@ NULL
#' \link[=kafkaconnect_delete_custom_plugin]{delete_custom_plugin} \tab Deletes a custom plugin\cr
#' \link[=kafkaconnect_delete_worker_configuration]{delete_worker_configuration} \tab Deletes the specified worker configuration\cr
#' \link[=kafkaconnect_describe_connector]{describe_connector} \tab Returns summary information about the connector\cr
#' \link[=kafkaconnect_describe_connector_operation]{describe_connector_operation} \tab Returns information about the specified connector's operations\cr
#' \link[=kafkaconnect_describe_custom_plugin]{describe_custom_plugin} \tab A summary description of the custom plugin\cr
#' \link[=kafkaconnect_describe_worker_configuration]{describe_worker_configuration} \tab Returns information about a worker configuration\cr
#' \link[=kafkaconnect_list_connector_operations]{list_connector_operations} \tab Lists information about a connector's operation(s)\cr
#' \link[=kafkaconnect_list_connectors]{list_connectors} \tab Returns a list of all the connectors in this account and Region\cr
#' \link[=kafkaconnect_list_custom_plugins]{list_custom_plugins} \tab Returns a list of all of the custom plugins in this account and Region\cr
#' \link[=kafkaconnect_list_tags_for_resource]{list_tags_for_resource} \tab Lists all the tags attached to the specified resource\cr
Expand Down Expand Up @@ -140,7 +142,7 @@ kafkaconnect <- function(config = list(), credentials = list(), endpoint = NULL,
service_id = "KafkaConnect",
api_version = "2021-09-14",
signing_name = "kafkaconnect",
json_version = "1.1",
json_version = "",
target_prefix = ""
)

Expand Down
18 changes: 9 additions & 9 deletions cran/paws.analytics/R/quicksight_interfaces.R

Large diffs are not rendered by default.

17 changes: 11 additions & 6 deletions cran/paws.analytics/man/glue_create_job.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions cran/paws.analytics/man/glue_create_session.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion cran/paws.analytics/man/glue_start_job_run.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions cran/paws.analytics/man/kafkaconnect.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit c708359

Please sign in to comment.