aws-sdk-opensearchservice 1.41.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ce57da9f154af1cc5afed53d0056c2c4ef075f6f9f42209bf50ec159a269131c
4
- data.tar.gz: 16a04f80d24cbbfe0c47f95260db19e7304bf0cc2041c2c127011f9258ed1448
3
+ metadata.gz: ff2550d2ac6a8c7ba9a9fe0a216c55564a7db3b6e7e4ca3e21b00f8b2c4e32f1
4
+ data.tar.gz: 4c46fa360e2d67efaafe4f39083284df3463e6bc6d226771504578a1b64e1fac
5
5
  SHA512:
6
- metadata.gz: 7c28aee8759b74b9175b9dafd5b27648a907bb1551df5042fedcb38fa166c3182f6f15db5b4f8cc9593d325e95d26572bb123083a06325da100cdca1d07fbf25
7
- data.tar.gz: 4cfea5044f02ba03420fa7aa811965f3384fff708455dab4b6f2d73461640be2aa8a7a0eb041a3e10ca4265cc850ab69041b14df315ec7c29140fe55b93d99db
6
+ metadata.gz: dab3662b2c4e8edc7f7bd2af89ecc2409c7a79a604c7a58ef2116457f8114ba6382a513c0475be4ec27c6d7523358e6cba2aa4a0754696b31bdf9326c295ce0e
7
+ data.tar.gz: 5db96508c60c37acb7f1d21350033694b27d4b86676ed689d65072c2801219e914ac5bd194b4a07bcb10e30c648e63029cb921877cdb215adc2da7d2d7dcfbcb
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.42.0 (2024-05-22)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for enabling or disabling a data source configured as part of Zero-ETL integration with Amazon S3, by setting its status.
8
+
4
9
  1.41.0 (2024-05-13)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.41.0
1
+ 1.42.0
@@ -2937,6 +2937,7 @@ module Aws::OpenSearchService
2937
2937
  # * {Types::GetDataSourceResponse#data_source_type #data_source_type} => Types::DataSourceType
2938
2938
  # * {Types::GetDataSourceResponse#name #name} => String
2939
2939
  # * {Types::GetDataSourceResponse#description #description} => String
2940
+ # * {Types::GetDataSourceResponse#status #status} => String
2940
2941
  #
2941
2942
  # @example Request syntax with placeholder values
2942
2943
  #
@@ -2950,6 +2951,7 @@ module Aws::OpenSearchService
2950
2951
  # resp.data_source_type.s3_glue_data_catalog.role_arn #=> String
2951
2952
  # resp.name #=> String
2952
2953
  # resp.description #=> String
2954
+ # resp.status #=> String, one of "ACTIVE", "DISABLED"
2953
2955
  #
2954
2956
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/GetDataSource AWS API Documentation
2955
2957
  #
@@ -3177,6 +3179,7 @@ module Aws::OpenSearchService
3177
3179
  # resp.data_sources[0].data_source_type.s3_glue_data_catalog.role_arn #=> String
3178
3180
  # resp.data_sources[0].name #=> String
3179
3181
  # resp.data_sources[0].description #=> String
3182
+ # resp.data_sources[0].status #=> String, one of "ACTIVE", "DISABLED"
3180
3183
  #
3181
3184
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/ListDataSources AWS API Documentation
3182
3185
  #
@@ -3988,6 +3991,9 @@ module Aws::OpenSearchService
3988
3991
  # @option params [String] :description
3989
3992
  # A new description of the data source.
3990
3993
  #
3994
+ # @option params [String] :status
3995
+ # The status of the data source update request.
3996
+ #
3991
3997
  # @return [Types::UpdateDataSourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3992
3998
  #
3993
3999
  # * {Types::UpdateDataSourceResponse#message #message} => String
@@ -4003,6 +4009,7 @@ module Aws::OpenSearchService
4003
4009
  # },
4004
4010
  # },
4005
4011
  # description: "DataSourceDescription",
4012
+ # status: "ACTIVE", # accepts ACTIVE, DISABLED
4006
4013
  # })
4007
4014
  #
4008
4015
  # @example Response structure
@@ -4715,7 +4722,7 @@ module Aws::OpenSearchService
4715
4722
  params: params,
4716
4723
  config: config)
4717
4724
  context[:gem_name] = 'aws-sdk-opensearchservice'
4718
- context[:gem_version] = '1.41.0'
4725
+ context[:gem_version] = '1.42.0'
4719
4726
  Seahorse::Client::Request.new(handlers, context)
4720
4727
  end
4721
4728
 
@@ -103,6 +103,7 @@ module Aws::OpenSearchService
103
103
  DataSourceDetails = Shapes::StructureShape.new(name: 'DataSourceDetails')
104
104
  DataSourceList = Shapes::ListShape.new(name: 'DataSourceList')
105
105
  DataSourceName = Shapes::StringShape.new(name: 'DataSourceName')
106
+ DataSourceStatus = Shapes::StringShape.new(name: 'DataSourceStatus')
106
107
  DataSourceType = Shapes::UnionShape.new(name: 'DataSourceType')
107
108
  DeleteDataSourceRequest = Shapes::StructureShape.new(name: 'DeleteDataSourceRequest')
108
109
  DeleteDataSourceResponse = Shapes::StructureShape.new(name: 'DeleteDataSourceResponse')
@@ -750,6 +751,7 @@ module Aws::OpenSearchService
750
751
  DataSourceDetails.add_member(:data_source_type, Shapes::ShapeRef.new(shape: DataSourceType, location_name: "DataSourceType"))
751
752
  DataSourceDetails.add_member(:name, Shapes::ShapeRef.new(shape: DataSourceName, location_name: "Name"))
752
753
  DataSourceDetails.add_member(:description, Shapes::ShapeRef.new(shape: DataSourceDescription, location_name: "Description"))
754
+ DataSourceDetails.add_member(:status, Shapes::ShapeRef.new(shape: DataSourceStatus, location_name: "Status"))
753
755
  DataSourceDetails.struct_class = Types::DataSourceDetails
754
756
 
755
757
  DataSourceList.member = Shapes::ShapeRef.new(shape: DataSourceDetails)
@@ -1127,6 +1129,7 @@ module Aws::OpenSearchService
1127
1129
  GetDataSourceResponse.add_member(:data_source_type, Shapes::ShapeRef.new(shape: DataSourceType, location_name: "DataSourceType"))
1128
1130
  GetDataSourceResponse.add_member(:name, Shapes::ShapeRef.new(shape: DataSourceName, location_name: "Name"))
1129
1131
  GetDataSourceResponse.add_member(:description, Shapes::ShapeRef.new(shape: DataSourceDescription, location_name: "Description"))
1132
+ GetDataSourceResponse.add_member(:status, Shapes::ShapeRef.new(shape: DataSourceStatus, location_name: "Status"))
1130
1133
  GetDataSourceResponse.struct_class = Types::GetDataSourceResponse
1131
1134
 
1132
1135
  GetDomainMaintenanceStatusRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, required: true, location: "uri", location_name: "DomainName"))
@@ -1600,6 +1603,7 @@ module Aws::OpenSearchService
1600
1603
  UpdateDataSourceRequest.add_member(:name, Shapes::ShapeRef.new(shape: DataSourceName, required: true, location: "uri", location_name: "DataSourceName"))
1601
1604
  UpdateDataSourceRequest.add_member(:data_source_type, Shapes::ShapeRef.new(shape: DataSourceType, required: true, location_name: "DataSourceType"))
1602
1605
  UpdateDataSourceRequest.add_member(:description, Shapes::ShapeRef.new(shape: DataSourceDescription, location_name: "Description"))
1606
+ UpdateDataSourceRequest.add_member(:status, Shapes::ShapeRef.new(shape: DataSourceStatus, location_name: "Status"))
1603
1607
  UpdateDataSourceRequest.struct_class = Types::UpdateDataSourceRequest
1604
1608
 
1605
1609
  UpdateDataSourceResponse.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
@@ -1761,6 +1765,7 @@ module Aws::OpenSearchService
1761
1765
  "apiVersion" => "2021-01-01",
1762
1766
  "endpointPrefix" => "es",
1763
1767
  "protocol" => "rest-json",
1768
+ "protocols" => ["rest-json"],
1764
1769
  "serviceFullName" => "Amazon OpenSearch Service",
1765
1770
  "serviceId" => "OpenSearch",
1766
1771
  "signatureVersion" => "v4",
@@ -1614,12 +1614,17 @@ module Aws::OpenSearchService
1614
1614
  # A description of the data source.
1615
1615
  # @return [String]
1616
1616
  #
1617
+ # @!attribute [rw] status
1618
+ # The status of the data source.
1619
+ # @return [String]
1620
+ #
1617
1621
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DataSourceDetails AWS API Documentation
1618
1622
  #
1619
1623
  class DataSourceDetails < Struct.new(
1620
1624
  :data_source_type,
1621
1625
  :name,
1622
- :description)
1626
+ :description,
1627
+ :status)
1623
1628
  SENSITIVE = []
1624
1629
  include Aws::Structure
1625
1630
  end
@@ -3043,7 +3048,7 @@ module Aws::OpenSearchService
3043
3048
  # @return [Hash<String,String>]
3044
3049
  #
3045
3050
  # @!attribute [rw] domain_endpoint_v2_hosted_zone_id
3046
- # The DualStack Hosted Zone Id for the domain.
3051
+ # The dual stack hosted zone ID for the domain.
3047
3052
  # @return [String]
3048
3053
  #
3049
3054
  # @!attribute [rw] processing
@@ -3502,12 +3507,17 @@ module Aws::OpenSearchService
3502
3507
  # A description of the data source.
3503
3508
  # @return [String]
3504
3509
  #
3510
+ # @!attribute [rw] status
3511
+ # The status of the data source response.
3512
+ # @return [String]
3513
+ #
3505
3514
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/GetDataSourceResponse AWS API Documentation
3506
3515
  #
3507
3516
  class GetDataSourceResponse < Struct.new(
3508
3517
  :data_source_type,
3509
3518
  :name,
3510
- :description)
3519
+ :description,
3520
+ :status)
3511
3521
  SENSITIVE = []
3512
3522
  include Aws::Structure
3513
3523
  end
@@ -5873,13 +5883,18 @@ module Aws::OpenSearchService
5873
5883
  # A new description of the data source.
5874
5884
  # @return [String]
5875
5885
  #
5886
+ # @!attribute [rw] status
5887
+ # The status of the data source update request.
5888
+ # @return [String]
5889
+ #
5876
5890
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/UpdateDataSourceRequest AWS API Documentation
5877
5891
  #
5878
5892
  class UpdateDataSourceRequest < Struct.new(
5879
5893
  :domain_name,
5880
5894
  :name,
5881
5895
  :data_source_type,
5882
- :description)
5896
+ :description,
5897
+ :status)
5883
5898
  SENSITIVE = []
5884
5899
  include Aws::Structure
5885
5900
  end
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-opensearchservice/customizations'
52
52
  # @!group service
53
53
  module Aws::OpenSearchService
54
54
 
55
- GEM_VERSION = '1.41.0'
55
+ GEM_VERSION = '1.42.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -638,6 +638,7 @@ module Aws
638
638
  def data_source_type: () -> Types::DataSourceType
639
639
  def name: () -> ::String
640
640
  def description: () -> ::String
641
+ def status: () -> ("ACTIVE" | "DISABLED")
641
642
  end
642
643
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpenSearchService/Client.html#get_data_source-instance_method
643
644
  def get_data_source: (
@@ -925,7 +926,8 @@ module Aws
925
926
  role_arn: ::String?
926
927
  }?
927
928
  },
928
- ?description: ::String
929
+ ?description: ::String,
930
+ ?status: ("ACTIVE" | "DISABLED")
929
931
  ) -> _UpdateDataSourceResponseSuccess
930
932
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDataSourceResponseSuccess
931
933
 
data/sig/types.rbs CHANGED
@@ -388,6 +388,7 @@ module Aws::OpenSearchService
388
388
  attr_accessor data_source_type: Types::DataSourceType
389
389
  attr_accessor name: ::String
390
390
  attr_accessor description: ::String
391
+ attr_accessor status: ("ACTIVE" | "DISABLED")
391
392
  SENSITIVE: []
392
393
  end
393
394
 
@@ -881,6 +882,7 @@ module Aws::OpenSearchService
881
882
  attr_accessor data_source_type: Types::DataSourceType
882
883
  attr_accessor name: ::String
883
884
  attr_accessor description: ::String
885
+ attr_accessor status: ("ACTIVE" | "DISABLED")
884
886
  SENSITIVE: []
885
887
  end
886
888
 
@@ -1487,6 +1489,7 @@ module Aws::OpenSearchService
1487
1489
  attr_accessor name: ::String
1488
1490
  attr_accessor data_source_type: Types::DataSourceType
1489
1491
  attr_accessor description: ::String
1492
+ attr_accessor status: ("ACTIVE" | "DISABLED")
1490
1493
  SENSITIVE: []
1491
1494
  end
1492
1495
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-opensearchservice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.41.0
4
+ version: 1.42.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: 2024-05-13 00:00:00.000000000 Z
11
+ date: 2024-05-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core