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
data/sig/types.rbs
CHANGED
@@ -127,6 +127,8 @@ module Aws::OpenSearchService
|
|
127
127
|
class AssociatePackageRequest
|
128
128
|
attr_accessor package_id: ::String
|
129
129
|
attr_accessor domain_name: ::String
|
130
|
+
attr_accessor prerequisite_package_id_list: ::Array[::String]
|
131
|
+
attr_accessor association_configuration: Types::PackageAssociationConfiguration
|
130
132
|
SENSITIVE: []
|
131
133
|
end
|
132
134
|
|
@@ -135,6 +137,17 @@ module Aws::OpenSearchService
|
|
135
137
|
SENSITIVE: []
|
136
138
|
end
|
137
139
|
|
140
|
+
class AssociatePackagesRequest
|
141
|
+
attr_accessor package_list: ::Array[Types::PackageDetailsForAssociation]
|
142
|
+
attr_accessor domain_name: ::String
|
143
|
+
SENSITIVE: []
|
144
|
+
end
|
145
|
+
|
146
|
+
class AssociatePackagesResponse
|
147
|
+
attr_accessor domain_package_details_list: ::Array[Types::DomainPackageDetails]
|
148
|
+
SENSITIVE: []
|
149
|
+
end
|
150
|
+
|
138
151
|
class AuthorizeVpcEndpointAccessRequest
|
139
152
|
attr_accessor domain_name: ::String
|
140
153
|
attr_accessor account: ::String
|
@@ -417,9 +430,13 @@ module Aws::OpenSearchService
|
|
417
430
|
|
418
431
|
class CreatePackageRequest
|
419
432
|
attr_accessor package_name: ::String
|
420
|
-
attr_accessor package_type: ("TXT-DICTIONARY" | "ZIP-PLUGIN")
|
433
|
+
attr_accessor package_type: ("TXT-DICTIONARY" | "ZIP-PLUGIN" | "PACKAGE-LICENSE" | "PACKAGE-CONFIG")
|
421
434
|
attr_accessor package_description: ::String
|
422
435
|
attr_accessor package_source: Types::PackageSource
|
436
|
+
attr_accessor package_configuration: Types::PackageConfiguration
|
437
|
+
attr_accessor engine_version: ::String
|
438
|
+
attr_accessor package_vending_options: Types::PackageVendingOptions
|
439
|
+
attr_accessor package_encryption_options: Types::PackageEncryptionOptions
|
423
440
|
SENSITIVE: []
|
424
441
|
end
|
425
442
|
|
@@ -681,7 +698,7 @@ module Aws::OpenSearchService
|
|
681
698
|
end
|
682
699
|
|
683
700
|
class DescribePackagesFilter
|
684
|
-
attr_accessor name: ("PackageID" | "PackageName" | "PackageStatus" | "PackageType" | "EngineVersion")
|
701
|
+
attr_accessor name: ("PackageID" | "PackageName" | "PackageStatus" | "PackageType" | "EngineVersion" | "PackageOwner")
|
685
702
|
attr_accessor value: ::Array[::String]
|
686
703
|
SENSITIVE: []
|
687
704
|
end
|
@@ -750,6 +767,17 @@ module Aws::OpenSearchService
|
|
750
767
|
SENSITIVE: []
|
751
768
|
end
|
752
769
|
|
770
|
+
class DissociatePackagesRequest
|
771
|
+
attr_accessor package_list: ::Array[::String]
|
772
|
+
attr_accessor domain_name: ::String
|
773
|
+
SENSITIVE: []
|
774
|
+
end
|
775
|
+
|
776
|
+
class DissociatePackagesResponse
|
777
|
+
attr_accessor domain_package_details_list: ::Array[Types::DomainPackageDetails]
|
778
|
+
SENSITIVE: []
|
779
|
+
end
|
780
|
+
|
753
781
|
class DomainConfig
|
754
782
|
attr_accessor engine_version: Types::VersionStatus
|
755
783
|
attr_accessor cluster_config: Types::ClusterConfigStatus
|
@@ -828,13 +856,15 @@ module Aws::OpenSearchService
|
|
828
856
|
class DomainPackageDetails
|
829
857
|
attr_accessor package_id: ::String
|
830
858
|
attr_accessor package_name: ::String
|
831
|
-
attr_accessor package_type: ("TXT-DICTIONARY" | "ZIP-PLUGIN")
|
859
|
+
attr_accessor package_type: ("TXT-DICTIONARY" | "ZIP-PLUGIN" | "PACKAGE-LICENSE" | "PACKAGE-CONFIG")
|
832
860
|
attr_accessor last_updated: ::Time
|
833
861
|
attr_accessor domain_name: ::String
|
834
862
|
attr_accessor domain_package_status: ("ASSOCIATING" | "ASSOCIATION_FAILED" | "ACTIVE" | "DISSOCIATING" | "DISSOCIATION_FAILED")
|
835
863
|
attr_accessor package_version: ::String
|
864
|
+
attr_accessor prerequisite_package_id_list: ::Array[::String]
|
836
865
|
attr_accessor reference_path: ::String
|
837
866
|
attr_accessor error_details: Types::ErrorDetails
|
867
|
+
attr_accessor association_configuration: Types::PackageAssociationConfiguration
|
838
868
|
SENSITIVE: []
|
839
869
|
end
|
840
870
|
|
@@ -1147,6 +1177,12 @@ module Aws::OpenSearchService
|
|
1147
1177
|
SENSITIVE: []
|
1148
1178
|
end
|
1149
1179
|
|
1180
|
+
class KeyStoreAccessOption
|
1181
|
+
attr_accessor key_access_role_arn: ::String
|
1182
|
+
attr_accessor key_store_access_enabled: bool
|
1183
|
+
SENSITIVE: []
|
1184
|
+
end
|
1185
|
+
|
1150
1186
|
class LimitExceededException < Aws::EmptyStructure
|
1151
1187
|
end
|
1152
1188
|
|
@@ -1422,10 +1458,23 @@ module Aws::OpenSearchService
|
|
1422
1458
|
SENSITIVE: []
|
1423
1459
|
end
|
1424
1460
|
|
1461
|
+
class PackageAssociationConfiguration
|
1462
|
+
attr_accessor key_store_access_option: Types::KeyStoreAccessOption
|
1463
|
+
SENSITIVE: []
|
1464
|
+
end
|
1465
|
+
|
1466
|
+
class PackageConfiguration
|
1467
|
+
attr_accessor license_requirement: ("REQUIRED" | "OPTIONAL" | "NONE")
|
1468
|
+
attr_accessor license_filepath: ::String
|
1469
|
+
attr_accessor configuration_requirement: ("REQUIRED" | "OPTIONAL" | "NONE")
|
1470
|
+
attr_accessor requires_restart_for_configuration_update: bool
|
1471
|
+
SENSITIVE: []
|
1472
|
+
end
|
1473
|
+
|
1425
1474
|
class PackageDetails
|
1426
1475
|
attr_accessor package_id: ::String
|
1427
1476
|
attr_accessor package_name: ::String
|
1428
|
-
attr_accessor package_type: ("TXT-DICTIONARY" | "ZIP-PLUGIN")
|
1477
|
+
attr_accessor package_type: ("TXT-DICTIONARY" | "ZIP-PLUGIN" | "PACKAGE-LICENSE" | "PACKAGE-CONFIG")
|
1429
1478
|
attr_accessor package_description: ::String
|
1430
1479
|
attr_accessor package_status: ("COPYING" | "COPY_FAILED" | "VALIDATING" | "VALIDATION_FAILED" | "AVAILABLE" | "DELETING" | "DELETED" | "DELETE_FAILED")
|
1431
1480
|
attr_accessor created_at: ::Time
|
@@ -1434,6 +1483,24 @@ module Aws::OpenSearchService
|
|
1434
1483
|
attr_accessor error_details: Types::ErrorDetails
|
1435
1484
|
attr_accessor engine_version: ::String
|
1436
1485
|
attr_accessor available_plugin_properties: Types::PluginProperties
|
1486
|
+
attr_accessor available_package_configuration: Types::PackageConfiguration
|
1487
|
+
attr_accessor allow_listed_user_list: ::Array[::String]
|
1488
|
+
attr_accessor package_owner: ::String
|
1489
|
+
attr_accessor package_vending_options: Types::PackageVendingOptions
|
1490
|
+
attr_accessor package_encryption_options: Types::PackageEncryptionOptions
|
1491
|
+
SENSITIVE: []
|
1492
|
+
end
|
1493
|
+
|
1494
|
+
class PackageDetailsForAssociation
|
1495
|
+
attr_accessor package_id: ::String
|
1496
|
+
attr_accessor prerequisite_package_id_list: ::Array[::String]
|
1497
|
+
attr_accessor association_configuration: Types::PackageAssociationConfiguration
|
1498
|
+
SENSITIVE: []
|
1499
|
+
end
|
1500
|
+
|
1501
|
+
class PackageEncryptionOptions
|
1502
|
+
attr_accessor kms_key_identifier: ::String
|
1503
|
+
attr_accessor encryption_enabled: bool
|
1437
1504
|
SENSITIVE: []
|
1438
1505
|
end
|
1439
1506
|
|
@@ -1443,11 +1510,17 @@ module Aws::OpenSearchService
|
|
1443
1510
|
SENSITIVE: []
|
1444
1511
|
end
|
1445
1512
|
|
1513
|
+
class PackageVendingOptions
|
1514
|
+
attr_accessor vending_enabled: bool
|
1515
|
+
SENSITIVE: []
|
1516
|
+
end
|
1517
|
+
|
1446
1518
|
class PackageVersionHistory
|
1447
1519
|
attr_accessor package_version: ::String
|
1448
1520
|
attr_accessor commit_message: ::String
|
1449
1521
|
attr_accessor created_at: ::Time
|
1450
1522
|
attr_accessor plugin_properties: Types::PluginProperties
|
1523
|
+
attr_accessor package_configuration: Types::PackageConfiguration
|
1451
1524
|
SENSITIVE: []
|
1452
1525
|
end
|
1453
1526
|
|
@@ -1745,6 +1818,8 @@ module Aws::OpenSearchService
|
|
1745
1818
|
attr_accessor package_source: Types::PackageSource
|
1746
1819
|
attr_accessor package_description: ::String
|
1747
1820
|
attr_accessor commit_message: ::String
|
1821
|
+
attr_accessor package_configuration: Types::PackageConfiguration
|
1822
|
+
attr_accessor package_encryption_options: Types::PackageEncryptionOptions
|
1748
1823
|
SENSITIVE: []
|
1749
1824
|
end
|
1750
1825
|
|
@@ -1753,6 +1828,20 @@ module Aws::OpenSearchService
|
|
1753
1828
|
SENSITIVE: []
|
1754
1829
|
end
|
1755
1830
|
|
1831
|
+
class UpdatePackageScopeRequest
|
1832
|
+
attr_accessor package_id: ::String
|
1833
|
+
attr_accessor operation: ("ADD" | "OVERRIDE" | "REMOVE")
|
1834
|
+
attr_accessor package_user_list: ::Array[::String]
|
1835
|
+
SENSITIVE: []
|
1836
|
+
end
|
1837
|
+
|
1838
|
+
class UpdatePackageScopeResponse
|
1839
|
+
attr_accessor package_id: ::String
|
1840
|
+
attr_accessor operation: ("ADD" | "OVERRIDE" | "REMOVE")
|
1841
|
+
attr_accessor package_user_list: ::Array[::String]
|
1842
|
+
SENSITIVE: []
|
1843
|
+
end
|
1844
|
+
|
1756
1845
|
class UpdateScheduledActionRequest
|
1757
1846
|
attr_accessor domain_name: ::String
|
1758
1847
|
attr_accessor action_id: ::String
|
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.
|
4
|
+
version: 1.61.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-11-
|
11
|
+
date: 2024-11-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|