aws-sdk-elementalinference 1.9.0 → 1.10.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-elementalinference/client.rb +49 -1
- data/lib/aws-sdk-elementalinference/client_api.rb +31 -0
- data/lib/aws-sdk-elementalinference/types.rb +78 -0
- data/lib/aws-sdk-elementalinference.rb +1 -1
- data/sig/client.rbs +18 -0
- data/sig/types.rbs +18 -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: a22a3078a2d232f39b8769336e38e48907335e94a2f976d0ec13e525986dbf28
|
|
4
|
+
data.tar.gz: 5aa5298cc2fc08027e64701e6bbf77641b2226ae2c7d784310a097a2193e1bbf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 66cce8538bc37557a392e5660fe9b93f51249c95c0730edc61fc30089d4f99e6b4273a3a588ba53a6ef4d8e37b1d87b86c3f9eaa55dac70de755f533d86a10c9
|
|
7
|
+
data.tar.gz: a6aada7289490e0486b5c6e0b82d15634f7537e403d06c0f70c035cd6307b2536e100800502b0e0198f416df3823692f223dc8c53ff69fba2891a78266d2e3b6
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.10.0 (2026-08-24)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Added support for the GetFixture API, enabling customers to retrieve the details of a fixture from its fixture ID, and added the access role ARN to the CreateFeed, GetFeed, and UpdateFeed responses.
|
|
8
|
+
|
|
4
9
|
1.9.0 (2026-08-10)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.10.0
|
|
@@ -683,6 +683,7 @@ module Aws::ElementalInference
|
|
|
683
683
|
# * {Types::CreateFeedResponse#id #id} => String
|
|
684
684
|
# * {Types::CreateFeedResponse#data_endpoints #data_endpoints} => Array<String>
|
|
685
685
|
# * {Types::CreateFeedResponse#outputs #outputs} => Array<Types::GetOutput>
|
|
686
|
+
# * {Types::CreateFeedResponse#access_role_arn #access_role_arn} => String
|
|
686
687
|
# * {Types::CreateFeedResponse#status #status} => String
|
|
687
688
|
# * {Types::CreateFeedResponse#association #association} => Types::FeedAssociation
|
|
688
689
|
# * {Types::CreateFeedResponse#tags #tags} => Hash<String,String>
|
|
@@ -752,6 +753,7 @@ module Aws::ElementalInference
|
|
|
752
753
|
# resp.outputs[0].status #=> String, one of "ENABLED", "DISABLED"
|
|
753
754
|
# resp.outputs[0].description #=> String
|
|
754
755
|
# resp.outputs[0].from_association #=> Boolean
|
|
756
|
+
# resp.access_role_arn #=> String
|
|
755
757
|
# resp.status #=> String, one of "CREATING", "AVAILABLE", "ACTIVE", "UPDATING", "DELETING", "DELETED", "ARCHIVED"
|
|
756
758
|
# resp.association.associated_resource_name #=> String
|
|
757
759
|
# resp.tags #=> Hash
|
|
@@ -965,6 +967,7 @@ module Aws::ElementalInference
|
|
|
965
967
|
# * {Types::GetFeedResponse#id #id} => String
|
|
966
968
|
# * {Types::GetFeedResponse#data_endpoints #data_endpoints} => Array<String>
|
|
967
969
|
# * {Types::GetFeedResponse#outputs #outputs} => Array<Types::GetOutput>
|
|
970
|
+
# * {Types::GetFeedResponse#access_role_arn #access_role_arn} => String
|
|
968
971
|
# * {Types::GetFeedResponse#status #status} => String
|
|
969
972
|
# * {Types::GetFeedResponse#association #association} => Types::FeedAssociation
|
|
970
973
|
# * {Types::GetFeedResponse#tags #tags} => Hash<String,String>
|
|
@@ -998,6 +1001,7 @@ module Aws::ElementalInference
|
|
|
998
1001
|
# resp.outputs[0].status #=> String, one of "ENABLED", "DISABLED"
|
|
999
1002
|
# resp.outputs[0].description #=> String
|
|
1000
1003
|
# resp.outputs[0].from_association #=> Boolean
|
|
1004
|
+
# resp.access_role_arn #=> String
|
|
1001
1005
|
# resp.status #=> String, one of "CREATING", "AVAILABLE", "ACTIVE", "UPDATING", "DELETING", "DELETED", "ARCHIVED"
|
|
1002
1006
|
# resp.association.associated_resource_name #=> String
|
|
1003
1007
|
# resp.tags #=> Hash
|
|
@@ -1017,6 +1021,48 @@ module Aws::ElementalInference
|
|
|
1017
1021
|
req.send_request(options)
|
|
1018
1022
|
end
|
|
1019
1023
|
|
|
1024
|
+
# Retrieves information about the specified fixture (a sports event,
|
|
1025
|
+
# such as a specific basketball game). You obtain a fixtureId from
|
|
1026
|
+
# SearchFixtures, or from the clipping output of a feed.
|
|
1027
|
+
#
|
|
1028
|
+
# @option params [required, String] :fixture_id
|
|
1029
|
+
# The ID of the fixture to retrieve, as returned by SearchFixtures.
|
|
1030
|
+
#
|
|
1031
|
+
# @return [Types::GetFixtureResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1032
|
+
#
|
|
1033
|
+
# * {Types::GetFixtureResponse#fixture_id #fixture_id} => String
|
|
1034
|
+
# * {Types::GetFixtureResponse#name #name} => String
|
|
1035
|
+
# * {Types::GetFixtureResponse#fixture_group #fixture_group} => String
|
|
1036
|
+
# * {Types::GetFixtureResponse#scheduled_start #scheduled_start} => Time
|
|
1037
|
+
# * {Types::GetFixtureResponse#status #status} => String
|
|
1038
|
+
# * {Types::GetFixtureResponse#competitors #competitors} => Array<Types::Competitor>
|
|
1039
|
+
#
|
|
1040
|
+
# @example Request syntax with placeholder values
|
|
1041
|
+
#
|
|
1042
|
+
# resp = client.get_fixture({
|
|
1043
|
+
# fixture_id: "FixtureId", # required
|
|
1044
|
+
# })
|
|
1045
|
+
#
|
|
1046
|
+
# @example Response structure
|
|
1047
|
+
#
|
|
1048
|
+
# resp.fixture_id #=> String
|
|
1049
|
+
# resp.name #=> String
|
|
1050
|
+
# resp.fixture_group #=> String
|
|
1051
|
+
# resp.scheduled_start #=> Time
|
|
1052
|
+
# resp.status #=> String
|
|
1053
|
+
# resp.competitors #=> Array
|
|
1054
|
+
# resp.competitors[0].name #=> String
|
|
1055
|
+
# resp.competitors[0].is_home #=> Boolean
|
|
1056
|
+
#
|
|
1057
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elementalinference-2018-11-14/GetFixture AWS API Documentation
|
|
1058
|
+
#
|
|
1059
|
+
# @overload get_fixture(params = {})
|
|
1060
|
+
# @param [Hash] params ({})
|
|
1061
|
+
def get_fixture(params = {}, options = {})
|
|
1062
|
+
req = build_request(:get_fixture, params)
|
|
1063
|
+
req.send_request(options)
|
|
1064
|
+
end
|
|
1065
|
+
|
|
1020
1066
|
# Lists the dictionaries in your account.
|
|
1021
1067
|
#
|
|
1022
1068
|
# @option params [Integer] :max_results
|
|
@@ -1396,6 +1442,7 @@ module Aws::ElementalInference
|
|
|
1396
1442
|
# * {Types::UpdateFeedResponse#id #id} => String
|
|
1397
1443
|
# * {Types::UpdateFeedResponse#data_endpoints #data_endpoints} => Array<String>
|
|
1398
1444
|
# * {Types::UpdateFeedResponse#outputs #outputs} => Array<Types::GetOutput>
|
|
1445
|
+
# * {Types::UpdateFeedResponse#access_role_arn #access_role_arn} => String
|
|
1399
1446
|
# * {Types::UpdateFeedResponse#status #status} => String
|
|
1400
1447
|
# * {Types::UpdateFeedResponse#association #association} => Types::FeedAssociation
|
|
1401
1448
|
# * {Types::UpdateFeedResponse#tags #tags} => Hash<String,String>
|
|
@@ -1464,6 +1511,7 @@ module Aws::ElementalInference
|
|
|
1464
1511
|
# resp.outputs[0].status #=> String, one of "ENABLED", "DISABLED"
|
|
1465
1512
|
# resp.outputs[0].description #=> String
|
|
1466
1513
|
# resp.outputs[0].from_association #=> Boolean
|
|
1514
|
+
# resp.access_role_arn #=> String
|
|
1467
1515
|
# resp.status #=> String, one of "CREATING", "AVAILABLE", "ACTIVE", "UPDATING", "DELETING", "DELETED", "ARCHIVED"
|
|
1468
1516
|
# resp.association.associated_resource_name #=> String
|
|
1469
1517
|
# resp.tags #=> Hash
|
|
@@ -1496,7 +1544,7 @@ module Aws::ElementalInference
|
|
|
1496
1544
|
tracer: tracer
|
|
1497
1545
|
)
|
|
1498
1546
|
context[:gem_name] = 'aws-sdk-elementalinference'
|
|
1499
|
-
context[:gem_version] = '1.
|
|
1547
|
+
context[:gem_version] = '1.10.0'
|
|
1500
1548
|
Seahorse::Client::Request.new(handlers, context)
|
|
1501
1549
|
end
|
|
1502
1550
|
|
|
@@ -67,6 +67,8 @@ module Aws::ElementalInference
|
|
|
67
67
|
GetDictionaryResponse = Shapes::StructureShape.new(name: 'GetDictionaryResponse')
|
|
68
68
|
GetFeedRequest = Shapes::StructureShape.new(name: 'GetFeedRequest')
|
|
69
69
|
GetFeedResponse = Shapes::StructureShape.new(name: 'GetFeedResponse')
|
|
70
|
+
GetFixtureRequest = Shapes::StructureShape.new(name: 'GetFixtureRequest')
|
|
71
|
+
GetFixtureResponse = Shapes::StructureShape.new(name: 'GetFixtureResponse')
|
|
70
72
|
GetOutput = Shapes::StructureShape.new(name: 'GetOutput')
|
|
71
73
|
GetOutputList = Shapes::ListShape.new(name: 'GetOutputList')
|
|
72
74
|
IamRoleArn = Shapes::StringShape.new(name: 'IamRoleArn')
|
|
@@ -174,6 +176,7 @@ module Aws::ElementalInference
|
|
|
174
176
|
CreateFeedResponse.add_member(:id, Shapes::ShapeRef.new(shape: FeedId, required: true, location_name: "id"))
|
|
175
177
|
CreateFeedResponse.add_member(:data_endpoints, Shapes::ShapeRef.new(shape: StringList, required: true, location_name: "dataEndpoints"))
|
|
176
178
|
CreateFeedResponse.add_member(:outputs, Shapes::ShapeRef.new(shape: GetOutputList, required: true, location_name: "outputs"))
|
|
179
|
+
CreateFeedResponse.add_member(:access_role_arn, Shapes::ShapeRef.new(shape: IamRoleArn, location_name: "accessRoleArn"))
|
|
177
180
|
CreateFeedResponse.add_member(:status, Shapes::ShapeRef.new(shape: FeedStatus, required: true, location_name: "status"))
|
|
178
181
|
CreateFeedResponse.add_member(:association, Shapes::ShapeRef.new(shape: FeedAssociation, location_name: "association"))
|
|
179
182
|
CreateFeedResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
|
@@ -282,11 +285,23 @@ module Aws::ElementalInference
|
|
|
282
285
|
GetFeedResponse.add_member(:id, Shapes::ShapeRef.new(shape: FeedId, required: true, location_name: "id"))
|
|
283
286
|
GetFeedResponse.add_member(:data_endpoints, Shapes::ShapeRef.new(shape: StringList, required: true, location_name: "dataEndpoints"))
|
|
284
287
|
GetFeedResponse.add_member(:outputs, Shapes::ShapeRef.new(shape: GetOutputList, required: true, location_name: "outputs"))
|
|
288
|
+
GetFeedResponse.add_member(:access_role_arn, Shapes::ShapeRef.new(shape: IamRoleArn, location_name: "accessRoleArn"))
|
|
285
289
|
GetFeedResponse.add_member(:status, Shapes::ShapeRef.new(shape: FeedStatus, required: true, location_name: "status"))
|
|
286
290
|
GetFeedResponse.add_member(:association, Shapes::ShapeRef.new(shape: FeedAssociation, location_name: "association"))
|
|
287
291
|
GetFeedResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
|
288
292
|
GetFeedResponse.struct_class = Types::GetFeedResponse
|
|
289
293
|
|
|
294
|
+
GetFixtureRequest.add_member(:fixture_id, Shapes::ShapeRef.new(shape: FixtureId, required: true, location: "uri", location_name: "fixtureId"))
|
|
295
|
+
GetFixtureRequest.struct_class = Types::GetFixtureRequest
|
|
296
|
+
|
|
297
|
+
GetFixtureResponse.add_member(:fixture_id, Shapes::ShapeRef.new(shape: FixtureId, required: true, location_name: "fixtureId"))
|
|
298
|
+
GetFixtureResponse.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "name"))
|
|
299
|
+
GetFixtureResponse.add_member(:fixture_group, Shapes::ShapeRef.new(shape: String, location_name: "fixtureGroup"))
|
|
300
|
+
GetFixtureResponse.add_member(:scheduled_start, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "scheduledStart"))
|
|
301
|
+
GetFixtureResponse.add_member(:status, Shapes::ShapeRef.new(shape: String, required: true, location_name: "status"))
|
|
302
|
+
GetFixtureResponse.add_member(:competitors, Shapes::ShapeRef.new(shape: CompetitorList, required: true, location_name: "competitors"))
|
|
303
|
+
GetFixtureResponse.struct_class = Types::GetFixtureResponse
|
|
304
|
+
|
|
290
305
|
GetOutput.add_member(:name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "name"))
|
|
291
306
|
GetOutput.add_member(:output_config, Shapes::ShapeRef.new(shape: OutputConfig, required: true, location_name: "outputConfig"))
|
|
292
307
|
GetOutput.add_member(:status, Shapes::ShapeRef.new(shape: OutputStatus, required: true, location_name: "status"))
|
|
@@ -416,6 +431,7 @@ module Aws::ElementalInference
|
|
|
416
431
|
UpdateFeedResponse.add_member(:id, Shapes::ShapeRef.new(shape: FeedId, required: true, location_name: "id"))
|
|
417
432
|
UpdateFeedResponse.add_member(:data_endpoints, Shapes::ShapeRef.new(shape: StringList, required: true, location_name: "dataEndpoints"))
|
|
418
433
|
UpdateFeedResponse.add_member(:outputs, Shapes::ShapeRef.new(shape: GetOutputList, required: true, location_name: "outputs"))
|
|
434
|
+
UpdateFeedResponse.add_member(:access_role_arn, Shapes::ShapeRef.new(shape: IamRoleArn, location_name: "accessRoleArn"))
|
|
419
435
|
UpdateFeedResponse.add_member(:status, Shapes::ShapeRef.new(shape: FeedStatus, required: true, location_name: "status"))
|
|
420
436
|
UpdateFeedResponse.add_member(:association, Shapes::ShapeRef.new(shape: FeedAssociation, location_name: "association"))
|
|
421
437
|
UpdateFeedResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
|
@@ -575,6 +591,21 @@ module Aws::ElementalInference
|
|
|
575
591
|
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestException)
|
|
576
592
|
end)
|
|
577
593
|
|
|
594
|
+
api.add_operation(:get_fixture, Seahorse::Model::Operation.new.tap do |o|
|
|
595
|
+
o.name = "GetFixture"
|
|
596
|
+
o.http_method = "GET"
|
|
597
|
+
o.http_request_uri = "/v1/fixtures/{fixtureId}"
|
|
598
|
+
o.input = Shapes::ShapeRef.new(shape: GetFixtureRequest)
|
|
599
|
+
o.output = Shapes::ShapeRef.new(shape: GetFixtureResponse)
|
|
600
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
601
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
602
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
|
603
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
604
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
|
605
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestException)
|
|
606
|
+
o.errors << Shapes::ShapeRef.new(shape: GatewayTimedOutException)
|
|
607
|
+
end)
|
|
608
|
+
|
|
578
609
|
api.add_operation(:list_dictionaries, Seahorse::Model::Operation.new.tap do |o|
|
|
579
610
|
o.name = "ListDictionaries"
|
|
580
611
|
o.http_method = "GET"
|
|
@@ -301,6 +301,12 @@ module Aws::ElementalInference
|
|
|
301
301
|
# Repeats the outputs that you specified in the request.
|
|
302
302
|
# @return [Array<Types::GetOutput>]
|
|
303
303
|
#
|
|
304
|
+
# @!attribute [rw] access_role_arn
|
|
305
|
+
# The Amazon Resource Name (ARN) of the AWS Identity and Access
|
|
306
|
+
# Management (IAM) role that you specified in the request. This
|
|
307
|
+
# property is absent if you didn't specify an IAM role.
|
|
308
|
+
# @return [String]
|
|
309
|
+
#
|
|
304
310
|
# @!attribute [rw] status
|
|
305
311
|
# The current status of the feed. After creation of the feed has
|
|
306
312
|
# succeeded, the status will be AVAILABLE.
|
|
@@ -324,6 +330,7 @@ module Aws::ElementalInference
|
|
|
324
330
|
:id,
|
|
325
331
|
:data_endpoints,
|
|
326
332
|
:outputs,
|
|
333
|
+
:access_role_arn,
|
|
327
334
|
:status,
|
|
328
335
|
:association,
|
|
329
336
|
:tags)
|
|
@@ -783,6 +790,14 @@ module Aws::ElementalInference
|
|
|
783
790
|
# An array of the outputs in the feed.
|
|
784
791
|
# @return [Array<Types::GetOutput>]
|
|
785
792
|
#
|
|
793
|
+
# @!attribute [rw] access_role_arn
|
|
794
|
+
# The Amazon Resource Name (ARN) of an AWS Identity and Access
|
|
795
|
+
# Management (IAM) role that Elemental Inference assumes. Elemental
|
|
796
|
+
# Inference uses this role to access resources in your account on your
|
|
797
|
+
# behalf. This property is absent if the feed doesn't have an IAM
|
|
798
|
+
# role.
|
|
799
|
+
# @return [String]
|
|
800
|
+
#
|
|
786
801
|
# @!attribute [rw] status
|
|
787
802
|
# The status of the feed.
|
|
788
803
|
# @return [String]
|
|
@@ -805,6 +820,7 @@ module Aws::ElementalInference
|
|
|
805
820
|
:id,
|
|
806
821
|
:data_endpoints,
|
|
807
822
|
:outputs,
|
|
823
|
+
:access_role_arn,
|
|
808
824
|
:status,
|
|
809
825
|
:association,
|
|
810
826
|
:tags)
|
|
@@ -812,6 +828,61 @@ module Aws::ElementalInference
|
|
|
812
828
|
include Aws::Structure
|
|
813
829
|
end
|
|
814
830
|
|
|
831
|
+
# @!attribute [rw] fixture_id
|
|
832
|
+
# The ID of the fixture to retrieve, as returned by SearchFixtures.
|
|
833
|
+
# @return [String]
|
|
834
|
+
#
|
|
835
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elementalinference-2018-11-14/GetFixtureRequest AWS API Documentation
|
|
836
|
+
#
|
|
837
|
+
class GetFixtureRequest < Struct.new(
|
|
838
|
+
:fixture_id)
|
|
839
|
+
SENSITIVE = []
|
|
840
|
+
include Aws::Structure
|
|
841
|
+
end
|
|
842
|
+
|
|
843
|
+
# @!attribute [rw] fixture_id
|
|
844
|
+
# The ID that you specified in the request.
|
|
845
|
+
# @return [String]
|
|
846
|
+
#
|
|
847
|
+
# @!attribute [rw] name
|
|
848
|
+
# The name of the fixture, as provided by the data source. For
|
|
849
|
+
# example, the names of the two competing teams.
|
|
850
|
+
# @return [String]
|
|
851
|
+
#
|
|
852
|
+
# @!attribute [rw] fixture_group
|
|
853
|
+
# The group that the fixture belongs to, such as the competition,
|
|
854
|
+
# league, or tournament. The data source doesn't provide this
|
|
855
|
+
# information for every fixture.
|
|
856
|
+
# @return [String]
|
|
857
|
+
#
|
|
858
|
+
# @!attribute [rw] scheduled_start
|
|
859
|
+
# The scheduled start time of the fixture, as provided by the data
|
|
860
|
+
# source. The actual start time might differ.
|
|
861
|
+
# @return [Time]
|
|
862
|
+
#
|
|
863
|
+
# @!attribute [rw] status
|
|
864
|
+
# The status of the fixture in its lifecycle, as provided by the data
|
|
865
|
+
# source. For example, Scheduled or Completed.
|
|
866
|
+
# @return [String]
|
|
867
|
+
#
|
|
868
|
+
# @!attribute [rw] competitors
|
|
869
|
+
# An array of the competitors (the teams or individuals) in the
|
|
870
|
+
# fixture.
|
|
871
|
+
# @return [Array<Types::Competitor>]
|
|
872
|
+
#
|
|
873
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elementalinference-2018-11-14/GetFixtureResponse AWS API Documentation
|
|
874
|
+
#
|
|
875
|
+
class GetFixtureResponse < Struct.new(
|
|
876
|
+
:fixture_id,
|
|
877
|
+
:name,
|
|
878
|
+
:fixture_group,
|
|
879
|
+
:scheduled_start,
|
|
880
|
+
:status,
|
|
881
|
+
:competitors)
|
|
882
|
+
SENSITIVE = []
|
|
883
|
+
include Aws::Structure
|
|
884
|
+
end
|
|
885
|
+
|
|
815
886
|
# Contains configuration information about one output in a feed. It is
|
|
816
887
|
# used in the GetFeed response.
|
|
817
888
|
#
|
|
@@ -1410,6 +1481,12 @@ module Aws::ElementalInference
|
|
|
1410
1481
|
# unchanged, or you might have changed it.
|
|
1411
1482
|
# @return [Array<Types::GetOutput>]
|
|
1412
1483
|
#
|
|
1484
|
+
# @!attribute [rw] access_role_arn
|
|
1485
|
+
# The Amazon Resource Name (ARN) of the AWS Identity and Access
|
|
1486
|
+
# Management (IAM) role for the feed, after the update. This property
|
|
1487
|
+
# is absent if the feed doesn't have an IAM role.
|
|
1488
|
+
# @return [String]
|
|
1489
|
+
#
|
|
1413
1490
|
# @!attribute [rw] status
|
|
1414
1491
|
# The status of the feed.
|
|
1415
1492
|
# @return [String]
|
|
@@ -1431,6 +1508,7 @@ module Aws::ElementalInference
|
|
|
1431
1508
|
:id,
|
|
1432
1509
|
:data_endpoints,
|
|
1433
1510
|
:outputs,
|
|
1511
|
+
:access_role_arn,
|
|
1434
1512
|
:status,
|
|
1435
1513
|
:association,
|
|
1436
1514
|
:tags)
|
data/sig/client.rbs
CHANGED
|
@@ -120,6 +120,7 @@ module Aws
|
|
|
120
120
|
def id: () -> ::String
|
|
121
121
|
def data_endpoints: () -> ::Array[::String]
|
|
122
122
|
def outputs: () -> ::Array[Types::GetOutput]
|
|
123
|
+
def access_role_arn: () -> ::String
|
|
123
124
|
def status: () -> ("CREATING" | "AVAILABLE" | "ACTIVE" | "UPDATING" | "DELETING" | "DELETED" | "ARCHIVED")
|
|
124
125
|
def association: () -> Types::FeedAssociation
|
|
125
126
|
def tags: () -> ::Hash[::String, ::String]
|
|
@@ -205,6 +206,7 @@ module Aws
|
|
|
205
206
|
def id: () -> ::String
|
|
206
207
|
def data_endpoints: () -> ::Array[::String]
|
|
207
208
|
def outputs: () -> ::Array[Types::GetOutput]
|
|
209
|
+
def access_role_arn: () -> ::String
|
|
208
210
|
def status: () -> ("CREATING" | "AVAILABLE" | "ACTIVE" | "UPDATING" | "DELETING" | "DELETED" | "ARCHIVED")
|
|
209
211
|
def association: () -> Types::FeedAssociation
|
|
210
212
|
def tags: () -> ::Hash[::String, ::String]
|
|
@@ -215,6 +217,21 @@ module Aws
|
|
|
215
217
|
) -> _GetFeedResponseSuccess
|
|
216
218
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetFeedResponseSuccess
|
|
217
219
|
|
|
220
|
+
interface _GetFixtureResponseSuccess
|
|
221
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetFixtureResponse]
|
|
222
|
+
def fixture_id: () -> ::String
|
|
223
|
+
def name: () -> ::String
|
|
224
|
+
def fixture_group: () -> ::String
|
|
225
|
+
def scheduled_start: () -> ::Time
|
|
226
|
+
def status: () -> ::String
|
|
227
|
+
def competitors: () -> ::Array[Types::Competitor]
|
|
228
|
+
end
|
|
229
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElementalInference/Client.html#get_fixture-instance_method
|
|
230
|
+
def get_fixture: (
|
|
231
|
+
fixture_id: ::String
|
|
232
|
+
) -> _GetFixtureResponseSuccess
|
|
233
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetFixtureResponseSuccess
|
|
234
|
+
|
|
218
235
|
interface _ListDictionariesResponseSuccess
|
|
219
236
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListDictionariesResponse]
|
|
220
237
|
def dictionaries: () -> ::Array[Types::DictionarySummary]
|
|
@@ -310,6 +327,7 @@ module Aws
|
|
|
310
327
|
def id: () -> ::String
|
|
311
328
|
def data_endpoints: () -> ::Array[::String]
|
|
312
329
|
def outputs: () -> ::Array[Types::GetOutput]
|
|
330
|
+
def access_role_arn: () -> ::String
|
|
313
331
|
def status: () -> ("CREATING" | "AVAILABLE" | "ACTIVE" | "UPDATING" | "DELETING" | "DELETED" | "ARCHIVED")
|
|
314
332
|
def association: () -> Types::FeedAssociation
|
|
315
333
|
def tags: () -> ::Hash[::String, ::String]
|
data/sig/types.rbs
CHANGED
|
@@ -83,6 +83,7 @@ module Aws::ElementalInference
|
|
|
83
83
|
attr_accessor id: ::String
|
|
84
84
|
attr_accessor data_endpoints: ::Array[::String]
|
|
85
85
|
attr_accessor outputs: ::Array[Types::GetOutput]
|
|
86
|
+
attr_accessor access_role_arn: ::String
|
|
86
87
|
attr_accessor status: ("CREATING" | "AVAILABLE" | "ACTIVE" | "UPDATING" | "DELETING" | "DELETED" | "ARCHIVED")
|
|
87
88
|
attr_accessor association: Types::FeedAssociation
|
|
88
89
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
@@ -219,12 +220,28 @@ module Aws::ElementalInference
|
|
|
219
220
|
attr_accessor id: ::String
|
|
220
221
|
attr_accessor data_endpoints: ::Array[::String]
|
|
221
222
|
attr_accessor outputs: ::Array[Types::GetOutput]
|
|
223
|
+
attr_accessor access_role_arn: ::String
|
|
222
224
|
attr_accessor status: ("CREATING" | "AVAILABLE" | "ACTIVE" | "UPDATING" | "DELETING" | "DELETED" | "ARCHIVED")
|
|
223
225
|
attr_accessor association: Types::FeedAssociation
|
|
224
226
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
225
227
|
SENSITIVE: []
|
|
226
228
|
end
|
|
227
229
|
|
|
230
|
+
class GetFixtureRequest
|
|
231
|
+
attr_accessor fixture_id: ::String
|
|
232
|
+
SENSITIVE: []
|
|
233
|
+
end
|
|
234
|
+
|
|
235
|
+
class GetFixtureResponse
|
|
236
|
+
attr_accessor fixture_id: ::String
|
|
237
|
+
attr_accessor name: ::String
|
|
238
|
+
attr_accessor fixture_group: ::String
|
|
239
|
+
attr_accessor scheduled_start: ::Time
|
|
240
|
+
attr_accessor status: ::String
|
|
241
|
+
attr_accessor competitors: ::Array[Types::Competitor]
|
|
242
|
+
SENSITIVE: []
|
|
243
|
+
end
|
|
244
|
+
|
|
228
245
|
class GetOutput
|
|
229
246
|
attr_accessor name: ::String
|
|
230
247
|
attr_accessor output_config: Types::OutputConfig
|
|
@@ -391,6 +408,7 @@ module Aws::ElementalInference
|
|
|
391
408
|
attr_accessor id: ::String
|
|
392
409
|
attr_accessor data_endpoints: ::Array[::String]
|
|
393
410
|
attr_accessor outputs: ::Array[Types::GetOutput]
|
|
411
|
+
attr_accessor access_role_arn: ::String
|
|
394
412
|
attr_accessor status: ("CREATING" | "AVAILABLE" | "ACTIVE" | "UPDATING" | "DELETING" | "DELETED" | "ARCHIVED")
|
|
395
413
|
attr_accessor association: Types::FeedAssociation
|
|
396
414
|
attr_accessor tags: ::Hash[::String, ::String]
|