aws-sdk-kms 1.23.0 → 1.77.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/lib/aws-sdk-kms.rb CHANGED
@@ -1,18 +1,25 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
4
- # https://github.com/aws/aws-sdk-ruby/blob/master/CONTRIBUTING.md
6
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
7
  #
6
8
  # WARNING ABOUT GENERATED CODE
7
9
 
10
+
8
11
  require 'aws-sdk-core'
9
12
  require 'aws-sigv4'
10
13
 
11
14
  require_relative 'aws-sdk-kms/types'
12
15
  require_relative 'aws-sdk-kms/client_api'
16
+ require_relative 'aws-sdk-kms/plugins/endpoints.rb'
13
17
  require_relative 'aws-sdk-kms/client'
14
18
  require_relative 'aws-sdk-kms/errors'
15
19
  require_relative 'aws-sdk-kms/resource'
20
+ require_relative 'aws-sdk-kms/endpoint_parameters'
21
+ require_relative 'aws-sdk-kms/endpoint_provider'
22
+ require_relative 'aws-sdk-kms/endpoints'
16
23
  require_relative 'aws-sdk-kms/customizations'
17
24
 
18
25
  # This module provides support for AWS Key Management Service. This module is available in the
@@ -24,24 +31,27 @@ require_relative 'aws-sdk-kms/customizations'
24
31
  # methods each accept a hash of request parameters and return a response
25
32
  # structure.
26
33
  #
34
+ # kms = Aws::KMS::Client.new
35
+ # resp = kms.cancel_key_deletion(params)
36
+ #
27
37
  # See {Client} for more information.
28
38
  #
29
39
  # # Errors
30
40
  #
31
- # Errors returned from AWS Key Management Service all
32
- # extend {Errors::ServiceError}.
41
+ # Errors returned from AWS Key Management Service are defined in the
42
+ # {Errors} module and all extend {Errors::ServiceError}.
33
43
  #
34
44
  # begin
35
45
  # # do stuff
36
46
  # rescue Aws::KMS::Errors::ServiceError
37
- # # rescues all service API errors
47
+ # # rescues all AWS Key Management Service API errors
38
48
  # end
39
49
  #
40
50
  # See {Errors} for more information.
41
51
  #
42
- # @service
52
+ # @!group service
43
53
  module Aws::KMS
44
54
 
45
- GEM_VERSION = '1.23.0'
55
+ GEM_VERSION = '1.77.0'
46
56
 
47
57
  end