aws-sdk-ssmincidents 1.20.0 → 1.22.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f0916452fe2b57acc4d8657fd01a288ed4077c594f87dcc3b75c0fa930be8f4a
4
- data.tar.gz: b2761b43a13eb81e78843155d3b2210dc57e6adc155fa85f7f92797e4e05e891
3
+ metadata.gz: b0e52bea8432cf3f6be9d1a08e4f4b0c8e686e075eacfd9d24a47299f8486dc5
4
+ data.tar.gz: 823e55019dc29a21fc09ab3ed81e00fddf528723030e576635c07e5e90a2b337
5
5
  SHA512:
6
- metadata.gz: 952b2f51278c74dacb3b651666a695a8bc74f27ad6fa6e0b1ff703a0729ca5e357b61dffe6bca9dfdb2460d6f6228e62f72fb25c90a3b258c5b2e2e52be0a69d
7
- data.tar.gz: 9be9d43f8986f0e27a08c4804d098d1ad06bb7f2e2082dd860c131c36eb04b4f68789a5dbb667c1a3742829a6547d8a8ffc85cb35978bd97a244bcb21a86d2ef
6
+ metadata.gz: f1c1f6a999419a5c91bf1f595487a63a2902176a8912de8af699a5cee719f0fe7ad524e131789f9842641edcb1730fd8171dfd72f0ccf08af6a6436f4347fa6e
7
+ data.tar.gz: c391b15006f11267da2b3c1c488464094375af69b97a5a5f58bba4cdbc04e0ba09739b92630535424bbd311f751b56fbd3d4c79950ec2c22509f9bae32768c69
data/CHANGELOG.md CHANGED
@@ -1,6 +1,18 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.22.0 (2023-03-28)
5
+ ------------------
6
+
7
+ * Feature - Increased maximum length of "TriggerDetails.rawData" to 10K characters and "IncidentSummary" to 8K characters.
8
+
9
+ 1.21.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.20.0 (2022-11-16)
5
17
  ------------------
6
18
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.20.0
1
+ 1.22.0
@@ -533,13 +533,13 @@ module Aws::SSMIncidents
533
533
  end
534
534
 
535
535
  # Creates a custom timeline event on the incident details page of an
536
- # incident record. Timeline events are automatically created by Incident
537
- # Manager, marking key moment during an incident. You can create custom
538
- # timeline events to mark important events that are automatically
539
- # detected by Incident Manager.
536
+ # incident record. Incident Manager automatically creates timeline
537
+ # events that mark key moments during an incident. You can create custom
538
+ # timeline events to mark important events that Incident Manager can
539
+ # detect automatically.
540
540
  #
541
541
  # @option params [String] :client_token
542
- # A token ensuring that the action is called only once with the
542
+ # A token that ensures that a client calls the action only once with the
543
543
  # specified details.
544
544
  #
545
545
  # **A suitable default value is auto-generated.** You should normally
@@ -549,25 +549,24 @@ module Aws::SSMIncidents
549
549
  # A short description of the event.
550
550
  #
551
551
  # @option params [Array<Types::EventReference>] :event_references
552
- # Adds one or more references to the `TimelineEvent`. A reference can be
553
- # an Amazon Web Services resource involved in the incident or in some
554
- # way associated with it. When you specify a reference, you enter the
555
- # Amazon Resource Name (ARN) of the resource. You can also specify a
556
- # related item. As an example, you could specify the ARN of an Amazon
557
- # DynamoDB (DynamoDB) table. The table for this example is the resource.
558
- # You could also specify a Amazon CloudWatch metric for that table. The
559
- # metric is the related item.
552
+ # Adds one or more references to the `TimelineEvent`. A reference is an
553
+ # Amazon Web Services resource involved or associated with the incident.
554
+ # To specify a reference, enter its Amazon Resource Name (ARN). You can
555
+ # also specify a related item associated with a resource. For example,
556
+ # to specify an Amazon DynamoDB (DynamoDB) table as a resource, use the
557
+ # table's ARN. You can also specify an Amazon CloudWatch metric
558
+ # associated with the DynamoDB table as a related item.
560
559
  #
561
560
  # @option params [required, Time,DateTime,Date,Integer,String] :event_time
562
561
  # The time that the event occurred.
563
562
  #
564
563
  # @option params [required, String] :event_type
565
- # The type of the event. You can create timeline events of type `Custom
564
+ # The type of event. You can create timeline events of type `Custom
566
565
  # Event`.
567
566
  #
568
567
  # @option params [required, String] :incident_record_arn
569
- # The Amazon Resource Name (ARN) of the incident record to which the
570
- # event will be added.
568
+ # The Amazon Resource Name (ARN) of the incident record that the action
569
+ # adds the incident to.
571
570
  #
572
571
  # @return [Types::CreateTimelineEventOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
573
572
  #
@@ -706,8 +705,8 @@ module Aws::SSMIncidents
706
705
  # Deletes a timeline event from an incident.
707
706
  #
708
707
  # @option params [required, String] :event_id
709
- # The ID of the event you are updating. You can find this by using
710
- # `ListTimelineEvents`.
708
+ # The ID of the event to update. You can use `ListTimelineEvents` to
709
+ # find an event's ID.
711
710
  #
712
711
  # @option params [required, String] :incident_record_arn
713
712
  # The Amazon Resource Name (ARN) of the incident that includes the
@@ -980,8 +979,8 @@ module Aws::SSMIncidents
980
979
  # want to update.
981
980
  #
982
981
  # @option params [Array<Types::Filter>] :filters
983
- # Filters the list of incident records through which you are searching.
984
- # You can filter on the following keys:
982
+ # Filters the list of incident records you want to search through. You
983
+ # can filter on the following keys:
985
984
  #
986
985
  # * `creationTime`
987
986
  #
@@ -991,7 +990,7 @@ module Aws::SSMIncidents
991
990
  #
992
991
  # * `createdBy`
993
992
  #
994
- # Note the following when deciding how to use Filters:
993
+ # Note the following when when you use Filters:
995
994
  #
996
995
  # * If you don't specify a Filter, the response includes all incident
997
996
  # records.
@@ -1218,7 +1217,7 @@ module Aws::SSMIncidents
1218
1217
  #
1219
1218
  # @option params [Array<Types::Filter>] :filters
1220
1219
  # Filters the timeline events based on the provided conditional values.
1221
- # You can filter timeline events using the following keys:
1220
+ # You can filter timeline events with the following keys:
1222
1221
  #
1223
1222
  # * `eventTime`
1224
1223
  #
@@ -1246,7 +1245,7 @@ module Aws::SSMIncidents
1246
1245
  # The pagination token to continue to the next page of results.
1247
1246
  #
1248
1247
  # @option params [String] :sort_by
1249
- # Sort by the specified key value pair.
1248
+ # Sort timeline events by the specified key value pair.
1250
1249
  #
1251
1250
  # @option params [String] :sort_order
1252
1251
  # Sorts the order of timeline events by the value specified in the
@@ -1377,8 +1376,8 @@ module Aws::SSMIncidents
1377
1376
  #
1378
1377
  # @option params [Array<Types::RelatedItem>] :related_items
1379
1378
  # Add related items to the incident for other responders to use. Related
1380
- # items are AWS resources, external links, or files uploaded to an
1381
- # Amazon S3 bucket.
1379
+ # items are Amazon Web Services resources, external links, or files
1380
+ # uploaded to an Amazon S3 bucket.
1382
1381
  #
1383
1382
  # @option params [required, String] :response_plan_arn
1384
1383
  # The Amazon Resource Name (ARN) of the response plan that pre-defines
@@ -1551,16 +1550,16 @@ module Aws::SSMIncidents
1551
1550
  # The Chatbot chat channel where responders can collaborate.
1552
1551
  #
1553
1552
  # @option params [String] :client_token
1554
- # A token that ensures that the operation is called only once with the
1555
- # specified details.
1553
+ # A token that ensures that a client calls the operation only once with
1554
+ # the specified details.
1556
1555
  #
1557
1556
  # **A suitable default value is auto-generated.** You should normally
1558
1557
  # not need to pass this option.**
1559
1558
  #
1560
1559
  # @option params [Integer] :impact
1561
- # Defines the impact of the incident to customers and applications.
1562
- # Providing an impact overwrites the impact provided by the response
1563
- # plan.
1560
+ # Defines the impact of the incident to customers and applications. If
1561
+ # you provide an impact for an incident, it overwrites the impact
1562
+ # provided by the response plan.
1564
1563
  #
1565
1564
  # **Possible impacts:**
1566
1565
  #
@@ -1579,14 +1578,15 @@ module Aws::SSMIncidents
1579
1578
  # action is needed to avoid impact.
1580
1579
  #
1581
1580
  # @option params [Array<Types::NotificationTargetItem>] :notification_targets
1582
- # The Amazon SNS targets that are notified when updates are made to an
1583
- # incident.
1581
+ # The Amazon SNS targets that Incident Manager notifies when a client
1582
+ # updates an incident.
1584
1583
  #
1585
1584
  # Using multiple SNS topics creates redundancy in the event that a
1586
1585
  # Region is down during the incident.
1587
1586
  #
1588
1587
  # @option params [String] :status
1589
- # The status of the incident. An incident can be `Open` or `Resolved`.
1588
+ # The status of the incident. Possible statuses are `Open` or
1589
+ # `Resolved`.
1590
1590
  #
1591
1591
  # @option params [String] :summary
1592
1592
  # A longer description of what occurred during the incident.
@@ -1630,18 +1630,19 @@ module Aws::SSMIncidents
1630
1630
  # record.
1631
1631
  #
1632
1632
  # @option params [String] :client_token
1633
- # A token ensuring that the operation is called only once with the
1634
- # specified details.
1633
+ # A token that ensures that a client calls the operation only once with
1634
+ # the specified details.
1635
1635
  #
1636
1636
  # **A suitable default value is auto-generated.** You should normally
1637
1637
  # not need to pass this option.**
1638
1638
  #
1639
1639
  # @option params [required, String] :incident_record_arn
1640
- # The Amazon Resource Name (ARN) of the incident record containing the
1641
- # related items you are updating.
1640
+ # The Amazon Resource Name (ARN) of the incident record that contains
1641
+ # the related items that you update.
1642
1642
  #
1643
1643
  # @option params [required, Types::RelatedItemsUpdate] :related_items_update
1644
- # Details about the item you are adding or deleting.
1644
+ # Details about the item that you are add to, or delete from, an
1645
+ # incident.
1645
1646
  #
1646
1647
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1647
1648
  #
@@ -1880,8 +1881,8 @@ module Aws::SSMIncidents
1880
1881
  # Event`.
1881
1882
  #
1882
1883
  # @option params [String] :client_token
1883
- # A token ensuring that the operation is called only once with the
1884
- # specified details.
1884
+ # A token that ensures that a client calls the operation only once with
1885
+ # the specified details.
1885
1886
  #
1886
1887
  # **A suitable default value is auto-generated.** You should normally
1887
1888
  # not need to pass this option.**
@@ -1890,28 +1891,28 @@ module Aws::SSMIncidents
1890
1891
  # A short description of the event.
1891
1892
  #
1892
1893
  # @option params [required, String] :event_id
1893
- # The ID of the event you are updating. You can find this by using
1894
- # `ListTimelineEvents`.
1894
+ # The ID of the event to update. You can use `ListTimelineEvents` to
1895
+ # find an event's ID.
1895
1896
  #
1896
1897
  # @option params [Array<Types::EventReference>] :event_references
1897
- # Updates all existing references in a `TimelineEvent`. A reference can
1898
- # be an Amazon Web Services resource involved in the incident or in some
1899
- # way associated with it. When you specify a reference, you enter the
1900
- # Amazon Resource Name (ARN) of the resource. You can also specify a
1901
- # related item. As an example, you could specify the ARN of an Amazon
1902
- # DynamoDB (DynamoDB) table. The table for this example is the resource.
1903
- # You could also specify a Amazon CloudWatch metric for that table. The
1904
- # metric is the related item.
1898
+ # Updates all existing references in a `TimelineEvent`. A reference is
1899
+ # an Amazon Web Services resource involved or associated with the
1900
+ # incident. To specify a reference, enter its Amazon Resource Name
1901
+ # (ARN). You can also specify a related item associated with that
1902
+ # resource. For example, to specify an Amazon DynamoDB (DynamoDB) table
1903
+ # as a resource, use its ARN. You can also specify an Amazon CloudWatch
1904
+ # metric associated with the DynamoDB table as a related item.
1905
1905
  #
1906
1906
  # This update action overrides all existing references. If you want to
1907
1907
  # keep existing references, you must specify them in the call. If you
1908
- # don't, this action removes them and enters only new references.
1908
+ # don't, this action removes any existing references and enters only
1909
+ # new references.
1909
1910
  #
1910
1911
  # @option params [Time,DateTime,Date,Integer,String] :event_time
1911
1912
  # The time that the event occurred.
1912
1913
  #
1913
1914
  # @option params [String] :event_type
1914
- # The type of the event. You can update events of type `Custom Event`.
1915
+ # The type of event. You can update events of type `Custom Event`.
1915
1916
  #
1916
1917
  # @option params [required, String] :incident_record_arn
1917
1918
  # The Amazon Resource Name (ARN) of the incident that includes the
@@ -1958,7 +1959,7 @@ module Aws::SSMIncidents
1958
1959
  params: params,
1959
1960
  config: config)
1960
1961
  context[:gem_name] = 'aws-sdk-ssmincidents'
1961
- context[:gem_version] = '1.20.0'
1962
+ context[:gem_version] = '1.22.0'
1962
1963
  Seahorse::Client::Request.new(handlers, context)
1963
1964
  end
1964
1965
 
@@ -9,104 +9,46 @@
9
9
 
10
10
  module Aws::SSMIncidents
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 Aws::Endpoints::Matchers.set?(endpoint)
18
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
19
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
20
+ end
21
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
22
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
23
+ end
24
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
21
25
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
26
+ if Aws::Endpoints::Matchers.set?(region)
27
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
28
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
29
+ 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"))
30
+ return Aws::Endpoints::Endpoint.new(url: "https://ssm-incidents-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
31
+ end
32
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
+ end
34
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
36
+ return Aws::Endpoints::Endpoint.new(url: "https://ssm-incidents-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
+ end
38
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
39
+ end
40
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
41
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
42
+ return Aws::Endpoints::Endpoint.new(url: "https://ssm-incidents.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
43
+ end
44
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
45
+ end
46
+ return Aws::Endpoints::Endpoint.new(url: "https://ssm-incidents.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
47
+ end
48
+ end
49
+ raise ArgumentError, "Invalid Configuration: Missing Region"
50
+ raise ArgumentError, 'No endpoint could be resolved'
24
51
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
52
  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
- dCI6eyJ1cmwiOiJodHRwczovL3NzbS1pbmNpZGVudHMtZmlwcy57UmVnaW9u
77
- fS57UGFydGl0aW9uUmVzdWx0I2R1YWxTdGFja0Ruc1N1ZmZpeH0iLCJwcm9w
78
- ZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19
79
- LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBhbmQgRHVhbFN0YWNr
80
- IGFyZSBlbmFibGVkLCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3Vw
81
- cG9ydCBvbmUgb3IgYm90aCIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRp
82
- b25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJV
83
- c2VGSVBTIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29u
84
- ZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUs
85
- eyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1
86
- bHQifSwic3VwcG9ydHNGSVBTIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVz
87
- IjpbeyJjb25kaXRpb25zIjpbXSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3si
88
- Y29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vc3Nt
89
- LWluY2lkZW50cy1maXBzLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZG5z
90
- U3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUi
91
- OiJlbmRwb2ludCJ9XX1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJ
92
- UFMgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3Vw
93
- cG9ydCBGSVBTIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOlt7
94
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
95
- dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
96
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
97
- Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
98
- In0sInN1cHBvcnRzRHVhbFN0YWNrIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1
99
- bGVzIjpbeyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0
100
- cHM6Ly9zc20taW5jaWRlbnRzLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQj
101
- ZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJz
102
- Ijp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpbXSwi
103
- ZXJyb3IiOiJEdWFsU3RhY2sgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRp
104
- b24gZG9lcyBub3Qgc3VwcG9ydCBEdWFsU3RhY2siLCJ0eXBlIjoiZXJyb3Ii
105
- fV19LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBz
106
- Oi8vc3NtLWluY2lkZW50cy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ru
107
- c1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBl
108
- IjoiZW5kcG9pbnQifV19XX0=
109
-
110
- JSON
111
53
  end
112
54
  end