aws-sdk-worklink 1.3.0 → 1.4.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 +4 -4
- data/lib/aws-sdk-worklink.rb +1 -1
- data/lib/aws-sdk-worklink/client.rb +267 -1
- data/lib/aws-sdk-worklink/client_api.rb +175 -0
- data/lib/aws-sdk-worklink/types.rb +280 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8814ddf5b49564d2b23b8479a726e2acd5e384a4
|
4
|
+
data.tar.gz: f1e6b6e04d4b985528a2c3593439a317681360b1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5e8c572b7ee62e9cb2859098dbaff3c3b8a1af44d9bdd254424d8a27b813ba5e96382471dccf60257406761cb8b402359d27d2cd38fa2954d4090defff5c0630
|
7
|
+
data.tar.gz: 799dfd19f3dc1acad2dd31348127317f4b38f29c9354953f9763091482ade12690d3640cba47cb9ccc773d932a32e22cf6bee47b3dba7330d3ceedf3d6462a58
|
data/lib/aws-sdk-worklink.rb
CHANGED
@@ -199,12 +199,90 @@ module Aws::WorkLink
|
|
199
199
|
# When `true`, request parameters are validated before
|
200
200
|
# sending the request.
|
201
201
|
#
|
202
|
+
# @option options [URI::HTTP,String] :http_proxy A proxy to send
|
203
|
+
# requests through. Formatted like 'http://proxy.com:123'.
|
204
|
+
#
|
205
|
+
# @option options [Float] :http_open_timeout (15) The number of
|
206
|
+
# seconds to wait when opening a HTTP session before rasing a
|
207
|
+
# `Timeout::Error`.
|
208
|
+
#
|
209
|
+
# @option options [Integer] :http_read_timeout (60) The default
|
210
|
+
# number of seconds to wait for response data. This value can
|
211
|
+
# safely be set
|
212
|
+
# per-request on the session yeidled by {#session_for}.
|
213
|
+
#
|
214
|
+
# @option options [Float] :http_idle_timeout (5) The number of
|
215
|
+
# seconds a connection is allowed to sit idble before it is
|
216
|
+
# considered stale. Stale connections are closed and removed
|
217
|
+
# from the pool before making a request.
|
218
|
+
#
|
219
|
+
# @option options [Float] :http_continue_timeout (1) The number of
|
220
|
+
# seconds to wait for a 100-continue response before sending the
|
221
|
+
# request body. This option has no effect unless the request has
|
222
|
+
# "Expect" header set to "100-continue". Defaults to `nil` which
|
223
|
+
# disables this behaviour. This value can safely be set per
|
224
|
+
# request on the session yeidled by {#session_for}.
|
225
|
+
#
|
226
|
+
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
227
|
+
# HTTP debug output will be sent to the `:logger`.
|
228
|
+
#
|
229
|
+
# @option options [Boolean] :ssl_verify_peer (true) When `true`,
|
230
|
+
# SSL peer certificates are verified when establishing a
|
231
|
+
# connection.
|
232
|
+
#
|
233
|
+
# @option options [String] :ssl_ca_bundle Full path to the SSL
|
234
|
+
# certificate authority bundle file that should be used when
|
235
|
+
# verifying peer certificates. If you do not pass
|
236
|
+
# `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
|
237
|
+
# will be used if available.
|
238
|
+
#
|
239
|
+
# @option options [String] :ssl_ca_directory Full path of the
|
240
|
+
# directory that contains the unbundled SSL certificate
|
241
|
+
# authority files for verifying peer certificates. If you do
|
242
|
+
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
|
243
|
+
# system default will be used if available.
|
244
|
+
#
|
202
245
|
def initialize(*args)
|
203
246
|
super
|
204
247
|
end
|
205
248
|
|
206
249
|
# @!group API Operations
|
207
250
|
|
251
|
+
# Specifies a domain to be associated to Amazon WorkLink.
|
252
|
+
#
|
253
|
+
# @option params [required, String] :fleet_arn
|
254
|
+
# The Amazon Resource Name (ARN) of the fleet.
|
255
|
+
#
|
256
|
+
# @option params [required, String] :domain_name
|
257
|
+
# The fully qualified domain name (FQDN).
|
258
|
+
#
|
259
|
+
# @option params [required, String] :acm_certificate_arn
|
260
|
+
# The ARN of an issued ACM certificate that is valid for the domain
|
261
|
+
# being associated.
|
262
|
+
#
|
263
|
+
# @option params [String] :display_name
|
264
|
+
# The name to display.
|
265
|
+
#
|
266
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
267
|
+
#
|
268
|
+
# @example Request syntax with placeholder values
|
269
|
+
#
|
270
|
+
# resp = client.associate_domain({
|
271
|
+
# fleet_arn: "FleetArn", # required
|
272
|
+
# domain_name: "DomainName", # required
|
273
|
+
# acm_certificate_arn: "AcmCertificateArn", # required
|
274
|
+
# display_name: "DisplayName",
|
275
|
+
# })
|
276
|
+
#
|
277
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/AssociateDomain AWS API Documentation
|
278
|
+
#
|
279
|
+
# @overload associate_domain(params = {})
|
280
|
+
# @param [Hash] params ({})
|
281
|
+
def associate_domain(params = {}, options = {})
|
282
|
+
req = build_request(:associate_domain, params)
|
283
|
+
req.send_request(options)
|
284
|
+
end
|
285
|
+
|
208
286
|
# Imports the root certificate of a certificate authority (CA) used to
|
209
287
|
# obtain TLS certificates used by associated websites within the company
|
210
288
|
# network.
|
@@ -446,6 +524,42 @@ module Aws::WorkLink
|
|
446
524
|
req.send_request(options)
|
447
525
|
end
|
448
526
|
|
527
|
+
# Provides information about the domain.
|
528
|
+
#
|
529
|
+
# @option params [required, String] :fleet_arn
|
530
|
+
# The ARN of the fleet.
|
531
|
+
#
|
532
|
+
# @option params [required, String] :domain_name
|
533
|
+
# The name of the domain.
|
534
|
+
#
|
535
|
+
# @return [Types::DescribeDomainResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
536
|
+
#
|
537
|
+
# * {Types::DescribeDomainResponse#display_name #display_name} => String
|
538
|
+
# * {Types::DescribeDomainResponse#created_time #created_time} => Time
|
539
|
+
# * {Types::DescribeDomainResponse#domain_status #domain_status} => String
|
540
|
+
#
|
541
|
+
# @example Request syntax with placeholder values
|
542
|
+
#
|
543
|
+
# resp = client.describe_domain({
|
544
|
+
# fleet_arn: "FleetArn", # required
|
545
|
+
# domain_name: "DomainName", # required
|
546
|
+
# })
|
547
|
+
#
|
548
|
+
# @example Response structure
|
549
|
+
#
|
550
|
+
# resp.display_name #=> String
|
551
|
+
# resp.created_time #=> Time
|
552
|
+
# resp.domain_status #=> String, one of "PENDING_VALIDATION", "ASSOCIATING", "ACTIVE", "INACTIVE", "DISASSOCIATING", "DISASSOCIATED", "FAILED_TO_ASSOCIATE", "FAILED_TO_DISASSOCIATE"
|
553
|
+
#
|
554
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/DescribeDomain AWS API Documentation
|
555
|
+
#
|
556
|
+
# @overload describe_domain(params = {})
|
557
|
+
# @param [Hash] params ({})
|
558
|
+
def describe_domain(params = {}, options = {})
|
559
|
+
req = build_request(:describe_domain, params)
|
560
|
+
req.send_request(options)
|
561
|
+
end
|
562
|
+
|
449
563
|
# Provides basic information for the specified fleet, excluding identity
|
450
564
|
# provider, networking, and device configuration details.
|
451
565
|
#
|
@@ -555,6 +669,33 @@ module Aws::WorkLink
|
|
555
669
|
req.send_request(options)
|
556
670
|
end
|
557
671
|
|
672
|
+
# Disassociates a domain from Amazon WorkLink. End users lose the
|
673
|
+
# ability to access the domain with Amazon WorkLink.
|
674
|
+
#
|
675
|
+
# @option params [required, String] :fleet_arn
|
676
|
+
# The ARN of the fleet.
|
677
|
+
#
|
678
|
+
# @option params [required, String] :domain_name
|
679
|
+
# The name of the domain.
|
680
|
+
#
|
681
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
682
|
+
#
|
683
|
+
# @example Request syntax with placeholder values
|
684
|
+
#
|
685
|
+
# resp = client.disassociate_domain({
|
686
|
+
# fleet_arn: "FleetArn", # required
|
687
|
+
# domain_name: "DomainName", # required
|
688
|
+
# })
|
689
|
+
#
|
690
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/DisassociateDomain AWS API Documentation
|
691
|
+
#
|
692
|
+
# @overload disassociate_domain(params = {})
|
693
|
+
# @param [Hash] params ({})
|
694
|
+
def disassociate_domain(params = {}, options = {})
|
695
|
+
req = build_request(:disassociate_domain, params)
|
696
|
+
req.send_request(options)
|
697
|
+
end
|
698
|
+
|
558
699
|
# Removes a certificate authority (CA).
|
559
700
|
#
|
560
701
|
# @option params [required, String] :fleet_arn
|
@@ -622,6 +763,49 @@ module Aws::WorkLink
|
|
622
763
|
req.send_request(options)
|
623
764
|
end
|
624
765
|
|
766
|
+
# Retrieves a list of domains associated to a specified fleet.
|
767
|
+
#
|
768
|
+
# @option params [required, String] :fleet_arn
|
769
|
+
# The ARN of the fleet.
|
770
|
+
#
|
771
|
+
# @option params [String] :next_token
|
772
|
+
# The pagination token used to retrieve the next page of results for
|
773
|
+
# this operation. If this value is null, it retrieves the first page.
|
774
|
+
#
|
775
|
+
# @option params [Integer] :max_results
|
776
|
+
# The maximum number of results to be included in the next page.
|
777
|
+
#
|
778
|
+
# @return [Types::ListDomainsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
779
|
+
#
|
780
|
+
# * {Types::ListDomainsResponse#domains #domains} => Array<Types::DomainSummary>
|
781
|
+
# * {Types::ListDomainsResponse#next_token #next_token} => String
|
782
|
+
#
|
783
|
+
# @example Request syntax with placeholder values
|
784
|
+
#
|
785
|
+
# resp = client.list_domains({
|
786
|
+
# fleet_arn: "FleetArn", # required
|
787
|
+
# next_token: "NextToken",
|
788
|
+
# max_results: 1,
|
789
|
+
# })
|
790
|
+
#
|
791
|
+
# @example Response structure
|
792
|
+
#
|
793
|
+
# resp.domains #=> Array
|
794
|
+
# resp.domains[0].domain_name #=> String
|
795
|
+
# resp.domains[0].created_time #=> Time
|
796
|
+
# resp.domains[0].domain_status #=> String, one of "PENDING_VALIDATION", "ASSOCIATING", "ACTIVE", "INACTIVE", "DISASSOCIATING", "DISASSOCIATED", "FAILED_TO_ASSOCIATE", "FAILED_TO_DISASSOCIATE"
|
797
|
+
# resp.domains[0].display_name #=> String
|
798
|
+
# resp.next_token #=> String
|
799
|
+
#
|
800
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/ListDomains AWS API Documentation
|
801
|
+
#
|
802
|
+
# @overload list_domains(params = {})
|
803
|
+
# @param [Hash] params ({})
|
804
|
+
def list_domains(params = {}, options = {})
|
805
|
+
req = build_request(:list_domains, params)
|
806
|
+
req.send_request(options)
|
807
|
+
end
|
808
|
+
|
625
809
|
# Retrieves a list of fleets for the current account and Region.
|
626
810
|
#
|
627
811
|
# @option params [String] :next_token
|
@@ -707,6 +891,58 @@ module Aws::WorkLink
|
|
707
891
|
req.send_request(options)
|
708
892
|
end
|
709
893
|
|
894
|
+
# Moves a domain to ACTIVE status if it was in the INACTIVE status.
|
895
|
+
#
|
896
|
+
# @option params [required, String] :fleet_arn
|
897
|
+
# The ARN of the fleet.
|
898
|
+
#
|
899
|
+
# @option params [required, String] :domain_name
|
900
|
+
# The name of the domain.
|
901
|
+
#
|
902
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
903
|
+
#
|
904
|
+
# @example Request syntax with placeholder values
|
905
|
+
#
|
906
|
+
# resp = client.restore_domain_access({
|
907
|
+
# fleet_arn: "FleetArn", # required
|
908
|
+
# domain_name: "DomainName", # required
|
909
|
+
# })
|
910
|
+
#
|
911
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/RestoreDomainAccess AWS API Documentation
|
912
|
+
#
|
913
|
+
# @overload restore_domain_access(params = {})
|
914
|
+
# @param [Hash] params ({})
|
915
|
+
def restore_domain_access(params = {}, options = {})
|
916
|
+
req = build_request(:restore_domain_access, params)
|
917
|
+
req.send_request(options)
|
918
|
+
end
|
919
|
+
|
920
|
+
# Moves a domain to INACTIVE status if it was in the ACTIVE status.
|
921
|
+
#
|
922
|
+
# @option params [required, String] :fleet_arn
|
923
|
+
# The ARN of the fleet.
|
924
|
+
#
|
925
|
+
# @option params [required, String] :domain_name
|
926
|
+
# The name of the domain.
|
927
|
+
#
|
928
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
929
|
+
#
|
930
|
+
# @example Request syntax with placeholder values
|
931
|
+
#
|
932
|
+
# resp = client.revoke_domain_access({
|
933
|
+
# fleet_arn: "FleetArn", # required
|
934
|
+
# domain_name: "DomainName", # required
|
935
|
+
# })
|
936
|
+
#
|
937
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/RevokeDomainAccess AWS API Documentation
|
938
|
+
#
|
939
|
+
# @overload revoke_domain_access(params = {})
|
940
|
+
# @param [Hash] params ({})
|
941
|
+
def revoke_domain_access(params = {}, options = {})
|
942
|
+
req = build_request(:revoke_domain_access, params)
|
943
|
+
req.send_request(options)
|
944
|
+
end
|
945
|
+
|
710
946
|
# Signs the user out from all of their devices. The user can sign in
|
711
947
|
# again if they have valid credentials.
|
712
948
|
#
|
@@ -824,6 +1060,36 @@ module Aws::WorkLink
|
|
824
1060
|
req.send_request(options)
|
825
1061
|
end
|
826
1062
|
|
1063
|
+
# Updates domain metadata, such as DisplayName.
|
1064
|
+
#
|
1065
|
+
# @option params [required, String] :fleet_arn
|
1066
|
+
# The ARN of the fleet.
|
1067
|
+
#
|
1068
|
+
# @option params [required, String] :domain_name
|
1069
|
+
# The name of the domain.
|
1070
|
+
#
|
1071
|
+
# @option params [String] :display_name
|
1072
|
+
# The name to display.
|
1073
|
+
#
|
1074
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1075
|
+
#
|
1076
|
+
# @example Request syntax with placeholder values
|
1077
|
+
#
|
1078
|
+
# resp = client.update_domain_metadata({
|
1079
|
+
# fleet_arn: "FleetArn", # required
|
1080
|
+
# domain_name: "DomainName", # required
|
1081
|
+
# display_name: "DisplayName",
|
1082
|
+
# })
|
1083
|
+
#
|
1084
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/UpdateDomainMetadata AWS API Documentation
|
1085
|
+
#
|
1086
|
+
# @overload update_domain_metadata(params = {})
|
1087
|
+
# @param [Hash] params ({})
|
1088
|
+
def update_domain_metadata(params = {}, options = {})
|
1089
|
+
req = build_request(:update_domain_metadata, params)
|
1090
|
+
req.send_request(options)
|
1091
|
+
end
|
1092
|
+
|
827
1093
|
# Updates fleet metadata, such as DisplayName.
|
828
1094
|
#
|
829
1095
|
# @option params [required, String] :fleet_arn
|
@@ -902,7 +1168,7 @@ module Aws::WorkLink
|
|
902
1168
|
params: params,
|
903
1169
|
config: config)
|
904
1170
|
context[:gem_name] = 'aws-sdk-worklink'
|
905
|
-
context[:gem_version] = '1.
|
1171
|
+
context[:gem_version] = '1.4.0'
|
906
1172
|
Seahorse::Client::Request.new(handlers, context)
|
907
1173
|
end
|
908
1174
|
|
@@ -11,6 +11,9 @@ module Aws::WorkLink
|
|
11
11
|
|
12
12
|
include Seahorse::Model
|
13
13
|
|
14
|
+
AcmCertificateArn = Shapes::StringShape.new(name: 'AcmCertificateArn')
|
15
|
+
AssociateDomainRequest = Shapes::StructureShape.new(name: 'AssociateDomainRequest')
|
16
|
+
AssociateDomainResponse = Shapes::StructureShape.new(name: 'AssociateDomainResponse')
|
14
17
|
AssociateWebsiteCertificateAuthorityRequest = Shapes::StructureShape.new(name: 'AssociateWebsiteCertificateAuthorityRequest')
|
15
18
|
AssociateWebsiteCertificateAuthorityResponse = Shapes::StructureShape.new(name: 'AssociateWebsiteCertificateAuthorityResponse')
|
16
19
|
AuditStreamArn = Shapes::StringShape.new(name: 'AuditStreamArn')
|
@@ -31,6 +34,8 @@ module Aws::WorkLink
|
|
31
34
|
DescribeDevicePolicyConfigurationResponse = Shapes::StructureShape.new(name: 'DescribeDevicePolicyConfigurationResponse')
|
32
35
|
DescribeDeviceRequest = Shapes::StructureShape.new(name: 'DescribeDeviceRequest')
|
33
36
|
DescribeDeviceResponse = Shapes::StructureShape.new(name: 'DescribeDeviceResponse')
|
37
|
+
DescribeDomainRequest = Shapes::StructureShape.new(name: 'DescribeDomainRequest')
|
38
|
+
DescribeDomainResponse = Shapes::StructureShape.new(name: 'DescribeDomainResponse')
|
34
39
|
DescribeFleetMetadataRequest = Shapes::StructureShape.new(name: 'DescribeFleetMetadataRequest')
|
35
40
|
DescribeFleetMetadataResponse = Shapes::StructureShape.new(name: 'DescribeFleetMetadataResponse')
|
36
41
|
DescribeIdentityProviderConfigurationRequest = Shapes::StructureShape.new(name: 'DescribeIdentityProviderConfigurationRequest')
|
@@ -45,9 +50,15 @@ module Aws::WorkLink
|
|
45
50
|
DeviceStatus = Shapes::StringShape.new(name: 'DeviceStatus')
|
46
51
|
DeviceSummary = Shapes::StructureShape.new(name: 'DeviceSummary')
|
47
52
|
DeviceSummaryList = Shapes::ListShape.new(name: 'DeviceSummaryList')
|
53
|
+
DisassociateDomainRequest = Shapes::StructureShape.new(name: 'DisassociateDomainRequest')
|
54
|
+
DisassociateDomainResponse = Shapes::StructureShape.new(name: 'DisassociateDomainResponse')
|
48
55
|
DisassociateWebsiteCertificateAuthorityRequest = Shapes::StructureShape.new(name: 'DisassociateWebsiteCertificateAuthorityRequest')
|
49
56
|
DisassociateWebsiteCertificateAuthorityResponse = Shapes::StructureShape.new(name: 'DisassociateWebsiteCertificateAuthorityResponse')
|
50
57
|
DisplayName = Shapes::StringShape.new(name: 'DisplayName')
|
58
|
+
DomainName = Shapes::StringShape.new(name: 'DomainName')
|
59
|
+
DomainStatus = Shapes::StringShape.new(name: 'DomainStatus')
|
60
|
+
DomainSummary = Shapes::StructureShape.new(name: 'DomainSummary')
|
61
|
+
DomainSummaryList = Shapes::ListShape.new(name: 'DomainSummaryList')
|
51
62
|
ExceptionMessage = Shapes::StringShape.new(name: 'ExceptionMessage')
|
52
63
|
FleetArn = Shapes::StringShape.new(name: 'FleetArn')
|
53
64
|
FleetName = Shapes::StringShape.new(name: 'FleetName')
|
@@ -60,6 +71,8 @@ module Aws::WorkLink
|
|
60
71
|
InvalidRequestException = Shapes::StructureShape.new(name: 'InvalidRequestException')
|
61
72
|
ListDevicesRequest = Shapes::StructureShape.new(name: 'ListDevicesRequest')
|
62
73
|
ListDevicesResponse = Shapes::StructureShape.new(name: 'ListDevicesResponse')
|
74
|
+
ListDomainsRequest = Shapes::StructureShape.new(name: 'ListDomainsRequest')
|
75
|
+
ListDomainsResponse = Shapes::StructureShape.new(name: 'ListDomainsResponse')
|
63
76
|
ListFleetsRequest = Shapes::StructureShape.new(name: 'ListFleetsRequest')
|
64
77
|
ListFleetsResponse = Shapes::StructureShape.new(name: 'ListFleetsResponse')
|
65
78
|
ListWebsiteCertificateAuthoritiesRequest = Shapes::StructureShape.new(name: 'ListWebsiteCertificateAuthoritiesRequest')
|
@@ -68,6 +81,10 @@ module Aws::WorkLink
|
|
68
81
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
69
82
|
ResourceAlreadyExistsException = Shapes::StructureShape.new(name: 'ResourceAlreadyExistsException')
|
70
83
|
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
|
84
|
+
RestoreDomainAccessRequest = Shapes::StructureShape.new(name: 'RestoreDomainAccessRequest')
|
85
|
+
RestoreDomainAccessResponse = Shapes::StructureShape.new(name: 'RestoreDomainAccessResponse')
|
86
|
+
RevokeDomainAccessRequest = Shapes::StructureShape.new(name: 'RevokeDomainAccessRequest')
|
87
|
+
RevokeDomainAccessResponse = Shapes::StructureShape.new(name: 'RevokeDomainAccessResponse')
|
71
88
|
SamlMetadata = Shapes::StringShape.new(name: 'SamlMetadata')
|
72
89
|
SecurityGroupId = Shapes::StringShape.new(name: 'SecurityGroupId')
|
73
90
|
SecurityGroupIds = Shapes::ListShape.new(name: 'SecurityGroupIds')
|
@@ -83,6 +100,8 @@ module Aws::WorkLink
|
|
83
100
|
UpdateCompanyNetworkConfigurationResponse = Shapes::StructureShape.new(name: 'UpdateCompanyNetworkConfigurationResponse')
|
84
101
|
UpdateDevicePolicyConfigurationRequest = Shapes::StructureShape.new(name: 'UpdateDevicePolicyConfigurationRequest')
|
85
102
|
UpdateDevicePolicyConfigurationResponse = Shapes::StructureShape.new(name: 'UpdateDevicePolicyConfigurationResponse')
|
103
|
+
UpdateDomainMetadataRequest = Shapes::StructureShape.new(name: 'UpdateDomainMetadataRequest')
|
104
|
+
UpdateDomainMetadataResponse = Shapes::StructureShape.new(name: 'UpdateDomainMetadataResponse')
|
86
105
|
UpdateFleetMetadataRequest = Shapes::StructureShape.new(name: 'UpdateFleetMetadataRequest')
|
87
106
|
UpdateFleetMetadataResponse = Shapes::StructureShape.new(name: 'UpdateFleetMetadataResponse')
|
88
107
|
UpdateIdentityProviderConfigurationRequest = Shapes::StructureShape.new(name: 'UpdateIdentityProviderConfigurationRequest')
|
@@ -92,6 +111,14 @@ module Aws::WorkLink
|
|
92
111
|
WebsiteCaSummary = Shapes::StructureShape.new(name: 'WebsiteCaSummary')
|
93
112
|
WebsiteCaSummaryList = Shapes::ListShape.new(name: 'WebsiteCaSummaryList')
|
94
113
|
|
114
|
+
AssociateDomainRequest.add_member(:fleet_arn, Shapes::ShapeRef.new(shape: FleetArn, required: true, location_name: "FleetArn"))
|
115
|
+
AssociateDomainRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, required: true, location_name: "DomainName"))
|
116
|
+
AssociateDomainRequest.add_member(:acm_certificate_arn, Shapes::ShapeRef.new(shape: AcmCertificateArn, required: true, location_name: "AcmCertificateArn"))
|
117
|
+
AssociateDomainRequest.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "DisplayName"))
|
118
|
+
AssociateDomainRequest.struct_class = Types::AssociateDomainRequest
|
119
|
+
|
120
|
+
AssociateDomainResponse.struct_class = Types::AssociateDomainResponse
|
121
|
+
|
95
122
|
AssociateWebsiteCertificateAuthorityRequest.add_member(:fleet_arn, Shapes::ShapeRef.new(shape: FleetArn, required: true, location_name: "FleetArn"))
|
96
123
|
AssociateWebsiteCertificateAuthorityRequest.add_member(:certificate, Shapes::ShapeRef.new(shape: Certificate, required: true, location_name: "Certificate"))
|
97
124
|
AssociateWebsiteCertificateAuthorityRequest.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "DisplayName"))
|
@@ -148,6 +175,15 @@ module Aws::WorkLink
|
|
148
175
|
DescribeDeviceResponse.add_member(:username, Shapes::ShapeRef.new(shape: Username, location_name: "Username"))
|
149
176
|
DescribeDeviceResponse.struct_class = Types::DescribeDeviceResponse
|
150
177
|
|
178
|
+
DescribeDomainRequest.add_member(:fleet_arn, Shapes::ShapeRef.new(shape: FleetArn, required: true, location_name: "FleetArn"))
|
179
|
+
DescribeDomainRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, required: true, location_name: "DomainName"))
|
180
|
+
DescribeDomainRequest.struct_class = Types::DescribeDomainRequest
|
181
|
+
|
182
|
+
DescribeDomainResponse.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "DisplayName"))
|
183
|
+
DescribeDomainResponse.add_member(:created_time, Shapes::ShapeRef.new(shape: DateTime, location_name: "CreatedTime"))
|
184
|
+
DescribeDomainResponse.add_member(:domain_status, Shapes::ShapeRef.new(shape: DomainStatus, location_name: "DomainStatus"))
|
185
|
+
DescribeDomainResponse.struct_class = Types::DescribeDomainResponse
|
186
|
+
|
151
187
|
DescribeFleetMetadataRequest.add_member(:fleet_arn, Shapes::ShapeRef.new(shape: FleetArn, required: true, location_name: "FleetArn"))
|
152
188
|
DescribeFleetMetadataRequest.struct_class = Types::DescribeFleetMetadataRequest
|
153
189
|
|
@@ -183,12 +219,26 @@ module Aws::WorkLink
|
|
183
219
|
|
184
220
|
DeviceSummaryList.member = Shapes::ShapeRef.new(shape: DeviceSummary)
|
185
221
|
|
222
|
+
DisassociateDomainRequest.add_member(:fleet_arn, Shapes::ShapeRef.new(shape: FleetArn, required: true, location_name: "FleetArn"))
|
223
|
+
DisassociateDomainRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, required: true, location_name: "DomainName"))
|
224
|
+
DisassociateDomainRequest.struct_class = Types::DisassociateDomainRequest
|
225
|
+
|
226
|
+
DisassociateDomainResponse.struct_class = Types::DisassociateDomainResponse
|
227
|
+
|
186
228
|
DisassociateWebsiteCertificateAuthorityRequest.add_member(:fleet_arn, Shapes::ShapeRef.new(shape: FleetArn, required: true, location_name: "FleetArn"))
|
187
229
|
DisassociateWebsiteCertificateAuthorityRequest.add_member(:website_ca_id, Shapes::ShapeRef.new(shape: Id, required: true, location_name: "WebsiteCaId"))
|
188
230
|
DisassociateWebsiteCertificateAuthorityRequest.struct_class = Types::DisassociateWebsiteCertificateAuthorityRequest
|
189
231
|
|
190
232
|
DisassociateWebsiteCertificateAuthorityResponse.struct_class = Types::DisassociateWebsiteCertificateAuthorityResponse
|
191
233
|
|
234
|
+
DomainSummary.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, required: true, location_name: "DomainName"))
|
235
|
+
DomainSummary.add_member(:created_time, Shapes::ShapeRef.new(shape: DateTime, required: true, location_name: "CreatedTime"))
|
236
|
+
DomainSummary.add_member(:domain_status, Shapes::ShapeRef.new(shape: DomainStatus, required: true, location_name: "DomainStatus"))
|
237
|
+
DomainSummary.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "DisplayName"))
|
238
|
+
DomainSummary.struct_class = Types::DomainSummary
|
239
|
+
|
240
|
+
DomainSummaryList.member = Shapes::ShapeRef.new(shape: DomainSummary)
|
241
|
+
|
192
242
|
FleetSummary.add_member(:fleet_arn, Shapes::ShapeRef.new(shape: FleetArn, location_name: "FleetArn"))
|
193
243
|
FleetSummary.add_member(:created_time, Shapes::ShapeRef.new(shape: DateTime, location_name: "CreatedTime"))
|
194
244
|
FleetSummary.add_member(:last_updated_time, Shapes::ShapeRef.new(shape: DateTime, location_name: "LastUpdatedTime"))
|
@@ -209,6 +259,15 @@ module Aws::WorkLink
|
|
209
259
|
ListDevicesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
210
260
|
ListDevicesResponse.struct_class = Types::ListDevicesResponse
|
211
261
|
|
262
|
+
ListDomainsRequest.add_member(:fleet_arn, Shapes::ShapeRef.new(shape: FleetArn, required: true, location_name: "FleetArn"))
|
263
|
+
ListDomainsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
264
|
+
ListDomainsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
265
|
+
ListDomainsRequest.struct_class = Types::ListDomainsRequest
|
266
|
+
|
267
|
+
ListDomainsResponse.add_member(:domains, Shapes::ShapeRef.new(shape: DomainSummaryList, location_name: "Domains"))
|
268
|
+
ListDomainsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
269
|
+
ListDomainsResponse.struct_class = Types::ListDomainsResponse
|
270
|
+
|
212
271
|
ListFleetsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
213
272
|
ListFleetsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
214
273
|
ListFleetsRequest.struct_class = Types::ListFleetsRequest
|
@@ -226,6 +285,18 @@ module Aws::WorkLink
|
|
226
285
|
ListWebsiteCertificateAuthoritiesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
227
286
|
ListWebsiteCertificateAuthoritiesResponse.struct_class = Types::ListWebsiteCertificateAuthoritiesResponse
|
228
287
|
|
288
|
+
RestoreDomainAccessRequest.add_member(:fleet_arn, Shapes::ShapeRef.new(shape: FleetArn, required: true, location_name: "FleetArn"))
|
289
|
+
RestoreDomainAccessRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, required: true, location_name: "DomainName"))
|
290
|
+
RestoreDomainAccessRequest.struct_class = Types::RestoreDomainAccessRequest
|
291
|
+
|
292
|
+
RestoreDomainAccessResponse.struct_class = Types::RestoreDomainAccessResponse
|
293
|
+
|
294
|
+
RevokeDomainAccessRequest.add_member(:fleet_arn, Shapes::ShapeRef.new(shape: FleetArn, required: true, location_name: "FleetArn"))
|
295
|
+
RevokeDomainAccessRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, required: true, location_name: "DomainName"))
|
296
|
+
RevokeDomainAccessRequest.struct_class = Types::RevokeDomainAccessRequest
|
297
|
+
|
298
|
+
RevokeDomainAccessResponse.struct_class = Types::RevokeDomainAccessResponse
|
299
|
+
|
229
300
|
SecurityGroupIds.member = Shapes::ShapeRef.new(shape: SecurityGroupId)
|
230
301
|
|
231
302
|
SignOutUserRequest.add_member(:fleet_arn, Shapes::ShapeRef.new(shape: FleetArn, required: true, location_name: "FleetArn"))
|
@@ -256,6 +327,13 @@ module Aws::WorkLink
|
|
256
327
|
|
257
328
|
UpdateDevicePolicyConfigurationResponse.struct_class = Types::UpdateDevicePolicyConfigurationResponse
|
258
329
|
|
330
|
+
UpdateDomainMetadataRequest.add_member(:fleet_arn, Shapes::ShapeRef.new(shape: FleetArn, required: true, location_name: "FleetArn"))
|
331
|
+
UpdateDomainMetadataRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, required: true, location_name: "DomainName"))
|
332
|
+
UpdateDomainMetadataRequest.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "DisplayName"))
|
333
|
+
UpdateDomainMetadataRequest.struct_class = Types::UpdateDomainMetadataRequest
|
334
|
+
|
335
|
+
UpdateDomainMetadataResponse.struct_class = Types::UpdateDomainMetadataResponse
|
336
|
+
|
259
337
|
UpdateFleetMetadataRequest.add_member(:fleet_arn, Shapes::ShapeRef.new(shape: FleetArn, required: true, location_name: "FleetArn"))
|
260
338
|
UpdateFleetMetadataRequest.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "DisplayName"))
|
261
339
|
UpdateFleetMetadataRequest.add_member(:optimize_for_end_user_location, Shapes::ShapeRef.new(shape: Boolean, location_name: "OptimizeForEndUserLocation"))
|
@@ -296,6 +374,20 @@ module Aws::WorkLink
|
|
296
374
|
"uid" => "worklink-2018-09-25",
|
297
375
|
}
|
298
376
|
|
377
|
+
api.add_operation(:associate_domain, Seahorse::Model::Operation.new.tap do |o|
|
378
|
+
o.name = "AssociateDomain"
|
379
|
+
o.http_method = "POST"
|
380
|
+
o.http_request_uri = "/associateDomain"
|
381
|
+
o.input = Shapes::ShapeRef.new(shape: AssociateDomainRequest)
|
382
|
+
o.output = Shapes::ShapeRef.new(shape: AssociateDomainResponse)
|
383
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
384
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
385
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
386
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
387
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceAlreadyExistsException)
|
388
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
389
|
+
end)
|
390
|
+
|
299
391
|
api.add_operation(:associate_website_certificate_authority, Seahorse::Model::Operation.new.tap do |o|
|
300
392
|
o.name = "AssociateWebsiteCertificateAuthority"
|
301
393
|
o.http_method = "POST"
|
@@ -389,6 +481,19 @@ module Aws::WorkLink
|
|
389
481
|
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
390
482
|
end)
|
391
483
|
|
484
|
+
api.add_operation(:describe_domain, Seahorse::Model::Operation.new.tap do |o|
|
485
|
+
o.name = "DescribeDomain"
|
486
|
+
o.http_method = "POST"
|
487
|
+
o.http_request_uri = "/describeDomain"
|
488
|
+
o.input = Shapes::ShapeRef.new(shape: DescribeDomainRequest)
|
489
|
+
o.output = Shapes::ShapeRef.new(shape: DescribeDomainResponse)
|
490
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
491
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
492
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
493
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
494
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
495
|
+
end)
|
496
|
+
|
392
497
|
api.add_operation(:describe_fleet_metadata, Seahorse::Model::Operation.new.tap do |o|
|
393
498
|
o.name = "DescribeFleetMetadata"
|
394
499
|
o.http_method = "POST"
|
@@ -428,6 +533,19 @@ module Aws::WorkLink
|
|
428
533
|
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
429
534
|
end)
|
430
535
|
|
536
|
+
api.add_operation(:disassociate_domain, Seahorse::Model::Operation.new.tap do |o|
|
537
|
+
o.name = "DisassociateDomain"
|
538
|
+
o.http_method = "POST"
|
539
|
+
o.http_request_uri = "/disassociateDomain"
|
540
|
+
o.input = Shapes::ShapeRef.new(shape: DisassociateDomainRequest)
|
541
|
+
o.output = Shapes::ShapeRef.new(shape: DisassociateDomainResponse)
|
542
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
543
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
544
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
545
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
546
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
547
|
+
end)
|
548
|
+
|
431
549
|
api.add_operation(:disassociate_website_certificate_authority, Seahorse::Model::Operation.new.tap do |o|
|
432
550
|
o.name = "DisassociateWebsiteCertificateAuthority"
|
433
551
|
o.http_method = "POST"
|
@@ -460,6 +578,24 @@ module Aws::WorkLink
|
|
460
578
|
)
|
461
579
|
end)
|
462
580
|
|
581
|
+
api.add_operation(:list_domains, Seahorse::Model::Operation.new.tap do |o|
|
582
|
+
o.name = "ListDomains"
|
583
|
+
o.http_method = "POST"
|
584
|
+
o.http_request_uri = "/listDomains"
|
585
|
+
o.input = Shapes::ShapeRef.new(shape: ListDomainsRequest)
|
586
|
+
o.output = Shapes::ShapeRef.new(shape: ListDomainsResponse)
|
587
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
588
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
589
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
590
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
591
|
+
o[:pager] = Aws::Pager.new(
|
592
|
+
limit_key: "max_results",
|
593
|
+
tokens: {
|
594
|
+
"next_token" => "next_token"
|
595
|
+
}
|
596
|
+
)
|
597
|
+
end)
|
598
|
+
|
463
599
|
api.add_operation(:list_fleets, Seahorse::Model::Operation.new.tap do |o|
|
464
600
|
o.name = "ListFleets"
|
465
601
|
o.http_method = "POST"
|
@@ -496,6 +632,32 @@ module Aws::WorkLink
|
|
496
632
|
)
|
497
633
|
end)
|
498
634
|
|
635
|
+
api.add_operation(:restore_domain_access, Seahorse::Model::Operation.new.tap do |o|
|
636
|
+
o.name = "RestoreDomainAccess"
|
637
|
+
o.http_method = "POST"
|
638
|
+
o.http_request_uri = "/restoreDomainAccess"
|
639
|
+
o.input = Shapes::ShapeRef.new(shape: RestoreDomainAccessRequest)
|
640
|
+
o.output = Shapes::ShapeRef.new(shape: RestoreDomainAccessResponse)
|
641
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
642
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
643
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
644
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
645
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
646
|
+
end)
|
647
|
+
|
648
|
+
api.add_operation(:revoke_domain_access, Seahorse::Model::Operation.new.tap do |o|
|
649
|
+
o.name = "RevokeDomainAccess"
|
650
|
+
o.http_method = "POST"
|
651
|
+
o.http_request_uri = "/revokeDomainAccess"
|
652
|
+
o.input = Shapes::ShapeRef.new(shape: RevokeDomainAccessRequest)
|
653
|
+
o.output = Shapes::ShapeRef.new(shape: RevokeDomainAccessResponse)
|
654
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
655
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
656
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
657
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
658
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
659
|
+
end)
|
660
|
+
|
499
661
|
api.add_operation(:sign_out_user, Seahorse::Model::Operation.new.tap do |o|
|
500
662
|
o.name = "SignOutUser"
|
501
663
|
o.http_method = "POST"
|
@@ -548,6 +710,19 @@ module Aws::WorkLink
|
|
548
710
|
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
549
711
|
end)
|
550
712
|
|
713
|
+
api.add_operation(:update_domain_metadata, Seahorse::Model::Operation.new.tap do |o|
|
714
|
+
o.name = "UpdateDomainMetadata"
|
715
|
+
o.http_method = "POST"
|
716
|
+
o.http_request_uri = "/updateDomainMetadata"
|
717
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateDomainMetadataRequest)
|
718
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateDomainMetadataResponse)
|
719
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
720
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
721
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
722
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
723
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
724
|
+
end)
|
725
|
+
|
551
726
|
api.add_operation(:update_fleet_metadata, Seahorse::Model::Operation.new.tap do |o|
|
552
727
|
o.name = "UpdateFleetMetadata"
|
553
728
|
o.http_method = "POST"
|
@@ -8,6 +8,47 @@
|
|
8
8
|
module Aws::WorkLink
|
9
9
|
module Types
|
10
10
|
|
11
|
+
# @note When making an API call, you may pass AssociateDomainRequest
|
12
|
+
# data as a hash:
|
13
|
+
#
|
14
|
+
# {
|
15
|
+
# fleet_arn: "FleetArn", # required
|
16
|
+
# domain_name: "DomainName", # required
|
17
|
+
# acm_certificate_arn: "AcmCertificateArn", # required
|
18
|
+
# display_name: "DisplayName",
|
19
|
+
# }
|
20
|
+
#
|
21
|
+
# @!attribute [rw] fleet_arn
|
22
|
+
# The Amazon Resource Name (ARN) of the fleet.
|
23
|
+
# @return [String]
|
24
|
+
#
|
25
|
+
# @!attribute [rw] domain_name
|
26
|
+
# The fully qualified domain name (FQDN).
|
27
|
+
# @return [String]
|
28
|
+
#
|
29
|
+
# @!attribute [rw] acm_certificate_arn
|
30
|
+
# The ARN of an issued ACM certificate that is valid for the domain
|
31
|
+
# being associated.
|
32
|
+
# @return [String]
|
33
|
+
#
|
34
|
+
# @!attribute [rw] display_name
|
35
|
+
# The name to display.
|
36
|
+
# @return [String]
|
37
|
+
#
|
38
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/AssociateDomainRequest AWS API Documentation
|
39
|
+
#
|
40
|
+
class AssociateDomainRequest < Struct.new(
|
41
|
+
:fleet_arn,
|
42
|
+
:domain_name,
|
43
|
+
:acm_certificate_arn,
|
44
|
+
:display_name)
|
45
|
+
include Aws::Structure
|
46
|
+
end
|
47
|
+
|
48
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/AssociateDomainResponse AWS API Documentation
|
49
|
+
#
|
50
|
+
class AssociateDomainResponse < Aws::EmptyStructure; end
|
51
|
+
|
11
52
|
# @note When making an API call, you may pass AssociateWebsiteCertificateAuthorityRequest
|
12
53
|
# data as a hash:
|
13
54
|
#
|
@@ -290,6 +331,51 @@ module Aws::WorkLink
|
|
290
331
|
include Aws::Structure
|
291
332
|
end
|
292
333
|
|
334
|
+
# @note When making an API call, you may pass DescribeDomainRequest
|
335
|
+
# data as a hash:
|
336
|
+
#
|
337
|
+
# {
|
338
|
+
# fleet_arn: "FleetArn", # required
|
339
|
+
# domain_name: "DomainName", # required
|
340
|
+
# }
|
341
|
+
#
|
342
|
+
# @!attribute [rw] fleet_arn
|
343
|
+
# The ARN of the fleet.
|
344
|
+
# @return [String]
|
345
|
+
#
|
346
|
+
# @!attribute [rw] domain_name
|
347
|
+
# The name of the domain.
|
348
|
+
# @return [String]
|
349
|
+
#
|
350
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/DescribeDomainRequest AWS API Documentation
|
351
|
+
#
|
352
|
+
class DescribeDomainRequest < Struct.new(
|
353
|
+
:fleet_arn,
|
354
|
+
:domain_name)
|
355
|
+
include Aws::Structure
|
356
|
+
end
|
357
|
+
|
358
|
+
# @!attribute [rw] display_name
|
359
|
+
# The name to display.
|
360
|
+
# @return [String]
|
361
|
+
#
|
362
|
+
# @!attribute [rw] created_time
|
363
|
+
# The time that the domain was added.
|
364
|
+
# @return [Time]
|
365
|
+
#
|
366
|
+
# @!attribute [rw] domain_status
|
367
|
+
# The current state for the domain.
|
368
|
+
# @return [String]
|
369
|
+
#
|
370
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/DescribeDomainResponse AWS API Documentation
|
371
|
+
#
|
372
|
+
class DescribeDomainResponse < Struct.new(
|
373
|
+
:display_name,
|
374
|
+
:created_time,
|
375
|
+
:domain_status)
|
376
|
+
include Aws::Structure
|
377
|
+
end
|
378
|
+
|
293
379
|
# @note When making an API call, you may pass DescribeFleetMetadataRequest
|
294
380
|
# data as a hash:
|
295
381
|
#
|
@@ -453,6 +539,34 @@ module Aws::WorkLink
|
|
453
539
|
include Aws::Structure
|
454
540
|
end
|
455
541
|
|
542
|
+
# @note When making an API call, you may pass DisassociateDomainRequest
|
543
|
+
# data as a hash:
|
544
|
+
#
|
545
|
+
# {
|
546
|
+
# fleet_arn: "FleetArn", # required
|
547
|
+
# domain_name: "DomainName", # required
|
548
|
+
# }
|
549
|
+
#
|
550
|
+
# @!attribute [rw] fleet_arn
|
551
|
+
# The ARN of the fleet.
|
552
|
+
# @return [String]
|
553
|
+
#
|
554
|
+
# @!attribute [rw] domain_name
|
555
|
+
# The name of the domain.
|
556
|
+
# @return [String]
|
557
|
+
#
|
558
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/DisassociateDomainRequest AWS API Documentation
|
559
|
+
#
|
560
|
+
class DisassociateDomainRequest < Struct.new(
|
561
|
+
:fleet_arn,
|
562
|
+
:domain_name)
|
563
|
+
include Aws::Structure
|
564
|
+
end
|
565
|
+
|
566
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/DisassociateDomainResponse AWS API Documentation
|
567
|
+
#
|
568
|
+
class DisassociateDomainResponse < Aws::EmptyStructure; end
|
569
|
+
|
456
570
|
# @note When making an API call, you may pass DisassociateWebsiteCertificateAuthorityRequest
|
457
571
|
# data as a hash:
|
458
572
|
#
|
@@ -481,6 +595,34 @@ module Aws::WorkLink
|
|
481
595
|
#
|
482
596
|
class DisassociateWebsiteCertificateAuthorityResponse < Aws::EmptyStructure; end
|
483
597
|
|
598
|
+
# The summary of the domain.
|
599
|
+
#
|
600
|
+
# @!attribute [rw] domain_name
|
601
|
+
# The name of the domain.
|
602
|
+
# @return [String]
|
603
|
+
#
|
604
|
+
# @!attribute [rw] created_time
|
605
|
+
# The time that the domain was created.
|
606
|
+
# @return [Time]
|
607
|
+
#
|
608
|
+
# @!attribute [rw] domain_status
|
609
|
+
# The status of the domain.
|
610
|
+
# @return [String]
|
611
|
+
#
|
612
|
+
# @!attribute [rw] display_name
|
613
|
+
# The name to display.
|
614
|
+
# @return [String]
|
615
|
+
#
|
616
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/DomainSummary AWS API Documentation
|
617
|
+
#
|
618
|
+
class DomainSummary < Struct.new(
|
619
|
+
:domain_name,
|
620
|
+
:created_time,
|
621
|
+
:domain_status,
|
622
|
+
:display_name)
|
623
|
+
include Aws::Structure
|
624
|
+
end
|
625
|
+
|
484
626
|
# The summary of the fleet.
|
485
627
|
#
|
486
628
|
# @!attribute [rw] fleet_arn
|
@@ -572,6 +714,54 @@ module Aws::WorkLink
|
|
572
714
|
include Aws::Structure
|
573
715
|
end
|
574
716
|
|
717
|
+
# @note When making an API call, you may pass ListDomainsRequest
|
718
|
+
# data as a hash:
|
719
|
+
#
|
720
|
+
# {
|
721
|
+
# fleet_arn: "FleetArn", # required
|
722
|
+
# next_token: "NextToken",
|
723
|
+
# max_results: 1,
|
724
|
+
# }
|
725
|
+
#
|
726
|
+
# @!attribute [rw] fleet_arn
|
727
|
+
# The ARN of the fleet.
|
728
|
+
# @return [String]
|
729
|
+
#
|
730
|
+
# @!attribute [rw] next_token
|
731
|
+
# The pagination token used to retrieve the next page of results for
|
732
|
+
# this operation. If this value is null, it retrieves the first page.
|
733
|
+
# @return [String]
|
734
|
+
#
|
735
|
+
# @!attribute [rw] max_results
|
736
|
+
# The maximum number of results to be included in the next page.
|
737
|
+
# @return [Integer]
|
738
|
+
#
|
739
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/ListDomainsRequest AWS API Documentation
|
740
|
+
#
|
741
|
+
class ListDomainsRequest < Struct.new(
|
742
|
+
:fleet_arn,
|
743
|
+
:next_token,
|
744
|
+
:max_results)
|
745
|
+
include Aws::Structure
|
746
|
+
end
|
747
|
+
|
748
|
+
# @!attribute [rw] domains
|
749
|
+
# Information about the domains.
|
750
|
+
# @return [Array<Types::DomainSummary>]
|
751
|
+
#
|
752
|
+
# @!attribute [rw] next_token
|
753
|
+
# The pagination token used to retrieve the next page of results for
|
754
|
+
# this operation. If there are no more pages, this value is null.
|
755
|
+
# @return [String]
|
756
|
+
#
|
757
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/ListDomainsResponse AWS API Documentation
|
758
|
+
#
|
759
|
+
class ListDomainsResponse < Struct.new(
|
760
|
+
:domains,
|
761
|
+
:next_token)
|
762
|
+
include Aws::Structure
|
763
|
+
end
|
764
|
+
|
575
765
|
# @note When making an API call, you may pass ListFleetsRequest
|
576
766
|
# data as a hash:
|
577
767
|
#
|
@@ -662,6 +852,62 @@ module Aws::WorkLink
|
|
662
852
|
include Aws::Structure
|
663
853
|
end
|
664
854
|
|
855
|
+
# @note When making an API call, you may pass RestoreDomainAccessRequest
|
856
|
+
# data as a hash:
|
857
|
+
#
|
858
|
+
# {
|
859
|
+
# fleet_arn: "FleetArn", # required
|
860
|
+
# domain_name: "DomainName", # required
|
861
|
+
# }
|
862
|
+
#
|
863
|
+
# @!attribute [rw] fleet_arn
|
864
|
+
# The ARN of the fleet.
|
865
|
+
# @return [String]
|
866
|
+
#
|
867
|
+
# @!attribute [rw] domain_name
|
868
|
+
# The name of the domain.
|
869
|
+
# @return [String]
|
870
|
+
#
|
871
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/RestoreDomainAccessRequest AWS API Documentation
|
872
|
+
#
|
873
|
+
class RestoreDomainAccessRequest < Struct.new(
|
874
|
+
:fleet_arn,
|
875
|
+
:domain_name)
|
876
|
+
include Aws::Structure
|
877
|
+
end
|
878
|
+
|
879
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/RestoreDomainAccessResponse AWS API Documentation
|
880
|
+
#
|
881
|
+
class RestoreDomainAccessResponse < Aws::EmptyStructure; end
|
882
|
+
|
883
|
+
# @note When making an API call, you may pass RevokeDomainAccessRequest
|
884
|
+
# data as a hash:
|
885
|
+
#
|
886
|
+
# {
|
887
|
+
# fleet_arn: "FleetArn", # required
|
888
|
+
# domain_name: "DomainName", # required
|
889
|
+
# }
|
890
|
+
#
|
891
|
+
# @!attribute [rw] fleet_arn
|
892
|
+
# The ARN of the fleet.
|
893
|
+
# @return [String]
|
894
|
+
#
|
895
|
+
# @!attribute [rw] domain_name
|
896
|
+
# The name of the domain.
|
897
|
+
# @return [String]
|
898
|
+
#
|
899
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/RevokeDomainAccessRequest AWS API Documentation
|
900
|
+
#
|
901
|
+
class RevokeDomainAccessRequest < Struct.new(
|
902
|
+
:fleet_arn,
|
903
|
+
:domain_name)
|
904
|
+
include Aws::Structure
|
905
|
+
end
|
906
|
+
|
907
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/RevokeDomainAccessResponse AWS API Documentation
|
908
|
+
#
|
909
|
+
class RevokeDomainAccessResponse < Aws::EmptyStructure; end
|
910
|
+
|
665
911
|
# @note When making an API call, you may pass SignOutUserRequest
|
666
912
|
# data as a hash:
|
667
913
|
#
|
@@ -790,6 +1036,40 @@ module Aws::WorkLink
|
|
790
1036
|
#
|
791
1037
|
class UpdateDevicePolicyConfigurationResponse < Aws::EmptyStructure; end
|
792
1038
|
|
1039
|
+
# @note When making an API call, you may pass UpdateDomainMetadataRequest
|
1040
|
+
# data as a hash:
|
1041
|
+
#
|
1042
|
+
# {
|
1043
|
+
# fleet_arn: "FleetArn", # required
|
1044
|
+
# domain_name: "DomainName", # required
|
1045
|
+
# display_name: "DisplayName",
|
1046
|
+
# }
|
1047
|
+
#
|
1048
|
+
# @!attribute [rw] fleet_arn
|
1049
|
+
# The ARN of the fleet.
|
1050
|
+
# @return [String]
|
1051
|
+
#
|
1052
|
+
# @!attribute [rw] domain_name
|
1053
|
+
# The name of the domain.
|
1054
|
+
# @return [String]
|
1055
|
+
#
|
1056
|
+
# @!attribute [rw] display_name
|
1057
|
+
# The name to display.
|
1058
|
+
# @return [String]
|
1059
|
+
#
|
1060
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/UpdateDomainMetadataRequest AWS API Documentation
|
1061
|
+
#
|
1062
|
+
class UpdateDomainMetadataRequest < Struct.new(
|
1063
|
+
:fleet_arn,
|
1064
|
+
:domain_name,
|
1065
|
+
:display_name)
|
1066
|
+
include Aws::Structure
|
1067
|
+
end
|
1068
|
+
|
1069
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/UpdateDomainMetadataResponse AWS API Documentation
|
1070
|
+
#
|
1071
|
+
class UpdateDomainMetadataResponse < Aws::EmptyStructure; end
|
1072
|
+
|
793
1073
|
# @note When making an API call, you may pass UpdateFleetMetadataRequest
|
794
1074
|
# data as a hash:
|
795
1075
|
#
|
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.4.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: 2019-
|
11
|
+
date: 2019-04-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -59,7 +59,7 @@ files:
|
|
59
59
|
- lib/aws-sdk-worklink/errors.rb
|
60
60
|
- lib/aws-sdk-worklink/resource.rb
|
61
61
|
- lib/aws-sdk-worklink/types.rb
|
62
|
-
homepage:
|
62
|
+
homepage: https://github.com/aws/aws-sdk-ruby
|
63
63
|
licenses:
|
64
64
|
- Apache-2.0
|
65
65
|
metadata:
|