aws-sdk-osis 1.0.0 → 1.2.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-osis/client.rb +41 -25
- data/lib/aws-sdk-osis.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2944e36431774b44fca4095bf7eb9b8bd03599edbc2c990cb576d01812557705
|
|
4
|
+
data.tar.gz: bfc8b94f2d2510be58c23c4da5f1afba806918f0961dd69fd44fdebd6714df68
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d767db4e38c4a03996ae80c3cd5786f27f456e8d1607de2328f2ee69e79b9a29499583b6e2b78fa09bbf4df6d727f539f82401cc1fefe36dd7375c3dd9395848
|
|
7
|
+
data.tar.gz: d5dd88b82959416fcb8335189fc3da4e890bae1c14b05d8dd2fd80a9dca343be8cf3cc8b22f5eae8a65b122385bbddf340218a46d843f4d2beb0aa47f01a9605
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.2.0 (2023-05-31)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
8
|
+
|
|
9
|
+
1.1.0 (2023-04-27)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Documentation updates for OpenSearch Ingestion
|
|
13
|
+
|
|
4
14
|
1.0.0 (2023-04-26)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.2.0
|
data/lib/aws-sdk-osis/client.rb
CHANGED
|
@@ -275,6 +275,11 @@ module Aws::OSIS
|
|
|
275
275
|
# in the future.
|
|
276
276
|
#
|
|
277
277
|
#
|
|
278
|
+
# @option options [String] :sdk_ua_app_id
|
|
279
|
+
# A unique and opaque application ID that is appended to the
|
|
280
|
+
# User-Agent header as app/<sdk_ua_app_id>. It should have a
|
|
281
|
+
# maximum length of 50.
|
|
282
|
+
#
|
|
278
283
|
# @option options [String] :secret_access_key
|
|
279
284
|
#
|
|
280
285
|
# @option options [String] :session_token
|
|
@@ -369,11 +374,11 @@ module Aws::OSIS
|
|
|
369
374
|
# @!group API Operations
|
|
370
375
|
|
|
371
376
|
# Creates an OpenSearch Ingestion pipeline. For more information, see
|
|
372
|
-
# [Creating
|
|
377
|
+
# [Creating Amazon OpenSearch Ingestion pipelines][1].
|
|
373
378
|
#
|
|
374
379
|
#
|
|
375
380
|
#
|
|
376
|
-
# [1]: https://docs.aws.amazon.com/opensearch-service/latest/developerguide/
|
|
381
|
+
# [1]: https://docs.aws.amazon.com/opensearch-service/latest/developerguide/creating-pipeline.html
|
|
377
382
|
#
|
|
378
383
|
# @option params [required, String] :pipeline_name
|
|
379
384
|
# The name of the OpenSearch Ingestion pipeline to create. Pipeline
|
|
@@ -465,11 +470,11 @@ module Aws::OSIS
|
|
|
465
470
|
end
|
|
466
471
|
|
|
467
472
|
# Deletes an OpenSearch Ingestion pipeline. For more information, see
|
|
468
|
-
# [Deleting pipelines][1].
|
|
473
|
+
# [Deleting Amazon OpenSearch Ingestion pipelines][1].
|
|
469
474
|
#
|
|
470
475
|
#
|
|
471
476
|
#
|
|
472
|
-
# [1]: https://docs.aws.amazon.com/opensearch-service/latest/developerguide/
|
|
477
|
+
# [1]: https://docs.aws.amazon.com/opensearch-service/latest/developerguide/delete-pipeline.html
|
|
473
478
|
#
|
|
474
479
|
# @option params [required, String] :pipeline_name
|
|
475
480
|
# The name of the pipeline to delete.
|
|
@@ -540,7 +545,12 @@ module Aws::OSIS
|
|
|
540
545
|
|
|
541
546
|
# Retrieves information about a specific blueprint for OpenSearch
|
|
542
547
|
# Ingestion. Blueprints are templates for the configuration needed for a
|
|
543
|
-
# `CreatePipeline` request.
|
|
548
|
+
# `CreatePipeline` request. For more information, see [Using blueprints
|
|
549
|
+
# to create a pipeline][1].
|
|
550
|
+
#
|
|
551
|
+
#
|
|
552
|
+
#
|
|
553
|
+
# [1]: https://docs.aws.amazon.com/opensearch-service/latest/developerguide/creating-pipeline.html#pipeline-blueprint
|
|
544
554
|
#
|
|
545
555
|
# @option params [required, String] :blueprint_name
|
|
546
556
|
# The name of the blueprint to retrieve.
|
|
@@ -573,12 +583,12 @@ module Aws::OSIS
|
|
|
573
583
|
# OpenSearch Ingestion pipeline. Currently, this operation only returns
|
|
574
584
|
# information when a pipeline is being created.
|
|
575
585
|
#
|
|
576
|
-
# For more information, see [
|
|
577
|
-
#
|
|
586
|
+
# For more information, see [Tracking the status of pipeline
|
|
587
|
+
# creation][1].
|
|
578
588
|
#
|
|
579
589
|
#
|
|
580
590
|
#
|
|
581
|
-
# [1]: https://docs.aws.amazon.com/opensearch-service/latest/developerguide/
|
|
591
|
+
# [1]: https://docs.aws.amazon.com/opensearch-service/latest/developerguide/creating-pipeline.html#get-pipeline-progress
|
|
582
592
|
#
|
|
583
593
|
# @option params [required, String] :pipeline_name
|
|
584
594
|
# The name of the pipeline.
|
|
@@ -614,7 +624,12 @@ module Aws::OSIS
|
|
|
614
624
|
req.send_request(options)
|
|
615
625
|
end
|
|
616
626
|
|
|
617
|
-
# Retrieves a list of all available blueprints for Data Prepper.
|
|
627
|
+
# Retrieves a list of all available blueprints for Data Prepper. For
|
|
628
|
+
# more information, see [Using blueprints to create a pipeline][1].
|
|
629
|
+
#
|
|
630
|
+
#
|
|
631
|
+
#
|
|
632
|
+
# [1]: https://docs.aws.amazon.com/opensearch-service/latest/developerguide/creating-pipeline.html#pipeline-blueprint
|
|
618
633
|
#
|
|
619
634
|
# @return [Types::ListPipelineBlueprintsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
620
635
|
#
|
|
@@ -635,12 +650,12 @@ module Aws::OSIS
|
|
|
635
650
|
end
|
|
636
651
|
|
|
637
652
|
# Lists all OpenSearch Ingestion pipelines in the current Amazon Web
|
|
638
|
-
# Services account and Region. For more information, see [
|
|
639
|
-
#
|
|
653
|
+
# Services account and Region. For more information, see [Viewing Amazon
|
|
654
|
+
# OpenSearch Ingestion pipelines][1].
|
|
640
655
|
#
|
|
641
656
|
#
|
|
642
657
|
#
|
|
643
|
-
# [1]: https://docs.aws.amazon.com/opensearch-service/latest/developerguide/
|
|
658
|
+
# [1]: https://docs.aws.amazon.com/opensearch-service/latest/developerguide/list-pipeline.html
|
|
644
659
|
#
|
|
645
660
|
# @option params [Integer] :max_results
|
|
646
661
|
# An optional parameter that specifies the maximum number of results to
|
|
@@ -688,8 +703,8 @@ module Aws::OSIS
|
|
|
688
703
|
end
|
|
689
704
|
|
|
690
705
|
# Lists all resource tags associated with an OpenSearch Ingestion
|
|
691
|
-
# pipeline. For more information, see [Tagging OpenSearch
|
|
692
|
-
# pipelines][1].
|
|
706
|
+
# pipeline. For more information, see [Tagging Amazon OpenSearch
|
|
707
|
+
# Ingestion pipelines][1].
|
|
693
708
|
#
|
|
694
709
|
#
|
|
695
710
|
#
|
|
@@ -724,11 +739,11 @@ module Aws::OSIS
|
|
|
724
739
|
end
|
|
725
740
|
|
|
726
741
|
# Starts an OpenSearch Ingestion pipeline. For more information, see
|
|
727
|
-
# [Starting
|
|
742
|
+
# [Starting an OpenSearch Ingestion pipeline][1].
|
|
728
743
|
#
|
|
729
744
|
#
|
|
730
745
|
#
|
|
731
|
-
# [1]: https://docs.aws.amazon.com/opensearch-service/latest/developerguide/
|
|
746
|
+
# [1]: https://docs.aws.amazon.com/opensearch-service/latest/developerguide/pipeline--stop-start.html#pipeline--start
|
|
732
747
|
#
|
|
733
748
|
# @option params [required, String] :pipeline_name
|
|
734
749
|
# The name of the pipeline to start.
|
|
@@ -776,11 +791,11 @@ module Aws::OSIS
|
|
|
776
791
|
end
|
|
777
792
|
|
|
778
793
|
# Stops an OpenSearch Ingestion pipeline. For more information, see
|
|
779
|
-
# [Stopping
|
|
794
|
+
# [Stopping an OpenSearch Ingestion pipeline][1].
|
|
780
795
|
#
|
|
781
796
|
#
|
|
782
797
|
#
|
|
783
|
-
# [1]: https://docs.aws.amazon.com/opensearch-service/latest/developerguide/
|
|
798
|
+
# [1]: https://docs.aws.amazon.com/opensearch-service/latest/developerguide/pipeline--stop-start.html#pipeline--stop
|
|
784
799
|
#
|
|
785
800
|
# @option params [required, String] :pipeline_name
|
|
786
801
|
# The name of the pipeline to stop.
|
|
@@ -828,7 +843,7 @@ module Aws::OSIS
|
|
|
828
843
|
end
|
|
829
844
|
|
|
830
845
|
# Tags an OpenSearch Ingestion pipeline. For more information, see
|
|
831
|
-
# [Tagging OpenSearch Ingestion pipelines][1].
|
|
846
|
+
# [Tagging Amazon OpenSearch Ingestion pipelines][1].
|
|
832
847
|
#
|
|
833
848
|
#
|
|
834
849
|
#
|
|
@@ -864,7 +879,8 @@ module Aws::OSIS
|
|
|
864
879
|
end
|
|
865
880
|
|
|
866
881
|
# Removes one or more tags from an OpenSearch Ingestion pipeline. For
|
|
867
|
-
# more information, see [Tagging OpenSearch Ingestion
|
|
882
|
+
# more information, see [Tagging Amazon OpenSearch Ingestion
|
|
883
|
+
# pipelines][1].
|
|
868
884
|
#
|
|
869
885
|
#
|
|
870
886
|
#
|
|
@@ -895,11 +911,11 @@ module Aws::OSIS
|
|
|
895
911
|
end
|
|
896
912
|
|
|
897
913
|
# Updates an OpenSearch Ingestion pipeline. For more information, see
|
|
898
|
-
# [
|
|
914
|
+
# [Updating Amazon OpenSearch Ingestion pipelines][1].
|
|
899
915
|
#
|
|
900
916
|
#
|
|
901
917
|
#
|
|
902
|
-
# [1]: https://docs.aws.amazon.com/opensearch-service/latest/developerguide/
|
|
918
|
+
# [1]: https://docs.aws.amazon.com/opensearch-service/latest/developerguide/update-pipeline.html
|
|
903
919
|
#
|
|
904
920
|
# @option params [required, String] :pipeline_name
|
|
905
921
|
# The name of the pipeline to update.
|
|
@@ -971,12 +987,12 @@ module Aws::OSIS
|
|
|
971
987
|
end
|
|
972
988
|
|
|
973
989
|
# Checks whether an OpenSearch Ingestion pipeline configuration is valid
|
|
974
|
-
# prior to creation. For more information, see [Creating
|
|
990
|
+
# prior to creation. For more information, see [Creating Amazon
|
|
975
991
|
# OpenSearch Ingestion pipelines][1].
|
|
976
992
|
#
|
|
977
993
|
#
|
|
978
994
|
#
|
|
979
|
-
# [1]: https://docs.aws.amazon.com/opensearch-service/latest/developerguide/
|
|
995
|
+
# [1]: https://docs.aws.amazon.com/opensearch-service/latest/developerguide/creating-pipeline.html
|
|
980
996
|
#
|
|
981
997
|
# @option params [required, String] :pipeline_configuration_body
|
|
982
998
|
# The pipeline configuration in YAML format. The command accepts the
|
|
@@ -1023,7 +1039,7 @@ module Aws::OSIS
|
|
|
1023
1039
|
params: params,
|
|
1024
1040
|
config: config)
|
|
1025
1041
|
context[:gem_name] = 'aws-sdk-osis'
|
|
1026
|
-
context[:gem_version] = '1.
|
|
1042
|
+
context[:gem_version] = '1.2.0'
|
|
1027
1043
|
Seahorse::Client::Request.new(handlers, context)
|
|
1028
1044
|
end
|
|
1029
1045
|
|
data/lib/aws-sdk-osis.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-osis
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-05-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|
|
@@ -19,7 +19,7 @@ dependencies:
|
|
|
19
19
|
version: '3'
|
|
20
20
|
- - ">="
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: 3.
|
|
22
|
+
version: 3.174.0
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -29,7 +29,7 @@ dependencies:
|
|
|
29
29
|
version: '3'
|
|
30
30
|
- - ">="
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: 3.
|
|
32
|
+
version: 3.174.0
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: aws-sigv4
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|