aws-sdk-worklink 1.34.0 → 1.35.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 26cb7e99070d6f73525af767622c45c8689141c38d0a324965feee932406bf8d
4
- data.tar.gz: b877165c93bf47c2f1660a5c15a65d7520e82754d56b23163c0c6b07758eaa4e
3
+ metadata.gz: c8e9fbc905116a047ff8f31d6b4c1c762fc43f4baf68656db64c0b34d1f55d7a
4
+ data.tar.gz: 22f3c397691683d1fd07f44b4851ce249dde6894e4e7c112ce1abe5722a87e6c
5
5
  SHA512:
6
- metadata.gz: 5f45185b0ad109e57ec32305bdbe25847592c171656d383d9bc4bc1c609e3eefa31f01a1707078d8b12415af655c511206b9a405847e4aad1f441bcb060a8099
7
- data.tar.gz: 4ab48adeec532853d1bc29efedcf5abd1de49db044a23f793974c8b3f6a56eaeb2e13b890410dbb970ad6084a1207e2f95d0f3e713e0b6a34cd6306b885e3df0
6
+ metadata.gz: 2282cbbf1b5075b86763699ad66087dea5a74c2499948712306fe3e3b4489ed6c8ac595fd4866f4ac01a61bc83029e0870d148b71c9b181d4dc2501982cc62b4
7
+ data.tar.gz: e270c82618e9f8df1faf382a3d12a7f0f382a6d3bcfdd5d112180ef93443019183d2bcaa19736ed7f11325afb094093735ea8f01223cc3e7a8a444515fe773fe
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.35.0 (2023-01-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
10
+
4
11
  1.34.0 (2022-10-25)
5
12
  ------------------
6
13
 
@@ -180,4 +187,4 @@ Unreleased Changes
180
187
  1.0.0 (2019-01-23)
181
188
  ------------------
182
189
 
183
- * Feature - Initial release of `aws-sdk-worklink`.
190
+ * Feature - Initial release of `aws-sdk-worklink`.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.34.0
1
+ 1.35.0
@@ -1510,7 +1510,7 @@ module Aws::WorkLink
1510
1510
  params: params,
1511
1511
  config: config)
1512
1512
  context[:gem_name] = 'aws-sdk-worklink'
1513
- context[:gem_version] = '1.34.0'
1513
+ context[:gem_version] = '1.35.0'
1514
1514
  Seahorse::Client::Request.new(handlers, context)
1515
1515
  end
1516
1516
 
@@ -9,102 +9,43 @@
9
9
 
10
10
  module Aws::WorkLink
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
20
- )
12
+ def resolve_endpoint(parameters)
13
+ region = parameters.region
14
+ use_dual_stack = parameters.use_dual_stack
15
+ use_fips = parameters.use_fips
16
+ endpoint = parameters.endpoint
17
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
+ if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
19
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
+ end
22
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
+ end
25
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
+ end
27
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
+ return Aws::Endpoints::Endpoint.new(url: "https://worklink-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
+ end
31
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
+ end
33
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ return Aws::Endpoints::Endpoint.new(url: "https://worklink-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
36
+ end
37
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
38
+ end
39
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
41
+ return Aws::Endpoints::Endpoint.new(url: "https://worklink.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
42
+ end
43
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
44
+ end
45
+ return Aws::Endpoints::Endpoint.new(url: "https://worklink.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
46
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
47
+ raise ArgumentError, 'No endpoint could be resolved'
24
48
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
49
  end
28
-
29
- # @api private
30
- RULES = <<-JSON
31
- eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
33
- dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
34
- cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
35
- dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
36
- ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
37
- ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
38
- ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
39
- aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
40
- OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
41
- UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
42
- dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
43
- UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
44
- dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
45
- ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
46
- IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
47
- aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
48
- bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
49
- ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
50
- Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
51
- cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
52
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
53
- aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
54
- cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
55
- InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
56
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
57
- UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
58
- SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
59
- eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
60
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
61
- LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
62
- ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
63
- b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
64
- fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
65
- RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
66
- ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
67
- ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
68
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
69
- dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
70
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
71
- Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
72
- In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
73
- YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
74
- YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
75
- cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
76
- dCI6eyJ1cmwiOiJodHRwczovL3dvcmtsaW5rLWZpcHMue1JlZ2lvbn0ue1Bh
77
- cnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9IiwicHJvcGVydGll
78
- cyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfSx7ImNv
79
- bmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgYW5kIER1YWxTdGFjayBhcmUg
80
- ZW5hYmxlZCwgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQg
81
- b25lIG9yIGJvdGgiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6
82
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
83
- UyJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlv
84
- bnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4i
85
- OiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0s
86
- InN1cHBvcnRzRklQUyJdfV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3si
87
- Y29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vd29y
88
- a2xpbmstZmlwcy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZp
89
- eH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5k
90
- cG9pbnQifV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBpcyBl
91
- bmFibGVkIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IEZJ
92
- UFMiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJi
93
- b29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRHVhbFN0YWNrIn0s
94
- dHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
95
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJmbiI6Imdl
96
- dEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwic3Vw
97
- cG9ydHNEdWFsU3RhY2siXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7
98
- ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL3dv
99
- cmtsaW5rLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5z
100
- U3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUi
101
- OiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJEdWFs
102
- U3RhY2sgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qg
103
- c3VwcG9ydCBEdWFsU3RhY2siLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0
104
- aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vd29ya2xpbmsu
105
- e1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVy
106
- dGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfV19
107
-
108
- JSON
109
50
  end
110
51
  end
@@ -10,16 +10,6 @@
10
10
  module Aws::WorkLink
11
11
  module Types
12
12
 
13
- # @note When making an API call, you may pass AssociateDomainRequest
14
- # data as a hash:
15
- #
16
- # {
17
- # fleet_arn: "FleetArn", # required
18
- # domain_name: "DomainName", # required
19
- # display_name: "DisplayName",
20
- # acm_certificate_arn: "AcmCertificateArn", # required
21
- # }
22
- #
23
13
  # @!attribute [rw] fleet_arn
24
14
  # The Amazon Resource Name (ARN) of the fleet.
25
15
  # @return [String]
@@ -52,15 +42,6 @@ module Aws::WorkLink
52
42
  #
53
43
  class AssociateDomainResponse < Aws::EmptyStructure; end
54
44
 
55
- # @note When making an API call, you may pass AssociateWebsiteAuthorizationProviderRequest
56
- # data as a hash:
57
- #
58
- # {
59
- # fleet_arn: "FleetArn", # required
60
- # authorization_provider_type: "SAML", # required, accepts SAML
61
- # domain_name: "DomainName",
62
- # }
63
- #
64
45
  # @!attribute [rw] fleet_arn
65
46
  # The ARN of the fleet.
66
47
  # @return [String]
@@ -96,15 +77,6 @@ module Aws::WorkLink
96
77
  include Aws::Structure
97
78
  end
98
79
 
99
- # @note When making an API call, you may pass AssociateWebsiteCertificateAuthorityRequest
100
- # data as a hash:
101
- #
102
- # {
103
- # fleet_arn: "FleetArn", # required
104
- # certificate: "Certificate", # required
105
- # display_name: "DisplayName",
106
- # }
107
- #
108
80
  # @!attribute [rw] fleet_arn
109
81
  # The ARN of the fleet.
110
82
  # @return [String]
@@ -139,18 +111,6 @@ module Aws::WorkLink
139
111
  include Aws::Structure
140
112
  end
141
113
 
142
- # @note When making an API call, you may pass CreateFleetRequest
143
- # data as a hash:
144
- #
145
- # {
146
- # fleet_name: "FleetName", # required
147
- # display_name: "DisplayName",
148
- # optimize_for_end_user_location: false,
149
- # tags: {
150
- # "TagKey" => "TagValue",
151
- # },
152
- # }
153
- #
154
114
  # @!attribute [rw] fleet_name
155
115
  # A unique name for the fleet.
156
116
  # @return [String]
@@ -192,13 +152,6 @@ module Aws::WorkLink
192
152
  include Aws::Structure
193
153
  end
194
154
 
195
- # @note When making an API call, you may pass DeleteFleetRequest
196
- # data as a hash:
197
- #
198
- # {
199
- # fleet_arn: "FleetArn", # required
200
- # }
201
- #
202
155
  # @!attribute [rw] fleet_arn
203
156
  # The ARN of the fleet.
204
157
  # @return [String]
@@ -215,13 +168,6 @@ module Aws::WorkLink
215
168
  #
216
169
  class DeleteFleetResponse < Aws::EmptyStructure; end
217
170
 
218
- # @note When making an API call, you may pass DescribeAuditStreamConfigurationRequest
219
- # data as a hash:
220
- #
221
- # {
222
- # fleet_arn: "FleetArn", # required
223
- # }
224
- #
225
171
  # @!attribute [rw] fleet_arn
226
172
  # The ARN of the fleet.
227
173
  # @return [String]
@@ -247,13 +193,6 @@ module Aws::WorkLink
247
193
  include Aws::Structure
248
194
  end
249
195
 
250
- # @note When making an API call, you may pass DescribeCompanyNetworkConfigurationRequest
251
- # data as a hash:
252
- #
253
- # {
254
- # fleet_arn: "FleetArn", # required
255
- # }
256
- #
257
196
  # @!attribute [rw] fleet_arn
258
197
  # The ARN of the fleet.
259
198
  # @return [String]
@@ -289,13 +228,6 @@ module Aws::WorkLink
289
228
  include Aws::Structure
290
229
  end
291
230
 
292
- # @note When making an API call, you may pass DescribeDevicePolicyConfigurationRequest
293
- # data as a hash:
294
- #
295
- # {
296
- # fleet_arn: "FleetArn", # required
297
- # }
298
- #
299
231
  # @!attribute [rw] fleet_arn
300
232
  # The ARN of the fleet.
301
233
  # @return [String]
@@ -322,14 +254,6 @@ module Aws::WorkLink
322
254
  include Aws::Structure
323
255
  end
324
256
 
325
- # @note When making an API call, you may pass DescribeDeviceRequest
326
- # data as a hash:
327
- #
328
- # {
329
- # fleet_arn: "FleetArn", # required
330
- # device_id: "Id", # required
331
- # }
332
- #
333
257
  # @!attribute [rw] fleet_arn
334
258
  # The ARN of the fleet.
335
259
  # @return [String]
@@ -399,14 +323,6 @@ module Aws::WorkLink
399
323
  include Aws::Structure
400
324
  end
401
325
 
402
- # @note When making an API call, you may pass DescribeDomainRequest
403
- # data as a hash:
404
- #
405
- # {
406
- # fleet_arn: "FleetArn", # required
407
- # domain_name: "DomainName", # required
408
- # }
409
- #
410
326
  # @!attribute [rw] fleet_arn
411
327
  # The ARN of the fleet.
412
328
  # @return [String]
@@ -457,13 +373,6 @@ module Aws::WorkLink
457
373
  include Aws::Structure
458
374
  end
459
375
 
460
- # @note When making an API call, you may pass DescribeFleetMetadataRequest
461
- # data as a hash:
462
- #
463
- # {
464
- # fleet_arn: "FleetArn", # required
465
- # }
466
- #
467
376
  # @!attribute [rw] fleet_arn
468
377
  # The Amazon Resource Name (ARN) of the fleet.
469
378
  # @return [String]
@@ -525,13 +434,6 @@ module Aws::WorkLink
525
434
  include Aws::Structure
526
435
  end
527
436
 
528
- # @note When making an API call, you may pass DescribeIdentityProviderConfigurationRequest
529
- # data as a hash:
530
- #
531
- # {
532
- # fleet_arn: "FleetArn", # required
533
- # }
534
- #
535
437
  # @!attribute [rw] fleet_arn
536
438
  # The ARN of the fleet.
537
439
  # @return [String]
@@ -566,14 +468,6 @@ module Aws::WorkLink
566
468
  include Aws::Structure
567
469
  end
568
470
 
569
- # @note When making an API call, you may pass DescribeWebsiteCertificateAuthorityRequest
570
- # data as a hash:
571
- #
572
- # {
573
- # fleet_arn: "FleetArn", # required
574
- # website_ca_id: "Id", # required
575
- # }
576
- #
577
471
  # @!attribute [rw] fleet_arn
578
472
  # The ARN of the fleet.
579
473
  # @return [String]
@@ -632,14 +526,6 @@ module Aws::WorkLink
632
526
  include Aws::Structure
633
527
  end
634
528
 
635
- # @note When making an API call, you may pass DisassociateDomainRequest
636
- # data as a hash:
637
- #
638
- # {
639
- # fleet_arn: "FleetArn", # required
640
- # domain_name: "DomainName", # required
641
- # }
642
- #
643
529
  # @!attribute [rw] fleet_arn
644
530
  # The ARN of the fleet.
645
531
  # @return [String]
@@ -661,14 +547,6 @@ module Aws::WorkLink
661
547
  #
662
548
  class DisassociateDomainResponse < Aws::EmptyStructure; end
663
549
 
664
- # @note When making an API call, you may pass DisassociateWebsiteAuthorizationProviderRequest
665
- # data as a hash:
666
- #
667
- # {
668
- # fleet_arn: "FleetArn", # required
669
- # authorization_provider_id: "Id", # required
670
- # }
671
- #
672
550
  # @!attribute [rw] fleet_arn
673
551
  # The ARN of the fleet.
674
552
  # @return [String]
@@ -690,14 +568,6 @@ module Aws::WorkLink
690
568
  #
691
569
  class DisassociateWebsiteAuthorizationProviderResponse < Aws::EmptyStructure; end
692
570
 
693
- # @note When making an API call, you may pass DisassociateWebsiteCertificateAuthorityRequest
694
- # data as a hash:
695
- #
696
- # {
697
- # fleet_arn: "FleetArn", # required
698
- # website_ca_id: "Id", # required
699
- # }
700
- #
701
571
  # @!attribute [rw] fleet_arn
702
572
  # The ARN of the fleet.
703
573
  # @return [String]
@@ -823,15 +693,6 @@ module Aws::WorkLink
823
693
  include Aws::Structure
824
694
  end
825
695
 
826
- # @note When making an API call, you may pass ListDevicesRequest
827
- # data as a hash:
828
- #
829
- # {
830
- # fleet_arn: "FleetArn", # required
831
- # next_token: "NextToken",
832
- # max_results: 1,
833
- # }
834
- #
835
696
  # @!attribute [rw] fleet_arn
836
697
  # The ARN of the fleet.
837
698
  # @return [String]
@@ -873,15 +734,6 @@ module Aws::WorkLink
873
734
  include Aws::Structure
874
735
  end
875
736
 
876
- # @note When making an API call, you may pass ListDomainsRequest
877
- # data as a hash:
878
- #
879
- # {
880
- # fleet_arn: "FleetArn", # required
881
- # next_token: "NextToken",
882
- # max_results: 1,
883
- # }
884
- #
885
737
  # @!attribute [rw] fleet_arn
886
738
  # The ARN of the fleet.
887
739
  # @return [String]
@@ -923,14 +775,6 @@ module Aws::WorkLink
923
775
  include Aws::Structure
924
776
  end
925
777
 
926
- # @note When making an API call, you may pass ListFleetsRequest
927
- # data as a hash:
928
- #
929
- # {
930
- # next_token: "NextToken",
931
- # max_results: 1,
932
- # }
933
- #
934
778
  # @!attribute [rw] next_token
935
779
  # The pagination token used to retrieve the next page of results for
936
780
  # this operation. If this value is null, it retrieves the first page.
@@ -967,13 +811,6 @@ module Aws::WorkLink
967
811
  include Aws::Structure
968
812
  end
969
813
 
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
814
  # @!attribute [rw] resource_arn
978
815
  # The Amazon Resource Name (ARN) of the fleet.
979
816
  # @return [String]
@@ -998,15 +835,6 @@ module Aws::WorkLink
998
835
  include Aws::Structure
999
836
  end
1000
837
 
1001
- # @note When making an API call, you may pass ListWebsiteAuthorizationProvidersRequest
1002
- # data as a hash:
1003
- #
1004
- # {
1005
- # fleet_arn: "FleetArn", # required
1006
- # next_token: "NextToken",
1007
- # max_results: 1,
1008
- # }
1009
- #
1010
838
  # @!attribute [rw] fleet_arn
1011
839
  # The ARN of the fleet.
1012
840
  # @return [String]
@@ -1048,15 +876,6 @@ module Aws::WorkLink
1048
876
  include Aws::Structure
1049
877
  end
1050
878
 
1051
- # @note When making an API call, you may pass ListWebsiteCertificateAuthoritiesRequest
1052
- # data as a hash:
1053
- #
1054
- # {
1055
- # fleet_arn: "FleetArn", # required
1056
- # max_results: 1,
1057
- # next_token: "NextToken",
1058
- # }
1059
- #
1060
879
  # @!attribute [rw] fleet_arn
1061
880
  # The ARN of the fleet.
1062
881
  # @return [String]
@@ -1124,14 +943,6 @@ module Aws::WorkLink
1124
943
  include Aws::Structure
1125
944
  end
1126
945
 
1127
- # @note When making an API call, you may pass RestoreDomainAccessRequest
1128
- # data as a hash:
1129
- #
1130
- # {
1131
- # fleet_arn: "FleetArn", # required
1132
- # domain_name: "DomainName", # required
1133
- # }
1134
- #
1135
946
  # @!attribute [rw] fleet_arn
1136
947
  # The ARN of the fleet.
1137
948
  # @return [String]
@@ -1153,14 +964,6 @@ module Aws::WorkLink
1153
964
  #
1154
965
  class RestoreDomainAccessResponse < Aws::EmptyStructure; end
1155
966
 
1156
- # @note When making an API call, you may pass RevokeDomainAccessRequest
1157
- # data as a hash:
1158
- #
1159
- # {
1160
- # fleet_arn: "FleetArn", # required
1161
- # domain_name: "DomainName", # required
1162
- # }
1163
- #
1164
967
  # @!attribute [rw] fleet_arn
1165
968
  # The ARN of the fleet.
1166
969
  # @return [String]
@@ -1182,14 +985,6 @@ module Aws::WorkLink
1182
985
  #
1183
986
  class RevokeDomainAccessResponse < Aws::EmptyStructure; end
1184
987
 
1185
- # @note When making an API call, you may pass SignOutUserRequest
1186
- # data as a hash:
1187
- #
1188
- # {
1189
- # fleet_arn: "FleetArn", # required
1190
- # username: "Username", # required
1191
- # }
1192
- #
1193
988
  # @!attribute [rw] fleet_arn
1194
989
  # The ARN of the fleet.
1195
990
  # @return [String]
@@ -1211,16 +1006,6 @@ module Aws::WorkLink
1211
1006
  #
1212
1007
  class SignOutUserResponse < Aws::EmptyStructure; end
1213
1008
 
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
1009
  # @!attribute [rw] resource_arn
1225
1010
  # The Amazon Resource Name (ARN) of the fleet.
1226
1011
  # @return [String]
@@ -1268,14 +1053,6 @@ module Aws::WorkLink
1268
1053
  include Aws::Structure
1269
1054
  end
1270
1055
 
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
1056
  # @!attribute [rw] resource_arn
1280
1057
  # The Amazon Resource Name (ARN) of the fleet.
1281
1058
  # @return [String]
@@ -1297,14 +1074,6 @@ module Aws::WorkLink
1297
1074
  #
1298
1075
  class UntagResourceResponse < Aws::EmptyStructure; end
1299
1076
 
1300
- # @note When making an API call, you may pass UpdateAuditStreamConfigurationRequest
1301
- # data as a hash:
1302
- #
1303
- # {
1304
- # fleet_arn: "FleetArn", # required
1305
- # audit_stream_arn: "AuditStreamArn",
1306
- # }
1307
- #
1308
1077
  # @!attribute [rw] fleet_arn
1309
1078
  # The ARN of the fleet.
1310
1079
  # @return [String]
@@ -1327,16 +1096,6 @@ module Aws::WorkLink
1327
1096
  #
1328
1097
  class UpdateAuditStreamConfigurationResponse < Aws::EmptyStructure; end
1329
1098
 
1330
- # @note When making an API call, you may pass UpdateCompanyNetworkConfigurationRequest
1331
- # data as a hash:
1332
- #
1333
- # {
1334
- # fleet_arn: "FleetArn", # required
1335
- # vpc_id: "VpcId", # required
1336
- # subnet_ids: ["SubnetId"], # required
1337
- # security_group_ids: ["SecurityGroupId"], # required
1338
- # }
1339
- #
1340
1099
  # @!attribute [rw] fleet_arn
1341
1100
  # The ARN of the fleet.
1342
1101
  # @return [String]
@@ -1369,14 +1128,6 @@ module Aws::WorkLink
1369
1128
  #
1370
1129
  class UpdateCompanyNetworkConfigurationResponse < Aws::EmptyStructure; end
1371
1130
 
1372
- # @note When making an API call, you may pass UpdateDevicePolicyConfigurationRequest
1373
- # data as a hash:
1374
- #
1375
- # {
1376
- # fleet_arn: "FleetArn", # required
1377
- # device_ca_certificate: "CertificateChain",
1378
- # }
1379
- #
1380
1131
  # @!attribute [rw] fleet_arn
1381
1132
  # The ARN of the fleet.
1382
1133
  # @return [String]
@@ -1400,15 +1151,6 @@ module Aws::WorkLink
1400
1151
  #
1401
1152
  class UpdateDevicePolicyConfigurationResponse < Aws::EmptyStructure; end
1402
1153
 
1403
- # @note When making an API call, you may pass UpdateDomainMetadataRequest
1404
- # data as a hash:
1405
- #
1406
- # {
1407
- # fleet_arn: "FleetArn", # required
1408
- # domain_name: "DomainName", # required
1409
- # display_name: "DisplayName",
1410
- # }
1411
- #
1412
1154
  # @!attribute [rw] fleet_arn
1413
1155
  # The ARN of the fleet.
1414
1156
  # @return [String]
@@ -1435,15 +1177,6 @@ module Aws::WorkLink
1435
1177
  #
1436
1178
  class UpdateDomainMetadataResponse < Aws::EmptyStructure; end
1437
1179
 
1438
- # @note When making an API call, you may pass UpdateFleetMetadataRequest
1439
- # data as a hash:
1440
- #
1441
- # {
1442
- # fleet_arn: "FleetArn", # required
1443
- # display_name: "DisplayName",
1444
- # optimize_for_end_user_location: false,
1445
- # }
1446
- #
1447
1180
  # @!attribute [rw] fleet_arn
1448
1181
  # The ARN of the fleet.
1449
1182
  # @return [String]
@@ -1473,15 +1206,6 @@ module Aws::WorkLink
1473
1206
  #
1474
1207
  class UpdateFleetMetadataResponse < Aws::EmptyStructure; end
1475
1208
 
1476
- # @note When making an API call, you may pass UpdateIdentityProviderConfigurationRequest
1477
- # data as a hash:
1478
- #
1479
- # {
1480
- # fleet_arn: "FleetArn", # required
1481
- # identity_provider_type: "SAML", # required, accepts SAML
1482
- # identity_provider_saml_metadata: "SamlMetadata",
1483
- # }
1484
- #
1485
1209
  # @!attribute [rw] fleet_arn
1486
1210
  # The ARN of the fleet.
1487
1211
  # @return [String]
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-worklink/customizations'
52
52
  # @!group service
53
53
  module Aws::WorkLink
54
54
 
55
- GEM_VERSION = '1.34.0'
55
+ GEM_VERSION = '1.35.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-worklink
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.34.0
4
+ version: 1.35.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: 2022-10-25 00:00:00.000000000 Z
11
+ date: 2023-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core