aws-sdk-ssmquicksetup 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.
- checksums.yaml +7 -0
- data/CHANGELOG.md +8 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-ssmquicksetup/client.rb +882 -0
- data/lib/aws-sdk-ssmquicksetup/client_api.rb +449 -0
- data/lib/aws-sdk-ssmquicksetup/customizations.rb +0 -0
- data/lib/aws-sdk-ssmquicksetup/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-ssmquicksetup/endpoint_provider.rb +54 -0
- data/lib/aws-sdk-ssmquicksetup/endpoints.rb +184 -0
- data/lib/aws-sdk-ssmquicksetup/errors.rb +142 -0
- data/lib/aws-sdk-ssmquicksetup/plugins/endpoints.rb +94 -0
- data/lib/aws-sdk-ssmquicksetup/resource.rb +26 -0
- data/lib/aws-sdk-ssmquicksetup/types.rb +1483 -0
- data/lib/aws-sdk-ssmquicksetup.rb +57 -0
- data/sig/client.rbs +205 -0
- data/sig/errors.rbs +34 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +211 -0
- data/sig/waiters.rbs +13 -0
- metadata +99 -0
@@ -0,0 +1,57 @@
|
|
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-ssmquicksetup/types'
|
15
|
+
require_relative 'aws-sdk-ssmquicksetup/client_api'
|
16
|
+
require_relative 'aws-sdk-ssmquicksetup/plugins/endpoints.rb'
|
17
|
+
require_relative 'aws-sdk-ssmquicksetup/client'
|
18
|
+
require_relative 'aws-sdk-ssmquicksetup/errors'
|
19
|
+
require_relative 'aws-sdk-ssmquicksetup/resource'
|
20
|
+
require_relative 'aws-sdk-ssmquicksetup/endpoint_parameters'
|
21
|
+
require_relative 'aws-sdk-ssmquicksetup/endpoint_provider'
|
22
|
+
require_relative 'aws-sdk-ssmquicksetup/endpoints'
|
23
|
+
require_relative 'aws-sdk-ssmquicksetup/customizations'
|
24
|
+
|
25
|
+
# This module provides support for AWS Systems Manager QuickSetup. This module is available in the
|
26
|
+
# `aws-sdk-ssmquicksetup` gem.
|
27
|
+
#
|
28
|
+
# # Client
|
29
|
+
#
|
30
|
+
# The {Client} class provides one method for each API operation. Operation
|
31
|
+
# methods each accept a hash of request parameters and return a response
|
32
|
+
# structure.
|
33
|
+
#
|
34
|
+
# ssm_quick_setup = Aws::SSMQuickSetup::Client.new
|
35
|
+
# resp = ssm_quick_setup.create_configuration_manager(params)
|
36
|
+
#
|
37
|
+
# See {Client} for more information.
|
38
|
+
#
|
39
|
+
# # Errors
|
40
|
+
#
|
41
|
+
# Errors returned from AWS Systems Manager QuickSetup are defined in the
|
42
|
+
# {Errors} module and all extend {Errors::ServiceError}.
|
43
|
+
#
|
44
|
+
# begin
|
45
|
+
# # do stuff
|
46
|
+
# rescue Aws::SSMQuickSetup::Errors::ServiceError
|
47
|
+
# # rescues all AWS Systems Manager QuickSetup API errors
|
48
|
+
# end
|
49
|
+
#
|
50
|
+
# See {Errors} for more information.
|
51
|
+
#
|
52
|
+
# @!group service
|
53
|
+
module Aws::SSMQuickSetup
|
54
|
+
|
55
|
+
GEM_VERSION = '1.0.0'
|
56
|
+
|
57
|
+
end
|
data/sig/client.rbs
ADDED
@@ -0,0 +1,205 @@
|
|
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 SSMQuickSetup
|
10
|
+
class Client < ::Seahorse::Client::Base
|
11
|
+
include ::Aws::ClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSMQuickSetup/Client.html#initialize-instance_method
|
14
|
+
def self.new: (
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
36
|
+
?log_formatter: untyped,
|
37
|
+
?log_level: Symbol,
|
38
|
+
?logger: untyped,
|
39
|
+
?max_attempts: Integer,
|
40
|
+
?profile: String,
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
42
|
+
?retry_backoff: Proc,
|
43
|
+
?retry_base_delay: Float,
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
45
|
+
?retry_limit: Integer,
|
46
|
+
?retry_max_delay: Integer,
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
48
|
+
?sdk_ua_app_id: String,
|
49
|
+
?secret_access_key: String,
|
50
|
+
?session_token: String,
|
51
|
+
?sigv4a_signing_region_set: Array[String],
|
52
|
+
?stub_responses: untyped,
|
53
|
+
?token_provider: untyped,
|
54
|
+
?use_dualstack_endpoint: bool,
|
55
|
+
?use_fips_endpoint: bool,
|
56
|
+
?validate_params: bool,
|
57
|
+
?endpoint_provider: untyped,
|
58
|
+
?http_proxy: String,
|
59
|
+
?http_open_timeout: (Float | Integer),
|
60
|
+
?http_read_timeout: (Float | Integer),
|
61
|
+
?http_idle_timeout: (Float | Integer),
|
62
|
+
?http_continue_timeout: (Float | Integer),
|
63
|
+
?ssl_timeout: (Float | Integer | nil),
|
64
|
+
?http_wire_trace: bool,
|
65
|
+
?ssl_verify_peer: bool,
|
66
|
+
?ssl_ca_bundle: String,
|
67
|
+
?ssl_ca_directory: String,
|
68
|
+
?ssl_ca_store: String,
|
69
|
+
?on_chunk_received: Proc,
|
70
|
+
?on_chunk_sent: Proc,
|
71
|
+
?raise_response_errors: bool
|
72
|
+
) -> instance
|
73
|
+
| (?Hash[Symbol, untyped]) -> instance
|
74
|
+
|
75
|
+
|
76
|
+
interface _CreateConfigurationManagerResponseSuccess
|
77
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateConfigurationManagerOutput]
|
78
|
+
def manager_arn: () -> ::String
|
79
|
+
end
|
80
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSMQuickSetup/Client.html#create_configuration_manager-instance_method
|
81
|
+
def create_configuration_manager: (
|
82
|
+
configuration_definitions: Array[
|
83
|
+
{
|
84
|
+
local_deployment_administration_role_arn: ::String?,
|
85
|
+
local_deployment_execution_role_name: ::String?,
|
86
|
+
parameters: Hash[::String, ::String],
|
87
|
+
type: ::String,
|
88
|
+
type_version: ::String?
|
89
|
+
},
|
90
|
+
],
|
91
|
+
?description: ::String,
|
92
|
+
?name: ::String,
|
93
|
+
?tags: Hash[::String, ::String]
|
94
|
+
) -> _CreateConfigurationManagerResponseSuccess
|
95
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConfigurationManagerResponseSuccess
|
96
|
+
|
97
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSMQuickSetup/Client.html#delete_configuration_manager-instance_method
|
98
|
+
def delete_configuration_manager: (
|
99
|
+
manager_arn: ::String
|
100
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
101
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
102
|
+
|
103
|
+
interface _GetConfigurationManagerResponseSuccess
|
104
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetConfigurationManagerOutput]
|
105
|
+
def configuration_definitions: () -> ::Array[Types::ConfigurationDefinition]
|
106
|
+
def created_at: () -> ::Time
|
107
|
+
def description: () -> ::String
|
108
|
+
def last_modified_at: () -> ::Time
|
109
|
+
def manager_arn: () -> ::String
|
110
|
+
def name: () -> ::String
|
111
|
+
def status_summaries: () -> ::Array[Types::StatusSummary]
|
112
|
+
def tags: () -> ::Hash[::String, ::String]
|
113
|
+
end
|
114
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSMQuickSetup/Client.html#get_configuration_manager-instance_method
|
115
|
+
def get_configuration_manager: (
|
116
|
+
manager_arn: ::String
|
117
|
+
) -> _GetConfigurationManagerResponseSuccess
|
118
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConfigurationManagerResponseSuccess
|
119
|
+
|
120
|
+
interface _GetServiceSettingsResponseSuccess
|
121
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetServiceSettingsOutput]
|
122
|
+
def service_settings: () -> Types::ServiceSettings
|
123
|
+
end
|
124
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSMQuickSetup/Client.html#get_service_settings-instance_method
|
125
|
+
def get_service_settings: () -> _GetServiceSettingsResponseSuccess
|
126
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetServiceSettingsResponseSuccess
|
127
|
+
|
128
|
+
interface _ListConfigurationManagersResponseSuccess
|
129
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListConfigurationManagersOutput]
|
130
|
+
def configuration_managers_list: () -> ::Array[Types::ConfigurationManagerSummary]
|
131
|
+
def next_token: () -> ::String
|
132
|
+
end
|
133
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSMQuickSetup/Client.html#list_configuration_managers-instance_method
|
134
|
+
def list_configuration_managers: (
|
135
|
+
?filters: Array[
|
136
|
+
{
|
137
|
+
key: ::String,
|
138
|
+
values: Array[::String]
|
139
|
+
},
|
140
|
+
],
|
141
|
+
?max_items: ::Integer,
|
142
|
+
?starting_token: ::String
|
143
|
+
) -> _ListConfigurationManagersResponseSuccess
|
144
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConfigurationManagersResponseSuccess
|
145
|
+
|
146
|
+
interface _ListQuickSetupTypesResponseSuccess
|
147
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListQuickSetupTypesOutput]
|
148
|
+
def quick_setup_type_list: () -> ::Array[Types::QuickSetupTypeOutput]
|
149
|
+
end
|
150
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSMQuickSetup/Client.html#list_quick_setup_types-instance_method
|
151
|
+
def list_quick_setup_types: () -> _ListQuickSetupTypesResponseSuccess
|
152
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListQuickSetupTypesResponseSuccess
|
153
|
+
|
154
|
+
interface _ListTagsForResourceResponseSuccess
|
155
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
|
156
|
+
def tags: () -> ::Array[Types::TagEntry]
|
157
|
+
end
|
158
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSMQuickSetup/Client.html#list_tags_for_resource-instance_method
|
159
|
+
def list_tags_for_resource: (
|
160
|
+
resource_arn: ::String
|
161
|
+
) -> _ListTagsForResourceResponseSuccess
|
162
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
163
|
+
|
164
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSMQuickSetup/Client.html#tag_resource-instance_method
|
165
|
+
def tag_resource: (
|
166
|
+
resource_arn: ::String,
|
167
|
+
tags: Hash[::String, ::String]
|
168
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
169
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
170
|
+
|
171
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSMQuickSetup/Client.html#untag_resource-instance_method
|
172
|
+
def untag_resource: (
|
173
|
+
resource_arn: ::String,
|
174
|
+
tag_keys: Array[::String]
|
175
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
176
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
177
|
+
|
178
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSMQuickSetup/Client.html#update_configuration_definition-instance_method
|
179
|
+
def update_configuration_definition: (
|
180
|
+
id: ::String,
|
181
|
+
?local_deployment_administration_role_arn: ::String,
|
182
|
+
?local_deployment_execution_role_name: ::String,
|
183
|
+
manager_arn: ::String,
|
184
|
+
?parameters: Hash[::String, ::String],
|
185
|
+
?type_version: ::String
|
186
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
187
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
188
|
+
|
189
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSMQuickSetup/Client.html#update_configuration_manager-instance_method
|
190
|
+
def update_configuration_manager: (
|
191
|
+
?description: ::String,
|
192
|
+
manager_arn: ::String,
|
193
|
+
?name: ::String
|
194
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
195
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
196
|
+
|
197
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSMQuickSetup/Client.html#update_service_settings-instance_method
|
198
|
+
def update_service_settings: (
|
199
|
+
?explorer_enabling_role_arn: ::String
|
200
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
201
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
202
|
+
end
|
203
|
+
end
|
204
|
+
end
|
205
|
+
|
data/sig/errors.rbs
ADDED
@@ -0,0 +1,34 @@
|
|
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 SSMQuickSetup
|
10
|
+
module Errors
|
11
|
+
class ServiceError < ::Aws::Errors::ServiceError
|
12
|
+
end
|
13
|
+
|
14
|
+
class AccessDeniedException < ::Aws::Errors::ServiceError
|
15
|
+
def message: () -> ::String
|
16
|
+
end
|
17
|
+
class ConflictException < ::Aws::Errors::ServiceError
|
18
|
+
def message: () -> ::String
|
19
|
+
end
|
20
|
+
class InternalServerException < ::Aws::Errors::ServiceError
|
21
|
+
def message: () -> ::String
|
22
|
+
end
|
23
|
+
class ResourceNotFoundException < ::Aws::Errors::ServiceError
|
24
|
+
def message: () -> ::String
|
25
|
+
end
|
26
|
+
class ThrottlingException < ::Aws::Errors::ServiceError
|
27
|
+
def message: () -> ::String
|
28
|
+
end
|
29
|
+
class ValidationException < ::Aws::Errors::ServiceError
|
30
|
+
def message: () -> ::String
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
data/sig/resource.rbs
ADDED
@@ -0,0 +1,80 @@
|
|
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 SSMQuickSetup
|
10
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSMQuickSetup/Resource.html
|
11
|
+
class Resource
|
12
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSMQuickSetup/Resource.html#initialize-instance_method
|
13
|
+
def initialize: (
|
14
|
+
?client: Client,
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
36
|
+
?log_formatter: untyped,
|
37
|
+
?log_level: Symbol,
|
38
|
+
?logger: untyped,
|
39
|
+
?max_attempts: Integer,
|
40
|
+
?profile: String,
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
42
|
+
?retry_backoff: Proc,
|
43
|
+
?retry_base_delay: Float,
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
45
|
+
?retry_limit: Integer,
|
46
|
+
?retry_max_delay: Integer,
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
48
|
+
?sdk_ua_app_id: String,
|
49
|
+
?secret_access_key: String,
|
50
|
+
?session_token: String,
|
51
|
+
?sigv4a_signing_region_set: Array[String],
|
52
|
+
?stub_responses: untyped,
|
53
|
+
?token_provider: untyped,
|
54
|
+
?use_dualstack_endpoint: bool,
|
55
|
+
?use_fips_endpoint: bool,
|
56
|
+
?validate_params: bool,
|
57
|
+
?endpoint_provider: untyped,
|
58
|
+
?http_proxy: String,
|
59
|
+
?http_open_timeout: (Float | Integer),
|
60
|
+
?http_read_timeout: (Float | Integer),
|
61
|
+
?http_idle_timeout: (Float | Integer),
|
62
|
+
?http_continue_timeout: (Float | Integer),
|
63
|
+
?ssl_timeout: (Float | Integer | nil),
|
64
|
+
?http_wire_trace: bool,
|
65
|
+
?ssl_verify_peer: bool,
|
66
|
+
?ssl_ca_bundle: String,
|
67
|
+
?ssl_ca_directory: String,
|
68
|
+
?ssl_ca_store: String,
|
69
|
+
?on_chunk_received: Proc,
|
70
|
+
?on_chunk_sent: Proc,
|
71
|
+
?raise_response_errors: bool
|
72
|
+
) -> void
|
73
|
+
| (?Hash[Symbol, untyped]) -> void
|
74
|
+
|
75
|
+
def client: () -> Client
|
76
|
+
|
77
|
+
|
78
|
+
end
|
79
|
+
end
|
80
|
+
end
|
data/sig/types.rbs
ADDED
@@ -0,0 +1,211 @@
|
|
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::SSMQuickSetup
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class ConfigurationDefinition
|
17
|
+
attr_accessor id: ::String
|
18
|
+
attr_accessor local_deployment_administration_role_arn: ::String
|
19
|
+
attr_accessor local_deployment_execution_role_name: ::String
|
20
|
+
attr_accessor parameters: ::Hash[::String, ::String]
|
21
|
+
attr_accessor type: ::String
|
22
|
+
attr_accessor type_version: ::String
|
23
|
+
SENSITIVE: []
|
24
|
+
end
|
25
|
+
|
26
|
+
class ConfigurationDefinitionInput
|
27
|
+
attr_accessor local_deployment_administration_role_arn: ::String
|
28
|
+
attr_accessor local_deployment_execution_role_name: ::String
|
29
|
+
attr_accessor parameters: ::Hash[::String, ::String]
|
30
|
+
attr_accessor type: ::String
|
31
|
+
attr_accessor type_version: ::String
|
32
|
+
SENSITIVE: []
|
33
|
+
end
|
34
|
+
|
35
|
+
class ConfigurationDefinitionSummary
|
36
|
+
attr_accessor first_class_parameters: ::Hash[::String, ::String]
|
37
|
+
attr_accessor id: ::String
|
38
|
+
attr_accessor type: ::String
|
39
|
+
attr_accessor type_version: ::String
|
40
|
+
SENSITIVE: []
|
41
|
+
end
|
42
|
+
|
43
|
+
class ConfigurationManagerSummary
|
44
|
+
attr_accessor configuration_definition_summaries: ::Array[Types::ConfigurationDefinitionSummary]
|
45
|
+
attr_accessor description: ::String
|
46
|
+
attr_accessor manager_arn: ::String
|
47
|
+
attr_accessor name: ::String
|
48
|
+
attr_accessor status_summaries: ::Array[Types::StatusSummary]
|
49
|
+
SENSITIVE: []
|
50
|
+
end
|
51
|
+
|
52
|
+
class ConflictException
|
53
|
+
attr_accessor message: ::String
|
54
|
+
SENSITIVE: []
|
55
|
+
end
|
56
|
+
|
57
|
+
class CreateConfigurationManagerInput
|
58
|
+
attr_accessor configuration_definitions: ::Array[Types::ConfigurationDefinitionInput]
|
59
|
+
attr_accessor description: ::String
|
60
|
+
attr_accessor name: ::String
|
61
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
62
|
+
SENSITIVE: [:tags]
|
63
|
+
end
|
64
|
+
|
65
|
+
class CreateConfigurationManagerOutput
|
66
|
+
attr_accessor manager_arn: ::String
|
67
|
+
SENSITIVE: []
|
68
|
+
end
|
69
|
+
|
70
|
+
class DeleteConfigurationManagerInput
|
71
|
+
attr_accessor manager_arn: ::String
|
72
|
+
SENSITIVE: []
|
73
|
+
end
|
74
|
+
|
75
|
+
class Filter
|
76
|
+
attr_accessor key: ::String
|
77
|
+
attr_accessor values: ::Array[::String]
|
78
|
+
SENSITIVE: []
|
79
|
+
end
|
80
|
+
|
81
|
+
class GetConfigurationManagerInput
|
82
|
+
attr_accessor manager_arn: ::String
|
83
|
+
SENSITIVE: []
|
84
|
+
end
|
85
|
+
|
86
|
+
class GetConfigurationManagerOutput
|
87
|
+
attr_accessor configuration_definitions: ::Array[Types::ConfigurationDefinition]
|
88
|
+
attr_accessor created_at: ::Time
|
89
|
+
attr_accessor description: ::String
|
90
|
+
attr_accessor last_modified_at: ::Time
|
91
|
+
attr_accessor manager_arn: ::String
|
92
|
+
attr_accessor name: ::String
|
93
|
+
attr_accessor status_summaries: ::Array[Types::StatusSummary]
|
94
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
95
|
+
SENSITIVE: [:tags]
|
96
|
+
end
|
97
|
+
|
98
|
+
class GetServiceSettingsOutput
|
99
|
+
attr_accessor service_settings: Types::ServiceSettings
|
100
|
+
SENSITIVE: []
|
101
|
+
end
|
102
|
+
|
103
|
+
class InternalServerException
|
104
|
+
attr_accessor message: ::String
|
105
|
+
SENSITIVE: []
|
106
|
+
end
|
107
|
+
|
108
|
+
class ListConfigurationManagersInput
|
109
|
+
attr_accessor filters: ::Array[Types::Filter]
|
110
|
+
attr_accessor max_items: ::Integer
|
111
|
+
attr_accessor starting_token: ::String
|
112
|
+
SENSITIVE: []
|
113
|
+
end
|
114
|
+
|
115
|
+
class ListConfigurationManagersOutput
|
116
|
+
attr_accessor configuration_managers_list: ::Array[Types::ConfigurationManagerSummary]
|
117
|
+
attr_accessor next_token: ::String
|
118
|
+
SENSITIVE: []
|
119
|
+
end
|
120
|
+
|
121
|
+
class ListQuickSetupTypesOutput
|
122
|
+
attr_accessor quick_setup_type_list: ::Array[Types::QuickSetupTypeOutput]
|
123
|
+
SENSITIVE: []
|
124
|
+
end
|
125
|
+
|
126
|
+
class ListTagsForResourceRequest
|
127
|
+
attr_accessor resource_arn: ::String
|
128
|
+
SENSITIVE: []
|
129
|
+
end
|
130
|
+
|
131
|
+
class ListTagsForResourceResponse
|
132
|
+
attr_accessor tags: ::Array[Types::TagEntry]
|
133
|
+
SENSITIVE: [:tags]
|
134
|
+
end
|
135
|
+
|
136
|
+
class QuickSetupTypeOutput
|
137
|
+
attr_accessor latest_version: ::String
|
138
|
+
attr_accessor type: ::String
|
139
|
+
SENSITIVE: []
|
140
|
+
end
|
141
|
+
|
142
|
+
class ResourceNotFoundException
|
143
|
+
attr_accessor message: ::String
|
144
|
+
SENSITIVE: []
|
145
|
+
end
|
146
|
+
|
147
|
+
class ServiceSettings
|
148
|
+
attr_accessor explorer_enabling_role_arn: ::String
|
149
|
+
SENSITIVE: []
|
150
|
+
end
|
151
|
+
|
152
|
+
class StatusSummary
|
153
|
+
attr_accessor last_updated_at: ::Time
|
154
|
+
attr_accessor status: ("INITIALIZING" | "DEPLOYING" | "SUCCEEDED" | "DELETING" | "STOPPING" | "FAILED" | "STOPPED" | "DELETE_FAILED" | "STOP_FAILED" | "NONE")
|
155
|
+
attr_accessor status_details: ::Hash[::String, ::String]
|
156
|
+
attr_accessor status_message: ::String
|
157
|
+
attr_accessor status_type: ("Deployment" | "AsyncExecutions")
|
158
|
+
SENSITIVE: []
|
159
|
+
end
|
160
|
+
|
161
|
+
class TagEntry
|
162
|
+
attr_accessor key: ::String
|
163
|
+
attr_accessor value: ::String
|
164
|
+
SENSITIVE: []
|
165
|
+
end
|
166
|
+
|
167
|
+
class TagResourceInput
|
168
|
+
attr_accessor resource_arn: ::String
|
169
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
170
|
+
SENSITIVE: [:tags]
|
171
|
+
end
|
172
|
+
|
173
|
+
class ThrottlingException
|
174
|
+
attr_accessor message: ::String
|
175
|
+
SENSITIVE: []
|
176
|
+
end
|
177
|
+
|
178
|
+
class UntagResourceInput
|
179
|
+
attr_accessor resource_arn: ::String
|
180
|
+
attr_accessor tag_keys: ::Array[::String]
|
181
|
+
SENSITIVE: []
|
182
|
+
end
|
183
|
+
|
184
|
+
class UpdateConfigurationDefinitionInput
|
185
|
+
attr_accessor id: ::String
|
186
|
+
attr_accessor local_deployment_administration_role_arn: ::String
|
187
|
+
attr_accessor local_deployment_execution_role_name: ::String
|
188
|
+
attr_accessor manager_arn: ::String
|
189
|
+
attr_accessor parameters: ::Hash[::String, ::String]
|
190
|
+
attr_accessor type_version: ::String
|
191
|
+
SENSITIVE: []
|
192
|
+
end
|
193
|
+
|
194
|
+
class UpdateConfigurationManagerInput
|
195
|
+
attr_accessor description: ::String
|
196
|
+
attr_accessor manager_arn: ::String
|
197
|
+
attr_accessor name: ::String
|
198
|
+
SENSITIVE: []
|
199
|
+
end
|
200
|
+
|
201
|
+
class UpdateServiceSettingsInput
|
202
|
+
attr_accessor explorer_enabling_role_arn: ::String
|
203
|
+
SENSITIVE: []
|
204
|
+
end
|
205
|
+
|
206
|
+
class ValidationException
|
207
|
+
attr_accessor message: ::String
|
208
|
+
SENSITIVE: []
|
209
|
+
end
|
210
|
+
end
|
211
|
+
end
|
data/sig/waiters.rbs
ADDED
@@ -0,0 +1,13 @@
|
|
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 SSMQuickSetup
|
10
|
+
module Waiters
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|