aws-sdk-worklink 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/lib/aws-sdk-worklink.rb +47 -0
- data/lib/aws-sdk-worklink/client.rb +927 -0
- data/lib/aws-sdk-worklink/client_api.rb +579 -0
- data/lib/aws-sdk-worklink/customizations.rb +0 -0
- data/lib/aws-sdk-worklink/errors.rb +14 -0
- data/lib/aws-sdk-worklink/resource.rb +23 -0
- data/lib/aws-sdk-worklink/types.rb +890 -0
- metadata +88 -0
File without changes
|
@@ -0,0 +1,14 @@
|
|
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/master/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::WorkLink
|
9
|
+
module Errors
|
10
|
+
|
11
|
+
extend Aws::Errors::DynamicErrors
|
12
|
+
|
13
|
+
end
|
14
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/master/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::WorkLink
|
9
|
+
class Resource
|
10
|
+
|
11
|
+
# @param options ({})
|
12
|
+
# @option options [Client] :client
|
13
|
+
def initialize(options = {})
|
14
|
+
@client = options[:client] || Client.new(options)
|
15
|
+
end
|
16
|
+
|
17
|
+
# @return [Client]
|
18
|
+
def client
|
19
|
+
@client
|
20
|
+
end
|
21
|
+
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,890 @@
|
|
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/master/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::WorkLink
|
9
|
+
module Types
|
10
|
+
|
11
|
+
# @note When making an API call, you may pass AssociateWebsiteCertificateAuthorityRequest
|
12
|
+
# data as a hash:
|
13
|
+
#
|
14
|
+
# {
|
15
|
+
# fleet_arn: "FleetArn", # required
|
16
|
+
# certificate: "Certificate", # required
|
17
|
+
# display_name: "DisplayName",
|
18
|
+
# }
|
19
|
+
#
|
20
|
+
# @!attribute [rw] fleet_arn
|
21
|
+
# The ARN of the fleet.
|
22
|
+
# @return [String]
|
23
|
+
#
|
24
|
+
# @!attribute [rw] certificate
|
25
|
+
# The root certificate of the CA.
|
26
|
+
# @return [String]
|
27
|
+
#
|
28
|
+
# @!attribute [rw] display_name
|
29
|
+
# The certificate name to display.
|
30
|
+
# @return [String]
|
31
|
+
#
|
32
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/AssociateWebsiteCertificateAuthorityRequest AWS API Documentation
|
33
|
+
#
|
34
|
+
class AssociateWebsiteCertificateAuthorityRequest < Struct.new(
|
35
|
+
:fleet_arn,
|
36
|
+
:certificate,
|
37
|
+
:display_name)
|
38
|
+
include Aws::Structure
|
39
|
+
end
|
40
|
+
|
41
|
+
# @!attribute [rw] website_ca_id
|
42
|
+
# A unique identifier for the CA.
|
43
|
+
# @return [String]
|
44
|
+
#
|
45
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/AssociateWebsiteCertificateAuthorityResponse AWS API Documentation
|
46
|
+
#
|
47
|
+
class AssociateWebsiteCertificateAuthorityResponse < Struct.new(
|
48
|
+
:website_ca_id)
|
49
|
+
include Aws::Structure
|
50
|
+
end
|
51
|
+
|
52
|
+
# @note When making an API call, you may pass CreateFleetRequest
|
53
|
+
# data as a hash:
|
54
|
+
#
|
55
|
+
# {
|
56
|
+
# fleet_name: "FleetName", # required
|
57
|
+
# display_name: "DisplayName",
|
58
|
+
# optimize_for_end_user_location: false,
|
59
|
+
# }
|
60
|
+
#
|
61
|
+
# @!attribute [rw] fleet_name
|
62
|
+
# A unique name for the fleet.
|
63
|
+
# @return [String]
|
64
|
+
#
|
65
|
+
# @!attribute [rw] display_name
|
66
|
+
# The fleet name to display.
|
67
|
+
# @return [String]
|
68
|
+
#
|
69
|
+
# @!attribute [rw] optimize_for_end_user_location
|
70
|
+
# The option to optimize for better performance by routing traffic
|
71
|
+
# through the closest AWS Region to users, which may be outside of
|
72
|
+
# your home Region.
|
73
|
+
# @return [Boolean]
|
74
|
+
#
|
75
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/CreateFleetRequest AWS API Documentation
|
76
|
+
#
|
77
|
+
class CreateFleetRequest < Struct.new(
|
78
|
+
:fleet_name,
|
79
|
+
:display_name,
|
80
|
+
:optimize_for_end_user_location)
|
81
|
+
include Aws::Structure
|
82
|
+
end
|
83
|
+
|
84
|
+
# @!attribute [rw] fleet_arn
|
85
|
+
# The ARN of the fleet.
|
86
|
+
# @return [String]
|
87
|
+
#
|
88
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/CreateFleetResponse AWS API Documentation
|
89
|
+
#
|
90
|
+
class CreateFleetResponse < Struct.new(
|
91
|
+
:fleet_arn)
|
92
|
+
include Aws::Structure
|
93
|
+
end
|
94
|
+
|
95
|
+
# @note When making an API call, you may pass DeleteFleetRequest
|
96
|
+
# data as a hash:
|
97
|
+
#
|
98
|
+
# {
|
99
|
+
# fleet_arn: "FleetArn", # required
|
100
|
+
# }
|
101
|
+
#
|
102
|
+
# @!attribute [rw] fleet_arn
|
103
|
+
# The ARN of the fleet.
|
104
|
+
# @return [String]
|
105
|
+
#
|
106
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/DeleteFleetRequest AWS API Documentation
|
107
|
+
#
|
108
|
+
class DeleteFleetRequest < Struct.new(
|
109
|
+
:fleet_arn)
|
110
|
+
include Aws::Structure
|
111
|
+
end
|
112
|
+
|
113
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/DeleteFleetResponse AWS API Documentation
|
114
|
+
#
|
115
|
+
class DeleteFleetResponse < Aws::EmptyStructure; end
|
116
|
+
|
117
|
+
# @note When making an API call, you may pass DescribeAuditStreamConfigurationRequest
|
118
|
+
# data as a hash:
|
119
|
+
#
|
120
|
+
# {
|
121
|
+
# fleet_arn: "FleetArn", # required
|
122
|
+
# }
|
123
|
+
#
|
124
|
+
# @!attribute [rw] fleet_arn
|
125
|
+
# The ARN of the fleet.
|
126
|
+
# @return [String]
|
127
|
+
#
|
128
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/DescribeAuditStreamConfigurationRequest AWS API Documentation
|
129
|
+
#
|
130
|
+
class DescribeAuditStreamConfigurationRequest < Struct.new(
|
131
|
+
:fleet_arn)
|
132
|
+
include Aws::Structure
|
133
|
+
end
|
134
|
+
|
135
|
+
# @!attribute [rw] audit_stream_arn
|
136
|
+
# The ARN of the Amazon Kinesis data stream that will receive the
|
137
|
+
# audit events.
|
138
|
+
# @return [String]
|
139
|
+
#
|
140
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/DescribeAuditStreamConfigurationResponse AWS API Documentation
|
141
|
+
#
|
142
|
+
class DescribeAuditStreamConfigurationResponse < Struct.new(
|
143
|
+
:audit_stream_arn)
|
144
|
+
include Aws::Structure
|
145
|
+
end
|
146
|
+
|
147
|
+
# @note When making an API call, you may pass DescribeCompanyNetworkConfigurationRequest
|
148
|
+
# data as a hash:
|
149
|
+
#
|
150
|
+
# {
|
151
|
+
# fleet_arn: "FleetArn", # required
|
152
|
+
# }
|
153
|
+
#
|
154
|
+
# @!attribute [rw] fleet_arn
|
155
|
+
# The ARN of the fleet.
|
156
|
+
# @return [String]
|
157
|
+
#
|
158
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/DescribeCompanyNetworkConfigurationRequest AWS API Documentation
|
159
|
+
#
|
160
|
+
class DescribeCompanyNetworkConfigurationRequest < Struct.new(
|
161
|
+
:fleet_arn)
|
162
|
+
include Aws::Structure
|
163
|
+
end
|
164
|
+
|
165
|
+
# @!attribute [rw] vpc_id
|
166
|
+
# The VPC with connectivity to associated websites.
|
167
|
+
# @return [String]
|
168
|
+
#
|
169
|
+
# @!attribute [rw] subnet_ids
|
170
|
+
# The subnets used for X-ENI connections from Amazon WorkLink
|
171
|
+
# rendering containers.
|
172
|
+
# @return [Array<String>]
|
173
|
+
#
|
174
|
+
# @!attribute [rw] security_group_ids
|
175
|
+
# The security groups associated with access to the provided subnets.
|
176
|
+
# @return [Array<String>]
|
177
|
+
#
|
178
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/DescribeCompanyNetworkConfigurationResponse AWS API Documentation
|
179
|
+
#
|
180
|
+
class DescribeCompanyNetworkConfigurationResponse < Struct.new(
|
181
|
+
:vpc_id,
|
182
|
+
:subnet_ids,
|
183
|
+
:security_group_ids)
|
184
|
+
include Aws::Structure
|
185
|
+
end
|
186
|
+
|
187
|
+
# @note When making an API call, you may pass DescribeDevicePolicyConfigurationRequest
|
188
|
+
# data as a hash:
|
189
|
+
#
|
190
|
+
# {
|
191
|
+
# fleet_arn: "FleetArn", # required
|
192
|
+
# }
|
193
|
+
#
|
194
|
+
# @!attribute [rw] fleet_arn
|
195
|
+
# The ARN of the fleet.
|
196
|
+
# @return [String]
|
197
|
+
#
|
198
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/DescribeDevicePolicyConfigurationRequest AWS API Documentation
|
199
|
+
#
|
200
|
+
class DescribeDevicePolicyConfigurationRequest < Struct.new(
|
201
|
+
:fleet_arn)
|
202
|
+
include Aws::Structure
|
203
|
+
end
|
204
|
+
|
205
|
+
# @!attribute [rw] device_ca_certificate
|
206
|
+
# The certificate chain, including intermediate certificates and the
|
207
|
+
# root certificate authority certificate used to issue device
|
208
|
+
# certificates.
|
209
|
+
# @return [String]
|
210
|
+
#
|
211
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/DescribeDevicePolicyConfigurationResponse AWS API Documentation
|
212
|
+
#
|
213
|
+
class DescribeDevicePolicyConfigurationResponse < Struct.new(
|
214
|
+
:device_ca_certificate)
|
215
|
+
include Aws::Structure
|
216
|
+
end
|
217
|
+
|
218
|
+
# @note When making an API call, you may pass DescribeDeviceRequest
|
219
|
+
# data as a hash:
|
220
|
+
#
|
221
|
+
# {
|
222
|
+
# fleet_arn: "FleetArn", # required
|
223
|
+
# device_id: "Id", # required
|
224
|
+
# }
|
225
|
+
#
|
226
|
+
# @!attribute [rw] fleet_arn
|
227
|
+
# The ARN of the fleet.
|
228
|
+
# @return [String]
|
229
|
+
#
|
230
|
+
# @!attribute [rw] device_id
|
231
|
+
# A unique identifier for a registered user's device.
|
232
|
+
# @return [String]
|
233
|
+
#
|
234
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/DescribeDeviceRequest AWS API Documentation
|
235
|
+
#
|
236
|
+
class DescribeDeviceRequest < Struct.new(
|
237
|
+
:fleet_arn,
|
238
|
+
:device_id)
|
239
|
+
include Aws::Structure
|
240
|
+
end
|
241
|
+
|
242
|
+
# @!attribute [rw] status
|
243
|
+
# The current state of the device.
|
244
|
+
# @return [String]
|
245
|
+
#
|
246
|
+
# @!attribute [rw] model
|
247
|
+
# The model of the device.
|
248
|
+
# @return [String]
|
249
|
+
#
|
250
|
+
# @!attribute [rw] manufacturer
|
251
|
+
# The manufacturer of the device.
|
252
|
+
# @return [String]
|
253
|
+
#
|
254
|
+
# @!attribute [rw] operating_system
|
255
|
+
# The operating system of the device.
|
256
|
+
# @return [String]
|
257
|
+
#
|
258
|
+
# @!attribute [rw] operating_system_version
|
259
|
+
# The operating system version of the device.
|
260
|
+
# @return [String]
|
261
|
+
#
|
262
|
+
# @!attribute [rw] patch_level
|
263
|
+
# The operating system patch level of the device.
|
264
|
+
# @return [String]
|
265
|
+
#
|
266
|
+
# @!attribute [rw] first_accessed_time
|
267
|
+
# The date that the device first signed in to Amazon WorkLink.
|
268
|
+
# @return [Time]
|
269
|
+
#
|
270
|
+
# @!attribute [rw] last_accessed_time
|
271
|
+
# The date that the device last accessed Amazon WorkLink.
|
272
|
+
# @return [Time]
|
273
|
+
#
|
274
|
+
# @!attribute [rw] username
|
275
|
+
# The user name associated with the device.
|
276
|
+
# @return [String]
|
277
|
+
#
|
278
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/DescribeDeviceResponse AWS API Documentation
|
279
|
+
#
|
280
|
+
class DescribeDeviceResponse < Struct.new(
|
281
|
+
:status,
|
282
|
+
:model,
|
283
|
+
:manufacturer,
|
284
|
+
:operating_system,
|
285
|
+
:operating_system_version,
|
286
|
+
:patch_level,
|
287
|
+
:first_accessed_time,
|
288
|
+
:last_accessed_time,
|
289
|
+
:username)
|
290
|
+
include Aws::Structure
|
291
|
+
end
|
292
|
+
|
293
|
+
# @note When making an API call, you may pass DescribeFleetMetadataRequest
|
294
|
+
# data as a hash:
|
295
|
+
#
|
296
|
+
# {
|
297
|
+
# fleet_arn: "FleetArn", # required
|
298
|
+
# }
|
299
|
+
#
|
300
|
+
# @!attribute [rw] fleet_arn
|
301
|
+
# The ARN of the fleet.
|
302
|
+
# @return [String]
|
303
|
+
#
|
304
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/DescribeFleetMetadataRequest AWS API Documentation
|
305
|
+
#
|
306
|
+
class DescribeFleetMetadataRequest < Struct.new(
|
307
|
+
:fleet_arn)
|
308
|
+
include Aws::Structure
|
309
|
+
end
|
310
|
+
|
311
|
+
# @!attribute [rw] created_time
|
312
|
+
# The time that the fleet was created.
|
313
|
+
# @return [Time]
|
314
|
+
#
|
315
|
+
# @!attribute [rw] last_updated_time
|
316
|
+
# The time that the fleet was last updated.
|
317
|
+
# @return [Time]
|
318
|
+
#
|
319
|
+
# @!attribute [rw] fleet_name
|
320
|
+
# The name of the fleet.
|
321
|
+
# @return [String]
|
322
|
+
#
|
323
|
+
# @!attribute [rw] display_name
|
324
|
+
# The name to display.
|
325
|
+
# @return [String]
|
326
|
+
#
|
327
|
+
# @!attribute [rw] optimize_for_end_user_location
|
328
|
+
# The option to optimize for better performance by routing traffic
|
329
|
+
# through the closest AWS Region to users, which may be outside of
|
330
|
+
# your home Region.
|
331
|
+
# @return [Boolean]
|
332
|
+
#
|
333
|
+
# @!attribute [rw] company_code
|
334
|
+
# The identifier used by users to sign in to the Amazon WorkLink app.
|
335
|
+
# @return [String]
|
336
|
+
#
|
337
|
+
# @!attribute [rw] fleet_status
|
338
|
+
# The current state of the fleet.
|
339
|
+
# @return [String]
|
340
|
+
#
|
341
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/DescribeFleetMetadataResponse AWS API Documentation
|
342
|
+
#
|
343
|
+
class DescribeFleetMetadataResponse < Struct.new(
|
344
|
+
:created_time,
|
345
|
+
:last_updated_time,
|
346
|
+
:fleet_name,
|
347
|
+
:display_name,
|
348
|
+
:optimize_for_end_user_location,
|
349
|
+
:company_code,
|
350
|
+
:fleet_status)
|
351
|
+
include Aws::Structure
|
352
|
+
end
|
353
|
+
|
354
|
+
# @note When making an API call, you may pass DescribeIdentityProviderConfigurationRequest
|
355
|
+
# data as a hash:
|
356
|
+
#
|
357
|
+
# {
|
358
|
+
# fleet_arn: "FleetArn", # required
|
359
|
+
# }
|
360
|
+
#
|
361
|
+
# @!attribute [rw] fleet_arn
|
362
|
+
# The ARN of the fleet.
|
363
|
+
# @return [String]
|
364
|
+
#
|
365
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/DescribeIdentityProviderConfigurationRequest AWS API Documentation
|
366
|
+
#
|
367
|
+
class DescribeIdentityProviderConfigurationRequest < Struct.new(
|
368
|
+
:fleet_arn)
|
369
|
+
include Aws::Structure
|
370
|
+
end
|
371
|
+
|
372
|
+
# @!attribute [rw] identity_provider_type
|
373
|
+
# The type of identity provider.
|
374
|
+
# @return [String]
|
375
|
+
#
|
376
|
+
# @!attribute [rw] service_provider_saml_metadata
|
377
|
+
# The SAML metadata document uploaded to the user’s identity provider.
|
378
|
+
# @return [String]
|
379
|
+
#
|
380
|
+
# @!attribute [rw] identity_provider_saml_metadata
|
381
|
+
# The SAML metadata document provided by the user’s identity provider.
|
382
|
+
# @return [String]
|
383
|
+
#
|
384
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/DescribeIdentityProviderConfigurationResponse AWS API Documentation
|
385
|
+
#
|
386
|
+
class DescribeIdentityProviderConfigurationResponse < Struct.new(
|
387
|
+
:identity_provider_type,
|
388
|
+
:service_provider_saml_metadata,
|
389
|
+
:identity_provider_saml_metadata)
|
390
|
+
include Aws::Structure
|
391
|
+
end
|
392
|
+
|
393
|
+
# @note When making an API call, you may pass DescribeWebsiteCertificateAuthorityRequest
|
394
|
+
# data as a hash:
|
395
|
+
#
|
396
|
+
# {
|
397
|
+
# fleet_arn: "FleetArn", # required
|
398
|
+
# website_ca_id: "Id", # required
|
399
|
+
# }
|
400
|
+
#
|
401
|
+
# @!attribute [rw] fleet_arn
|
402
|
+
# The ARN of the fleet.
|
403
|
+
# @return [String]
|
404
|
+
#
|
405
|
+
# @!attribute [rw] website_ca_id
|
406
|
+
# A unique identifier for the certificate authority.
|
407
|
+
# @return [String]
|
408
|
+
#
|
409
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/DescribeWebsiteCertificateAuthorityRequest AWS API Documentation
|
410
|
+
#
|
411
|
+
class DescribeWebsiteCertificateAuthorityRequest < Struct.new(
|
412
|
+
:fleet_arn,
|
413
|
+
:website_ca_id)
|
414
|
+
include Aws::Structure
|
415
|
+
end
|
416
|
+
|
417
|
+
# @!attribute [rw] certificate
|
418
|
+
# The root certificate of the certificate authority.
|
419
|
+
# @return [String]
|
420
|
+
#
|
421
|
+
# @!attribute [rw] created_time
|
422
|
+
# The time that the certificate authority was added.
|
423
|
+
# @return [Time]
|
424
|
+
#
|
425
|
+
# @!attribute [rw] display_name
|
426
|
+
# The certificate name to display.
|
427
|
+
# @return [String]
|
428
|
+
#
|
429
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/DescribeWebsiteCertificateAuthorityResponse AWS API Documentation
|
430
|
+
#
|
431
|
+
class DescribeWebsiteCertificateAuthorityResponse < Struct.new(
|
432
|
+
:certificate,
|
433
|
+
:created_time,
|
434
|
+
:display_name)
|
435
|
+
include Aws::Structure
|
436
|
+
end
|
437
|
+
|
438
|
+
# The summary of devices.
|
439
|
+
#
|
440
|
+
# @!attribute [rw] device_id
|
441
|
+
# The ID of the device.
|
442
|
+
# @return [String]
|
443
|
+
#
|
444
|
+
# @!attribute [rw] device_status
|
445
|
+
# The status of the device.
|
446
|
+
# @return [String]
|
447
|
+
#
|
448
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/DeviceSummary AWS API Documentation
|
449
|
+
#
|
450
|
+
class DeviceSummary < Struct.new(
|
451
|
+
:device_id,
|
452
|
+
:device_status)
|
453
|
+
include Aws::Structure
|
454
|
+
end
|
455
|
+
|
456
|
+
# @note When making an API call, you may pass DisassociateWebsiteCertificateAuthorityRequest
|
457
|
+
# data as a hash:
|
458
|
+
#
|
459
|
+
# {
|
460
|
+
# fleet_arn: "FleetArn", # required
|
461
|
+
# website_ca_id: "Id", # required
|
462
|
+
# }
|
463
|
+
#
|
464
|
+
# @!attribute [rw] fleet_arn
|
465
|
+
# The ARN of the fleet.
|
466
|
+
# @return [String]
|
467
|
+
#
|
468
|
+
# @!attribute [rw] website_ca_id
|
469
|
+
# A unique identifier for the CA.
|
470
|
+
# @return [String]
|
471
|
+
#
|
472
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/DisassociateWebsiteCertificateAuthorityRequest AWS API Documentation
|
473
|
+
#
|
474
|
+
class DisassociateWebsiteCertificateAuthorityRequest < Struct.new(
|
475
|
+
:fleet_arn,
|
476
|
+
:website_ca_id)
|
477
|
+
include Aws::Structure
|
478
|
+
end
|
479
|
+
|
480
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/DisassociateWebsiteCertificateAuthorityResponse AWS API Documentation
|
481
|
+
#
|
482
|
+
class DisassociateWebsiteCertificateAuthorityResponse < Aws::EmptyStructure; end
|
483
|
+
|
484
|
+
# The summary of the fleet.
|
485
|
+
#
|
486
|
+
# @!attribute [rw] fleet_arn
|
487
|
+
# The ARN of the fleet.
|
488
|
+
# @return [String]
|
489
|
+
#
|
490
|
+
# @!attribute [rw] created_time
|
491
|
+
# The time when the fleet was created.
|
492
|
+
# @return [Time]
|
493
|
+
#
|
494
|
+
# @!attribute [rw] last_updated_time
|
495
|
+
# The time when the fleet was last updated.
|
496
|
+
# @return [Time]
|
497
|
+
#
|
498
|
+
# @!attribute [rw] fleet_name
|
499
|
+
# The name of the fleet.
|
500
|
+
# @return [String]
|
501
|
+
#
|
502
|
+
# @!attribute [rw] display_name
|
503
|
+
# The name to display.
|
504
|
+
# @return [String]
|
505
|
+
#
|
506
|
+
# @!attribute [rw] company_code
|
507
|
+
# The identifier used by users to sign into the Amazon WorkLink app.
|
508
|
+
# @return [String]
|
509
|
+
#
|
510
|
+
# @!attribute [rw] fleet_status
|
511
|
+
# The status of the fleet.
|
512
|
+
# @return [String]
|
513
|
+
#
|
514
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/FleetSummary AWS API Documentation
|
515
|
+
#
|
516
|
+
class FleetSummary < Struct.new(
|
517
|
+
:fleet_arn,
|
518
|
+
:created_time,
|
519
|
+
:last_updated_time,
|
520
|
+
:fleet_name,
|
521
|
+
:display_name,
|
522
|
+
:company_code,
|
523
|
+
:fleet_status)
|
524
|
+
include Aws::Structure
|
525
|
+
end
|
526
|
+
|
527
|
+
# @note When making an API call, you may pass ListDevicesRequest
|
528
|
+
# data as a hash:
|
529
|
+
#
|
530
|
+
# {
|
531
|
+
# fleet_arn: "FleetArn", # required
|
532
|
+
# next_token: "NextToken",
|
533
|
+
# max_results: 1,
|
534
|
+
# }
|
535
|
+
#
|
536
|
+
# @!attribute [rw] fleet_arn
|
537
|
+
# The ARN of the fleet.
|
538
|
+
# @return [String]
|
539
|
+
#
|
540
|
+
# @!attribute [rw] next_token
|
541
|
+
# The pagination token used to retrieve the next page of results for
|
542
|
+
# this operation. If this value is null, it retrieves the first page.
|
543
|
+
# @return [String]
|
544
|
+
#
|
545
|
+
# @!attribute [rw] max_results
|
546
|
+
# The maximum number of results to be included in the next page.
|
547
|
+
# @return [Integer]
|
548
|
+
#
|
549
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/ListDevicesRequest AWS API Documentation
|
550
|
+
#
|
551
|
+
class ListDevicesRequest < Struct.new(
|
552
|
+
:fleet_arn,
|
553
|
+
:next_token,
|
554
|
+
:max_results)
|
555
|
+
include Aws::Structure
|
556
|
+
end
|
557
|
+
|
558
|
+
# @!attribute [rw] devices
|
559
|
+
# Information about the devices.
|
560
|
+
# @return [Array<Types::DeviceSummary>]
|
561
|
+
#
|
562
|
+
# @!attribute [rw] next_token
|
563
|
+
# The pagination token used to retrieve the next page of results for
|
564
|
+
# this operation. If there are no more pages, this value is null.
|
565
|
+
# @return [String]
|
566
|
+
#
|
567
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/ListDevicesResponse AWS API Documentation
|
568
|
+
#
|
569
|
+
class ListDevicesResponse < Struct.new(
|
570
|
+
:devices,
|
571
|
+
:next_token)
|
572
|
+
include Aws::Structure
|
573
|
+
end
|
574
|
+
|
575
|
+
# @note When making an API call, you may pass ListFleetsRequest
|
576
|
+
# data as a hash:
|
577
|
+
#
|
578
|
+
# {
|
579
|
+
# next_token: "NextToken",
|
580
|
+
# max_results: 1,
|
581
|
+
# }
|
582
|
+
#
|
583
|
+
# @!attribute [rw] next_token
|
584
|
+
# The pagination token used to retrieve the next page of results for
|
585
|
+
# this operation. If this value is null, it retrieves the first page.
|
586
|
+
# @return [String]
|
587
|
+
#
|
588
|
+
# @!attribute [rw] max_results
|
589
|
+
# The maximum number of results to be included in the next page.
|
590
|
+
# @return [Integer]
|
591
|
+
#
|
592
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/ListFleetsRequest AWS API Documentation
|
593
|
+
#
|
594
|
+
class ListFleetsRequest < Struct.new(
|
595
|
+
:next_token,
|
596
|
+
:max_results)
|
597
|
+
include Aws::Structure
|
598
|
+
end
|
599
|
+
|
600
|
+
# @!attribute [rw] fleet_summary_list
|
601
|
+
# The summary list of the fleets.
|
602
|
+
# @return [Array<Types::FleetSummary>]
|
603
|
+
#
|
604
|
+
# @!attribute [rw] next_token
|
605
|
+
# The pagination token used to retrieve the next page of results for
|
606
|
+
# this operation. If there are no more pages, this value is null.
|
607
|
+
# @return [String]
|
608
|
+
#
|
609
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/ListFleetsResponse AWS API Documentation
|
610
|
+
#
|
611
|
+
class ListFleetsResponse < Struct.new(
|
612
|
+
:fleet_summary_list,
|
613
|
+
:next_token)
|
614
|
+
include Aws::Structure
|
615
|
+
end
|
616
|
+
|
617
|
+
# @note When making an API call, you may pass ListWebsiteCertificateAuthoritiesRequest
|
618
|
+
# data as a hash:
|
619
|
+
#
|
620
|
+
# {
|
621
|
+
# fleet_arn: "FleetArn", # required
|
622
|
+
# max_results: 1,
|
623
|
+
# next_token: "NextToken",
|
624
|
+
# }
|
625
|
+
#
|
626
|
+
# @!attribute [rw] fleet_arn
|
627
|
+
# The ARN of the fleet.
|
628
|
+
# @return [String]
|
629
|
+
#
|
630
|
+
# @!attribute [rw] max_results
|
631
|
+
# The maximum number of results to be included in the next page.
|
632
|
+
# @return [Integer]
|
633
|
+
#
|
634
|
+
# @!attribute [rw] next_token
|
635
|
+
# The pagination token used to retrieve the next page of results for
|
636
|
+
# this operation. If this value is null, it retrieves the first page.
|
637
|
+
# @return [String]
|
638
|
+
#
|
639
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/ListWebsiteCertificateAuthoritiesRequest AWS API Documentation
|
640
|
+
#
|
641
|
+
class ListWebsiteCertificateAuthoritiesRequest < Struct.new(
|
642
|
+
:fleet_arn,
|
643
|
+
:max_results,
|
644
|
+
:next_token)
|
645
|
+
include Aws::Structure
|
646
|
+
end
|
647
|
+
|
648
|
+
# @!attribute [rw] website_certificate_authorities
|
649
|
+
# Information about the certificates.
|
650
|
+
# @return [Array<Types::WebsiteCaSummary>]
|
651
|
+
#
|
652
|
+
# @!attribute [rw] next_token
|
653
|
+
# The pagination token used to retrieve the next page of results for
|
654
|
+
# this operation. If there are no more pages, this value is null.
|
655
|
+
# @return [String]
|
656
|
+
#
|
657
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/ListWebsiteCertificateAuthoritiesResponse AWS API Documentation
|
658
|
+
#
|
659
|
+
class ListWebsiteCertificateAuthoritiesResponse < Struct.new(
|
660
|
+
:website_certificate_authorities,
|
661
|
+
:next_token)
|
662
|
+
include Aws::Structure
|
663
|
+
end
|
664
|
+
|
665
|
+
# @note When making an API call, you may pass SignOutUserRequest
|
666
|
+
# data as a hash:
|
667
|
+
#
|
668
|
+
# {
|
669
|
+
# fleet_arn: "FleetArn", # required
|
670
|
+
# username: "Username", # required
|
671
|
+
# }
|
672
|
+
#
|
673
|
+
# @!attribute [rw] fleet_arn
|
674
|
+
# The ARN of the fleet.
|
675
|
+
# @return [String]
|
676
|
+
#
|
677
|
+
# @!attribute [rw] username
|
678
|
+
# The name of the user.
|
679
|
+
# @return [String]
|
680
|
+
#
|
681
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/SignOutUserRequest AWS API Documentation
|
682
|
+
#
|
683
|
+
class SignOutUserRequest < Struct.new(
|
684
|
+
:fleet_arn,
|
685
|
+
:username)
|
686
|
+
include Aws::Structure
|
687
|
+
end
|
688
|
+
|
689
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/SignOutUserResponse AWS API Documentation
|
690
|
+
#
|
691
|
+
class SignOutUserResponse < Aws::EmptyStructure; end
|
692
|
+
|
693
|
+
# @note When making an API call, you may pass UpdateAuditStreamConfigurationRequest
|
694
|
+
# data as a hash:
|
695
|
+
#
|
696
|
+
# {
|
697
|
+
# fleet_arn: "FleetArn", # required
|
698
|
+
# audit_stream_arn: "AuditStreamArn",
|
699
|
+
# }
|
700
|
+
#
|
701
|
+
# @!attribute [rw] fleet_arn
|
702
|
+
# The ARN of the fleet.
|
703
|
+
# @return [String]
|
704
|
+
#
|
705
|
+
# @!attribute [rw] audit_stream_arn
|
706
|
+
# The ARN of the Amazon Kinesis data stream that receives the audit
|
707
|
+
# events.
|
708
|
+
# @return [String]
|
709
|
+
#
|
710
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/UpdateAuditStreamConfigurationRequest AWS API Documentation
|
711
|
+
#
|
712
|
+
class UpdateAuditStreamConfigurationRequest < Struct.new(
|
713
|
+
:fleet_arn,
|
714
|
+
:audit_stream_arn)
|
715
|
+
include Aws::Structure
|
716
|
+
end
|
717
|
+
|
718
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/UpdateAuditStreamConfigurationResponse AWS API Documentation
|
719
|
+
#
|
720
|
+
class UpdateAuditStreamConfigurationResponse < Aws::EmptyStructure; end
|
721
|
+
|
722
|
+
# @note When making an API call, you may pass UpdateCompanyNetworkConfigurationRequest
|
723
|
+
# data as a hash:
|
724
|
+
#
|
725
|
+
# {
|
726
|
+
# fleet_arn: "FleetArn", # required
|
727
|
+
# vpc_id: "VpcId", # required
|
728
|
+
# subnet_ids: ["SubnetId"], # required
|
729
|
+
# security_group_ids: ["SecurityGroupId"], # required
|
730
|
+
# }
|
731
|
+
#
|
732
|
+
# @!attribute [rw] fleet_arn
|
733
|
+
# The ARN of the fleet.
|
734
|
+
# @return [String]
|
735
|
+
#
|
736
|
+
# @!attribute [rw] vpc_id
|
737
|
+
# The VPC with connectivity to associated websites.
|
738
|
+
# @return [String]
|
739
|
+
#
|
740
|
+
# @!attribute [rw] subnet_ids
|
741
|
+
# The subnets used for X-ENI connections from Amazon WorkLink
|
742
|
+
# rendering containers.
|
743
|
+
# @return [Array<String>]
|
744
|
+
#
|
745
|
+
# @!attribute [rw] security_group_ids
|
746
|
+
# The security groups associated with access to the provided subnets.
|
747
|
+
# @return [Array<String>]
|
748
|
+
#
|
749
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/UpdateCompanyNetworkConfigurationRequest AWS API Documentation
|
750
|
+
#
|
751
|
+
class UpdateCompanyNetworkConfigurationRequest < Struct.new(
|
752
|
+
:fleet_arn,
|
753
|
+
:vpc_id,
|
754
|
+
:subnet_ids,
|
755
|
+
:security_group_ids)
|
756
|
+
include Aws::Structure
|
757
|
+
end
|
758
|
+
|
759
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/UpdateCompanyNetworkConfigurationResponse AWS API Documentation
|
760
|
+
#
|
761
|
+
class UpdateCompanyNetworkConfigurationResponse < Aws::EmptyStructure; end
|
762
|
+
|
763
|
+
# @note When making an API call, you may pass UpdateDevicePolicyConfigurationRequest
|
764
|
+
# data as a hash:
|
765
|
+
#
|
766
|
+
# {
|
767
|
+
# fleet_arn: "FleetArn", # required
|
768
|
+
# device_ca_certificate: "CertificateChain",
|
769
|
+
# }
|
770
|
+
#
|
771
|
+
# @!attribute [rw] fleet_arn
|
772
|
+
# The ARN of the fleet.
|
773
|
+
# @return [String]
|
774
|
+
#
|
775
|
+
# @!attribute [rw] device_ca_certificate
|
776
|
+
# The certificate chain, including intermediate certificates and the
|
777
|
+
# root certificate authority certificate used to issue device
|
778
|
+
# certificates.
|
779
|
+
# @return [String]
|
780
|
+
#
|
781
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/UpdateDevicePolicyConfigurationRequest AWS API Documentation
|
782
|
+
#
|
783
|
+
class UpdateDevicePolicyConfigurationRequest < Struct.new(
|
784
|
+
:fleet_arn,
|
785
|
+
:device_ca_certificate)
|
786
|
+
include Aws::Structure
|
787
|
+
end
|
788
|
+
|
789
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/UpdateDevicePolicyConfigurationResponse AWS API Documentation
|
790
|
+
#
|
791
|
+
class UpdateDevicePolicyConfigurationResponse < Aws::EmptyStructure; end
|
792
|
+
|
793
|
+
# @note When making an API call, you may pass UpdateFleetMetadataRequest
|
794
|
+
# data as a hash:
|
795
|
+
#
|
796
|
+
# {
|
797
|
+
# fleet_arn: "FleetArn", # required
|
798
|
+
# display_name: "DisplayName",
|
799
|
+
# optimize_for_end_user_location: false,
|
800
|
+
# }
|
801
|
+
#
|
802
|
+
# @!attribute [rw] fleet_arn
|
803
|
+
# The ARN of the fleet.
|
804
|
+
# @return [String]
|
805
|
+
#
|
806
|
+
# @!attribute [rw] display_name
|
807
|
+
# The fleet name to display. The existing DisplayName is unset if null
|
808
|
+
# is passed.
|
809
|
+
# @return [String]
|
810
|
+
#
|
811
|
+
# @!attribute [rw] optimize_for_end_user_location
|
812
|
+
# The option to optimize for better performance by routing traffic
|
813
|
+
# through the closest AWS Region to users, which may be outside of
|
814
|
+
# your home Region.
|
815
|
+
# @return [Boolean]
|
816
|
+
#
|
817
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/UpdateFleetMetadataRequest AWS API Documentation
|
818
|
+
#
|
819
|
+
class UpdateFleetMetadataRequest < Struct.new(
|
820
|
+
:fleet_arn,
|
821
|
+
:display_name,
|
822
|
+
:optimize_for_end_user_location)
|
823
|
+
include Aws::Structure
|
824
|
+
end
|
825
|
+
|
826
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/UpdateFleetMetadataResponse AWS API Documentation
|
827
|
+
#
|
828
|
+
class UpdateFleetMetadataResponse < Aws::EmptyStructure; end
|
829
|
+
|
830
|
+
# @note When making an API call, you may pass UpdateIdentityProviderConfigurationRequest
|
831
|
+
# data as a hash:
|
832
|
+
#
|
833
|
+
# {
|
834
|
+
# fleet_arn: "FleetArn", # required
|
835
|
+
# identity_provider_type: "SAML", # required, accepts SAML
|
836
|
+
# identity_provider_saml_metadata: "SamlMetadata",
|
837
|
+
# }
|
838
|
+
#
|
839
|
+
# @!attribute [rw] fleet_arn
|
840
|
+
# The ARN of the fleet.
|
841
|
+
# @return [String]
|
842
|
+
#
|
843
|
+
# @!attribute [rw] identity_provider_type
|
844
|
+
# The type of identity provider.
|
845
|
+
# @return [String]
|
846
|
+
#
|
847
|
+
# @!attribute [rw] identity_provider_saml_metadata
|
848
|
+
# The SAML metadata document provided by the customer’s identity
|
849
|
+
# provider. The existing IdentityProviderSamlMetadata is unset if null
|
850
|
+
# is passed.
|
851
|
+
# @return [String]
|
852
|
+
#
|
853
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/UpdateIdentityProviderConfigurationRequest AWS API Documentation
|
854
|
+
#
|
855
|
+
class UpdateIdentityProviderConfigurationRequest < Struct.new(
|
856
|
+
:fleet_arn,
|
857
|
+
:identity_provider_type,
|
858
|
+
:identity_provider_saml_metadata)
|
859
|
+
include Aws::Structure
|
860
|
+
end
|
861
|
+
|
862
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/UpdateIdentityProviderConfigurationResponse AWS API Documentation
|
863
|
+
#
|
864
|
+
class UpdateIdentityProviderConfigurationResponse < Aws::EmptyStructure; end
|
865
|
+
|
866
|
+
# The summary of the certificate authority (CA).
|
867
|
+
#
|
868
|
+
# @!attribute [rw] website_ca_id
|
869
|
+
# A unique identifier for the CA.
|
870
|
+
# @return [String]
|
871
|
+
#
|
872
|
+
# @!attribute [rw] created_time
|
873
|
+
# The time when the CA was added.
|
874
|
+
# @return [Time]
|
875
|
+
#
|
876
|
+
# @!attribute [rw] display_name
|
877
|
+
# The name to display.
|
878
|
+
# @return [String]
|
879
|
+
#
|
880
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/WebsiteCaSummary AWS API Documentation
|
881
|
+
#
|
882
|
+
class WebsiteCaSummary < Struct.new(
|
883
|
+
:website_ca_id,
|
884
|
+
:created_time,
|
885
|
+
:display_name)
|
886
|
+
include Aws::Structure
|
887
|
+
end
|
888
|
+
|
889
|
+
end
|
890
|
+
end
|