aws-sdk-opensearchservice 1.90.0 → 1.91.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 +25 -9
- data/lib/aws-sdk-opensearchservice/client_api.rb +10 -2
- data/lib/aws-sdk-opensearchservice/types.rb +34 -2
- data/lib/aws-sdk-opensearchservice.rb +1 -1
- data/sig/client.rbs +10 -2
- data/sig/types.rbs +9 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ebd029245d7097b6b55e69dfbf9291795c9b3888ddb48ae5dafd0f8b3b9541a3
|
|
4
|
+
data.tar.gz: 519cc02cb66b841eaae385c93b875cbdc5778ae37fc1e62d48790b7030b4958a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 932b5f5c9210fa9d07dcc52f3d7ce4b5f9ae2c58c9a69282b4f95e1e782452f1ba91a71a9609e9767bcf4bac59b7d99a73dd4de70e481f1c7498e793eed59de1
|
|
7
|
+
data.tar.gz: 14446b8cd94497929b46ff45c7073fb54afb56cf93be7e0f259f9ec18bfd23cde79fe69bdb2a15a2715b3f07feeb9c10e1e3e1067c432430f8b3995c7c25909f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.91.0 (2026-03-20)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Added support for Amazon Managed Service for Prometheus (AMP) as a connected data source in OpenSearch UI. Now users can analyze Prometheus metrics in OpenSearch UI without data copy.
|
|
8
|
+
|
|
4
9
|
1.90.0 (2026-03-18)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.91.0
|
|
@@ -585,9 +585,11 @@ module Aws::OpenSearchService
|
|
|
585
585
|
# An optional text field for providing additional context and details
|
|
586
586
|
# about the data source.
|
|
587
587
|
#
|
|
588
|
-
# @option params [
|
|
589
|
-
#
|
|
590
|
-
# that are associated with the direct query data source.
|
|
588
|
+
# @option params [Array<String>] :open_search_arns
|
|
589
|
+
# An optional list of Amazon Resource Names (ARNs) for the OpenSearch
|
|
590
|
+
# collections that are associated with the direct query data source.
|
|
591
|
+
# This field is required for CloudWatchLogs and SecurityLake datasource
|
|
592
|
+
# types.
|
|
591
593
|
#
|
|
592
594
|
# @option params [String] :data_source_access_policy
|
|
593
595
|
# An optional IAM access policy document that defines the permissions
|
|
@@ -612,9 +614,13 @@ module Aws::OpenSearchService
|
|
|
612
614
|
# security_lake: {
|
|
613
615
|
# role_arn: "DirectQueryDataSourceRoleArn", # required
|
|
614
616
|
# },
|
|
617
|
+
# prometheus: {
|
|
618
|
+
# role_arn: "DirectQueryDataSourceRoleArn", # required
|
|
619
|
+
# workspace_arn: "AMPWorkspaceArn", # required
|
|
620
|
+
# },
|
|
615
621
|
# },
|
|
616
622
|
# description: "DirectQueryDataSourceDescription",
|
|
617
|
-
# open_search_arns: ["ARN"],
|
|
623
|
+
# open_search_arns: ["ARN"],
|
|
618
624
|
# data_source_access_policy: "PolicyDocument",
|
|
619
625
|
# tag_list: [
|
|
620
626
|
# {
|
|
@@ -3854,6 +3860,8 @@ module Aws::OpenSearchService
|
|
|
3854
3860
|
# resp.data_source_name #=> String
|
|
3855
3861
|
# resp.data_source_type.cloud_watch_log.role_arn #=> String
|
|
3856
3862
|
# resp.data_source_type.security_lake.role_arn #=> String
|
|
3863
|
+
# resp.data_source_type.prometheus.role_arn #=> String
|
|
3864
|
+
# resp.data_source_type.prometheus.workspace_arn #=> String
|
|
3857
3865
|
# resp.description #=> String
|
|
3858
3866
|
# resp.open_search_arns #=> Array
|
|
3859
3867
|
# resp.open_search_arns[0] #=> String
|
|
@@ -4215,6 +4223,8 @@ module Aws::OpenSearchService
|
|
|
4215
4223
|
# resp.direct_query_data_sources[0].data_source_name #=> String
|
|
4216
4224
|
# resp.direct_query_data_sources[0].data_source_type.cloud_watch_log.role_arn #=> String
|
|
4217
4225
|
# resp.direct_query_data_sources[0].data_source_type.security_lake.role_arn #=> String
|
|
4226
|
+
# resp.direct_query_data_sources[0].data_source_type.prometheus.role_arn #=> String
|
|
4227
|
+
# resp.direct_query_data_sources[0].data_source_type.prometheus.workspace_arn #=> String
|
|
4218
4228
|
# resp.direct_query_data_sources[0].description #=> String
|
|
4219
4229
|
# resp.direct_query_data_sources[0].open_search_arns #=> Array
|
|
4220
4230
|
# resp.direct_query_data_sources[0].open_search_arns[0] #=> String
|
|
@@ -5212,9 +5222,11 @@ module Aws::OpenSearchService
|
|
|
5212
5222
|
# An optional text field for providing additional context and details
|
|
5213
5223
|
# about the data source.
|
|
5214
5224
|
#
|
|
5215
|
-
# @option params [
|
|
5216
|
-
#
|
|
5217
|
-
# that are associated with the direct query data source.
|
|
5225
|
+
# @option params [Array<String>] :open_search_arns
|
|
5226
|
+
# An optional list of Amazon Resource Names (ARNs) for the OpenSearch
|
|
5227
|
+
# collections that are associated with the direct query data source.
|
|
5228
|
+
# This field is required for CloudWatchLogs and SecurityLake datasource
|
|
5229
|
+
# types.
|
|
5218
5230
|
#
|
|
5219
5231
|
# @option params [String] :data_source_access_policy
|
|
5220
5232
|
# An optional IAM access policy document that defines the updated
|
|
@@ -5238,9 +5250,13 @@ module Aws::OpenSearchService
|
|
|
5238
5250
|
# security_lake: {
|
|
5239
5251
|
# role_arn: "DirectQueryDataSourceRoleArn", # required
|
|
5240
5252
|
# },
|
|
5253
|
+
# prometheus: {
|
|
5254
|
+
# role_arn: "DirectQueryDataSourceRoleArn", # required
|
|
5255
|
+
# workspace_arn: "AMPWorkspaceArn", # required
|
|
5256
|
+
# },
|
|
5241
5257
|
# },
|
|
5242
5258
|
# description: "DirectQueryDataSourceDescription",
|
|
5243
|
-
# open_search_arns: ["ARN"],
|
|
5259
|
+
# open_search_arns: ["ARN"],
|
|
5244
5260
|
# data_source_access_policy: "PolicyDocument",
|
|
5245
5261
|
# })
|
|
5246
5262
|
#
|
|
@@ -6164,7 +6180,7 @@ module Aws::OpenSearchService
|
|
|
6164
6180
|
tracer: tracer
|
|
6165
6181
|
)
|
|
6166
6182
|
context[:gem_name] = 'aws-sdk-opensearchservice'
|
|
6167
|
-
context[:gem_version] = '1.
|
|
6183
|
+
context[:gem_version] = '1.91.0'
|
|
6168
6184
|
Seahorse::Client::Request.new(handlers, context)
|
|
6169
6185
|
end
|
|
6170
6186
|
|
|
@@ -17,6 +17,7 @@ module Aws::OpenSearchService
|
|
|
17
17
|
AIMLOptionsInput = Shapes::StructureShape.new(name: 'AIMLOptionsInput')
|
|
18
18
|
AIMLOptionsOutput = Shapes::StructureShape.new(name: 'AIMLOptionsOutput')
|
|
19
19
|
AIMLOptionsStatus = Shapes::StructureShape.new(name: 'AIMLOptionsStatus')
|
|
20
|
+
AMPWorkspaceArn = Shapes::StringShape.new(name: 'AMPWorkspaceArn')
|
|
20
21
|
ARN = Shapes::StringShape.new(name: 'ARN')
|
|
21
22
|
AWSAccount = Shapes::StringShape.new(name: 'AWSAccount')
|
|
22
23
|
AWSDomainInformation = Shapes::StructureShape.new(name: 'AWSDomainInformation')
|
|
@@ -428,6 +429,7 @@ module Aws::OpenSearchService
|
|
|
428
429
|
PluginVersion = Shapes::StringShape.new(name: 'PluginVersion')
|
|
429
430
|
PolicyDocument = Shapes::StringShape.new(name: 'PolicyDocument')
|
|
430
431
|
PrincipalType = Shapes::StringShape.new(name: 'PrincipalType')
|
|
432
|
+
PrometheusDirectQueryDataSource = Shapes::StructureShape.new(name: 'PrometheusDirectQueryDataSource')
|
|
431
433
|
PropertyValueType = Shapes::StringShape.new(name: 'PropertyValueType')
|
|
432
434
|
PurchaseReservedInstanceOfferingRequest = Shapes::StructureShape.new(name: 'PurchaseReservedInstanceOfferingRequest')
|
|
433
435
|
PurchaseReservedInstanceOfferingResponse = Shapes::StructureShape.new(name: 'PurchaseReservedInstanceOfferingResponse')
|
|
@@ -612,7 +614,7 @@ module Aws::OpenSearchService
|
|
|
612
614
|
AddDirectQueryDataSourceRequest.add_member(:data_source_name, Shapes::ShapeRef.new(shape: DirectQueryDataSourceName, required: true, location_name: "DataSourceName"))
|
|
613
615
|
AddDirectQueryDataSourceRequest.add_member(:data_source_type, Shapes::ShapeRef.new(shape: DirectQueryDataSourceType, required: true, location_name: "DataSourceType"))
|
|
614
616
|
AddDirectQueryDataSourceRequest.add_member(:description, Shapes::ShapeRef.new(shape: DirectQueryDataSourceDescription, location_name: "Description"))
|
|
615
|
-
AddDirectQueryDataSourceRequest.add_member(:open_search_arns, Shapes::ShapeRef.new(shape: DirectQueryOpenSearchARNList,
|
|
617
|
+
AddDirectQueryDataSourceRequest.add_member(:open_search_arns, Shapes::ShapeRef.new(shape: DirectQueryOpenSearchARNList, location_name: "OpenSearchArns"))
|
|
616
618
|
AddDirectQueryDataSourceRequest.add_member(:data_source_access_policy, Shapes::ShapeRef.new(shape: PolicyDocument, location_name: "DataSourceAccessPolicy"))
|
|
617
619
|
AddDirectQueryDataSourceRequest.add_member(:tag_list, Shapes::ShapeRef.new(shape: TagList, location_name: "TagList"))
|
|
618
620
|
AddDirectQueryDataSourceRequest.struct_class = Types::AddDirectQueryDataSourceRequest
|
|
@@ -1189,9 +1191,11 @@ module Aws::OpenSearchService
|
|
|
1189
1191
|
|
|
1190
1192
|
DirectQueryDataSourceType.add_member(:cloud_watch_log, Shapes::ShapeRef.new(shape: CloudWatchDirectQueryDataSource, location_name: "CloudWatchLog"))
|
|
1191
1193
|
DirectQueryDataSourceType.add_member(:security_lake, Shapes::ShapeRef.new(shape: SecurityLakeDirectQueryDataSource, location_name: "SecurityLake"))
|
|
1194
|
+
DirectQueryDataSourceType.add_member(:prometheus, Shapes::ShapeRef.new(shape: PrometheusDirectQueryDataSource, location_name: "Prometheus"))
|
|
1192
1195
|
DirectQueryDataSourceType.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
1193
1196
|
DirectQueryDataSourceType.add_member_subclass(:cloud_watch_log, Types::DirectQueryDataSourceType::CloudWatchLog)
|
|
1194
1197
|
DirectQueryDataSourceType.add_member_subclass(:security_lake, Types::DirectQueryDataSourceType::SecurityLake)
|
|
1198
|
+
DirectQueryDataSourceType.add_member_subclass(:prometheus, Types::DirectQueryDataSourceType::Prometheus)
|
|
1195
1199
|
DirectQueryDataSourceType.add_member_subclass(:unknown, Types::DirectQueryDataSourceType::Unknown)
|
|
1196
1200
|
DirectQueryDataSourceType.struct_class = Types::DirectQueryDataSourceType
|
|
1197
1201
|
|
|
@@ -1862,6 +1866,10 @@ module Aws::OpenSearchService
|
|
|
1862
1866
|
PluginProperties.add_member(:uncompressed_size_in_bytes, Shapes::ShapeRef.new(shape: UncompressedPluginSizeInBytes, location_name: "UncompressedSizeInBytes"))
|
|
1863
1867
|
PluginProperties.struct_class = Types::PluginProperties
|
|
1864
1868
|
|
|
1869
|
+
PrometheusDirectQueryDataSource.add_member(:role_arn, Shapes::ShapeRef.new(shape: DirectQueryDataSourceRoleArn, required: true, location_name: "RoleArn"))
|
|
1870
|
+
PrometheusDirectQueryDataSource.add_member(:workspace_arn, Shapes::ShapeRef.new(shape: AMPWorkspaceArn, required: true, location_name: "WorkspaceArn"))
|
|
1871
|
+
PrometheusDirectQueryDataSource.struct_class = Types::PrometheusDirectQueryDataSource
|
|
1872
|
+
|
|
1865
1873
|
PurchaseReservedInstanceOfferingRequest.add_member(:reserved_instance_offering_id, Shapes::ShapeRef.new(shape: GUID, required: true, location_name: "ReservedInstanceOfferingId"))
|
|
1866
1874
|
PurchaseReservedInstanceOfferingRequest.add_member(:reservation_name, Shapes::ShapeRef.new(shape: ReservationToken, required: true, location_name: "ReservationName"))
|
|
1867
1875
|
PurchaseReservedInstanceOfferingRequest.add_member(:instance_count, Shapes::ShapeRef.new(shape: InstanceCount, location_name: "InstanceCount"))
|
|
@@ -2082,7 +2090,7 @@ module Aws::OpenSearchService
|
|
|
2082
2090
|
UpdateDirectQueryDataSourceRequest.add_member(:data_source_name, Shapes::ShapeRef.new(shape: DirectQueryDataSourceName, required: true, location: "uri", location_name: "DataSourceName"))
|
|
2083
2091
|
UpdateDirectQueryDataSourceRequest.add_member(:data_source_type, Shapes::ShapeRef.new(shape: DirectQueryDataSourceType, required: true, location_name: "DataSourceType"))
|
|
2084
2092
|
UpdateDirectQueryDataSourceRequest.add_member(:description, Shapes::ShapeRef.new(shape: DirectQueryDataSourceDescription, location_name: "Description"))
|
|
2085
|
-
UpdateDirectQueryDataSourceRequest.add_member(:open_search_arns, Shapes::ShapeRef.new(shape: DirectQueryOpenSearchARNList,
|
|
2093
|
+
UpdateDirectQueryDataSourceRequest.add_member(:open_search_arns, Shapes::ShapeRef.new(shape: DirectQueryOpenSearchARNList, location_name: "OpenSearchArns"))
|
|
2086
2094
|
UpdateDirectQueryDataSourceRequest.add_member(:data_source_access_policy, Shapes::ShapeRef.new(shape: PolicyDocument, location_name: "DataSourceAccessPolicy"))
|
|
2087
2095
|
UpdateDirectQueryDataSourceRequest.struct_class = Types::UpdateDirectQueryDataSourceRequest
|
|
2088
2096
|
|
|
@@ -235,8 +235,10 @@ module Aws::OpenSearchService
|
|
|
235
235
|
# @return [String]
|
|
236
236
|
#
|
|
237
237
|
# @!attribute [rw] open_search_arns
|
|
238
|
-
#
|
|
238
|
+
# An optional list of Amazon Resource Names (ARNs) for the OpenSearch
|
|
239
239
|
# collections that are associated with the direct query data source.
|
|
240
|
+
# This field is required for CloudWatchLogs and SecurityLake
|
|
241
|
+
# datasource types.
|
|
240
242
|
# @return [Array<String>]
|
|
241
243
|
#
|
|
242
244
|
# @!attribute [rw] data_source_access_policy
|
|
@@ -3260,11 +3262,16 @@ module Aws::OpenSearchService
|
|
|
3260
3262
|
# Specifies Security Lake as a type of data source for direct queries.
|
|
3261
3263
|
# @return [Types::SecurityLakeDirectQueryDataSource]
|
|
3262
3264
|
#
|
|
3265
|
+
# @!attribute [rw] prometheus
|
|
3266
|
+
# Specifies Prometheus as a type of data source for direct queries.
|
|
3267
|
+
# @return [Types::PrometheusDirectQueryDataSource]
|
|
3268
|
+
#
|
|
3263
3269
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DirectQueryDataSourceType AWS API Documentation
|
|
3264
3270
|
#
|
|
3265
3271
|
class DirectQueryDataSourceType < Struct.new(
|
|
3266
3272
|
:cloud_watch_log,
|
|
3267
3273
|
:security_lake,
|
|
3274
|
+
:prometheus,
|
|
3268
3275
|
:unknown)
|
|
3269
3276
|
SENSITIVE = []
|
|
3270
3277
|
include Aws::Structure
|
|
@@ -3272,6 +3279,7 @@ module Aws::OpenSearchService
|
|
|
3272
3279
|
|
|
3273
3280
|
class CloudWatchLog < DirectQueryDataSourceType; end
|
|
3274
3281
|
class SecurityLake < DirectQueryDataSourceType; end
|
|
3282
|
+
class Prometheus < DirectQueryDataSourceType; end
|
|
3275
3283
|
class Unknown < DirectQueryDataSourceType; end
|
|
3276
3284
|
end
|
|
3277
3285
|
|
|
@@ -6630,6 +6638,28 @@ module Aws::OpenSearchService
|
|
|
6630
6638
|
include Aws::Structure
|
|
6631
6639
|
end
|
|
6632
6640
|
|
|
6641
|
+
# Configuration details for a Prometheus data source that can be used
|
|
6642
|
+
# for direct queries.
|
|
6643
|
+
#
|
|
6644
|
+
# @!attribute [rw] role_arn
|
|
6645
|
+
# The unique identifier of the IAM role that grants OpenSearch Service
|
|
6646
|
+
# permission to access the specified data source.
|
|
6647
|
+
# @return [String]
|
|
6648
|
+
#
|
|
6649
|
+
# @!attribute [rw] workspace_arn
|
|
6650
|
+
# The unique identifier of the Amazon Managed Prometheus Workspace
|
|
6651
|
+
# that is associated with the specified data source.
|
|
6652
|
+
# @return [String]
|
|
6653
|
+
#
|
|
6654
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/PrometheusDirectQueryDataSource AWS API Documentation
|
|
6655
|
+
#
|
|
6656
|
+
class PrometheusDirectQueryDataSource < Struct.new(
|
|
6657
|
+
:role_arn,
|
|
6658
|
+
:workspace_arn)
|
|
6659
|
+
SENSITIVE = []
|
|
6660
|
+
include Aws::Structure
|
|
6661
|
+
end
|
|
6662
|
+
|
|
6633
6663
|
# Container for request parameters to the
|
|
6634
6664
|
# `PurchaseReservedInstanceOffering` operation.
|
|
6635
6665
|
#
|
|
@@ -7716,8 +7746,10 @@ module Aws::OpenSearchService
|
|
|
7716
7746
|
# @return [String]
|
|
7717
7747
|
#
|
|
7718
7748
|
# @!attribute [rw] open_search_arns
|
|
7719
|
-
#
|
|
7749
|
+
# An optional list of Amazon Resource Names (ARNs) for the OpenSearch
|
|
7720
7750
|
# collections that are associated with the direct query data source.
|
|
7751
|
+
# This field is required for CloudWatchLogs and SecurityLake
|
|
7752
|
+
# datasource types.
|
|
7721
7753
|
# @return [Array<String>]
|
|
7722
7754
|
#
|
|
7723
7755
|
# @!attribute [rw] data_source_access_policy
|
data/sig/client.rbs
CHANGED
|
@@ -118,10 +118,14 @@ module Aws
|
|
|
118
118
|
}?,
|
|
119
119
|
security_lake: {
|
|
120
120
|
role_arn: ::String
|
|
121
|
+
}?,
|
|
122
|
+
prometheus: {
|
|
123
|
+
role_arn: ::String,
|
|
124
|
+
workspace_arn: ::String
|
|
121
125
|
}?
|
|
122
126
|
},
|
|
123
127
|
?description: ::String,
|
|
124
|
-
open_search_arns: Array[::String],
|
|
128
|
+
?open_search_arns: Array[::String],
|
|
125
129
|
?data_source_access_policy: ::String,
|
|
126
130
|
?tag_list: Array[
|
|
127
131
|
{
|
|
@@ -1277,10 +1281,14 @@ module Aws
|
|
|
1277
1281
|
}?,
|
|
1278
1282
|
security_lake: {
|
|
1279
1283
|
role_arn: ::String
|
|
1284
|
+
}?,
|
|
1285
|
+
prometheus: {
|
|
1286
|
+
role_arn: ::String,
|
|
1287
|
+
workspace_arn: ::String
|
|
1280
1288
|
}?
|
|
1281
1289
|
},
|
|
1282
1290
|
?description: ::String,
|
|
1283
|
-
open_search_arns: Array[::String],
|
|
1291
|
+
?open_search_arns: Array[::String],
|
|
1284
1292
|
?data_source_access_policy: ::String
|
|
1285
1293
|
) -> _UpdateDirectQueryDataSourceResponseSuccess
|
|
1286
1294
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDirectQueryDataSourceResponseSuccess
|
data/sig/types.rbs
CHANGED
|
@@ -835,6 +835,7 @@ module Aws::OpenSearchService
|
|
|
835
835
|
class DirectQueryDataSourceType
|
|
836
836
|
attr_accessor cloud_watch_log: Types::CloudWatchDirectQueryDataSource
|
|
837
837
|
attr_accessor security_lake: Types::SecurityLakeDirectQueryDataSource
|
|
838
|
+
attr_accessor prometheus: Types::PrometheusDirectQueryDataSource
|
|
838
839
|
attr_accessor unknown: untyped
|
|
839
840
|
SENSITIVE: []
|
|
840
841
|
|
|
@@ -842,6 +843,8 @@ module Aws::OpenSearchService
|
|
|
842
843
|
end
|
|
843
844
|
class SecurityLake < DirectQueryDataSourceType
|
|
844
845
|
end
|
|
846
|
+
class Prometheus < DirectQueryDataSourceType
|
|
847
|
+
end
|
|
845
848
|
class Unknown < DirectQueryDataSourceType
|
|
846
849
|
end
|
|
847
850
|
end
|
|
@@ -1688,6 +1691,12 @@ module Aws::OpenSearchService
|
|
|
1688
1691
|
SENSITIVE: []
|
|
1689
1692
|
end
|
|
1690
1693
|
|
|
1694
|
+
class PrometheusDirectQueryDataSource
|
|
1695
|
+
attr_accessor role_arn: ::String
|
|
1696
|
+
attr_accessor workspace_arn: ::String
|
|
1697
|
+
SENSITIVE: []
|
|
1698
|
+
end
|
|
1699
|
+
|
|
1691
1700
|
class PurchaseReservedInstanceOfferingRequest
|
|
1692
1701
|
attr_accessor reserved_instance_offering_id: ::String
|
|
1693
1702
|
attr_accessor reservation_name: ::String
|