aws-sdk-opensearchservice 1.14.0 → 1.16.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0ec38a53ca4cf12acc073157b080ac7483bf9154e6f352f04215ee9b80fc68dd
4
- data.tar.gz: 334a2742ca3b17720ef16fe3110754836163a054720e46fbffc23038af07f141
3
+ metadata.gz: 3f054dc53aa113e06953780833d69b7e887e6feac5b5a2b4195cb3d07e8343be
4
+ data.tar.gz: 0e3c2b33d194d896c875fb50001039ffb40ac2117469b44ad45c77d45d54f59d
5
5
  SHA512:
6
- metadata.gz: 9405e09c809d9c8d481e69b4db6eeeeda3b53a6237eeb9ab9c3beee56a33baa9243ac611741b5d937442c5762d5f8d5c88cf59f5bb47668b113a23836f8993cd
7
- data.tar.gz: b10ef78975ebc4cf5b2b662e8f5a104ff5382605bce3a4ea7fbc70a3fd9f48052a9ffa81a8fa59eddcd2b94abfa82d54ccd3e70f066b344c0a056a8028919e64
6
+ metadata.gz: 17c930295be5b72585be652441f64034c913b966af3018dceafb69100544a8c3fa6055f14d123e5c62d639f7a78334e286a2c974815e02be09cacacb8d2a210f
7
+ data.tar.gz: 23b8642d487057a093c69e777152c09548ef79aa041b1b31d2fef669c944506c07e8cf32dcc7a0697aadd060d8c2f40354bc63285af4153526ad70da81f2f6ba
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.16.0 (2023-01-31)
5
+ ------------------
6
+
7
+ * Feature - Amazon OpenSearch Service adds the option for a VPC endpoint connection between two domains when the local domain uses OpenSearch version 1.3 or 2.3. You can now use remote reindex to copy indices from one VPC domain to another without a reverse proxy.
8
+
9
+ 1.15.0 (2023-01-19)
10
+ ------------------
11
+
12
+ * Feature - This release adds the enhanced dry run option, that checks for validation errors that might occur when deploying configuration changes and provides a summary of these errors, if any. The feature will also indicate whether a blue/green deployment will be required to apply a change.
13
+
4
14
  1.14.0 (2023-01-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.14.0
1
+ 1.16.0
@@ -401,6 +401,7 @@ module Aws::OpenSearchService
401
401
  # resp.connection.connection_id #=> String
402
402
  # resp.connection.connection_status.status_code #=> String, one of "PENDING_ACCEPTANCE", "APPROVED", "PROVISIONING", "ACTIVE", "REJECTING", "REJECTED", "DELETING", "DELETED"
403
403
  # resp.connection.connection_status.message #=> String
404
+ # resp.connection.connection_mode #=> String, one of "DIRECT", "VPC_ENDPOINT"
404
405
  #
405
406
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/AcceptInboundConnection AWS API Documentation
406
407
  #
@@ -412,13 +413,13 @@ module Aws::OpenSearchService
412
413
  end
413
414
 
414
415
  # Attaches tags to an existing Amazon OpenSearch Service domain. Tags
415
- # are a set of case-sensitive key-value pairs. An domain can have up to
416
- # 10 tags. For more information, see [ Tagging Amazon OpenSearch Service
416
+ # are a set of case-sensitive key-value pairs. A domain can have up to
417
+ # 10 tags. For more information, see [Tagging Amazon OpenSearch Service
417
418
  # domains][1].
418
419
  #
419
420
  #
420
421
  #
421
- # [1]: https://docs.aws.amazon.com/opensearch-service/latest/developerguide/managedomains.html#managedomains-awsresorcetagging
422
+ # [1]: https://docs.aws.amazon.com/opensearch-service/latest/developerguide/managedomains-awsresourcetagging.html
422
423
  #
423
424
  # @option params [required, String] :arn
424
425
  # Amazon Resource Name (ARN) for the OpenSearch Service domain to which
@@ -905,6 +906,9 @@ module Aws::OpenSearchService
905
906
  # @option params [required, String] :connection_alias
906
907
  # Name of the connection.
907
908
  #
909
+ # @option params [String] :connection_mode
910
+ # The connection mode.
911
+ #
908
912
  # @return [Types::CreateOutboundConnectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
909
913
  #
910
914
  # * {Types::CreateOutboundConnectionResponse#local_domain_info #local_domain_info} => Types::DomainInformationContainer
@@ -912,6 +916,8 @@ module Aws::OpenSearchService
912
916
  # * {Types::CreateOutboundConnectionResponse#connection_alias #connection_alias} => String
913
917
  # * {Types::CreateOutboundConnectionResponse#connection_status #connection_status} => Types::OutboundConnectionStatus
914
918
  # * {Types::CreateOutboundConnectionResponse#connection_id #connection_id} => String
919
+ # * {Types::CreateOutboundConnectionResponse#connection_mode #connection_mode} => String
920
+ # * {Types::CreateOutboundConnectionResponse#connection_properties #connection_properties} => Types::ConnectionProperties
915
921
  #
916
922
  # @example Request syntax with placeholder values
917
923
  #
@@ -931,6 +937,7 @@ module Aws::OpenSearchService
931
937
  # },
932
938
  # },
933
939
  # connection_alias: "ConnectionAlias", # required
940
+ # connection_mode: "DIRECT", # accepts DIRECT, VPC_ENDPOINT
934
941
  # })
935
942
  #
936
943
  # @example Response structure
@@ -945,6 +952,8 @@ module Aws::OpenSearchService
945
952
  # resp.connection_status.status_code #=> String, one of "VALIDATING", "VALIDATION_FAILED", "PENDING_ACCEPTANCE", "APPROVED", "PROVISIONING", "ACTIVE", "REJECTING", "REJECTED", "DELETING", "DELETED"
946
953
  # resp.connection_status.message #=> String
947
954
  # resp.connection_id #=> String
955
+ # resp.connection_mode #=> String, one of "DIRECT", "VPC_ENDPOINT"
956
+ # resp.connection_properties.endpoint #=> String
948
957
  #
949
958
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/CreateOutboundConnection AWS API Documentation
950
959
  #
@@ -1016,7 +1025,8 @@ module Aws::OpenSearchService
1016
1025
  # Creates an Amazon OpenSearch Service-managed VPC endpoint.
1017
1026
  #
1018
1027
  # @option params [required, String] :domain_arn
1019
- # The Amazon Resource Name (ARN) of the domain to grant access to.
1028
+ # The Amazon Resource Name (ARN) of the domain to create the endpoint
1029
+ # for.
1020
1030
  #
1021
1031
  # @option params [required, Types::VPCOptions] :vpc_options
1022
1032
  # Options to specify the subnets and security groups for the endpoint.
@@ -1200,6 +1210,7 @@ module Aws::OpenSearchService
1200
1210
  # resp.connection.connection_id #=> String
1201
1211
  # resp.connection.connection_status.status_code #=> String, one of "PENDING_ACCEPTANCE", "APPROVED", "PROVISIONING", "ACTIVE", "REJECTING", "REJECTED", "DELETING", "DELETED"
1202
1212
  # resp.connection.connection_status.message #=> String
1213
+ # resp.connection.connection_mode #=> String, one of "DIRECT", "VPC_ENDPOINT"
1203
1214
  #
1204
1215
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DeleteInboundConnection AWS API Documentation
1205
1216
  #
@@ -1244,6 +1255,8 @@ module Aws::OpenSearchService
1244
1255
  # resp.connection.connection_alias #=> String
1245
1256
  # resp.connection.connection_status.status_code #=> String, one of "VALIDATING", "VALIDATION_FAILED", "PENDING_ACCEPTANCE", "APPROVED", "PROVISIONING", "ACTIVE", "REJECTING", "REJECTED", "DELETING", "DELETED"
1246
1257
  # resp.connection.connection_status.message #=> String
1258
+ # resp.connection.connection_mode #=> String, one of "DIRECT", "VPC_ENDPOINT"
1259
+ # resp.connection.connection_properties.endpoint #=> String
1247
1260
  #
1248
1261
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DeleteOutboundConnection AWS API Documentation
1249
1262
  #
@@ -1806,6 +1819,135 @@ module Aws::OpenSearchService
1806
1819
  req.send_request(options)
1807
1820
  end
1808
1821
 
1822
+ # Describes the progress of a pre-update dry run analysis on an Amazon
1823
+ # OpenSearch Service domain. For more information, see [Determining
1824
+ # whether a change will cause a blue/green deployment][1].
1825
+ #
1826
+ #
1827
+ #
1828
+ # [1]: https://docs.aws.amazon.com/opensearch-service/latest/developerguide/managedomains-configuration-changes#dryrun
1829
+ #
1830
+ # @option params [required, String] :domain_name
1831
+ # The name of the domain.
1832
+ #
1833
+ # @option params [String] :dry_run_id
1834
+ # The unique identifier of the dry run.
1835
+ #
1836
+ # @option params [Boolean] :load_dry_run_config
1837
+ # Whether to include the configuration of the dry run in the response.
1838
+ # The configuration specifies the updates that you're planning to make
1839
+ # on the domain.
1840
+ #
1841
+ # @return [Types::DescribeDryRunProgressResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1842
+ #
1843
+ # * {Types::DescribeDryRunProgressResponse#dry_run_progress_status #dry_run_progress_status} => Types::DryRunProgressStatus
1844
+ # * {Types::DescribeDryRunProgressResponse#dry_run_config #dry_run_config} => Types::DomainStatus
1845
+ # * {Types::DescribeDryRunProgressResponse#dry_run_results #dry_run_results} => Types::DryRunResults
1846
+ #
1847
+ # @example Request syntax with placeholder values
1848
+ #
1849
+ # resp = client.describe_dry_run_progress({
1850
+ # domain_name: "DomainName", # required
1851
+ # dry_run_id: "GUID",
1852
+ # load_dry_run_config: false,
1853
+ # })
1854
+ #
1855
+ # @example Response structure
1856
+ #
1857
+ # resp.dry_run_progress_status.dry_run_id #=> String
1858
+ # resp.dry_run_progress_status.dry_run_status #=> String
1859
+ # resp.dry_run_progress_status.creation_date #=> String
1860
+ # resp.dry_run_progress_status.update_date #=> String
1861
+ # resp.dry_run_progress_status.validation_failures #=> Array
1862
+ # resp.dry_run_progress_status.validation_failures[0].code #=> String
1863
+ # resp.dry_run_progress_status.validation_failures[0].message #=> String
1864
+ # resp.dry_run_config.domain_id #=> String
1865
+ # resp.dry_run_config.domain_name #=> String
1866
+ # resp.dry_run_config.arn #=> String
1867
+ # resp.dry_run_config.created #=> Boolean
1868
+ # resp.dry_run_config.deleted #=> Boolean
1869
+ # resp.dry_run_config.endpoint #=> String
1870
+ # resp.dry_run_config.endpoints #=> Hash
1871
+ # resp.dry_run_config.endpoints["String"] #=> String
1872
+ # resp.dry_run_config.processing #=> Boolean
1873
+ # resp.dry_run_config.upgrade_processing #=> Boolean
1874
+ # resp.dry_run_config.engine_version #=> String
1875
+ # resp.dry_run_config.cluster_config.instance_type #=> String, one of "m3.medium.search", "m3.large.search", "m3.xlarge.search", "m3.2xlarge.search", "m4.large.search", "m4.xlarge.search", "m4.2xlarge.search", "m4.4xlarge.search", "m4.10xlarge.search", "m5.large.search", "m5.xlarge.search", "m5.2xlarge.search", "m5.4xlarge.search", "m5.12xlarge.search", "m5.24xlarge.search", "r5.large.search", "r5.xlarge.search", "r5.2xlarge.search", "r5.4xlarge.search", "r5.12xlarge.search", "r5.24xlarge.search", "c5.large.search", "c5.xlarge.search", "c5.2xlarge.search", "c5.4xlarge.search", "c5.9xlarge.search", "c5.18xlarge.search", "t3.nano.search", "t3.micro.search", "t3.small.search", "t3.medium.search", "t3.large.search", "t3.xlarge.search", "t3.2xlarge.search", "ultrawarm1.medium.search", "ultrawarm1.large.search", "ultrawarm1.xlarge.search", "t2.micro.search", "t2.small.search", "t2.medium.search", "r3.large.search", "r3.xlarge.search", "r3.2xlarge.search", "r3.4xlarge.search", "r3.8xlarge.search", "i2.xlarge.search", "i2.2xlarge.search", "d2.xlarge.search", "d2.2xlarge.search", "d2.4xlarge.search", "d2.8xlarge.search", "c4.large.search", "c4.xlarge.search", "c4.2xlarge.search", "c4.4xlarge.search", "c4.8xlarge.search", "r4.large.search", "r4.xlarge.search", "r4.2xlarge.search", "r4.4xlarge.search", "r4.8xlarge.search", "r4.16xlarge.search", "i3.large.search", "i3.xlarge.search", "i3.2xlarge.search", "i3.4xlarge.search", "i3.8xlarge.search", "i3.16xlarge.search", "r6g.large.search", "r6g.xlarge.search", "r6g.2xlarge.search", "r6g.4xlarge.search", "r6g.8xlarge.search", "r6g.12xlarge.search", "m6g.large.search", "m6g.xlarge.search", "m6g.2xlarge.search", "m6g.4xlarge.search", "m6g.8xlarge.search", "m6g.12xlarge.search", "c6g.large.search", "c6g.xlarge.search", "c6g.2xlarge.search", "c6g.4xlarge.search", "c6g.8xlarge.search", "c6g.12xlarge.search", "r6gd.large.search", "r6gd.xlarge.search", "r6gd.2xlarge.search", "r6gd.4xlarge.search", "r6gd.8xlarge.search", "r6gd.12xlarge.search", "r6gd.16xlarge.search", "t4g.small.search", "t4g.medium.search"
1876
+ # resp.dry_run_config.cluster_config.instance_count #=> Integer
1877
+ # resp.dry_run_config.cluster_config.dedicated_master_enabled #=> Boolean
1878
+ # resp.dry_run_config.cluster_config.zone_awareness_enabled #=> Boolean
1879
+ # resp.dry_run_config.cluster_config.zone_awareness_config.availability_zone_count #=> Integer
1880
+ # resp.dry_run_config.cluster_config.dedicated_master_type #=> String, one of "m3.medium.search", "m3.large.search", "m3.xlarge.search", "m3.2xlarge.search", "m4.large.search", "m4.xlarge.search", "m4.2xlarge.search", "m4.4xlarge.search", "m4.10xlarge.search", "m5.large.search", "m5.xlarge.search", "m5.2xlarge.search", "m5.4xlarge.search", "m5.12xlarge.search", "m5.24xlarge.search", "r5.large.search", "r5.xlarge.search", "r5.2xlarge.search", "r5.4xlarge.search", "r5.12xlarge.search", "r5.24xlarge.search", "c5.large.search", "c5.xlarge.search", "c5.2xlarge.search", "c5.4xlarge.search", "c5.9xlarge.search", "c5.18xlarge.search", "t3.nano.search", "t3.micro.search", "t3.small.search", "t3.medium.search", "t3.large.search", "t3.xlarge.search", "t3.2xlarge.search", "ultrawarm1.medium.search", "ultrawarm1.large.search", "ultrawarm1.xlarge.search", "t2.micro.search", "t2.small.search", "t2.medium.search", "r3.large.search", "r3.xlarge.search", "r3.2xlarge.search", "r3.4xlarge.search", "r3.8xlarge.search", "i2.xlarge.search", "i2.2xlarge.search", "d2.xlarge.search", "d2.2xlarge.search", "d2.4xlarge.search", "d2.8xlarge.search", "c4.large.search", "c4.xlarge.search", "c4.2xlarge.search", "c4.4xlarge.search", "c4.8xlarge.search", "r4.large.search", "r4.xlarge.search", "r4.2xlarge.search", "r4.4xlarge.search", "r4.8xlarge.search", "r4.16xlarge.search", "i3.large.search", "i3.xlarge.search", "i3.2xlarge.search", "i3.4xlarge.search", "i3.8xlarge.search", "i3.16xlarge.search", "r6g.large.search", "r6g.xlarge.search", "r6g.2xlarge.search", "r6g.4xlarge.search", "r6g.8xlarge.search", "r6g.12xlarge.search", "m6g.large.search", "m6g.xlarge.search", "m6g.2xlarge.search", "m6g.4xlarge.search", "m6g.8xlarge.search", "m6g.12xlarge.search", "c6g.large.search", "c6g.xlarge.search", "c6g.2xlarge.search", "c6g.4xlarge.search", "c6g.8xlarge.search", "c6g.12xlarge.search", "r6gd.large.search", "r6gd.xlarge.search", "r6gd.2xlarge.search", "r6gd.4xlarge.search", "r6gd.8xlarge.search", "r6gd.12xlarge.search", "r6gd.16xlarge.search", "t4g.small.search", "t4g.medium.search"
1881
+ # resp.dry_run_config.cluster_config.dedicated_master_count #=> Integer
1882
+ # resp.dry_run_config.cluster_config.warm_enabled #=> Boolean
1883
+ # resp.dry_run_config.cluster_config.warm_type #=> String, one of "ultrawarm1.medium.search", "ultrawarm1.large.search", "ultrawarm1.xlarge.search"
1884
+ # resp.dry_run_config.cluster_config.warm_count #=> Integer
1885
+ # resp.dry_run_config.cluster_config.cold_storage_options.enabled #=> Boolean
1886
+ # resp.dry_run_config.ebs_options.ebs_enabled #=> Boolean
1887
+ # resp.dry_run_config.ebs_options.volume_type #=> String, one of "standard", "gp2", "io1", "gp3"
1888
+ # resp.dry_run_config.ebs_options.volume_size #=> Integer
1889
+ # resp.dry_run_config.ebs_options.iops #=> Integer
1890
+ # resp.dry_run_config.ebs_options.throughput #=> Integer
1891
+ # resp.dry_run_config.access_policies #=> String
1892
+ # resp.dry_run_config.snapshot_options.automated_snapshot_start_hour #=> Integer
1893
+ # resp.dry_run_config.vpc_options.vpc_id #=> String
1894
+ # resp.dry_run_config.vpc_options.subnet_ids #=> Array
1895
+ # resp.dry_run_config.vpc_options.subnet_ids[0] #=> String
1896
+ # resp.dry_run_config.vpc_options.availability_zones #=> Array
1897
+ # resp.dry_run_config.vpc_options.availability_zones[0] #=> String
1898
+ # resp.dry_run_config.vpc_options.security_group_ids #=> Array
1899
+ # resp.dry_run_config.vpc_options.security_group_ids[0] #=> String
1900
+ # resp.dry_run_config.cognito_options.enabled #=> Boolean
1901
+ # resp.dry_run_config.cognito_options.user_pool_id #=> String
1902
+ # resp.dry_run_config.cognito_options.identity_pool_id #=> String
1903
+ # resp.dry_run_config.cognito_options.role_arn #=> String
1904
+ # resp.dry_run_config.encryption_at_rest_options.enabled #=> Boolean
1905
+ # resp.dry_run_config.encryption_at_rest_options.kms_key_id #=> String
1906
+ # resp.dry_run_config.node_to_node_encryption_options.enabled #=> Boolean
1907
+ # resp.dry_run_config.advanced_options #=> Hash
1908
+ # resp.dry_run_config.advanced_options["String"] #=> String
1909
+ # resp.dry_run_config.log_publishing_options #=> Hash
1910
+ # resp.dry_run_config.log_publishing_options["LogType"].cloud_watch_logs_log_group_arn #=> String
1911
+ # resp.dry_run_config.log_publishing_options["LogType"].enabled #=> Boolean
1912
+ # resp.dry_run_config.service_software_options.current_version #=> String
1913
+ # resp.dry_run_config.service_software_options.new_version #=> String
1914
+ # resp.dry_run_config.service_software_options.update_available #=> Boolean
1915
+ # resp.dry_run_config.service_software_options.cancellable #=> Boolean
1916
+ # resp.dry_run_config.service_software_options.update_status #=> String, one of "PENDING_UPDATE", "IN_PROGRESS", "COMPLETED", "NOT_ELIGIBLE", "ELIGIBLE"
1917
+ # resp.dry_run_config.service_software_options.description #=> String
1918
+ # resp.dry_run_config.service_software_options.automated_update_date #=> Time
1919
+ # resp.dry_run_config.service_software_options.optional_deployment #=> Boolean
1920
+ # resp.dry_run_config.domain_endpoint_options.enforce_https #=> Boolean
1921
+ # resp.dry_run_config.domain_endpoint_options.tls_security_policy #=> String, one of "Policy-Min-TLS-1-0-2019-07", "Policy-Min-TLS-1-2-2019-07"
1922
+ # resp.dry_run_config.domain_endpoint_options.custom_endpoint_enabled #=> Boolean
1923
+ # resp.dry_run_config.domain_endpoint_options.custom_endpoint #=> String
1924
+ # resp.dry_run_config.domain_endpoint_options.custom_endpoint_certificate_arn #=> String
1925
+ # resp.dry_run_config.advanced_security_options.enabled #=> Boolean
1926
+ # resp.dry_run_config.advanced_security_options.internal_user_database_enabled #=> Boolean
1927
+ # resp.dry_run_config.advanced_security_options.saml_options.enabled #=> Boolean
1928
+ # resp.dry_run_config.advanced_security_options.saml_options.idp.metadata_content #=> String
1929
+ # resp.dry_run_config.advanced_security_options.saml_options.idp.entity_id #=> String
1930
+ # resp.dry_run_config.advanced_security_options.saml_options.subject_key #=> String
1931
+ # resp.dry_run_config.advanced_security_options.saml_options.roles_key #=> String
1932
+ # resp.dry_run_config.advanced_security_options.saml_options.session_timeout_minutes #=> Integer
1933
+ # resp.dry_run_config.advanced_security_options.anonymous_auth_disable_date #=> Time
1934
+ # resp.dry_run_config.advanced_security_options.anonymous_auth_enabled #=> Boolean
1935
+ # resp.dry_run_config.auto_tune_options.state #=> String, one of "ENABLED", "DISABLED", "ENABLE_IN_PROGRESS", "DISABLE_IN_PROGRESS", "DISABLED_AND_ROLLBACK_SCHEDULED", "DISABLED_AND_ROLLBACK_IN_PROGRESS", "DISABLED_AND_ROLLBACK_COMPLETE", "DISABLED_AND_ROLLBACK_ERROR", "ERROR"
1936
+ # resp.dry_run_config.auto_tune_options.error_message #=> String
1937
+ # resp.dry_run_config.change_progress_details.change_id #=> String
1938
+ # resp.dry_run_config.change_progress_details.message #=> String
1939
+ # resp.dry_run_results.deployment_type #=> String
1940
+ # resp.dry_run_results.message #=> String
1941
+ #
1942
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DescribeDryRunProgress AWS API Documentation
1943
+ #
1944
+ # @overload describe_dry_run_progress(params = {})
1945
+ # @param [Hash] params ({})
1946
+ def describe_dry_run_progress(params = {}, options = {})
1947
+ req = build_request(:describe_dry_run_progress, params)
1948
+ req.send_request(options)
1949
+ end
1950
+
1809
1951
  # Lists all the inbound cross-cluster search connections for a
1810
1952
  # destination (remote) Amazon OpenSearch Service domain. For more
1811
1953
  # information, see [Cross-cluster search for Amazon OpenSearch
@@ -1861,6 +2003,7 @@ module Aws::OpenSearchService
1861
2003
  # resp.connections[0].connection_id #=> String
1862
2004
  # resp.connections[0].connection_status.status_code #=> String, one of "PENDING_ACCEPTANCE", "APPROVED", "PROVISIONING", "ACTIVE", "REJECTING", "REJECTED", "DELETING", "DELETED"
1863
2005
  # resp.connections[0].connection_status.message #=> String
2006
+ # resp.connections[0].connection_mode #=> String, one of "DIRECT", "VPC_ENDPOINT"
1864
2007
  # resp.next_token #=> String
1865
2008
  #
1866
2009
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DescribeInboundConnections AWS API Documentation
@@ -1980,6 +2123,8 @@ module Aws::OpenSearchService
1980
2123
  # resp.connections[0].connection_alias #=> String
1981
2124
  # resp.connections[0].connection_status.status_code #=> String, one of "VALIDATING", "VALIDATION_FAILED", "PENDING_ACCEPTANCE", "APPROVED", "PROVISIONING", "ACTIVE", "REJECTING", "REJECTED", "DELETING", "DELETED"
1982
2125
  # resp.connections[0].connection_status.message #=> String
2126
+ # resp.connections[0].connection_mode #=> String, one of "DIRECT", "VPC_ENDPOINT"
2127
+ # resp.connections[0].connection_properties.endpoint #=> String
1983
2128
  # resp.next_token #=> String
1984
2129
  #
1985
2130
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DescribeOutboundConnections AWS API Documentation
@@ -2929,6 +3074,7 @@ module Aws::OpenSearchService
2929
3074
  # resp.connection.connection_id #=> String
2930
3075
  # resp.connection.connection_status.status_code #=> String, one of "PENDING_ACCEPTANCE", "APPROVED", "PROVISIONING", "ACTIVE", "REJECTING", "REJECTED", "DELETING", "DELETED"
2931
3076
  # resp.connection.connection_status.message #=> String
3077
+ # resp.connection.connection_mode #=> String, one of "DIRECT", "VPC_ENDPOINT"
2932
3078
  #
2933
3079
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/RejectInboundConnection AWS API Documentation
2934
3080
  #
@@ -3130,13 +3276,28 @@ module Aws::OpenSearchService
3130
3276
  #
3131
3277
  # @option params [Boolean] :dry_run
3132
3278
  # This flag, when set to True, specifies whether the `UpdateDomain`
3133
- # request should return the results of validation check without actually
3134
- # applying the change.
3279
+ # request should return the results of a dry run analysis without
3280
+ # actually applying the change. A dry run determines what type of
3281
+ # deployment the update will cause.
3282
+ #
3283
+ # @option params [String] :dry_run_mode
3284
+ # The type of dry run to perform.
3285
+ #
3286
+ # * `Basic` only returns the type of deployment (blue/green or dynamic)
3287
+ # that the update will cause.
3288
+ #
3289
+ # * `Verbose` runs an additional check to validate the changes you're
3290
+ # making. For more information, see [Validating a domain update][1].
3291
+ #
3292
+ #
3293
+ #
3294
+ # [1]: https://docs.aws.amazon.com/opensearch-service/latest/developerguide/managedomains-configuration-changes#validation-check
3135
3295
  #
3136
3296
  # @return [Types::UpdateDomainConfigResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3137
3297
  #
3138
3298
  # * {Types::UpdateDomainConfigResponse#domain_config #domain_config} => Types::DomainConfig
3139
3299
  # * {Types::UpdateDomainConfigResponse#dry_run_results #dry_run_results} => Types::DryRunResults
3300
+ # * {Types::UpdateDomainConfigResponse#dry_run_progress_status #dry_run_progress_status} => Types::DryRunProgressStatus
3140
3301
  #
3141
3302
  # @example Request syntax with placeholder values
3142
3303
  #
@@ -3240,6 +3401,7 @@ module Aws::OpenSearchService
3240
3401
  # ],
3241
3402
  # },
3242
3403
  # dry_run: false,
3404
+ # dry_run_mode: "Basic", # accepts Basic, Verbose
3243
3405
  # })
3244
3406
  #
3245
3407
  # @example Response structure
@@ -3379,6 +3541,13 @@ module Aws::OpenSearchService
3379
3541
  # resp.domain_config.change_progress_details.message #=> String
3380
3542
  # resp.dry_run_results.deployment_type #=> String
3381
3543
  # resp.dry_run_results.message #=> String
3544
+ # resp.dry_run_progress_status.dry_run_id #=> String
3545
+ # resp.dry_run_progress_status.dry_run_status #=> String
3546
+ # resp.dry_run_progress_status.creation_date #=> String
3547
+ # resp.dry_run_progress_status.update_date #=> String
3548
+ # resp.dry_run_progress_status.validation_failures #=> Array
3549
+ # resp.dry_run_progress_status.validation_failures[0].code #=> String
3550
+ # resp.dry_run_progress_status.validation_failures[0].message #=> String
3382
3551
  #
3383
3552
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/UpdateDomainConfig AWS API Documentation
3384
3553
  #
@@ -3569,7 +3738,7 @@ module Aws::OpenSearchService
3569
3738
  params: params,
3570
3739
  config: config)
3571
3740
  context[:gem_name] = 'aws-sdk-opensearchservice'
3572
- context[:gem_version] = '1.14.0'
3741
+ context[:gem_version] = '1.16.0'
3573
3742
  Seahorse::Client::Request.new(handlers, context)
3574
3743
  end
3575
3744
 
@@ -72,6 +72,8 @@ module Aws::OpenSearchService
72
72
  ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
73
73
  ConnectionAlias = Shapes::StringShape.new(name: 'ConnectionAlias')
74
74
  ConnectionId = Shapes::StringShape.new(name: 'ConnectionId')
75
+ ConnectionMode = Shapes::StringShape.new(name: 'ConnectionMode')
76
+ ConnectionProperties = Shapes::StructureShape.new(name: 'ConnectionProperties')
75
77
  ConnectionStatusMessage = Shapes::StringShape.new(name: 'ConnectionStatusMessage')
76
78
  CreateDomainRequest = Shapes::StructureShape.new(name: 'CreateDomainRequest')
77
79
  CreateDomainResponse = Shapes::StructureShape.new(name: 'CreateDomainResponse')
@@ -105,6 +107,8 @@ module Aws::OpenSearchService
105
107
  DescribeDomainResponse = Shapes::StructureShape.new(name: 'DescribeDomainResponse')
106
108
  DescribeDomainsRequest = Shapes::StructureShape.new(name: 'DescribeDomainsRequest')
107
109
  DescribeDomainsResponse = Shapes::StructureShape.new(name: 'DescribeDomainsResponse')
110
+ DescribeDryRunProgressRequest = Shapes::StructureShape.new(name: 'DescribeDryRunProgressRequest')
111
+ DescribeDryRunProgressResponse = Shapes::StructureShape.new(name: 'DescribeDryRunProgressResponse')
108
112
  DescribeInboundConnectionsRequest = Shapes::StructureShape.new(name: 'DescribeInboundConnectionsRequest')
109
113
  DescribeInboundConnectionsResponse = Shapes::StructureShape.new(name: 'DescribeInboundConnectionsResponse')
110
114
  DescribeInstanceTypeLimitsRequest = Shapes::StructureShape.new(name: 'DescribeInstanceTypeLimitsRequest')
@@ -147,6 +151,8 @@ module Aws::OpenSearchService
147
151
  DomainStatusList = Shapes::ListShape.new(name: 'DomainStatusList')
148
152
  Double = Shapes::FloatShape.new(name: 'Double')
149
153
  DryRun = Shapes::BooleanShape.new(name: 'DryRun')
154
+ DryRunMode = Shapes::StringShape.new(name: 'DryRunMode')
155
+ DryRunProgressStatus = Shapes::StructureShape.new(name: 'DryRunProgressStatus')
150
156
  DryRunResults = Shapes::StructureShape.new(name: 'DryRunResults')
151
157
  Duration = Shapes::StructureShape.new(name: 'Duration')
152
158
  DurationValue = Shapes::IntegerShape.new(name: 'DurationValue')
@@ -332,6 +338,8 @@ module Aws::OpenSearchService
332
338
  VPCDerivedInfoStatus = Shapes::StructureShape.new(name: 'VPCDerivedInfoStatus')
333
339
  VPCOptions = Shapes::StructureShape.new(name: 'VPCOptions')
334
340
  ValidationException = Shapes::StructureShape.new(name: 'ValidationException')
341
+ ValidationFailure = Shapes::StructureShape.new(name: 'ValidationFailure')
342
+ ValidationFailures = Shapes::ListShape.new(name: 'ValidationFailures')
335
343
  ValueStringList = Shapes::ListShape.new(name: 'ValueStringList')
336
344
  VersionList = Shapes::ListShape.new(name: 'VersionList')
337
345
  VersionStatus = Shapes::StructureShape.new(name: 'VersionStatus')
@@ -530,6 +538,9 @@ module Aws::OpenSearchService
530
538
 
531
539
  ConflictException.struct_class = Types::ConflictException
532
540
 
541
+ ConnectionProperties.add_member(:endpoint, Shapes::ShapeRef.new(shape: Endpoint, location_name: "Endpoint"))
542
+ ConnectionProperties.struct_class = Types::ConnectionProperties
543
+
533
544
  CreateDomainRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, required: true, location_name: "DomainName"))
534
545
  CreateDomainRequest.add_member(:engine_version, Shapes::ShapeRef.new(shape: VersionString, location_name: "EngineVersion"))
535
546
  CreateDomainRequest.add_member(:cluster_config, Shapes::ShapeRef.new(shape: ClusterConfig, location_name: "ClusterConfig"))
@@ -554,6 +565,7 @@ module Aws::OpenSearchService
554
565
  CreateOutboundConnectionRequest.add_member(:local_domain_info, Shapes::ShapeRef.new(shape: DomainInformationContainer, required: true, location_name: "LocalDomainInfo"))
555
566
  CreateOutboundConnectionRequest.add_member(:remote_domain_info, Shapes::ShapeRef.new(shape: DomainInformationContainer, required: true, location_name: "RemoteDomainInfo"))
556
567
  CreateOutboundConnectionRequest.add_member(:connection_alias, Shapes::ShapeRef.new(shape: ConnectionAlias, required: true, location_name: "ConnectionAlias"))
568
+ CreateOutboundConnectionRequest.add_member(:connection_mode, Shapes::ShapeRef.new(shape: ConnectionMode, location_name: "ConnectionMode"))
557
569
  CreateOutboundConnectionRequest.struct_class = Types::CreateOutboundConnectionRequest
558
570
 
559
571
  CreateOutboundConnectionResponse.add_member(:local_domain_info, Shapes::ShapeRef.new(shape: DomainInformationContainer, location_name: "LocalDomainInfo"))
@@ -561,6 +573,8 @@ module Aws::OpenSearchService
561
573
  CreateOutboundConnectionResponse.add_member(:connection_alias, Shapes::ShapeRef.new(shape: ConnectionAlias, location_name: "ConnectionAlias"))
562
574
  CreateOutboundConnectionResponse.add_member(:connection_status, Shapes::ShapeRef.new(shape: OutboundConnectionStatus, location_name: "ConnectionStatus"))
563
575
  CreateOutboundConnectionResponse.add_member(:connection_id, Shapes::ShapeRef.new(shape: ConnectionId, location_name: "ConnectionId"))
576
+ CreateOutboundConnectionResponse.add_member(:connection_mode, Shapes::ShapeRef.new(shape: ConnectionMode, location_name: "ConnectionMode"))
577
+ CreateOutboundConnectionResponse.add_member(:connection_properties, Shapes::ShapeRef.new(shape: ConnectionProperties, location_name: "ConnectionProperties"))
564
578
  CreateOutboundConnectionResponse.struct_class = Types::CreateOutboundConnectionResponse
565
579
 
566
580
  CreatePackageRequest.add_member(:package_name, Shapes::ShapeRef.new(shape: PackageName, required: true, location_name: "PackageName"))
@@ -644,6 +658,16 @@ module Aws::OpenSearchService
644
658
  DescribeDomainsResponse.add_member(:domain_status_list, Shapes::ShapeRef.new(shape: DomainStatusList, required: true, location_name: "DomainStatusList"))
645
659
  DescribeDomainsResponse.struct_class = Types::DescribeDomainsResponse
646
660
 
661
+ DescribeDryRunProgressRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, required: true, location: "uri", location_name: "DomainName"))
662
+ DescribeDryRunProgressRequest.add_member(:dry_run_id, Shapes::ShapeRef.new(shape: GUID, location: "querystring", location_name: "dryRunId"))
663
+ DescribeDryRunProgressRequest.add_member(:load_dry_run_config, Shapes::ShapeRef.new(shape: Boolean, location: "querystring", location_name: "loadDryRunConfig"))
664
+ DescribeDryRunProgressRequest.struct_class = Types::DescribeDryRunProgressRequest
665
+
666
+ DescribeDryRunProgressResponse.add_member(:dry_run_progress_status, Shapes::ShapeRef.new(shape: DryRunProgressStatus, location_name: "DryRunProgressStatus"))
667
+ DescribeDryRunProgressResponse.add_member(:dry_run_config, Shapes::ShapeRef.new(shape: DomainStatus, location_name: "DryRunConfig"))
668
+ DescribeDryRunProgressResponse.add_member(:dry_run_results, Shapes::ShapeRef.new(shape: DryRunResults, location_name: "DryRunResults"))
669
+ DescribeDryRunProgressResponse.struct_class = Types::DescribeDryRunProgressResponse
670
+
647
671
  DescribeInboundConnectionsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filters"))
648
672
  DescribeInboundConnectionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
649
673
  DescribeInboundConnectionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
@@ -802,6 +826,13 @@ module Aws::OpenSearchService
802
826
 
803
827
  DomainStatusList.member = Shapes::ShapeRef.new(shape: DomainStatus)
804
828
 
829
+ DryRunProgressStatus.add_member(:dry_run_id, Shapes::ShapeRef.new(shape: GUID, required: true, location_name: "DryRunId"))
830
+ DryRunProgressStatus.add_member(:dry_run_status, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DryRunStatus"))
831
+ DryRunProgressStatus.add_member(:creation_date, Shapes::ShapeRef.new(shape: String, required: true, location_name: "CreationDate"))
832
+ DryRunProgressStatus.add_member(:update_date, Shapes::ShapeRef.new(shape: String, required: true, location_name: "UpdateDate"))
833
+ DryRunProgressStatus.add_member(:validation_failures, Shapes::ShapeRef.new(shape: ValidationFailures, location_name: "ValidationFailures"))
834
+ DryRunProgressStatus.struct_class = Types::DryRunProgressStatus
835
+
805
836
  DryRunResults.add_member(:deployment_type, Shapes::ShapeRef.new(shape: DeploymentType, location_name: "DeploymentType"))
806
837
  DryRunResults.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
807
838
  DryRunResults.struct_class = Types::DryRunResults
@@ -879,6 +910,7 @@ module Aws::OpenSearchService
879
910
  InboundConnection.add_member(:remote_domain_info, Shapes::ShapeRef.new(shape: DomainInformationContainer, location_name: "RemoteDomainInfo"))
880
911
  InboundConnection.add_member(:connection_id, Shapes::ShapeRef.new(shape: ConnectionId, location_name: "ConnectionId"))
881
912
  InboundConnection.add_member(:connection_status, Shapes::ShapeRef.new(shape: InboundConnectionStatus, location_name: "ConnectionStatus"))
913
+ InboundConnection.add_member(:connection_mode, Shapes::ShapeRef.new(shape: ConnectionMode, location_name: "ConnectionMode"))
882
914
  InboundConnection.struct_class = Types::InboundConnection
883
915
 
884
916
  InboundConnectionStatus.add_member(:status_code, Shapes::ShapeRef.new(shape: InboundConnectionStatusCode, location_name: "StatusCode"))
@@ -1033,6 +1065,8 @@ module Aws::OpenSearchService
1033
1065
  OutboundConnection.add_member(:connection_id, Shapes::ShapeRef.new(shape: ConnectionId, location_name: "ConnectionId"))
1034
1066
  OutboundConnection.add_member(:connection_alias, Shapes::ShapeRef.new(shape: ConnectionAlias, location_name: "ConnectionAlias"))
1035
1067
  OutboundConnection.add_member(:connection_status, Shapes::ShapeRef.new(shape: OutboundConnectionStatus, location_name: "ConnectionStatus"))
1068
+ OutboundConnection.add_member(:connection_mode, Shapes::ShapeRef.new(shape: ConnectionMode, location_name: "ConnectionMode"))
1069
+ OutboundConnection.add_member(:connection_properties, Shapes::ShapeRef.new(shape: ConnectionProperties, location_name: "ConnectionProperties"))
1036
1070
  OutboundConnection.struct_class = Types::OutboundConnection
1037
1071
 
1038
1072
  OutboundConnectionStatus.add_member(:status_code, Shapes::ShapeRef.new(shape: OutboundConnectionStatusCode, location_name: "StatusCode"))
@@ -1215,10 +1249,12 @@ module Aws::OpenSearchService
1215
1249
  UpdateDomainConfigRequest.add_member(:advanced_security_options, Shapes::ShapeRef.new(shape: AdvancedSecurityOptionsInput, location_name: "AdvancedSecurityOptions"))
1216
1250
  UpdateDomainConfigRequest.add_member(:auto_tune_options, Shapes::ShapeRef.new(shape: AutoTuneOptions, location_name: "AutoTuneOptions"))
1217
1251
  UpdateDomainConfigRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: DryRun, location_name: "DryRun"))
1252
+ UpdateDomainConfigRequest.add_member(:dry_run_mode, Shapes::ShapeRef.new(shape: DryRunMode, location_name: "DryRunMode"))
1218
1253
  UpdateDomainConfigRequest.struct_class = Types::UpdateDomainConfigRequest
1219
1254
 
1220
1255
  UpdateDomainConfigResponse.add_member(:domain_config, Shapes::ShapeRef.new(shape: DomainConfig, required: true, location_name: "DomainConfig"))
1221
1256
  UpdateDomainConfigResponse.add_member(:dry_run_results, Shapes::ShapeRef.new(shape: DryRunResults, location_name: "DryRunResults"))
1257
+ UpdateDomainConfigResponse.add_member(:dry_run_progress_status, Shapes::ShapeRef.new(shape: DryRunProgressStatus, location_name: "DryRunProgressStatus"))
1222
1258
  UpdateDomainConfigResponse.struct_class = Types::UpdateDomainConfigResponse
1223
1259
 
1224
1260
  UpdatePackageRequest.add_member(:package_id, Shapes::ShapeRef.new(shape: PackageID, required: true, location_name: "PackageID"))
@@ -1283,6 +1319,12 @@ module Aws::OpenSearchService
1283
1319
 
1284
1320
  ValidationException.struct_class = Types::ValidationException
1285
1321
 
1322
+ ValidationFailure.add_member(:code, Shapes::ShapeRef.new(shape: String, location_name: "Code"))
1323
+ ValidationFailure.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
1324
+ ValidationFailure.struct_class = Types::ValidationFailure
1325
+
1326
+ ValidationFailures.member = Shapes::ShapeRef.new(shape: ValidationFailure)
1327
+
1286
1328
  ValueStringList.member = Shapes::ShapeRef.new(shape: NonEmptyString)
1287
1329
 
1288
1330
  VersionList.member = Shapes::ShapeRef.new(shape: VersionString)
@@ -1579,6 +1621,19 @@ module Aws::OpenSearchService
1579
1621
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1580
1622
  end)
1581
1623
 
1624
+ api.add_operation(:describe_dry_run_progress, Seahorse::Model::Operation.new.tap do |o|
1625
+ o.name = "DescribeDryRunProgress"
1626
+ o.http_method = "GET"
1627
+ o.http_request_uri = "/2021-01-01/opensearch/domain/{DomainName}/dryRun"
1628
+ o.input = Shapes::ShapeRef.new(shape: DescribeDryRunProgressRequest)
1629
+ o.output = Shapes::ShapeRef.new(shape: DescribeDryRunProgressResponse)
1630
+ o.errors << Shapes::ShapeRef.new(shape: BaseException)
1631
+ o.errors << Shapes::ShapeRef.new(shape: InternalException)
1632
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1633
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1634
+ o.errors << Shapes::ShapeRef.new(shape: DisabledOperationException)
1635
+ end)
1636
+
1582
1637
  api.add_operation(:describe_inbound_connections, Seahorse::Model::Operation.new.tap do |o|
1583
1638
  o.name = "DescribeInboundConnections"
1584
1639
  o.http_method = "POST"
@@ -50,6 +50,9 @@ module Aws::OpenSearchService
50
50
 
51
51
  def initialize(options = {})
52
52
  self[:region] = options[:region]
53
+ if self[:region].nil?
54
+ raise ArgumentError, "Missing required EndpointParameter: :region"
55
+ end
53
56
  self[:use_dual_stack] = options[:use_dual_stack]
54
57
  self[:use_dual_stack] = false if self[:use_dual_stack].nil?
55
58
  if self[:use_dual_stack].nil?
@@ -15,7 +15,7 @@ module Aws::OpenSearchService
15
15
  use_fips = parameters.use_fips
16
16
  endpoint = parameters.endpoint
17
17
  if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
- if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
18
+ if Aws::Endpoints::Matchers.set?(endpoint)
19
19
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
20
  raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
21
  end
@@ -277,6 +277,20 @@ module Aws::OpenSearchService
277
277
  end
278
278
  end
279
279
 
280
+ class DescribeDryRunProgress
281
+ def self.build(context)
282
+ unless context.config.regional_endpoint
283
+ endpoint = context.config.endpoint.to_s
284
+ end
285
+ Aws::OpenSearchService::EndpointParameters.new(
286
+ region: context.config.region,
287
+ use_dual_stack: context.config.use_dualstack_endpoint,
288
+ use_fips: context.config.use_fips_endpoint,
289
+ endpoint: endpoint,
290
+ )
291
+ end
292
+ end
293
+
280
294
  class DescribeInboundConnections
281
295
  def self.build(context)
282
296
  unless context.config.regional_endpoint
@@ -94,6 +94,8 @@ module Aws::OpenSearchService
94
94
  Aws::OpenSearchService::Endpoints::DescribeDomainConfig.build(context)
95
95
  when :describe_domains
96
96
  Aws::OpenSearchService::Endpoints::DescribeDomains.build(context)
97
+ when :describe_dry_run_progress
98
+ Aws::OpenSearchService::Endpoints::DescribeDryRunProgress.build(context)
97
99
  when :describe_inbound_connections
98
100
  Aws::OpenSearchService::Endpoints::DescribeInboundConnections.build(context)
99
101
  when :describe_instance_type_limits
@@ -63,8 +63,8 @@ module Aws::OpenSearchService
63
63
  include Aws::Structure
64
64
  end
65
65
 
66
- # An error occurred because user does not have permissions to access the
67
- # resource. Returns HTTP status code 403.
66
+ # An error occurred because you don't have permissions to access the
67
+ # resource.
68
68
  #
69
69
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/AccessDeniedException AWS API Documentation
70
70
  #
@@ -963,12 +963,26 @@ module Aws::OpenSearchService
963
963
  end
964
964
 
965
965
  # An error occurred because the client attempts to remove a resource
966
- # that is currently in use. Returns HTTP status code 409.
966
+ # that's currently in use.
967
967
  #
968
968
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/ConflictException AWS API Documentation
969
969
  #
970
970
  class ConflictException < Aws::EmptyStructure; end
971
971
 
972
+ # The connection properties of an outbound connection.
973
+ #
974
+ # @!attribute [rw] endpoint
975
+ # The endpoint of the remote domain.
976
+ # @return [String]
977
+ #
978
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/ConnectionProperties AWS API Documentation
979
+ #
980
+ class ConnectionProperties < Struct.new(
981
+ :endpoint)
982
+ SENSITIVE = []
983
+ include Aws::Structure
984
+ end
985
+
972
986
  # @!attribute [rw] domain_name
973
987
  # Name of the OpenSearch Service domain to create. Domain names are
974
988
  # unique across the domains owned by an account within an Amazon Web
@@ -1142,12 +1156,17 @@ module Aws::OpenSearchService
1142
1156
  # Name of the connection.
1143
1157
  # @return [String]
1144
1158
  #
1159
+ # @!attribute [rw] connection_mode
1160
+ # The connection mode.
1161
+ # @return [String]
1162
+ #
1145
1163
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/CreateOutboundConnectionRequest AWS API Documentation
1146
1164
  #
1147
1165
  class CreateOutboundConnectionRequest < Struct.new(
1148
1166
  :local_domain_info,
1149
1167
  :remote_domain_info,
1150
- :connection_alias)
1168
+ :connection_alias,
1169
+ :connection_mode)
1151
1170
  SENSITIVE = []
1152
1171
  include Aws::Structure
1153
1172
  end
@@ -1176,6 +1195,14 @@ module Aws::OpenSearchService
1176
1195
  # used for subsequent operations on the connection.
1177
1196
  # @return [String]
1178
1197
  #
1198
+ # @!attribute [rw] connection_mode
1199
+ # The connection mode.
1200
+ # @return [String]
1201
+ #
1202
+ # @!attribute [rw] connection_properties
1203
+ # The `ConnectionProperties` for the newly created connection.
1204
+ # @return [Types::ConnectionProperties]
1205
+ #
1179
1206
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/CreateOutboundConnectionResponse AWS API Documentation
1180
1207
  #
1181
1208
  class CreateOutboundConnectionResponse < Struct.new(
@@ -1183,7 +1210,9 @@ module Aws::OpenSearchService
1183
1210
  :remote_domain_info,
1184
1211
  :connection_alias,
1185
1212
  :connection_status,
1186
- :connection_id)
1213
+ :connection_id,
1214
+ :connection_mode,
1215
+ :connection_properties)
1187
1216
  SENSITIVE = []
1188
1217
  include Aws::Structure
1189
1218
  end
@@ -1232,7 +1261,8 @@ module Aws::OpenSearchService
1232
1261
  end
1233
1262
 
1234
1263
  # @!attribute [rw] domain_arn
1235
- # The Amazon Resource Name (ARN) of the domain to grant access to.
1264
+ # The Amazon Resource Name (ARN) of the domain to create the endpoint
1265
+ # for.
1236
1266
  # @return [String]
1237
1267
  #
1238
1268
  # @!attribute [rw] vpc_options
@@ -1590,6 +1620,52 @@ module Aws::OpenSearchService
1590
1620
  include Aws::Structure
1591
1621
  end
1592
1622
 
1623
+ # @!attribute [rw] domain_name
1624
+ # The name of the domain.
1625
+ # @return [String]
1626
+ #
1627
+ # @!attribute [rw] dry_run_id
1628
+ # The unique identifier of the dry run.
1629
+ # @return [String]
1630
+ #
1631
+ # @!attribute [rw] load_dry_run_config
1632
+ # Whether to include the configuration of the dry run in the response.
1633
+ # The configuration specifies the updates that you're planning to
1634
+ # make on the domain.
1635
+ # @return [Boolean]
1636
+ #
1637
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DescribeDryRunProgressRequest AWS API Documentation
1638
+ #
1639
+ class DescribeDryRunProgressRequest < Struct.new(
1640
+ :domain_name,
1641
+ :dry_run_id,
1642
+ :load_dry_run_config)
1643
+ SENSITIVE = []
1644
+ include Aws::Structure
1645
+ end
1646
+
1647
+ # @!attribute [rw] dry_run_progress_status
1648
+ # The current status of the dry run, including any validation errors.
1649
+ # @return [Types::DryRunProgressStatus]
1650
+ #
1651
+ # @!attribute [rw] dry_run_config
1652
+ # Details about the changes you're planning to make on the domain.
1653
+ # @return [Types::DomainStatus]
1654
+ #
1655
+ # @!attribute [rw] dry_run_results
1656
+ # The results of the dry run.
1657
+ # @return [Types::DryRunResults]
1658
+ #
1659
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DescribeDryRunProgressResponse AWS API Documentation
1660
+ #
1661
+ class DescribeDryRunProgressResponse < Struct.new(
1662
+ :dry_run_progress_status,
1663
+ :dry_run_config,
1664
+ :dry_run_results)
1665
+ SENSITIVE = []
1666
+ include Aws::Structure
1667
+ end
1668
+
1593
1669
  # Container for the parameters to the `DescribeInboundConnections`
1594
1670
  # operation.
1595
1671
  #
@@ -1946,8 +2022,8 @@ module Aws::OpenSearchService
1946
2022
  include Aws::Structure
1947
2023
  end
1948
2024
 
1949
- # An error occured because the client wanted to access a not supported
1950
- # operation. Gives http status code of 409.
2025
+ # An error occured because the client wanted to access an unsupported
2026
+ # operation.
1951
2027
  #
1952
2028
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DisabledOperationException AWS API Documentation
1953
2029
  #
@@ -2403,6 +2479,40 @@ module Aws::OpenSearchService
2403
2479
  include Aws::Structure
2404
2480
  end
2405
2481
 
2482
+ # Information about the progress of a pre-upgrade dry run analysis.
2483
+ #
2484
+ # @!attribute [rw] dry_run_id
2485
+ # The unique identifier of the dry run.
2486
+ # @return [String]
2487
+ #
2488
+ # @!attribute [rw] dry_run_status
2489
+ # The current status of the dry run.
2490
+ # @return [String]
2491
+ #
2492
+ # @!attribute [rw] creation_date
2493
+ # The timestamp when the dry run was initiated.
2494
+ # @return [String]
2495
+ #
2496
+ # @!attribute [rw] update_date
2497
+ # The timestamp when the dry run was last updated.
2498
+ # @return [String]
2499
+ #
2500
+ # @!attribute [rw] validation_failures
2501
+ # Any validation failures that occurred as a result of the dry run.
2502
+ # @return [Array<Types::ValidationFailure>]
2503
+ #
2504
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DryRunProgressStatus AWS API Documentation
2505
+ #
2506
+ class DryRunProgressStatus < Struct.new(
2507
+ :dry_run_id,
2508
+ :dry_run_status,
2509
+ :creation_date,
2510
+ :update_date,
2511
+ :validation_failures)
2512
+ SENSITIVE = []
2513
+ include Aws::Structure
2514
+ end
2515
+
2406
2516
  # Results of a dry run performed in an update domain request.
2407
2517
  #
2408
2518
  # @!attribute [rw] deployment_type
@@ -2809,13 +2919,18 @@ module Aws::OpenSearchService
2809
2919
  # The current status of the connection.
2810
2920
  # @return [Types::InboundConnectionStatus]
2811
2921
  #
2922
+ # @!attribute [rw] connection_mode
2923
+ # The connection mode.
2924
+ # @return [String]
2925
+ #
2812
2926
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/InboundConnection AWS API Documentation
2813
2927
  #
2814
2928
  class InboundConnection < Struct.new(
2815
2929
  :local_domain_info,
2816
2930
  :remote_domain_info,
2817
2931
  :connection_id,
2818
- :connection_status)
2932
+ :connection_status,
2933
+ :connection_mode)
2819
2934
  SENSITIVE = []
2820
2935
  include Aws::Structure
2821
2936
  end
@@ -2943,30 +3058,29 @@ module Aws::OpenSearchService
2943
3058
  include Aws::Structure
2944
3059
  end
2945
3060
 
2946
- # The request processing has failed because of an unknown error,
2947
- # exception or failure (the failure is internal to the service) . Gives
2948
- # http status code of 500.
3061
+ # Request processing failed because of an unknown error, exception, or
3062
+ # internal failure.
2949
3063
  #
2950
3064
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/InternalException AWS API Documentation
2951
3065
  #
2952
3066
  class InternalException < Aws::EmptyStructure; end
2953
3067
 
2954
- # The request processing has failed because of invalid pagination token
2955
- # provided by customer. Returns an HTTP status code of 400.
3068
+ # The request processing has failed because you provided an invalid
3069
+ # pagination token.
2956
3070
  #
2957
3071
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/InvalidPaginationTokenException AWS API Documentation
2958
3072
  #
2959
3073
  class InvalidPaginationTokenException < Aws::EmptyStructure; end
2960
3074
 
2961
- # An exception for trying to create or access sub-resource that is
2962
- # either invalid or not supported. Gives http status code of 409.
3075
+ # An exception for trying to create or access a sub-resource that's
3076
+ # either invalid or not supported.
2963
3077
  #
2964
3078
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/InvalidTypeException AWS API Documentation
2965
3079
  #
2966
3080
  class InvalidTypeException < Aws::EmptyStructure; end
2967
3081
 
2968
- # An exception for trying to create more than allowed resources or
2969
- # sub-resources. Gives http status code of 409.
3082
+ # An exception for trying to create more than the allowed number of
3083
+ # resources or sub-resources.
2970
3084
  #
2971
3085
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/LimitExceededException AWS API Documentation
2972
3086
  #
@@ -3557,6 +3671,14 @@ module Aws::OpenSearchService
3557
3671
  # Status of the connection.
3558
3672
  # @return [Types::OutboundConnectionStatus]
3559
3673
  #
3674
+ # @!attribute [rw] connection_mode
3675
+ # The connection mode.
3676
+ # @return [String]
3677
+ #
3678
+ # @!attribute [rw] connection_properties
3679
+ # Properties for the outbound connection.
3680
+ # @return [Types::ConnectionProperties]
3681
+ #
3560
3682
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/OutboundConnection AWS API Documentation
3561
3683
  #
3562
3684
  class OutboundConnection < Struct.new(
@@ -3564,7 +3686,9 @@ module Aws::OpenSearchService
3564
3686
  :remote_domain_info,
3565
3687
  :connection_id,
3566
3688
  :connection_alias,
3567
- :connection_status)
3689
+ :connection_status,
3690
+ :connection_mode,
3691
+ :connection_properties)
3568
3692
  SENSITIVE = []
3569
3693
  include Aws::Structure
3570
3694
  end
@@ -3966,15 +4090,13 @@ module Aws::OpenSearchService
3966
4090
  include Aws::Structure
3967
4091
  end
3968
4092
 
3969
- # An exception for creating a resource that already exists. Gives http
3970
- # status code of 400.
4093
+ # An exception for creating a resource that already exists.
3971
4094
  #
3972
4095
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/ResourceAlreadyExistsException AWS API Documentation
3973
4096
  #
3974
4097
  class ResourceAlreadyExistsException < Aws::EmptyStructure; end
3975
4098
 
3976
- # An exception for accessing or deleting a resource that does not exist.
3977
- # Gives http status code of 400.
4099
+ # An exception for accessing or deleting a resource that doesn't exist.
3978
4100
  #
3979
4101
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/ResourceNotFoundException AWS API Documentation
3980
4102
  #
@@ -4462,10 +4584,25 @@ module Aws::OpenSearchService
4462
4584
  #
4463
4585
  # @!attribute [rw] dry_run
4464
4586
  # This flag, when set to True, specifies whether the `UpdateDomain`
4465
- # request should return the results of validation check without
4466
- # actually applying the change.
4587
+ # request should return the results of a dry run analysis without
4588
+ # actually applying the change. A dry run determines what type of
4589
+ # deployment the update will cause.
4467
4590
  # @return [Boolean]
4468
4591
  #
4592
+ # @!attribute [rw] dry_run_mode
4593
+ # The type of dry run to perform.
4594
+ #
4595
+ # * `Basic` only returns the type of deployment (blue/green or
4596
+ # dynamic) that the update will cause.
4597
+ #
4598
+ # * `Verbose` runs an additional check to validate the changes you're
4599
+ # making. For more information, see [Validating a domain update][1].
4600
+ #
4601
+ #
4602
+ #
4603
+ # [1]: https://docs.aws.amazon.com/opensearch-service/latest/developerguide/managedomains-configuration-changes#validation-check
4604
+ # @return [String]
4605
+ #
4469
4606
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/UpdateDomainConfigRequest AWS API Documentation
4470
4607
  #
4471
4608
  class UpdateDomainConfigRequest < Struct.new(
@@ -4483,7 +4620,8 @@ module Aws::OpenSearchService
4483
4620
  :node_to_node_encryption_options,
4484
4621
  :advanced_security_options,
4485
4622
  :auto_tune_options,
4486
- :dry_run)
4623
+ :dry_run,
4624
+ :dry_run_mode)
4487
4625
  SENSITIVE = []
4488
4626
  include Aws::Structure
4489
4627
  end
@@ -4496,14 +4634,19 @@ module Aws::OpenSearchService
4496
4634
  # @return [Types::DomainConfig]
4497
4635
  #
4498
4636
  # @!attribute [rw] dry_run_results
4499
- # Results of a dry run performed in an update domain request.
4637
+ # Results of the dry run performed in the update domain request.
4500
4638
  # @return [Types::DryRunResults]
4501
4639
  #
4640
+ # @!attribute [rw] dry_run_progress_status
4641
+ # The status of the dry run being performed on the domain, if any.
4642
+ # @return [Types::DryRunProgressStatus]
4643
+ #
4502
4644
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/UpdateDomainConfigResponse AWS API Documentation
4503
4645
  #
4504
4646
  class UpdateDomainConfigResponse < Struct.new(
4505
4647
  :domain_config,
4506
- :dry_run_results)
4648
+ :dry_run_results,
4649
+ :dry_run_progress_status)
4507
4650
  SENSITIVE = []
4508
4651
  include Aws::Structure
4509
4652
  end
@@ -4834,13 +4977,32 @@ module Aws::OpenSearchService
4834
4977
  include Aws::Structure
4835
4978
  end
4836
4979
 
4837
- # An exception for missing / invalid input fields. Gives http status
4838
- # code of 400.
4980
+ # An exception for missing or invalid input fields.
4839
4981
  #
4840
4982
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/ValidationException AWS API Documentation
4841
4983
  #
4842
4984
  class ValidationException < Aws::EmptyStructure; end
4843
4985
 
4986
+ # A validation failure that occurred as the result of a pre-update
4987
+ # validation check (verbose dry run) on a domain.
4988
+ #
4989
+ # @!attribute [rw] code
4990
+ # The error code of the failure.
4991
+ # @return [String]
4992
+ #
4993
+ # @!attribute [rw] message
4994
+ # A message corresponding to the failure.
4995
+ # @return [String]
4996
+ #
4997
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/ValidationFailure AWS API Documentation
4998
+ #
4999
+ class ValidationFailure < Struct.new(
5000
+ :code,
5001
+ :message)
5002
+ SENSITIVE = []
5003
+ include Aws::Structure
5004
+ end
5005
+
4844
5006
  # The status of the the OpenSearch or Elasticsearch version options for
4845
5007
  # the specified Amazon OpenSearch Service domain.
4846
5008
  #
@@ -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.14.0'
55
+ GEM_VERSION = '1.16.0'
56
56
 
57
57
  end
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.14.0
4
+ version: 1.16.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-01-18 00:00:00.000000000 Z
11
+ date: 2023-01-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core