aws-sdk-simpledbv2 1.0.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/sig/errors.rbs ADDED
@@ -0,0 +1,37 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module SimpleDBv2
10
+ module Errors
11
+ class ServiceError < ::Aws::Errors::ServiceError
12
+ end
13
+
14
+ class ConflictException < ::Aws::Errors::ServiceError
15
+ def message: () -> ::String
16
+ end
17
+ class InvalidNextTokenException < ::Aws::Errors::ServiceError
18
+ def message: () -> ::String
19
+ end
20
+ class InvalidParameterCombinationException < ::Aws::Errors::ServiceError
21
+ def message: () -> ::String
22
+ end
23
+ class InvalidParameterValueException < ::Aws::Errors::ServiceError
24
+ def message: () -> ::String
25
+ end
26
+ class NoSuchDomainException < ::Aws::Errors::ServiceError
27
+ def message: () -> ::String
28
+ end
29
+ class NoSuchExportException < ::Aws::Errors::ServiceError
30
+ def message: () -> ::String
31
+ end
32
+ class NumberExportsLimitExceeded < ::Aws::Errors::ServiceError
33
+ def message: () -> ::String
34
+ end
35
+ end
36
+ end
37
+ end
data/sig/resource.rbs ADDED
@@ -0,0 +1,85 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module SimpleDBv2
10
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SimpleDBv2/Resource.html
11
+ class Resource
12
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SimpleDBv2/Resource.html#initialize-instance_method
13
+ def initialize: (
14
+ ?client: Client,
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?account_id: String,
19
+ ?active_endpoint_cache: bool,
20
+ ?adaptive_retry_wait_to_fill: bool,
21
+ ?auth_scheme_preference: Array[String],
22
+ ?client_side_monitoring: bool,
23
+ ?client_side_monitoring_client_id: String,
24
+ ?client_side_monitoring_host: String,
25
+ ?client_side_monitoring_port: Integer,
26
+ ?client_side_monitoring_publisher: untyped,
27
+ ?convert_params: bool,
28
+ ?correct_clock_skew: bool,
29
+ ?defaults_mode: String,
30
+ ?disable_host_prefix_injection: bool,
31
+ ?disable_request_compression: bool,
32
+ ?endpoint: String,
33
+ ?endpoint_cache_max_entries: Integer,
34
+ ?endpoint_cache_max_threads: Integer,
35
+ ?endpoint_cache_poll_interval: Integer,
36
+ ?endpoint_discovery: bool,
37
+ ?ignore_configured_endpoint_urls: bool,
38
+ ?log_formatter: untyped,
39
+ ?log_level: Symbol,
40
+ ?logger: untyped,
41
+ ?max_attempts: Integer,
42
+ ?profile: String,
43
+ ?request_checksum_calculation: String,
44
+ ?request_min_compression_size_bytes: Integer,
45
+ ?response_checksum_validation: String,
46
+ ?retry_backoff: Proc,
47
+ ?retry_base_delay: Float,
48
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
49
+ ?retry_limit: Integer,
50
+ ?retry_max_delay: Integer,
51
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
52
+ ?sdk_ua_app_id: String,
53
+ ?secret_access_key: String,
54
+ ?session_token: String,
55
+ ?sigv4a_signing_region_set: Array[String],
56
+ ?stub_responses: untyped,
57
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
58
+ ?token_provider: untyped,
59
+ ?use_dualstack_endpoint: bool,
60
+ ?use_fips_endpoint: bool,
61
+ ?validate_params: bool,
62
+ ?endpoint_provider: untyped,
63
+ ?http_proxy: String,
64
+ ?http_open_timeout: (Float | Integer),
65
+ ?http_read_timeout: (Float | Integer),
66
+ ?http_idle_timeout: (Float | Integer),
67
+ ?http_continue_timeout: (Float | Integer),
68
+ ?ssl_timeout: (Float | Integer | nil),
69
+ ?http_wire_trace: bool,
70
+ ?ssl_verify_peer: bool,
71
+ ?ssl_ca_bundle: String,
72
+ ?ssl_ca_directory: String,
73
+ ?ssl_ca_store: String,
74
+ ?on_chunk_received: Proc,
75
+ ?on_chunk_sent: Proc,
76
+ ?raise_response_errors: bool
77
+ ) -> void
78
+ | (?Hash[Symbol, untyped]) -> void
79
+
80
+ def client: () -> Client
81
+
82
+
83
+ end
84
+ end
85
+ end
data/sig/types.rbs ADDED
@@ -0,0 +1,109 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws::SimpleDBv2
9
+ module Types
10
+
11
+ class ConflictException
12
+ attr_accessor message: ::String
13
+ SENSITIVE: []
14
+ end
15
+
16
+ class ExportSummary
17
+ attr_accessor export_arn: ::String
18
+ attr_accessor export_status: ("PENDING" | "IN_PROGRESS" | "SUCCEEDED" | "FAILED")
19
+ attr_accessor requested_at: ::Time
20
+ attr_accessor domain_name: ::String
21
+ SENSITIVE: []
22
+ end
23
+
24
+ class GetExportRequest
25
+ attr_accessor export_arn: ::String
26
+ SENSITIVE: []
27
+ end
28
+
29
+ class GetExportResponse
30
+ attr_accessor export_arn: ::String
31
+ attr_accessor client_token: ::String
32
+ attr_accessor export_status: ("PENDING" | "IN_PROGRESS" | "SUCCEEDED" | "FAILED")
33
+ attr_accessor domain_name: ::String
34
+ attr_accessor requested_at: ::Time
35
+ attr_accessor s3_bucket: ::String
36
+ attr_accessor s3_key_prefix: ::String
37
+ attr_accessor s3_sse_algorithm: ("AES256" | "KMS")
38
+ attr_accessor s3_sse_kms_key_id: ::String
39
+ attr_accessor s3_bucket_owner: ::String
40
+ attr_accessor failure_code: ::String
41
+ attr_accessor failure_message: ::String
42
+ attr_accessor export_manifest: ::String
43
+ attr_accessor items_count: ::Integer
44
+ attr_accessor export_data_cutoff_time: ::Time
45
+ SENSITIVE: []
46
+ end
47
+
48
+ class InvalidNextTokenException
49
+ attr_accessor message: ::String
50
+ SENSITIVE: []
51
+ end
52
+
53
+ class InvalidParameterCombinationException
54
+ attr_accessor message: ::String
55
+ SENSITIVE: []
56
+ end
57
+
58
+ class InvalidParameterValueException
59
+ attr_accessor message: ::String
60
+ SENSITIVE: []
61
+ end
62
+
63
+ class ListExportsRequest
64
+ attr_accessor domain_name: ::String
65
+ attr_accessor max_results: ::Integer
66
+ attr_accessor next_token: ::String
67
+ SENSITIVE: []
68
+ end
69
+
70
+ class ListExportsResponse
71
+ attr_accessor export_summaries: ::Array[Types::ExportSummary]
72
+ attr_accessor next_token: ::String
73
+ SENSITIVE: []
74
+ end
75
+
76
+ class NoSuchDomainException
77
+ attr_accessor message: ::String
78
+ SENSITIVE: []
79
+ end
80
+
81
+ class NoSuchExportException
82
+ attr_accessor message: ::String
83
+ SENSITIVE: []
84
+ end
85
+
86
+ class NumberExportsLimitExceeded
87
+ attr_accessor message: ::String
88
+ SENSITIVE: []
89
+ end
90
+
91
+ class StartDomainExportRequest
92
+ attr_accessor client_token: ::String
93
+ attr_accessor domain_name: ::String
94
+ attr_accessor s3_bucket: ::String
95
+ attr_accessor s3_key_prefix: ::String
96
+ attr_accessor s3_sse_algorithm: ("AES256" | "KMS")
97
+ attr_accessor s3_sse_kms_key_id: ::String
98
+ attr_accessor s3_bucket_owner: ::String
99
+ SENSITIVE: []
100
+ end
101
+
102
+ class StartDomainExportResponse
103
+ attr_accessor client_token: ::String
104
+ attr_accessor export_arn: ::String
105
+ attr_accessor requested_at: ::Time
106
+ SENSITIVE: []
107
+ end
108
+ end
109
+ end
data/sig/waiters.rbs ADDED
@@ -0,0 +1,23 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module SimpleDBv2
10
+ module Waiters
11
+
12
+ class ExportSucceeded
13
+ def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
14
+ | (?Hash[Symbol, untyped]) -> void
15
+
16
+ def wait: (
17
+ export_arn: ::String
18
+ ) -> Client::_GetExportResponseSuccess
19
+ | (Hash[Symbol, untyped]) -> Client::_GetExportResponseSuccess
20
+ end
21
+ end
22
+ end
23
+ end
metadata ADDED
@@ -0,0 +1,97 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: aws-sdk-simpledbv2
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Amazon Web Services
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: aws-sdk-core
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - "~>"
17
+ - !ruby/object:Gem::Version
18
+ version: '3'
19
+ - - ">="
20
+ - !ruby/object:Gem::Version
21
+ version: 3.241.4
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ requirements:
26
+ - - "~>"
27
+ - !ruby/object:Gem::Version
28
+ version: '3'
29
+ - - ">="
30
+ - !ruby/object:Gem::Version
31
+ version: 3.241.4
32
+ - !ruby/object:Gem::Dependency
33
+ name: aws-sigv4
34
+ requirement: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - "~>"
37
+ - !ruby/object:Gem::Version
38
+ version: '1.5'
39
+ type: :runtime
40
+ prerelease: false
41
+ version_requirements: !ruby/object:Gem::Requirement
42
+ requirements:
43
+ - - "~>"
44
+ - !ruby/object:Gem::Version
45
+ version: '1.5'
46
+ description: Official AWS Ruby gem for Amazon SimpleDB v2. This gem is part of the
47
+ AWS SDK for Ruby.
48
+ email:
49
+ - aws-dr-rubygems@amazon.com
50
+ executables: []
51
+ extensions: []
52
+ extra_rdoc_files: []
53
+ files:
54
+ - CHANGELOG.md
55
+ - LICENSE.txt
56
+ - VERSION
57
+ - lib/aws-sdk-simpledbv2.rb
58
+ - lib/aws-sdk-simpledbv2/client.rb
59
+ - lib/aws-sdk-simpledbv2/client_api.rb
60
+ - lib/aws-sdk-simpledbv2/customizations.rb
61
+ - lib/aws-sdk-simpledbv2/endpoint_parameters.rb
62
+ - lib/aws-sdk-simpledbv2/endpoint_provider.rb
63
+ - lib/aws-sdk-simpledbv2/endpoints.rb
64
+ - lib/aws-sdk-simpledbv2/errors.rb
65
+ - lib/aws-sdk-simpledbv2/plugins/endpoints.rb
66
+ - lib/aws-sdk-simpledbv2/resource.rb
67
+ - lib/aws-sdk-simpledbv2/types.rb
68
+ - lib/aws-sdk-simpledbv2/waiters.rb
69
+ - sig/client.rbs
70
+ - sig/errors.rbs
71
+ - sig/resource.rbs
72
+ - sig/types.rbs
73
+ - sig/waiters.rbs
74
+ homepage: https://github.com/aws/aws-sdk-ruby
75
+ licenses:
76
+ - Apache-2.0
77
+ metadata:
78
+ source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-simpledbv2
79
+ changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-simpledbv2/CHANGELOG.md
80
+ rdoc_options: []
81
+ require_paths:
82
+ - lib
83
+ required_ruby_version: !ruby/object:Gem::Requirement
84
+ requirements:
85
+ - - ">="
86
+ - !ruby/object:Gem::Version
87
+ version: '2.7'
88
+ required_rubygems_version: !ruby/object:Gem::Requirement
89
+ requirements:
90
+ - - ">="
91
+ - !ruby/object:Gem::Version
92
+ version: '0'
93
+ requirements: []
94
+ rubygems_version: 3.6.7
95
+ specification_version: 4
96
+ summary: AWS SDK for Ruby - Amazon SimpleDB v2
97
+ test_files: []