Skip to content

Commit

Permalink
Regenerate Paws (#864)
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 1, 2025
1 parent 11bbc2e commit a47f534
Show file tree
Hide file tree
Showing 178 changed files with 3,517 additions and 1,215 deletions.
3 changes: 2 additions & 1 deletion cran/paws.analytics/DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ Description: Interface to 'Amazon Web Services' 'analytics' services,
including 'Elastic MapReduce' 'Hadoop' and 'Spark' big data service,
'Elasticsearch' search engine, and more <https://aws.amazon.com/>.
License: Apache License (>= 2.0)
URL: https://github.com/paws-r/paws
URL: https://github.com/paws-r/paws,
https://paws-r.r-universe.dev/paws.analytics
BugReports: https://github.com/paws-r/paws/issues
Imports:
paws.common (>= 0.8.0)
Expand Down
2 changes: 1 addition & 1 deletion cran/paws.analytics/R/glue_interfaces.R
Original file line number Diff line number Diff line change
Expand Up @@ -1097,7 +1097,7 @@ NULL

.glue$get_catalogs_input <- function(...) {
args <- c(as.list(environment()), list(...))
shape <- structure(list(ParentCatalogId = structure(logical(0), tags = list(type = "string")), NextToken = structure(logical(0), tags = list(type = "string")), MaxResults = structure(logical(0), tags = list(type = "integer", box = TRUE)), Recursive = structure(logical(0), tags = list(type = "boolean"))), tags = list(type = "structure"))
shape <- structure(list(ParentCatalogId = structure(logical(0), tags = list(type = "string")), NextToken = structure(logical(0), tags = list(type = "string")), MaxResults = structure(logical(0), tags = list(type = "integer", box = TRUE)), Recursive = structure(logical(0), tags = list(type = "boolean")), IncludeRoot = structure(logical(0), tags = list(type = "boolean", box = TRUE))), tags = list(type = "structure"))
return(populate(args, shape))
}

Expand Down
30 changes: 21 additions & 9 deletions cran/paws.analytics/R/glue_operations.R
Original file line number Diff line number Diff line change
Expand Up @@ -3631,13 +3631,22 @@ glue_get_catalog_import_status <- function(CatalogId = NULL) {
#' provided, the Amazon Web Services Account Number is used by default.
#' @param NextToken A continuation token, if this is a continuation call.
#' @param MaxResults The maximum number of catalogs to return in one response.
#' @param Recursive When specified as true, iterates through the account and returns all
#' catalog resources (including top-level resources and child resources)
#' @param Recursive Whether to list all catalogs across the catalog hierarchy, starting from
#' the `ParentCatalogId`. Defaults to `false` . When `true`, all catalog
#' objects in the `ParentCatalogID` hierarchy are enumerated in the
#' response.
#' @param IncludeRoot Whether to list the default catalog in the account and region in the
#' response. Defaults to `false`. When `true` and
#' `ParentCatalogId = NULL | Amazon Web Services Account ID`, all catalogs
#' and the default catalog are enumerated in the response.
#'
#' When the `ParentCatalogId` is not equal to null, and this attribute is
#' passed as `false` or `true`, an `InvalidInputException` is thrown.
#'
#' @keywords internal
#'
#' @rdname glue_get_catalogs
glue_get_catalogs <- function(ParentCatalogId = NULL, NextToken = NULL, MaxResults = NULL, Recursive = NULL) {
glue_get_catalogs <- function(ParentCatalogId = NULL, NextToken = NULL, MaxResults = NULL, Recursive = NULL, IncludeRoot = NULL) {
op <- new_operation(
name = "GetCatalogs",
http_method = "POST",
Expand All @@ -3646,7 +3655,7 @@ glue_get_catalogs <- function(ParentCatalogId = NULL, NextToken = NULL, MaxResul
paginator = list(),
stream_api = FALSE
)
input <- .glue$get_catalogs_input(ParentCatalogId = ParentCatalogId, NextToken = NextToken, MaxResults = MaxResults, Recursive = Recursive)
input <- .glue$get_catalogs_input(ParentCatalogId = ParentCatalogId, NextToken = NextToken, MaxResults = MaxResults, Recursive = Recursive, IncludeRoot = IncludeRoot)
output <- .glue$get_catalogs_output()
config <- get_config()
svc <- .glue$service(config, op)
Expand Down Expand Up @@ -8149,11 +8158,14 @@ glue_start_import_labels_task_run <- function(TransformId, InputS3Path, ReplaceA
#' can consume resources before it is terminated and enters `TIMEOUT`
#' status. This value overrides the timeout value set in the parent job.
#'
#' 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.
#' @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
17 changes: 14 additions & 3 deletions cran/paws.analytics/man/glue_get_catalogs.Rd

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

13 changes: 8 additions & 5 deletions 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.

3 changes: 2 additions & 1 deletion cran/paws.application.integration/DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ Description: Interface to 'Amazon Web Services' application integration
'Simple Notification Service' ('SNS') publish/subscribe messaging, and
more <https://aws.amazon.com/>.
License: Apache License (>= 2.0)
URL: https://github.com/paws-r/paws
URL: https://github.com/paws-r/paws,
https://paws-r.r-universe.dev/paws.application.integration
BugReports: https://github.com/paws-r/paws/issues
Imports:
paws.common (>= 0.8.0)
Expand Down
3 changes: 2 additions & 1 deletion cran/paws.compute/DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ Description: Interface to 'Amazon Web Services' compute services,
functions-as-a-service, containers, batch processing, and more
<https://aws.amazon.com/>.
License: Apache License (>= 2.0)
URL: https://github.com/paws-r/paws
URL: https://github.com/paws-r/paws,
https://paws-r.r-universe.dev/paws.compute
BugReports: https://github.com/paws-r/paws/issues
Imports:
paws.common (>= 0.8.0)
Expand Down
21 changes: 12 additions & 9 deletions cran/paws.compute/R/ecr_operations.R
Original file line number Diff line number Diff line change
Expand Up @@ -904,14 +904,15 @@ ecr_describe_repository_creation_templates <- function(prefixes = NULL, nextToke
}
.ecr$operations$describe_repository_creation_templates <- ecr_describe_repository_creation_templates

#' Retrieves the basic scan type version name
#' Retrieves the account setting value for the specified setting name
#'
#' @description
#' Retrieves the basic scan type version name.
#' Retrieves the account setting value for the specified setting name.
#'
#' See [https://www.paws-r-sdk.com/docs/ecr_get_account_setting/](https://www.paws-r-sdk.com/docs/ecr_get_account_setting/) for full documentation.
#'
#' @param name &#91;required&#93; Basic scan type version name.
#' @param name &#91;required&#93; The name of the account setting, such as `BASIC_SCAN_TYPE_VERSION` or
#' `REGISTRY_POLICY_SCOPE`.
#'
#' @keywords internal
#'
Expand Down Expand Up @@ -1311,17 +1312,19 @@ ecr_list_tags_for_resource <- function(resourceArn) {
}
.ecr$operations$list_tags_for_resource <- ecr_list_tags_for_resource

#' Allows you to change the basic scan type version by setting the name
#' parameter to either CLAIR to AWS_NATIVE
#' Allows you to change the basic scan type version or registry policy
#' scope
#'
#' @description
#' Allows you to change the basic scan type version by setting the `name` parameter to either `CLAIR` to `AWS_NATIVE`.
#' Allows you to change the basic scan type version or registry policy scope.
#'
#' See [https://www.paws-r-sdk.com/docs/ecr_put_account_setting/](https://www.paws-r-sdk.com/docs/ecr_put_account_setting/) for full documentation.
#'
#' @param name &#91;required&#93; Basic scan type version name.
#' @param value &#91;required&#93; Setting value that determines what basic scan type is being used:
#' `AWS_NATIVE` or `CLAIR`.
#' @param name &#91;required&#93; The name of the account setting, such as `BASIC_SCAN_TYPE_VERSION` or
#' `REGISTRY_POLICY_SCOPE`.
#' @param value &#91;required&#93; Setting value that is specified. The following are valid values for the
#' basic scan type being used: `AWS_NATIVE` or `CLAIR`. The following are
#' valid values for the registry policy scope being used: `V1` or `V2`.
#'
#' @keywords internal
#'
Expand Down
4 changes: 2 additions & 2 deletions cran/paws.compute/R/ecr_service.R
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ NULL
#' \link[=ecr_describe_registry]{describe_registry} \tab Describes the settings for a registry\cr
#' \link[=ecr_describe_repositories]{describe_repositories} \tab Describes image repositories in a registry\cr
#' \link[=ecr_describe_repository_creation_templates]{describe_repository_creation_templates} \tab Returns details about the repository creation templates in a registry\cr
#' \link[=ecr_get_account_setting]{get_account_setting} \tab Retrieves the basic scan type version name\cr
#' \link[=ecr_get_account_setting]{get_account_setting} \tab Retrieves the account setting value for the specified setting name\cr
#' \link[=ecr_get_authorization_token]{get_authorization_token} \tab Retrieves an authorization token\cr
#' \link[=ecr_get_download_url_for_layer]{get_download_url_for_layer} \tab Retrieves the pre-signed Amazon S3 download URL corresponding to an image layer\cr
#' \link[=ecr_get_lifecycle_policy]{get_lifecycle_policy} \tab Retrieves the lifecycle policy for the specified repository\cr
Expand All @@ -140,7 +140,7 @@ NULL
#' \link[=ecr_initiate_layer_upload]{initiate_layer_upload} \tab Notifies Amazon ECR that you intend to upload an image layer\cr
#' \link[=ecr_list_images]{list_images} \tab Lists all the image IDs for the specified repository\cr
#' \link[=ecr_list_tags_for_resource]{list_tags_for_resource} \tab List the tags for an Amazon ECR resource\cr
#' \link[=ecr_put_account_setting]{put_account_setting} \tab Allows you to change the basic scan type version by setting the name parameter to either CLAIR to AWS_NATIVE\cr
#' \link[=ecr_put_account_setting]{put_account_setting} \tab Allows you to change the basic scan type version or registry policy scope\cr
#' \link[=ecr_put_image]{put_image} \tab Creates or updates the image manifest and tags associated with an image\cr
#' \link[=ecr_put_image_scanning_configuration]{put_image_scanning_configuration} \tab The PutImageScanningConfiguration API is being deprecated, in favor of specifying the image scanning configuration at the registry level\cr
#' \link[=ecr_put_image_tag_mutability]{put_image_tag_mutability} \tab Updates the image tag mutability settings for the specified repository\cr
Expand Down
14 changes: 13 additions & 1 deletion cran/paws.compute/R/eks_interfaces.R
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,18 @@ NULL
return(populate(args, shape))
}

.eks$describe_cluster_versions_input <- function(...) {
args <- c(as.list(environment()), list(...))
shape <- structure(list(clusterType = structure(logical(0), tags = list(location = "querystring", locationName = "clusterType", type = "string")), maxResults = structure(logical(0), tags = list(location = "querystring", locationName = "maxResults", type = "integer", box = TRUE)), nextToken = structure(logical(0), tags = list(location = "querystring", locationName = "nextToken", type = "string")), defaultOnly = structure(logical(0), tags = list(location = "querystring", locationName = "defaultOnly", type = "boolean", box = TRUE)), includeAll = structure(logical(0), tags = list(location = "querystring", locationName = "includeAll", type = "boolean", box = TRUE)), clusterVersions = structure(list(structure(logical(0), tags = list(type = "string"))), tags = list(location = "querystring", locationName = "clusterVersions", type = "list")), status = structure(logical(0), tags = list(location = "querystring", locationName = "status", type = "string"))), tags = list(type = "structure"))
return(populate(args, shape))
}

.eks$describe_cluster_versions_output <- function(...) {
args <- c(as.list(environment()), list(...))
shape <- structure(list(nextToken = structure(logical(0), tags = list(type = "string")), clusterVersions = structure(list(structure(list(clusterVersion = structure(logical(0), tags = list(type = "string")), clusterType = structure(logical(0), tags = list(type = "string")), defaultPlatformVersion = structure(logical(0), tags = list(type = "string")), defaultVersion = structure(logical(0), tags = list(type = "boolean")), releaseDate = structure(logical(0), tags = list(type = "timestamp")), endOfStandardSupportDate = structure(logical(0), tags = list(type = "timestamp")), endOfExtendedSupportDate = structure(logical(0), tags = list(type = "timestamp")), status = structure(logical(0), tags = list(type = "string")), kubernetesPatchVersion = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))), tags = list(type = "list"))), tags = list(type = "structure"))
return(populate(args, shape))
}

.eks$describe_eks_anywhere_subscription_input <- function(...) {
args <- c(as.list(environment()), list(...))
shape <- structure(list(id = structure(logical(0), tags = list(location = "uri", locationName = "id", type = "string"))), tags = list(type = "structure"))
Expand Down Expand Up @@ -323,7 +335,7 @@ NULL

.eks$describe_insight_output <- function(...) {
args <- c(as.list(environment()), list(...))
shape <- structure(list(insight = structure(list(id = structure(logical(0), tags = list(type = "string")), name = structure(logical(0), tags = list(type = "string")), category = structure(logical(0), tags = list(type = "string")), kubernetesVersion = structure(logical(0), tags = list(type = "string")), lastRefreshTime = structure(logical(0), tags = list(type = "timestamp")), lastTransitionTime = structure(logical(0), tags = list(type = "timestamp")), description = structure(logical(0), tags = list(type = "string")), insightStatus = structure(list(status = structure(logical(0), tags = list(type = "string")), reason = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure")), recommendation = structure(logical(0), tags = list(type = "string")), additionalInfo = structure(list(structure(logical(0), tags = list(type = "string"))), tags = list(type = "map")), resources = structure(list(structure(list(insightStatus = structure(list(status = structure(logical(0), tags = list(type = "string")), reason = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure")), kubernetesResourceUri = structure(logical(0), tags = list(type = "string")), arn = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))), tags = list(type = "list")), categorySpecificSummary = structure(list(deprecationDetails = structure(list(structure(list(usage = structure(logical(0), tags = list(type = "string")), replacedWith = structure(logical(0), tags = list(type = "string")), stopServingVersion = structure(logical(0), tags = list(type = "string")), startServingReplacementVersion = structure(logical(0), tags = list(type = "string")), clientStats = structure(list(structure(list(userAgent = structure(logical(0), tags = list(type = "string")), numberOfRequestsLast30Days = structure(logical(0), tags = list(type = "integer")), lastRequestTime = structure(logical(0), tags = list(type = "timestamp"))), tags = list(type = "structure"))), tags = list(type = "list"))), tags = list(type = "structure"))), tags = list(type = "list"))), tags = list(type = "structure"))), tags = list(type = "structure"))), tags = list(type = "structure"))
shape <- structure(list(insight = structure(list(id = structure(logical(0), tags = list(type = "string")), name = structure(logical(0), tags = list(type = "string")), category = structure(logical(0), tags = list(type = "string")), kubernetesVersion = structure(logical(0), tags = list(type = "string")), lastRefreshTime = structure(logical(0), tags = list(type = "timestamp")), lastTransitionTime = structure(logical(0), tags = list(type = "timestamp")), description = structure(logical(0), tags = list(type = "string")), insightStatus = structure(list(status = structure(logical(0), tags = list(type = "string")), reason = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure")), recommendation = structure(logical(0), tags = list(type = "string")), additionalInfo = structure(list(structure(logical(0), tags = list(type = "string"))), tags = list(type = "map")), resources = structure(list(structure(list(insightStatus = structure(list(status = structure(logical(0), tags = list(type = "string")), reason = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure")), kubernetesResourceUri = structure(logical(0), tags = list(type = "string")), arn = structure(logical(0), tags = list(type = "string"))), tags = list(type = "structure"))), tags = list(type = "list")), categorySpecificSummary = structure(list(deprecationDetails = structure(list(structure(list(usage = structure(logical(0), tags = list(type = "string")), replacedWith = structure(logical(0), tags = list(type = "string")), stopServingVersion = structure(logical(0), tags = list(type = "string")), startServingReplacementVersion = structure(logical(0), tags = list(type = "string")), clientStats = structure(list(structure(list(userAgent = structure(logical(0), tags = list(type = "string")), numberOfRequestsLast30Days = structure(logical(0), tags = list(type = "integer")), lastRequestTime = structure(logical(0), tags = list(type = "timestamp"))), tags = list(type = "structure"))), tags = list(type = "list"))), tags = list(type = "structure"))), tags = list(type = "list")), addonCompatibilityDetails = structure(list(structure(list(name = structure(logical(0), tags = list(type = "string")), compatibleVersions = structure(list(structure(logical(0), tags = list(type = "string"))), tags = list(type = "list"))), tags = list(type = "structure"))), tags = list(type = "list"))), tags = list(type = "structure"))), tags = list(type = "structure"))), tags = list(type = "structure"))
return(populate(args, shape))
}

Expand Down
Loading

0 comments on commit a47f534

Please sign in to comment.