aws-sdk-qapps 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG.md +8 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-qapps/client.rb +2443 -0
- data/lib/aws-sdk-qapps/client_api.rb +991 -0
- data/lib/aws-sdk-qapps/customizations.rb +0 -0
- data/lib/aws-sdk-qapps/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-qapps/endpoint_provider.rb +54 -0
- data/lib/aws-sdk-qapps/endpoints.rb +338 -0
- data/lib/aws-sdk-qapps/errors.rb +264 -0
- data/lib/aws-sdk-qapps/plugins/endpoints.rb +116 -0
- data/lib/aws-sdk-qapps/resource.rb +26 -0
- data/lib/aws-sdk-qapps/types.rb +2136 -0
- data/lib/aws-sdk-qapps/waiters.rb +15 -0
- data/lib/aws-sdk-qapps.rb +58 -0
- data/sig/client.rbs +625 -0
- data/sig/errors.rbs +57 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +622 -0
- data/sig/waiters.rbs +13 -0
- metadata +100 -0
@@ -0,0 +1,15 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# WARNING ABOUT GENERATED CODE
|
4
|
+
#
|
5
|
+
# This file is generated. See the contributing guide for more information:
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
|
+
#
|
8
|
+
# WARNING ABOUT GENERATED CODE
|
9
|
+
|
10
|
+
require 'aws-sdk-core/waiters'
|
11
|
+
|
12
|
+
module Aws::QApps
|
13
|
+
module Waiters
|
14
|
+
end
|
15
|
+
end
|
@@ -0,0 +1,58 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# WARNING ABOUT GENERATED CODE
|
4
|
+
#
|
5
|
+
# This file is generated. See the contributing guide for more information:
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
|
+
#
|
8
|
+
# WARNING ABOUT GENERATED CODE
|
9
|
+
|
10
|
+
|
11
|
+
require 'aws-sdk-core'
|
12
|
+
require 'aws-sigv4'
|
13
|
+
|
14
|
+
require_relative 'aws-sdk-qapps/types'
|
15
|
+
require_relative 'aws-sdk-qapps/client_api'
|
16
|
+
require_relative 'aws-sdk-qapps/plugins/endpoints.rb'
|
17
|
+
require_relative 'aws-sdk-qapps/client'
|
18
|
+
require_relative 'aws-sdk-qapps/errors'
|
19
|
+
require_relative 'aws-sdk-qapps/waiters'
|
20
|
+
require_relative 'aws-sdk-qapps/resource'
|
21
|
+
require_relative 'aws-sdk-qapps/endpoint_parameters'
|
22
|
+
require_relative 'aws-sdk-qapps/endpoint_provider'
|
23
|
+
require_relative 'aws-sdk-qapps/endpoints'
|
24
|
+
require_relative 'aws-sdk-qapps/customizations'
|
25
|
+
|
26
|
+
# This module provides support for QApps. This module is available in the
|
27
|
+
# `aws-sdk-qapps` gem.
|
28
|
+
#
|
29
|
+
# # Client
|
30
|
+
#
|
31
|
+
# The {Client} class provides one method for each API operation. Operation
|
32
|
+
# methods each accept a hash of request parameters and return a response
|
33
|
+
# structure.
|
34
|
+
#
|
35
|
+
# q_apps = Aws::QApps::Client.new
|
36
|
+
# resp = q_apps.associate_library_item_review(params)
|
37
|
+
#
|
38
|
+
# See {Client} for more information.
|
39
|
+
#
|
40
|
+
# # Errors
|
41
|
+
#
|
42
|
+
# Errors returned from QApps are defined in the
|
43
|
+
# {Errors} module and all extend {Errors::ServiceError}.
|
44
|
+
#
|
45
|
+
# begin
|
46
|
+
# # do stuff
|
47
|
+
# rescue Aws::QApps::Errors::ServiceError
|
48
|
+
# # rescues all QApps API errors
|
49
|
+
# end
|
50
|
+
#
|
51
|
+
# See {Errors} for more information.
|
52
|
+
#
|
53
|
+
# @!group service
|
54
|
+
module Aws::QApps
|
55
|
+
|
56
|
+
GEM_VERSION = '1.0.0'
|
57
|
+
|
58
|
+
end
|