aws-sdk-opensearchservice 1.35.0 → 1.37.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-opensearchservice/client.rb +120 -1
- data/lib/aws-sdk-opensearchservice/client_api.rb +60 -0
- data/lib/aws-sdk-opensearchservice/endpoints.rb +14 -0
- data/lib/aws-sdk-opensearchservice/plugins/endpoints.rb +3 -0
- data/lib/aws-sdk-opensearchservice/types.rb +171 -6
- data/lib/aws-sdk-opensearchservice.rb +1 -1
- data/sig/client.rbs +1118 -0
- data/sig/errors.rbs +44 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +1670 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
@@ -762,6 +762,49 @@ module Aws::OpenSearchService
|
|
762
762
|
include Aws::Structure
|
763
763
|
end
|
764
764
|
|
765
|
+
# @!attribute [rw] domain_name
|
766
|
+
# The name of an OpenSearch Service domain. Domain names are unique
|
767
|
+
# across the domains owned by an account within an Amazon Web Services
|
768
|
+
# Region.
|
769
|
+
# @return [String]
|
770
|
+
#
|
771
|
+
# @!attribute [rw] dry_run
|
772
|
+
# When set to `True`, returns the list of change IDs and properties
|
773
|
+
# that will be cancelled without actually cancelling the change.
|
774
|
+
# @return [Boolean]
|
775
|
+
#
|
776
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/CancelDomainConfigChangeRequest AWS API Documentation
|
777
|
+
#
|
778
|
+
class CancelDomainConfigChangeRequest < Struct.new(
|
779
|
+
:domain_name,
|
780
|
+
:dry_run)
|
781
|
+
SENSITIVE = []
|
782
|
+
include Aws::Structure
|
783
|
+
end
|
784
|
+
|
785
|
+
# @!attribute [rw] cancelled_change_ids
|
786
|
+
# The unique identifiers of the changes that were cancelled.
|
787
|
+
# @return [Array<String>]
|
788
|
+
#
|
789
|
+
# @!attribute [rw] cancelled_change_properties
|
790
|
+
# The domain change properties that were cancelled.
|
791
|
+
# @return [Array<Types::CancelledChangeProperty>]
|
792
|
+
#
|
793
|
+
# @!attribute [rw] dry_run
|
794
|
+
# Whether or not the request was a dry run. If `True`, the changes
|
795
|
+
# were not actually cancelled.
|
796
|
+
# @return [Boolean]
|
797
|
+
#
|
798
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/CancelDomainConfigChangeResponse AWS API Documentation
|
799
|
+
#
|
800
|
+
class CancelDomainConfigChangeResponse < Struct.new(
|
801
|
+
:cancelled_change_ids,
|
802
|
+
:cancelled_change_properties,
|
803
|
+
:dry_run)
|
804
|
+
SENSITIVE = []
|
805
|
+
include Aws::Structure
|
806
|
+
end
|
807
|
+
|
765
808
|
# Container for the request parameters to cancel a service software
|
766
809
|
# update.
|
767
810
|
#
|
@@ -794,6 +837,33 @@ module Aws::OpenSearchService
|
|
794
837
|
include Aws::Structure
|
795
838
|
end
|
796
839
|
|
840
|
+
# A property change that was cancelled for an Amazon OpenSearch Service
|
841
|
+
# domain.
|
842
|
+
#
|
843
|
+
# @!attribute [rw] property_name
|
844
|
+
# The name of the property whose change was cancelled.
|
845
|
+
# @return [String]
|
846
|
+
#
|
847
|
+
# @!attribute [rw] cancelled_value
|
848
|
+
# The pending value of the property that was cancelled. This would
|
849
|
+
# have been the eventual value of the property if the chance had not
|
850
|
+
# been cancelled.
|
851
|
+
# @return [String]
|
852
|
+
#
|
853
|
+
# @!attribute [rw] active_value
|
854
|
+
# The current value of the property, after the change was cancelled.
|
855
|
+
# @return [String]
|
856
|
+
#
|
857
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/CancelledChangeProperty AWS API Documentation
|
858
|
+
#
|
859
|
+
class CancelledChangeProperty < Struct.new(
|
860
|
+
:property_name,
|
861
|
+
:cancelled_value,
|
862
|
+
:active_value)
|
863
|
+
SENSITIVE = []
|
864
|
+
include Aws::Structure
|
865
|
+
end
|
866
|
+
|
797
867
|
# Container for information about a configuration change happening on a
|
798
868
|
# domain.
|
799
869
|
#
|
@@ -805,11 +875,32 @@ module Aws::OpenSearchService
|
|
805
875
|
# A message corresponding to the status of the configuration change.
|
806
876
|
# @return [String]
|
807
877
|
#
|
878
|
+
# @!attribute [rw] config_change_status
|
879
|
+
# The current status of the configuration change.
|
880
|
+
# @return [String]
|
881
|
+
#
|
882
|
+
# @!attribute [rw] initiated_by
|
883
|
+
# The IAM principal who initiated the configuration change.
|
884
|
+
# @return [String]
|
885
|
+
#
|
886
|
+
# @!attribute [rw] start_time
|
887
|
+
# The time that the configuration change was initiated, in Universal
|
888
|
+
# Coordinated Time (UTC).
|
889
|
+
# @return [Time]
|
890
|
+
#
|
891
|
+
# @!attribute [rw] last_updated_time
|
892
|
+
# The last time that the configuration change was updated.
|
893
|
+
# @return [Time]
|
894
|
+
#
|
808
895
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/ChangeProgressDetails AWS API Documentation
|
809
896
|
#
|
810
897
|
class ChangeProgressDetails < Struct.new(
|
811
898
|
:change_id,
|
812
|
-
:message
|
899
|
+
:message,
|
900
|
+
:config_change_status,
|
901
|
+
:initiated_by,
|
902
|
+
:start_time,
|
903
|
+
:last_updated_time)
|
813
904
|
SENSITIVE = []
|
814
905
|
include Aws::Structure
|
815
906
|
end
|
@@ -877,6 +968,19 @@ module Aws::OpenSearchService
|
|
877
968
|
# configuration change.
|
878
969
|
# @return [Array<Types::ChangeProgressStage>]
|
879
970
|
#
|
971
|
+
# @!attribute [rw] last_updated_time
|
972
|
+
# The last time that the status of the configuration change was
|
973
|
+
# updated.
|
974
|
+
# @return [Time]
|
975
|
+
#
|
976
|
+
# @!attribute [rw] config_change_status
|
977
|
+
# The current status of the configuration change.
|
978
|
+
# @return [String]
|
979
|
+
#
|
980
|
+
# @!attribute [rw] initiated_by
|
981
|
+
# The IAM principal who initiated the configuration change.
|
982
|
+
# @return [String]
|
983
|
+
#
|
880
984
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/ChangeProgressStatusDetails AWS API Documentation
|
881
985
|
#
|
882
986
|
class ChangeProgressStatusDetails < Struct.new(
|
@@ -886,7 +990,10 @@ module Aws::OpenSearchService
|
|
886
990
|
:pending_properties,
|
887
991
|
:completed_properties,
|
888
992
|
:total_number_of_stages,
|
889
|
-
:change_progress_stages
|
993
|
+
:change_progress_stages,
|
994
|
+
:last_updated_time,
|
995
|
+
:config_change_status,
|
996
|
+
:initiated_by)
|
890
997
|
SENSITIVE = []
|
891
998
|
include Aws::Structure
|
892
999
|
end
|
@@ -2585,6 +2692,11 @@ module Aws::OpenSearchService
|
|
2585
2692
|
# Software update options for the domain.
|
2586
2693
|
# @return [Types::SoftwareUpdateOptionsStatus]
|
2587
2694
|
#
|
2695
|
+
# @!attribute [rw] modifying_properties
|
2696
|
+
# Information about the domain properties that are currently being
|
2697
|
+
# modified.
|
2698
|
+
# @return [Array<Types::ModifyingProperties>]
|
2699
|
+
#
|
2588
2700
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DomainConfig AWS API Documentation
|
2589
2701
|
#
|
2590
2702
|
class DomainConfig < Struct.new(
|
@@ -2605,7 +2717,8 @@ module Aws::OpenSearchService
|
|
2605
2717
|
:auto_tune_options,
|
2606
2718
|
:change_progress_details,
|
2607
2719
|
:off_peak_window_options,
|
2608
|
-
:software_update_options
|
2720
|
+
:software_update_options,
|
2721
|
+
:modifying_properties)
|
2609
2722
|
SENSITIVE = []
|
2610
2723
|
include Aws::Structure
|
2611
2724
|
end
|
@@ -3017,6 +3130,16 @@ module Aws::OpenSearchService
|
|
3017
3130
|
# Service software update options for the domain.
|
3018
3131
|
# @return [Types::SoftwareUpdateOptions]
|
3019
3132
|
#
|
3133
|
+
# @!attribute [rw] domain_processing_status
|
3134
|
+
# The status of any changes that are currently in progress for the
|
3135
|
+
# domain.
|
3136
|
+
# @return [String]
|
3137
|
+
#
|
3138
|
+
# @!attribute [rw] modifying_properties
|
3139
|
+
# Information about the domain properties that are currently being
|
3140
|
+
# modified.
|
3141
|
+
# @return [Array<Types::ModifyingProperties>]
|
3142
|
+
#
|
3020
3143
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DomainStatus AWS API Documentation
|
3021
3144
|
#
|
3022
3145
|
class DomainStatus < Struct.new(
|
@@ -3048,7 +3171,9 @@ module Aws::OpenSearchService
|
|
3048
3171
|
:auto_tune_options,
|
3049
3172
|
:change_progress_details,
|
3050
3173
|
:off_peak_window_options,
|
3051
|
-
:software_update_options
|
3174
|
+
:software_update_options,
|
3175
|
+
:domain_processing_status,
|
3176
|
+
:modifying_properties)
|
3052
3177
|
SENSITIVE = []
|
3053
3178
|
include Aws::Structure
|
3054
3179
|
end
|
@@ -3201,8 +3326,10 @@ module Aws::OpenSearchService
|
|
3201
3326
|
end
|
3202
3327
|
|
3203
3328
|
# Specifies whether the domain should encrypt data at rest, and if so,
|
3204
|
-
# the Key Management Service (KMS) key to use. Can be used
|
3205
|
-
#
|
3329
|
+
# the Key Management Service (KMS) key to use. Can only be used when
|
3330
|
+
# creating a new domain or enabling encryption at rest for the first
|
3331
|
+
# time on an existing domain. You can't modify this parameter after
|
3332
|
+
# it's already been specified.
|
3206
3333
|
#
|
3207
3334
|
# @!attribute [rw] enabled
|
3208
3335
|
# True to enable encryption at rest.
|
@@ -4438,6 +4565,44 @@ module Aws::OpenSearchService
|
|
4438
4565
|
include Aws::Structure
|
4439
4566
|
end
|
4440
4567
|
|
4568
|
+
# Information about the domain properties that are currently being
|
4569
|
+
# modified.
|
4570
|
+
#
|
4571
|
+
# @!attribute [rw] name
|
4572
|
+
# The name of the property that is currently being modified.
|
4573
|
+
# @return [String]
|
4574
|
+
#
|
4575
|
+
# @!attribute [rw] active_value
|
4576
|
+
# The current value of the domain property that is being modified.
|
4577
|
+
# @return [String]
|
4578
|
+
#
|
4579
|
+
# @!attribute [rw] pending_value
|
4580
|
+
# The value that the property that is currently being modified will
|
4581
|
+
# eventually have.
|
4582
|
+
# @return [String]
|
4583
|
+
#
|
4584
|
+
# @!attribute [rw] value_type
|
4585
|
+
# The type of value that is currently being modified. Properties can
|
4586
|
+
# have two types:
|
4587
|
+
#
|
4588
|
+
# * `PLAIN_TEXT`: Contain direct values such as "1", "True", or
|
4589
|
+
# "c5.large.search".
|
4590
|
+
#
|
4591
|
+
# * `STRINGIFIED_JSON`: Contain content in JSON format, such as
|
4592
|
+
# \\\{"Enabled":"True"\\}".
|
4593
|
+
# @return [String]
|
4594
|
+
#
|
4595
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/ModifyingProperties AWS API Documentation
|
4596
|
+
#
|
4597
|
+
class ModifyingProperties < Struct.new(
|
4598
|
+
:name,
|
4599
|
+
:active_value,
|
4600
|
+
:pending_value,
|
4601
|
+
:value_type)
|
4602
|
+
SENSITIVE = []
|
4603
|
+
include Aws::Structure
|
4604
|
+
end
|
4605
|
+
|
4441
4606
|
# Enables or disables node-to-node encryption. For more information, see
|
4442
4607
|
# [Node-to-node encryption for Amazon OpenSearch Service][1].
|
4443
4608
|
#
|