aws-sdk-eventbridge 1.40.0 → 1.42.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 +13 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-eventbridge/client.rb +26 -16
- data/lib/aws-sdk-eventbridge/endpoint_parameters.rb +3 -0
- data/lib/aws-sdk-eventbridge/endpoint_provider.rb +60 -142
- data/lib/aws-sdk-eventbridge/types.rb +74 -1610
- data/lib/aws-sdk-eventbridge.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 45b0975c8e25a947ab7e9bf75ed24a1b109feae359e582499e55321d0b83292c
|
4
|
+
data.tar.gz: 5efce2887ff6d9f0f28c8c6cd562e96001110489d165d7c513c8c79cde71482a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 758711c1643775c3618b20893c94b1037fe2b6625e0ebd4604efb99d9f68979c5b1a868e4d8f1c192c21d9f6328190311c217c22c698a5cb6d28c3bf115e151d
|
7
|
+
data.tar.gz: 95eb7d36668e709367a5e91cdb5f8d812eec572fa436e31b7a44c710b4fb635da6f10f5cbd45753e6a5989c8979c785414c25f2a58c7f47da75f980123fdd333
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,18 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.42.0 (2023-01-26)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Minor comments for Redshift Serverless workgroup target support.
|
8
|
+
|
9
|
+
1.41.0 (2023-01-18)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
* Issue - Replace runtime endpoint resolution approach with generated ruby code.
|
15
|
+
|
4
16
|
1.40.0 (2022-10-25)
|
5
17
|
------------------
|
6
18
|
|
@@ -210,4 +222,4 @@ Unreleased Changes
|
|
210
222
|
1.0.0 (2019-07-11)
|
211
223
|
------------------
|
212
224
|
|
213
|
-
* Feature - Initial release of `aws-sdk-eventbridge`.
|
225
|
+
* Feature - Initial release of `aws-sdk-eventbridge`.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.42.0
|
@@ -561,6 +561,10 @@ module Aws::EventBridge
|
|
561
561
|
# @option params [required, String] :authorization_type
|
562
562
|
# The type of authorization to use for the connection.
|
563
563
|
#
|
564
|
+
# <note markdown="1"> OAUTH tokens are refreshed when a 401 or 407 response is returned.
|
565
|
+
#
|
566
|
+
# </note>
|
567
|
+
#
|
564
568
|
# @option params [required, Types::CreateConnectionAuthRequestParameters] :auth_parameters
|
565
569
|
# A `CreateConnectionAuthRequestParameters` object that contains the
|
566
570
|
# authorization parameters to use to authorize with the endpoint.
|
@@ -680,7 +684,10 @@ module Aws::EventBridge
|
|
680
684
|
# Region..
|
681
685
|
#
|
682
686
|
# @option params [Types::ReplicationConfig] :replication_config
|
683
|
-
# Enable or disable event replication.
|
687
|
+
# Enable or disable event replication. The default state is `ENABLED`
|
688
|
+
# which means you must supply a `RoleArn`. If you don't have a
|
689
|
+
# `RoleArn` or you don't want event replication enabled, set the state
|
690
|
+
# to `DISABLED`.
|
684
691
|
#
|
685
692
|
# @option params [required, Array<Types::EndpointEventBus>] :event_buses
|
686
693
|
# Define the event buses used.
|
@@ -755,12 +762,13 @@ module Aws::EventBridge
|
|
755
762
|
# @option params [required, String] :name
|
756
763
|
# The name of the new event bus.
|
757
764
|
#
|
758
|
-
#
|
759
|
-
#
|
760
|
-
#
|
765
|
+
# Custom event bus names can't contain the `/` character, but you can
|
766
|
+
# use the `/` character in partner event bus names. In addition, for
|
767
|
+
# partner event buses, the name must exactly match the name of the
|
768
|
+
# partner event source that this event bus is matched to.
|
761
769
|
#
|
762
|
-
#
|
763
|
-
#
|
770
|
+
# You can't use the name `default` for a custom event bus, as this name
|
771
|
+
# is already used for your account's default event bus.
|
764
772
|
#
|
765
773
|
# @option params [String] :event_source_name
|
766
774
|
# If you are creating a partner event bus, this specifies the partner
|
@@ -1888,7 +1896,7 @@ module Aws::EventBridge
|
|
1888
1896
|
#
|
1889
1897
|
# @option params [String] :next_token
|
1890
1898
|
# If `nextToken` is returned, there are more results available. The
|
1891
|
-
# value of nextToken is a unique pagination token for each page. Make
|
1899
|
+
# value of `nextToken` is a unique pagination token for each page. Make
|
1892
1900
|
# the call again using the returned token to retrieve the next page.
|
1893
1901
|
# Keep all other arguments unchanged. Each pagination token expires
|
1894
1902
|
# after 24 hours. Using an expired pagination token will return an HTTP
|
@@ -2454,7 +2462,7 @@ module Aws::EventBridge
|
|
2454
2462
|
#
|
2455
2463
|
# @option params [String] :endpoint_id
|
2456
2464
|
# The URL subdomain of the endpoint. For example, if the URL for
|
2457
|
-
# Endpoint is abcde.veo.endpoints.event.amazonaws.com, then the
|
2465
|
+
# Endpoint is https://abcde.veo.endpoints.event.amazonaws.com, then the
|
2458
2466
|
# EndpointId is `abcde.veo`.
|
2459
2467
|
#
|
2460
2468
|
# When using Java, you must include `auth-crt` on the class path.
|
@@ -2730,12 +2738,12 @@ module Aws::EventBridge
|
|
2730
2738
|
# "rate(5 minutes)".
|
2731
2739
|
#
|
2732
2740
|
# @option params [String] :event_pattern
|
2733
|
-
# The event pattern. For more information, see [EventBridge event
|
2741
|
+
# The event pattern. For more information, see [Amazon EventBridge event
|
2734
2742
|
# patterns][1] in the *Amazon EventBridge User Guide*.
|
2735
2743
|
#
|
2736
2744
|
#
|
2737
2745
|
#
|
2738
|
-
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html
|
2746
|
+
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html
|
2739
2747
|
#
|
2740
2748
|
# @option params [String] :state
|
2741
2749
|
# Indicates whether the rule is enabled or disabled.
|
@@ -2849,6 +2857,8 @@ module Aws::EventBridge
|
|
2849
2857
|
#
|
2850
2858
|
# * Redshift cluster
|
2851
2859
|
#
|
2860
|
+
# * Redshift Serverless workgroup
|
2861
|
+
#
|
2852
2862
|
# * SageMaker Pipeline
|
2853
2863
|
#
|
2854
2864
|
# * SNS topic
|
@@ -2878,10 +2888,10 @@ module Aws::EventBridge
|
|
2878
2888
|
# Amazon EventBridge needs the appropriate permissions. For Lambda and
|
2879
2889
|
# Amazon SNS resources, EventBridge relies on resource-based policies.
|
2880
2890
|
# For EC2 instances, Kinesis Data Streams, Step Functions state machines
|
2881
|
-
# and API Gateway
|
2882
|
-
#
|
2883
|
-
#
|
2884
|
-
#
|
2891
|
+
# and API Gateway APIs, EventBridge relies on IAM roles that you specify
|
2892
|
+
# in the `RoleARN` argument in `PutTargets`. For more information, see
|
2893
|
+
# [Authentication and Access Control][6] in the *Amazon EventBridge User
|
2894
|
+
# Guide*.
|
2885
2895
|
#
|
2886
2896
|
# If another Amazon Web Services account is in the same region and has
|
2887
2897
|
# granted you permission (using `PutPermission`), you can send events to
|
@@ -3649,7 +3659,7 @@ module Aws::EventBridge
|
|
3649
3659
|
#
|
3650
3660
|
# @option params [Types::RoutingConfig] :routing_config
|
3651
3661
|
# Configure the routing policy, including the health check and secondary
|
3652
|
-
# Region
|
3662
|
+
# Region.
|
3653
3663
|
#
|
3654
3664
|
# @option params [Types::ReplicationConfig] :replication_config
|
3655
3665
|
# Whether event replication was enabled or disabled by this request.
|
@@ -3734,7 +3744,7 @@ module Aws::EventBridge
|
|
3734
3744
|
params: params,
|
3735
3745
|
config: config)
|
3736
3746
|
context[:gem_name] = 'aws-sdk-eventbridge'
|
3737
|
-
context[:gem_version] = '1.
|
3747
|
+
context[:gem_version] = '1.42.0'
|
3738
3748
|
Seahorse::Client::Request.new(handlers, context)
|
3739
3749
|
end
|
3740
3750
|
|
@@ -57,6 +57,9 @@ module Aws::EventBridge
|
|
57
57
|
|
58
58
|
def initialize(options = {})
|
59
59
|
self[:region] = options[:region]
|
60
|
+
if self[:region].nil?
|
61
|
+
raise ArgumentError, "Missing required EndpointParameter: :region"
|
62
|
+
end
|
60
63
|
self[:use_dual_stack] = options[:use_dual_stack]
|
61
64
|
self[:use_dual_stack] = false if self[:use_dual_stack].nil?
|
62
65
|
if self[:use_dual_stack].nil?
|
@@ -9,150 +9,68 @@
|
|
9
9
|
|
10
10
|
module Aws::EventBridge
|
11
11
|
class EndpointProvider
|
12
|
-
def
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
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
|
+
endpoint_id = parameters.endpoint_id
|
18
|
+
if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
|
19
|
+
if Aws::Endpoints::Matchers.set?(endpoint_id)
|
20
|
+
if Aws::Endpoints::Matchers.valid_host_label?(endpoint_id, true)
|
21
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, false)
|
22
|
+
if Aws::Endpoints::Matchers.set?(endpoint)
|
23
|
+
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4a", "signingName"=>"events", "signingRegionSet"=>["*"]}]})
|
24
|
+
end
|
25
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
26
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
27
|
+
return Aws::Endpoints::Endpoint.new(url: "https://#{endpoint_id}.endpoint.events.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4a", "signingName"=>"events", "signingRegionSet"=>["*"]}]})
|
28
|
+
end
|
29
|
+
raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
|
30
|
+
end
|
31
|
+
return Aws::Endpoints::Endpoint.new(url: "https://#{endpoint_id}.endpoint.events.#{partition_result['dnsSuffix']}", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4a", "signingName"=>"events", "signingRegionSet"=>["*"]}]})
|
32
|
+
end
|
33
|
+
raise ArgumentError, "Invalid Configuration: FIPS is not supported with EventBridge multi-region endpoints."
|
34
|
+
end
|
35
|
+
raise ArgumentError, "EndpointId must be a valid host label."
|
36
|
+
end
|
37
|
+
if Aws::Endpoints::Matchers.set?(endpoint)
|
38
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
39
|
+
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
40
|
+
end
|
41
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
42
|
+
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
43
|
+
end
|
44
|
+
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
45
|
+
end
|
46
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
47
|
+
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"))
|
48
|
+
return Aws::Endpoints::Endpoint.new(url: "https://events-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
49
|
+
end
|
50
|
+
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
51
|
+
end
|
52
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
53
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
|
54
|
+
if Aws::Endpoints::Matchers.string_equals?(region, "us-gov-east-1")
|
55
|
+
return Aws::Endpoints::Endpoint.new(url: "https://events.us-gov-east-1.amazonaws.com", headers: {}, properties: {})
|
56
|
+
end
|
57
|
+
if Aws::Endpoints::Matchers.string_equals?(region, "us-gov-west-1")
|
58
|
+
return Aws::Endpoints::Endpoint.new(url: "https://events.us-gov-west-1.amazonaws.com", headers: {}, properties: {})
|
59
|
+
end
|
60
|
+
return Aws::Endpoints::Endpoint.new(url: "https://events-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
61
|
+
end
|
62
|
+
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
63
|
+
end
|
64
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
65
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
66
|
+
return Aws::Endpoints::Endpoint.new(url: "https://events.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
67
|
+
end
|
68
|
+
raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
|
69
|
+
end
|
70
|
+
return Aws::Endpoints::Endpoint.new(url: "https://events.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
21
71
|
end
|
22
|
-
|
23
|
-
end
|
72
|
+
raise ArgumentError, 'No endpoint could be resolved'
|
24
73
|
|
25
|
-
def resolve_endpoint(parameters)
|
26
|
-
@provider.resolve_endpoint(parameters)
|
27
74
|
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
|
-
ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn0sIkVuZHBvaW50SWQi
|
50
|
-
OnsicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVudGF0aW9uIjoiT3BlcmF0aW9u
|
51
|
-
IHBhcmFtZXRlciBmb3IgRW5kcG9pbnRJZCIsInR5cGUiOiJTdHJpbmcifX0s
|
52
|
-
InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImF3cy5wYXJ0aXRpb24i
|
53
|
-
LCJhcmd2IjpbeyJyZWYiOiJSZWdpb24ifV0sImFzc2lnbiI6IlBhcnRpdGlv
|
54
|
-
blJlc3VsdCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9u
|
55
|
-
cyI6W3siZm4iOiJpc1NldCIsImFyZ3YiOlt7InJlZiI6IkVuZHBvaW50SWQi
|
56
|
-
fV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3si
|
57
|
-
Zm4iOiJpc1ZhbGlkSG9zdExhYmVsIiwiYXJndiI6W3sicmVmIjoiRW5kcG9p
|
58
|
-
bnRJZCJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
|
59
|
-
dGlvbnMiOltdLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25z
|
60
|
-
IjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VG
|
61
|
-
SVBTIn0sZmFsc2VdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
|
62
|
-
dGlvbnMiOltdLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25z
|
63
|
-
IjpbeyJmbiI6ImlzU2V0IiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV19
|
64
|
-
XSwiZW5kcG9pbnQiOnsidXJsIjp7InJlZiI6IkVuZHBvaW50In0sInByb3Bl
|
65
|
-
cnRpZXMiOnsiYXV0aFNjaGVtZXMiOlt7Im5hbWUiOiJzaWd2NGEiLCJzaWdu
|
66
|
-
aW5nUmVnaW9uU2V0IjpbIioiXSwic2lnbmluZ05hbWUiOiJldmVudHMifV19
|
67
|
-
LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9LHsiY29uZGl0aW9u
|
68
|
-
cyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNl
|
69
|
-
RHVhbFN0YWNrIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3si
|
70
|
-
Y29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3Ry
|
71
|
-
dWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25S
|
72
|
-
ZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5cGUiOiJ0cmVl
|
73
|
-
IiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwi
|
74
|
-
OiJodHRwczovL3tFbmRwb2ludElkfS5lbmRwb2ludC5ldmVudHMue1BhcnRp
|
75
|
-
dGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9IiwicHJvcGVydGllcyI6
|
76
|
-
eyJhdXRoU2NoZW1lcyI6W3sibmFtZSI6InNpZ3Y0YSIsInNpZ25pbmdSZWdp
|
77
|
-
b25TZXQiOlsiKiJdLCJzaWduaW5nTmFtZSI6ImV2ZW50cyJ9XX0sImhlYWRl
|
78
|
-
cnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfSx7ImNvbmRpdGlvbnMiOltd
|
79
|
-
LCJlcnJvciI6IkR1YWxTdGFjayBpcyBlbmFibGVkIGJ1dCB0aGlzIHBhcnRp
|
80
|
-
dGlvbiBkb2VzIG5vdCBzdXBwb3J0IER1YWxTdGFjayIsInR5cGUiOiJlcnJv
|
81
|
-
ciJ9XX0seyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0
|
82
|
-
cHM6Ly97RW5kcG9pbnRJZH0uZW5kcG9pbnQuZXZlbnRzLntQYXJ0aXRpb25S
|
83
|
-
ZXN1bHQjZG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnsiYXV0aFNjaGVtZXMi
|
84
|
-
Olt7Im5hbWUiOiJzaWd2NGEiLCJzaWduaW5nUmVnaW9uU2V0IjpbIioiXSwi
|
85
|
-
c2lnbmluZ05hbWUiOiJldmVudHMifV19LCJoZWFkZXJzIjp7fX0sInR5cGUi
|
86
|
-
OiJlbmRwb2ludCJ9XX1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6Iklu
|
87
|
-
dmFsaWQgQ29uZmlndXJhdGlvbjogRklQUyBpcyBub3Qgc3VwcG9ydGVkIHdp
|
88
|
-
dGggRXZlbnRCcmlkZ2UgbXVsdGktcmVnaW9uIGVuZHBvaW50cy4iLCJ0eXBl
|
89
|
-
IjoiZXJyb3IifV19XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJFbmRw
|
90
|
-
b2ludElkIG11c3QgYmUgYSB2YWxpZCBob3N0IGxhYmVsLiIsInR5cGUiOiJl
|
91
|
-
cnJvciJ9XX0seyJjb25kaXRpb25zIjpbeyJmbiI6ImlzU2V0IiwiYXJndiI6
|
92
|
-
W3sicmVmIjoiRW5kcG9pbnQifV19LHsiZm4iOiJwYXJzZVVSTCIsImFyZ3Yi
|
93
|
-
Olt7InJlZiI6IkVuZHBvaW50In1dLCJhc3NpZ24iOiJ1cmwifV0sInR5cGUi
|
94
|
-
OiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVh
|
95
|
-
bkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUZJUFMifSx0cnVlXX1dLCJl
|
96
|
-
cnJvciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRklQUyBhbmQgY3VzdG9t
|
97
|
-
IGVuZHBvaW50IGFyZSBub3Qgc3VwcG9ydGVkIiwidHlwZSI6ImVycm9yIn0s
|
98
|
-
eyJjb25kaXRpb25zIjpbXSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29u
|
99
|
-
ZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVm
|
100
|
-
IjoiVXNlRHVhbFN0YWNrIn0sdHJ1ZV19XSwiZXJyb3IiOiJJbnZhbGlkIENv
|
101
|
-
bmZpZ3VyYXRpb246IER1YWxzdGFjayBhbmQgY3VzdG9tIGVuZHBvaW50IGFy
|
102
|
-
ZSBub3Qgc3VwcG9ydGVkIiwidHlwZSI6ImVycm9yIn0seyJjb25kaXRpb25z
|
103
|
-
IjpbXSwiZW5kcG9pbnQiOnsidXJsIjp7InJlZiI6IkVuZHBvaW50In0sInBy
|
104
|
-
b3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9
|
105
|
-
XX1dfSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFy
|
106
|
-
Z3YiOlt7InJlZiI6IlVzZUZJUFMifSx0cnVlXX0seyJmbiI6ImJvb2xlYW5F
|
107
|
-
cXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1d
|
108
|
-
LCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6
|
109
|
-
ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIs
|
110
|
-
ImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0ZJ
|
111
|
-
UFMiXX1dfSx7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
|
112
|
-
Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
|
113
|
-
In0sInN1cHBvcnRzRHVhbFN0YWNrIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1
|
114
|
-
bGVzIjpbeyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0
|
115
|
-
cHM6Ly9ldmVudHMtZmlwcy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2R1
|
116
|
-
YWxTdGFja0Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6
|
117
|
-
e319LCJ0eXBlIjoiZW5kcG9pbnQifV19LHsiY29uZGl0aW9ucyI6W10sImVy
|
118
|
-
cm9yIjoiRklQUyBhbmQgRHVhbFN0YWNrIGFyZSBlbmFibGVkLCBidXQgdGhp
|
119
|
-
cyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBvbmUgb3IgYm90aCIsInR5
|
120
|
-
cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5F
|
121
|
-
cXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VGSVBTIn0sdHJ1ZV19XSwidHlw
|
122
|
-
ZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJib29s
|
123
|
-
ZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2
|
124
|
-
IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNGSVBTIl19
|
125
|
-
XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbXSwi
|
126
|
-
dHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJz
|
127
|
-
dHJpbmdFcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJSZWdpb24ifSwidXMtZ292
|
128
|
-
LXdlc3QtMSJdfV0sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vZXZlbnRz
|
129
|
-
LnVzLWdvdi13ZXN0LTEuYW1hem9uYXdzLmNvbSIsInByb3BlcnRpZXMiOnt9
|
130
|
-
LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9LHsiY29uZGl0aW9u
|
131
|
-
cyI6W3siZm4iOiJzdHJpbmdFcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJSZWdp
|
132
|
-
b24ifSwidXMtZ292LWVhc3QtMSJdfV0sImVuZHBvaW50Ijp7InVybCI6Imh0
|
133
|
-
dHBzOi8vZXZlbnRzLnVzLWdvdi1lYXN0LTEuYW1hem9uYXdzLmNvbSIsInBy
|
134
|
-
b3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9
|
135
|
-
LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8v
|
136
|
-
ZXZlbnRzLWZpcHMue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkbnNTdWZm
|
137
|
-
aXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVu
|
138
|
-
ZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBp
|
139
|
-
cyBlbmFibGVkIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0
|
140
|
-
IEZJUFMiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W3siZm4i
|
141
|
-
OiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRHVhbFN0YWNr
|
142
|
-
In0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9u
|
143
|
-
cyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJmbiI6
|
144
|
-
ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwi
|
145
|
-
c3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMi
|
146
|
-
Olt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczov
|
147
|
-
L2V2ZW50cy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2R1YWxTdGFja0Ru
|
148
|
-
c1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBl
|
149
|
-
IjoiZW5kcG9pbnQifV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRHVh
|
150
|
-
bFN0YWNrIGlzIGVuYWJsZWQgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90
|
151
|
-
IHN1cHBvcnQgRHVhbFN0YWNrIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRp
|
152
|
-
dGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL2V2ZW50cy57
|
153
|
-
UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0
|
154
|
-
aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19XX0=
|
155
|
-
|
156
|
-
JSON
|
157
75
|
end
|
158
76
|
end
|