aws-sdk-kendra 1.58.0 → 1.60.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/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-kendra/client.rb +51 -35
- data/lib/aws-sdk-kendra/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-kendra/endpoint_provider.rb +111 -0
- data/lib/aws-sdk-kendra/endpoints.rb +855 -0
- data/lib/aws-sdk-kendra/plugins/endpoints.rb +188 -0
- data/lib/aws-sdk-kendra/types.rb +78 -88
- data/lib/aws-sdk-kendra.rb +5 -1
- metadata +8 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3cb6fced929ade6c75b153ea0f2d66aeed11764de7aacca712963ce5d1afdfc0
|
4
|
+
data.tar.gz: dbd9fc5d01cec659d2770aa92b85daba05da653ae2bc5e37eab6d7c823841640
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9ce4ad11df7354ae2b9039737d2732c6394c9af997c8df441b3467d7e30e7fd36a98836ee4eb262aa63713cb8b0073b1236bf3db17153960deec39d4b071df96
|
7
|
+
data.tar.gz: a44602c9a823fa770aea455a2c67666caeea914e50026c85bd020fe20dd540a59fc49d8bdeeb4ea8274292ffc0a28105beef8fcbffe0b926434ac205d971b76e
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.60.0 (2022-10-25)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.59.0 (2022-09-27)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - My AWS Service (placeholder) - Amazon Kendra now provides a data source connector for DropBox. For more information, see https://docs.aws.amazon.com/kendra/latest/dg/data-source-dropbox.html
|
13
|
+
|
4
14
|
1.58.0 (2022-09-13)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.60.0
|
@@ -30,7 +30,7 @@ require 'aws-sdk-core/plugins/http_checksum.rb'
|
|
30
30
|
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
31
31
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
32
32
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
33
|
-
require 'aws-sdk-core/plugins/
|
33
|
+
require 'aws-sdk-core/plugins/sign.rb'
|
34
34
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
35
35
|
|
36
36
|
Aws::Plugins::GlobalConfiguration.add_identifier(:kendra)
|
@@ -79,8 +79,9 @@ module Aws::Kendra
|
|
79
79
|
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
80
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
81
81
|
add_plugin(Aws::Plugins::RecursionDetection)
|
82
|
-
add_plugin(Aws::Plugins::
|
82
|
+
add_plugin(Aws::Plugins::Sign)
|
83
83
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
84
|
+
add_plugin(Aws::Kendra::Plugins::Endpoints)
|
84
85
|
|
85
86
|
# @overload initialize(options)
|
86
87
|
# @param [Hash] options
|
@@ -297,6 +298,19 @@ module Aws::Kendra
|
|
297
298
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
298
299
|
# requests are made, and retries are disabled.
|
299
300
|
#
|
301
|
+
# @option options [Aws::TokenProvider] :token_provider
|
302
|
+
# A Bearer Token Provider. This can be an instance of any one of the
|
303
|
+
# following classes:
|
304
|
+
#
|
305
|
+
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
306
|
+
# tokens.
|
307
|
+
#
|
308
|
+
# * `Aws::SSOTokenProvider` - Used for loading tokens from AWS SSO using an
|
309
|
+
# access token generated from `aws login`.
|
310
|
+
#
|
311
|
+
# When `:token_provider` is not configured directly, the `Aws::TokenProviderChain`
|
312
|
+
# will be used to search for tokens configured for your profile in shared configuration files.
|
313
|
+
#
|
300
314
|
# @option options [Boolean] :use_dualstack_endpoint
|
301
315
|
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
302
316
|
# will be used if available.
|
@@ -310,6 +324,9 @@ module Aws::Kendra
|
|
310
324
|
# When `true`, request parameters are validated before
|
311
325
|
# sending the request.
|
312
326
|
#
|
327
|
+
# @option options [Aws::Kendra::EndpointProvider] :endpoint_provider
|
328
|
+
# The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::Kendra::EndpointParameters`
|
329
|
+
#
|
313
330
|
# @option options [URI::HTTP,String] :http_proxy A proxy to send
|
314
331
|
# requests through. Formatted like 'http://proxy.com:123'.
|
315
332
|
#
|
@@ -361,7 +378,7 @@ module Aws::Kendra
|
|
361
378
|
|
362
379
|
# @!group API Operations
|
363
380
|
|
364
|
-
# Grants users or groups in your
|
381
|
+
# Grants users or groups in your IAM Identity Center identity source
|
365
382
|
# access to your Amazon Kendra experience. You can create an Amazon
|
366
383
|
# Kendra experience such as a search application. For more information
|
367
384
|
# on creating a search application experience, see [Building a search
|
@@ -378,7 +395,7 @@ module Aws::Kendra
|
|
378
395
|
# The identifier of the index for your Amazon Kendra experience.
|
379
396
|
#
|
380
397
|
# @option params [required, Array<Types::EntityConfiguration>] :entity_list
|
381
|
-
# Lists users or groups in your
|
398
|
+
# Lists users or groups in your IAM Identity Center identity source.
|
382
399
|
#
|
383
400
|
# @return [Types::AssociateEntitiesToExperienceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
384
401
|
#
|
@@ -412,8 +429,8 @@ module Aws::Kendra
|
|
412
429
|
req.send_request(options)
|
413
430
|
end
|
414
431
|
|
415
|
-
# Defines the specific permissions of users or groups in your
|
416
|
-
#
|
432
|
+
# Defines the specific permissions of users or groups in your IAM
|
433
|
+
# Identity Center identity source with access to your Amazon Kendra
|
417
434
|
# experience. You can create an Amazon Kendra experience such as a
|
418
435
|
# search application. For more information on creating a search
|
419
436
|
# application experience, see [Building a search experience with no
|
@@ -431,10 +448,9 @@ module Aws::Kendra
|
|
431
448
|
#
|
432
449
|
# @option params [required, Array<Types::EntityPersonaConfiguration>] :personas
|
433
450
|
# The personas that define the specific permissions of users or groups
|
434
|
-
# in your
|
435
|
-
#
|
436
|
-
#
|
437
|
-
# page][1].
|
451
|
+
# in your IAM Identity Center identity source. The available personas or
|
452
|
+
# access roles are `Owner` and `Viewer`. For more information on these
|
453
|
+
# personas, see [Providing access to your search page][1].
|
438
454
|
#
|
439
455
|
#
|
440
456
|
#
|
@@ -1793,8 +1809,8 @@ module Aws::Kendra
|
|
1793
1809
|
#
|
1794
1810
|
# @option params [String] :role_arn
|
1795
1811
|
# The Amazon Resource Name (ARN) of a role with permission to access
|
1796
|
-
# `Query` API, `QuerySuggestions` API, `SubmitFeedback` API, and
|
1797
|
-
#
|
1812
|
+
# `Query` API, `QuerySuggestions` API, `SubmitFeedback` API, and IAM
|
1813
|
+
# Identity Center that stores your user and group information. For more
|
1798
1814
|
# information, see [IAM roles for Amazon Kendra][1].
|
1799
1815
|
#
|
1800
1816
|
#
|
@@ -2050,9 +2066,9 @@ module Aws::Kendra
|
|
2050
2066
|
# accessible to the user will be searchable and displayable.
|
2051
2067
|
#
|
2052
2068
|
# @option params [Types::UserGroupResolutionConfiguration] :user_group_resolution_configuration
|
2053
|
-
# Enables fetching access levels of groups and users from an
|
2054
|
-
#
|
2055
|
-
# [UserGroupResolutionConfiguration][1].
|
2069
|
+
# Enables fetching access levels of groups and users from an IAM
|
2070
|
+
# Identity Center (successor to Single Sign-On) identity source. To
|
2071
|
+
# configure this, see [UserGroupResolutionConfiguration][1].
|
2056
2072
|
#
|
2057
2073
|
#
|
2058
2074
|
#
|
@@ -3618,11 +3634,11 @@ module Aws::Kendra
|
|
3618
3634
|
req.send_request(options)
|
3619
3635
|
end
|
3620
3636
|
|
3621
|
-
# Prevents users or groups in your
|
3622
|
-
#
|
3623
|
-
#
|
3624
|
-
#
|
3625
|
-
#
|
3637
|
+
# Prevents users or groups in your IAM Identity Center identity source
|
3638
|
+
# from accessing your Amazon Kendra experience. You can create an Amazon
|
3639
|
+
# Kendra experience such as a search application. For more information
|
3640
|
+
# on creating a search application experience, see [Building a search
|
3641
|
+
# experience with no code][1].
|
3626
3642
|
#
|
3627
3643
|
#
|
3628
3644
|
#
|
@@ -3635,7 +3651,7 @@ module Aws::Kendra
|
|
3635
3651
|
# The identifier of the index for your Amazon Kendra experience.
|
3636
3652
|
#
|
3637
3653
|
# @option params [required, Array<Types::EntityConfiguration>] :entity_list
|
3638
|
-
# Lists users or groups in your
|
3654
|
+
# Lists users or groups in your IAM Identity Center identity source.
|
3639
3655
|
#
|
3640
3656
|
# @return [Types::DisassociateEntitiesFromExperienceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3641
3657
|
#
|
@@ -3669,8 +3685,8 @@ module Aws::Kendra
|
|
3669
3685
|
req.send_request(options)
|
3670
3686
|
end
|
3671
3687
|
|
3672
|
-
# Removes the specific permissions of users or groups in your
|
3673
|
-
#
|
3688
|
+
# Removes the specific permissions of users or groups in your IAM
|
3689
|
+
# Identity Center identity source with access to your Amazon Kendra
|
3674
3690
|
# experience. You can create an Amazon Kendra experience such as a
|
3675
3691
|
# search application. For more information on creating a search
|
3676
3692
|
# application experience, see [Building a search experience with no
|
@@ -3687,7 +3703,7 @@ module Aws::Kendra
|
|
3687
3703
|
# The identifier of the index for your Amazon Kendra experience.
|
3688
3704
|
#
|
3689
3705
|
# @option params [required, Array<String>] :entity_ids
|
3690
|
-
# The identifiers of users or groups in your
|
3706
|
+
# The identifiers of users or groups in your IAM Identity Center
|
3691
3707
|
# identity source. For example, user IDs could be user emails.
|
3692
3708
|
#
|
3693
3709
|
# @return [Types::DisassociatePersonasFromEntitiesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -4084,11 +4100,11 @@ module Aws::Kendra
|
|
4084
4100
|
req.send_request(options)
|
4085
4101
|
end
|
4086
4102
|
|
4087
|
-
# Lists users or groups in your
|
4088
|
-
#
|
4089
|
-
#
|
4090
|
-
#
|
4091
|
-
#
|
4103
|
+
# Lists users or groups in your IAM Identity Center identity source that
|
4104
|
+
# are granted access to your Amazon Kendra experience. You can create an
|
4105
|
+
# Amazon Kendra experience such as a search application. For more
|
4106
|
+
# information on creating a search application experience, see [Building
|
4107
|
+
# a search experience with no code][1].
|
4092
4108
|
#
|
4093
4109
|
#
|
4094
4110
|
#
|
@@ -6005,8 +6021,8 @@ module Aws::Kendra
|
|
6005
6021
|
#
|
6006
6022
|
# @option params [String] :role_arn
|
6007
6023
|
# The Amazon Resource Name (ARN) of a role with permission to access
|
6008
|
-
# `Query` API, `QuerySuggestions` API, `SubmitFeedback` API, and
|
6009
|
-
#
|
6024
|
+
# `Query` API, `QuerySuggestions` API, `SubmitFeedback` API, and IAM
|
6025
|
+
# Identity Center that stores your user and group information. For more
|
6010
6026
|
# information, see [IAM roles for Amazon Kendra][1].
|
6011
6027
|
#
|
6012
6028
|
#
|
@@ -6088,9 +6104,9 @@ module Aws::Kendra
|
|
6088
6104
|
# The user context policy.
|
6089
6105
|
#
|
6090
6106
|
# @option params [Types::UserGroupResolutionConfiguration] :user_group_resolution_configuration
|
6091
|
-
# Enables fetching access levels of groups and users from an
|
6092
|
-
#
|
6093
|
-
# [UserGroupResolutionConfiguration][1].
|
6107
|
+
# Enables fetching access levels of groups and users from an IAM
|
6108
|
+
# Identity Center (successor to Single Sign-On) identity source. To
|
6109
|
+
# configure this, see [UserGroupResolutionConfiguration][1].
|
6094
6110
|
#
|
6095
6111
|
#
|
6096
6112
|
#
|
@@ -6387,7 +6403,7 @@ module Aws::Kendra
|
|
6387
6403
|
params: params,
|
6388
6404
|
config: config)
|
6389
6405
|
context[:gem_name] = 'aws-sdk-kendra'
|
6390
|
-
context[:gem_version] = '1.
|
6406
|
+
context[:gem_version] = '1.60.0'
|
6391
6407
|
Seahorse::Client::Request.new(handlers, context)
|
6392
6408
|
end
|
6393
6409
|
|
@@ -0,0 +1,66 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# WARNING ABOUT GENERATED CODE
|
4
|
+
#
|
5
|
+
# This file is generated. See the contributing guide for more information:
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
|
+
#
|
8
|
+
# WARNING ABOUT GENERATED CODE
|
9
|
+
|
10
|
+
module Aws::Kendra
|
11
|
+
# Endpoint parameters used to influence endpoints per request.
|
12
|
+
#
|
13
|
+
# @!attribute region
|
14
|
+
# The AWS region used to dispatch the request.
|
15
|
+
#
|
16
|
+
# @return [String]
|
17
|
+
#
|
18
|
+
# @!attribute use_dual_stack
|
19
|
+
# When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.
|
20
|
+
#
|
21
|
+
# @return [Boolean]
|
22
|
+
#
|
23
|
+
# @!attribute use_fips
|
24
|
+
# When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.
|
25
|
+
#
|
26
|
+
# @return [Boolean]
|
27
|
+
#
|
28
|
+
# @!attribute endpoint
|
29
|
+
# Override the endpoint used to send this request
|
30
|
+
#
|
31
|
+
# @return [String]
|
32
|
+
#
|
33
|
+
EndpointParameters = Struct.new(
|
34
|
+
:region,
|
35
|
+
:use_dual_stack,
|
36
|
+
:use_fips,
|
37
|
+
:endpoint,
|
38
|
+
) do
|
39
|
+
include Aws::Structure
|
40
|
+
|
41
|
+
# @api private
|
42
|
+
class << self
|
43
|
+
PARAM_MAP = {
|
44
|
+
'Region' => :region,
|
45
|
+
'UseDualStack' => :use_dual_stack,
|
46
|
+
'UseFIPS' => :use_fips,
|
47
|
+
'Endpoint' => :endpoint,
|
48
|
+
}.freeze
|
49
|
+
end
|
50
|
+
|
51
|
+
def initialize(options = {})
|
52
|
+
self[:region] = options[:region]
|
53
|
+
self[:use_dual_stack] = options[:use_dual_stack]
|
54
|
+
self[:use_dual_stack] = false if self[:use_dual_stack].nil?
|
55
|
+
if self[:use_dual_stack].nil?
|
56
|
+
raise ArgumentError, "Missing required EndpointParameter: :use_dual_stack"
|
57
|
+
end
|
58
|
+
self[:use_fips] = options[:use_fips]
|
59
|
+
self[:use_fips] = false if self[:use_fips].nil?
|
60
|
+
if self[:use_fips].nil?
|
61
|
+
raise ArgumentError, "Missing required EndpointParameter: :use_fips"
|
62
|
+
end
|
63
|
+
self[:endpoint] = options[:endpoint]
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
@@ -0,0 +1,111 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# WARNING ABOUT GENERATED CODE
|
4
|
+
#
|
5
|
+
# This file is generated. See the contributing guide for more information:
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
|
+
#
|
8
|
+
# WARNING ABOUT GENERATED CODE
|
9
|
+
|
10
|
+
module Aws::Kendra
|
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
|
+
)
|
21
|
+
end
|
22
|
+
@provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
|
23
|
+
end
|
24
|
+
|
25
|
+
def resolve_endpoint(parameters)
|
26
|
+
@provider.resolve_endpoint(parameters)
|
27
|
+
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
|
+
dCI6eyJ1cmwiOiJodHRwczovL2tlbmRyYS1maXBzLntSZWdpb259LntQYXJ0
|
77
|
+
aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMi
|
78
|
+
Ont9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25k
|
79
|
+
aXRpb25zIjpbXSwiZXJyb3IiOiJGSVBTIGFuZCBEdWFsU3RhY2sgYXJlIGVu
|
80
|
+
YWJsZWQsIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IG9u
|
81
|
+
ZSBvciBib3RoIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOlt7
|
82
|
+
ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUZJUFMi
|
83
|
+
fSx0cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25z
|
84
|
+
IjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoi
|
85
|
+
Z2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJz
|
86
|
+
dXBwb3J0c0ZJUFMiXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNv
|
87
|
+
bmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRp
|
88
|
+
b25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9rZW5kcmEtZmlw
|
89
|
+
cy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9w
|
90
|
+
ZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19
|
91
|
+
XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJGSVBTIGlzIGVuYWJsZWQg
|
92
|
+
YnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQgRklQUyIsInR5
|
93
|
+
cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5F
|
94
|
+
cXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1d
|
95
|
+
LCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6
|
96
|
+
ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIs
|
97
|
+
ImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0R1
|
98
|
+
YWxTdGFjayJdfV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0
|
99
|
+
aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8va2VuZHJhLntS
|
100
|
+
ZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIs
|
101
|
+
InByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2lu
|
102
|
+
dCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJEdWFsU3RhY2sgaXMg
|
103
|
+
ZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBE
|
104
|
+
dWFsU3RhY2siLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W10s
|
105
|
+
ImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8va2VuZHJhLntSZWdpb259LntQ
|
106
|
+
YXJ0aXRpb25SZXN1bHQjZG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJo
|
107
|
+
ZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1dfQ==
|
108
|
+
|
109
|
+
JSON
|
110
|
+
end
|
111
|
+
end
|