aws-sdk-opensearchservice 1.60.0 → 1.61.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-opensearchservice/client.rb +283 -11
- data/lib/aws-sdk-opensearchservice/client_api.rb +132 -0
- data/lib/aws-sdk-opensearchservice/types.rb +332 -6
- data/lib/aws-sdk-opensearchservice.rb +1 -1
- data/sig/client.rbs +82 -4
- data/sig/types.rbs +93 -4
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c1871e8cd2134cc30b4f0b237a7c32776be9025f6830456fa03df7fb92f17c57
|
4
|
+
data.tar.gz: 211bcd7575c3115d6b48015bffaa9e6b43ad9781e1116908ddcf6342edfae063
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b549daa07404abe782e60e673ffe87da0f2beb881ba76719be743c55197f23b1d98c015f478a698e3eb13e49c4b7a279883362f068e0e0a1f73a4b170a8f7372
|
7
|
+
data.tar.gz: 54187ceccbb70d1f10bf343fa945ac8bfab5eaa563407e7d1bdcbad6d598a07c56a5a8c1e60836265ea1d3f40ffad3eea710bb7924c0ca6b96f5b3107209c128
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.61.0 (2024-11-11)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Adds Support for new AssociatePackages and DissociatePackages API in Amazon OpenSearch Service that allows association and dissociation operations to be carried out on multiple packages at the same time.
|
8
|
+
|
4
9
|
1.60.0 (2024-11-06)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.61.0
|
@@ -595,6 +595,14 @@ module Aws::OpenSearchService
|
|
595
595
|
# @option params [required, String] :domain_name
|
596
596
|
# Name of the domain to associate the package with.
|
597
597
|
#
|
598
|
+
# @option params [Array<String>] :prerequisite_package_id_list
|
599
|
+
# A list of package IDs that must be associated with the domain before
|
600
|
+
# the package specified in the request can be associated.
|
601
|
+
#
|
602
|
+
# @option params [Types::PackageAssociationConfiguration] :association_configuration
|
603
|
+
# The configuration for associating a package with an Amazon OpenSearch
|
604
|
+
# Service domain.
|
605
|
+
#
|
598
606
|
# @return [Types::AssociatePackageResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
599
607
|
#
|
600
608
|
# * {Types::AssociatePackageResponse#domain_package_details #domain_package_details} => Types::DomainPackageDetails
|
@@ -604,20 +612,31 @@ module Aws::OpenSearchService
|
|
604
612
|
# resp = client.associate_package({
|
605
613
|
# package_id: "PackageID", # required
|
606
614
|
# domain_name: "DomainName", # required
|
615
|
+
# prerequisite_package_id_list: ["PackageID"],
|
616
|
+
# association_configuration: {
|
617
|
+
# key_store_access_option: {
|
618
|
+
# key_access_role_arn: "RoleArn",
|
619
|
+
# key_store_access_enabled: false, # required
|
620
|
+
# },
|
621
|
+
# },
|
607
622
|
# })
|
608
623
|
#
|
609
624
|
# @example Response structure
|
610
625
|
#
|
611
626
|
# resp.domain_package_details.package_id #=> String
|
612
627
|
# resp.domain_package_details.package_name #=> String
|
613
|
-
# resp.domain_package_details.package_type #=> String, one of "TXT-DICTIONARY", "ZIP-PLUGIN"
|
628
|
+
# resp.domain_package_details.package_type #=> String, one of "TXT-DICTIONARY", "ZIP-PLUGIN", "PACKAGE-LICENSE", "PACKAGE-CONFIG"
|
614
629
|
# resp.domain_package_details.last_updated #=> Time
|
615
630
|
# resp.domain_package_details.domain_name #=> String
|
616
631
|
# resp.domain_package_details.domain_package_status #=> String, one of "ASSOCIATING", "ASSOCIATION_FAILED", "ACTIVE", "DISSOCIATING", "DISSOCIATION_FAILED"
|
617
632
|
# resp.domain_package_details.package_version #=> String
|
633
|
+
# resp.domain_package_details.prerequisite_package_id_list #=> Array
|
634
|
+
# resp.domain_package_details.prerequisite_package_id_list[0] #=> String
|
618
635
|
# resp.domain_package_details.reference_path #=> String
|
619
636
|
# resp.domain_package_details.error_details.error_type #=> String
|
620
637
|
# resp.domain_package_details.error_details.error_message #=> String
|
638
|
+
# resp.domain_package_details.association_configuration.key_store_access_option.key_access_role_arn #=> String
|
639
|
+
# resp.domain_package_details.association_configuration.key_store_access_option.key_store_access_enabled #=> Boolean
|
621
640
|
#
|
622
641
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/AssociatePackage AWS API Documentation
|
623
642
|
#
|
@@ -628,6 +647,67 @@ module Aws::OpenSearchService
|
|
628
647
|
req.send_request(options)
|
629
648
|
end
|
630
649
|
|
650
|
+
# Operation in the Amazon OpenSearch Service API for associating
|
651
|
+
# multiple packages with a domain simultaneously.
|
652
|
+
#
|
653
|
+
# @option params [required, Array<Types::PackageDetailsForAssociation>] :package_list
|
654
|
+
# A list of packages and their prerequisites to be associated with a
|
655
|
+
# domain.
|
656
|
+
#
|
657
|
+
# @option params [required, String] :domain_name
|
658
|
+
# The name of an OpenSearch Service domain. Domain names are unique
|
659
|
+
# across the domains owned by an account within an Amazon Web Services
|
660
|
+
# Region.
|
661
|
+
#
|
662
|
+
# @return [Types::AssociatePackagesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
663
|
+
#
|
664
|
+
# * {Types::AssociatePackagesResponse#domain_package_details_list #domain_package_details_list} => Array<Types::DomainPackageDetails>
|
665
|
+
#
|
666
|
+
# @example Request syntax with placeholder values
|
667
|
+
#
|
668
|
+
# resp = client.associate_packages({
|
669
|
+
# package_list: [ # required
|
670
|
+
# {
|
671
|
+
# package_id: "PackageID", # required
|
672
|
+
# prerequisite_package_id_list: ["PackageID"],
|
673
|
+
# association_configuration: {
|
674
|
+
# key_store_access_option: {
|
675
|
+
# key_access_role_arn: "RoleArn",
|
676
|
+
# key_store_access_enabled: false, # required
|
677
|
+
# },
|
678
|
+
# },
|
679
|
+
# },
|
680
|
+
# ],
|
681
|
+
# domain_name: "DomainName", # required
|
682
|
+
# })
|
683
|
+
#
|
684
|
+
# @example Response structure
|
685
|
+
#
|
686
|
+
# resp.domain_package_details_list #=> Array
|
687
|
+
# resp.domain_package_details_list[0].package_id #=> String
|
688
|
+
# resp.domain_package_details_list[0].package_name #=> String
|
689
|
+
# resp.domain_package_details_list[0].package_type #=> String, one of "TXT-DICTIONARY", "ZIP-PLUGIN", "PACKAGE-LICENSE", "PACKAGE-CONFIG"
|
690
|
+
# resp.domain_package_details_list[0].last_updated #=> Time
|
691
|
+
# resp.domain_package_details_list[0].domain_name #=> String
|
692
|
+
# resp.domain_package_details_list[0].domain_package_status #=> String, one of "ASSOCIATING", "ASSOCIATION_FAILED", "ACTIVE", "DISSOCIATING", "DISSOCIATION_FAILED"
|
693
|
+
# resp.domain_package_details_list[0].package_version #=> String
|
694
|
+
# resp.domain_package_details_list[0].prerequisite_package_id_list #=> Array
|
695
|
+
# resp.domain_package_details_list[0].prerequisite_package_id_list[0] #=> String
|
696
|
+
# resp.domain_package_details_list[0].reference_path #=> String
|
697
|
+
# resp.domain_package_details_list[0].error_details.error_type #=> String
|
698
|
+
# resp.domain_package_details_list[0].error_details.error_message #=> String
|
699
|
+
# resp.domain_package_details_list[0].association_configuration.key_store_access_option.key_access_role_arn #=> String
|
700
|
+
# resp.domain_package_details_list[0].association_configuration.key_store_access_option.key_store_access_enabled #=> Boolean
|
701
|
+
#
|
702
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/AssociatePackages AWS API Documentation
|
703
|
+
#
|
704
|
+
# @overload associate_packages(params = {})
|
705
|
+
# @param [Hash] params ({})
|
706
|
+
def associate_packages(params = {}, options = {})
|
707
|
+
req = build_request(:associate_packages, params)
|
708
|
+
req.send_request(options)
|
709
|
+
end
|
710
|
+
|
631
711
|
# Provides access to an Amazon OpenSearch Service domain through the use
|
632
712
|
# of an interface VPC endpoint.
|
633
713
|
#
|
@@ -1369,6 +1449,21 @@ module Aws::OpenSearchService
|
|
1369
1449
|
# @option params [required, Types::PackageSource] :package_source
|
1370
1450
|
# The Amazon S3 location from which to import the package.
|
1371
1451
|
#
|
1452
|
+
# @option params [Types::PackageConfiguration] :package_configuration
|
1453
|
+
# The configuration parameters for the package being created.
|
1454
|
+
#
|
1455
|
+
# @option params [String] :engine_version
|
1456
|
+
# The version of the Amazon OpenSearch Service engine for which is
|
1457
|
+
# compatible with the package. This can only be specified for package
|
1458
|
+
# type `ZIP-PLUGIN`
|
1459
|
+
#
|
1460
|
+
# @option params [Types::PackageVendingOptions] :package_vending_options
|
1461
|
+
# The vending options for the package being created. They determine if
|
1462
|
+
# the package can be vended to other users.
|
1463
|
+
#
|
1464
|
+
# @option params [Types::PackageEncryptionOptions] :package_encryption_options
|
1465
|
+
# The encryption parameters for the package being created.
|
1466
|
+
#
|
1372
1467
|
# @return [Types::CreatePackageResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1373
1468
|
#
|
1374
1469
|
# * {Types::CreatePackageResponse#package_details #package_details} => Types::PackageDetails
|
@@ -1377,19 +1472,33 @@ module Aws::OpenSearchService
|
|
1377
1472
|
#
|
1378
1473
|
# resp = client.create_package({
|
1379
1474
|
# package_name: "PackageName", # required
|
1380
|
-
# package_type: "TXT-DICTIONARY", # required, accepts TXT-DICTIONARY, ZIP-PLUGIN
|
1475
|
+
# package_type: "TXT-DICTIONARY", # required, accepts TXT-DICTIONARY, ZIP-PLUGIN, PACKAGE-LICENSE, PACKAGE-CONFIG
|
1381
1476
|
# package_description: "PackageDescription",
|
1382
1477
|
# package_source: { # required
|
1383
1478
|
# s3_bucket_name: "S3BucketName",
|
1384
1479
|
# s3_key: "S3Key",
|
1385
1480
|
# },
|
1481
|
+
# package_configuration: {
|
1482
|
+
# license_requirement: "REQUIRED", # required, accepts REQUIRED, OPTIONAL, NONE
|
1483
|
+
# license_filepath: "LicenseFilepath",
|
1484
|
+
# configuration_requirement: "REQUIRED", # required, accepts REQUIRED, OPTIONAL, NONE
|
1485
|
+
# requires_restart_for_configuration_update: false,
|
1486
|
+
# },
|
1487
|
+
# engine_version: "EngineVersion",
|
1488
|
+
# package_vending_options: {
|
1489
|
+
# vending_enabled: false, # required
|
1490
|
+
# },
|
1491
|
+
# package_encryption_options: {
|
1492
|
+
# kms_key_identifier: "KmsKeyId",
|
1493
|
+
# encryption_enabled: false, # required
|
1494
|
+
# },
|
1386
1495
|
# })
|
1387
1496
|
#
|
1388
1497
|
# @example Response structure
|
1389
1498
|
#
|
1390
1499
|
# resp.package_details.package_id #=> String
|
1391
1500
|
# resp.package_details.package_name #=> String
|
1392
|
-
# resp.package_details.package_type #=> String, one of "TXT-DICTIONARY", "ZIP-PLUGIN"
|
1501
|
+
# resp.package_details.package_type #=> String, one of "TXT-DICTIONARY", "ZIP-PLUGIN", "PACKAGE-LICENSE", "PACKAGE-CONFIG"
|
1393
1502
|
# resp.package_details.package_description #=> String
|
1394
1503
|
# resp.package_details.package_status #=> String, one of "COPYING", "COPY_FAILED", "VALIDATING", "VALIDATION_FAILED", "AVAILABLE", "DELETING", "DELETED", "DELETE_FAILED"
|
1395
1504
|
# resp.package_details.created_at #=> Time
|
@@ -1403,6 +1512,16 @@ module Aws::OpenSearchService
|
|
1403
1512
|
# resp.package_details.available_plugin_properties.version #=> String
|
1404
1513
|
# resp.package_details.available_plugin_properties.class_name #=> String
|
1405
1514
|
# resp.package_details.available_plugin_properties.uncompressed_size_in_bytes #=> Integer
|
1515
|
+
# resp.package_details.available_package_configuration.license_requirement #=> String, one of "REQUIRED", "OPTIONAL", "NONE"
|
1516
|
+
# resp.package_details.available_package_configuration.license_filepath #=> String
|
1517
|
+
# resp.package_details.available_package_configuration.configuration_requirement #=> String, one of "REQUIRED", "OPTIONAL", "NONE"
|
1518
|
+
# resp.package_details.available_package_configuration.requires_restart_for_configuration_update #=> Boolean
|
1519
|
+
# resp.package_details.allow_listed_user_list #=> Array
|
1520
|
+
# resp.package_details.allow_listed_user_list[0] #=> String
|
1521
|
+
# resp.package_details.package_owner #=> String
|
1522
|
+
# resp.package_details.package_vending_options.vending_enabled #=> Boolean
|
1523
|
+
# resp.package_details.package_encryption_options.kms_key_identifier #=> String
|
1524
|
+
# resp.package_details.package_encryption_options.encryption_enabled #=> Boolean
|
1406
1525
|
#
|
1407
1526
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/CreatePackage AWS API Documentation
|
1408
1527
|
#
|
@@ -1780,7 +1899,7 @@ module Aws::OpenSearchService
|
|
1780
1899
|
#
|
1781
1900
|
# resp.package_details.package_id #=> String
|
1782
1901
|
# resp.package_details.package_name #=> String
|
1783
|
-
# resp.package_details.package_type #=> String, one of "TXT-DICTIONARY", "ZIP-PLUGIN"
|
1902
|
+
# resp.package_details.package_type #=> String, one of "TXT-DICTIONARY", "ZIP-PLUGIN", "PACKAGE-LICENSE", "PACKAGE-CONFIG"
|
1784
1903
|
# resp.package_details.package_description #=> String
|
1785
1904
|
# resp.package_details.package_status #=> String, one of "COPYING", "COPY_FAILED", "VALIDATING", "VALIDATION_FAILED", "AVAILABLE", "DELETING", "DELETED", "DELETE_FAILED"
|
1786
1905
|
# resp.package_details.created_at #=> Time
|
@@ -1794,6 +1913,16 @@ module Aws::OpenSearchService
|
|
1794
1913
|
# resp.package_details.available_plugin_properties.version #=> String
|
1795
1914
|
# resp.package_details.available_plugin_properties.class_name #=> String
|
1796
1915
|
# resp.package_details.available_plugin_properties.uncompressed_size_in_bytes #=> Integer
|
1916
|
+
# resp.package_details.available_package_configuration.license_requirement #=> String, one of "REQUIRED", "OPTIONAL", "NONE"
|
1917
|
+
# resp.package_details.available_package_configuration.license_filepath #=> String
|
1918
|
+
# resp.package_details.available_package_configuration.configuration_requirement #=> String, one of "REQUIRED", "OPTIONAL", "NONE"
|
1919
|
+
# resp.package_details.available_package_configuration.requires_restart_for_configuration_update #=> Boolean
|
1920
|
+
# resp.package_details.allow_listed_user_list #=> Array
|
1921
|
+
# resp.package_details.allow_listed_user_list[0] #=> String
|
1922
|
+
# resp.package_details.package_owner #=> String
|
1923
|
+
# resp.package_details.package_vending_options.vending_enabled #=> Boolean
|
1924
|
+
# resp.package_details.package_encryption_options.kms_key_identifier #=> String
|
1925
|
+
# resp.package_details.package_encryption_options.encryption_enabled #=> Boolean
|
1797
1926
|
#
|
1798
1927
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DeletePackage AWS API Documentation
|
1799
1928
|
#
|
@@ -2931,7 +3060,7 @@ module Aws::OpenSearchService
|
|
2931
3060
|
# resp = client.describe_packages({
|
2932
3061
|
# filters: [
|
2933
3062
|
# {
|
2934
|
-
# name: "PackageID", # accepts PackageID, PackageName, PackageStatus, PackageType, EngineVersion
|
3063
|
+
# name: "PackageID", # accepts PackageID, PackageName, PackageStatus, PackageType, EngineVersion, PackageOwner
|
2935
3064
|
# value: ["DescribePackagesFilterValue"],
|
2936
3065
|
# },
|
2937
3066
|
# ],
|
@@ -2944,7 +3073,7 @@ module Aws::OpenSearchService
|
|
2944
3073
|
# resp.package_details_list #=> Array
|
2945
3074
|
# resp.package_details_list[0].package_id #=> String
|
2946
3075
|
# resp.package_details_list[0].package_name #=> String
|
2947
|
-
# resp.package_details_list[0].package_type #=> String, one of "TXT-DICTIONARY", "ZIP-PLUGIN"
|
3076
|
+
# resp.package_details_list[0].package_type #=> String, one of "TXT-DICTIONARY", "ZIP-PLUGIN", "PACKAGE-LICENSE", "PACKAGE-CONFIG"
|
2948
3077
|
# resp.package_details_list[0].package_description #=> String
|
2949
3078
|
# resp.package_details_list[0].package_status #=> String, one of "COPYING", "COPY_FAILED", "VALIDATING", "VALIDATION_FAILED", "AVAILABLE", "DELETING", "DELETED", "DELETE_FAILED"
|
2950
3079
|
# resp.package_details_list[0].created_at #=> Time
|
@@ -2958,6 +3087,16 @@ module Aws::OpenSearchService
|
|
2958
3087
|
# resp.package_details_list[0].available_plugin_properties.version #=> String
|
2959
3088
|
# resp.package_details_list[0].available_plugin_properties.class_name #=> String
|
2960
3089
|
# resp.package_details_list[0].available_plugin_properties.uncompressed_size_in_bytes #=> Integer
|
3090
|
+
# resp.package_details_list[0].available_package_configuration.license_requirement #=> String, one of "REQUIRED", "OPTIONAL", "NONE"
|
3091
|
+
# resp.package_details_list[0].available_package_configuration.license_filepath #=> String
|
3092
|
+
# resp.package_details_list[0].available_package_configuration.configuration_requirement #=> String, one of "REQUIRED", "OPTIONAL", "NONE"
|
3093
|
+
# resp.package_details_list[0].available_package_configuration.requires_restart_for_configuration_update #=> Boolean
|
3094
|
+
# resp.package_details_list[0].allow_listed_user_list #=> Array
|
3095
|
+
# resp.package_details_list[0].allow_listed_user_list[0] #=> String
|
3096
|
+
# resp.package_details_list[0].package_owner #=> String
|
3097
|
+
# resp.package_details_list[0].package_vending_options.vending_enabled #=> Boolean
|
3098
|
+
# resp.package_details_list[0].package_encryption_options.kms_key_identifier #=> String
|
3099
|
+
# resp.package_details_list[0].package_encryption_options.encryption_enabled #=> Boolean
|
2961
3100
|
# resp.next_token #=> String
|
2962
3101
|
#
|
2963
3102
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DescribePackages AWS API Documentation
|
@@ -3176,14 +3315,18 @@ module Aws::OpenSearchService
|
|
3176
3315
|
#
|
3177
3316
|
# resp.domain_package_details.package_id #=> String
|
3178
3317
|
# resp.domain_package_details.package_name #=> String
|
3179
|
-
# resp.domain_package_details.package_type #=> String, one of "TXT-DICTIONARY", "ZIP-PLUGIN"
|
3318
|
+
# resp.domain_package_details.package_type #=> String, one of "TXT-DICTIONARY", "ZIP-PLUGIN", "PACKAGE-LICENSE", "PACKAGE-CONFIG"
|
3180
3319
|
# resp.domain_package_details.last_updated #=> Time
|
3181
3320
|
# resp.domain_package_details.domain_name #=> String
|
3182
3321
|
# resp.domain_package_details.domain_package_status #=> String, one of "ASSOCIATING", "ASSOCIATION_FAILED", "ACTIVE", "DISSOCIATING", "DISSOCIATION_FAILED"
|
3183
3322
|
# resp.domain_package_details.package_version #=> String
|
3323
|
+
# resp.domain_package_details.prerequisite_package_id_list #=> Array
|
3324
|
+
# resp.domain_package_details.prerequisite_package_id_list[0] #=> String
|
3184
3325
|
# resp.domain_package_details.reference_path #=> String
|
3185
3326
|
# resp.domain_package_details.error_details.error_type #=> String
|
3186
3327
|
# resp.domain_package_details.error_details.error_message #=> String
|
3328
|
+
# resp.domain_package_details.association_configuration.key_store_access_option.key_access_role_arn #=> String
|
3329
|
+
# resp.domain_package_details.association_configuration.key_store_access_option.key_store_access_enabled #=> Boolean
|
3187
3330
|
#
|
3188
3331
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DissociatePackage AWS API Documentation
|
3189
3332
|
#
|
@@ -3194,6 +3337,54 @@ module Aws::OpenSearchService
|
|
3194
3337
|
req.send_request(options)
|
3195
3338
|
end
|
3196
3339
|
|
3340
|
+
# Dissociates multiple packages from a domain simulatneously.
|
3341
|
+
#
|
3342
|
+
# @option params [required, Array<String>] :package_list
|
3343
|
+
# A list of package IDs to be dissociated from a domain.
|
3344
|
+
#
|
3345
|
+
# @option params [required, String] :domain_name
|
3346
|
+
# The name of an OpenSearch Service domain. Domain names are unique
|
3347
|
+
# across the domains owned by an account within an Amazon Web Services
|
3348
|
+
# Region.
|
3349
|
+
#
|
3350
|
+
# @return [Types::DissociatePackagesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3351
|
+
#
|
3352
|
+
# * {Types::DissociatePackagesResponse#domain_package_details_list #domain_package_details_list} => Array<Types::DomainPackageDetails>
|
3353
|
+
#
|
3354
|
+
# @example Request syntax with placeholder values
|
3355
|
+
#
|
3356
|
+
# resp = client.dissociate_packages({
|
3357
|
+
# package_list: ["PackageID"], # required
|
3358
|
+
# domain_name: "DomainName", # required
|
3359
|
+
# })
|
3360
|
+
#
|
3361
|
+
# @example Response structure
|
3362
|
+
#
|
3363
|
+
# resp.domain_package_details_list #=> Array
|
3364
|
+
# resp.domain_package_details_list[0].package_id #=> String
|
3365
|
+
# resp.domain_package_details_list[0].package_name #=> String
|
3366
|
+
# resp.domain_package_details_list[0].package_type #=> String, one of "TXT-DICTIONARY", "ZIP-PLUGIN", "PACKAGE-LICENSE", "PACKAGE-CONFIG"
|
3367
|
+
# resp.domain_package_details_list[0].last_updated #=> Time
|
3368
|
+
# resp.domain_package_details_list[0].domain_name #=> String
|
3369
|
+
# resp.domain_package_details_list[0].domain_package_status #=> String, one of "ASSOCIATING", "ASSOCIATION_FAILED", "ACTIVE", "DISSOCIATING", "DISSOCIATION_FAILED"
|
3370
|
+
# resp.domain_package_details_list[0].package_version #=> String
|
3371
|
+
# resp.domain_package_details_list[0].prerequisite_package_id_list #=> Array
|
3372
|
+
# resp.domain_package_details_list[0].prerequisite_package_id_list[0] #=> String
|
3373
|
+
# resp.domain_package_details_list[0].reference_path #=> String
|
3374
|
+
# resp.domain_package_details_list[0].error_details.error_type #=> String
|
3375
|
+
# resp.domain_package_details_list[0].error_details.error_message #=> String
|
3376
|
+
# resp.domain_package_details_list[0].association_configuration.key_store_access_option.key_access_role_arn #=> String
|
3377
|
+
# resp.domain_package_details_list[0].association_configuration.key_store_access_option.key_store_access_enabled #=> Boolean
|
3378
|
+
#
|
3379
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DissociatePackages AWS API Documentation
|
3380
|
+
#
|
3381
|
+
# @overload dissociate_packages(params = {})
|
3382
|
+
# @param [Hash] params ({})
|
3383
|
+
def dissociate_packages(params = {}, options = {})
|
3384
|
+
req = build_request(:dissociate_packages, params)
|
3385
|
+
req.send_request(options)
|
3386
|
+
end
|
3387
|
+
|
3197
3388
|
# Check the configuration and status of an existing OpenSearch
|
3198
3389
|
# Application.
|
3199
3390
|
#
|
@@ -3411,6 +3602,10 @@ module Aws::OpenSearchService
|
|
3411
3602
|
# resp.package_version_history_list[0].plugin_properties.version #=> String
|
3412
3603
|
# resp.package_version_history_list[0].plugin_properties.class_name #=> String
|
3413
3604
|
# resp.package_version_history_list[0].plugin_properties.uncompressed_size_in_bytes #=> Integer
|
3605
|
+
# resp.package_version_history_list[0].package_configuration.license_requirement #=> String, one of "REQUIRED", "OPTIONAL", "NONE"
|
3606
|
+
# resp.package_version_history_list[0].package_configuration.license_filepath #=> String
|
3607
|
+
# resp.package_version_history_list[0].package_configuration.configuration_requirement #=> String, one of "REQUIRED", "OPTIONAL", "NONE"
|
3608
|
+
# resp.package_version_history_list[0].package_configuration.requires_restart_for_configuration_update #=> Boolean
|
3414
3609
|
# resp.next_token #=> String
|
3415
3610
|
#
|
3416
3611
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/GetPackageVersionHistory AWS API Documentation
|
@@ -3732,14 +3927,18 @@ module Aws::OpenSearchService
|
|
3732
3927
|
# resp.domain_package_details_list #=> Array
|
3733
3928
|
# resp.domain_package_details_list[0].package_id #=> String
|
3734
3929
|
# resp.domain_package_details_list[0].package_name #=> String
|
3735
|
-
# resp.domain_package_details_list[0].package_type #=> String, one of "TXT-DICTIONARY", "ZIP-PLUGIN"
|
3930
|
+
# resp.domain_package_details_list[0].package_type #=> String, one of "TXT-DICTIONARY", "ZIP-PLUGIN", "PACKAGE-LICENSE", "PACKAGE-CONFIG"
|
3736
3931
|
# resp.domain_package_details_list[0].last_updated #=> Time
|
3737
3932
|
# resp.domain_package_details_list[0].domain_name #=> String
|
3738
3933
|
# resp.domain_package_details_list[0].domain_package_status #=> String, one of "ASSOCIATING", "ASSOCIATION_FAILED", "ACTIVE", "DISSOCIATING", "DISSOCIATION_FAILED"
|
3739
3934
|
# resp.domain_package_details_list[0].package_version #=> String
|
3935
|
+
# resp.domain_package_details_list[0].prerequisite_package_id_list #=> Array
|
3936
|
+
# resp.domain_package_details_list[0].prerequisite_package_id_list[0] #=> String
|
3740
3937
|
# resp.domain_package_details_list[0].reference_path #=> String
|
3741
3938
|
# resp.domain_package_details_list[0].error_details.error_type #=> String
|
3742
3939
|
# resp.domain_package_details_list[0].error_details.error_message #=> String
|
3940
|
+
# resp.domain_package_details_list[0].association_configuration.key_store_access_option.key_access_role_arn #=> String
|
3941
|
+
# resp.domain_package_details_list[0].association_configuration.key_store_access_option.key_store_access_enabled #=> Boolean
|
3743
3942
|
# resp.next_token #=> String
|
3744
3943
|
#
|
3745
3944
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/ListDomainsForPackage AWS API Documentation
|
@@ -3863,14 +4062,18 @@ module Aws::OpenSearchService
|
|
3863
4062
|
# resp.domain_package_details_list #=> Array
|
3864
4063
|
# resp.domain_package_details_list[0].package_id #=> String
|
3865
4064
|
# resp.domain_package_details_list[0].package_name #=> String
|
3866
|
-
# resp.domain_package_details_list[0].package_type #=> String, one of "TXT-DICTIONARY", "ZIP-PLUGIN"
|
4065
|
+
# resp.domain_package_details_list[0].package_type #=> String, one of "TXT-DICTIONARY", "ZIP-PLUGIN", "PACKAGE-LICENSE", "PACKAGE-CONFIG"
|
3867
4066
|
# resp.domain_package_details_list[0].last_updated #=> Time
|
3868
4067
|
# resp.domain_package_details_list[0].domain_name #=> String
|
3869
4068
|
# resp.domain_package_details_list[0].domain_package_status #=> String, one of "ASSOCIATING", "ASSOCIATION_FAILED", "ACTIVE", "DISSOCIATING", "DISSOCIATION_FAILED"
|
3870
4069
|
# resp.domain_package_details_list[0].package_version #=> String
|
4070
|
+
# resp.domain_package_details_list[0].prerequisite_package_id_list #=> Array
|
4071
|
+
# resp.domain_package_details_list[0].prerequisite_package_id_list[0] #=> String
|
3871
4072
|
# resp.domain_package_details_list[0].reference_path #=> String
|
3872
4073
|
# resp.domain_package_details_list[0].error_details.error_type #=> String
|
3873
4074
|
# resp.domain_package_details_list[0].error_details.error_message #=> String
|
4075
|
+
# resp.domain_package_details_list[0].association_configuration.key_store_access_option.key_access_role_arn #=> String
|
4076
|
+
# resp.domain_package_details_list[0].association_configuration.key_store_access_option.key_store_access_enabled #=> Boolean
|
3874
4077
|
# resp.next_token #=> String
|
3875
4078
|
#
|
3876
4079
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/ListPackagesForDomain AWS API Documentation
|
@@ -5009,6 +5212,12 @@ module Aws::OpenSearchService
|
|
5009
5212
|
# Commit message for the updated file, which is shown as part of
|
5010
5213
|
# `GetPackageVersionHistoryResponse`.
|
5011
5214
|
#
|
5215
|
+
# @option params [Types::PackageConfiguration] :package_configuration
|
5216
|
+
# The updated configuration details for a package.
|
5217
|
+
#
|
5218
|
+
# @option params [Types::PackageEncryptionOptions] :package_encryption_options
|
5219
|
+
# Encryption options for a package.
|
5220
|
+
#
|
5012
5221
|
# @return [Types::UpdatePackageResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5013
5222
|
#
|
5014
5223
|
# * {Types::UpdatePackageResponse#package_details #package_details} => Types::PackageDetails
|
@@ -5023,13 +5232,23 @@ module Aws::OpenSearchService
|
|
5023
5232
|
# },
|
5024
5233
|
# package_description: "PackageDescription",
|
5025
5234
|
# commit_message: "CommitMessage",
|
5235
|
+
# package_configuration: {
|
5236
|
+
# license_requirement: "REQUIRED", # required, accepts REQUIRED, OPTIONAL, NONE
|
5237
|
+
# license_filepath: "LicenseFilepath",
|
5238
|
+
# configuration_requirement: "REQUIRED", # required, accepts REQUIRED, OPTIONAL, NONE
|
5239
|
+
# requires_restart_for_configuration_update: false,
|
5240
|
+
# },
|
5241
|
+
# package_encryption_options: {
|
5242
|
+
# kms_key_identifier: "KmsKeyId",
|
5243
|
+
# encryption_enabled: false, # required
|
5244
|
+
# },
|
5026
5245
|
# })
|
5027
5246
|
#
|
5028
5247
|
# @example Response structure
|
5029
5248
|
#
|
5030
5249
|
# resp.package_details.package_id #=> String
|
5031
5250
|
# resp.package_details.package_name #=> String
|
5032
|
-
# resp.package_details.package_type #=> String, one of "TXT-DICTIONARY", "ZIP-PLUGIN"
|
5251
|
+
# resp.package_details.package_type #=> String, one of "TXT-DICTIONARY", "ZIP-PLUGIN", "PACKAGE-LICENSE", "PACKAGE-CONFIG"
|
5033
5252
|
# resp.package_details.package_description #=> String
|
5034
5253
|
# resp.package_details.package_status #=> String, one of "COPYING", "COPY_FAILED", "VALIDATING", "VALIDATION_FAILED", "AVAILABLE", "DELETING", "DELETED", "DELETE_FAILED"
|
5035
5254
|
# resp.package_details.created_at #=> Time
|
@@ -5043,6 +5262,16 @@ module Aws::OpenSearchService
|
|
5043
5262
|
# resp.package_details.available_plugin_properties.version #=> String
|
5044
5263
|
# resp.package_details.available_plugin_properties.class_name #=> String
|
5045
5264
|
# resp.package_details.available_plugin_properties.uncompressed_size_in_bytes #=> Integer
|
5265
|
+
# resp.package_details.available_package_configuration.license_requirement #=> String, one of "REQUIRED", "OPTIONAL", "NONE"
|
5266
|
+
# resp.package_details.available_package_configuration.license_filepath #=> String
|
5267
|
+
# resp.package_details.available_package_configuration.configuration_requirement #=> String, one of "REQUIRED", "OPTIONAL", "NONE"
|
5268
|
+
# resp.package_details.available_package_configuration.requires_restart_for_configuration_update #=> Boolean
|
5269
|
+
# resp.package_details.allow_listed_user_list #=> Array
|
5270
|
+
# resp.package_details.allow_listed_user_list[0] #=> String
|
5271
|
+
# resp.package_details.package_owner #=> String
|
5272
|
+
# resp.package_details.package_vending_options.vending_enabled #=> Boolean
|
5273
|
+
# resp.package_details.package_encryption_options.kms_key_identifier #=> String
|
5274
|
+
# resp.package_details.package_encryption_options.encryption_enabled #=> Boolean
|
5046
5275
|
#
|
5047
5276
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/UpdatePackage AWS API Documentation
|
5048
5277
|
#
|
@@ -5053,6 +5282,49 @@ module Aws::OpenSearchService
|
|
5053
5282
|
req.send_request(options)
|
5054
5283
|
end
|
5055
5284
|
|
5285
|
+
# Updates the scope of a package. Scope of the package defines users who
|
5286
|
+
# can view and associate a package.
|
5287
|
+
#
|
5288
|
+
# @option params [required, String] :package_id
|
5289
|
+
# ID of the package whose scope is being updated.
|
5290
|
+
#
|
5291
|
+
# @option params [required, String] :operation
|
5292
|
+
# The operation to perform on the package scope (e.g.,
|
5293
|
+
# add/remove/override users).
|
5294
|
+
#
|
5295
|
+
# @option params [required, Array<String>] :package_user_list
|
5296
|
+
# List of users to be added or removed from the package scope.
|
5297
|
+
#
|
5298
|
+
# @return [Types::UpdatePackageScopeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5299
|
+
#
|
5300
|
+
# * {Types::UpdatePackageScopeResponse#package_id #package_id} => String
|
5301
|
+
# * {Types::UpdatePackageScopeResponse#operation #operation} => String
|
5302
|
+
# * {Types::UpdatePackageScopeResponse#package_user_list #package_user_list} => Array<String>
|
5303
|
+
#
|
5304
|
+
# @example Request syntax with placeholder values
|
5305
|
+
#
|
5306
|
+
# resp = client.update_package_scope({
|
5307
|
+
# package_id: "PackageID", # required
|
5308
|
+
# operation: "ADD", # required, accepts ADD, OVERRIDE, REMOVE
|
5309
|
+
# package_user_list: ["PackageUser"], # required
|
5310
|
+
# })
|
5311
|
+
#
|
5312
|
+
# @example Response structure
|
5313
|
+
#
|
5314
|
+
# resp.package_id #=> String
|
5315
|
+
# resp.operation #=> String, one of "ADD", "OVERRIDE", "REMOVE"
|
5316
|
+
# resp.package_user_list #=> Array
|
5317
|
+
# resp.package_user_list[0] #=> String
|
5318
|
+
#
|
5319
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/UpdatePackageScope AWS API Documentation
|
5320
|
+
#
|
5321
|
+
# @overload update_package_scope(params = {})
|
5322
|
+
# @param [Hash] params ({})
|
5323
|
+
def update_package_scope(params = {}, options = {})
|
5324
|
+
req = build_request(:update_package_scope, params)
|
5325
|
+
req.send_request(options)
|
5326
|
+
end
|
5327
|
+
|
5056
5328
|
# Reschedules a planned domain configuration change for a later time.
|
5057
5329
|
# This change can be a scheduled [service software update][1] or a
|
5058
5330
|
# [blue/green Auto-Tune enhancement][2].
|
@@ -5267,7 +5539,7 @@ module Aws::OpenSearchService
|
|
5267
5539
|
tracer: tracer
|
5268
5540
|
)
|
5269
5541
|
context[:gem_name] = 'aws-sdk-opensearchservice'
|
5270
|
-
context[:gem_version] = '1.
|
5542
|
+
context[:gem_version] = '1.61.0'
|
5271
5543
|
Seahorse::Client::Request.new(handlers, context)
|
5272
5544
|
end
|
5273
5545
|
|