aws-sdk-opensearchservice 1.60.0 → 1.62.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-opensearchservice/client.rb +522 -25
- data/lib/aws-sdk-opensearchservice/client_api.rb +281 -0
- data/lib/aws-sdk-opensearchservice/types.rb +644 -14
- data/lib/aws-sdk-opensearchservice.rb +1 -1
- data/sig/client.rbs +159 -4
- data/sig/types.rbs +184 -4
- metadata +2 -2
data/sig/client.rbs
CHANGED
@@ -102,6 +102,32 @@ module Aws
|
|
102
102
|
) -> _AddDataSourceResponseSuccess
|
103
103
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AddDataSourceResponseSuccess
|
104
104
|
|
105
|
+
interface _AddDirectQueryDataSourceResponseSuccess
|
106
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AddDirectQueryDataSourceResponse]
|
107
|
+
def data_source_arn: () -> ::String
|
108
|
+
end
|
109
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpenSearchService/Client.html#add_direct_query_data_source-instance_method
|
110
|
+
def add_direct_query_data_source: (
|
111
|
+
data_source_name: ::String,
|
112
|
+
data_source_type: {
|
113
|
+
cloud_watch_log: {
|
114
|
+
role_arn: ::String
|
115
|
+
}?,
|
116
|
+
security_lake: {
|
117
|
+
role_arn: ::String
|
118
|
+
}?
|
119
|
+
},
|
120
|
+
?description: ::String,
|
121
|
+
open_search_arns: Array[::String],
|
122
|
+
?tag_list: Array[
|
123
|
+
{
|
124
|
+
key: ::String,
|
125
|
+
value: ::String
|
126
|
+
},
|
127
|
+
]
|
128
|
+
) -> _AddDirectQueryDataSourceResponseSuccess
|
129
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AddDirectQueryDataSourceResponseSuccess
|
130
|
+
|
105
131
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpenSearchService/Client.html#add_tags-instance_method
|
106
132
|
def add_tags: (
|
107
133
|
arn: ::String,
|
@@ -121,10 +147,39 @@ module Aws
|
|
121
147
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpenSearchService/Client.html#associate_package-instance_method
|
122
148
|
def associate_package: (
|
123
149
|
package_id: ::String,
|
124
|
-
domain_name: ::String
|
150
|
+
domain_name: ::String,
|
151
|
+
?prerequisite_package_id_list: Array[::String],
|
152
|
+
?association_configuration: {
|
153
|
+
key_store_access_option: {
|
154
|
+
key_access_role_arn: ::String?,
|
155
|
+
key_store_access_enabled: bool
|
156
|
+
}?
|
157
|
+
}
|
125
158
|
) -> _AssociatePackageResponseSuccess
|
126
159
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociatePackageResponseSuccess
|
127
160
|
|
161
|
+
interface _AssociatePackagesResponseSuccess
|
162
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AssociatePackagesResponse]
|
163
|
+
def domain_package_details_list: () -> ::Array[Types::DomainPackageDetails]
|
164
|
+
end
|
165
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpenSearchService/Client.html#associate_packages-instance_method
|
166
|
+
def associate_packages: (
|
167
|
+
package_list: Array[
|
168
|
+
{
|
169
|
+
package_id: ::String,
|
170
|
+
prerequisite_package_id_list: Array[::String]?,
|
171
|
+
association_configuration: {
|
172
|
+
key_store_access_option: {
|
173
|
+
key_access_role_arn: ::String?,
|
174
|
+
key_store_access_enabled: bool
|
175
|
+
}?
|
176
|
+
}?
|
177
|
+
},
|
178
|
+
],
|
179
|
+
domain_name: ::String
|
180
|
+
) -> _AssociatePackagesResponseSuccess
|
181
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociatePackagesResponseSuccess
|
182
|
+
|
128
183
|
interface _AuthorizeVpcEndpointAccessResponseSuccess
|
129
184
|
include ::Seahorse::Client::_ResponseSuccess[Types::AuthorizeVpcEndpointAccessResponse]
|
130
185
|
def authorized_principal: () -> Types::AuthorizedPrincipal
|
@@ -396,11 +451,25 @@ module Aws
|
|
396
451
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpenSearchService/Client.html#create_package-instance_method
|
397
452
|
def create_package: (
|
398
453
|
package_name: ::String,
|
399
|
-
package_type: ("TXT-DICTIONARY" | "ZIP-PLUGIN"),
|
454
|
+
package_type: ("TXT-DICTIONARY" | "ZIP-PLUGIN" | "PACKAGE-LICENSE" | "PACKAGE-CONFIG"),
|
400
455
|
?package_description: ::String,
|
401
456
|
package_source: {
|
402
457
|
s3_bucket_name: ::String?,
|
403
458
|
s3_key: ::String?
|
459
|
+
},
|
460
|
+
?package_configuration: {
|
461
|
+
license_requirement: ("REQUIRED" | "OPTIONAL" | "NONE"),
|
462
|
+
license_filepath: ::String?,
|
463
|
+
configuration_requirement: ("REQUIRED" | "OPTIONAL" | "NONE"),
|
464
|
+
requires_restart_for_configuration_update: bool?
|
465
|
+
},
|
466
|
+
?engine_version: ::String,
|
467
|
+
?package_vending_options: {
|
468
|
+
vending_enabled: bool
|
469
|
+
},
|
470
|
+
?package_encryption_options: {
|
471
|
+
kms_key_identifier: ::String?,
|
472
|
+
encryption_enabled: bool
|
404
473
|
}
|
405
474
|
) -> _CreatePackageResponseSuccess
|
406
475
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePackageResponseSuccess
|
@@ -440,6 +509,12 @@ module Aws
|
|
440
509
|
) -> _DeleteDataSourceResponseSuccess
|
441
510
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDataSourceResponseSuccess
|
442
511
|
|
512
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpenSearchService/Client.html#delete_direct_query_data_source-instance_method
|
513
|
+
def delete_direct_query_data_source: (
|
514
|
+
data_source_name: ::String
|
515
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
516
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
517
|
+
|
443
518
|
interface _DeleteDomainResponseSuccess
|
444
519
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDomainResponse]
|
445
520
|
def domain_status: () -> Types::DomainStatus
|
@@ -647,7 +722,7 @@ module Aws
|
|
647
722
|
def describe_packages: (
|
648
723
|
?filters: Array[
|
649
724
|
{
|
650
|
-
name: ("PackageID" | "PackageName" | "PackageStatus" | "PackageType" | "EngineVersion")?,
|
725
|
+
name: ("PackageID" | "PackageName" | "PackageStatus" | "PackageType" | "EngineVersion" | "PackageOwner")?,
|
651
726
|
value: Array[::String]?
|
652
727
|
},
|
653
728
|
],
|
@@ -704,6 +779,17 @@ module Aws
|
|
704
779
|
) -> _DissociatePackageResponseSuccess
|
705
780
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DissociatePackageResponseSuccess
|
706
781
|
|
782
|
+
interface _DissociatePackagesResponseSuccess
|
783
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DissociatePackagesResponse]
|
784
|
+
def domain_package_details_list: () -> ::Array[Types::DomainPackageDetails]
|
785
|
+
end
|
786
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpenSearchService/Client.html#dissociate_packages-instance_method
|
787
|
+
def dissociate_packages: (
|
788
|
+
package_list: Array[::String],
|
789
|
+
domain_name: ::String
|
790
|
+
) -> _DissociatePackagesResponseSuccess
|
791
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DissociatePackagesResponseSuccess
|
792
|
+
|
707
793
|
interface _GetApplicationResponseSuccess
|
708
794
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetApplicationResponse]
|
709
795
|
def id: () -> ::String
|
@@ -747,6 +833,20 @@ module Aws
|
|
747
833
|
) -> _GetDataSourceResponseSuccess
|
748
834
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDataSourceResponseSuccess
|
749
835
|
|
836
|
+
interface _GetDirectQueryDataSourceResponseSuccess
|
837
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetDirectQueryDataSourceResponse]
|
838
|
+
def data_source_name: () -> ::String
|
839
|
+
def data_source_type: () -> Types::DirectQueryDataSourceType
|
840
|
+
def description: () -> ::String
|
841
|
+
def open_search_arns: () -> ::Array[::String]
|
842
|
+
def data_source_arn: () -> ::String
|
843
|
+
end
|
844
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpenSearchService/Client.html#get_direct_query_data_source-instance_method
|
845
|
+
def get_direct_query_data_source: (
|
846
|
+
data_source_name: ::String
|
847
|
+
) -> _GetDirectQueryDataSourceResponseSuccess
|
848
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDirectQueryDataSourceResponseSuccess
|
849
|
+
|
750
850
|
interface _GetDomainMaintenanceStatusResponseSuccess
|
751
851
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetDomainMaintenanceStatusResponse]
|
752
852
|
def status: () -> ("PENDING" | "IN_PROGRESS" | "COMPLETED" | "FAILED" | "TIMED_OUT")
|
@@ -825,6 +925,17 @@ module Aws
|
|
825
925
|
) -> _ListDataSourcesResponseSuccess
|
826
926
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDataSourcesResponseSuccess
|
827
927
|
|
928
|
+
interface _ListDirectQueryDataSourcesResponseSuccess
|
929
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListDirectQueryDataSourcesResponse]
|
930
|
+
def next_token: () -> ::String
|
931
|
+
def direct_query_data_sources: () -> ::Array[Types::DirectQueryDataSource]
|
932
|
+
end
|
933
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpenSearchService/Client.html#list_direct_query_data_sources-instance_method
|
934
|
+
def list_direct_query_data_sources: (
|
935
|
+
?next_token: ::String
|
936
|
+
) -> _ListDirectQueryDataSourcesResponseSuccess
|
937
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDirectQueryDataSourcesResponseSuccess
|
938
|
+
|
828
939
|
interface _ListDomainMaintenancesResponseSuccess
|
829
940
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListDomainMaintenancesResponse]
|
830
941
|
def domain_maintenances: () -> ::Array[Types::DomainMaintenanceDetails]
|
@@ -1074,6 +1185,26 @@ module Aws
|
|
1074
1185
|
) -> _UpdateDataSourceResponseSuccess
|
1075
1186
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDataSourceResponseSuccess
|
1076
1187
|
|
1188
|
+
interface _UpdateDirectQueryDataSourceResponseSuccess
|
1189
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDirectQueryDataSourceResponse]
|
1190
|
+
def data_source_arn: () -> ::String
|
1191
|
+
end
|
1192
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpenSearchService/Client.html#update_direct_query_data_source-instance_method
|
1193
|
+
def update_direct_query_data_source: (
|
1194
|
+
data_source_name: ::String,
|
1195
|
+
data_source_type: {
|
1196
|
+
cloud_watch_log: {
|
1197
|
+
role_arn: ::String
|
1198
|
+
}?,
|
1199
|
+
security_lake: {
|
1200
|
+
role_arn: ::String
|
1201
|
+
}?
|
1202
|
+
},
|
1203
|
+
?description: ::String,
|
1204
|
+
open_search_arns: Array[::String]
|
1205
|
+
) -> _UpdateDirectQueryDataSourceResponseSuccess
|
1206
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDirectQueryDataSourceResponseSuccess
|
1207
|
+
|
1077
1208
|
interface _UpdateDomainConfigResponseSuccess
|
1078
1209
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDomainConfigResponse]
|
1079
1210
|
def domain_config: () -> Types::DomainConfig
|
@@ -1235,10 +1366,34 @@ module Aws
|
|
1235
1366
|
s3_key: ::String?
|
1236
1367
|
},
|
1237
1368
|
?package_description: ::String,
|
1238
|
-
?commit_message: ::String
|
1369
|
+
?commit_message: ::String,
|
1370
|
+
?package_configuration: {
|
1371
|
+
license_requirement: ("REQUIRED" | "OPTIONAL" | "NONE"),
|
1372
|
+
license_filepath: ::String?,
|
1373
|
+
configuration_requirement: ("REQUIRED" | "OPTIONAL" | "NONE"),
|
1374
|
+
requires_restart_for_configuration_update: bool?
|
1375
|
+
},
|
1376
|
+
?package_encryption_options: {
|
1377
|
+
kms_key_identifier: ::String?,
|
1378
|
+
encryption_enabled: bool
|
1379
|
+
}
|
1239
1380
|
) -> _UpdatePackageResponseSuccess
|
1240
1381
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdatePackageResponseSuccess
|
1241
1382
|
|
1383
|
+
interface _UpdatePackageScopeResponseSuccess
|
1384
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdatePackageScopeResponse]
|
1385
|
+
def package_id: () -> ::String
|
1386
|
+
def operation: () -> ("ADD" | "OVERRIDE" | "REMOVE")
|
1387
|
+
def package_user_list: () -> ::Array[::String]
|
1388
|
+
end
|
1389
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpenSearchService/Client.html#update_package_scope-instance_method
|
1390
|
+
def update_package_scope: (
|
1391
|
+
package_id: ::String,
|
1392
|
+
operation: ("ADD" | "OVERRIDE" | "REMOVE"),
|
1393
|
+
package_user_list: Array[::String]
|
1394
|
+
) -> _UpdatePackageScopeResponseSuccess
|
1395
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdatePackageScopeResponseSuccess
|
1396
|
+
|
1242
1397
|
interface _UpdateScheduledActionResponseSuccess
|
1243
1398
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateScheduledActionResponse]
|
1244
1399
|
def scheduled_action: () -> Types::ScheduledAction
|
data/sig/types.rbs
CHANGED
@@ -63,6 +63,20 @@ module Aws::OpenSearchService
|
|
63
63
|
SENSITIVE: []
|
64
64
|
end
|
65
65
|
|
66
|
+
class AddDirectQueryDataSourceRequest
|
67
|
+
attr_accessor data_source_name: ::String
|
68
|
+
attr_accessor data_source_type: Types::DirectQueryDataSourceType
|
69
|
+
attr_accessor description: ::String
|
70
|
+
attr_accessor open_search_arns: ::Array[::String]
|
71
|
+
attr_accessor tag_list: ::Array[Types::Tag]
|
72
|
+
SENSITIVE: []
|
73
|
+
end
|
74
|
+
|
75
|
+
class AddDirectQueryDataSourceResponse
|
76
|
+
attr_accessor data_source_arn: ::String
|
77
|
+
SENSITIVE: []
|
78
|
+
end
|
79
|
+
|
66
80
|
class AddTagsRequest
|
67
81
|
attr_accessor arn: ::String
|
68
82
|
attr_accessor tag_list: ::Array[Types::Tag]
|
@@ -127,6 +141,8 @@ module Aws::OpenSearchService
|
|
127
141
|
class AssociatePackageRequest
|
128
142
|
attr_accessor package_id: ::String
|
129
143
|
attr_accessor domain_name: ::String
|
144
|
+
attr_accessor prerequisite_package_id_list: ::Array[::String]
|
145
|
+
attr_accessor association_configuration: Types::PackageAssociationConfiguration
|
130
146
|
SENSITIVE: []
|
131
147
|
end
|
132
148
|
|
@@ -135,6 +151,17 @@ module Aws::OpenSearchService
|
|
135
151
|
SENSITIVE: []
|
136
152
|
end
|
137
153
|
|
154
|
+
class AssociatePackagesRequest
|
155
|
+
attr_accessor package_list: ::Array[Types::PackageDetailsForAssociation]
|
156
|
+
attr_accessor domain_name: ::String
|
157
|
+
SENSITIVE: []
|
158
|
+
end
|
159
|
+
|
160
|
+
class AssociatePackagesResponse
|
161
|
+
attr_accessor domain_package_details_list: ::Array[Types::DomainPackageDetails]
|
162
|
+
SENSITIVE: []
|
163
|
+
end
|
164
|
+
|
138
165
|
class AuthorizeVpcEndpointAccessRequest
|
139
166
|
attr_accessor domain_name: ::String
|
140
167
|
attr_accessor account: ::String
|
@@ -286,6 +313,11 @@ module Aws::OpenSearchService
|
|
286
313
|
SENSITIVE: []
|
287
314
|
end
|
288
315
|
|
316
|
+
class CloudWatchDirectQueryDataSource
|
317
|
+
attr_accessor role_arn: ::String
|
318
|
+
SENSITIVE: []
|
319
|
+
end
|
320
|
+
|
289
321
|
class ClusterConfig
|
290
322
|
attr_accessor instance_type: ("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" | "or1.medium.search" | "or1.large.search" | "or1.xlarge.search" | "or1.2xlarge.search" | "or1.4xlarge.search" | "or1.8xlarge.search" | "or1.12xlarge.search" | "or1.16xlarge.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")
|
291
323
|
attr_accessor instance_count: ::Integer
|
@@ -417,9 +449,13 @@ module Aws::OpenSearchService
|
|
417
449
|
|
418
450
|
class CreatePackageRequest
|
419
451
|
attr_accessor package_name: ::String
|
420
|
-
attr_accessor package_type: ("TXT-DICTIONARY" | "ZIP-PLUGIN")
|
452
|
+
attr_accessor package_type: ("TXT-DICTIONARY" | "ZIP-PLUGIN" | "PACKAGE-LICENSE" | "PACKAGE-CONFIG")
|
421
453
|
attr_accessor package_description: ::String
|
422
454
|
attr_accessor package_source: Types::PackageSource
|
455
|
+
attr_accessor package_configuration: Types::PackageConfiguration
|
456
|
+
attr_accessor engine_version: ::String
|
457
|
+
attr_accessor package_vending_options: Types::PackageVendingOptions
|
458
|
+
attr_accessor package_encryption_options: Types::PackageEncryptionOptions
|
423
459
|
SENSITIVE: []
|
424
460
|
end
|
425
461
|
|
@@ -489,6 +525,11 @@ module Aws::OpenSearchService
|
|
489
525
|
SENSITIVE: []
|
490
526
|
end
|
491
527
|
|
528
|
+
class DeleteDirectQueryDataSourceRequest
|
529
|
+
attr_accessor data_source_name: ::String
|
530
|
+
SENSITIVE: []
|
531
|
+
end
|
532
|
+
|
492
533
|
class DeleteDomainRequest
|
493
534
|
attr_accessor domain_name: ::String
|
494
535
|
SENSITIVE: []
|
@@ -681,7 +722,7 @@ module Aws::OpenSearchService
|
|
681
722
|
end
|
682
723
|
|
683
724
|
class DescribePackagesFilter
|
684
|
-
attr_accessor name: ("PackageID" | "PackageName" | "PackageStatus" | "PackageType" | "EngineVersion")
|
725
|
+
attr_accessor name: ("PackageID" | "PackageName" | "PackageStatus" | "PackageType" | "EngineVersion" | "PackageOwner")
|
685
726
|
attr_accessor value: ::Array[::String]
|
686
727
|
SENSITIVE: []
|
687
728
|
end
|
@@ -736,6 +777,30 @@ module Aws::OpenSearchService
|
|
736
777
|
SENSITIVE: []
|
737
778
|
end
|
738
779
|
|
780
|
+
class DirectQueryDataSource
|
781
|
+
attr_accessor data_source_name: ::String
|
782
|
+
attr_accessor data_source_type: Types::DirectQueryDataSourceType
|
783
|
+
attr_accessor description: ::String
|
784
|
+
attr_accessor open_search_arns: ::Array[::String]
|
785
|
+
attr_accessor data_source_arn: ::String
|
786
|
+
attr_accessor tag_list: ::Array[Types::Tag]
|
787
|
+
SENSITIVE: []
|
788
|
+
end
|
789
|
+
|
790
|
+
class DirectQueryDataSourceType
|
791
|
+
attr_accessor cloud_watch_log: Types::CloudWatchDirectQueryDataSource
|
792
|
+
attr_accessor security_lake: Types::SecurityLakeDirectQueryDataSource
|
793
|
+
attr_accessor unknown: untyped
|
794
|
+
SENSITIVE: []
|
795
|
+
|
796
|
+
class CloudWatchLog < DirectQueryDataSourceType
|
797
|
+
end
|
798
|
+
class SecurityLake < DirectQueryDataSourceType
|
799
|
+
end
|
800
|
+
class Unknown < DirectQueryDataSourceType
|
801
|
+
end
|
802
|
+
end
|
803
|
+
|
739
804
|
class DisabledOperationException < Aws::EmptyStructure
|
740
805
|
end
|
741
806
|
|
@@ -750,6 +815,17 @@ module Aws::OpenSearchService
|
|
750
815
|
SENSITIVE: []
|
751
816
|
end
|
752
817
|
|
818
|
+
class DissociatePackagesRequest
|
819
|
+
attr_accessor package_list: ::Array[::String]
|
820
|
+
attr_accessor domain_name: ::String
|
821
|
+
SENSITIVE: []
|
822
|
+
end
|
823
|
+
|
824
|
+
class DissociatePackagesResponse
|
825
|
+
attr_accessor domain_package_details_list: ::Array[Types::DomainPackageDetails]
|
826
|
+
SENSITIVE: []
|
827
|
+
end
|
828
|
+
|
753
829
|
class DomainConfig
|
754
830
|
attr_accessor engine_version: Types::VersionStatus
|
755
831
|
attr_accessor cluster_config: Types::ClusterConfigStatus
|
@@ -828,13 +904,15 @@ module Aws::OpenSearchService
|
|
828
904
|
class DomainPackageDetails
|
829
905
|
attr_accessor package_id: ::String
|
830
906
|
attr_accessor package_name: ::String
|
831
|
-
attr_accessor package_type: ("TXT-DICTIONARY" | "ZIP-PLUGIN")
|
907
|
+
attr_accessor package_type: ("TXT-DICTIONARY" | "ZIP-PLUGIN" | "PACKAGE-LICENSE" | "PACKAGE-CONFIG")
|
832
908
|
attr_accessor last_updated: ::Time
|
833
909
|
attr_accessor domain_name: ::String
|
834
910
|
attr_accessor domain_package_status: ("ASSOCIATING" | "ASSOCIATION_FAILED" | "ACTIVE" | "DISSOCIATING" | "DISSOCIATION_FAILED")
|
835
911
|
attr_accessor package_version: ::String
|
912
|
+
attr_accessor prerequisite_package_id_list: ::Array[::String]
|
836
913
|
attr_accessor reference_path: ::String
|
837
914
|
attr_accessor error_details: Types::ErrorDetails
|
915
|
+
attr_accessor association_configuration: Types::PackageAssociationConfiguration
|
838
916
|
SENSITIVE: []
|
839
917
|
end
|
840
918
|
|
@@ -984,6 +1062,20 @@ module Aws::OpenSearchService
|
|
984
1062
|
SENSITIVE: []
|
985
1063
|
end
|
986
1064
|
|
1065
|
+
class GetDirectQueryDataSourceRequest
|
1066
|
+
attr_accessor data_source_name: ::String
|
1067
|
+
SENSITIVE: []
|
1068
|
+
end
|
1069
|
+
|
1070
|
+
class GetDirectQueryDataSourceResponse
|
1071
|
+
attr_accessor data_source_name: ::String
|
1072
|
+
attr_accessor data_source_type: Types::DirectQueryDataSourceType
|
1073
|
+
attr_accessor description: ::String
|
1074
|
+
attr_accessor open_search_arns: ::Array[::String]
|
1075
|
+
attr_accessor data_source_arn: ::String
|
1076
|
+
SENSITIVE: []
|
1077
|
+
end
|
1078
|
+
|
987
1079
|
class GetDomainMaintenanceStatusRequest
|
988
1080
|
attr_accessor domain_name: ::String
|
989
1081
|
attr_accessor maintenance_id: ::String
|
@@ -1147,6 +1239,12 @@ module Aws::OpenSearchService
|
|
1147
1239
|
SENSITIVE: []
|
1148
1240
|
end
|
1149
1241
|
|
1242
|
+
class KeyStoreAccessOption
|
1243
|
+
attr_accessor key_access_role_arn: ::String
|
1244
|
+
attr_accessor key_store_access_enabled: bool
|
1245
|
+
SENSITIVE: []
|
1246
|
+
end
|
1247
|
+
|
1150
1248
|
class LimitExceededException < Aws::EmptyStructure
|
1151
1249
|
end
|
1152
1250
|
|
@@ -1180,6 +1278,17 @@ module Aws::OpenSearchService
|
|
1180
1278
|
SENSITIVE: []
|
1181
1279
|
end
|
1182
1280
|
|
1281
|
+
class ListDirectQueryDataSourcesRequest
|
1282
|
+
attr_accessor next_token: ::String
|
1283
|
+
SENSITIVE: []
|
1284
|
+
end
|
1285
|
+
|
1286
|
+
class ListDirectQueryDataSourcesResponse
|
1287
|
+
attr_accessor next_token: ::String
|
1288
|
+
attr_accessor direct_query_data_sources: ::Array[Types::DirectQueryDataSource]
|
1289
|
+
SENSITIVE: []
|
1290
|
+
end
|
1291
|
+
|
1183
1292
|
class ListDomainMaintenancesRequest
|
1184
1293
|
attr_accessor domain_name: ::String
|
1185
1294
|
attr_accessor action: ("REBOOT_NODE" | "RESTART_SEARCH_PROCESS" | "RESTART_DASHBOARD")
|
@@ -1422,10 +1531,23 @@ module Aws::OpenSearchService
|
|
1422
1531
|
SENSITIVE: []
|
1423
1532
|
end
|
1424
1533
|
|
1534
|
+
class PackageAssociationConfiguration
|
1535
|
+
attr_accessor key_store_access_option: Types::KeyStoreAccessOption
|
1536
|
+
SENSITIVE: []
|
1537
|
+
end
|
1538
|
+
|
1539
|
+
class PackageConfiguration
|
1540
|
+
attr_accessor license_requirement: ("REQUIRED" | "OPTIONAL" | "NONE")
|
1541
|
+
attr_accessor license_filepath: ::String
|
1542
|
+
attr_accessor configuration_requirement: ("REQUIRED" | "OPTIONAL" | "NONE")
|
1543
|
+
attr_accessor requires_restart_for_configuration_update: bool
|
1544
|
+
SENSITIVE: []
|
1545
|
+
end
|
1546
|
+
|
1425
1547
|
class PackageDetails
|
1426
1548
|
attr_accessor package_id: ::String
|
1427
1549
|
attr_accessor package_name: ::String
|
1428
|
-
attr_accessor package_type: ("TXT-DICTIONARY" | "ZIP-PLUGIN")
|
1550
|
+
attr_accessor package_type: ("TXT-DICTIONARY" | "ZIP-PLUGIN" | "PACKAGE-LICENSE" | "PACKAGE-CONFIG")
|
1429
1551
|
attr_accessor package_description: ::String
|
1430
1552
|
attr_accessor package_status: ("COPYING" | "COPY_FAILED" | "VALIDATING" | "VALIDATION_FAILED" | "AVAILABLE" | "DELETING" | "DELETED" | "DELETE_FAILED")
|
1431
1553
|
attr_accessor created_at: ::Time
|
@@ -1434,6 +1556,24 @@ module Aws::OpenSearchService
|
|
1434
1556
|
attr_accessor error_details: Types::ErrorDetails
|
1435
1557
|
attr_accessor engine_version: ::String
|
1436
1558
|
attr_accessor available_plugin_properties: Types::PluginProperties
|
1559
|
+
attr_accessor available_package_configuration: Types::PackageConfiguration
|
1560
|
+
attr_accessor allow_listed_user_list: ::Array[::String]
|
1561
|
+
attr_accessor package_owner: ::String
|
1562
|
+
attr_accessor package_vending_options: Types::PackageVendingOptions
|
1563
|
+
attr_accessor package_encryption_options: Types::PackageEncryptionOptions
|
1564
|
+
SENSITIVE: []
|
1565
|
+
end
|
1566
|
+
|
1567
|
+
class PackageDetailsForAssociation
|
1568
|
+
attr_accessor package_id: ::String
|
1569
|
+
attr_accessor prerequisite_package_id_list: ::Array[::String]
|
1570
|
+
attr_accessor association_configuration: Types::PackageAssociationConfiguration
|
1571
|
+
SENSITIVE: []
|
1572
|
+
end
|
1573
|
+
|
1574
|
+
class PackageEncryptionOptions
|
1575
|
+
attr_accessor kms_key_identifier: ::String
|
1576
|
+
attr_accessor encryption_enabled: bool
|
1437
1577
|
SENSITIVE: []
|
1438
1578
|
end
|
1439
1579
|
|
@@ -1443,11 +1583,17 @@ module Aws::OpenSearchService
|
|
1443
1583
|
SENSITIVE: []
|
1444
1584
|
end
|
1445
1585
|
|
1586
|
+
class PackageVendingOptions
|
1587
|
+
attr_accessor vending_enabled: bool
|
1588
|
+
SENSITIVE: []
|
1589
|
+
end
|
1590
|
+
|
1446
1591
|
class PackageVersionHistory
|
1447
1592
|
attr_accessor package_version: ::String
|
1448
1593
|
attr_accessor commit_message: ::String
|
1449
1594
|
attr_accessor created_at: ::Time
|
1450
1595
|
attr_accessor plugin_properties: Types::PluginProperties
|
1596
|
+
attr_accessor package_configuration: Types::PackageConfiguration
|
1451
1597
|
SENSITIVE: []
|
1452
1598
|
end
|
1453
1599
|
|
@@ -1593,6 +1739,11 @@ module Aws::OpenSearchService
|
|
1593
1739
|
SENSITIVE: []
|
1594
1740
|
end
|
1595
1741
|
|
1742
|
+
class SecurityLakeDirectQueryDataSource
|
1743
|
+
attr_accessor role_arn: ::String
|
1744
|
+
SENSITIVE: []
|
1745
|
+
end
|
1746
|
+
|
1596
1747
|
class ServiceSoftwareOptions
|
1597
1748
|
attr_accessor current_version: ::String
|
1598
1749
|
attr_accessor new_version: ::String
|
@@ -1708,6 +1859,19 @@ module Aws::OpenSearchService
|
|
1708
1859
|
SENSITIVE: []
|
1709
1860
|
end
|
1710
1861
|
|
1862
|
+
class UpdateDirectQueryDataSourceRequest
|
1863
|
+
attr_accessor data_source_name: ::String
|
1864
|
+
attr_accessor data_source_type: Types::DirectQueryDataSourceType
|
1865
|
+
attr_accessor description: ::String
|
1866
|
+
attr_accessor open_search_arns: ::Array[::String]
|
1867
|
+
SENSITIVE: []
|
1868
|
+
end
|
1869
|
+
|
1870
|
+
class UpdateDirectQueryDataSourceResponse
|
1871
|
+
attr_accessor data_source_arn: ::String
|
1872
|
+
SENSITIVE: []
|
1873
|
+
end
|
1874
|
+
|
1711
1875
|
class UpdateDomainConfigRequest
|
1712
1876
|
attr_accessor domain_name: ::String
|
1713
1877
|
attr_accessor cluster_config: Types::ClusterConfig
|
@@ -1745,6 +1909,8 @@ module Aws::OpenSearchService
|
|
1745
1909
|
attr_accessor package_source: Types::PackageSource
|
1746
1910
|
attr_accessor package_description: ::String
|
1747
1911
|
attr_accessor commit_message: ::String
|
1912
|
+
attr_accessor package_configuration: Types::PackageConfiguration
|
1913
|
+
attr_accessor package_encryption_options: Types::PackageEncryptionOptions
|
1748
1914
|
SENSITIVE: []
|
1749
1915
|
end
|
1750
1916
|
|
@@ -1753,6 +1919,20 @@ module Aws::OpenSearchService
|
|
1753
1919
|
SENSITIVE: []
|
1754
1920
|
end
|
1755
1921
|
|
1922
|
+
class UpdatePackageScopeRequest
|
1923
|
+
attr_accessor package_id: ::String
|
1924
|
+
attr_accessor operation: ("ADD" | "OVERRIDE" | "REMOVE")
|
1925
|
+
attr_accessor package_user_list: ::Array[::String]
|
1926
|
+
SENSITIVE: []
|
1927
|
+
end
|
1928
|
+
|
1929
|
+
class UpdatePackageScopeResponse
|
1930
|
+
attr_accessor package_id: ::String
|
1931
|
+
attr_accessor operation: ("ADD" | "OVERRIDE" | "REMOVE")
|
1932
|
+
attr_accessor package_user_list: ::Array[::String]
|
1933
|
+
SENSITIVE: []
|
1934
|
+
end
|
1935
|
+
|
1756
1936
|
class UpdateScheduledActionRequest
|
1757
1937
|
attr_accessor domain_name: ::String
|
1758
1938
|
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.62.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
|
+
date: 2024-12-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|