lib/aws-sdk-ecr/client.rb in aws-sdk-ecr-1.0.0 vs lib/aws-sdk-ecr/client.rb in aws-sdk-ecr-1.1.0
- old
+ new
@@ -239,11 +239,12 @@
# * {Types::BatchDeleteImageResponse#failures #failures} => Array<Types::ImageFailure>
#
#
# @example Example: To delete multiple images
#
- # # This example deletes images with the tags precise and trusty in a repository called ubuntu in the default registry for an account.
+ # # This example deletes images with the tags precise and trusty in a repository called ubuntu in the default registry for
+ # # an account.
#
# resp = client.batch_delete_image({
# image_ids: [
# {
# image_tag: "precise",
@@ -327,11 +328,12 @@
# * {Types::BatchGetImageResponse#failures #failures} => Array<Types::ImageFailure>
#
#
# @example Example: To obtain multiple images in a single request
#
- # # This example obtains information for an image with a specified image digest ID from the repository named ubuntu in the current account.
+ # # This example obtains information for an image with a specified image digest ID from the repository named ubuntu in the
+ # # current account.
#
# resp = client.batch_get_image({
# image_ids: [
# {
# image_tag: "precise",
@@ -465,11 +467,12 @@
# * {Types::CreateRepositoryResponse#repository #repository} => Types::Repository
#
#
# @example Example: To create a new repository
#
- # # This example creates a repository called nginx-web-app inside the project-a namespace in the default registry for an account.
+ # # This example creates a repository called nginx-web-app inside the project-a namespace in the default registry for an
+ # # account.
#
# resp = client.create_repository({
# repository_name: "project-a/nginx-web-app",
# })
#
@@ -524,11 +527,12 @@
# * {Types::DeleteRepositoryResponse#repository #repository} => Types::Repository
#
#
# @example Example: To force delete a repository
#
- # # This example force deletes a repository named ubuntu in the default registry for an account. The force parameter is required if the repository contains images.
+ # # This example force deletes a repository named ubuntu in the default registry for an account. The force parameter is
+ # # required if the repository contains images.
#
# resp = client.delete_repository({
# force: true,
# repository_name: "ubuntu",
# })
@@ -751,11 +755,12 @@
# * {Types::DescribeRepositoriesResponse#next_token #next_token} => String
#
#
# @example Example: To describe all repositories in the current account
#
- # # The following example obtains a list and description of all repositories in the default registry to which the current user has access.
+ # # The following example obtains a list and description of all repositories in the default registry to which the current
+ # # user has access.
#
# resp = client.describe_repositories({
# })
#
# resp.to_h outputs the following:
@@ -1281,10 +1286,10 @@
operation: config.api.operation(operation_name),
client: self,
params: params,
config: config)
context[:gem_name] = 'aws-sdk-ecr'
- context[:gem_version] = '1.0.0'
+ context[:gem_version] = '1.1.0'
Seahorse::Client::Request.new(handlers, context)
end
# @api private
# @deprecated