R/computeoptimizer_operations.R

Defines functions computeoptimizer_update_enrollment_status computeoptimizer_put_recommendation_preferences computeoptimizer_get_recommendation_summaries computeoptimizer_get_recommendation_preferences computeoptimizer_get_license_recommendations computeoptimizer_get_lambda_function_recommendations computeoptimizer_get_enrollment_statuses_for_organization computeoptimizer_get_enrollment_status computeoptimizer_get_effective_recommendation_preferences computeoptimizer_get_ecs_service_recommendations computeoptimizer_get_ecs_service_recommendation_projected_metric computeoptimizer_get_ec2_recommendation_projected_metrics computeoptimizer_get_ec2_instance_recommendations computeoptimizer_get_ebs_volume_recommendations computeoptimizer_get_auto_scaling_group_recommendations computeoptimizer_export_license_recommendations computeoptimizer_export_lambda_function_recommendations computeoptimizer_export_ecs_service_recommendations computeoptimizer_export_ec2_instance_recommendations computeoptimizer_export_ebs_volume_recommendations computeoptimizer_export_auto_scaling_group_recommendations computeoptimizer_describe_recommendation_export_jobs computeoptimizer_delete_recommendation_preferences

Documented in computeoptimizer_delete_recommendation_preferences computeoptimizer_describe_recommendation_export_jobs computeoptimizer_export_auto_scaling_group_recommendations computeoptimizer_export_ebs_volume_recommendations computeoptimizer_export_ec2_instance_recommendations computeoptimizer_export_ecs_service_recommendations computeoptimizer_export_lambda_function_recommendations computeoptimizer_export_license_recommendations computeoptimizer_get_auto_scaling_group_recommendations computeoptimizer_get_ebs_volume_recommendations computeoptimizer_get_ec2_instance_recommendations computeoptimizer_get_ec2_recommendation_projected_metrics computeoptimizer_get_ecs_service_recommendation_projected_metric computeoptimizer_get_ecs_service_recommendations computeoptimizer_get_effective_recommendation_preferences computeoptimizer_get_enrollment_status computeoptimizer_get_enrollment_statuses_for_organization computeoptimizer_get_lambda_function_recommendations computeoptimizer_get_license_recommendations computeoptimizer_get_recommendation_preferences computeoptimizer_get_recommendation_summaries computeoptimizer_put_recommendation_preferences computeoptimizer_update_enrollment_status

# This file is generated by make.paws. Please do not edit here.
#' @importFrom paws.common get_config new_operation new_request send_request
#' @include computeoptimizer_service.R
NULL

#' Deletes a recommendation preference, such as enhanced infrastructure
#' metrics
#'
#' @description
#' Deletes a recommendation preference, such as enhanced infrastructure metrics.
#'
#' See [https://www.paws-r-sdk.com/docs/computeoptimizer_delete_recommendation_preferences/](https://www.paws-r-sdk.com/docs/computeoptimizer_delete_recommendation_preferences/) for full documentation.
#'
#' @param resourceType [required] The target resource type of the recommendation preference to delete.
#' 
#' The `Ec2Instance` option encompasses standalone instances and instances
#' that are part of Auto Scaling groups. The `AutoScalingGroup` option
#' encompasses only instances that are part of an Auto Scaling group.
#' 
#' The valid values for this parameter are `Ec2Instance` and
#' `AutoScalingGroup`.
#' @param scope An object that describes the scope of the recommendation preference to
#' delete.
#' 
#' You can delete recommendation preferences that are created at the
#' organization level (for management accounts of an organization only),
#' account level, and resource level. For more information, see [Activating
#' enhanced infrastructure
#' metrics](https://docs.aws.amazon.com/compute-optimizer/latest/ug/enhanced-infrastructure-metrics.html)
#' in the *Compute Optimizer User Guide*.
#' @param recommendationPreferenceNames [required] The name of the recommendation preference to delete.
#'
#' @keywords internal
#'
#' @rdname computeoptimizer_delete_recommendation_preferences
computeoptimizer_delete_recommendation_preferences <- function(resourceType, scope = NULL, recommendationPreferenceNames) {
  op <- new_operation(
    name = "DeleteRecommendationPreferences",
    http_method = "POST",
    http_path = "/",
    paginator = list()
  )
  input <- .computeoptimizer$delete_recommendation_preferences_input(resourceType = resourceType, scope = scope, recommendationPreferenceNames = recommendationPreferenceNames)
  output <- .computeoptimizer$delete_recommendation_preferences_output()
  config <- get_config()
  svc <- .computeoptimizer$service(config)
  request <- new_request(svc, op, input, output)
  response <- send_request(request)
  return(response)
}
.computeoptimizer$operations$delete_recommendation_preferences <- computeoptimizer_delete_recommendation_preferences

#' Describes recommendation export jobs created in the last seven days
#'
#' @description
#' Describes recommendation export jobs created in the last seven days.
#'
#' See [https://www.paws-r-sdk.com/docs/computeoptimizer_describe_recommendation_export_jobs/](https://www.paws-r-sdk.com/docs/computeoptimizer_describe_recommendation_export_jobs/) for full documentation.
#'
#' @param jobIds The identification numbers of the export jobs to return.
#' 
#' An export job ID is returned when you create an export using the
#' [`export_auto_scaling_group_recommendations`][computeoptimizer_export_auto_scaling_group_recommendations]
#' or
#' [`export_ec2_instance_recommendations`][computeoptimizer_export_ec2_instance_recommendations]
#' actions.
#' 
#' All export jobs created in the last seven days are returned if this
#' parameter is omitted.
#' @param filters An array of objects to specify a filter that returns a more specific
#' list of export jobs.
#' @param nextToken The token to advance to the next page of export jobs.
#' @param maxResults The maximum number of export jobs to return with a single request.
#' 
#' To retrieve the remaining results, make another request with the
#' returned `nextToken` value.
#'
#' @keywords internal
#'
#' @rdname computeoptimizer_describe_recommendation_export_jobs
computeoptimizer_describe_recommendation_export_jobs <- function(jobIds = NULL, filters = NULL, nextToken = NULL, maxResults = NULL) {
  op <- new_operation(
    name = "DescribeRecommendationExportJobs",
    http_method = "POST",
    http_path = "/",
    paginator = list(input_token = "nextToken", output_token = "nextToken", limit_key = "maxResults", result_key = "recommendationExportJobs")
  )
  input <- .computeoptimizer$describe_recommendation_export_jobs_input(jobIds = jobIds, filters = filters, nextToken = nextToken, maxResults = maxResults)
  output <- .computeoptimizer$describe_recommendation_export_jobs_output()
  config <- get_config()
  svc <- .computeoptimizer$service(config)
  request <- new_request(svc, op, input, output)
  response <- send_request(request)
  return(response)
}
.computeoptimizer$operations$describe_recommendation_export_jobs <- computeoptimizer_describe_recommendation_export_jobs

#' Exports optimization recommendations for Auto Scaling groups
#'
#' @description
#' Exports optimization recommendations for Auto Scaling groups.
#'
#' See [https://www.paws-r-sdk.com/docs/computeoptimizer_export_auto_scaling_group_recommendations/](https://www.paws-r-sdk.com/docs/computeoptimizer_export_auto_scaling_group_recommendations/) for full documentation.
#'
#' @param accountIds The IDs of the Amazon Web Services accounts for which to export Auto
#' Scaling group recommendations.
#' 
#' If your account is the management account of an organization, use this
#' parameter to specify the member account for which you want to export
#' recommendations.
#' 
#' This parameter cannot be specified together with the include member
#' accounts parameter. The parameters are mutually exclusive.
#' 
#' Recommendations for member accounts are not included in the export if
#' this parameter, or the include member accounts parameter, is omitted.
#' 
#' You can specify multiple account IDs per request.
#' @param filters An array of objects to specify a filter that exports a more specific set
#' of Auto Scaling group recommendations.
#' @param fieldsToExport The recommendations data to include in the export file. For more
#' information about the fields that can be exported, see [Exported
#' files](https://docs.aws.amazon.com/compute-optimizer/latest/ug/exporting-recommendations.html#exported-files)
#' in the *Compute Optimizer User Guide*.
#' @param s3DestinationConfig &#91;required&#93; An object to specify the destination Amazon Simple Storage Service
#' (Amazon S3) bucket name and key prefix for the export job.
#' 
#' You must create the destination Amazon S3 bucket for your
#' recommendations export before you create the export job. Compute
#' Optimizer does not create the S3 bucket for you. After you create the S3
#' bucket, ensure that it has the required permissions policy to allow
#' Compute Optimizer to write the export file to it. If you plan to specify
#' an object prefix when you create the export job, you must include the
#' object prefix in the policy that you add to the S3 bucket. For more
#' information, see [Amazon S3 Bucket Policy for Compute
#' Optimizer](https://docs.aws.amazon.com/compute-optimizer/latest/ug/create-s3-bucket-policy-for-compute-optimizer.html)
#' in the *Compute Optimizer User Guide*.
#' @param fileFormat The format of the export file.
#' 
#' The only export file format currently supported is `Csv`.
#' @param includeMemberAccounts Indicates whether to include recommendations for resources in all member
#' accounts of the organization if your account is the management account
#' of an organization.
#' 
#' The member accounts must also be opted in to Compute Optimizer, and
#' trusted access for Compute Optimizer must be enabled in the organization
#' account. For more information, see [Compute Optimizer and Amazon Web
#' Services Organizations trusted
#' access](https://docs.aws.amazon.com/compute-optimizer/latest/ug/security-iam.html#trusted-service-access)
#' in the *Compute Optimizer User Guide*.
#' 
#' Recommendations for member accounts of the organization are not included
#' in the export file if this parameter is omitted.
#' 
#' This parameter cannot be specified together with the account IDs
#' parameter. The parameters are mutually exclusive.
#' 
#' Recommendations for member accounts are not included in the export if
#' this parameter, or the account IDs parameter, is omitted.
#' @param recommendationPreferences An object to specify the preferences for the Auto Scaling group
#' recommendations to export.
#'
#' @keywords internal
#'
#' @rdname computeoptimizer_export_auto_scaling_group_recommendations
computeoptimizer_export_auto_scaling_group_recommendations <- function(accountIds = NULL, filters = NULL, fieldsToExport = NULL, s3DestinationConfig, fileFormat = NULL, includeMemberAccounts = NULL, recommendationPreferences = NULL) {
  op <- new_operation(
    name = "ExportAutoScalingGroupRecommendations",
    http_method = "POST",
    http_path = "/",
    paginator = list()
  )
  input <- .computeoptimizer$export_auto_scaling_group_recommendations_input(accountIds = accountIds, filters = filters, fieldsToExport = fieldsToExport, s3DestinationConfig = s3DestinationConfig, fileFormat = fileFormat, includeMemberAccounts = includeMemberAccounts, recommendationPreferences = recommendationPreferences)
  output <- .computeoptimizer$export_auto_scaling_group_recommendations_output()
  config <- get_config()
  svc <- .computeoptimizer$service(config)
  request <- new_request(svc, op, input, output)
  response <- send_request(request)
  return(response)
}
.computeoptimizer$operations$export_auto_scaling_group_recommendations <- computeoptimizer_export_auto_scaling_group_recommendations

#' Exports optimization recommendations for Amazon EBS volumes
#'
#' @description
#' Exports optimization recommendations for Amazon EBS volumes.
#'
#' See [https://www.paws-r-sdk.com/docs/computeoptimizer_export_ebs_volume_recommendations/](https://www.paws-r-sdk.com/docs/computeoptimizer_export_ebs_volume_recommendations/) for full documentation.
#'
#' @param accountIds The IDs of the Amazon Web Services accounts for which to export Amazon
#' EBS volume recommendations.
#' 
#' If your account is the management account of an organization, use this
#' parameter to specify the member account for which you want to export
#' recommendations.
#' 
#' This parameter cannot be specified together with the include member
#' accounts parameter. The parameters are mutually exclusive.
#' 
#' Recommendations for member accounts are not included in the export if
#' this parameter, or the include member accounts parameter, is omitted.
#' 
#' You can specify multiple account IDs per request.
#' @param filters An array of objects to specify a filter that exports a more specific set
#' of Amazon EBS volume recommendations.
#' @param fieldsToExport The recommendations data to include in the export file. For more
#' information about the fields that can be exported, see [Exported
#' files](https://docs.aws.amazon.com/compute-optimizer/latest/ug/exporting-recommendations.html#exported-files)
#' in the *Compute Optimizer User Guide*.
#' @param s3DestinationConfig &#91;required&#93; 
#' @param fileFormat The format of the export file.
#' 
#' The only export file format currently supported is `Csv`.
#' @param includeMemberAccounts Indicates whether to include recommendations for resources in all member
#' accounts of the organization if your account is the management account
#' of an organization.
#' 
#' The member accounts must also be opted in to Compute Optimizer, and
#' trusted access for Compute Optimizer must be enabled in the organization
#' account. For more information, see [Compute Optimizer and Amazon Web
#' Services Organizations trusted
#' access](https://docs.aws.amazon.com/compute-optimizer/latest/ug/security-iam.html#trusted-service-access)
#' in the *Compute Optimizer User Guide*.
#' 
#' Recommendations for member accounts of the organization are not included
#' in the export file if this parameter is omitted.
#' 
#' This parameter cannot be specified together with the account IDs
#' parameter. The parameters are mutually exclusive.
#' 
#' Recommendations for member accounts are not included in the export if
#' this parameter, or the account IDs parameter, is omitted.
#'
#' @keywords internal
#'
#' @rdname computeoptimizer_export_ebs_volume_recommendations
computeoptimizer_export_ebs_volume_recommendations <- function(accountIds = NULL, filters = NULL, fieldsToExport = NULL, s3DestinationConfig, fileFormat = NULL, includeMemberAccounts = NULL) {
  op <- new_operation(
    name = "ExportEBSVolumeRecommendations",
    http_method = "POST",
    http_path = "/",
    paginator = list()
  )
  input <- .computeoptimizer$export_ebs_volume_recommendations_input(accountIds = accountIds, filters = filters, fieldsToExport = fieldsToExport, s3DestinationConfig = s3DestinationConfig, fileFormat = fileFormat, includeMemberAccounts = includeMemberAccounts)
  output <- .computeoptimizer$export_ebs_volume_recommendations_output()
  config <- get_config()
  svc <- .computeoptimizer$service(config)
  request <- new_request(svc, op, input, output)
  response <- send_request(request)
  return(response)
}
.computeoptimizer$operations$export_ebs_volume_recommendations <- computeoptimizer_export_ebs_volume_recommendations

#' Exports optimization recommendations for Amazon EC2 instances
#'
#' @description
#' Exports optimization recommendations for Amazon EC2 instances.
#'
#' See [https://www.paws-r-sdk.com/docs/computeoptimizer_export_ec2_instance_recommendations/](https://www.paws-r-sdk.com/docs/computeoptimizer_export_ec2_instance_recommendations/) for full documentation.
#'
#' @param accountIds The IDs of the Amazon Web Services accounts for which to export instance
#' recommendations.
#' 
#' If your account is the management account of an organization, use this
#' parameter to specify the member account for which you want to export
#' recommendations.
#' 
#' This parameter cannot be specified together with the include member
#' accounts parameter. The parameters are mutually exclusive.
#' 
#' Recommendations for member accounts are not included in the export if
#' this parameter, or the include member accounts parameter, is omitted.
#' 
#' You can specify multiple account IDs per request.
#' @param filters An array of objects to specify a filter that exports a more specific set
#' of instance recommendations.
#' @param fieldsToExport The recommendations data to include in the export file. For more
#' information about the fields that can be exported, see [Exported
#' files](https://docs.aws.amazon.com/compute-optimizer/latest/ug/exporting-recommendations.html#exported-files)
#' in the *Compute Optimizer User Guide*.
#' @param s3DestinationConfig &#91;required&#93; An object to specify the destination Amazon Simple Storage Service
#' (Amazon S3) bucket name and key prefix for the export job.
#' 
#' You must create the destination Amazon S3 bucket for your
#' recommendations export before you create the export job. Compute
#' Optimizer does not create the S3 bucket for you. After you create the S3
#' bucket, ensure that it has the required permissions policy to allow
#' Compute Optimizer to write the export file to it. If you plan to specify
#' an object prefix when you create the export job, you must include the
#' object prefix in the policy that you add to the S3 bucket. For more
#' information, see [Amazon S3 Bucket Policy for Compute
#' Optimizer](https://docs.aws.amazon.com/compute-optimizer/latest/ug/create-s3-bucket-policy-for-compute-optimizer.html)
#' in the *Compute Optimizer User Guide*.
#' @param fileFormat The format of the export file.
#' 
#' The only export file format currently supported is `Csv`.
#' @param includeMemberAccounts Indicates whether to include recommendations for resources in all member
#' accounts of the organization if your account is the management account
#' of an organization.
#' 
#' The member accounts must also be opted in to Compute Optimizer, and
#' trusted access for Compute Optimizer must be enabled in the organization
#' account. For more information, see [Compute Optimizer and Amazon Web
#' Services Organizations trusted
#' access](https://docs.aws.amazon.com/compute-optimizer/latest/ug/security-iam.html#trusted-service-access)
#' in the *Compute Optimizer User Guide*.
#' 
#' Recommendations for member accounts of the organization are not included
#' in the export file if this parameter is omitted.
#' 
#' Recommendations for member accounts are not included in the export if
#' this parameter, or the account IDs parameter, is omitted.
#' @param recommendationPreferences An object to specify the preferences for the Amazon EC2 instance
#' recommendations to export.
#'
#' @keywords internal
#'
#' @rdname computeoptimizer_export_ec2_instance_recommendations
computeoptimizer_export_ec2_instance_recommendations <- function(accountIds = NULL, filters = NULL, fieldsToExport = NULL, s3DestinationConfig, fileFormat = NULL, includeMemberAccounts = NULL, recommendationPreferences = NULL) {
  op <- new_operation(
    name = "ExportEC2InstanceRecommendations",
    http_method = "POST",
    http_path = "/",
    paginator = list()
  )
  input <- .computeoptimizer$export_ec2_instance_recommendations_input(accountIds = accountIds, filters = filters, fieldsToExport = fieldsToExport, s3DestinationConfig = s3DestinationConfig, fileFormat = fileFormat, includeMemberAccounts = includeMemberAccounts, recommendationPreferences = recommendationPreferences)
  output <- .computeoptimizer$export_ec2_instance_recommendations_output()
  config <- get_config()
  svc <- .computeoptimizer$service(config)
  request <- new_request(svc, op, input, output)
  response <- send_request(request)
  return(response)
}
.computeoptimizer$operations$export_ec2_instance_recommendations <- computeoptimizer_export_ec2_instance_recommendations

#' Exports optimization recommendations for Amazon ECS services on Fargate
#'
#' @description
#' Exports optimization recommendations for Amazon ECS services on Fargate.
#'
#' See [https://www.paws-r-sdk.com/docs/computeoptimizer_export_ecs_service_recommendations/](https://www.paws-r-sdk.com/docs/computeoptimizer_export_ecs_service_recommendations/) for full documentation.
#'
#' @param accountIds The Amazon Web Services account IDs for the export Amazon ECS service
#' recommendations.
#' 
#' If your account is the management account or the delegated administrator
#' of an organization, use this parameter to specify the member account you
#' want to export recommendations to.
#' 
#' This parameter can't be specified together with the include member
#' accounts parameter. The parameters are mutually exclusive.
#' 
#' If this parameter or the include member accounts parameter is omitted,
#' the recommendations for member accounts aren't included in the export.
#' 
#' You can specify multiple account IDs per request.
#' @param filters An array of objects to specify a filter that exports a more specific set
#' of Amazon ECS service recommendations.
#' @param fieldsToExport The recommendations data to include in the export file. For more
#' information about the fields that can be exported, see [Exported
#' files](https://docs.aws.amazon.com/compute-optimizer/latest/ug/exporting-recommendations.html#exported-files)
#' in the *Compute Optimizer User Guide*.
#' @param s3DestinationConfig &#91;required&#93; 
#' @param fileFormat The format of the export file.
#' 
#' The CSV file is the only export file format currently supported.
#' @param includeMemberAccounts If your account is the management account or the delegated administrator
#' of an organization, this parameter indicates whether to include
#' recommendations for resources in all member accounts of the
#' organization.
#' 
#' The member accounts must also be opted in to Compute Optimizer, and
#' trusted access for Compute Optimizer must be enabled in the organization
#' account. For more information, see [Compute Optimizer and Amazon Web
#' Services Organizations trusted
#' access](https://docs.aws.amazon.com/compute-optimizer/latest/ug/security-iam.html#trusted-service-access)
#' in the *Compute Optimizer User Guide*.
#' 
#' If this parameter is omitted, recommendations for member accounts of the
#' organization aren't included in the export file.
#' 
#' If this parameter or the account ID parameter is omitted,
#' recommendations for member accounts aren't included in the export.
#'
#' @keywords internal
#'
#' @rdname computeoptimizer_export_ecs_service_recommendations
computeoptimizer_export_ecs_service_recommendations <- function(accountIds = NULL, filters = NULL, fieldsToExport = NULL, s3DestinationConfig, fileFormat = NULL, includeMemberAccounts = NULL) {
  op <- new_operation(
    name = "ExportECSServiceRecommendations",
    http_method = "POST",
    http_path = "/",
    paginator = list()
  )
  input <- .computeoptimizer$export_ecs_service_recommendations_input(accountIds = accountIds, filters = filters, fieldsToExport = fieldsToExport, s3DestinationConfig = s3DestinationConfig, fileFormat = fileFormat, includeMemberAccounts = includeMemberAccounts)
  output <- .computeoptimizer$export_ecs_service_recommendations_output()
  config <- get_config()
  svc <- .computeoptimizer$service(config)
  request <- new_request(svc, op, input, output)
  response <- send_request(request)
  return(response)
}
.computeoptimizer$operations$export_ecs_service_recommendations <- computeoptimizer_export_ecs_service_recommendations

#' Exports optimization recommendations for Lambda functions
#'
#' @description
#' Exports optimization recommendations for Lambda functions.
#'
#' See [https://www.paws-r-sdk.com/docs/computeoptimizer_export_lambda_function_recommendations/](https://www.paws-r-sdk.com/docs/computeoptimizer_export_lambda_function_recommendations/) for full documentation.
#'
#' @param accountIds The IDs of the Amazon Web Services accounts for which to export Lambda
#' function recommendations.
#' 
#' If your account is the management account of an organization, use this
#' parameter to specify the member account for which you want to export
#' recommendations.
#' 
#' This parameter cannot be specified together with the include member
#' accounts parameter. The parameters are mutually exclusive.
#' 
#' Recommendations for member accounts are not included in the export if
#' this parameter, or the include member accounts parameter, is omitted.
#' 
#' You can specify multiple account IDs per request.
#' @param filters An array of objects to specify a filter that exports a more specific set
#' of Lambda function recommendations.
#' @param fieldsToExport The recommendations data to include in the export file. For more
#' information about the fields that can be exported, see [Exported
#' files](https://docs.aws.amazon.com/compute-optimizer/latest/ug/exporting-recommendations.html#exported-files)
#' in the *Compute Optimizer User Guide*.
#' @param s3DestinationConfig &#91;required&#93; 
#' @param fileFormat The format of the export file.
#' 
#' The only export file format currently supported is `Csv`.
#' @param includeMemberAccounts Indicates whether to include recommendations for resources in all member
#' accounts of the organization if your account is the management account
#' of an organization.
#' 
#' The member accounts must also be opted in to Compute Optimizer, and
#' trusted access for Compute Optimizer must be enabled in the organization
#' account. For more information, see [Compute Optimizer and Amazon Web
#' Services Organizations trusted
#' access](https://docs.aws.amazon.com/compute-optimizer/latest/ug/security-iam.html#trusted-service-access)
#' in the *Compute Optimizer User Guide*.
#' 
#' Recommendations for member accounts of the organization are not included
#' in the export file if this parameter is omitted.
#' 
#' This parameter cannot be specified together with the account IDs
#' parameter. The parameters are mutually exclusive.
#' 
#' Recommendations for member accounts are not included in the export if
#' this parameter, or the account IDs parameter, is omitted.
#'
#' @keywords internal
#'
#' @rdname computeoptimizer_export_lambda_function_recommendations
computeoptimizer_export_lambda_function_recommendations <- function(accountIds = NULL, filters = NULL, fieldsToExport = NULL, s3DestinationConfig, fileFormat = NULL, includeMemberAccounts = NULL) {
  op <- new_operation(
    name = "ExportLambdaFunctionRecommendations",
    http_method = "POST",
    http_path = "/",
    paginator = list()
  )
  input <- .computeoptimizer$export_lambda_function_recommendations_input(accountIds = accountIds, filters = filters, fieldsToExport = fieldsToExport, s3DestinationConfig = s3DestinationConfig, fileFormat = fileFormat, includeMemberAccounts = includeMemberAccounts)
  output <- .computeoptimizer$export_lambda_function_recommendations_output()
  config <- get_config()
  svc <- .computeoptimizer$service(config)
  request <- new_request(svc, op, input, output)
  response <- send_request(request)
  return(response)
}
.computeoptimizer$operations$export_lambda_function_recommendations <- computeoptimizer_export_lambda_function_recommendations

#' Export optimization recommendations for your licenses
#'
#' @description
#' Export optimization recommendations for your licenses.
#'
#' See [https://www.paws-r-sdk.com/docs/computeoptimizer_export_license_recommendations/](https://www.paws-r-sdk.com/docs/computeoptimizer_export_license_recommendations/) for full documentation.
#'
#' @param accountIds The IDs of the Amazon Web Services accounts for which to export license
#' recommendations.
#' 
#' If your account is the management account of an organization, use this
#' parameter to specify the member account for which you want to export
#' recommendations.
#' 
#' This parameter can't be specified together with the include member
#' accounts parameter. The parameters are mutually exclusive.
#' 
#' If this parameter is omitted, recommendations for member accounts aren't
#' included in the export.
#' 
#' You can specify multiple account IDs per request.
#' @param filters An array of objects to specify a filter that exports a more specific set
#' of license recommendations.
#' @param fieldsToExport The recommendations data to include in the export file. For more
#' information about the fields that can be exported, see [Exported
#' files](https://docs.aws.amazon.com/compute-optimizer/latest/ug/exporting-recommendations.html#exported-files)
#' in the *Compute Optimizer User Guide*.
#' @param s3DestinationConfig &#91;required&#93; 
#' @param fileFormat The format of the export file.
#' 
#' A CSV file is the only export format currently supported.
#' @param includeMemberAccounts Indicates whether to include recommendations for resources in all member
#' accounts of the organization if your account is the management account
#' of an organization.
#' 
#' The member accounts must also be opted in to Compute Optimizer, and
#' trusted access for Compute Optimizer must be enabled in the organization
#' account. For more information, see [Compute Optimizer and Amazon Web
#' Services Organizations trusted
#' access](https://docs.aws.amazon.com/compute-optimizer/latest/ug/security-iam.html#trusted-service-access)
#' in the *Compute Optimizer User Guide*.
#' 
#' If this parameter is omitted, recommendations for member accounts of the
#' organization aren't included in the export file .
#' 
#' This parameter cannot be specified together with the account IDs
#' parameter. The parameters are mutually exclusive.
#'
#' @keywords internal
#'
#' @rdname computeoptimizer_export_license_recommendations
computeoptimizer_export_license_recommendations <- function(accountIds = NULL, filters = NULL, fieldsToExport = NULL, s3DestinationConfig, fileFormat = NULL, includeMemberAccounts = NULL) {
  op <- new_operation(
    name = "ExportLicenseRecommendations",
    http_method = "POST",
    http_path = "/",
    paginator = list()
  )
  input <- .computeoptimizer$export_license_recommendations_input(accountIds = accountIds, filters = filters, fieldsToExport = fieldsToExport, s3DestinationConfig = s3DestinationConfig, fileFormat = fileFormat, includeMemberAccounts = includeMemberAccounts)
  output <- .computeoptimizer$export_license_recommendations_output()
  config <- get_config()
  svc <- .computeoptimizer$service(config)
  request <- new_request(svc, op, input, output)
  response <- send_request(request)
  return(response)
}
.computeoptimizer$operations$export_license_recommendations <- computeoptimizer_export_license_recommendations

#' Returns Auto Scaling group recommendations
#'
#' @description
#' Returns Auto Scaling group recommendations.
#'
#' See [https://www.paws-r-sdk.com/docs/computeoptimizer_get_auto_scaling_group_recommendations/](https://www.paws-r-sdk.com/docs/computeoptimizer_get_auto_scaling_group_recommendations/) for full documentation.
#'
#' @param accountIds The ID of the Amazon Web Services account for which to return Auto
#' Scaling group recommendations.
#' 
#' If your account is the management account of an organization, use this
#' parameter to specify the member account for which you want to return
#' Auto Scaling group recommendations.
#' 
#' Only one account ID can be specified per request.
#' @param autoScalingGroupArns The Amazon Resource Name (ARN) of the Auto Scaling groups for which to
#' return recommendations.
#' @param nextToken The token to advance to the next page of Auto Scaling group
#' recommendations.
#' @param maxResults The maximum number of Auto Scaling group recommendations to return with
#' a single request.
#' 
#' To retrieve the remaining results, make another request with the
#' returned `nextToken` value.
#' @param filters An array of objects to specify a filter that returns a more specific
#' list of Auto Scaling group recommendations.
#' @param recommendationPreferences An object to specify the preferences for the Auto Scaling group
#' recommendations to return in the response.
#'
#' @keywords internal
#'
#' @rdname computeoptimizer_get_auto_scaling_group_recommendations
computeoptimizer_get_auto_scaling_group_recommendations <- function(accountIds = NULL, autoScalingGroupArns = NULL, nextToken = NULL, maxResults = NULL, filters = NULL, recommendationPreferences = NULL) {
  op <- new_operation(
    name = "GetAutoScalingGroupRecommendations",
    http_method = "POST",
    http_path = "/",
    paginator = list()
  )
  input <- .computeoptimizer$get_auto_scaling_group_recommendations_input(accountIds = accountIds, autoScalingGroupArns = autoScalingGroupArns, nextToken = nextToken, maxResults = maxResults, filters = filters, recommendationPreferences = recommendationPreferences)
  output <- .computeoptimizer$get_auto_scaling_group_recommendations_output()
  config <- get_config()
  svc <- .computeoptimizer$service(config)
  request <- new_request(svc, op, input, output)
  response <- send_request(request)
  return(response)
}
.computeoptimizer$operations$get_auto_scaling_group_recommendations <- computeoptimizer_get_auto_scaling_group_recommendations

#' Returns Amazon Elastic Block Store (Amazon EBS) volume recommendations
#'
#' @description
#' Returns Amazon Elastic Block Store (Amazon EBS) volume recommendations.
#'
#' See [https://www.paws-r-sdk.com/docs/computeoptimizer_get_ebs_volume_recommendations/](https://www.paws-r-sdk.com/docs/computeoptimizer_get_ebs_volume_recommendations/) for full documentation.
#'
#' @param volumeArns The Amazon Resource Name (ARN) of the volumes for which to return
#' recommendations.
#' @param nextToken The token to advance to the next page of volume recommendations.
#' @param maxResults The maximum number of volume recommendations to return with a single
#' request.
#' 
#' To retrieve the remaining results, make another request with the
#' returned `nextToken` value.
#' @param filters An array of objects to specify a filter that returns a more specific
#' list of volume recommendations.
#' @param accountIds The ID of the Amazon Web Services account for which to return volume
#' recommendations.
#' 
#' If your account is the management account of an organization, use this
#' parameter to specify the member account for which you want to return
#' volume recommendations.
#' 
#' Only one account ID can be specified per request.
#'
#' @keywords internal
#'
#' @rdname computeoptimizer_get_ebs_volume_recommendations
computeoptimizer_get_ebs_volume_recommendations <- function(volumeArns = NULL, nextToken = NULL, maxResults = NULL, filters = NULL, accountIds = NULL) {
  op <- new_operation(
    name = "GetEBSVolumeRecommendations",
    http_method = "POST",
    http_path = "/",
    paginator = list()
  )
  input <- .computeoptimizer$get_ebs_volume_recommendations_input(volumeArns = volumeArns, nextToken = nextToken, maxResults = maxResults, filters = filters, accountIds = accountIds)
  output <- .computeoptimizer$get_ebs_volume_recommendations_output()
  config <- get_config()
  svc <- .computeoptimizer$service(config)
  request <- new_request(svc, op, input, output)
  response <- send_request(request)
  return(response)
}
.computeoptimizer$operations$get_ebs_volume_recommendations <- computeoptimizer_get_ebs_volume_recommendations

#' Returns Amazon EC2 instance recommendations
#'
#' @description
#' Returns Amazon EC2 instance recommendations.
#'
#' See [https://www.paws-r-sdk.com/docs/computeoptimizer_get_ec2_instance_recommendations/](https://www.paws-r-sdk.com/docs/computeoptimizer_get_ec2_instance_recommendations/) for full documentation.
#'
#' @param instanceArns The Amazon Resource Name (ARN) of the instances for which to return
#' recommendations.
#' @param nextToken The token to advance to the next page of instance recommendations.
#' @param maxResults The maximum number of instance recommendations to return with a single
#' request.
#' 
#' To retrieve the remaining results, make another request with the
#' returned `nextToken` value.
#' @param filters An array of objects to specify a filter that returns a more specific
#' list of instance recommendations.
#' @param accountIds The ID of the Amazon Web Services account for which to return instance
#' recommendations.
#' 
#' If your account is the management account of an organization, use this
#' parameter to specify the member account for which you want to return
#' instance recommendations.
#' 
#' Only one account ID can be specified per request.
#' @param recommendationPreferences An object to specify the preferences for the Amazon EC2 instance
#' recommendations to return in the response.
#'
#' @keywords internal
#'
#' @rdname computeoptimizer_get_ec2_instance_recommendations
computeoptimizer_get_ec2_instance_recommendations <- function(instanceArns = NULL, nextToken = NULL, maxResults = NULL, filters = NULL, accountIds = NULL, recommendationPreferences = NULL) {
  op <- new_operation(
    name = "GetEC2InstanceRecommendations",
    http_method = "POST",
    http_path = "/",
    paginator = list()
  )
  input <- .computeoptimizer$get_ec2_instance_recommendations_input(instanceArns = instanceArns, nextToken = nextToken, maxResults = maxResults, filters = filters, accountIds = accountIds, recommendationPreferences = recommendationPreferences)
  output <- .computeoptimizer$get_ec2_instance_recommendations_output()
  config <- get_config()
  svc <- .computeoptimizer$service(config)
  request <- new_request(svc, op, input, output)
  response <- send_request(request)
  return(response)
}
.computeoptimizer$operations$get_ec2_instance_recommendations <- computeoptimizer_get_ec2_instance_recommendations

#' Returns the projected utilization metrics of Amazon EC2 instance
#' recommendations
#'
#' @description
#' Returns the projected utilization metrics of Amazon EC2 instance recommendations.
#'
#' See [https://www.paws-r-sdk.com/docs/computeoptimizer_get_ec2_recommendation_projected_metrics/](https://www.paws-r-sdk.com/docs/computeoptimizer_get_ec2_recommendation_projected_metrics/) for full documentation.
#'
#' @param instanceArn &#91;required&#93; The Amazon Resource Name (ARN) of the instances for which to return
#' recommendation projected metrics.
#' @param stat &#91;required&#93; The statistic of the projected metrics.
#' @param period &#91;required&#93; The granularity, in seconds, of the projected metrics data points.
#' @param startTime &#91;required&#93; The timestamp of the first projected metrics data point to return.
#' @param endTime &#91;required&#93; The timestamp of the last projected metrics data point to return.
#' @param recommendationPreferences An object to specify the preferences for the Amazon EC2 recommendation
#' projected metrics to return in the response.
#'
#' @keywords internal
#'
#' @rdname computeoptimizer_get_ec2_recommendation_projected_metrics
computeoptimizer_get_ec2_recommendation_projected_metrics <- function(instanceArn, stat, period, startTime, endTime, recommendationPreferences = NULL) {
  op <- new_operation(
    name = "GetEC2RecommendationProjectedMetrics",
    http_method = "POST",
    http_path = "/",
    paginator = list()
  )
  input <- .computeoptimizer$get_ec2_recommendation_projected_metrics_input(instanceArn = instanceArn, stat = stat, period = period, startTime = startTime, endTime = endTime, recommendationPreferences = recommendationPreferences)
  output <- .computeoptimizer$get_ec2_recommendation_projected_metrics_output()
  config <- get_config()
  svc <- .computeoptimizer$service(config)
  request <- new_request(svc, op, input, output)
  response <- send_request(request)
  return(response)
}
.computeoptimizer$operations$get_ec2_recommendation_projected_metrics <- computeoptimizer_get_ec2_recommendation_projected_metrics

#' Returns the projected metrics of Amazon ECS service recommendations
#'
#' @description
#' Returns the projected metrics of Amazon ECS service recommendations.
#'
#' See [https://www.paws-r-sdk.com/docs/computeoptimizer_get_ecs_service_recommendation_projected_metrics/](https://www.paws-r-sdk.com/docs/computeoptimizer_get_ecs_service_recommendation_projected_metrics/) for full documentation.
#'
#' @param serviceArn &#91;required&#93; The ARN that identifies the Amazon ECS service.
#' 
#' The following is the format of the ARN:
#' 
#' `arn:aws:ecs:region:aws_account_id:service/cluster-name/service-name`
#' @param stat &#91;required&#93; The statistic of the projected metrics.
#' @param period &#91;required&#93; The granularity, in seconds, of the projected metrics data points.
#' @param startTime &#91;required&#93; The timestamp of the first projected metrics data point to return.
#' @param endTime &#91;required&#93; The timestamp of the last projected metrics data point to return.
#'
#' @keywords internal
#'
#' @rdname computeoptimizer_get_ecs_servi_recom_proje_metri
computeoptimizer_get_ecs_service_recommendation_projected_metrics <- function(serviceArn, stat, period, startTime, endTime) {
  op <- new_operation(
    name = "GetECSServiceRecommendationProjectedMetrics",
    http_method = "POST",
    http_path = "/",
    paginator = list()
  )
  input <- .computeoptimizer$get_ecs_service_recommendation_projected_metrics_input(serviceArn = serviceArn, stat = stat, period = period, startTime = startTime, endTime = endTime)
  output <- .computeoptimizer$get_ecs_service_recommendation_projected_metrics_output()
  config <- get_config()
  svc <- .computeoptimizer$service(config)
  request <- new_request(svc, op, input, output)
  response <- send_request(request)
  return(response)
}
.computeoptimizer$operations$get_ecs_service_recommendation_projected_metrics <- computeoptimizer_get_ecs_service_recommendation_projected_metrics

#' Returns Amazon ECS service recommendations
#'
#' @description
#' Returns Amazon ECS service recommendations.
#'
#' See [https://www.paws-r-sdk.com/docs/computeoptimizer_get_ecs_service_recommendations/](https://www.paws-r-sdk.com/docs/computeoptimizer_get_ecs_service_recommendations/) for full documentation.
#'
#' @param serviceArns The ARN that identifies the Amazon ECS service.
#' 
#' The following is the format of the ARN:
#' 
#' `arn:aws:ecs:region:aws_account_id:service/cluster-name/service-name`
#' @param nextToken The token to advance to the next page of Amazon ECS service
#' recommendations.
#' @param maxResults The maximum number of Amazon ECS service recommendations to return with
#' a single request.
#' 
#' To retrieve the remaining results, make another request with the
#' returned `nextToken` value.
#' @param filters An array of objects to specify a filter that returns a more specific
#' list of Amazon ECS service recommendations.
#' @param accountIds Return the Amazon ECS service recommendations to the specified Amazon
#' Web Services account IDs.
#' 
#' If your account is the management account or the delegated administrator
#' of an organization, use this parameter to return the Amazon ECS service
#' recommendations to specific member accounts.
#' 
#' You can only specify one account ID per request.
#'
#' @keywords internal
#'
#' @rdname computeoptimizer_get_ecs_service_recommendations
computeoptimizer_get_ecs_service_recommendations <- function(serviceArns = NULL, nextToken = NULL, maxResults = NULL, filters = NULL, accountIds = NULL) {
  op <- new_operation(
    name = "GetECSServiceRecommendations",
    http_method = "POST",
    http_path = "/",
    paginator = list()
  )
  input <- .computeoptimizer$get_ecs_service_recommendations_input(serviceArns = serviceArns, nextToken = nextToken, maxResults = maxResults, filters = filters, accountIds = accountIds)
  output <- .computeoptimizer$get_ecs_service_recommendations_output()
  config <- get_config()
  svc <- .computeoptimizer$service(config)
  request <- new_request(svc, op, input, output)
  response <- send_request(request)
  return(response)
}
.computeoptimizer$operations$get_ecs_service_recommendations <- computeoptimizer_get_ecs_service_recommendations

#' Returns the recommendation preferences that are in effect for a given
#' resource, such as enhanced infrastructure metrics
#'
#' @description
#' Returns the recommendation preferences that are in effect for a given resource, such as enhanced infrastructure metrics. Considers all applicable preferences that you might have set at the resource, account, and organization level.
#'
#' See [https://www.paws-r-sdk.com/docs/computeoptimizer_get_effective_recommendation_preferences/](https://www.paws-r-sdk.com/docs/computeoptimizer_get_effective_recommendation_preferences/) for full documentation.
#'
#' @param resourceArn &#91;required&#93; The Amazon Resource Name (ARN) of the resource for which to confirm
#' effective recommendation preferences. Only EC2 instance and Auto Scaling
#' group ARNs are currently supported.
#'
#' @keywords internal
#'
#' @rdname computeoptimizer_get_effective_recommendation_preferences
computeoptimizer_get_effective_recommendation_preferences <- function(resourceArn) {
  op <- new_operation(
    name = "GetEffectiveRecommendationPreferences",
    http_method = "POST",
    http_path = "/",
    paginator = list()
  )
  input <- .computeoptimizer$get_effective_recommendation_preferences_input(resourceArn = resourceArn)
  output <- .computeoptimizer$get_effective_recommendation_preferences_output()
  config <- get_config()
  svc <- .computeoptimizer$service(config)
  request <- new_request(svc, op, input, output)
  response <- send_request(request)
  return(response)
}
.computeoptimizer$operations$get_effective_recommendation_preferences <- computeoptimizer_get_effective_recommendation_preferences

#' Returns the enrollment (opt in) status of an account to the Compute
#' Optimizer service
#'
#' @description
#' Returns the enrollment (opt in) status of an account to the Compute Optimizer service.
#'
#' See [https://www.paws-r-sdk.com/docs/computeoptimizer_get_enrollment_status/](https://www.paws-r-sdk.com/docs/computeoptimizer_get_enrollment_status/) for full documentation.
#'
#' @keywords internal
#'
#' @rdname computeoptimizer_get_enrollment_status
computeoptimizer_get_enrollment_status <- function() {
  op <- new_operation(
    name = "GetEnrollmentStatus",
    http_method = "POST",
    http_path = "/",
    paginator = list()
  )
  input <- .computeoptimizer$get_enrollment_status_input()
  output <- .computeoptimizer$get_enrollment_status_output()
  config <- get_config()
  svc <- .computeoptimizer$service(config)
  request <- new_request(svc, op, input, output)
  response <- send_request(request)
  return(response)
}
.computeoptimizer$operations$get_enrollment_status <- computeoptimizer_get_enrollment_status

#' Returns the Compute Optimizer enrollment (opt-in) status of organization
#' member accounts, if your account is an organization management account
#'
#' @description
#' Returns the Compute Optimizer enrollment (opt-in) status of organization member accounts, if your account is an organization management account.
#'
#' See [https://www.paws-r-sdk.com/docs/computeoptimizer_get_enrollment_statuses_for_organization/](https://www.paws-r-sdk.com/docs/computeoptimizer_get_enrollment_statuses_for_organization/) for full documentation.
#'
#' @param filters An array of objects to specify a filter that returns a more specific
#' list of account enrollment statuses.
#' @param nextToken The token to advance to the next page of account enrollment statuses.
#' @param maxResults The maximum number of account enrollment statuses to return with a
#' single request. You can specify up to 100 statuses to return with each
#' request.
#' 
#' To retrieve the remaining results, make another request with the
#' returned `nextToken` value.
#'
#' @keywords internal
#'
#' @rdname computeoptimizer_get_enrollment_statuses_for_organization
computeoptimizer_get_enrollment_statuses_for_organization <- function(filters = NULL, nextToken = NULL, maxResults = NULL) {
  op <- new_operation(
    name = "GetEnrollmentStatusesForOrganization",
    http_method = "POST",
    http_path = "/",
    paginator = list(input_token = "nextToken", output_token = "nextToken", limit_key = "maxResults", result_key = "accountEnrollmentStatuses")
  )
  input <- .computeoptimizer$get_enrollment_statuses_for_organization_input(filters = filters, nextToken = nextToken, maxResults = maxResults)
  output <- .computeoptimizer$get_enrollment_statuses_for_organization_output()
  config <- get_config()
  svc <- .computeoptimizer$service(config)
  request <- new_request(svc, op, input, output)
  response <- send_request(request)
  return(response)
}
.computeoptimizer$operations$get_enrollment_statuses_for_organization <- computeoptimizer_get_enrollment_statuses_for_organization

#' Returns Lambda function recommendations
#'
#' @description
#' Returns Lambda function recommendations.
#'
#' See [https://www.paws-r-sdk.com/docs/computeoptimizer_get_lambda_function_recommendations/](https://www.paws-r-sdk.com/docs/computeoptimizer_get_lambda_function_recommendations/) for full documentation.
#'
#' @param functionArns The Amazon Resource Name (ARN) of the functions for which to return
#' recommendations.
#' 
#' You can specify a qualified or unqualified ARN. If you specify an
#' unqualified ARN without a function version suffix, Compute Optimizer
#' will return recommendations for the latest (`$LATEST`) version of the
#' function. If you specify a qualified ARN with a version suffix, Compute
#' Optimizer will return recommendations for the specified function
#' version. For more information about using function versions, see [Using
#' versions](https://docs.aws.amazon.com/lambda/latest/dg/configuration-versions.html#versioning-versions-using)
#' in the *Lambda Developer Guide*.
#' @param accountIds The ID of the Amazon Web Services account for which to return function
#' recommendations.
#' 
#' If your account is the management account of an organization, use this
#' parameter to specify the member account for which you want to return
#' function recommendations.
#' 
#' Only one account ID can be specified per request.
#' @param filters An array of objects to specify a filter that returns a more specific
#' list of function recommendations.
#' @param nextToken The token to advance to the next page of function recommendations.
#' @param maxResults The maximum number of function recommendations to return with a single
#' request.
#' 
#' To retrieve the remaining results, make another request with the
#' returned `nextToken` value.
#'
#' @keywords internal
#'
#' @rdname computeoptimizer_get_lambda_function_recommendations
computeoptimizer_get_lambda_function_recommendations <- function(functionArns = NULL, accountIds = NULL, filters = NULL, nextToken = NULL, maxResults = NULL) {
  op <- new_operation(
    name = "GetLambdaFunctionRecommendations",
    http_method = "POST",
    http_path = "/",
    paginator = list(input_token = "nextToken", output_token = "nextToken", limit_key = "maxResults", result_key = "lambdaFunctionRecommendations")
  )
  input <- .computeoptimizer$get_lambda_function_recommendations_input(functionArns = functionArns, accountIds = accountIds, filters = filters, nextToken = nextToken, maxResults = maxResults)
  output <- .computeoptimizer$get_lambda_function_recommendations_output()
  config <- get_config()
  svc <- .computeoptimizer$service(config)
  request <- new_request(svc, op, input, output)
  response <- send_request(request)
  return(response)
}
.computeoptimizer$operations$get_lambda_function_recommendations <- computeoptimizer_get_lambda_function_recommendations

#' Returns license recommendations for Amazon EC2 instances that run on a
#' specific license
#'
#' @description
#' Returns license recommendations for Amazon EC2 instances that run on a specific license.
#'
#' See [https://www.paws-r-sdk.com/docs/computeoptimizer_get_license_recommendations/](https://www.paws-r-sdk.com/docs/computeoptimizer_get_license_recommendations/) for full documentation.
#'
#' @param resourceArns The ARN that identifies the Amazon EC2 instance.
#' 
#' The following is the format of the ARN:
#' 
#' `arn:aws:ec2:region:aws_account_id:instance/instance-id`
#' @param nextToken The token to advance to the next page of license recommendations.
#' @param maxResults The maximum number of license recommendations to return with a single
#' request.
#' 
#' To retrieve the remaining results, make another request with the
#' returned `nextToken` value.
#' @param filters An array of objects to specify a filter that returns a more specific
#' list of license recommendations.
#' @param accountIds The ID of the Amazon Web Services account for which to return license
#' recommendations.
#' 
#' If your account is the management account of an organization, use this
#' parameter to specify the member account for which you want to return
#' license recommendations.
#' 
#' Only one account ID can be specified per request.
#'
#' @keywords internal
#'
#' @rdname computeoptimizer_get_license_recommendations
computeoptimizer_get_license_recommendations <- function(resourceArns = NULL, nextToken = NULL, maxResults = NULL, filters = NULL, accountIds = NULL) {
  op <- new_operation(
    name = "GetLicenseRecommendations",
    http_method = "POST",
    http_path = "/",
    paginator = list()
  )
  input <- .computeoptimizer$get_license_recommendations_input(resourceArns = resourceArns, nextToken = nextToken, maxResults = maxResults, filters = filters, accountIds = accountIds)
  output <- .computeoptimizer$get_license_recommendations_output()
  config <- get_config()
  svc <- .computeoptimizer$service(config)
  request <- new_request(svc, op, input, output)
  response <- send_request(request)
  return(response)
}
.computeoptimizer$operations$get_license_recommendations <- computeoptimizer_get_license_recommendations

#' Returns existing recommendation preferences, such as enhanced
#' infrastructure metrics
#'
#' @description
#' Returns existing recommendation preferences, such as enhanced infrastructure metrics.
#'
#' See [https://www.paws-r-sdk.com/docs/computeoptimizer_get_recommendation_preferences/](https://www.paws-r-sdk.com/docs/computeoptimizer_get_recommendation_preferences/) for full documentation.
#'
#' @param resourceType &#91;required&#93; The target resource type of the recommendation preference for which to
#' return preferences.
#' 
#' The `Ec2Instance` option encompasses standalone instances and instances
#' that are part of Auto Scaling groups. The `AutoScalingGroup` option
#' encompasses only instances that are part of an Auto Scaling group.
#' 
#' The valid values for this parameter are `Ec2Instance` and
#' `AutoScalingGroup`.
#' @param scope An object that describes the scope of the recommendation preference to
#' return.
#' 
#' You can return recommendation preferences that are created at the
#' organization level (for management accounts of an organization only),
#' account level, and resource level. For more information, see [Activating
#' enhanced infrastructure
#' metrics](https://docs.aws.amazon.com/compute-optimizer/latest/ug/enhanced-infrastructure-metrics.html)
#' in the *Compute Optimizer User Guide*.
#' @param nextToken The token to advance to the next page of recommendation preferences.
#' @param maxResults The maximum number of recommendation preferences to return with a single
#' request.
#' 
#' To retrieve the remaining results, make another request with the
#' returned `nextToken` value.
#'
#' @keywords internal
#'
#' @rdname computeoptimizer_get_recommendation_preferences
computeoptimizer_get_recommendation_preferences <- function(resourceType, scope = NULL, nextToken = NULL, maxResults = NULL) {
  op <- new_operation(
    name = "GetRecommendationPreferences",
    http_method = "POST",
    http_path = "/",
    paginator = list(input_token = "nextToken", output_token = "nextToken", limit_key = "maxResults", result_key = "recommendationPreferencesDetails")
  )
  input <- .computeoptimizer$get_recommendation_preferences_input(resourceType = resourceType, scope = scope, nextToken = nextToken, maxResults = maxResults)
  output <- .computeoptimizer$get_recommendation_preferences_output()
  config <- get_config()
  svc <- .computeoptimizer$service(config)
  request <- new_request(svc, op, input, output)
  response <- send_request(request)
  return(response)
}
.computeoptimizer$operations$get_recommendation_preferences <- computeoptimizer_get_recommendation_preferences

#' Returns the optimization findings for an account
#'
#' @description
#' Returns the optimization findings for an account.
#'
#' See [https://www.paws-r-sdk.com/docs/computeoptimizer_get_recommendation_summaries/](https://www.paws-r-sdk.com/docs/computeoptimizer_get_recommendation_summaries/) for full documentation.
#'
#' @param accountIds The ID of the Amazon Web Services account for which to return
#' recommendation summaries.
#' 
#' If your account is the management account of an organization, use this
#' parameter to specify the member account for which you want to return
#' recommendation summaries.
#' 
#' Only one account ID can be specified per request.
#' @param nextToken The token to advance to the next page of recommendation summaries.
#' @param maxResults The maximum number of recommendation summaries to return with a single
#' request.
#' 
#' To retrieve the remaining results, make another request with the
#' returned `nextToken` value.
#'
#' @keywords internal
#'
#' @rdname computeoptimizer_get_recommendation_summaries
computeoptimizer_get_recommendation_summaries <- function(accountIds = NULL, nextToken = NULL, maxResults = NULL) {
  op <- new_operation(
    name = "GetRecommendationSummaries",
    http_method = "POST",
    http_path = "/",
    paginator = list(input_token = "nextToken", output_token = "nextToken", limit_key = "maxResults", result_key = "recommendationSummaries")
  )
  input <- .computeoptimizer$get_recommendation_summaries_input(accountIds = accountIds, nextToken = nextToken, maxResults = maxResults)
  output <- .computeoptimizer$get_recommendation_summaries_output()
  config <- get_config()
  svc <- .computeoptimizer$service(config)
  request <- new_request(svc, op, input, output)
  response <- send_request(request)
  return(response)
}
.computeoptimizer$operations$get_recommendation_summaries <- computeoptimizer_get_recommendation_summaries

#' Creates a new recommendation preference or updates an existing
#' recommendation preference, such as enhanced infrastructure metrics
#'
#' @description
#' Creates a new recommendation preference or updates an existing recommendation preference, such as enhanced infrastructure metrics.
#'
#' See [https://www.paws-r-sdk.com/docs/computeoptimizer_put_recommendation_preferences/](https://www.paws-r-sdk.com/docs/computeoptimizer_put_recommendation_preferences/) for full documentation.
#'
#' @param resourceType &#91;required&#93; The target resource type of the recommendation preference to create.
#' 
#' The `Ec2Instance` option encompasses standalone instances and instances
#' that are part of Auto Scaling groups. The `AutoScalingGroup` option
#' encompasses only instances that are part of an Auto Scaling group.
#' 
#' The valid values for this parameter are `Ec2Instance` and
#' `AutoScalingGroup`.
#' @param scope An object that describes the scope of the recommendation preference to
#' create.
#' 
#' You can create recommendation preferences at the organization level (for
#' management accounts of an organization only), account level, and
#' resource level. For more information, see [Activating enhanced
#' infrastructure
#' metrics](https://docs.aws.amazon.com/compute-optimizer/latest/ug/enhanced-infrastructure-metrics.html)
#' in the *Compute Optimizer User Guide*.
#' 
#' You cannot create recommendation preferences for Auto Scaling groups at
#' the organization and account levels. You can create recommendation
#' preferences for Auto Scaling groups only at the resource level by
#' specifying a scope name of `ResourceArn` and a scope value of the Auto
#' Scaling group Amazon Resource Name (ARN). This will configure the
#' preference for all instances that are part of the specified Auto Scaling
#' group. You also cannot create recommendation preferences at the resource
#' level for instances that are part of an Auto Scaling group. You can
#' create recommendation preferences at the resource level only for
#' standalone instances.
#' @param enhancedInfrastructureMetrics The status of the enhanced infrastructure metrics recommendation
#' preference to create or update.
#' 
#' Specify the `Active` status to activate the preference, or specify
#' `Inactive` to deactivate the preference.
#' 
#' For more information, see [Enhanced infrastructure
#' metrics](https://docs.aws.amazon.com/compute-optimizer/latest/ug/enhanced-infrastructure-metrics.html)
#' in the *Compute Optimizer User Guide*.
#' @param inferredWorkloadTypes The status of the inferred workload types recommendation preference to
#' create or update.
#' 
#' The inferred workload type feature is active by default. To deactivate
#' it, create a recommendation preference.
#' 
#' Specify the `Inactive` status to deactivate the feature, or specify
#' `Active` to activate it.
#' 
#' For more information, see [Inferred workload
#' types](https://docs.aws.amazon.com/compute-optimizer/latest/ug/) in the
#' *Compute Optimizer User Guide*.
#' @param externalMetricsPreference The provider of the external metrics recommendation preference to create
#' or update.
#' 
#' Specify a valid provider in the `source` field to activate the
#' preference. To delete this preference, see the
#' [`delete_recommendation_preferences`][computeoptimizer_delete_recommendation_preferences]
#' action.
#' 
#' This preference can only be set for the `Ec2Instance` resource type.
#' 
#' For more information, see [External metrics
#' ingestion](https://docs.aws.amazon.com/compute-optimizer/latest/ug/external-metrics-ingestion.html)
#' in the *Compute Optimizer User Guide*.
#'
#' @keywords internal
#'
#' @rdname computeoptimizer_put_recommendation_preferences
computeoptimizer_put_recommendation_preferences <- function(resourceType, scope = NULL, enhancedInfrastructureMetrics = NULL, inferredWorkloadTypes = NULL, externalMetricsPreference = NULL) {
  op <- new_operation(
    name = "PutRecommendationPreferences",
    http_method = "POST",
    http_path = "/",
    paginator = list()
  )
  input <- .computeoptimizer$put_recommendation_preferences_input(resourceType = resourceType, scope = scope, enhancedInfrastructureMetrics = enhancedInfrastructureMetrics, inferredWorkloadTypes = inferredWorkloadTypes, externalMetricsPreference = externalMetricsPreference)
  output <- .computeoptimizer$put_recommendation_preferences_output()
  config <- get_config()
  svc <- .computeoptimizer$service(config)
  request <- new_request(svc, op, input, output)
  response <- send_request(request)
  return(response)
}
.computeoptimizer$operations$put_recommendation_preferences <- computeoptimizer_put_recommendation_preferences

#' Updates the enrollment (opt in and opt out) status of an account to the
#' Compute Optimizer service
#'
#' @description
#' Updates the enrollment (opt in and opt out) status of an account to the Compute Optimizer service.
#'
#' See [https://www.paws-r-sdk.com/docs/computeoptimizer_update_enrollment_status/](https://www.paws-r-sdk.com/docs/computeoptimizer_update_enrollment_status/) for full documentation.
#'
#' @param status &#91;required&#93; The new enrollment status of the account.
#' 
#' The following status options are available:
#' 
#' -   `Active` - Opts in your account to the Compute Optimizer service.
#'     Compute Optimizer begins analyzing the configuration and utilization
#'     metrics of your Amazon Web Services resources after you opt in. For
#'     more information, see [Metrics analyzed by Compute
#'     Optimizer](https://docs.aws.amazon.com/compute-optimizer/latest/ug/metrics.html)
#'     in the *Compute Optimizer User Guide*.
#' 
#' -   `Inactive` - Opts out your account from the Compute Optimizer
#'     service. Your account's recommendations and related metrics data
#'     will be deleted from Compute Optimizer after you opt out.
#' 
#' The `Pending` and `Failed` options cannot be used to update the
#' enrollment status of an account. They are returned in the response of a
#' request to update the enrollment status of an account.
#' @param includeMemberAccounts Indicates whether to enroll member accounts of the organization if the
#' account is the management account of an organization.
#'
#' @keywords internal
#'
#' @rdname computeoptimizer_update_enrollment_status
computeoptimizer_update_enrollment_status <- function(status, includeMemberAccounts = NULL) {
  op <- new_operation(
    name = "UpdateEnrollmentStatus",
    http_method = "POST",
    http_path = "/",
    paginator = list()
  )
  input <- .computeoptimizer$update_enrollment_status_input(status = status, includeMemberAccounts = includeMemberAccounts)
  output <- .computeoptimizer$update_enrollment_status_output()
  config <- get_config()
  svc <- .computeoptimizer$service(config)
  request <- new_request(svc, op, input, output)
  response <- send_request(request)
  return(response)
}
.computeoptimizer$operations$update_enrollment_status <- computeoptimizer_update_enrollment_status

Try the paws.compute package in your browser

Any scripts or data that you put into this service are public.

paws.compute documentation built on Sept. 12, 2023, 1:28 a.m.