aws-sdk-worklink 1.44.0 → 1.46.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-worklink/client.rb +70 -46
- data/lib/aws-sdk-worklink/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-worklink.rb +1 -1
- data/sig/client.rbs +462 -0
- data/sig/errors.rbs +34 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +451 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 52e0ea4df6a77cbc3ec0865b01b3f3643755c83c0b480fec14853dcd3835601a
|
4
|
+
data.tar.gz: 7eec2f9b361c9ba2b1bda2800a701ea7c2cac9a9fd4fa1bce208f0f090953cbe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 56f4c80a926dd89620c96d0cc931900e140686acb48468631ab79e69246145d45008f2244b0d8ce7938f48803ff5303daba72d6af9f43c0e5d5f6309ad85114e
|
7
|
+
data.tar.gz: 9c8b1f63142e409d296c981d99d3f3d2c4af52e4942ba462fec708896431e9b45e2549fd1cc04240fa80d2fa1b08c7e200ed4ece86188e1eab76d6ca3857cdc0
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.46.0 (2024-04-25)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.45.0 (2024-01-26)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.44.0 (2023-11-28)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.46.0
|
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
|
|
22
22
|
require 'aws-sdk-core/plugins/response_paging.rb'
|
23
23
|
require 'aws-sdk-core/plugins/stub_responses.rb'
|
24
24
|
require 'aws-sdk-core/plugins/idempotency_token.rb'
|
25
|
+
require 'aws-sdk-core/plugins/invocation_id.rb'
|
25
26
|
require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
26
27
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
27
28
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
@@ -72,6 +73,7 @@ module Aws::WorkLink
|
|
72
73
|
add_plugin(Aws::Plugins::ResponsePaging)
|
73
74
|
add_plugin(Aws::Plugins::StubResponses)
|
74
75
|
add_plugin(Aws::Plugins::IdempotencyToken)
|
76
|
+
add_plugin(Aws::Plugins::InvocationId)
|
75
77
|
add_plugin(Aws::Plugins::JsonvalueConverter)
|
76
78
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
77
79
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
@@ -196,10 +198,17 @@ module Aws::WorkLink
|
|
196
198
|
# When set to 'true' the request body will not be compressed
|
197
199
|
# for supported operations.
|
198
200
|
#
|
199
|
-
# @option options [String] :endpoint
|
200
|
-
#
|
201
|
-
#
|
202
|
-
#
|
201
|
+
# @option options [String, URI::HTTPS, URI::HTTP] :endpoint
|
202
|
+
# Normally you should not configure the `:endpoint` option
|
203
|
+
# directly. This is normally constructed from the `:region`
|
204
|
+
# option. Configuring `:endpoint` is normally reserved for
|
205
|
+
# connecting to test or custom endpoints. The endpoint should
|
206
|
+
# be a URI formatted like:
|
207
|
+
#
|
208
|
+
# 'http://example.com'
|
209
|
+
# 'https://example.com'
|
210
|
+
# 'http://example.com:123'
|
211
|
+
#
|
203
212
|
#
|
204
213
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
205
214
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -337,50 +346,65 @@ module Aws::WorkLink
|
|
337
346
|
# @option options [Aws::WorkLink::EndpointProvider] :endpoint_provider
|
338
347
|
# The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::WorkLink::EndpointParameters`
|
339
348
|
#
|
340
|
-
# @option options [
|
341
|
-
#
|
342
|
-
#
|
343
|
-
#
|
344
|
-
#
|
345
|
-
#
|
346
|
-
#
|
347
|
-
#
|
348
|
-
#
|
349
|
-
#
|
350
|
-
#
|
351
|
-
# @option options [Float] :
|
352
|
-
#
|
353
|
-
#
|
354
|
-
#
|
355
|
-
#
|
356
|
-
#
|
357
|
-
#
|
358
|
-
#
|
359
|
-
#
|
360
|
-
#
|
361
|
-
#
|
362
|
-
#
|
363
|
-
#
|
364
|
-
#
|
349
|
+
# @option options [Float] :http_continue_timeout (1)
|
350
|
+
# The number of seconds to wait for a 100-continue response before sending the
|
351
|
+
# request body. This option has no effect unless the request has "Expect"
|
352
|
+
# header set to "100-continue". Defaults to `nil` which disables this
|
353
|
+
# behaviour. This value can safely be set per request on the session.
|
354
|
+
#
|
355
|
+
# @option options [Float] :http_idle_timeout (5)
|
356
|
+
# The number of seconds a connection is allowed to sit idle before it
|
357
|
+
# is considered stale. Stale connections are closed and removed from the
|
358
|
+
# pool before making a request.
|
359
|
+
#
|
360
|
+
# @option options [Float] :http_open_timeout (15)
|
361
|
+
# The default number of seconds to wait for response data.
|
362
|
+
# This value can safely be set per-request on the session.
|
363
|
+
#
|
364
|
+
# @option options [URI::HTTP,String] :http_proxy
|
365
|
+
# A proxy to send requests through. Formatted like 'http://proxy.com:123'.
|
366
|
+
#
|
367
|
+
# @option options [Float] :http_read_timeout (60)
|
368
|
+
# The default number of seconds to wait for response data.
|
369
|
+
# This value can safely be set per-request on the session.
|
370
|
+
#
|
371
|
+
# @option options [Boolean] :http_wire_trace (false)
|
372
|
+
# When `true`, HTTP debug output will be sent to the `:logger`.
|
373
|
+
#
|
374
|
+
# @option options [Proc] :on_chunk_received
|
375
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
376
|
+
# of the response body is received. It provides three arguments: the chunk,
|
377
|
+
# the number of bytes received, and the total number of
|
378
|
+
# bytes in the response (or nil if the server did not send a `content-length`).
|
379
|
+
#
|
380
|
+
# @option options [Proc] :on_chunk_sent
|
381
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
382
|
+
# of the request body is sent. It provides three arguments: the chunk,
|
383
|
+
# the number of bytes read from the body, and the total number of
|
384
|
+
# bytes in the body.
|
385
|
+
#
|
386
|
+
# @option options [Boolean] :raise_response_errors (true)
|
387
|
+
# When `true`, response errors are raised.
|
388
|
+
#
|
389
|
+
# @option options [String] :ssl_ca_bundle
|
390
|
+
# Full path to the SSL certificate authority bundle file that should be used when
|
391
|
+
# verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
|
392
|
+
# `:ssl_ca_directory` the the system default will be used if available.
|
393
|
+
#
|
394
|
+
# @option options [String] :ssl_ca_directory
|
395
|
+
# Full path of the directory that contains the unbundled SSL certificate
|
396
|
+
# authority files for verifying peer certificates. If you do
|
397
|
+
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
|
398
|
+
# default will be used if available.
|
365
399
|
#
|
366
|
-
# @option options [
|
367
|
-
#
|
400
|
+
# @option options [String] :ssl_ca_store
|
401
|
+
# Sets the X509::Store to verify peer certificate.
|
368
402
|
#
|
369
|
-
# @option options [
|
370
|
-
#
|
371
|
-
# connection.
|
403
|
+
# @option options [Float] :ssl_timeout
|
404
|
+
# Sets the SSL timeout in seconds
|
372
405
|
#
|
373
|
-
# @option options [
|
374
|
-
#
|
375
|
-
# verifying peer certificates. If you do not pass
|
376
|
-
# `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
|
377
|
-
# will be used if available.
|
378
|
-
#
|
379
|
-
# @option options [String] :ssl_ca_directory Full path of the
|
380
|
-
# directory that contains the unbundled SSL certificate
|
381
|
-
# authority files for verifying peer certificates. If you do
|
382
|
-
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
|
383
|
-
# system default will be used if available.
|
406
|
+
# @option options [Boolean] :ssl_verify_peer (true)
|
407
|
+
# When `true`, SSL peer certificates are verified when establishing a connection.
|
384
408
|
#
|
385
409
|
def initialize(*args)
|
386
410
|
super
|
@@ -1530,7 +1554,7 @@ module Aws::WorkLink
|
|
1530
1554
|
params: params,
|
1531
1555
|
config: config)
|
1532
1556
|
context[:gem_name] = 'aws-sdk-worklink'
|
1533
|
-
context[:gem_version] = '1.
|
1557
|
+
context[:gem_version] = '1.46.0'
|
1534
1558
|
Seahorse::Client::Request.new(handlers, context)
|
1535
1559
|
end
|
1536
1560
|
|
@@ -14,6 +14,7 @@ module Aws::WorkLink
|
|
14
14
|
option(
|
15
15
|
:endpoint_provider,
|
16
16
|
doc_type: 'Aws::WorkLink::EndpointProvider',
|
17
|
+
rbs_type: 'untyped',
|
17
18
|
docstring: 'The endpoint provider used to resolve endpoints. Any '\
|
18
19
|
'object that responds to `#resolve_endpoint(parameters)` '\
|
19
20
|
'where `parameters` is a Struct similar to '\
|
data/lib/aws-sdk-worklink.rb
CHANGED
data/sig/client.rbs
ADDED
@@ -0,0 +1,462 @@
|
|
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 WorkLink
|
10
|
+
class Client < ::Seahorse::Client::Base
|
11
|
+
include ::Aws::ClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkLink/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
|
+
?stub_responses: untyped,
|
52
|
+
?token_provider: untyped,
|
53
|
+
?use_dualstack_endpoint: bool,
|
54
|
+
?use_fips_endpoint: bool,
|
55
|
+
?validate_params: bool,
|
56
|
+
?endpoint_provider: untyped,
|
57
|
+
?http_proxy: String,
|
58
|
+
?http_open_timeout: (Float | Integer),
|
59
|
+
?http_read_timeout: (Float | Integer),
|
60
|
+
?http_idle_timeout: (Float | Integer),
|
61
|
+
?http_continue_timeout: (Float | Integer),
|
62
|
+
?ssl_timeout: (Float | Integer | nil),
|
63
|
+
?http_wire_trace: bool,
|
64
|
+
?ssl_verify_peer: bool,
|
65
|
+
?ssl_ca_bundle: String,
|
66
|
+
?ssl_ca_directory: String,
|
67
|
+
?ssl_ca_store: String,
|
68
|
+
?on_chunk_received: Proc,
|
69
|
+
?on_chunk_sent: Proc,
|
70
|
+
?raise_response_errors: bool
|
71
|
+
) -> instance
|
72
|
+
| (?Hash[Symbol, untyped]) -> instance
|
73
|
+
|
74
|
+
|
75
|
+
interface _AssociateDomainResponseSuccess
|
76
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AssociateDomainResponse]
|
77
|
+
end
|
78
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkLink/Client.html#associate_domain-instance_method
|
79
|
+
def associate_domain: (
|
80
|
+
fleet_arn: ::String,
|
81
|
+
domain_name: ::String,
|
82
|
+
?display_name: ::String,
|
83
|
+
acm_certificate_arn: ::String
|
84
|
+
) -> _AssociateDomainResponseSuccess
|
85
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateDomainResponseSuccess
|
86
|
+
|
87
|
+
interface _AssociateWebsiteAuthorizationProviderResponseSuccess
|
88
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AssociateWebsiteAuthorizationProviderResponse]
|
89
|
+
def authorization_provider_id: () -> ::String
|
90
|
+
end
|
91
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkLink/Client.html#associate_website_authorization_provider-instance_method
|
92
|
+
def associate_website_authorization_provider: (
|
93
|
+
fleet_arn: ::String,
|
94
|
+
authorization_provider_type: ("SAML"),
|
95
|
+
?domain_name: ::String
|
96
|
+
) -> _AssociateWebsiteAuthorizationProviderResponseSuccess
|
97
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateWebsiteAuthorizationProviderResponseSuccess
|
98
|
+
|
99
|
+
interface _AssociateWebsiteCertificateAuthorityResponseSuccess
|
100
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AssociateWebsiteCertificateAuthorityResponse]
|
101
|
+
def website_ca_id: () -> ::String
|
102
|
+
end
|
103
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkLink/Client.html#associate_website_certificate_authority-instance_method
|
104
|
+
def associate_website_certificate_authority: (
|
105
|
+
fleet_arn: ::String,
|
106
|
+
certificate: ::String,
|
107
|
+
?display_name: ::String
|
108
|
+
) -> _AssociateWebsiteCertificateAuthorityResponseSuccess
|
109
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateWebsiteCertificateAuthorityResponseSuccess
|
110
|
+
|
111
|
+
interface _CreateFleetResponseSuccess
|
112
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateFleetResponse]
|
113
|
+
def fleet_arn: () -> ::String
|
114
|
+
end
|
115
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkLink/Client.html#create_fleet-instance_method
|
116
|
+
def create_fleet: (
|
117
|
+
fleet_name: ::String,
|
118
|
+
?display_name: ::String,
|
119
|
+
?optimize_for_end_user_location: bool,
|
120
|
+
?tags: Hash[::String, ::String]
|
121
|
+
) -> _CreateFleetResponseSuccess
|
122
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateFleetResponseSuccess
|
123
|
+
|
124
|
+
interface _DeleteFleetResponseSuccess
|
125
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteFleetResponse]
|
126
|
+
end
|
127
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkLink/Client.html#delete_fleet-instance_method
|
128
|
+
def delete_fleet: (
|
129
|
+
fleet_arn: ::String
|
130
|
+
) -> _DeleteFleetResponseSuccess
|
131
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteFleetResponseSuccess
|
132
|
+
|
133
|
+
interface _DescribeAuditStreamConfigurationResponseSuccess
|
134
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAuditStreamConfigurationResponse]
|
135
|
+
def audit_stream_arn: () -> ::String
|
136
|
+
end
|
137
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkLink/Client.html#describe_audit_stream_configuration-instance_method
|
138
|
+
def describe_audit_stream_configuration: (
|
139
|
+
fleet_arn: ::String
|
140
|
+
) -> _DescribeAuditStreamConfigurationResponseSuccess
|
141
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAuditStreamConfigurationResponseSuccess
|
142
|
+
|
143
|
+
interface _DescribeCompanyNetworkConfigurationResponseSuccess
|
144
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeCompanyNetworkConfigurationResponse]
|
145
|
+
def vpc_id: () -> ::String
|
146
|
+
def subnet_ids: () -> ::Array[::String]
|
147
|
+
def security_group_ids: () -> ::Array[::String]
|
148
|
+
end
|
149
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkLink/Client.html#describe_company_network_configuration-instance_method
|
150
|
+
def describe_company_network_configuration: (
|
151
|
+
fleet_arn: ::String
|
152
|
+
) -> _DescribeCompanyNetworkConfigurationResponseSuccess
|
153
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeCompanyNetworkConfigurationResponseSuccess
|
154
|
+
|
155
|
+
interface _DescribeDeviceResponseSuccess
|
156
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeDeviceResponse]
|
157
|
+
def status: () -> ("ACTIVE" | "SIGNED_OUT")
|
158
|
+
def model: () -> ::String
|
159
|
+
def manufacturer: () -> ::String
|
160
|
+
def operating_system: () -> ::String
|
161
|
+
def operating_system_version: () -> ::String
|
162
|
+
def patch_level: () -> ::String
|
163
|
+
def first_accessed_time: () -> ::Time
|
164
|
+
def last_accessed_time: () -> ::Time
|
165
|
+
def username: () -> ::String
|
166
|
+
end
|
167
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkLink/Client.html#describe_device-instance_method
|
168
|
+
def describe_device: (
|
169
|
+
fleet_arn: ::String,
|
170
|
+
device_id: ::String
|
171
|
+
) -> _DescribeDeviceResponseSuccess
|
172
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeDeviceResponseSuccess
|
173
|
+
|
174
|
+
interface _DescribeDevicePolicyConfigurationResponseSuccess
|
175
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeDevicePolicyConfigurationResponse]
|
176
|
+
def device_ca_certificate: () -> ::String
|
177
|
+
end
|
178
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkLink/Client.html#describe_device_policy_configuration-instance_method
|
179
|
+
def describe_device_policy_configuration: (
|
180
|
+
fleet_arn: ::String
|
181
|
+
) -> _DescribeDevicePolicyConfigurationResponseSuccess
|
182
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeDevicePolicyConfigurationResponseSuccess
|
183
|
+
|
184
|
+
interface _DescribeDomainResponseSuccess
|
185
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeDomainResponse]
|
186
|
+
def domain_name: () -> ::String
|
187
|
+
def display_name: () -> ::String
|
188
|
+
def created_time: () -> ::Time
|
189
|
+
def domain_status: () -> ("PENDING_VALIDATION" | "ASSOCIATING" | "ACTIVE" | "INACTIVE" | "DISASSOCIATING" | "DISASSOCIATED" | "FAILED_TO_ASSOCIATE" | "FAILED_TO_DISASSOCIATE")
|
190
|
+
def acm_certificate_arn: () -> ::String
|
191
|
+
end
|
192
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkLink/Client.html#describe_domain-instance_method
|
193
|
+
def describe_domain: (
|
194
|
+
fleet_arn: ::String,
|
195
|
+
domain_name: ::String
|
196
|
+
) -> _DescribeDomainResponseSuccess
|
197
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeDomainResponseSuccess
|
198
|
+
|
199
|
+
interface _DescribeFleetMetadataResponseSuccess
|
200
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeFleetMetadataResponse]
|
201
|
+
def created_time: () -> ::Time
|
202
|
+
def last_updated_time: () -> ::Time
|
203
|
+
def fleet_name: () -> ::String
|
204
|
+
def display_name: () -> ::String
|
205
|
+
def optimize_for_end_user_location: () -> bool
|
206
|
+
def company_code: () -> ::String
|
207
|
+
def fleet_status: () -> ("CREATING" | "ACTIVE" | "DELETING" | "DELETED" | "FAILED_TO_CREATE" | "FAILED_TO_DELETE")
|
208
|
+
def tags: () -> ::Hash[::String, ::String]
|
209
|
+
end
|
210
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkLink/Client.html#describe_fleet_metadata-instance_method
|
211
|
+
def describe_fleet_metadata: (
|
212
|
+
fleet_arn: ::String
|
213
|
+
) -> _DescribeFleetMetadataResponseSuccess
|
214
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeFleetMetadataResponseSuccess
|
215
|
+
|
216
|
+
interface _DescribeIdentityProviderConfigurationResponseSuccess
|
217
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeIdentityProviderConfigurationResponse]
|
218
|
+
def identity_provider_type: () -> ("SAML")
|
219
|
+
def service_provider_saml_metadata: () -> ::String
|
220
|
+
def identity_provider_saml_metadata: () -> ::String
|
221
|
+
end
|
222
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkLink/Client.html#describe_identity_provider_configuration-instance_method
|
223
|
+
def describe_identity_provider_configuration: (
|
224
|
+
fleet_arn: ::String
|
225
|
+
) -> _DescribeIdentityProviderConfigurationResponseSuccess
|
226
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeIdentityProviderConfigurationResponseSuccess
|
227
|
+
|
228
|
+
interface _DescribeWebsiteCertificateAuthorityResponseSuccess
|
229
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeWebsiteCertificateAuthorityResponse]
|
230
|
+
def certificate: () -> ::String
|
231
|
+
def created_time: () -> ::Time
|
232
|
+
def display_name: () -> ::String
|
233
|
+
end
|
234
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkLink/Client.html#describe_website_certificate_authority-instance_method
|
235
|
+
def describe_website_certificate_authority: (
|
236
|
+
fleet_arn: ::String,
|
237
|
+
website_ca_id: ::String
|
238
|
+
) -> _DescribeWebsiteCertificateAuthorityResponseSuccess
|
239
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeWebsiteCertificateAuthorityResponseSuccess
|
240
|
+
|
241
|
+
interface _DisassociateDomainResponseSuccess
|
242
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateDomainResponse]
|
243
|
+
end
|
244
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkLink/Client.html#disassociate_domain-instance_method
|
245
|
+
def disassociate_domain: (
|
246
|
+
fleet_arn: ::String,
|
247
|
+
domain_name: ::String
|
248
|
+
) -> _DisassociateDomainResponseSuccess
|
249
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateDomainResponseSuccess
|
250
|
+
|
251
|
+
interface _DisassociateWebsiteAuthorizationProviderResponseSuccess
|
252
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateWebsiteAuthorizationProviderResponse]
|
253
|
+
end
|
254
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkLink/Client.html#disassociate_website_authorization_provider-instance_method
|
255
|
+
def disassociate_website_authorization_provider: (
|
256
|
+
fleet_arn: ::String,
|
257
|
+
authorization_provider_id: ::String
|
258
|
+
) -> _DisassociateWebsiteAuthorizationProviderResponseSuccess
|
259
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateWebsiteAuthorizationProviderResponseSuccess
|
260
|
+
|
261
|
+
interface _DisassociateWebsiteCertificateAuthorityResponseSuccess
|
262
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateWebsiteCertificateAuthorityResponse]
|
263
|
+
end
|
264
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkLink/Client.html#disassociate_website_certificate_authority-instance_method
|
265
|
+
def disassociate_website_certificate_authority: (
|
266
|
+
fleet_arn: ::String,
|
267
|
+
website_ca_id: ::String
|
268
|
+
) -> _DisassociateWebsiteCertificateAuthorityResponseSuccess
|
269
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateWebsiteCertificateAuthorityResponseSuccess
|
270
|
+
|
271
|
+
interface _ListDevicesResponseSuccess
|
272
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListDevicesResponse]
|
273
|
+
def devices: () -> ::Array[Types::DeviceSummary]
|
274
|
+
def next_token: () -> ::String
|
275
|
+
end
|
276
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkLink/Client.html#list_devices-instance_method
|
277
|
+
def list_devices: (
|
278
|
+
fleet_arn: ::String,
|
279
|
+
?next_token: ::String,
|
280
|
+
?max_results: ::Integer
|
281
|
+
) -> _ListDevicesResponseSuccess
|
282
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDevicesResponseSuccess
|
283
|
+
|
284
|
+
interface _ListDomainsResponseSuccess
|
285
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListDomainsResponse]
|
286
|
+
def domains: () -> ::Array[Types::DomainSummary]
|
287
|
+
def next_token: () -> ::String
|
288
|
+
end
|
289
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkLink/Client.html#list_domains-instance_method
|
290
|
+
def list_domains: (
|
291
|
+
fleet_arn: ::String,
|
292
|
+
?next_token: ::String,
|
293
|
+
?max_results: ::Integer
|
294
|
+
) -> _ListDomainsResponseSuccess
|
295
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDomainsResponseSuccess
|
296
|
+
|
297
|
+
interface _ListFleetsResponseSuccess
|
298
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListFleetsResponse]
|
299
|
+
def fleet_summary_list: () -> ::Array[Types::FleetSummary]
|
300
|
+
def next_token: () -> ::String
|
301
|
+
end
|
302
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkLink/Client.html#list_fleets-instance_method
|
303
|
+
def list_fleets: (
|
304
|
+
?next_token: ::String,
|
305
|
+
?max_results: ::Integer
|
306
|
+
) -> _ListFleetsResponseSuccess
|
307
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListFleetsResponseSuccess
|
308
|
+
|
309
|
+
interface _ListTagsForResourceResponseSuccess
|
310
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
|
311
|
+
def tags: () -> ::Hash[::String, ::String]
|
312
|
+
end
|
313
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkLink/Client.html#list_tags_for_resource-instance_method
|
314
|
+
def list_tags_for_resource: (
|
315
|
+
resource_arn: ::String
|
316
|
+
) -> _ListTagsForResourceResponseSuccess
|
317
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
318
|
+
|
319
|
+
interface _ListWebsiteAuthorizationProvidersResponseSuccess
|
320
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListWebsiteAuthorizationProvidersResponse]
|
321
|
+
def website_authorization_providers: () -> ::Array[Types::WebsiteAuthorizationProviderSummary]
|
322
|
+
def next_token: () -> ::String
|
323
|
+
end
|
324
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkLink/Client.html#list_website_authorization_providers-instance_method
|
325
|
+
def list_website_authorization_providers: (
|
326
|
+
fleet_arn: ::String,
|
327
|
+
?next_token: ::String,
|
328
|
+
?max_results: ::Integer
|
329
|
+
) -> _ListWebsiteAuthorizationProvidersResponseSuccess
|
330
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListWebsiteAuthorizationProvidersResponseSuccess
|
331
|
+
|
332
|
+
interface _ListWebsiteCertificateAuthoritiesResponseSuccess
|
333
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListWebsiteCertificateAuthoritiesResponse]
|
334
|
+
def website_certificate_authorities: () -> ::Array[Types::WebsiteCaSummary]
|
335
|
+
def next_token: () -> ::String
|
336
|
+
end
|
337
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkLink/Client.html#list_website_certificate_authorities-instance_method
|
338
|
+
def list_website_certificate_authorities: (
|
339
|
+
fleet_arn: ::String,
|
340
|
+
?max_results: ::Integer,
|
341
|
+
?next_token: ::String
|
342
|
+
) -> _ListWebsiteCertificateAuthoritiesResponseSuccess
|
343
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListWebsiteCertificateAuthoritiesResponseSuccess
|
344
|
+
|
345
|
+
interface _RestoreDomainAccessResponseSuccess
|
346
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::RestoreDomainAccessResponse]
|
347
|
+
end
|
348
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkLink/Client.html#restore_domain_access-instance_method
|
349
|
+
def restore_domain_access: (
|
350
|
+
fleet_arn: ::String,
|
351
|
+
domain_name: ::String
|
352
|
+
) -> _RestoreDomainAccessResponseSuccess
|
353
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreDomainAccessResponseSuccess
|
354
|
+
|
355
|
+
interface _RevokeDomainAccessResponseSuccess
|
356
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::RevokeDomainAccessResponse]
|
357
|
+
end
|
358
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkLink/Client.html#revoke_domain_access-instance_method
|
359
|
+
def revoke_domain_access: (
|
360
|
+
fleet_arn: ::String,
|
361
|
+
domain_name: ::String
|
362
|
+
) -> _RevokeDomainAccessResponseSuccess
|
363
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RevokeDomainAccessResponseSuccess
|
364
|
+
|
365
|
+
interface _SignOutUserResponseSuccess
|
366
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::SignOutUserResponse]
|
367
|
+
end
|
368
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkLink/Client.html#sign_out_user-instance_method
|
369
|
+
def sign_out_user: (
|
370
|
+
fleet_arn: ::String,
|
371
|
+
username: ::String
|
372
|
+
) -> _SignOutUserResponseSuccess
|
373
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SignOutUserResponseSuccess
|
374
|
+
|
375
|
+
interface _TagResourceResponseSuccess
|
376
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
|
377
|
+
end
|
378
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkLink/Client.html#tag_resource-instance_method
|
379
|
+
def tag_resource: (
|
380
|
+
resource_arn: ::String,
|
381
|
+
tags: Hash[::String, ::String]
|
382
|
+
) -> _TagResourceResponseSuccess
|
383
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
|
384
|
+
|
385
|
+
interface _UntagResourceResponseSuccess
|
386
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
|
387
|
+
end
|
388
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkLink/Client.html#untag_resource-instance_method
|
389
|
+
def untag_resource: (
|
390
|
+
resource_arn: ::String,
|
391
|
+
tag_keys: Array[::String]
|
392
|
+
) -> _UntagResourceResponseSuccess
|
393
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
|
394
|
+
|
395
|
+
interface _UpdateAuditStreamConfigurationResponseSuccess
|
396
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAuditStreamConfigurationResponse]
|
397
|
+
end
|
398
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkLink/Client.html#update_audit_stream_configuration-instance_method
|
399
|
+
def update_audit_stream_configuration: (
|
400
|
+
fleet_arn: ::String,
|
401
|
+
?audit_stream_arn: ::String
|
402
|
+
) -> _UpdateAuditStreamConfigurationResponseSuccess
|
403
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAuditStreamConfigurationResponseSuccess
|
404
|
+
|
405
|
+
interface _UpdateCompanyNetworkConfigurationResponseSuccess
|
406
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateCompanyNetworkConfigurationResponse]
|
407
|
+
end
|
408
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkLink/Client.html#update_company_network_configuration-instance_method
|
409
|
+
def update_company_network_configuration: (
|
410
|
+
fleet_arn: ::String,
|
411
|
+
vpc_id: ::String,
|
412
|
+
subnet_ids: Array[::String],
|
413
|
+
security_group_ids: Array[::String]
|
414
|
+
) -> _UpdateCompanyNetworkConfigurationResponseSuccess
|
415
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateCompanyNetworkConfigurationResponseSuccess
|
416
|
+
|
417
|
+
interface _UpdateDevicePolicyConfigurationResponseSuccess
|
418
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDevicePolicyConfigurationResponse]
|
419
|
+
end
|
420
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkLink/Client.html#update_device_policy_configuration-instance_method
|
421
|
+
def update_device_policy_configuration: (
|
422
|
+
fleet_arn: ::String,
|
423
|
+
?device_ca_certificate: ::String
|
424
|
+
) -> _UpdateDevicePolicyConfigurationResponseSuccess
|
425
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDevicePolicyConfigurationResponseSuccess
|
426
|
+
|
427
|
+
interface _UpdateDomainMetadataResponseSuccess
|
428
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDomainMetadataResponse]
|
429
|
+
end
|
430
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkLink/Client.html#update_domain_metadata-instance_method
|
431
|
+
def update_domain_metadata: (
|
432
|
+
fleet_arn: ::String,
|
433
|
+
domain_name: ::String,
|
434
|
+
?display_name: ::String
|
435
|
+
) -> _UpdateDomainMetadataResponseSuccess
|
436
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDomainMetadataResponseSuccess
|
437
|
+
|
438
|
+
interface _UpdateFleetMetadataResponseSuccess
|
439
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateFleetMetadataResponse]
|
440
|
+
end
|
441
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkLink/Client.html#update_fleet_metadata-instance_method
|
442
|
+
def update_fleet_metadata: (
|
443
|
+
fleet_arn: ::String,
|
444
|
+
?display_name: ::String,
|
445
|
+
?optimize_for_end_user_location: bool
|
446
|
+
) -> _UpdateFleetMetadataResponseSuccess
|
447
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateFleetMetadataResponseSuccess
|
448
|
+
|
449
|
+
interface _UpdateIdentityProviderConfigurationResponseSuccess
|
450
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateIdentityProviderConfigurationResponse]
|
451
|
+
end
|
452
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkLink/Client.html#update_identity_provider_configuration-instance_method
|
453
|
+
def update_identity_provider_configuration: (
|
454
|
+
fleet_arn: ::String,
|
455
|
+
identity_provider_type: ("SAML"),
|
456
|
+
?identity_provider_saml_metadata: ::String
|
457
|
+
) -> _UpdateIdentityProviderConfigurationResponseSuccess
|
458
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateIdentityProviderConfigurationResponseSuccess
|
459
|
+
end
|
460
|
+
end
|
461
|
+
end
|
462
|
+
|
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 WorkLink
|
10
|
+
module Errors
|
11
|
+
class ServiceError < ::Aws::Errors::ServiceError
|
12
|
+
end
|
13
|
+
|
14
|
+
class InternalServerErrorException < ::Aws::Errors::ServiceError
|
15
|
+
def message: () -> ::String
|
16
|
+
end
|
17
|
+
class InvalidRequestException < ::Aws::Errors::ServiceError
|
18
|
+
def message: () -> ::String
|
19
|
+
end
|
20
|
+
class ResourceAlreadyExistsException < ::Aws::Errors::ServiceError
|
21
|
+
def message: () -> ::String
|
22
|
+
end
|
23
|
+
class ResourceNotFoundException < ::Aws::Errors::ServiceError
|
24
|
+
def message: () -> ::String
|
25
|
+
end
|
26
|
+
class TooManyRequestsException < ::Aws::Errors::ServiceError
|
27
|
+
def message: () -> ::String
|
28
|
+
end
|
29
|
+
class UnauthorizedException < ::Aws::Errors::ServiceError
|
30
|
+
def message: () -> ::String
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
data/sig/resource.rbs
ADDED
@@ -0,0 +1,79 @@
|
|
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 WorkLink
|
10
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkLink/Resource.html
|
11
|
+
class Resource
|
12
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkLink/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
|
+
?stub_responses: untyped,
|
52
|
+
?token_provider: untyped,
|
53
|
+
?use_dualstack_endpoint: bool,
|
54
|
+
?use_fips_endpoint: bool,
|
55
|
+
?validate_params: bool,
|
56
|
+
?endpoint_provider: untyped,
|
57
|
+
?http_proxy: String,
|
58
|
+
?http_open_timeout: (Float | Integer),
|
59
|
+
?http_read_timeout: (Float | Integer),
|
60
|
+
?http_idle_timeout: (Float | Integer),
|
61
|
+
?http_continue_timeout: (Float | Integer),
|
62
|
+
?ssl_timeout: (Float | Integer | nil),
|
63
|
+
?http_wire_trace: bool,
|
64
|
+
?ssl_verify_peer: bool,
|
65
|
+
?ssl_ca_bundle: String,
|
66
|
+
?ssl_ca_directory: String,
|
67
|
+
?ssl_ca_store: String,
|
68
|
+
?on_chunk_received: Proc,
|
69
|
+
?on_chunk_sent: Proc,
|
70
|
+
?raise_response_errors: bool
|
71
|
+
) -> void
|
72
|
+
| (?Hash[Symbol, untyped]) -> void
|
73
|
+
|
74
|
+
def client: () -> Client
|
75
|
+
|
76
|
+
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|
data/sig/types.rbs
ADDED
@@ -0,0 +1,451 @@
|
|
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::WorkLink
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AssociateDomainRequest
|
12
|
+
attr_accessor fleet_arn: ::String
|
13
|
+
attr_accessor domain_name: ::String
|
14
|
+
attr_accessor display_name: ::String
|
15
|
+
attr_accessor acm_certificate_arn: ::String
|
16
|
+
SENSITIVE: []
|
17
|
+
end
|
18
|
+
|
19
|
+
class AssociateDomainResponse < Aws::EmptyStructure
|
20
|
+
end
|
21
|
+
|
22
|
+
class AssociateWebsiteAuthorizationProviderRequest
|
23
|
+
attr_accessor fleet_arn: ::String
|
24
|
+
attr_accessor authorization_provider_type: ("SAML")
|
25
|
+
attr_accessor domain_name: ::String
|
26
|
+
SENSITIVE: []
|
27
|
+
end
|
28
|
+
|
29
|
+
class AssociateWebsiteAuthorizationProviderResponse
|
30
|
+
attr_accessor authorization_provider_id: ::String
|
31
|
+
SENSITIVE: []
|
32
|
+
end
|
33
|
+
|
34
|
+
class AssociateWebsiteCertificateAuthorityRequest
|
35
|
+
attr_accessor fleet_arn: ::String
|
36
|
+
attr_accessor certificate: ::String
|
37
|
+
attr_accessor display_name: ::String
|
38
|
+
SENSITIVE: []
|
39
|
+
end
|
40
|
+
|
41
|
+
class AssociateWebsiteCertificateAuthorityResponse
|
42
|
+
attr_accessor website_ca_id: ::String
|
43
|
+
SENSITIVE: []
|
44
|
+
end
|
45
|
+
|
46
|
+
class CreateFleetRequest
|
47
|
+
attr_accessor fleet_name: ::String
|
48
|
+
attr_accessor display_name: ::String
|
49
|
+
attr_accessor optimize_for_end_user_location: bool
|
50
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
51
|
+
SENSITIVE: []
|
52
|
+
end
|
53
|
+
|
54
|
+
class CreateFleetResponse
|
55
|
+
attr_accessor fleet_arn: ::String
|
56
|
+
SENSITIVE: []
|
57
|
+
end
|
58
|
+
|
59
|
+
class DeleteFleetRequest
|
60
|
+
attr_accessor fleet_arn: ::String
|
61
|
+
SENSITIVE: []
|
62
|
+
end
|
63
|
+
|
64
|
+
class DeleteFleetResponse < Aws::EmptyStructure
|
65
|
+
end
|
66
|
+
|
67
|
+
class DescribeAuditStreamConfigurationRequest
|
68
|
+
attr_accessor fleet_arn: ::String
|
69
|
+
SENSITIVE: []
|
70
|
+
end
|
71
|
+
|
72
|
+
class DescribeAuditStreamConfigurationResponse
|
73
|
+
attr_accessor audit_stream_arn: ::String
|
74
|
+
SENSITIVE: []
|
75
|
+
end
|
76
|
+
|
77
|
+
class DescribeCompanyNetworkConfigurationRequest
|
78
|
+
attr_accessor fleet_arn: ::String
|
79
|
+
SENSITIVE: []
|
80
|
+
end
|
81
|
+
|
82
|
+
class DescribeCompanyNetworkConfigurationResponse
|
83
|
+
attr_accessor vpc_id: ::String
|
84
|
+
attr_accessor subnet_ids: ::Array[::String]
|
85
|
+
attr_accessor security_group_ids: ::Array[::String]
|
86
|
+
SENSITIVE: []
|
87
|
+
end
|
88
|
+
|
89
|
+
class DescribeDevicePolicyConfigurationRequest
|
90
|
+
attr_accessor fleet_arn: ::String
|
91
|
+
SENSITIVE: []
|
92
|
+
end
|
93
|
+
|
94
|
+
class DescribeDevicePolicyConfigurationResponse
|
95
|
+
attr_accessor device_ca_certificate: ::String
|
96
|
+
SENSITIVE: []
|
97
|
+
end
|
98
|
+
|
99
|
+
class DescribeDeviceRequest
|
100
|
+
attr_accessor fleet_arn: ::String
|
101
|
+
attr_accessor device_id: ::String
|
102
|
+
SENSITIVE: []
|
103
|
+
end
|
104
|
+
|
105
|
+
class DescribeDeviceResponse
|
106
|
+
attr_accessor status: ("ACTIVE" | "SIGNED_OUT")
|
107
|
+
attr_accessor model: ::String
|
108
|
+
attr_accessor manufacturer: ::String
|
109
|
+
attr_accessor operating_system: ::String
|
110
|
+
attr_accessor operating_system_version: ::String
|
111
|
+
attr_accessor patch_level: ::String
|
112
|
+
attr_accessor first_accessed_time: ::Time
|
113
|
+
attr_accessor last_accessed_time: ::Time
|
114
|
+
attr_accessor username: ::String
|
115
|
+
SENSITIVE: []
|
116
|
+
end
|
117
|
+
|
118
|
+
class DescribeDomainRequest
|
119
|
+
attr_accessor fleet_arn: ::String
|
120
|
+
attr_accessor domain_name: ::String
|
121
|
+
SENSITIVE: []
|
122
|
+
end
|
123
|
+
|
124
|
+
class DescribeDomainResponse
|
125
|
+
attr_accessor domain_name: ::String
|
126
|
+
attr_accessor display_name: ::String
|
127
|
+
attr_accessor created_time: ::Time
|
128
|
+
attr_accessor domain_status: ("PENDING_VALIDATION" | "ASSOCIATING" | "ACTIVE" | "INACTIVE" | "DISASSOCIATING" | "DISASSOCIATED" | "FAILED_TO_ASSOCIATE" | "FAILED_TO_DISASSOCIATE")
|
129
|
+
attr_accessor acm_certificate_arn: ::String
|
130
|
+
SENSITIVE: []
|
131
|
+
end
|
132
|
+
|
133
|
+
class DescribeFleetMetadataRequest
|
134
|
+
attr_accessor fleet_arn: ::String
|
135
|
+
SENSITIVE: []
|
136
|
+
end
|
137
|
+
|
138
|
+
class DescribeFleetMetadataResponse
|
139
|
+
attr_accessor created_time: ::Time
|
140
|
+
attr_accessor last_updated_time: ::Time
|
141
|
+
attr_accessor fleet_name: ::String
|
142
|
+
attr_accessor display_name: ::String
|
143
|
+
attr_accessor optimize_for_end_user_location: bool
|
144
|
+
attr_accessor company_code: ::String
|
145
|
+
attr_accessor fleet_status: ("CREATING" | "ACTIVE" | "DELETING" | "DELETED" | "FAILED_TO_CREATE" | "FAILED_TO_DELETE")
|
146
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
147
|
+
SENSITIVE: []
|
148
|
+
end
|
149
|
+
|
150
|
+
class DescribeIdentityProviderConfigurationRequest
|
151
|
+
attr_accessor fleet_arn: ::String
|
152
|
+
SENSITIVE: []
|
153
|
+
end
|
154
|
+
|
155
|
+
class DescribeIdentityProviderConfigurationResponse
|
156
|
+
attr_accessor identity_provider_type: ("SAML")
|
157
|
+
attr_accessor service_provider_saml_metadata: ::String
|
158
|
+
attr_accessor identity_provider_saml_metadata: ::String
|
159
|
+
SENSITIVE: []
|
160
|
+
end
|
161
|
+
|
162
|
+
class DescribeWebsiteCertificateAuthorityRequest
|
163
|
+
attr_accessor fleet_arn: ::String
|
164
|
+
attr_accessor website_ca_id: ::String
|
165
|
+
SENSITIVE: []
|
166
|
+
end
|
167
|
+
|
168
|
+
class DescribeWebsiteCertificateAuthorityResponse
|
169
|
+
attr_accessor certificate: ::String
|
170
|
+
attr_accessor created_time: ::Time
|
171
|
+
attr_accessor display_name: ::String
|
172
|
+
SENSITIVE: []
|
173
|
+
end
|
174
|
+
|
175
|
+
class DeviceSummary
|
176
|
+
attr_accessor device_id: ::String
|
177
|
+
attr_accessor device_status: ("ACTIVE" | "SIGNED_OUT")
|
178
|
+
SENSITIVE: []
|
179
|
+
end
|
180
|
+
|
181
|
+
class DisassociateDomainRequest
|
182
|
+
attr_accessor fleet_arn: ::String
|
183
|
+
attr_accessor domain_name: ::String
|
184
|
+
SENSITIVE: []
|
185
|
+
end
|
186
|
+
|
187
|
+
class DisassociateDomainResponse < Aws::EmptyStructure
|
188
|
+
end
|
189
|
+
|
190
|
+
class DisassociateWebsiteAuthorizationProviderRequest
|
191
|
+
attr_accessor fleet_arn: ::String
|
192
|
+
attr_accessor authorization_provider_id: ::String
|
193
|
+
SENSITIVE: []
|
194
|
+
end
|
195
|
+
|
196
|
+
class DisassociateWebsiteAuthorizationProviderResponse < Aws::EmptyStructure
|
197
|
+
end
|
198
|
+
|
199
|
+
class DisassociateWebsiteCertificateAuthorityRequest
|
200
|
+
attr_accessor fleet_arn: ::String
|
201
|
+
attr_accessor website_ca_id: ::String
|
202
|
+
SENSITIVE: []
|
203
|
+
end
|
204
|
+
|
205
|
+
class DisassociateWebsiteCertificateAuthorityResponse < Aws::EmptyStructure
|
206
|
+
end
|
207
|
+
|
208
|
+
class DomainSummary
|
209
|
+
attr_accessor domain_name: ::String
|
210
|
+
attr_accessor display_name: ::String
|
211
|
+
attr_accessor created_time: ::Time
|
212
|
+
attr_accessor domain_status: ("PENDING_VALIDATION" | "ASSOCIATING" | "ACTIVE" | "INACTIVE" | "DISASSOCIATING" | "DISASSOCIATED" | "FAILED_TO_ASSOCIATE" | "FAILED_TO_DISASSOCIATE")
|
213
|
+
SENSITIVE: []
|
214
|
+
end
|
215
|
+
|
216
|
+
class FleetSummary
|
217
|
+
attr_accessor fleet_arn: ::String
|
218
|
+
attr_accessor created_time: ::Time
|
219
|
+
attr_accessor last_updated_time: ::Time
|
220
|
+
attr_accessor fleet_name: ::String
|
221
|
+
attr_accessor display_name: ::String
|
222
|
+
attr_accessor company_code: ::String
|
223
|
+
attr_accessor fleet_status: ("CREATING" | "ACTIVE" | "DELETING" | "DELETED" | "FAILED_TO_CREATE" | "FAILED_TO_DELETE")
|
224
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
225
|
+
SENSITIVE: []
|
226
|
+
end
|
227
|
+
|
228
|
+
class InternalServerErrorException
|
229
|
+
attr_accessor message: ::String
|
230
|
+
SENSITIVE: []
|
231
|
+
end
|
232
|
+
|
233
|
+
class InvalidRequestException
|
234
|
+
attr_accessor message: ::String
|
235
|
+
SENSITIVE: []
|
236
|
+
end
|
237
|
+
|
238
|
+
class ListDevicesRequest
|
239
|
+
attr_accessor fleet_arn: ::String
|
240
|
+
attr_accessor next_token: ::String
|
241
|
+
attr_accessor max_results: ::Integer
|
242
|
+
SENSITIVE: []
|
243
|
+
end
|
244
|
+
|
245
|
+
class ListDevicesResponse
|
246
|
+
attr_accessor devices: ::Array[Types::DeviceSummary]
|
247
|
+
attr_accessor next_token: ::String
|
248
|
+
SENSITIVE: []
|
249
|
+
end
|
250
|
+
|
251
|
+
class ListDomainsRequest
|
252
|
+
attr_accessor fleet_arn: ::String
|
253
|
+
attr_accessor next_token: ::String
|
254
|
+
attr_accessor max_results: ::Integer
|
255
|
+
SENSITIVE: []
|
256
|
+
end
|
257
|
+
|
258
|
+
class ListDomainsResponse
|
259
|
+
attr_accessor domains: ::Array[Types::DomainSummary]
|
260
|
+
attr_accessor next_token: ::String
|
261
|
+
SENSITIVE: []
|
262
|
+
end
|
263
|
+
|
264
|
+
class ListFleetsRequest
|
265
|
+
attr_accessor next_token: ::String
|
266
|
+
attr_accessor max_results: ::Integer
|
267
|
+
SENSITIVE: []
|
268
|
+
end
|
269
|
+
|
270
|
+
class ListFleetsResponse
|
271
|
+
attr_accessor fleet_summary_list: ::Array[Types::FleetSummary]
|
272
|
+
attr_accessor next_token: ::String
|
273
|
+
SENSITIVE: []
|
274
|
+
end
|
275
|
+
|
276
|
+
class ListTagsForResourceRequest
|
277
|
+
attr_accessor resource_arn: ::String
|
278
|
+
SENSITIVE: []
|
279
|
+
end
|
280
|
+
|
281
|
+
class ListTagsForResourceResponse
|
282
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
283
|
+
SENSITIVE: []
|
284
|
+
end
|
285
|
+
|
286
|
+
class ListWebsiteAuthorizationProvidersRequest
|
287
|
+
attr_accessor fleet_arn: ::String
|
288
|
+
attr_accessor next_token: ::String
|
289
|
+
attr_accessor max_results: ::Integer
|
290
|
+
SENSITIVE: []
|
291
|
+
end
|
292
|
+
|
293
|
+
class ListWebsiteAuthorizationProvidersResponse
|
294
|
+
attr_accessor website_authorization_providers: ::Array[Types::WebsiteAuthorizationProviderSummary]
|
295
|
+
attr_accessor next_token: ::String
|
296
|
+
SENSITIVE: []
|
297
|
+
end
|
298
|
+
|
299
|
+
class ListWebsiteCertificateAuthoritiesRequest
|
300
|
+
attr_accessor fleet_arn: ::String
|
301
|
+
attr_accessor max_results: ::Integer
|
302
|
+
attr_accessor next_token: ::String
|
303
|
+
SENSITIVE: []
|
304
|
+
end
|
305
|
+
|
306
|
+
class ListWebsiteCertificateAuthoritiesResponse
|
307
|
+
attr_accessor website_certificate_authorities: ::Array[Types::WebsiteCaSummary]
|
308
|
+
attr_accessor next_token: ::String
|
309
|
+
SENSITIVE: []
|
310
|
+
end
|
311
|
+
|
312
|
+
class ResourceAlreadyExistsException
|
313
|
+
attr_accessor message: ::String
|
314
|
+
SENSITIVE: []
|
315
|
+
end
|
316
|
+
|
317
|
+
class ResourceNotFoundException
|
318
|
+
attr_accessor message: ::String
|
319
|
+
SENSITIVE: []
|
320
|
+
end
|
321
|
+
|
322
|
+
class RestoreDomainAccessRequest
|
323
|
+
attr_accessor fleet_arn: ::String
|
324
|
+
attr_accessor domain_name: ::String
|
325
|
+
SENSITIVE: []
|
326
|
+
end
|
327
|
+
|
328
|
+
class RestoreDomainAccessResponse < Aws::EmptyStructure
|
329
|
+
end
|
330
|
+
|
331
|
+
class RevokeDomainAccessRequest
|
332
|
+
attr_accessor fleet_arn: ::String
|
333
|
+
attr_accessor domain_name: ::String
|
334
|
+
SENSITIVE: []
|
335
|
+
end
|
336
|
+
|
337
|
+
class RevokeDomainAccessResponse < Aws::EmptyStructure
|
338
|
+
end
|
339
|
+
|
340
|
+
class SignOutUserRequest
|
341
|
+
attr_accessor fleet_arn: ::String
|
342
|
+
attr_accessor username: ::String
|
343
|
+
SENSITIVE: []
|
344
|
+
end
|
345
|
+
|
346
|
+
class SignOutUserResponse < Aws::EmptyStructure
|
347
|
+
end
|
348
|
+
|
349
|
+
class TagResourceRequest
|
350
|
+
attr_accessor resource_arn: ::String
|
351
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
352
|
+
SENSITIVE: []
|
353
|
+
end
|
354
|
+
|
355
|
+
class TagResourceResponse < Aws::EmptyStructure
|
356
|
+
end
|
357
|
+
|
358
|
+
class TooManyRequestsException
|
359
|
+
attr_accessor message: ::String
|
360
|
+
SENSITIVE: []
|
361
|
+
end
|
362
|
+
|
363
|
+
class UnauthorizedException
|
364
|
+
attr_accessor message: ::String
|
365
|
+
SENSITIVE: []
|
366
|
+
end
|
367
|
+
|
368
|
+
class UntagResourceRequest
|
369
|
+
attr_accessor resource_arn: ::String
|
370
|
+
attr_accessor tag_keys: ::Array[::String]
|
371
|
+
SENSITIVE: []
|
372
|
+
end
|
373
|
+
|
374
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
375
|
+
end
|
376
|
+
|
377
|
+
class UpdateAuditStreamConfigurationRequest
|
378
|
+
attr_accessor fleet_arn: ::String
|
379
|
+
attr_accessor audit_stream_arn: ::String
|
380
|
+
SENSITIVE: []
|
381
|
+
end
|
382
|
+
|
383
|
+
class UpdateAuditStreamConfigurationResponse < Aws::EmptyStructure
|
384
|
+
end
|
385
|
+
|
386
|
+
class UpdateCompanyNetworkConfigurationRequest
|
387
|
+
attr_accessor fleet_arn: ::String
|
388
|
+
attr_accessor vpc_id: ::String
|
389
|
+
attr_accessor subnet_ids: ::Array[::String]
|
390
|
+
attr_accessor security_group_ids: ::Array[::String]
|
391
|
+
SENSITIVE: []
|
392
|
+
end
|
393
|
+
|
394
|
+
class UpdateCompanyNetworkConfigurationResponse < Aws::EmptyStructure
|
395
|
+
end
|
396
|
+
|
397
|
+
class UpdateDevicePolicyConfigurationRequest
|
398
|
+
attr_accessor fleet_arn: ::String
|
399
|
+
attr_accessor device_ca_certificate: ::String
|
400
|
+
SENSITIVE: []
|
401
|
+
end
|
402
|
+
|
403
|
+
class UpdateDevicePolicyConfigurationResponse < Aws::EmptyStructure
|
404
|
+
end
|
405
|
+
|
406
|
+
class UpdateDomainMetadataRequest
|
407
|
+
attr_accessor fleet_arn: ::String
|
408
|
+
attr_accessor domain_name: ::String
|
409
|
+
attr_accessor display_name: ::String
|
410
|
+
SENSITIVE: []
|
411
|
+
end
|
412
|
+
|
413
|
+
class UpdateDomainMetadataResponse < Aws::EmptyStructure
|
414
|
+
end
|
415
|
+
|
416
|
+
class UpdateFleetMetadataRequest
|
417
|
+
attr_accessor fleet_arn: ::String
|
418
|
+
attr_accessor display_name: ::String
|
419
|
+
attr_accessor optimize_for_end_user_location: bool
|
420
|
+
SENSITIVE: []
|
421
|
+
end
|
422
|
+
|
423
|
+
class UpdateFleetMetadataResponse < Aws::EmptyStructure
|
424
|
+
end
|
425
|
+
|
426
|
+
class UpdateIdentityProviderConfigurationRequest
|
427
|
+
attr_accessor fleet_arn: ::String
|
428
|
+
attr_accessor identity_provider_type: ("SAML")
|
429
|
+
attr_accessor identity_provider_saml_metadata: ::String
|
430
|
+
SENSITIVE: []
|
431
|
+
end
|
432
|
+
|
433
|
+
class UpdateIdentityProviderConfigurationResponse < Aws::EmptyStructure
|
434
|
+
end
|
435
|
+
|
436
|
+
class WebsiteAuthorizationProviderSummary
|
437
|
+
attr_accessor authorization_provider_id: ::String
|
438
|
+
attr_accessor authorization_provider_type: ("SAML")
|
439
|
+
attr_accessor domain_name: ::String
|
440
|
+
attr_accessor created_time: ::Time
|
441
|
+
SENSITIVE: []
|
442
|
+
end
|
443
|
+
|
444
|
+
class WebsiteCaSummary
|
445
|
+
attr_accessor website_ca_id: ::String
|
446
|
+
attr_accessor created_time: ::Time
|
447
|
+
attr_accessor display_name: ::String
|
448
|
+
SENSITIVE: []
|
449
|
+
end
|
450
|
+
end
|
451
|
+
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 WorkLink
|
10
|
+
module Waiters
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-worklink
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.46.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-04-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.193.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.193.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -66,13 +66,18 @@ files:
|
|
66
66
|
- lib/aws-sdk-worklink/plugins/endpoints.rb
|
67
67
|
- lib/aws-sdk-worklink/resource.rb
|
68
68
|
- lib/aws-sdk-worklink/types.rb
|
69
|
+
- sig/client.rbs
|
70
|
+
- sig/errors.rbs
|
71
|
+
- sig/resource.rbs
|
72
|
+
- sig/types.rbs
|
73
|
+
- sig/waiters.rbs
|
69
74
|
homepage: https://github.com/aws/aws-sdk-ruby
|
70
75
|
licenses:
|
71
76
|
- Apache-2.0
|
72
77
|
metadata:
|
73
78
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-worklink
|
74
79
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-worklink/CHANGELOG.md
|
75
|
-
post_install_message:
|
80
|
+
post_install_message:
|
76
81
|
rdoc_options: []
|
77
82
|
require_paths:
|
78
83
|
- lib
|
@@ -87,8 +92,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
87
92
|
- !ruby/object:Gem::Version
|
88
93
|
version: '0'
|
89
94
|
requirements: []
|
90
|
-
rubygems_version: 3.
|
91
|
-
signing_key:
|
95
|
+
rubygems_version: 3.4.10
|
96
|
+
signing_key:
|
92
97
|
specification_version: 4
|
93
98
|
summary: AWS SDK for Ruby - WorkLink
|
94
99
|
test_files: []
|