aws-sdk-resourceexplorer2 1.52.0 → 1.53.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-resourceexplorer2/client.rb +8 -1
- data/lib/aws-sdk-resourceexplorer2/client_api.rb +13 -0
- data/lib/aws-sdk-resourceexplorer2/types.rb +50 -2
- data/lib/aws-sdk-resourceexplorer2.rb +1 -1
- data/sig/types.rbs +10 -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: 66eff51388008c85633daf01eca4ec548eaa30704aa3b839d21c8efa60c20778
|
|
4
|
+
data.tar.gz: 8cdf15446514920c6cba71aa93d08ca99ca10c5030a74ca1a63c18b5137d6678
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5181760c1a2502c501fd8c44f3aad7494021e03ada22589981fb929c93a102fcc96124115ee6f906949a4d76a1bcd596f75234f4bb54181abfef341ba850e285
|
|
7
|
+
data.tar.gz: 64dc0db4c102b6160e73236f8202fde6d33bccc848e055ea5be872ae7593266d6e649a724e0202bce3ab22054be7adcfa39fed4119211e057d39ab215524fa35
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.53.0 (2026-06-29)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Added CFN resource type fields for Search and ListSupportedResourceTypes responses. Added SLRec field for ServiceView
|
|
8
|
+
|
|
4
9
|
1.52.0 (2026-05-27)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.53.0
|
|
@@ -1221,6 +1221,9 @@ module Aws::ResourceExplorer2
|
|
|
1221
1221
|
# resp.view.included_properties[0].name #=> String
|
|
1222
1222
|
# resp.view.streaming_access_for_service #=> String
|
|
1223
1223
|
# resp.view.scope_type #=> String
|
|
1224
|
+
# resp.view.service_linked_recorder.service_principal #=> String
|
|
1225
|
+
# resp.view.service_linked_recorder.recorder_name #=> String
|
|
1226
|
+
# resp.view.service_linked_recorder.recorder_type #=> String, one of "AWS", "THIRD_PARTY"
|
|
1224
1227
|
#
|
|
1225
1228
|
# @see http://docs.aws.amazon.com/goto/WebAPI/resource-explorer-2-2022-07-28/GetServiceView AWS API Documentation
|
|
1226
1229
|
#
|
|
@@ -1567,6 +1570,7 @@ module Aws::ResourceExplorer2
|
|
|
1567
1570
|
# resp.resources[0].region #=> String
|
|
1568
1571
|
# resp.resources[0].resource_type #=> String
|
|
1569
1572
|
# resp.resources[0].service #=> String
|
|
1573
|
+
# resp.resources[0].cfn_resource_type #=> String
|
|
1570
1574
|
# resp.resources[0].last_reported_at #=> Time
|
|
1571
1575
|
# resp.resources[0].properties #=> Array
|
|
1572
1576
|
# resp.resources[0].properties[0].name #=> String
|
|
@@ -1767,6 +1771,8 @@ module Aws::ResourceExplorer2
|
|
|
1767
1771
|
# resp.resource_types #=> Array
|
|
1768
1772
|
# resp.resource_types[0].service #=> String
|
|
1769
1773
|
# resp.resource_types[0].resource_type #=> String
|
|
1774
|
+
# resp.resource_types[0].cfn_resource_types #=> Array
|
|
1775
|
+
# resp.resource_types[0].cfn_resource_types[0] #=> String
|
|
1770
1776
|
# resp.next_token #=> String
|
|
1771
1777
|
#
|
|
1772
1778
|
# @see http://docs.aws.amazon.com/goto/WebAPI/resource-explorer-2-2022-07-28/ListSupportedResourceTypes AWS API Documentation
|
|
@@ -1983,6 +1989,7 @@ module Aws::ResourceExplorer2
|
|
|
1983
1989
|
# resp.resources[0].region #=> String
|
|
1984
1990
|
# resp.resources[0].resource_type #=> String
|
|
1985
1991
|
# resp.resources[0].service #=> String
|
|
1992
|
+
# resp.resources[0].cfn_resource_type #=> String
|
|
1986
1993
|
# resp.resources[0].last_reported_at #=> Time
|
|
1987
1994
|
# resp.resources[0].properties #=> Array
|
|
1988
1995
|
# resp.resources[0].properties[0].name #=> String
|
|
@@ -2268,7 +2275,7 @@ module Aws::ResourceExplorer2
|
|
|
2268
2275
|
tracer: tracer
|
|
2269
2276
|
)
|
|
2270
2277
|
context[:gem_name] = 'aws-sdk-resourceexplorer2'
|
|
2271
|
-
context[:gem_version] = '1.
|
|
2278
|
+
context[:gem_version] = '1.53.0'
|
|
2272
2279
|
Seahorse::Client::Request.new(handlers, context)
|
|
2273
2280
|
end
|
|
2274
2281
|
|
|
@@ -26,6 +26,7 @@ module Aws::ResourceExplorer2
|
|
|
26
26
|
BatchGetViewInputViewArnsList = Shapes::ListShape.new(name: 'BatchGetViewInputViewArnsList')
|
|
27
27
|
BatchGetViewOutput = Shapes::StructureShape.new(name: 'BatchGetViewOutput')
|
|
28
28
|
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
|
29
|
+
CFNResourceTypeList = Shapes::ListShape.new(name: 'CFNResourceTypeList')
|
|
29
30
|
ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
|
|
30
31
|
CreateIndexInput = Shapes::StructureShape.new(name: 'CreateIndexInput')
|
|
31
32
|
CreateIndexOutput = Shapes::StructureShape.new(name: 'CreateIndexOutput')
|
|
@@ -130,6 +131,7 @@ module Aws::ResourceExplorer2
|
|
|
130
131
|
OperationStatus = Shapes::StringShape.new(name: 'OperationStatus')
|
|
131
132
|
OrgConfiguration = Shapes::StructureShape.new(name: 'OrgConfiguration')
|
|
132
133
|
QueryString = Shapes::StringShape.new(name: 'QueryString')
|
|
134
|
+
RecorderType = Shapes::StringShape.new(name: 'RecorderType')
|
|
133
135
|
RegionList = Shapes::ListShape.new(name: 'RegionList')
|
|
134
136
|
RegionListMemberString = Shapes::StringShape.new(name: 'RegionListMemberString')
|
|
135
137
|
RegionStatus = Shapes::StructureShape.new(name: 'RegionStatus')
|
|
@@ -151,6 +153,7 @@ module Aws::ResourceExplorer2
|
|
|
151
153
|
SearchOutput = Shapes::StructureShape.new(name: 'SearchOutput')
|
|
152
154
|
SearchOutputNextTokenString = Shapes::StringShape.new(name: 'SearchOutputNextTokenString')
|
|
153
155
|
SearchOutputViewArnString = Shapes::StringShape.new(name: 'SearchOutputViewArnString')
|
|
156
|
+
ServiceLinkedRecorderInfo = Shapes::StructureShape.new(name: 'ServiceLinkedRecorderInfo')
|
|
154
157
|
ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
|
|
155
158
|
ServiceView = Shapes::StructureShape.new(name: 'ServiceView')
|
|
156
159
|
ServiceViewArnList = Shapes::ListShape.new(name: 'ServiceViewArnList')
|
|
@@ -206,6 +209,8 @@ module Aws::ResourceExplorer2
|
|
|
206
209
|
BatchGetViewOutput.add_member(:errors, Shapes::ShapeRef.new(shape: BatchGetViewErrors, location_name: "Errors"))
|
|
207
210
|
BatchGetViewOutput.struct_class = Types::BatchGetViewOutput
|
|
208
211
|
|
|
212
|
+
CFNResourceTypeList.member = Shapes::ShapeRef.new(shape: String)
|
|
213
|
+
|
|
209
214
|
ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Message"))
|
|
210
215
|
ConflictException.struct_class = Types::ConflictException
|
|
211
216
|
|
|
@@ -466,6 +471,7 @@ module Aws::ResourceExplorer2
|
|
|
466
471
|
Resource.add_member(:region, Shapes::ShapeRef.new(shape: String, location_name: "Region"))
|
|
467
472
|
Resource.add_member(:resource_type, Shapes::ShapeRef.new(shape: String, location_name: "ResourceType"))
|
|
468
473
|
Resource.add_member(:service, Shapes::ShapeRef.new(shape: String, location_name: "Service"))
|
|
474
|
+
Resource.add_member(:cfn_resource_type, Shapes::ShapeRef.new(shape: String, location_name: "CfnResourceType"))
|
|
469
475
|
Resource.add_member(:last_reported_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "LastReportedAt"))
|
|
470
476
|
Resource.add_member(:properties, Shapes::ShapeRef.new(shape: ResourcePropertyList, location_name: "Properties"))
|
|
471
477
|
Resource.struct_class = Types::Resource
|
|
@@ -503,6 +509,11 @@ module Aws::ResourceExplorer2
|
|
|
503
509
|
SearchOutput.add_member(:count, Shapes::ShapeRef.new(shape: ResourceCount, location_name: "Count"))
|
|
504
510
|
SearchOutput.struct_class = Types::SearchOutput
|
|
505
511
|
|
|
512
|
+
ServiceLinkedRecorderInfo.add_member(:service_principal, Shapes::ShapeRef.new(shape: String, location_name: "ServicePrincipal"))
|
|
513
|
+
ServiceLinkedRecorderInfo.add_member(:recorder_name, Shapes::ShapeRef.new(shape: String, location_name: "RecorderName"))
|
|
514
|
+
ServiceLinkedRecorderInfo.add_member(:recorder_type, Shapes::ShapeRef.new(shape: RecorderType, location_name: "RecorderType"))
|
|
515
|
+
ServiceLinkedRecorderInfo.struct_class = Types::ServiceLinkedRecorderInfo
|
|
516
|
+
|
|
506
517
|
ServiceQuotaExceededException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Message"))
|
|
507
518
|
ServiceQuotaExceededException.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Name"))
|
|
508
519
|
ServiceQuotaExceededException.add_member(:value, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Value"))
|
|
@@ -514,6 +525,7 @@ module Aws::ResourceExplorer2
|
|
|
514
525
|
ServiceView.add_member(:included_properties, Shapes::ShapeRef.new(shape: IncludedPropertyList, location_name: "IncludedProperties"))
|
|
515
526
|
ServiceView.add_member(:streaming_access_for_service, Shapes::ShapeRef.new(shape: String, location_name: "StreamingAccessForService"))
|
|
516
527
|
ServiceView.add_member(:scope_type, Shapes::ShapeRef.new(shape: String, location_name: "ScopeType"))
|
|
528
|
+
ServiceView.add_member(:service_linked_recorder, Shapes::ShapeRef.new(shape: ServiceLinkedRecorderInfo, location_name: "ServiceLinkedRecorder"))
|
|
517
529
|
ServiceView.struct_class = Types::ServiceView
|
|
518
530
|
|
|
519
531
|
ServiceViewArnList.member = Shapes::ShapeRef.new(shape: String)
|
|
@@ -528,6 +540,7 @@ module Aws::ResourceExplorer2
|
|
|
528
540
|
|
|
529
541
|
SupportedResourceType.add_member(:service, Shapes::ShapeRef.new(shape: String, location_name: "Service"))
|
|
530
542
|
SupportedResourceType.add_member(:resource_type, Shapes::ShapeRef.new(shape: String, location_name: "ResourceType"))
|
|
543
|
+
SupportedResourceType.add_member(:cfn_resource_types, Shapes::ShapeRef.new(shape: CFNResourceTypeList, location_name: "CFNResourceTypes"))
|
|
531
544
|
SupportedResourceType.struct_class = Types::SupportedResourceType
|
|
532
545
|
|
|
533
546
|
TagMap.key = Shapes::ShapeRef.new(shape: String)
|
|
@@ -1641,6 +1641,11 @@ module Aws::ResourceExplorer2
|
|
|
1641
1641
|
# responsible for creating and updating it.
|
|
1642
1642
|
# @return [String]
|
|
1643
1643
|
#
|
|
1644
|
+
# @!attribute [rw] cfn_resource_type
|
|
1645
|
+
# The CloudFormation resource type identifier for the resource, such
|
|
1646
|
+
# as `AWS::EC2::Instance` or `AWS::S3::Bucket`.
|
|
1647
|
+
# @return [String]
|
|
1648
|
+
#
|
|
1644
1649
|
# @!attribute [rw] last_reported_at
|
|
1645
1650
|
# The date and time that Resource Explorer last queried this resource
|
|
1646
1651
|
# and updated the index with the latest information about the
|
|
@@ -1661,6 +1666,7 @@ module Aws::ResourceExplorer2
|
|
|
1661
1666
|
:region,
|
|
1662
1667
|
:resource_type,
|
|
1663
1668
|
:service,
|
|
1669
|
+
:cfn_resource_type,
|
|
1664
1670
|
:last_reported_at,
|
|
1665
1671
|
:properties)
|
|
1666
1672
|
SENSITIVE = []
|
|
@@ -1872,6 +1878,34 @@ module Aws::ResourceExplorer2
|
|
|
1872
1878
|
include Aws::Structure
|
|
1873
1879
|
end
|
|
1874
1880
|
|
|
1881
|
+
# Contains information about the service-linked recorder paired with a
|
|
1882
|
+
# service view.
|
|
1883
|
+
#
|
|
1884
|
+
# @!attribute [rw] service_principal
|
|
1885
|
+
# The service principal of the Amazon Web Services service that owns
|
|
1886
|
+
# the service-linked recorder, such as
|
|
1887
|
+
# `observabilityadmin.amazonaws.com`.
|
|
1888
|
+
# @return [String]
|
|
1889
|
+
#
|
|
1890
|
+
# @!attribute [rw] recorder_name
|
|
1891
|
+
# The name of the service-linked recorder, such as
|
|
1892
|
+
# `AWSConfigurationRecorderForObservabilityAdmin`.
|
|
1893
|
+
# @return [String]
|
|
1894
|
+
#
|
|
1895
|
+
# @!attribute [rw] recorder_type
|
|
1896
|
+
# The type of the recorder. Valid values are `AWS` and `THIRD_PARTY`.
|
|
1897
|
+
# @return [String]
|
|
1898
|
+
#
|
|
1899
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/resource-explorer-2-2022-07-28/ServiceLinkedRecorderInfo AWS API Documentation
|
|
1900
|
+
#
|
|
1901
|
+
class ServiceLinkedRecorderInfo < Struct.new(
|
|
1902
|
+
:service_principal,
|
|
1903
|
+
:recorder_name,
|
|
1904
|
+
:recorder_type)
|
|
1905
|
+
SENSITIVE = []
|
|
1906
|
+
include Aws::Structure
|
|
1907
|
+
end
|
|
1908
|
+
|
|
1875
1909
|
# The request failed because it exceeds a service quota.
|
|
1876
1910
|
#
|
|
1877
1911
|
# @!attribute [rw] message
|
|
@@ -1926,6 +1960,13 @@ module Aws::ResourceExplorer2
|
|
|
1926
1960
|
# are included.
|
|
1927
1961
|
# @return [String]
|
|
1928
1962
|
#
|
|
1963
|
+
# @!attribute [rw] service_linked_recorder
|
|
1964
|
+
# Information about the service-linked recorder associated with this
|
|
1965
|
+
# service view. When a service view is paired with a service-linked
|
|
1966
|
+
# recorder, Resource Explorer uses the recorder's resource type list
|
|
1967
|
+
# to filter search results and streaming data.
|
|
1968
|
+
# @return [Types::ServiceLinkedRecorderInfo]
|
|
1969
|
+
#
|
|
1929
1970
|
# @see http://docs.aws.amazon.com/goto/WebAPI/resource-explorer-2-2022-07-28/ServiceView AWS API Documentation
|
|
1930
1971
|
#
|
|
1931
1972
|
class ServiceView < Struct.new(
|
|
@@ -1934,7 +1975,8 @@ module Aws::ResourceExplorer2
|
|
|
1934
1975
|
:filters,
|
|
1935
1976
|
:included_properties,
|
|
1936
1977
|
:streaming_access_for_service,
|
|
1937
|
-
:scope_type
|
|
1978
|
+
:scope_type,
|
|
1979
|
+
:service_linked_recorder)
|
|
1938
1980
|
SENSITIVE = [:filters]
|
|
1939
1981
|
include Aws::Structure
|
|
1940
1982
|
end
|
|
@@ -1975,11 +2017,17 @@ module Aws::ResourceExplorer2
|
|
|
1975
2017
|
# The unique identifier of the resource type.
|
|
1976
2018
|
# @return [String]
|
|
1977
2019
|
#
|
|
2020
|
+
# @!attribute [rw] cfn_resource_types
|
|
2021
|
+
# The CloudFormation resource type identifiers for this resource type,
|
|
2022
|
+
# such as `AWS::EC2::Instance`.
|
|
2023
|
+
# @return [Array<String>]
|
|
2024
|
+
#
|
|
1978
2025
|
# @see http://docs.aws.amazon.com/goto/WebAPI/resource-explorer-2-2022-07-28/SupportedResourceType AWS API Documentation
|
|
1979
2026
|
#
|
|
1980
2027
|
class SupportedResourceType < Struct.new(
|
|
1981
2028
|
:service,
|
|
1982
|
-
:resource_type
|
|
2029
|
+
:resource_type,
|
|
2030
|
+
:cfn_resource_types)
|
|
1983
2031
|
SENSITIVE = []
|
|
1984
2032
|
include Aws::Structure
|
|
1985
2033
|
end
|
data/sig/types.rbs
CHANGED
|
@@ -387,6 +387,7 @@ module Aws::ResourceExplorer2
|
|
|
387
387
|
attr_accessor region: ::String
|
|
388
388
|
attr_accessor resource_type: ::String
|
|
389
389
|
attr_accessor service: ::String
|
|
390
|
+
attr_accessor cfn_resource_type: ::String
|
|
390
391
|
attr_accessor last_reported_at: ::Time
|
|
391
392
|
attr_accessor properties: ::Array[Types::ResourceProperty]
|
|
392
393
|
SENSITIVE: []
|
|
@@ -431,6 +432,13 @@ module Aws::ResourceExplorer2
|
|
|
431
432
|
SENSITIVE: []
|
|
432
433
|
end
|
|
433
434
|
|
|
435
|
+
class ServiceLinkedRecorderInfo
|
|
436
|
+
attr_accessor service_principal: ::String
|
|
437
|
+
attr_accessor recorder_name: ::String
|
|
438
|
+
attr_accessor recorder_type: ("AWS" | "THIRD_PARTY")
|
|
439
|
+
SENSITIVE: []
|
|
440
|
+
end
|
|
441
|
+
|
|
434
442
|
class ServiceQuotaExceededException
|
|
435
443
|
attr_accessor message: ::String
|
|
436
444
|
attr_accessor name: ::String
|
|
@@ -445,6 +453,7 @@ module Aws::ResourceExplorer2
|
|
|
445
453
|
attr_accessor included_properties: ::Array[Types::IncludedProperty]
|
|
446
454
|
attr_accessor streaming_access_for_service: ::String
|
|
447
455
|
attr_accessor scope_type: ::String
|
|
456
|
+
attr_accessor service_linked_recorder: Types::ServiceLinkedRecorderInfo
|
|
448
457
|
SENSITIVE: [:filters]
|
|
449
458
|
end
|
|
450
459
|
|
|
@@ -457,6 +466,7 @@ module Aws::ResourceExplorer2
|
|
|
457
466
|
class SupportedResourceType
|
|
458
467
|
attr_accessor service: ::String
|
|
459
468
|
attr_accessor resource_type: ::String
|
|
469
|
+
attr_accessor cfn_resource_types: ::Array[::String]
|
|
460
470
|
SENSITIVE: []
|
|
461
471
|
end
|
|
462
472
|
|