aws-sdk-worklink 1.15.0 → 1.20.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-worklink.rb +5 -2
- data/lib/aws-sdk-worklink/client.rb +126 -10
- data/lib/aws-sdk-worklink/client_api.rb +66 -0
- data/lib/aws-sdk-worklink/errors.rb +2 -0
- data/lib/aws-sdk-worklink/resource.rb +2 -0
- data/lib/aws-sdk-worklink/types.rb +175 -7
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9fff41ad233b74d1509bdee156f8ef3c44affdca354cbc61d65061fd5a1cc8dc
|
4
|
+
data.tar.gz: e18a99e715821e50258543293de5b7e6023df0544a1c902ddf375f8a94d167b5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5992999f488b117a285dc616b09e91c3456c564d3ef5e7e0d106a6071b7fd33ccccb486edc351eddb0f91bbc48b219da0b619544ca2a151ce2386cafb304bb71
|
7
|
+
data.tar.gz: 24318ef9b59832eb23b42397ec5677f512a9fd4cc5724ee0a7316816519558fab864089428da2014429f723ba075834baeeaaf5b0b8a7461cdf3fbccecadcfc3
|
data/lib/aws-sdk-worklink.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -5,6 +7,7 @@
|
|
5
7
|
#
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
10
|
+
|
8
11
|
require 'aws-sdk-core'
|
9
12
|
require 'aws-sigv4'
|
10
13
|
|
@@ -42,9 +45,9 @@ require_relative 'aws-sdk-worklink/customizations'
|
|
42
45
|
#
|
43
46
|
# See {Errors} for more information.
|
44
47
|
#
|
45
|
-
#
|
48
|
+
# @!group service
|
46
49
|
module Aws::WorkLink
|
47
50
|
|
48
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.20.0'
|
49
52
|
|
50
53
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
29
32
|
|
@@ -69,6 +72,7 @@ module Aws::WorkLink
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
74
78
|
|
@@ -81,13 +85,28 @@ module Aws::WorkLink
|
|
81
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
82
86
|
# credentials.
|
83
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
84
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
85
103
|
# from an EC2 IMDS on an EC2 instance.
|
86
104
|
#
|
87
|
-
# * `Aws::
|
88
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
89
107
|
#
|
90
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
91
110
|
#
|
92
111
|
# When `:credentials` are not configured directly, the following
|
93
112
|
# locations will be searched for credentials:
|
@@ -97,10 +116,10 @@ module Aws::WorkLink
|
|
97
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
98
117
|
# * `~/.aws/credentials`
|
99
118
|
# * `~/.aws/config`
|
100
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
101
|
-
# very aggressive. Construct and pass an instance of
|
102
|
-
# `Aws::InstanceProfileCredentails`
|
103
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
104
123
|
#
|
105
124
|
# @option options [required, String] :region
|
106
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -161,7 +180,7 @@ module Aws::WorkLink
|
|
161
180
|
# @option options [String] :endpoint
|
162
181
|
# The client endpoint is normally constructed from the `:region`
|
163
182
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be a valid HTTP(S) URI.
|
183
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
184
|
#
|
166
185
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
186
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -435,6 +454,9 @@ module Aws::WorkLink
|
|
435
454
|
# through the closest AWS Region to users, which may be outside of your
|
436
455
|
# home Region.
|
437
456
|
#
|
457
|
+
# @option params [Hash<String,String>] :tags
|
458
|
+
# The tags to add to the resource. A tag is a key-value pair.
|
459
|
+
#
|
438
460
|
# @return [Types::CreateFleetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
439
461
|
#
|
440
462
|
# * {Types::CreateFleetResponse#fleet_arn #fleet_arn} => String
|
@@ -445,6 +467,9 @@ module Aws::WorkLink
|
|
445
467
|
# fleet_name: "FleetName", # required
|
446
468
|
# display_name: "DisplayName",
|
447
469
|
# optimize_for_end_user_location: false,
|
470
|
+
# tags: {
|
471
|
+
# "TagKey" => "TagValue",
|
472
|
+
# },
|
448
473
|
# })
|
449
474
|
#
|
450
475
|
# @example Response structure
|
@@ -667,7 +692,7 @@ module Aws::WorkLink
|
|
667
692
|
# provider, networking, and device configuration details.
|
668
693
|
#
|
669
694
|
# @option params [required, String] :fleet_arn
|
670
|
-
# The ARN of the fleet.
|
695
|
+
# The Amazon Resource Name (ARN) of the fleet.
|
671
696
|
#
|
672
697
|
# @return [Types::DescribeFleetMetadataResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
673
698
|
#
|
@@ -678,6 +703,7 @@ module Aws::WorkLink
|
|
678
703
|
# * {Types::DescribeFleetMetadataResponse#optimize_for_end_user_location #optimize_for_end_user_location} => Boolean
|
679
704
|
# * {Types::DescribeFleetMetadataResponse#company_code #company_code} => String
|
680
705
|
# * {Types::DescribeFleetMetadataResponse#fleet_status #fleet_status} => String
|
706
|
+
# * {Types::DescribeFleetMetadataResponse#tags #tags} => Hash<String,String>
|
681
707
|
#
|
682
708
|
# @example Request syntax with placeholder values
|
683
709
|
#
|
@@ -694,6 +720,8 @@ module Aws::WorkLink
|
|
694
720
|
# resp.optimize_for_end_user_location #=> Boolean
|
695
721
|
# resp.company_code #=> String
|
696
722
|
# resp.fleet_status #=> String, one of "CREATING", "ACTIVE", "DELETING", "DELETED", "FAILED_TO_CREATE", "FAILED_TO_DELETE"
|
723
|
+
# resp.tags #=> Hash
|
724
|
+
# resp.tags["TagKey"] #=> String
|
697
725
|
#
|
698
726
|
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/DescribeFleetMetadata AWS API Documentation
|
699
727
|
#
|
@@ -974,6 +1002,8 @@ module Aws::WorkLink
|
|
974
1002
|
# resp.fleet_summary_list[0].display_name #=> String
|
975
1003
|
# resp.fleet_summary_list[0].company_code #=> String
|
976
1004
|
# resp.fleet_summary_list[0].fleet_status #=> String, one of "CREATING", "ACTIVE", "DELETING", "DELETED", "FAILED_TO_CREATE", "FAILED_TO_DELETE"
|
1005
|
+
# resp.fleet_summary_list[0].tags #=> Hash
|
1006
|
+
# resp.fleet_summary_list[0].tags["TagKey"] #=> String
|
977
1007
|
# resp.next_token #=> String
|
978
1008
|
#
|
979
1009
|
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/ListFleets AWS API Documentation
|
@@ -985,6 +1015,35 @@ module Aws::WorkLink
|
|
985
1015
|
req.send_request(options)
|
986
1016
|
end
|
987
1017
|
|
1018
|
+
# Retrieves a list of tags for the specified resource.
|
1019
|
+
#
|
1020
|
+
# @option params [required, String] :resource_arn
|
1021
|
+
# The Amazon Resource Name (ARN) of the fleet.
|
1022
|
+
#
|
1023
|
+
# @return [Types::ListTagsForResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1024
|
+
#
|
1025
|
+
# * {Types::ListTagsForResourceResponse#tags #tags} => Hash<String,String>
|
1026
|
+
#
|
1027
|
+
# @example Request syntax with placeholder values
|
1028
|
+
#
|
1029
|
+
# resp = client.list_tags_for_resource({
|
1030
|
+
# resource_arn: "FleetArn", # required
|
1031
|
+
# })
|
1032
|
+
#
|
1033
|
+
# @example Response structure
|
1034
|
+
#
|
1035
|
+
# resp.tags #=> Hash
|
1036
|
+
# resp.tags["TagKey"] #=> String
|
1037
|
+
#
|
1038
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/ListTagsForResource AWS API Documentation
|
1039
|
+
#
|
1040
|
+
# @overload list_tags_for_resource(params = {})
|
1041
|
+
# @param [Hash] params ({})
|
1042
|
+
def list_tags_for_resource(params = {}, options = {})
|
1043
|
+
req = build_request(:list_tags_for_resource, params)
|
1044
|
+
req.send_request(options)
|
1045
|
+
end
|
1046
|
+
|
988
1047
|
# Retrieves a list of website authorization providers associated with a
|
989
1048
|
# specified fleet.
|
990
1049
|
#
|
@@ -1155,6 +1214,63 @@ module Aws::WorkLink
|
|
1155
1214
|
req.send_request(options)
|
1156
1215
|
end
|
1157
1216
|
|
1217
|
+
# Adds or overwrites one or more tags for the specified resource, such
|
1218
|
+
# as a fleet. Each tag consists of a key and an optional value. If a
|
1219
|
+
# resource already has a tag with the same key, this operation updates
|
1220
|
+
# its value.
|
1221
|
+
#
|
1222
|
+
# @option params [required, String] :resource_arn
|
1223
|
+
# The Amazon Resource Name (ARN) of the fleet.
|
1224
|
+
#
|
1225
|
+
# @option params [required, Hash<String,String>] :tags
|
1226
|
+
# The tags to add to the resource. A tag is a key-value pair.
|
1227
|
+
#
|
1228
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1229
|
+
#
|
1230
|
+
# @example Request syntax with placeholder values
|
1231
|
+
#
|
1232
|
+
# resp = client.tag_resource({
|
1233
|
+
# resource_arn: "FleetArn", # required
|
1234
|
+
# tags: { # required
|
1235
|
+
# "TagKey" => "TagValue",
|
1236
|
+
# },
|
1237
|
+
# })
|
1238
|
+
#
|
1239
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/TagResource AWS API Documentation
|
1240
|
+
#
|
1241
|
+
# @overload tag_resource(params = {})
|
1242
|
+
# @param [Hash] params ({})
|
1243
|
+
def tag_resource(params = {}, options = {})
|
1244
|
+
req = build_request(:tag_resource, params)
|
1245
|
+
req.send_request(options)
|
1246
|
+
end
|
1247
|
+
|
1248
|
+
# Removes one or more tags from the specified resource.
|
1249
|
+
#
|
1250
|
+
# @option params [required, String] :resource_arn
|
1251
|
+
# The Amazon Resource Name (ARN) of the fleet.
|
1252
|
+
#
|
1253
|
+
# @option params [required, Array<String>] :tag_keys
|
1254
|
+
# The list of tag keys to remove from the resource.
|
1255
|
+
#
|
1256
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1257
|
+
#
|
1258
|
+
# @example Request syntax with placeholder values
|
1259
|
+
#
|
1260
|
+
# resp = client.untag_resource({
|
1261
|
+
# resource_arn: "FleetArn", # required
|
1262
|
+
# tag_keys: ["TagKey"], # required
|
1263
|
+
# })
|
1264
|
+
#
|
1265
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/UntagResource AWS API Documentation
|
1266
|
+
#
|
1267
|
+
# @overload untag_resource(params = {})
|
1268
|
+
# @param [Hash] params ({})
|
1269
|
+
def untag_resource(params = {}, options = {})
|
1270
|
+
req = build_request(:untag_resource, params)
|
1271
|
+
req.send_request(options)
|
1272
|
+
end
|
1273
|
+
|
1158
1274
|
# Updates the audit stream configuration for the fleet.
|
1159
1275
|
#
|
1160
1276
|
# @option params [required, String] :fleet_arn
|
@@ -1353,7 +1469,7 @@ module Aws::WorkLink
|
|
1353
1469
|
params: params,
|
1354
1470
|
config: config)
|
1355
1471
|
context[:gem_name] = 'aws-sdk-worklink'
|
1356
|
-
context[:gem_version] = '1.
|
1472
|
+
context[:gem_version] = '1.20.0'
|
1357
1473
|
Seahorse::Client::Request.new(handlers, context)
|
1358
1474
|
end
|
1359
1475
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -80,6 +82,8 @@ module Aws::WorkLink
|
|
80
82
|
ListDomainsResponse = Shapes::StructureShape.new(name: 'ListDomainsResponse')
|
81
83
|
ListFleetsRequest = Shapes::StructureShape.new(name: 'ListFleetsRequest')
|
82
84
|
ListFleetsResponse = Shapes::StructureShape.new(name: 'ListFleetsResponse')
|
85
|
+
ListTagsForResourceRequest = Shapes::StructureShape.new(name: 'ListTagsForResourceRequest')
|
86
|
+
ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
|
83
87
|
ListWebsiteAuthorizationProvidersRequest = Shapes::StructureShape.new(name: 'ListWebsiteAuthorizationProvidersRequest')
|
84
88
|
ListWebsiteAuthorizationProvidersResponse = Shapes::StructureShape.new(name: 'ListWebsiteAuthorizationProvidersResponse')
|
85
89
|
ListWebsiteCertificateAuthoritiesRequest = Shapes::StructureShape.new(name: 'ListWebsiteCertificateAuthoritiesRequest')
|
@@ -99,8 +103,16 @@ module Aws::WorkLink
|
|
99
103
|
SignOutUserResponse = Shapes::StructureShape.new(name: 'SignOutUserResponse')
|
100
104
|
SubnetId = Shapes::StringShape.new(name: 'SubnetId')
|
101
105
|
SubnetIds = Shapes::ListShape.new(name: 'SubnetIds')
|
106
|
+
TagKey = Shapes::StringShape.new(name: 'TagKey')
|
107
|
+
TagKeyList = Shapes::ListShape.new(name: 'TagKeyList')
|
108
|
+
TagMap = Shapes::MapShape.new(name: 'TagMap')
|
109
|
+
TagResourceRequest = Shapes::StructureShape.new(name: 'TagResourceRequest')
|
110
|
+
TagResourceResponse = Shapes::StructureShape.new(name: 'TagResourceResponse')
|
111
|
+
TagValue = Shapes::StringShape.new(name: 'TagValue')
|
102
112
|
TooManyRequestsException = Shapes::StructureShape.new(name: 'TooManyRequestsException')
|
103
113
|
UnauthorizedException = Shapes::StructureShape.new(name: 'UnauthorizedException')
|
114
|
+
UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
|
115
|
+
UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
|
104
116
|
UpdateAuditStreamConfigurationRequest = Shapes::StructureShape.new(name: 'UpdateAuditStreamConfigurationRequest')
|
105
117
|
UpdateAuditStreamConfigurationResponse = Shapes::StructureShape.new(name: 'UpdateAuditStreamConfigurationResponse')
|
106
118
|
UpdateCompanyNetworkConfigurationRequest = Shapes::StructureShape.new(name: 'UpdateCompanyNetworkConfigurationRequest')
|
@@ -147,6 +159,7 @@ module Aws::WorkLink
|
|
147
159
|
CreateFleetRequest.add_member(:fleet_name, Shapes::ShapeRef.new(shape: FleetName, required: true, location_name: "FleetName"))
|
148
160
|
CreateFleetRequest.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "DisplayName"))
|
149
161
|
CreateFleetRequest.add_member(:optimize_for_end_user_location, Shapes::ShapeRef.new(shape: Boolean, location_name: "OptimizeForEndUserLocation"))
|
162
|
+
CreateFleetRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
150
163
|
CreateFleetRequest.struct_class = Types::CreateFleetRequest
|
151
164
|
|
152
165
|
CreateFleetResponse.add_member(:fleet_arn, Shapes::ShapeRef.new(shape: FleetArn, location_name: "FleetArn"))
|
@@ -213,6 +226,7 @@ module Aws::WorkLink
|
|
213
226
|
DescribeFleetMetadataResponse.add_member(:optimize_for_end_user_location, Shapes::ShapeRef.new(shape: Boolean, location_name: "OptimizeForEndUserLocation"))
|
214
227
|
DescribeFleetMetadataResponse.add_member(:company_code, Shapes::ShapeRef.new(shape: CompanyCode, location_name: "CompanyCode"))
|
215
228
|
DescribeFleetMetadataResponse.add_member(:fleet_status, Shapes::ShapeRef.new(shape: FleetStatus, location_name: "FleetStatus"))
|
229
|
+
DescribeFleetMetadataResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
216
230
|
DescribeFleetMetadataResponse.struct_class = Types::DescribeFleetMetadataResponse
|
217
231
|
|
218
232
|
DescribeIdentityProviderConfigurationRequest.add_member(:fleet_arn, Shapes::ShapeRef.new(shape: FleetArn, required: true, location_name: "FleetArn"))
|
@@ -271,6 +285,7 @@ module Aws::WorkLink
|
|
271
285
|
FleetSummary.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "DisplayName"))
|
272
286
|
FleetSummary.add_member(:company_code, Shapes::ShapeRef.new(shape: CompanyCode, location_name: "CompanyCode"))
|
273
287
|
FleetSummary.add_member(:fleet_status, Shapes::ShapeRef.new(shape: FleetStatus, location_name: "FleetStatus"))
|
288
|
+
FleetSummary.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
274
289
|
FleetSummary.struct_class = Types::FleetSummary
|
275
290
|
|
276
291
|
FleetSummaryList.member = Shapes::ShapeRef.new(shape: FleetSummary)
|
@@ -307,6 +322,12 @@ module Aws::WorkLink
|
|
307
322
|
ListFleetsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
308
323
|
ListFleetsResponse.struct_class = Types::ListFleetsResponse
|
309
324
|
|
325
|
+
ListTagsForResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: FleetArn, required: true, location: "uri", location_name: "ResourceArn"))
|
326
|
+
ListTagsForResourceRequest.struct_class = Types::ListTagsForResourceRequest
|
327
|
+
|
328
|
+
ListTagsForResourceResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
329
|
+
ListTagsForResourceResponse.struct_class = Types::ListTagsForResourceResponse
|
330
|
+
|
310
331
|
ListWebsiteAuthorizationProvidersRequest.add_member(:fleet_arn, Shapes::ShapeRef.new(shape: FleetArn, required: true, location_name: "FleetArn"))
|
311
332
|
ListWebsiteAuthorizationProvidersRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
312
333
|
ListWebsiteAuthorizationProvidersRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
@@ -353,12 +374,29 @@ module Aws::WorkLink
|
|
353
374
|
|
354
375
|
SubnetIds.member = Shapes::ShapeRef.new(shape: SubnetId)
|
355
376
|
|
377
|
+
TagKeyList.member = Shapes::ShapeRef.new(shape: TagKey)
|
378
|
+
|
379
|
+
TagMap.key = Shapes::ShapeRef.new(shape: TagKey)
|
380
|
+
TagMap.value = Shapes::ShapeRef.new(shape: TagValue)
|
381
|
+
|
382
|
+
TagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: FleetArn, required: true, location: "uri", location_name: "ResourceArn"))
|
383
|
+
TagResourceRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, required: true, location_name: "Tags"))
|
384
|
+
TagResourceRequest.struct_class = Types::TagResourceRequest
|
385
|
+
|
386
|
+
TagResourceResponse.struct_class = Types::TagResourceResponse
|
387
|
+
|
356
388
|
TooManyRequestsException.add_member(:message, Shapes::ShapeRef.new(shape: ExceptionMessage, location_name: "Message"))
|
357
389
|
TooManyRequestsException.struct_class = Types::TooManyRequestsException
|
358
390
|
|
359
391
|
UnauthorizedException.add_member(:message, Shapes::ShapeRef.new(shape: ExceptionMessage, location_name: "Message"))
|
360
392
|
UnauthorizedException.struct_class = Types::UnauthorizedException
|
361
393
|
|
394
|
+
UntagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: FleetArn, required: true, location: "uri", location_name: "ResourceArn"))
|
395
|
+
UntagResourceRequest.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeyList, required: true, location: "querystring", location_name: "tagKeys"))
|
396
|
+
UntagResourceRequest.struct_class = Types::UntagResourceRequest
|
397
|
+
|
398
|
+
UntagResourceResponse.struct_class = Types::UntagResourceResponse
|
399
|
+
|
362
400
|
UpdateAuditStreamConfigurationRequest.add_member(:fleet_arn, Shapes::ShapeRef.new(shape: FleetArn, required: true, location_name: "FleetArn"))
|
363
401
|
UpdateAuditStreamConfigurationRequest.add_member(:audit_stream_arn, Shapes::ShapeRef.new(shape: AuditStreamArn, location_name: "AuditStreamArn"))
|
364
402
|
UpdateAuditStreamConfigurationRequest.struct_class = Types::UpdateAuditStreamConfigurationRequest
|
@@ -675,6 +713,7 @@ module Aws::WorkLink
|
|
675
713
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
676
714
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
677
715
|
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
716
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
678
717
|
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
679
718
|
o[:pager] = Aws::Pager.new(
|
680
719
|
limit_key: "max_results",
|
@@ -702,6 +741,15 @@ module Aws::WorkLink
|
|
702
741
|
)
|
703
742
|
end)
|
704
743
|
|
744
|
+
api.add_operation(:list_tags_for_resource, Seahorse::Model::Operation.new.tap do |o|
|
745
|
+
o.name = "ListTagsForResource"
|
746
|
+
o.http_method = "GET"
|
747
|
+
o.http_request_uri = "/tags/{ResourceArn}"
|
748
|
+
o.input = Shapes::ShapeRef.new(shape: ListTagsForResourceRequest)
|
749
|
+
o.output = Shapes::ShapeRef.new(shape: ListTagsForResourceResponse)
|
750
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
751
|
+
end)
|
752
|
+
|
705
753
|
api.add_operation(:list_website_authorization_providers, Seahorse::Model::Operation.new.tap do |o|
|
706
754
|
o.name = "ListWebsiteAuthorizationProviders"
|
707
755
|
o.http_method = "POST"
|
@@ -778,6 +826,24 @@ module Aws::WorkLink
|
|
778
826
|
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
779
827
|
end)
|
780
828
|
|
829
|
+
api.add_operation(:tag_resource, Seahorse::Model::Operation.new.tap do |o|
|
830
|
+
o.name = "TagResource"
|
831
|
+
o.http_method = "POST"
|
832
|
+
o.http_request_uri = "/tags/{ResourceArn}"
|
833
|
+
o.input = Shapes::ShapeRef.new(shape: TagResourceRequest)
|
834
|
+
o.output = Shapes::ShapeRef.new(shape: TagResourceResponse)
|
835
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
836
|
+
end)
|
837
|
+
|
838
|
+
api.add_operation(:untag_resource, Seahorse::Model::Operation.new.tap do |o|
|
839
|
+
o.name = "UntagResource"
|
840
|
+
o.http_method = "DELETE"
|
841
|
+
o.http_request_uri = "/tags/{ResourceArn}"
|
842
|
+
o.input = Shapes::ShapeRef.new(shape: UntagResourceRequest)
|
843
|
+
o.output = Shapes::ShapeRef.new(shape: UntagResourceResponse)
|
844
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
845
|
+
end)
|
846
|
+
|
781
847
|
api.add_operation(:update_audit_stream_configuration, Seahorse::Model::Operation.new.tap do |o|
|
782
848
|
o.name = "UpdateAuditStreamConfiguration"
|
783
849
|
o.http_method = "POST"
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -42,6 +44,7 @@ module Aws::WorkLink
|
|
42
44
|
:domain_name,
|
43
45
|
:display_name,
|
44
46
|
:acm_certificate_arn)
|
47
|
+
SENSITIVE = []
|
45
48
|
include Aws::Structure
|
46
49
|
end
|
47
50
|
|
@@ -77,6 +80,7 @@ module Aws::WorkLink
|
|
77
80
|
:fleet_arn,
|
78
81
|
:authorization_provider_type,
|
79
82
|
:domain_name)
|
83
|
+
SENSITIVE = []
|
80
84
|
include Aws::Structure
|
81
85
|
end
|
82
86
|
|
@@ -88,6 +92,7 @@ module Aws::WorkLink
|
|
88
92
|
#
|
89
93
|
class AssociateWebsiteAuthorizationProviderResponse < Struct.new(
|
90
94
|
:authorization_provider_id)
|
95
|
+
SENSITIVE = []
|
91
96
|
include Aws::Structure
|
92
97
|
end
|
93
98
|
|
@@ -118,6 +123,7 @@ module Aws::WorkLink
|
|
118
123
|
:fleet_arn,
|
119
124
|
:certificate,
|
120
125
|
:display_name)
|
126
|
+
SENSITIVE = []
|
121
127
|
include Aws::Structure
|
122
128
|
end
|
123
129
|
|
@@ -129,6 +135,7 @@ module Aws::WorkLink
|
|
129
135
|
#
|
130
136
|
class AssociateWebsiteCertificateAuthorityResponse < Struct.new(
|
131
137
|
:website_ca_id)
|
138
|
+
SENSITIVE = []
|
132
139
|
include Aws::Structure
|
133
140
|
end
|
134
141
|
|
@@ -139,6 +146,9 @@ module Aws::WorkLink
|
|
139
146
|
# fleet_name: "FleetName", # required
|
140
147
|
# display_name: "DisplayName",
|
141
148
|
# optimize_for_end_user_location: false,
|
149
|
+
# tags: {
|
150
|
+
# "TagKey" => "TagValue",
|
151
|
+
# },
|
142
152
|
# }
|
143
153
|
#
|
144
154
|
# @!attribute [rw] fleet_name
|
@@ -155,23 +165,30 @@ module Aws::WorkLink
|
|
155
165
|
# your home Region.
|
156
166
|
# @return [Boolean]
|
157
167
|
#
|
168
|
+
# @!attribute [rw] tags
|
169
|
+
# The tags to add to the resource. A tag is a key-value pair.
|
170
|
+
# @return [Hash<String,String>]
|
171
|
+
#
|
158
172
|
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/CreateFleetRequest AWS API Documentation
|
159
173
|
#
|
160
174
|
class CreateFleetRequest < Struct.new(
|
161
175
|
:fleet_name,
|
162
176
|
:display_name,
|
163
|
-
:optimize_for_end_user_location
|
177
|
+
:optimize_for_end_user_location,
|
178
|
+
:tags)
|
179
|
+
SENSITIVE = []
|
164
180
|
include Aws::Structure
|
165
181
|
end
|
166
182
|
|
167
183
|
# @!attribute [rw] fleet_arn
|
168
|
-
# The ARN of the fleet.
|
184
|
+
# The Amazon Resource Name (ARN) of the fleet.
|
169
185
|
# @return [String]
|
170
186
|
#
|
171
187
|
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/CreateFleetResponse AWS API Documentation
|
172
188
|
#
|
173
189
|
class CreateFleetResponse < Struct.new(
|
174
190
|
:fleet_arn)
|
191
|
+
SENSITIVE = []
|
175
192
|
include Aws::Structure
|
176
193
|
end
|
177
194
|
|
@@ -190,6 +207,7 @@ module Aws::WorkLink
|
|
190
207
|
#
|
191
208
|
class DeleteFleetRequest < Struct.new(
|
192
209
|
:fleet_arn)
|
210
|
+
SENSITIVE = []
|
193
211
|
include Aws::Structure
|
194
212
|
end
|
195
213
|
|
@@ -212,6 +230,7 @@ module Aws::WorkLink
|
|
212
230
|
#
|
213
231
|
class DescribeAuditStreamConfigurationRequest < Struct.new(
|
214
232
|
:fleet_arn)
|
233
|
+
SENSITIVE = []
|
215
234
|
include Aws::Structure
|
216
235
|
end
|
217
236
|
|
@@ -224,6 +243,7 @@ module Aws::WorkLink
|
|
224
243
|
#
|
225
244
|
class DescribeAuditStreamConfigurationResponse < Struct.new(
|
226
245
|
:audit_stream_arn)
|
246
|
+
SENSITIVE = []
|
227
247
|
include Aws::Structure
|
228
248
|
end
|
229
249
|
|
@@ -242,6 +262,7 @@ module Aws::WorkLink
|
|
242
262
|
#
|
243
263
|
class DescribeCompanyNetworkConfigurationRequest < Struct.new(
|
244
264
|
:fleet_arn)
|
265
|
+
SENSITIVE = []
|
245
266
|
include Aws::Structure
|
246
267
|
end
|
247
268
|
|
@@ -264,6 +285,7 @@ module Aws::WorkLink
|
|
264
285
|
:vpc_id,
|
265
286
|
:subnet_ids,
|
266
287
|
:security_group_ids)
|
288
|
+
SENSITIVE = []
|
267
289
|
include Aws::Structure
|
268
290
|
end
|
269
291
|
|
@@ -282,6 +304,7 @@ module Aws::WorkLink
|
|
282
304
|
#
|
283
305
|
class DescribeDevicePolicyConfigurationRequest < Struct.new(
|
284
306
|
:fleet_arn)
|
307
|
+
SENSITIVE = []
|
285
308
|
include Aws::Structure
|
286
309
|
end
|
287
310
|
|
@@ -295,6 +318,7 @@ module Aws::WorkLink
|
|
295
318
|
#
|
296
319
|
class DescribeDevicePolicyConfigurationResponse < Struct.new(
|
297
320
|
:device_ca_certificate)
|
321
|
+
SENSITIVE = []
|
298
322
|
include Aws::Structure
|
299
323
|
end
|
300
324
|
|
@@ -319,6 +343,7 @@ module Aws::WorkLink
|
|
319
343
|
class DescribeDeviceRequest < Struct.new(
|
320
344
|
:fleet_arn,
|
321
345
|
:device_id)
|
346
|
+
SENSITIVE = []
|
322
347
|
include Aws::Structure
|
323
348
|
end
|
324
349
|
|
@@ -370,6 +395,7 @@ module Aws::WorkLink
|
|
370
395
|
:first_accessed_time,
|
371
396
|
:last_accessed_time,
|
372
397
|
:username)
|
398
|
+
SENSITIVE = []
|
373
399
|
include Aws::Structure
|
374
400
|
end
|
375
401
|
|
@@ -394,6 +420,7 @@ module Aws::WorkLink
|
|
394
420
|
class DescribeDomainRequest < Struct.new(
|
395
421
|
:fleet_arn,
|
396
422
|
:domain_name)
|
423
|
+
SENSITIVE = []
|
397
424
|
include Aws::Structure
|
398
425
|
end
|
399
426
|
|
@@ -426,6 +453,7 @@ module Aws::WorkLink
|
|
426
453
|
:created_time,
|
427
454
|
:domain_status,
|
428
455
|
:acm_certificate_arn)
|
456
|
+
SENSITIVE = []
|
429
457
|
include Aws::Structure
|
430
458
|
end
|
431
459
|
|
@@ -437,13 +465,14 @@ module Aws::WorkLink
|
|
437
465
|
# }
|
438
466
|
#
|
439
467
|
# @!attribute [rw] fleet_arn
|
440
|
-
# The ARN of the fleet.
|
468
|
+
# The Amazon Resource Name (ARN) of the fleet.
|
441
469
|
# @return [String]
|
442
470
|
#
|
443
471
|
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/DescribeFleetMetadataRequest AWS API Documentation
|
444
472
|
#
|
445
473
|
class DescribeFleetMetadataRequest < Struct.new(
|
446
474
|
:fleet_arn)
|
475
|
+
SENSITIVE = []
|
447
476
|
include Aws::Structure
|
448
477
|
end
|
449
478
|
|
@@ -477,6 +506,10 @@ module Aws::WorkLink
|
|
477
506
|
# The current state of the fleet.
|
478
507
|
# @return [String]
|
479
508
|
#
|
509
|
+
# @!attribute [rw] tags
|
510
|
+
# The tags attached to the resource. A tag is a key-value pair.
|
511
|
+
# @return [Hash<String,String>]
|
512
|
+
#
|
480
513
|
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/DescribeFleetMetadataResponse AWS API Documentation
|
481
514
|
#
|
482
515
|
class DescribeFleetMetadataResponse < Struct.new(
|
@@ -486,7 +519,9 @@ module Aws::WorkLink
|
|
486
519
|
:display_name,
|
487
520
|
:optimize_for_end_user_location,
|
488
521
|
:company_code,
|
489
|
-
:fleet_status
|
522
|
+
:fleet_status,
|
523
|
+
:tags)
|
524
|
+
SENSITIVE = []
|
490
525
|
include Aws::Structure
|
491
526
|
end
|
492
527
|
|
@@ -505,6 +540,7 @@ module Aws::WorkLink
|
|
505
540
|
#
|
506
541
|
class DescribeIdentityProviderConfigurationRequest < Struct.new(
|
507
542
|
:fleet_arn)
|
543
|
+
SENSITIVE = []
|
508
544
|
include Aws::Structure
|
509
545
|
end
|
510
546
|
|
@@ -526,6 +562,7 @@ module Aws::WorkLink
|
|
526
562
|
:identity_provider_type,
|
527
563
|
:service_provider_saml_metadata,
|
528
564
|
:identity_provider_saml_metadata)
|
565
|
+
SENSITIVE = []
|
529
566
|
include Aws::Structure
|
530
567
|
end
|
531
568
|
|
@@ -550,6 +587,7 @@ module Aws::WorkLink
|
|
550
587
|
class DescribeWebsiteCertificateAuthorityRequest < Struct.new(
|
551
588
|
:fleet_arn,
|
552
589
|
:website_ca_id)
|
590
|
+
SENSITIVE = []
|
553
591
|
include Aws::Structure
|
554
592
|
end
|
555
593
|
|
@@ -571,6 +609,7 @@ module Aws::WorkLink
|
|
571
609
|
:certificate,
|
572
610
|
:created_time,
|
573
611
|
:display_name)
|
612
|
+
SENSITIVE = []
|
574
613
|
include Aws::Structure
|
575
614
|
end
|
576
615
|
|
@@ -589,6 +628,7 @@ module Aws::WorkLink
|
|
589
628
|
class DeviceSummary < Struct.new(
|
590
629
|
:device_id,
|
591
630
|
:device_status)
|
631
|
+
SENSITIVE = []
|
592
632
|
include Aws::Structure
|
593
633
|
end
|
594
634
|
|
@@ -613,6 +653,7 @@ module Aws::WorkLink
|
|
613
653
|
class DisassociateDomainRequest < Struct.new(
|
614
654
|
:fleet_arn,
|
615
655
|
:domain_name)
|
656
|
+
SENSITIVE = []
|
616
657
|
include Aws::Structure
|
617
658
|
end
|
618
659
|
|
@@ -641,6 +682,7 @@ module Aws::WorkLink
|
|
641
682
|
class DisassociateWebsiteAuthorizationProviderRequest < Struct.new(
|
642
683
|
:fleet_arn,
|
643
684
|
:authorization_provider_id)
|
685
|
+
SENSITIVE = []
|
644
686
|
include Aws::Structure
|
645
687
|
end
|
646
688
|
|
@@ -669,6 +711,7 @@ module Aws::WorkLink
|
|
669
711
|
class DisassociateWebsiteCertificateAuthorityRequest < Struct.new(
|
670
712
|
:fleet_arn,
|
671
713
|
:website_ca_id)
|
714
|
+
SENSITIVE = []
|
672
715
|
include Aws::Structure
|
673
716
|
end
|
674
717
|
|
@@ -701,13 +744,14 @@ module Aws::WorkLink
|
|
701
744
|
:display_name,
|
702
745
|
:created_time,
|
703
746
|
:domain_status)
|
747
|
+
SENSITIVE = []
|
704
748
|
include Aws::Structure
|
705
749
|
end
|
706
750
|
|
707
751
|
# The summary of the fleet.
|
708
752
|
#
|
709
753
|
# @!attribute [rw] fleet_arn
|
710
|
-
# The ARN of the fleet.
|
754
|
+
# The Amazon Resource Name (ARN) of the fleet.
|
711
755
|
# @return [String]
|
712
756
|
#
|
713
757
|
# @!attribute [rw] created_time
|
@@ -723,7 +767,7 @@ module Aws::WorkLink
|
|
723
767
|
# @return [String]
|
724
768
|
#
|
725
769
|
# @!attribute [rw] display_name
|
726
|
-
# The name to display.
|
770
|
+
# The name of the fleet to display.
|
727
771
|
# @return [String]
|
728
772
|
#
|
729
773
|
# @!attribute [rw] company_code
|
@@ -734,6 +778,10 @@ module Aws::WorkLink
|
|
734
778
|
# The status of the fleet.
|
735
779
|
# @return [String]
|
736
780
|
#
|
781
|
+
# @!attribute [rw] tags
|
782
|
+
# The tags attached to the resource. A tag is a key-value pair.
|
783
|
+
# @return [Hash<String,String>]
|
784
|
+
#
|
737
785
|
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/FleetSummary AWS API Documentation
|
738
786
|
#
|
739
787
|
class FleetSummary < Struct.new(
|
@@ -743,7 +791,9 @@ module Aws::WorkLink
|
|
743
791
|
:fleet_name,
|
744
792
|
:display_name,
|
745
793
|
:company_code,
|
746
|
-
:fleet_status
|
794
|
+
:fleet_status,
|
795
|
+
:tags)
|
796
|
+
SENSITIVE = []
|
747
797
|
include Aws::Structure
|
748
798
|
end
|
749
799
|
|
@@ -756,6 +806,7 @@ module Aws::WorkLink
|
|
756
806
|
#
|
757
807
|
class InternalServerErrorException < Struct.new(
|
758
808
|
:message)
|
809
|
+
SENSITIVE = []
|
759
810
|
include Aws::Structure
|
760
811
|
end
|
761
812
|
|
@@ -768,6 +819,7 @@ module Aws::WorkLink
|
|
768
819
|
#
|
769
820
|
class InvalidRequestException < Struct.new(
|
770
821
|
:message)
|
822
|
+
SENSITIVE = []
|
771
823
|
include Aws::Structure
|
772
824
|
end
|
773
825
|
|
@@ -799,6 +851,7 @@ module Aws::WorkLink
|
|
799
851
|
:fleet_arn,
|
800
852
|
:next_token,
|
801
853
|
:max_results)
|
854
|
+
SENSITIVE = []
|
802
855
|
include Aws::Structure
|
803
856
|
end
|
804
857
|
|
@@ -816,6 +869,7 @@ module Aws::WorkLink
|
|
816
869
|
class ListDevicesResponse < Struct.new(
|
817
870
|
:devices,
|
818
871
|
:next_token)
|
872
|
+
SENSITIVE = []
|
819
873
|
include Aws::Structure
|
820
874
|
end
|
821
875
|
|
@@ -847,6 +901,7 @@ module Aws::WorkLink
|
|
847
901
|
:fleet_arn,
|
848
902
|
:next_token,
|
849
903
|
:max_results)
|
904
|
+
SENSITIVE = []
|
850
905
|
include Aws::Structure
|
851
906
|
end
|
852
907
|
|
@@ -864,6 +919,7 @@ module Aws::WorkLink
|
|
864
919
|
class ListDomainsResponse < Struct.new(
|
865
920
|
:domains,
|
866
921
|
:next_token)
|
922
|
+
SENSITIVE = []
|
867
923
|
include Aws::Structure
|
868
924
|
end
|
869
925
|
|
@@ -889,6 +945,7 @@ module Aws::WorkLink
|
|
889
945
|
class ListFleetsRequest < Struct.new(
|
890
946
|
:next_token,
|
891
947
|
:max_results)
|
948
|
+
SENSITIVE = []
|
892
949
|
include Aws::Structure
|
893
950
|
end
|
894
951
|
|
@@ -906,6 +963,38 @@ module Aws::WorkLink
|
|
906
963
|
class ListFleetsResponse < Struct.new(
|
907
964
|
:fleet_summary_list,
|
908
965
|
:next_token)
|
966
|
+
SENSITIVE = []
|
967
|
+
include Aws::Structure
|
968
|
+
end
|
969
|
+
|
970
|
+
# @note When making an API call, you may pass ListTagsForResourceRequest
|
971
|
+
# data as a hash:
|
972
|
+
#
|
973
|
+
# {
|
974
|
+
# resource_arn: "FleetArn", # required
|
975
|
+
# }
|
976
|
+
#
|
977
|
+
# @!attribute [rw] resource_arn
|
978
|
+
# The Amazon Resource Name (ARN) of the fleet.
|
979
|
+
# @return [String]
|
980
|
+
#
|
981
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/ListTagsForResourceRequest AWS API Documentation
|
982
|
+
#
|
983
|
+
class ListTagsForResourceRequest < Struct.new(
|
984
|
+
:resource_arn)
|
985
|
+
SENSITIVE = []
|
986
|
+
include Aws::Structure
|
987
|
+
end
|
988
|
+
|
989
|
+
# @!attribute [rw] tags
|
990
|
+
# The tags attached to the resource. A tag is a key-value pair.
|
991
|
+
# @return [Hash<String,String>]
|
992
|
+
#
|
993
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/ListTagsForResourceResponse AWS API Documentation
|
994
|
+
#
|
995
|
+
class ListTagsForResourceResponse < Struct.new(
|
996
|
+
:tags)
|
997
|
+
SENSITIVE = []
|
909
998
|
include Aws::Structure
|
910
999
|
end
|
911
1000
|
|
@@ -937,6 +1026,7 @@ module Aws::WorkLink
|
|
937
1026
|
:fleet_arn,
|
938
1027
|
:next_token,
|
939
1028
|
:max_results)
|
1029
|
+
SENSITIVE = []
|
940
1030
|
include Aws::Structure
|
941
1031
|
end
|
942
1032
|
|
@@ -954,6 +1044,7 @@ module Aws::WorkLink
|
|
954
1044
|
class ListWebsiteAuthorizationProvidersResponse < Struct.new(
|
955
1045
|
:website_authorization_providers,
|
956
1046
|
:next_token)
|
1047
|
+
SENSITIVE = []
|
957
1048
|
include Aws::Structure
|
958
1049
|
end
|
959
1050
|
|
@@ -985,6 +1076,7 @@ module Aws::WorkLink
|
|
985
1076
|
:fleet_arn,
|
986
1077
|
:max_results,
|
987
1078
|
:next_token)
|
1079
|
+
SENSITIVE = []
|
988
1080
|
include Aws::Structure
|
989
1081
|
end
|
990
1082
|
|
@@ -1002,6 +1094,7 @@ module Aws::WorkLink
|
|
1002
1094
|
class ListWebsiteCertificateAuthoritiesResponse < Struct.new(
|
1003
1095
|
:website_certificate_authorities,
|
1004
1096
|
:next_token)
|
1097
|
+
SENSITIVE = []
|
1005
1098
|
include Aws::Structure
|
1006
1099
|
end
|
1007
1100
|
|
@@ -1014,6 +1107,7 @@ module Aws::WorkLink
|
|
1014
1107
|
#
|
1015
1108
|
class ResourceAlreadyExistsException < Struct.new(
|
1016
1109
|
:message)
|
1110
|
+
SENSITIVE = []
|
1017
1111
|
include Aws::Structure
|
1018
1112
|
end
|
1019
1113
|
|
@@ -1026,6 +1120,7 @@ module Aws::WorkLink
|
|
1026
1120
|
#
|
1027
1121
|
class ResourceNotFoundException < Struct.new(
|
1028
1122
|
:message)
|
1123
|
+
SENSITIVE = []
|
1029
1124
|
include Aws::Structure
|
1030
1125
|
end
|
1031
1126
|
|
@@ -1050,6 +1145,7 @@ module Aws::WorkLink
|
|
1050
1145
|
class RestoreDomainAccessRequest < Struct.new(
|
1051
1146
|
:fleet_arn,
|
1052
1147
|
:domain_name)
|
1148
|
+
SENSITIVE = []
|
1053
1149
|
include Aws::Structure
|
1054
1150
|
end
|
1055
1151
|
|
@@ -1078,6 +1174,7 @@ module Aws::WorkLink
|
|
1078
1174
|
class RevokeDomainAccessRequest < Struct.new(
|
1079
1175
|
:fleet_arn,
|
1080
1176
|
:domain_name)
|
1177
|
+
SENSITIVE = []
|
1081
1178
|
include Aws::Structure
|
1082
1179
|
end
|
1083
1180
|
|
@@ -1106,6 +1203,7 @@ module Aws::WorkLink
|
|
1106
1203
|
class SignOutUserRequest < Struct.new(
|
1107
1204
|
:fleet_arn,
|
1108
1205
|
:username)
|
1206
|
+
SENSITIVE = []
|
1109
1207
|
include Aws::Structure
|
1110
1208
|
end
|
1111
1209
|
|
@@ -1113,6 +1211,37 @@ module Aws::WorkLink
|
|
1113
1211
|
#
|
1114
1212
|
class SignOutUserResponse < Aws::EmptyStructure; end
|
1115
1213
|
|
1214
|
+
# @note When making an API call, you may pass TagResourceRequest
|
1215
|
+
# data as a hash:
|
1216
|
+
#
|
1217
|
+
# {
|
1218
|
+
# resource_arn: "FleetArn", # required
|
1219
|
+
# tags: { # required
|
1220
|
+
# "TagKey" => "TagValue",
|
1221
|
+
# },
|
1222
|
+
# }
|
1223
|
+
#
|
1224
|
+
# @!attribute [rw] resource_arn
|
1225
|
+
# The Amazon Resource Name (ARN) of the fleet.
|
1226
|
+
# @return [String]
|
1227
|
+
#
|
1228
|
+
# @!attribute [rw] tags
|
1229
|
+
# The tags to add to the resource. A tag is a key-value pair.
|
1230
|
+
# @return [Hash<String,String>]
|
1231
|
+
#
|
1232
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/TagResourceRequest AWS API Documentation
|
1233
|
+
#
|
1234
|
+
class TagResourceRequest < Struct.new(
|
1235
|
+
:resource_arn,
|
1236
|
+
:tags)
|
1237
|
+
SENSITIVE = []
|
1238
|
+
include Aws::Structure
|
1239
|
+
end
|
1240
|
+
|
1241
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/TagResourceResponse AWS API Documentation
|
1242
|
+
#
|
1243
|
+
class TagResourceResponse < Aws::EmptyStructure; end
|
1244
|
+
|
1116
1245
|
# The number of requests exceeds the limit.
|
1117
1246
|
#
|
1118
1247
|
# @!attribute [rw] message
|
@@ -1122,6 +1251,7 @@ module Aws::WorkLink
|
|
1122
1251
|
#
|
1123
1252
|
class TooManyRequestsException < Struct.new(
|
1124
1253
|
:message)
|
1254
|
+
SENSITIVE = []
|
1125
1255
|
include Aws::Structure
|
1126
1256
|
end
|
1127
1257
|
|
@@ -1134,9 +1264,39 @@ module Aws::WorkLink
|
|
1134
1264
|
#
|
1135
1265
|
class UnauthorizedException < Struct.new(
|
1136
1266
|
:message)
|
1267
|
+
SENSITIVE = []
|
1268
|
+
include Aws::Structure
|
1269
|
+
end
|
1270
|
+
|
1271
|
+
# @note When making an API call, you may pass UntagResourceRequest
|
1272
|
+
# data as a hash:
|
1273
|
+
#
|
1274
|
+
# {
|
1275
|
+
# resource_arn: "FleetArn", # required
|
1276
|
+
# tag_keys: ["TagKey"], # required
|
1277
|
+
# }
|
1278
|
+
#
|
1279
|
+
# @!attribute [rw] resource_arn
|
1280
|
+
# The Amazon Resource Name (ARN) of the fleet.
|
1281
|
+
# @return [String]
|
1282
|
+
#
|
1283
|
+
# @!attribute [rw] tag_keys
|
1284
|
+
# The list of tag keys to remove from the resource.
|
1285
|
+
# @return [Array<String>]
|
1286
|
+
#
|
1287
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/UntagResourceRequest AWS API Documentation
|
1288
|
+
#
|
1289
|
+
class UntagResourceRequest < Struct.new(
|
1290
|
+
:resource_arn,
|
1291
|
+
:tag_keys)
|
1292
|
+
SENSITIVE = []
|
1137
1293
|
include Aws::Structure
|
1138
1294
|
end
|
1139
1295
|
|
1296
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/UntagResourceResponse AWS API Documentation
|
1297
|
+
#
|
1298
|
+
class UntagResourceResponse < Aws::EmptyStructure; end
|
1299
|
+
|
1140
1300
|
# @note When making an API call, you may pass UpdateAuditStreamConfigurationRequest
|
1141
1301
|
# data as a hash:
|
1142
1302
|
#
|
@@ -1159,6 +1319,7 @@ module Aws::WorkLink
|
|
1159
1319
|
class UpdateAuditStreamConfigurationRequest < Struct.new(
|
1160
1320
|
:fleet_arn,
|
1161
1321
|
:audit_stream_arn)
|
1322
|
+
SENSITIVE = []
|
1162
1323
|
include Aws::Structure
|
1163
1324
|
end
|
1164
1325
|
|
@@ -1200,6 +1361,7 @@ module Aws::WorkLink
|
|
1200
1361
|
:vpc_id,
|
1201
1362
|
:subnet_ids,
|
1202
1363
|
:security_group_ids)
|
1364
|
+
SENSITIVE = []
|
1203
1365
|
include Aws::Structure
|
1204
1366
|
end
|
1205
1367
|
|
@@ -1230,6 +1392,7 @@ module Aws::WorkLink
|
|
1230
1392
|
class UpdateDevicePolicyConfigurationRequest < Struct.new(
|
1231
1393
|
:fleet_arn,
|
1232
1394
|
:device_ca_certificate)
|
1395
|
+
SENSITIVE = []
|
1233
1396
|
include Aws::Structure
|
1234
1397
|
end
|
1235
1398
|
|
@@ -1264,6 +1427,7 @@ module Aws::WorkLink
|
|
1264
1427
|
:fleet_arn,
|
1265
1428
|
:domain_name,
|
1266
1429
|
:display_name)
|
1430
|
+
SENSITIVE = []
|
1267
1431
|
include Aws::Structure
|
1268
1432
|
end
|
1269
1433
|
|
@@ -1301,6 +1465,7 @@ module Aws::WorkLink
|
|
1301
1465
|
:fleet_arn,
|
1302
1466
|
:display_name,
|
1303
1467
|
:optimize_for_end_user_location)
|
1468
|
+
SENSITIVE = []
|
1304
1469
|
include Aws::Structure
|
1305
1470
|
end
|
1306
1471
|
|
@@ -1337,6 +1502,7 @@ module Aws::WorkLink
|
|
1337
1502
|
:fleet_arn,
|
1338
1503
|
:identity_provider_type,
|
1339
1504
|
:identity_provider_saml_metadata)
|
1505
|
+
SENSITIVE = []
|
1340
1506
|
include Aws::Structure
|
1341
1507
|
end
|
1342
1508
|
|
@@ -1370,6 +1536,7 @@ module Aws::WorkLink
|
|
1370
1536
|
:authorization_provider_type,
|
1371
1537
|
:domain_name,
|
1372
1538
|
:created_time)
|
1539
|
+
SENSITIVE = []
|
1373
1540
|
include Aws::Structure
|
1374
1541
|
end
|
1375
1542
|
|
@@ -1393,6 +1560,7 @@ module Aws::WorkLink
|
|
1393
1560
|
:website_ca_id,
|
1394
1561
|
:created_time,
|
1395
1562
|
:display_name)
|
1563
|
+
SENSITIVE = []
|
1396
1564
|
include Aws::Structure
|
1397
1565
|
end
|
1398
1566
|
|
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.20.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-09-15 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.99.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.99.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|