aws-sdk-lambdacore 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-lambdacore/client.rb +884 -0
- data/lib/aws-sdk-lambdacore/client_api.rb +281 -0
- data/lib/aws-sdk-lambdacore/customizations.rb +0 -0
- data/lib/aws-sdk-lambdacore/endpoint_parameters.rb +69 -0
- data/lib/aws-sdk-lambdacore/endpoint_provider.rb +50 -0
- data/lib/aws-sdk-lambdacore/endpoints.rb +20 -0
- data/lib/aws-sdk-lambdacore/errors.rb +174 -0
- data/lib/aws-sdk-lambdacore/plugins/endpoints.rb +77 -0
- data/lib/aws-sdk-lambdacore/resource.rb +26 -0
- data/lib/aws-sdk-lambdacore/types.rb +619 -0
- data/lib/aws-sdk-lambdacore.rb +61 -0
- data/sig/client.rbs +173 -0
- data/sig/errors.rbs +42 -0
- data/sig/params.rbs +22 -0
- data/sig/resource.rbs +85 -0
- data/sig/types.rbs +168 -0
- metadata +96 -0
data/sig/client.rbs
ADDED
|
@@ -0,0 +1,173 @@
|
|
|
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 LambdaCore
|
|
10
|
+
class Client < ::Seahorse::Client::Base
|
|
11
|
+
include ::Aws::ClientStubs
|
|
12
|
+
|
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LambdaCore/Client.html#initialize-instance_method
|
|
14
|
+
def self.new: (
|
|
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
|
+
) -> instance
|
|
78
|
+
| (?Hash[Symbol, untyped]) -> instance
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
interface _CreateNetworkConnectorResponseSuccess
|
|
82
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateNetworkConnectorResponse]
|
|
83
|
+
def arn: () -> ::String
|
|
84
|
+
def name: () -> ::String
|
|
85
|
+
def id: () -> ::String
|
|
86
|
+
def configuration: () -> Types::NetworkConnectorConfiguration
|
|
87
|
+
def operator_role: () -> ::String
|
|
88
|
+
def state: () -> ("PENDING" | "ACTIVE" | "INACTIVE" | "FAILED" | "DELETING" | "DELETE_FAILED")
|
|
89
|
+
end
|
|
90
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LambdaCore/Client.html#create_network_connector-instance_method
|
|
91
|
+
def create_network_connector: (
|
|
92
|
+
name: ::String,
|
|
93
|
+
configuration: Params::network_connector_configuration,
|
|
94
|
+
?operator_role: ::String,
|
|
95
|
+
?client_token: ::String,
|
|
96
|
+
?tags: Hash[::String, ::String]
|
|
97
|
+
) -> _CreateNetworkConnectorResponseSuccess
|
|
98
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateNetworkConnectorResponseSuccess
|
|
99
|
+
|
|
100
|
+
interface _DeleteNetworkConnectorResponseSuccess
|
|
101
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteNetworkConnectorResponse]
|
|
102
|
+
def arn: () -> ::String
|
|
103
|
+
def name: () -> ::String
|
|
104
|
+
def id: () -> ::String
|
|
105
|
+
def configuration: () -> Types::NetworkConnectorConfiguration
|
|
106
|
+
def operator_role: () -> ::String
|
|
107
|
+
def state: () -> ("PENDING" | "ACTIVE" | "INACTIVE" | "FAILED" | "DELETING" | "DELETE_FAILED")
|
|
108
|
+
end
|
|
109
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LambdaCore/Client.html#delete_network_connector-instance_method
|
|
110
|
+
def delete_network_connector: (
|
|
111
|
+
identifier: ::String
|
|
112
|
+
) -> _DeleteNetworkConnectorResponseSuccess
|
|
113
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteNetworkConnectorResponseSuccess
|
|
114
|
+
|
|
115
|
+
interface _GetNetworkConnectorResponseSuccess
|
|
116
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetNetworkConnectorResponse]
|
|
117
|
+
def arn: () -> ::String
|
|
118
|
+
def name: () -> ::String
|
|
119
|
+
def id: () -> ::String
|
|
120
|
+
def version: () -> ::Integer
|
|
121
|
+
def configuration: () -> Types::NetworkConnectorConfiguration
|
|
122
|
+
def operator_role: () -> ::String
|
|
123
|
+
def state: () -> ("PENDING" | "ACTIVE" | "INACTIVE" | "FAILED" | "DELETING" | "DELETE_FAILED")
|
|
124
|
+
def state_reason: () -> ::String
|
|
125
|
+
def state_reason_code: () -> ("DisallowedByVpcEncryptionControl" | "Ec2RequestLimitExceeded" | "InsufficientRolePermissions" | "InternalError" | "InvalidSecurityGroup" | "InvalidSubnet" | "SubnetOutOfIPAddresses")
|
|
126
|
+
def last_update_status: () -> ("Successful" | "Failed" | "InProgress")
|
|
127
|
+
def last_update_status_reason: () -> ::String
|
|
128
|
+
def last_update_status_reason_code: () -> ("DisallowedByVpcEncryptionControl" | "Ec2RequestLimitExceeded" | "InsufficientRolePermissions" | "InternalError" | "InvalidSecurityGroup" | "InvalidSubnet" | "SubnetOutOfIPAddresses")
|
|
129
|
+
def last_modified: () -> ::Time
|
|
130
|
+
end
|
|
131
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LambdaCore/Client.html#get_network_connector-instance_method
|
|
132
|
+
def get_network_connector: (
|
|
133
|
+
identifier: ::String
|
|
134
|
+
) -> _GetNetworkConnectorResponseSuccess
|
|
135
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetNetworkConnectorResponseSuccess
|
|
136
|
+
|
|
137
|
+
interface _ListNetworkConnectorsResponseSuccess
|
|
138
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListNetworkConnectorsResponse]
|
|
139
|
+
def network_connectors: () -> ::Array[Types::NetworkConnectorSummary]
|
|
140
|
+
def next_marker: () -> ::String
|
|
141
|
+
end
|
|
142
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LambdaCore/Client.html#list_network_connectors-instance_method
|
|
143
|
+
def list_network_connectors: (
|
|
144
|
+
?state: ("PENDING" | "ACTIVE" | "INACTIVE" | "FAILED" | "DELETING" | "DELETE_FAILED"),
|
|
145
|
+
?marker: ::String,
|
|
146
|
+
?max_items: ::Integer
|
|
147
|
+
) -> _ListNetworkConnectorsResponseSuccess
|
|
148
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListNetworkConnectorsResponseSuccess
|
|
149
|
+
|
|
150
|
+
interface _UpdateNetworkConnectorResponseSuccess
|
|
151
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateNetworkConnectorResponse]
|
|
152
|
+
def arn: () -> ::String
|
|
153
|
+
def name: () -> ::String
|
|
154
|
+
def id: () -> ::String
|
|
155
|
+
def operator_role: () -> ::String
|
|
156
|
+
def configuration: () -> Types::NetworkConnectorConfiguration
|
|
157
|
+
def state: () -> ("PENDING" | "ACTIVE" | "INACTIVE" | "FAILED" | "DELETING" | "DELETE_FAILED")
|
|
158
|
+
def last_update_status: () -> ("Successful" | "Failed" | "InProgress")
|
|
159
|
+
def last_update_status_reason: () -> ::String
|
|
160
|
+
def last_modified: () -> ::Time
|
|
161
|
+
end
|
|
162
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LambdaCore/Client.html#update_network_connector-instance_method
|
|
163
|
+
def update_network_connector: (
|
|
164
|
+
identifier: ::String,
|
|
165
|
+
?configuration: Params::network_connector_configuration,
|
|
166
|
+
?operator_role: ::String,
|
|
167
|
+
?client_token: ::String
|
|
168
|
+
) -> _UpdateNetworkConnectorResponseSuccess
|
|
169
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateNetworkConnectorResponseSuccess
|
|
170
|
+
end
|
|
171
|
+
end
|
|
172
|
+
end
|
|
173
|
+
|
data/sig/errors.rbs
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
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 LambdaCore
|
|
10
|
+
module Errors
|
|
11
|
+
class ServiceError < ::Aws::Errors::ServiceError
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
class InvalidParameterValueException < ::Aws::Errors::ServiceError
|
|
15
|
+
def type: () -> ::String
|
|
16
|
+
def message: () -> ::String
|
|
17
|
+
end
|
|
18
|
+
class NetworkConnectorLimitExceededException < ::Aws::Errors::ServiceError
|
|
19
|
+
def type: () -> ::String
|
|
20
|
+
def message: () -> ::String
|
|
21
|
+
end
|
|
22
|
+
class ResourceConflictException < ::Aws::Errors::ServiceError
|
|
23
|
+
def type: () -> ::String
|
|
24
|
+
def message: () -> ::String
|
|
25
|
+
end
|
|
26
|
+
class ResourceNotFoundException < ::Aws::Errors::ServiceError
|
|
27
|
+
def type: () -> ::String
|
|
28
|
+
def message: () -> ::String
|
|
29
|
+
end
|
|
30
|
+
class ServiceException < ::Aws::Errors::ServiceError
|
|
31
|
+
def type: () -> ::String
|
|
32
|
+
def message: () -> ::String
|
|
33
|
+
end
|
|
34
|
+
class TooManyRequestsException < ::Aws::Errors::ServiceError
|
|
35
|
+
def retry_after_seconds: () -> ::String
|
|
36
|
+
def type: () -> ::String
|
|
37
|
+
def message: () -> ::String
|
|
38
|
+
def reason: () -> ::String
|
|
39
|
+
end
|
|
40
|
+
end
|
|
41
|
+
end
|
|
42
|
+
end
|
data/sig/params.rbs
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
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 LambdaCore
|
|
10
|
+
module Params
|
|
11
|
+
type network_connector_configuration = {
|
|
12
|
+
vpc_egress_configuration: {
|
|
13
|
+
subnet_ids: Array[::String]?,
|
|
14
|
+
security_group_ids: Array[::String]?,
|
|
15
|
+
network_protocol: ("IPv4" | "DualStack")?,
|
|
16
|
+
associated_compute_resource_types: Array[("MicroVm")]?
|
|
17
|
+
}?
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
end
|
|
21
|
+
end
|
|
22
|
+
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 LambdaCore
|
|
10
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LambdaCore/Resource.html
|
|
11
|
+
class Resource
|
|
12
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LambdaCore/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,168 @@
|
|
|
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::LambdaCore
|
|
9
|
+
module Types
|
|
10
|
+
|
|
11
|
+
class CreateNetworkConnectorRequest
|
|
12
|
+
attr_accessor name: ::String
|
|
13
|
+
attr_accessor configuration: Types::NetworkConnectorConfiguration
|
|
14
|
+
attr_accessor operator_role: ::String
|
|
15
|
+
attr_accessor client_token: ::String
|
|
16
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
17
|
+
SENSITIVE: []
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
class CreateNetworkConnectorResponse
|
|
21
|
+
attr_accessor arn: ::String
|
|
22
|
+
attr_accessor name: ::String
|
|
23
|
+
attr_accessor id: ::String
|
|
24
|
+
attr_accessor configuration: Types::NetworkConnectorConfiguration
|
|
25
|
+
attr_accessor operator_role: ::String
|
|
26
|
+
attr_accessor state: ("PENDING" | "ACTIVE" | "INACTIVE" | "FAILED" | "DELETING" | "DELETE_FAILED")
|
|
27
|
+
SENSITIVE: []
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
class DeleteNetworkConnectorRequest
|
|
31
|
+
attr_accessor identifier: ::String
|
|
32
|
+
SENSITIVE: []
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
class DeleteNetworkConnectorResponse
|
|
36
|
+
attr_accessor arn: ::String
|
|
37
|
+
attr_accessor name: ::String
|
|
38
|
+
attr_accessor id: ::String
|
|
39
|
+
attr_accessor configuration: Types::NetworkConnectorConfiguration
|
|
40
|
+
attr_accessor operator_role: ::String
|
|
41
|
+
attr_accessor state: ("PENDING" | "ACTIVE" | "INACTIVE" | "FAILED" | "DELETING" | "DELETE_FAILED")
|
|
42
|
+
SENSITIVE: []
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
class GetNetworkConnectorRequest
|
|
46
|
+
attr_accessor identifier: ::String
|
|
47
|
+
SENSITIVE: []
|
|
48
|
+
end
|
|
49
|
+
|
|
50
|
+
class GetNetworkConnectorResponse
|
|
51
|
+
attr_accessor arn: ::String
|
|
52
|
+
attr_accessor name: ::String
|
|
53
|
+
attr_accessor id: ::String
|
|
54
|
+
attr_accessor version: ::Integer
|
|
55
|
+
attr_accessor configuration: Types::NetworkConnectorConfiguration
|
|
56
|
+
attr_accessor operator_role: ::String
|
|
57
|
+
attr_accessor state: ("PENDING" | "ACTIVE" | "INACTIVE" | "FAILED" | "DELETING" | "DELETE_FAILED")
|
|
58
|
+
attr_accessor state_reason: ::String
|
|
59
|
+
attr_accessor state_reason_code: ("DisallowedByVpcEncryptionControl" | "Ec2RequestLimitExceeded" | "InsufficientRolePermissions" | "InternalError" | "InvalidSecurityGroup" | "InvalidSubnet" | "SubnetOutOfIPAddresses")
|
|
60
|
+
attr_accessor last_update_status: ("Successful" | "Failed" | "InProgress")
|
|
61
|
+
attr_accessor last_update_status_reason: ::String
|
|
62
|
+
attr_accessor last_update_status_reason_code: ("DisallowedByVpcEncryptionControl" | "Ec2RequestLimitExceeded" | "InsufficientRolePermissions" | "InternalError" | "InvalidSecurityGroup" | "InvalidSubnet" | "SubnetOutOfIPAddresses")
|
|
63
|
+
attr_accessor last_modified: ::Time
|
|
64
|
+
SENSITIVE: []
|
|
65
|
+
end
|
|
66
|
+
|
|
67
|
+
class InvalidParameterValueException
|
|
68
|
+
attr_accessor type: ::String
|
|
69
|
+
attr_accessor message: ::String
|
|
70
|
+
SENSITIVE: []
|
|
71
|
+
end
|
|
72
|
+
|
|
73
|
+
class ListNetworkConnectorsRequest
|
|
74
|
+
attr_accessor state: ("PENDING" | "ACTIVE" | "INACTIVE" | "FAILED" | "DELETING" | "DELETE_FAILED")
|
|
75
|
+
attr_accessor marker: ::String
|
|
76
|
+
attr_accessor max_items: ::Integer
|
|
77
|
+
SENSITIVE: []
|
|
78
|
+
end
|
|
79
|
+
|
|
80
|
+
class ListNetworkConnectorsResponse
|
|
81
|
+
attr_accessor network_connectors: ::Array[Types::NetworkConnectorSummary]
|
|
82
|
+
attr_accessor next_marker: ::String
|
|
83
|
+
SENSITIVE: []
|
|
84
|
+
end
|
|
85
|
+
|
|
86
|
+
class NetworkConnectorConfiguration
|
|
87
|
+
attr_accessor vpc_egress_configuration: Types::NetworkConnectorVpcEgressConfiguration
|
|
88
|
+
attr_accessor unknown: untyped
|
|
89
|
+
SENSITIVE: []
|
|
90
|
+
|
|
91
|
+
class VpcEgressConfiguration < NetworkConnectorConfiguration
|
|
92
|
+
end
|
|
93
|
+
class Unknown < NetworkConnectorConfiguration
|
|
94
|
+
end
|
|
95
|
+
end
|
|
96
|
+
|
|
97
|
+
class NetworkConnectorLimitExceededException
|
|
98
|
+
attr_accessor type: ::String
|
|
99
|
+
attr_accessor message: ::String
|
|
100
|
+
SENSITIVE: []
|
|
101
|
+
end
|
|
102
|
+
|
|
103
|
+
class NetworkConnectorSummary
|
|
104
|
+
attr_accessor arn: ::String
|
|
105
|
+
attr_accessor name: ::String
|
|
106
|
+
attr_accessor id: ::String
|
|
107
|
+
attr_accessor type: ("VPC_EGRESS")
|
|
108
|
+
attr_accessor state: ("PENDING" | "ACTIVE" | "INACTIVE" | "FAILED" | "DELETING" | "DELETE_FAILED")
|
|
109
|
+
attr_accessor last_modified: ::Time
|
|
110
|
+
SENSITIVE: []
|
|
111
|
+
end
|
|
112
|
+
|
|
113
|
+
class NetworkConnectorVpcEgressConfiguration
|
|
114
|
+
attr_accessor subnet_ids: ::Array[::String]
|
|
115
|
+
attr_accessor security_group_ids: ::Array[::String]
|
|
116
|
+
attr_accessor network_protocol: ("IPv4" | "DualStack")
|
|
117
|
+
attr_accessor associated_compute_resource_types: ::Array[("MicroVm")]
|
|
118
|
+
SENSITIVE: []
|
|
119
|
+
end
|
|
120
|
+
|
|
121
|
+
class ResourceConflictException
|
|
122
|
+
attr_accessor type: ::String
|
|
123
|
+
attr_accessor message: ::String
|
|
124
|
+
SENSITIVE: []
|
|
125
|
+
end
|
|
126
|
+
|
|
127
|
+
class ResourceNotFoundException
|
|
128
|
+
attr_accessor type: ::String
|
|
129
|
+
attr_accessor message: ::String
|
|
130
|
+
SENSITIVE: []
|
|
131
|
+
end
|
|
132
|
+
|
|
133
|
+
class ServiceException
|
|
134
|
+
attr_accessor type: ::String
|
|
135
|
+
attr_accessor message: ::String
|
|
136
|
+
SENSITIVE: []
|
|
137
|
+
end
|
|
138
|
+
|
|
139
|
+
class TooManyRequestsException
|
|
140
|
+
attr_accessor retry_after_seconds: ::String
|
|
141
|
+
attr_accessor type: ::String
|
|
142
|
+
attr_accessor message: ::String
|
|
143
|
+
attr_accessor reason: ("ConcurrentInvocationLimitExceeded" | "FunctionInvocationRateLimitExceeded" | "ReservedFunctionConcurrentInvocationLimitExceeded" | "ReservedFunctionInvocationRateLimitExceeded" | "CallerRateLimitExceeded" | "ConcurrentSnapshotCreateLimitExceeded")
|
|
144
|
+
SENSITIVE: []
|
|
145
|
+
end
|
|
146
|
+
|
|
147
|
+
class UpdateNetworkConnectorRequest
|
|
148
|
+
attr_accessor identifier: ::String
|
|
149
|
+
attr_accessor configuration: Types::NetworkConnectorConfiguration
|
|
150
|
+
attr_accessor operator_role: ::String
|
|
151
|
+
attr_accessor client_token: ::String
|
|
152
|
+
SENSITIVE: []
|
|
153
|
+
end
|
|
154
|
+
|
|
155
|
+
class UpdateNetworkConnectorResponse
|
|
156
|
+
attr_accessor arn: ::String
|
|
157
|
+
attr_accessor name: ::String
|
|
158
|
+
attr_accessor id: ::String
|
|
159
|
+
attr_accessor operator_role: ::String
|
|
160
|
+
attr_accessor configuration: Types::NetworkConnectorConfiguration
|
|
161
|
+
attr_accessor state: ("PENDING" | "ACTIVE" | "INACTIVE" | "FAILED" | "DELETING" | "DELETE_FAILED")
|
|
162
|
+
attr_accessor last_update_status: ("Successful" | "Failed" | "InProgress")
|
|
163
|
+
attr_accessor last_update_status_reason: ::String
|
|
164
|
+
attr_accessor last_modified: ::Time
|
|
165
|
+
SENSITIVE: []
|
|
166
|
+
end
|
|
167
|
+
end
|
|
168
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: aws-sdk-lambdacore
|
|
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.248.0
|
|
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.248.0
|
|
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 AWS Lambda Core. This gem is part of the AWS
|
|
47
|
+
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-lambdacore.rb
|
|
58
|
+
- lib/aws-sdk-lambdacore/client.rb
|
|
59
|
+
- lib/aws-sdk-lambdacore/client_api.rb
|
|
60
|
+
- lib/aws-sdk-lambdacore/customizations.rb
|
|
61
|
+
- lib/aws-sdk-lambdacore/endpoint_parameters.rb
|
|
62
|
+
- lib/aws-sdk-lambdacore/endpoint_provider.rb
|
|
63
|
+
- lib/aws-sdk-lambdacore/endpoints.rb
|
|
64
|
+
- lib/aws-sdk-lambdacore/errors.rb
|
|
65
|
+
- lib/aws-sdk-lambdacore/plugins/endpoints.rb
|
|
66
|
+
- lib/aws-sdk-lambdacore/resource.rb
|
|
67
|
+
- lib/aws-sdk-lambdacore/types.rb
|
|
68
|
+
- sig/client.rbs
|
|
69
|
+
- sig/errors.rbs
|
|
70
|
+
- sig/params.rbs
|
|
71
|
+
- sig/resource.rbs
|
|
72
|
+
- sig/types.rbs
|
|
73
|
+
homepage: https://github.com/aws/aws-sdk-ruby
|
|
74
|
+
licenses:
|
|
75
|
+
- Apache-2.0
|
|
76
|
+
metadata:
|
|
77
|
+
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-lambdacore
|
|
78
|
+
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-lambdacore/CHANGELOG.md
|
|
79
|
+
rdoc_options: []
|
|
80
|
+
require_paths:
|
|
81
|
+
- lib
|
|
82
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
83
|
+
requirements:
|
|
84
|
+
- - ">="
|
|
85
|
+
- !ruby/object:Gem::Version
|
|
86
|
+
version: '2.7'
|
|
87
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
88
|
+
requirements:
|
|
89
|
+
- - ">="
|
|
90
|
+
- !ruby/object:Gem::Version
|
|
91
|
+
version: '0'
|
|
92
|
+
requirements: []
|
|
93
|
+
rubygems_version: 3.6.7
|
|
94
|
+
specification_version: 4
|
|
95
|
+
summary: AWS SDK for Ruby - AWS Lambda Core
|
|
96
|
+
test_files: []
|