aws-sdk-firehose 1.48.0 → 1.50.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: 1f38d060f6d888a9e8856672b76ba6461f600c8dc2fbd0f3e04d9a8a967da133
4
- data.tar.gz: 7ad56a20adc999293e4309ff06bab9c41413cef53eb76323e403b2a9121e34ed
3
+ metadata.gz: 02bfa116b9289be1fe4d5de8ea398e082aef7d2265cf7e01cc3a6f429a0f1707
4
+ data.tar.gz: eaf803fcf52197eb3143cd73c97d37ce547063e8911a9b49f74afd534c8ad552
5
5
  SHA512:
6
- metadata.gz: c47e6e73ade3d24f7a5872dfc42fe6e5f526d5662da67db311b80dd367042d33edc489287e729c94a9483d0cbce1e5096fe5dd90e1ab2290be94c640e866ef07
7
- data.tar.gz: c216fbed52834924e05a97c9f5c148d0d21a2a8cf98590145ce06acdcfbb8ddcd75228f2587ed64399e59b7354040bc553631e4bf6f4fa9ce528fcc3c7a21816
6
+ metadata.gz: abc8ad1bb635f124742ab46ebe85dfd8747461be235d2911ec50602f043ada181da3e598180651af4a9c470ba425e29c67d6594b997b4be42daf4ca29cf4f13e
7
+ data.tar.gz: e2c69be5f59523a11e438f5129ad9e39dce2d8d1f58e6706b34179f558f4fbcb8c7b5cf5f9f95cd0cff547c9ed8d9ca42ae8fc73c2a975abc622eab26652ee93
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.50.0 (2022-11-29)
5
+ ------------------
6
+
7
+ * Feature - Allow support for the Serverless offering for Amazon OpenSearch Service as a Kinesis Data Firehose delivery destination.
8
+
9
+ 1.49.0 (2022-10-25)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.48.0 (2022-02-24)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.48.0
1
+ 1.50.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/signature_v4.rb'
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(:firehose)
@@ -79,8 +79,9 @@ module Aws::Firehose
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::SignatureV4)
82
+ add_plugin(Aws::Plugins::Sign)
83
83
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
84
+ add_plugin(Aws::Firehose::Plugins::Endpoints)
84
85
 
85
86
  # @overload initialize(options)
86
87
  # @param [Hash] options
@@ -297,6 +298,19 @@ module Aws::Firehose
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::Firehose
310
324
  # When `true`, request parameters are validated before
311
325
  # sending the request.
312
326
  #
327
+ # @option options [Aws::Firehose::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::Firehose::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
  #
@@ -363,7 +380,8 @@ module Aws::Firehose
363
380
 
364
381
  # Creates a Kinesis Data Firehose delivery stream.
365
382
  #
366
- # By default, you can create up to 50 delivery streams per AWS Region.
383
+ # By default, you can create up to 50 delivery streams per Amazon Web
384
+ # Services Region.
367
385
  #
368
386
  # This is an asynchronous operation that immediately returns. The
369
387
  # initial status of the delivery stream is `CREATING`. After the
@@ -442,10 +460,10 @@ module Aws::Firehose
442
460
  # [1]: https://docs.aws.amazon.com/firehose/latest/dev/controlling-access.html#using-iam-s3
443
461
  #
444
462
  # @option params [required, String] :delivery_stream_name
445
- # The name of the delivery stream. This name must be unique per AWS
446
- # account in the same AWS Region. If the delivery streams are in
447
- # different accounts or different Regions, you can have multiple
448
- # delivery streams with the same name.
463
+ # The name of the delivery stream. This name must be unique per Amazon
464
+ # Web Services account in the same Amazon Web Services Region. If the
465
+ # delivery streams are in different accounts or different Regions, you
466
+ # can have multiple delivery streams with the same name.
449
467
  #
450
468
  # @option params [String] :delivery_stream_type
451
469
  # The delivery stream type. This parameter can be one of the following
@@ -482,6 +500,8 @@ module Aws::Firehose
482
500
  # The destination in Amazon ES. You can specify only one destination.
483
501
  #
484
502
  # @option params [Types::AmazonopensearchserviceDestinationConfiguration] :amazonopensearchservice_destination_configuration
503
+ # The destination in Amazon OpenSearch Service. You can specify only one
504
+ # destination.
485
505
  #
486
506
  # @option params [Types::SplunkDestinationConfiguration] :splunk_destination_configuration
487
507
  # The destination in Splunk. You can specify only one destination.
@@ -492,11 +512,12 @@ module Aws::Firehose
492
512
  #
493
513
  # @option params [Array<Types::Tag>] :tags
494
514
  # A set of tags to assign to the delivery stream. A tag is a key-value
495
- # pair that you can define and assign to AWS resources. Tags are
496
- # metadata. For example, you can add friendly names and descriptions or
497
- # other types of information that can help you distinguish the delivery
498
- # stream. For more information about tags, see [Using Cost Allocation
499
- # Tags][1] in the AWS Billing and Cost Management User Guide.
515
+ # pair that you can define and assign to Amazon Web Services resources.
516
+ # Tags are metadata. For example, you can add friendly names and
517
+ # descriptions or other types of information that can help you
518
+ # distinguish the delivery stream. For more information about tags, see
519
+ # [Using Cost Allocation Tags][1] in the Amazon Web Services Billing and
520
+ # Cost Management User Guide.
500
521
  #
501
522
  # You can specify up to 50 tags when creating a delivery stream.
502
523
  #
@@ -504,6 +525,10 @@ module Aws::Firehose
504
525
  #
505
526
  # [1]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html
506
527
  #
528
+ # @option params [Types::AmazonOpenSearchServerlessDestinationConfiguration] :amazon_open_search_serverless_destination_configuration
529
+ # The destination in the Serverless offering for Amazon OpenSearch
530
+ # Service. You can specify only one destination.
531
+ #
507
532
  # @return [Types::CreateDeliveryStreamOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
508
533
  #
509
534
  # * {Types::CreateDeliveryStreamOutput#delivery_stream_arn #delivery_stream_arn} => String
@@ -982,6 +1007,65 @@ module Aws::Firehose
982
1007
  # value: "TagValue",
983
1008
  # },
984
1009
  # ],
1010
+ # amazon_open_search_serverless_destination_configuration: {
1011
+ # role_arn: "RoleARN", # required
1012
+ # collection_endpoint: "AmazonOpenSearchServerlessCollectionEndpoint",
1013
+ # index_name: "AmazonOpenSearchServerlessIndexName", # required
1014
+ # buffering_hints: {
1015
+ # interval_in_seconds: 1,
1016
+ # size_in_m_bs: 1,
1017
+ # },
1018
+ # retry_options: {
1019
+ # duration_in_seconds: 1,
1020
+ # },
1021
+ # s3_backup_mode: "FailedDocumentsOnly", # accepts FailedDocumentsOnly, AllDocuments
1022
+ # s3_configuration: { # required
1023
+ # role_arn: "RoleARN", # required
1024
+ # bucket_arn: "BucketARN", # required
1025
+ # prefix: "Prefix",
1026
+ # error_output_prefix: "ErrorOutputPrefix",
1027
+ # buffering_hints: {
1028
+ # size_in_m_bs: 1,
1029
+ # interval_in_seconds: 1,
1030
+ # },
1031
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
1032
+ # encryption_configuration: {
1033
+ # no_encryption_config: "NoEncryption", # accepts NoEncryption
1034
+ # kms_encryption_config: {
1035
+ # awskms_key_arn: "AWSKMSKeyARN", # required
1036
+ # },
1037
+ # },
1038
+ # cloud_watch_logging_options: {
1039
+ # enabled: false,
1040
+ # log_group_name: "LogGroupName",
1041
+ # log_stream_name: "LogStreamName",
1042
+ # },
1043
+ # },
1044
+ # processing_configuration: {
1045
+ # enabled: false,
1046
+ # processors: [
1047
+ # {
1048
+ # type: "RecordDeAggregation", # required, accepts RecordDeAggregation, Lambda, MetadataExtraction, AppendDelimiterToRecord
1049
+ # parameters: [
1050
+ # {
1051
+ # parameter_name: "LambdaArn", # required, accepts LambdaArn, NumberOfRetries, MetadataExtractionQuery, JsonParsingEngine, RoleArn, BufferSizeInMBs, BufferIntervalInSeconds, SubRecordType, Delimiter
1052
+ # parameter_value: "ProcessorParameterValue", # required
1053
+ # },
1054
+ # ],
1055
+ # },
1056
+ # ],
1057
+ # },
1058
+ # cloud_watch_logging_options: {
1059
+ # enabled: false,
1060
+ # log_group_name: "LogGroupName",
1061
+ # log_stream_name: "LogStreamName",
1062
+ # },
1063
+ # vpc_configuration: {
1064
+ # subnet_ids: ["NonEmptyStringWithoutWhitespace"], # required
1065
+ # role_arn: "RoleARN", # required
1066
+ # security_group_ids: ["NonEmptyStringWithoutWhitespace"], # required
1067
+ # },
1068
+ # },
985
1069
  # })
986
1070
  #
987
1071
  # @example Response structure
@@ -1022,8 +1106,8 @@ module Aws::Firehose
1022
1106
  # customer error, such as when the CMK or the grant are in an invalid
1023
1107
  # state. If you force deletion, you can then use the [RevokeGrant][1]
1024
1108
  # operation to revoke the grant you gave to Kinesis Data Firehose. If a
1025
- # failure to retire the grant happens due to an AWS KMS issue, Kinesis
1026
- # Data Firehose keeps retrying the delete operation.
1109
+ # failure to retire the grant happens due to an Amazon Web Services KMS
1110
+ # issue, Kinesis Data Firehose keeps retrying the delete operation.
1027
1111
  #
1028
1112
  # The default value is false.
1029
1113
  #
@@ -1355,6 +1439,40 @@ module Aws::Firehose
1355
1439
  # resp.delivery_stream_description.destinations[0].http_endpoint_destination_description.s3_destination_description.cloud_watch_logging_options.enabled #=> Boolean
1356
1440
  # resp.delivery_stream_description.destinations[0].http_endpoint_destination_description.s3_destination_description.cloud_watch_logging_options.log_group_name #=> String
1357
1441
  # resp.delivery_stream_description.destinations[0].http_endpoint_destination_description.s3_destination_description.cloud_watch_logging_options.log_stream_name #=> String
1442
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.role_arn #=> String
1443
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.collection_endpoint #=> String
1444
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.index_name #=> String
1445
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.buffering_hints.interval_in_seconds #=> Integer
1446
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.buffering_hints.size_in_m_bs #=> Integer
1447
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.retry_options.duration_in_seconds #=> Integer
1448
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.s3_backup_mode #=> String, one of "FailedDocumentsOnly", "AllDocuments"
1449
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.s3_destination_description.role_arn #=> String
1450
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.s3_destination_description.bucket_arn #=> String
1451
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.s3_destination_description.prefix #=> String
1452
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.s3_destination_description.error_output_prefix #=> String
1453
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.s3_destination_description.buffering_hints.size_in_m_bs #=> Integer
1454
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.s3_destination_description.buffering_hints.interval_in_seconds #=> Integer
1455
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.s3_destination_description.compression_format #=> String, one of "UNCOMPRESSED", "GZIP", "ZIP", "Snappy", "HADOOP_SNAPPY"
1456
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.s3_destination_description.encryption_configuration.no_encryption_config #=> String, one of "NoEncryption"
1457
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.s3_destination_description.encryption_configuration.kms_encryption_config.awskms_key_arn #=> String
1458
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.s3_destination_description.cloud_watch_logging_options.enabled #=> Boolean
1459
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.s3_destination_description.cloud_watch_logging_options.log_group_name #=> String
1460
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.s3_destination_description.cloud_watch_logging_options.log_stream_name #=> String
1461
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.processing_configuration.enabled #=> Boolean
1462
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.processing_configuration.processors #=> Array
1463
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.processing_configuration.processors[0].type #=> String, one of "RecordDeAggregation", "Lambda", "MetadataExtraction", "AppendDelimiterToRecord"
1464
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.processing_configuration.processors[0].parameters #=> Array
1465
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.processing_configuration.processors[0].parameters[0].parameter_name #=> String, one of "LambdaArn", "NumberOfRetries", "MetadataExtractionQuery", "JsonParsingEngine", "RoleArn", "BufferSizeInMBs", "BufferIntervalInSeconds", "SubRecordType", "Delimiter"
1466
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.processing_configuration.processors[0].parameters[0].parameter_value #=> String
1467
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.cloud_watch_logging_options.enabled #=> Boolean
1468
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.cloud_watch_logging_options.log_group_name #=> String
1469
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.cloud_watch_logging_options.log_stream_name #=> String
1470
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.vpc_configuration_description.subnet_ids #=> Array
1471
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.vpc_configuration_description.subnet_ids[0] #=> String
1472
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.vpc_configuration_description.role_arn #=> String
1473
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.vpc_configuration_description.security_group_ids #=> Array
1474
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.vpc_configuration_description.security_group_ids[0] #=> String
1475
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.vpc_configuration_description.vpc_id #=> String
1358
1476
  # resp.delivery_stream_description.has_more_destinations #=> Boolean
1359
1477
  #
1360
1478
  # @see http://docs.aws.amazon.com/goto/WebAPI/firehose-2015-08-04/DescribeDeliveryStream AWS API Documentation
@@ -1794,13 +1912,14 @@ module Aws::Firehose
1794
1912
  end
1795
1913
 
1796
1914
  # Adds or updates tags for the specified delivery stream. A tag is a
1797
- # key-value pair that you can define and assign to AWS resources. If you
1798
- # specify a tag that already exists, the tag value is replaced with the
1799
- # value that you specify in the request. Tags are metadata. For example,
1800
- # you can add friendly names and descriptions or other types of
1801
- # information that can help you distinguish the delivery stream. For
1802
- # more information about tags, see [Using Cost Allocation Tags][1] in
1803
- # the *AWS Billing and Cost Management User Guide*.
1915
+ # key-value pair that you can define and assign to Amazon Web Services
1916
+ # resources. If you specify a tag that already exists, the tag value is
1917
+ # replaced with the value that you specify in the request. Tags are
1918
+ # metadata. For example, you can add friendly names and descriptions or
1919
+ # other types of information that can help you distinguish the delivery
1920
+ # stream. For more information about tags, see [Using Cost Allocation
1921
+ # Tags][1] in the *Amazon Web Services Billing and Cost Management User
1922
+ # Guide*.
1804
1923
  #
1805
1924
  # Each delivery stream can have up to 50 tags.
1806
1925
  #
@@ -1938,6 +2057,7 @@ module Aws::Firehose
1938
2057
  # Describes an update for a destination in Amazon ES.
1939
2058
  #
1940
2059
  # @option params [Types::AmazonopensearchserviceDestinationUpdate] :amazonopensearchservice_destination_update
2060
+ # Describes an update for a destination in Amazon OpenSearch Service.
1941
2061
  #
1942
2062
  # @option params [Types::SplunkDestinationUpdate] :splunk_destination_update
1943
2063
  # Describes an update for a destination in Splunk.
@@ -1945,6 +2065,10 @@ module Aws::Firehose
1945
2065
  # @option params [Types::HttpEndpointDestinationUpdate] :http_endpoint_destination_update
1946
2066
  # Describes an update to the specified HTTP endpoint destination.
1947
2067
  #
2068
+ # @option params [Types::AmazonOpenSearchServerlessDestinationUpdate] :amazon_open_search_serverless_destination_update
2069
+ # Describes an update for a destination in the Serverless offering for
2070
+ # Amazon OpenSearch Service.
2071
+ #
1948
2072
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1949
2073
  #
1950
2074
  # @example Request syntax with placeholder values
@@ -2396,6 +2520,59 @@ module Aws::Firehose
2396
2520
  # },
2397
2521
  # },
2398
2522
  # },
2523
+ # amazon_open_search_serverless_destination_update: {
2524
+ # role_arn: "RoleARN",
2525
+ # collection_endpoint: "AmazonOpenSearchServerlessCollectionEndpoint",
2526
+ # index_name: "AmazonOpenSearchServerlessIndexName",
2527
+ # buffering_hints: {
2528
+ # interval_in_seconds: 1,
2529
+ # size_in_m_bs: 1,
2530
+ # },
2531
+ # retry_options: {
2532
+ # duration_in_seconds: 1,
2533
+ # },
2534
+ # s3_update: {
2535
+ # role_arn: "RoleARN",
2536
+ # bucket_arn: "BucketARN",
2537
+ # prefix: "Prefix",
2538
+ # error_output_prefix: "ErrorOutputPrefix",
2539
+ # buffering_hints: {
2540
+ # size_in_m_bs: 1,
2541
+ # interval_in_seconds: 1,
2542
+ # },
2543
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
2544
+ # encryption_configuration: {
2545
+ # no_encryption_config: "NoEncryption", # accepts NoEncryption
2546
+ # kms_encryption_config: {
2547
+ # awskms_key_arn: "AWSKMSKeyARN", # required
2548
+ # },
2549
+ # },
2550
+ # cloud_watch_logging_options: {
2551
+ # enabled: false,
2552
+ # log_group_name: "LogGroupName",
2553
+ # log_stream_name: "LogStreamName",
2554
+ # },
2555
+ # },
2556
+ # processing_configuration: {
2557
+ # enabled: false,
2558
+ # processors: [
2559
+ # {
2560
+ # type: "RecordDeAggregation", # required, accepts RecordDeAggregation, Lambda, MetadataExtraction, AppendDelimiterToRecord
2561
+ # parameters: [
2562
+ # {
2563
+ # parameter_name: "LambdaArn", # required, accepts LambdaArn, NumberOfRetries, MetadataExtractionQuery, JsonParsingEngine, RoleArn, BufferSizeInMBs, BufferIntervalInSeconds, SubRecordType, Delimiter
2564
+ # parameter_value: "ProcessorParameterValue", # required
2565
+ # },
2566
+ # ],
2567
+ # },
2568
+ # ],
2569
+ # },
2570
+ # cloud_watch_logging_options: {
2571
+ # enabled: false,
2572
+ # log_group_name: "LogGroupName",
2573
+ # log_stream_name: "LogStreamName",
2574
+ # },
2575
+ # },
2399
2576
  # })
2400
2577
  #
2401
2578
  # @see http://docs.aws.amazon.com/goto/WebAPI/firehose-2015-08-04/UpdateDestination AWS API Documentation
@@ -2420,7 +2597,7 @@ module Aws::Firehose
2420
2597
  params: params,
2421
2598
  config: config)
2422
2599
  context[:gem_name] = 'aws-sdk-firehose'
2423
- context[:gem_version] = '1.48.0'
2600
+ context[:gem_version] = '1.50.0'
2424
2601
  Seahorse::Client::Request.new(handlers, context)
2425
2602
  end
2426
2603
 
@@ -14,6 +14,17 @@ module Aws::Firehose
14
14
  include Seahorse::Model
15
15
 
16
16
  AWSKMSKeyARN = Shapes::StringShape.new(name: 'AWSKMSKeyARN')
17
+ AmazonOpenSearchServerlessBufferingHints = Shapes::StructureShape.new(name: 'AmazonOpenSearchServerlessBufferingHints')
18
+ AmazonOpenSearchServerlessBufferingIntervalInSeconds = Shapes::IntegerShape.new(name: 'AmazonOpenSearchServerlessBufferingIntervalInSeconds')
19
+ AmazonOpenSearchServerlessBufferingSizeInMBs = Shapes::IntegerShape.new(name: 'AmazonOpenSearchServerlessBufferingSizeInMBs')
20
+ AmazonOpenSearchServerlessCollectionEndpoint = Shapes::StringShape.new(name: 'AmazonOpenSearchServerlessCollectionEndpoint')
21
+ AmazonOpenSearchServerlessDestinationConfiguration = Shapes::StructureShape.new(name: 'AmazonOpenSearchServerlessDestinationConfiguration')
22
+ AmazonOpenSearchServerlessDestinationDescription = Shapes::StructureShape.new(name: 'AmazonOpenSearchServerlessDestinationDescription')
23
+ AmazonOpenSearchServerlessDestinationUpdate = Shapes::StructureShape.new(name: 'AmazonOpenSearchServerlessDestinationUpdate')
24
+ AmazonOpenSearchServerlessIndexName = Shapes::StringShape.new(name: 'AmazonOpenSearchServerlessIndexName')
25
+ AmazonOpenSearchServerlessRetryDurationInSeconds = Shapes::IntegerShape.new(name: 'AmazonOpenSearchServerlessRetryDurationInSeconds')
26
+ AmazonOpenSearchServerlessRetryOptions = Shapes::StructureShape.new(name: 'AmazonOpenSearchServerlessRetryOptions')
27
+ AmazonOpenSearchServerlessS3BackupMode = Shapes::StringShape.new(name: 'AmazonOpenSearchServerlessS3BackupMode')
17
28
  AmazonopensearchserviceBufferingHints = Shapes::StructureShape.new(name: 'AmazonopensearchserviceBufferingHints')
18
29
  AmazonopensearchserviceBufferingIntervalInSeconds = Shapes::IntegerShape.new(name: 'AmazonopensearchserviceBufferingIntervalInSeconds')
19
30
  AmazonopensearchserviceBufferingSizeInMBs = Shapes::IntegerShape.new(name: 'AmazonopensearchserviceBufferingSizeInMBs')
@@ -218,6 +229,47 @@ module Aws::Firehose
218
229
  VpcConfiguration = Shapes::StructureShape.new(name: 'VpcConfiguration')
219
230
  VpcConfigurationDescription = Shapes::StructureShape.new(name: 'VpcConfigurationDescription')
220
231
 
232
+ AmazonOpenSearchServerlessBufferingHints.add_member(:interval_in_seconds, Shapes::ShapeRef.new(shape: AmazonOpenSearchServerlessBufferingIntervalInSeconds, location_name: "IntervalInSeconds"))
233
+ AmazonOpenSearchServerlessBufferingHints.add_member(:size_in_m_bs, Shapes::ShapeRef.new(shape: AmazonOpenSearchServerlessBufferingSizeInMBs, location_name: "SizeInMBs"))
234
+ AmazonOpenSearchServerlessBufferingHints.struct_class = Types::AmazonOpenSearchServerlessBufferingHints
235
+
236
+ AmazonOpenSearchServerlessDestinationConfiguration.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleARN, required: true, location_name: "RoleARN"))
237
+ AmazonOpenSearchServerlessDestinationConfiguration.add_member(:collection_endpoint, Shapes::ShapeRef.new(shape: AmazonOpenSearchServerlessCollectionEndpoint, location_name: "CollectionEndpoint"))
238
+ AmazonOpenSearchServerlessDestinationConfiguration.add_member(:index_name, Shapes::ShapeRef.new(shape: AmazonOpenSearchServerlessIndexName, required: true, location_name: "IndexName"))
239
+ AmazonOpenSearchServerlessDestinationConfiguration.add_member(:buffering_hints, Shapes::ShapeRef.new(shape: AmazonOpenSearchServerlessBufferingHints, location_name: "BufferingHints"))
240
+ AmazonOpenSearchServerlessDestinationConfiguration.add_member(:retry_options, Shapes::ShapeRef.new(shape: AmazonOpenSearchServerlessRetryOptions, location_name: "RetryOptions"))
241
+ AmazonOpenSearchServerlessDestinationConfiguration.add_member(:s3_backup_mode, Shapes::ShapeRef.new(shape: AmazonOpenSearchServerlessS3BackupMode, location_name: "S3BackupMode"))
242
+ AmazonOpenSearchServerlessDestinationConfiguration.add_member(:s3_configuration, Shapes::ShapeRef.new(shape: S3DestinationConfiguration, required: true, location_name: "S3Configuration"))
243
+ AmazonOpenSearchServerlessDestinationConfiguration.add_member(:processing_configuration, Shapes::ShapeRef.new(shape: ProcessingConfiguration, location_name: "ProcessingConfiguration"))
244
+ AmazonOpenSearchServerlessDestinationConfiguration.add_member(:cloud_watch_logging_options, Shapes::ShapeRef.new(shape: CloudWatchLoggingOptions, location_name: "CloudWatchLoggingOptions"))
245
+ AmazonOpenSearchServerlessDestinationConfiguration.add_member(:vpc_configuration, Shapes::ShapeRef.new(shape: VpcConfiguration, location_name: "VpcConfiguration"))
246
+ AmazonOpenSearchServerlessDestinationConfiguration.struct_class = Types::AmazonOpenSearchServerlessDestinationConfiguration
247
+
248
+ AmazonOpenSearchServerlessDestinationDescription.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleARN, location_name: "RoleARN"))
249
+ AmazonOpenSearchServerlessDestinationDescription.add_member(:collection_endpoint, Shapes::ShapeRef.new(shape: AmazonOpenSearchServerlessCollectionEndpoint, location_name: "CollectionEndpoint"))
250
+ AmazonOpenSearchServerlessDestinationDescription.add_member(:index_name, Shapes::ShapeRef.new(shape: AmazonOpenSearchServerlessIndexName, location_name: "IndexName"))
251
+ AmazonOpenSearchServerlessDestinationDescription.add_member(:buffering_hints, Shapes::ShapeRef.new(shape: AmazonOpenSearchServerlessBufferingHints, location_name: "BufferingHints"))
252
+ AmazonOpenSearchServerlessDestinationDescription.add_member(:retry_options, Shapes::ShapeRef.new(shape: AmazonOpenSearchServerlessRetryOptions, location_name: "RetryOptions"))
253
+ AmazonOpenSearchServerlessDestinationDescription.add_member(:s3_backup_mode, Shapes::ShapeRef.new(shape: AmazonOpenSearchServerlessS3BackupMode, location_name: "S3BackupMode"))
254
+ AmazonOpenSearchServerlessDestinationDescription.add_member(:s3_destination_description, Shapes::ShapeRef.new(shape: S3DestinationDescription, location_name: "S3DestinationDescription"))
255
+ AmazonOpenSearchServerlessDestinationDescription.add_member(:processing_configuration, Shapes::ShapeRef.new(shape: ProcessingConfiguration, location_name: "ProcessingConfiguration"))
256
+ AmazonOpenSearchServerlessDestinationDescription.add_member(:cloud_watch_logging_options, Shapes::ShapeRef.new(shape: CloudWatchLoggingOptions, location_name: "CloudWatchLoggingOptions"))
257
+ AmazonOpenSearchServerlessDestinationDescription.add_member(:vpc_configuration_description, Shapes::ShapeRef.new(shape: VpcConfigurationDescription, location_name: "VpcConfigurationDescription"))
258
+ AmazonOpenSearchServerlessDestinationDescription.struct_class = Types::AmazonOpenSearchServerlessDestinationDescription
259
+
260
+ AmazonOpenSearchServerlessDestinationUpdate.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleARN, location_name: "RoleARN"))
261
+ AmazonOpenSearchServerlessDestinationUpdate.add_member(:collection_endpoint, Shapes::ShapeRef.new(shape: AmazonOpenSearchServerlessCollectionEndpoint, location_name: "CollectionEndpoint"))
262
+ AmazonOpenSearchServerlessDestinationUpdate.add_member(:index_name, Shapes::ShapeRef.new(shape: AmazonOpenSearchServerlessIndexName, location_name: "IndexName"))
263
+ AmazonOpenSearchServerlessDestinationUpdate.add_member(:buffering_hints, Shapes::ShapeRef.new(shape: AmazonOpenSearchServerlessBufferingHints, location_name: "BufferingHints"))
264
+ AmazonOpenSearchServerlessDestinationUpdate.add_member(:retry_options, Shapes::ShapeRef.new(shape: AmazonOpenSearchServerlessRetryOptions, location_name: "RetryOptions"))
265
+ AmazonOpenSearchServerlessDestinationUpdate.add_member(:s3_update, Shapes::ShapeRef.new(shape: S3DestinationUpdate, location_name: "S3Update"))
266
+ AmazonOpenSearchServerlessDestinationUpdate.add_member(:processing_configuration, Shapes::ShapeRef.new(shape: ProcessingConfiguration, location_name: "ProcessingConfiguration"))
267
+ AmazonOpenSearchServerlessDestinationUpdate.add_member(:cloud_watch_logging_options, Shapes::ShapeRef.new(shape: CloudWatchLoggingOptions, location_name: "CloudWatchLoggingOptions"))
268
+ AmazonOpenSearchServerlessDestinationUpdate.struct_class = Types::AmazonOpenSearchServerlessDestinationUpdate
269
+
270
+ AmazonOpenSearchServerlessRetryOptions.add_member(:duration_in_seconds, Shapes::ShapeRef.new(shape: AmazonOpenSearchServerlessRetryDurationInSeconds, location_name: "DurationInSeconds"))
271
+ AmazonOpenSearchServerlessRetryOptions.struct_class = Types::AmazonOpenSearchServerlessRetryOptions
272
+
221
273
  AmazonopensearchserviceBufferingHints.add_member(:interval_in_seconds, Shapes::ShapeRef.new(shape: AmazonopensearchserviceBufferingIntervalInSeconds, location_name: "IntervalInSeconds"))
222
274
  AmazonopensearchserviceBufferingHints.add_member(:size_in_m_bs, Shapes::ShapeRef.new(shape: AmazonopensearchserviceBufferingSizeInMBs, location_name: "SizeInMBs"))
223
275
  AmazonopensearchserviceBufferingHints.struct_class = Types::AmazonopensearchserviceBufferingHints
@@ -300,6 +352,7 @@ module Aws::Firehose
300
352
  CreateDeliveryStreamInput.add_member(:splunk_destination_configuration, Shapes::ShapeRef.new(shape: SplunkDestinationConfiguration, location_name: "SplunkDestinationConfiguration"))
301
353
  CreateDeliveryStreamInput.add_member(:http_endpoint_destination_configuration, Shapes::ShapeRef.new(shape: HttpEndpointDestinationConfiguration, location_name: "HttpEndpointDestinationConfiguration"))
302
354
  CreateDeliveryStreamInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagDeliveryStreamInputTagList, location_name: "Tags"))
355
+ CreateDeliveryStreamInput.add_member(:amazon_open_search_serverless_destination_configuration, Shapes::ShapeRef.new(shape: AmazonOpenSearchServerlessDestinationConfiguration, location_name: "AmazonOpenSearchServerlessDestinationConfiguration"))
303
356
  CreateDeliveryStreamInput.struct_class = Types::CreateDeliveryStreamInput
304
357
 
305
358
  CreateDeliveryStreamOutput.add_member(:delivery_stream_arn, Shapes::ShapeRef.new(shape: DeliveryStreamARN, location_name: "DeliveryStreamARN"))
@@ -363,6 +416,7 @@ module Aws::Firehose
363
416
  DestinationDescription.add_member(:amazonopensearchservice_destination_description, Shapes::ShapeRef.new(shape: AmazonopensearchserviceDestinationDescription, location_name: "AmazonopensearchserviceDestinationDescription"))
364
417
  DestinationDescription.add_member(:splunk_destination_description, Shapes::ShapeRef.new(shape: SplunkDestinationDescription, location_name: "SplunkDestinationDescription"))
365
418
  DestinationDescription.add_member(:http_endpoint_destination_description, Shapes::ShapeRef.new(shape: HttpEndpointDestinationDescription, location_name: "HttpEndpointDestinationDescription"))
419
+ DestinationDescription.add_member(:amazon_open_search_serverless_destination_description, Shapes::ShapeRef.new(shape: AmazonOpenSearchServerlessDestinationDescription, location_name: "AmazonOpenSearchServerlessDestinationDescription"))
366
420
  DestinationDescription.struct_class = Types::DestinationDescription
367
421
 
368
422
  DestinationDescriptionList.member = Shapes::ShapeRef.new(shape: DestinationDescription)
@@ -837,6 +891,7 @@ module Aws::Firehose
837
891
  UpdateDestinationInput.add_member(:amazonopensearchservice_destination_update, Shapes::ShapeRef.new(shape: AmazonopensearchserviceDestinationUpdate, location_name: "AmazonopensearchserviceDestinationUpdate"))
838
892
  UpdateDestinationInput.add_member(:splunk_destination_update, Shapes::ShapeRef.new(shape: SplunkDestinationUpdate, location_name: "SplunkDestinationUpdate"))
839
893
  UpdateDestinationInput.add_member(:http_endpoint_destination_update, Shapes::ShapeRef.new(shape: HttpEndpointDestinationUpdate, location_name: "HttpEndpointDestinationUpdate"))
894
+ UpdateDestinationInput.add_member(:amazon_open_search_serverless_destination_update, Shapes::ShapeRef.new(shape: AmazonOpenSearchServerlessDestinationUpdate, location_name: "AmazonOpenSearchServerlessDestinationUpdate"))
840
895
  UpdateDestinationInput.struct_class = Types::UpdateDestinationInput
841
896
 
842
897
  UpdateDestinationOutput.struct_class = Types::UpdateDestinationOutput
@@ -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::Firehose
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::Firehose
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
+ dCI6eyJ1cmwiOiJodHRwczovL2ZpcmVob3NlLWZpcHMue1JlZ2lvbn0ue1Bh
77
+ cnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9IiwicHJvcGVydGll
78
+ cyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfSx7ImNv
79
+ bmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgYW5kIER1YWxTdGFjayBhcmUg
80
+ ZW5hYmxlZCwgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQg
81
+ b25lIG9yIGJvdGgiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6
82
+ W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
83
+ UyJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlv
84
+ bnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4i
85
+ OiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0s
86
+ InN1cHBvcnRzRklQUyJdfV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3si
87
+ Y29uZGl0aW9ucyI6W10sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
88
+ dGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL2ZpcmVob3Nl
89
+ LWZpcHMue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9Iiwi
90
+ cHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50
91
+ In1dfV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBpcyBlbmFi
92
+ bGVkIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IEZJUFMi
93
+ LCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
94
+ ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRHVhbFN0YWNrIn0sdHJ1
95
+ ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3si
96
+ Zm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJmbiI6ImdldEF0
97
+ dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwic3VwcG9y
98
+ dHNEdWFsU3RhY2siXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNv
99
+ bmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL2ZpcmVo
100
+ b3NlLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3Vm
101
+ Zml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJl
102
+ bmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJEdWFsU3Rh
103
+ Y2sgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3Vw
104
+ cG9ydCBEdWFsU3RhY2siLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9u
105
+ cyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vZmlyZWhvc2Uue1Jl
106
+ Z2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGll
107
+ cyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfV19
108
+
109
+ JSON
110
+ end
111
+ end