aws-sdk-observabilityadmin 1.39.0 → 1.40.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-observabilityadmin/client.rb +232 -5
- data/lib/aws-sdk-observabilityadmin/client_api.rb +138 -0
- data/lib/aws-sdk-observabilityadmin/types.rb +282 -5
- data/lib/aws-sdk-observabilityadmin.rb +1 -1
- data/sig/client.rbs +60 -0
- data/sig/params.rbs +2 -0
- data/sig/types.rbs +72 -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: 78c1cae35f582f62dc9d160f1cf4f2c4fa02118169d666e3ac8a34aefa8a3b92
|
|
4
|
+
data.tar.gz: 8bca4d763aaa9dddcc9cf59f6714df2b2aa7c7064214acede11125c95b98a77f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c50b77faa40df714cbbea9fdd7dbdf2eb33c033ea6c0a896e96ac565ef0d5bc37c832491c6566b6cb743d345b1638151d3ee0efedf0d7dee88ef47248e1ea43b
|
|
7
|
+
data.tar.gz: 1647b7dafdef51083239ee47964f4d72b8c02b038632736d235c3a9779bbca6d91a7c2df5ca1eb1e49988bb18f864c276aa8a03da262d51aed6758d7bdd51f09
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.40.0 (2026-09-22)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Amazon CloudWatch Omni is now generally available, an AI-powered unified observability for AI agents, applications, and infrastructure. Centralization now supports context graph for multi-account resource discovery, and dataset integrations makes logs available in CloudWatch datasets.
|
|
8
|
+
|
|
4
9
|
1.39.0 (2026-09-11)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.40.0
|
|
@@ -512,6 +512,8 @@ module Aws::ObservabilityAdmin
|
|
|
512
512
|
# source_metrics_configuration: {
|
|
513
513
|
# metrics_selection_criteria: "MetricsFilterString",
|
|
514
514
|
# },
|
|
515
|
+
# source_context_graph_configuration: {
|
|
516
|
+
# },
|
|
515
517
|
# },
|
|
516
518
|
# destination: { # required
|
|
517
519
|
# region: "Region", # required
|
|
@@ -560,6 +562,57 @@ module Aws::ObservabilityAdmin
|
|
|
560
562
|
req.send_request(options)
|
|
561
563
|
end
|
|
562
564
|
|
|
565
|
+
# Creates a dataset integration for the caller's account in the current
|
|
566
|
+
# region and returns its ARN.
|
|
567
|
+
#
|
|
568
|
+
# To use this operation, you must have permission to access the dataset
|
|
569
|
+
# integration resources through the IAM role specified in the `RoleArn`
|
|
570
|
+
# parameter.
|
|
571
|
+
#
|
|
572
|
+
# If a dataset integration already exists for the account, this
|
|
573
|
+
# operation fails with a `ConflictException`.
|
|
574
|
+
#
|
|
575
|
+
# @option params [required, String] :role_arn
|
|
576
|
+
# The Amazon Resource Name (ARN) of the IAM role that grants Amazon
|
|
577
|
+
# CloudWatch permission to access the resources needed for the dataset
|
|
578
|
+
# integration.
|
|
579
|
+
#
|
|
580
|
+
# @option params [Hash<String,String>] :tags
|
|
581
|
+
# The key-value pairs to associate with the dataset integration resource
|
|
582
|
+
# for categorization and management purposes.
|
|
583
|
+
#
|
|
584
|
+
# @return [Types::CreateDatasetIntegrationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
585
|
+
#
|
|
586
|
+
# * {Types::CreateDatasetIntegrationOutput#arn #arn} => String
|
|
587
|
+
# * {Types::CreateDatasetIntegrationOutput#role_arn #role_arn} => String
|
|
588
|
+
# * {Types::CreateDatasetIntegrationOutput#created_at #created_at} => Time
|
|
589
|
+
# * {Types::CreateDatasetIntegrationOutput#updated_at #updated_at} => Time
|
|
590
|
+
#
|
|
591
|
+
# @example Request syntax with placeholder values
|
|
592
|
+
#
|
|
593
|
+
# resp = client.create_dataset_integration({
|
|
594
|
+
# role_arn: "ResourceArn", # required
|
|
595
|
+
# tags: {
|
|
596
|
+
# "TagKey" => "TagValue",
|
|
597
|
+
# },
|
|
598
|
+
# })
|
|
599
|
+
#
|
|
600
|
+
# @example Response structure
|
|
601
|
+
#
|
|
602
|
+
# resp.arn #=> String
|
|
603
|
+
# resp.role_arn #=> String
|
|
604
|
+
# resp.created_at #=> Time
|
|
605
|
+
# resp.updated_at #=> Time
|
|
606
|
+
#
|
|
607
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/CreateDatasetIntegration AWS API Documentation
|
|
608
|
+
#
|
|
609
|
+
# @overload create_dataset_integration(params = {})
|
|
610
|
+
# @param [Hash] params ({})
|
|
611
|
+
def create_dataset_integration(params = {}, options = {})
|
|
612
|
+
req = build_request(:create_dataset_integration, params)
|
|
613
|
+
req.send_request(options)
|
|
614
|
+
end
|
|
615
|
+
|
|
563
616
|
# Creates an integration between CloudWatch and S3 Tables for analytics.
|
|
564
617
|
# This integration enables querying CloudWatch telemetry data using
|
|
565
618
|
# analytics engines like Amazon Athena, Amazon Redshift, and Apache
|
|
@@ -933,6 +986,30 @@ module Aws::ObservabilityAdmin
|
|
|
933
986
|
req.send_request(options)
|
|
934
987
|
end
|
|
935
988
|
|
|
989
|
+
# Deletes a dataset integration for the caller's account in the current
|
|
990
|
+
# region. This operation is idempotent; if you submit the same delete
|
|
991
|
+
# more than once, each call succeeds.
|
|
992
|
+
#
|
|
993
|
+
# @option params [required, String] :arn
|
|
994
|
+
# The Amazon Resource Name (ARN) of the dataset integration to delete.
|
|
995
|
+
#
|
|
996
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
997
|
+
#
|
|
998
|
+
# @example Request syntax with placeholder values
|
|
999
|
+
#
|
|
1000
|
+
# resp = client.delete_dataset_integration({
|
|
1001
|
+
# arn: "ResourceArn", # required
|
|
1002
|
+
# })
|
|
1003
|
+
#
|
|
1004
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/DeleteDatasetIntegration AWS API Documentation
|
|
1005
|
+
#
|
|
1006
|
+
# @overload delete_dataset_integration(params = {})
|
|
1007
|
+
# @param [Hash] params ({})
|
|
1008
|
+
def delete_dataset_integration(params = {}, options = {})
|
|
1009
|
+
req = build_request(:delete_dataset_integration, params)
|
|
1010
|
+
req.send_request(options)
|
|
1011
|
+
end
|
|
1012
|
+
|
|
936
1013
|
# Deletes an S3 Table integration and its associated data. This
|
|
937
1014
|
# operation removes the connection between CloudWatch Observability
|
|
938
1015
|
# Admin and S3 Tables.
|
|
@@ -1050,6 +1127,7 @@ module Aws::ObservabilityAdmin
|
|
|
1050
1127
|
# * {Types::GetCentralizationRuleForOrganizationOutput#failure_reason #failure_reason} => String
|
|
1051
1128
|
# * {Types::GetCentralizationRuleForOrganizationOutput#tag_propagation_status #tag_propagation_status} => String
|
|
1052
1129
|
# * {Types::GetCentralizationRuleForOrganizationOutput#tag_propagation_failure_reason #tag_propagation_failure_reason} => String
|
|
1130
|
+
# * {Types::GetCentralizationRuleForOrganizationOutput#context_graph_status #context_graph_status} => String
|
|
1053
1131
|
# * {Types::GetCentralizationRuleForOrganizationOutput#centralization_rule #centralization_rule} => Types::CentralizationRule
|
|
1054
1132
|
#
|
|
1055
1133
|
# @example Request syntax with placeholder values
|
|
@@ -1070,6 +1148,7 @@ module Aws::ObservabilityAdmin
|
|
|
1070
1148
|
# resp.failure_reason #=> String, one of "TRUSTED_ACCESS_NOT_ENABLED", "DESTINATION_ACCOUNT_NOT_IN_ORGANIZATION", "INTERNAL_SERVER_ERROR"
|
|
1071
1149
|
# resp.tag_propagation_status #=> String, one of "Healthy", "Unhealthy"
|
|
1072
1150
|
# resp.tag_propagation_failure_reason #=> String, one of "RoleNotAssumable", "RoleLacksPermissions"
|
|
1151
|
+
# resp.context_graph_status #=> String, one of "Healthy", "Unhealthy", "Provisioning"
|
|
1073
1152
|
# resp.centralization_rule.source.regions #=> Array
|
|
1074
1153
|
# resp.centralization_rule.source.regions[0] #=> String
|
|
1075
1154
|
# resp.centralization_rule.source.scope #=> String
|
|
@@ -1099,6 +1178,41 @@ module Aws::ObservabilityAdmin
|
|
|
1099
1178
|
req.send_request(options)
|
|
1100
1179
|
end
|
|
1101
1180
|
|
|
1181
|
+
# Returns the dataset integration for the caller's account in the
|
|
1182
|
+
# current region.
|
|
1183
|
+
#
|
|
1184
|
+
# @option params [required, String] :arn
|
|
1185
|
+
# The Amazon Resource Name (ARN) of the dataset integration to retrieve.
|
|
1186
|
+
#
|
|
1187
|
+
# @return [Types::GetDatasetIntegrationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1188
|
+
#
|
|
1189
|
+
# * {Types::GetDatasetIntegrationOutput#arn #arn} => String
|
|
1190
|
+
# * {Types::GetDatasetIntegrationOutput#role_arn #role_arn} => String
|
|
1191
|
+
# * {Types::GetDatasetIntegrationOutput#created_at #created_at} => Time
|
|
1192
|
+
# * {Types::GetDatasetIntegrationOutput#updated_at #updated_at} => Time
|
|
1193
|
+
#
|
|
1194
|
+
# @example Request syntax with placeholder values
|
|
1195
|
+
#
|
|
1196
|
+
# resp = client.get_dataset_integration({
|
|
1197
|
+
# arn: "ResourceArn", # required
|
|
1198
|
+
# })
|
|
1199
|
+
#
|
|
1200
|
+
# @example Response structure
|
|
1201
|
+
#
|
|
1202
|
+
# resp.arn #=> String
|
|
1203
|
+
# resp.role_arn #=> String
|
|
1204
|
+
# resp.created_at #=> Time
|
|
1205
|
+
# resp.updated_at #=> Time
|
|
1206
|
+
#
|
|
1207
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/GetDatasetIntegration AWS API Documentation
|
|
1208
|
+
#
|
|
1209
|
+
# @overload get_dataset_integration(params = {})
|
|
1210
|
+
# @param [Hash] params ({})
|
|
1211
|
+
def get_dataset_integration(params = {}, options = {})
|
|
1212
|
+
req = build_request(:get_dataset_integration, params)
|
|
1213
|
+
req.send_request(options)
|
|
1214
|
+
end
|
|
1215
|
+
|
|
1102
1216
|
# Retrieves information about a specific S3 Table integration, including
|
|
1103
1217
|
# its configuration, status, and metadata.
|
|
1104
1218
|
#
|
|
@@ -1507,6 +1621,7 @@ module Aws::ObservabilityAdmin
|
|
|
1507
1621
|
# resp.centralization_rule_summaries[0].failure_reason #=> String, one of "TRUSTED_ACCESS_NOT_ENABLED", "DESTINATION_ACCOUNT_NOT_IN_ORGANIZATION", "INTERNAL_SERVER_ERROR"
|
|
1508
1622
|
# resp.centralization_rule_summaries[0].tag_propagation_status #=> String, one of "Healthy", "Unhealthy"
|
|
1509
1623
|
# resp.centralization_rule_summaries[0].tag_propagation_failure_reason #=> String, one of "RoleNotAssumable", "RoleLacksPermissions"
|
|
1624
|
+
# resp.centralization_rule_summaries[0].context_graph_status #=> String, one of "Healthy", "Unhealthy", "Provisioning"
|
|
1510
1625
|
# resp.centralization_rule_summaries[0].destination_account_id #=> String
|
|
1511
1626
|
# resp.centralization_rule_summaries[0].destination_region #=> String
|
|
1512
1627
|
# resp.next_token #=> String
|
|
@@ -1520,6 +1635,47 @@ module Aws::ObservabilityAdmin
|
|
|
1520
1635
|
req.send_request(options)
|
|
1521
1636
|
end
|
|
1522
1637
|
|
|
1638
|
+
# Returns the dataset integrations in your account.
|
|
1639
|
+
#
|
|
1640
|
+
# @option params [Integer] :max_results
|
|
1641
|
+
# The maximum number of results to return in a single call.
|
|
1642
|
+
#
|
|
1643
|
+
# @option params [String] :next_token
|
|
1644
|
+
# The token for the next set of results. A previous call generates this
|
|
1645
|
+
# token.
|
|
1646
|
+
#
|
|
1647
|
+
# @return [Types::ListDatasetIntegrationsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1648
|
+
#
|
|
1649
|
+
# * {Types::ListDatasetIntegrationsOutput#dataset_integration_summaries #dataset_integration_summaries} => Array<Types::DatasetIntegrationSummary>
|
|
1650
|
+
# * {Types::ListDatasetIntegrationsOutput#next_token #next_token} => String
|
|
1651
|
+
#
|
|
1652
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
1653
|
+
#
|
|
1654
|
+
# @example Request syntax with placeholder values
|
|
1655
|
+
#
|
|
1656
|
+
# resp = client.list_dataset_integrations({
|
|
1657
|
+
# max_results: 1,
|
|
1658
|
+
# next_token: "NextToken",
|
|
1659
|
+
# })
|
|
1660
|
+
#
|
|
1661
|
+
# @example Response structure
|
|
1662
|
+
#
|
|
1663
|
+
# resp.dataset_integration_summaries #=> Array
|
|
1664
|
+
# resp.dataset_integration_summaries[0].arn #=> String
|
|
1665
|
+
# resp.dataset_integration_summaries[0].role_arn #=> String
|
|
1666
|
+
# resp.dataset_integration_summaries[0].created_at #=> Time
|
|
1667
|
+
# resp.dataset_integration_summaries[0].updated_at #=> Time
|
|
1668
|
+
# resp.next_token #=> String
|
|
1669
|
+
#
|
|
1670
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/ListDatasetIntegrations AWS API Documentation
|
|
1671
|
+
#
|
|
1672
|
+
# @overload list_dataset_integrations(params = {})
|
|
1673
|
+
# @param [Hash] params ({})
|
|
1674
|
+
def list_dataset_integrations(params = {}, options = {})
|
|
1675
|
+
req = build_request(:list_dataset_integrations, params)
|
|
1676
|
+
req.send_request(options)
|
|
1677
|
+
end
|
|
1678
|
+
|
|
1523
1679
|
# Returns a list of telemetry configurations for Amazon Web Services
|
|
1524
1680
|
# resources supported by telemetry config. For more information, see
|
|
1525
1681
|
# [Auditing CloudWatch telemetry configurations][1].
|
|
@@ -1534,8 +1690,22 @@ module Aws::ObservabilityAdmin
|
|
|
1534
1690
|
#
|
|
1535
1691
|
# @option params [Array<String>] :resource_types
|
|
1536
1692
|
# A list of resource types used to filter resources supported by
|
|
1537
|
-
# telemetry config. If this parameter is provided, the
|
|
1538
|
-
#
|
|
1693
|
+
# telemetry config. If this parameter is provided, the service returns
|
|
1694
|
+
# the resources in the same order as specified in the request. Currently
|
|
1695
|
+
# supported resource types for discovery are:
|
|
1696
|
+
#
|
|
1697
|
+
# * `AWS::EC2::Instance`
|
|
1698
|
+
#
|
|
1699
|
+
# * `AWS::EC2::VPC`
|
|
1700
|
+
#
|
|
1701
|
+
# * `AWS::Lambda::Function`
|
|
1702
|
+
#
|
|
1703
|
+
# * `AWS::EKS::Cluster`
|
|
1704
|
+
#
|
|
1705
|
+
# * `AWS::WAFv2::WebACL`
|
|
1706
|
+
#
|
|
1707
|
+
# * `AWS::ElasticLoadBalancingV2::LoadBalancer` (Network Load Balancers
|
|
1708
|
+
# only)
|
|
1539
1709
|
#
|
|
1540
1710
|
# @option params [Hash<String,String>] :telemetry_configuration_state
|
|
1541
1711
|
# A key-value pair to filter resources based on the telemetry type and
|
|
@@ -1616,8 +1786,22 @@ module Aws::ObservabilityAdmin
|
|
|
1616
1786
|
#
|
|
1617
1787
|
# @option params [Array<String>] :resource_types
|
|
1618
1788
|
# A list of resource types used to filter resources in the organization.
|
|
1619
|
-
# If this parameter is provided, the
|
|
1620
|
-
# same order
|
|
1789
|
+
# If this parameter is provided, the service returns the resources in
|
|
1790
|
+
# the same order as specified in the request. Currently supported
|
|
1791
|
+
# resource types for discovery are:
|
|
1792
|
+
#
|
|
1793
|
+
# * `AWS::EC2::Instance`
|
|
1794
|
+
#
|
|
1795
|
+
# * `AWS::EC2::VPC`
|
|
1796
|
+
#
|
|
1797
|
+
# * `AWS::Lambda::Function`
|
|
1798
|
+
#
|
|
1799
|
+
# * `AWS::EKS::Cluster`
|
|
1800
|
+
#
|
|
1801
|
+
# * `AWS::WAFv2::WebACL`
|
|
1802
|
+
#
|
|
1803
|
+
# * `AWS::ElasticLoadBalancingV2::LoadBalancer` (Network Load Balancers
|
|
1804
|
+
# only)
|
|
1621
1805
|
#
|
|
1622
1806
|
# @option params [Hash<String,String>] :telemetry_configuration_state
|
|
1623
1807
|
# A key-value pair to filter resources in the organization based on the
|
|
@@ -2222,6 +2406,8 @@ module Aws::ObservabilityAdmin
|
|
|
2222
2406
|
# source_metrics_configuration: {
|
|
2223
2407
|
# metrics_selection_criteria: "MetricsFilterString",
|
|
2224
2408
|
# },
|
|
2409
|
+
# source_context_graph_configuration: {
|
|
2410
|
+
# },
|
|
2225
2411
|
# },
|
|
2226
2412
|
# destination: { # required
|
|
2227
2413
|
# region: "Region", # required
|
|
@@ -2267,6 +2453,47 @@ module Aws::ObservabilityAdmin
|
|
|
2267
2453
|
req.send_request(options)
|
|
2268
2454
|
end
|
|
2269
2455
|
|
|
2456
|
+
# Updates a dataset integration for the caller's account in the current
|
|
2457
|
+
# region. This operation is idempotent; if you submit the same update
|
|
2458
|
+
# more than once, each call succeeds.
|
|
2459
|
+
#
|
|
2460
|
+
# @option params [required, String] :arn
|
|
2461
|
+
# The Amazon Resource Name (ARN) of the dataset integration to update.
|
|
2462
|
+
#
|
|
2463
|
+
# @option params [required, String] :role_arn
|
|
2464
|
+
# The Amazon Resource Name (ARN) of the IAM role to associate with the
|
|
2465
|
+
# dataset integration.
|
|
2466
|
+
#
|
|
2467
|
+
# @return [Types::UpdateDatasetIntegrationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2468
|
+
#
|
|
2469
|
+
# * {Types::UpdateDatasetIntegrationOutput#arn #arn} => String
|
|
2470
|
+
# * {Types::UpdateDatasetIntegrationOutput#role_arn #role_arn} => String
|
|
2471
|
+
# * {Types::UpdateDatasetIntegrationOutput#created_at #created_at} => Time
|
|
2472
|
+
# * {Types::UpdateDatasetIntegrationOutput#updated_at #updated_at} => Time
|
|
2473
|
+
#
|
|
2474
|
+
# @example Request syntax with placeholder values
|
|
2475
|
+
#
|
|
2476
|
+
# resp = client.update_dataset_integration({
|
|
2477
|
+
# arn: "ResourceArn", # required
|
|
2478
|
+
# role_arn: "ResourceArn", # required
|
|
2479
|
+
# })
|
|
2480
|
+
#
|
|
2481
|
+
# @example Response structure
|
|
2482
|
+
#
|
|
2483
|
+
# resp.arn #=> String
|
|
2484
|
+
# resp.role_arn #=> String
|
|
2485
|
+
# resp.created_at #=> Time
|
|
2486
|
+
# resp.updated_at #=> Time
|
|
2487
|
+
#
|
|
2488
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/UpdateDatasetIntegration AWS API Documentation
|
|
2489
|
+
#
|
|
2490
|
+
# @overload update_dataset_integration(params = {})
|
|
2491
|
+
# @param [Hash] params ({})
|
|
2492
|
+
def update_dataset_integration(params = {}, options = {})
|
|
2493
|
+
req = build_request(:update_dataset_integration, params)
|
|
2494
|
+
req.send_request(options)
|
|
2495
|
+
end
|
|
2496
|
+
|
|
2270
2497
|
# Updates the configuration of an existing telemetry pipeline.
|
|
2271
2498
|
#
|
|
2272
2499
|
# <note markdown="1"> The following attributes cannot be updated after pipeline creation:
|
|
@@ -2652,7 +2879,7 @@ module Aws::ObservabilityAdmin
|
|
|
2652
2879
|
tracer: tracer
|
|
2653
2880
|
)
|
|
2654
2881
|
context[:gem_name] = 'aws-sdk-observabilityadmin'
|
|
2655
|
-
context[:gem_version] = '1.
|
|
2882
|
+
context[:gem_version] = '1.40.0'
|
|
2656
2883
|
Seahorse::Client::Request.new(handlers, context)
|
|
2657
2884
|
end
|
|
2658
2885
|
|
|
@@ -36,8 +36,11 @@ module Aws::ObservabilityAdmin
|
|
|
36
36
|
Conditions = Shapes::ListShape.new(name: 'Conditions')
|
|
37
37
|
ConfigurationSummary = Shapes::StructureShape.new(name: 'ConfigurationSummary')
|
|
38
38
|
ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
|
|
39
|
+
ContextGraphStatus = Shapes::StringShape.new(name: 'ContextGraphStatus')
|
|
39
40
|
CreateCentralizationRuleForOrganizationInput = Shapes::StructureShape.new(name: 'CreateCentralizationRuleForOrganizationInput')
|
|
40
41
|
CreateCentralizationRuleForOrganizationOutput = Shapes::StructureShape.new(name: 'CreateCentralizationRuleForOrganizationOutput')
|
|
42
|
+
CreateDatasetIntegrationInput = Shapes::StructureShape.new(name: 'CreateDatasetIntegrationInput')
|
|
43
|
+
CreateDatasetIntegrationOutput = Shapes::StructureShape.new(name: 'CreateDatasetIntegrationOutput')
|
|
41
44
|
CreateS3TableIntegrationInput = Shapes::StructureShape.new(name: 'CreateS3TableIntegrationInput')
|
|
42
45
|
CreateS3TableIntegrationOutput = Shapes::StructureShape.new(name: 'CreateS3TableIntegrationOutput')
|
|
43
46
|
CreateTelemetryPipelineInput = Shapes::StructureShape.new(name: 'CreateTelemetryPipelineInput')
|
|
@@ -49,7 +52,10 @@ module Aws::ObservabilityAdmin
|
|
|
49
52
|
DataSource = Shapes::StructureShape.new(name: 'DataSource')
|
|
50
53
|
DataSourceFilterString = Shapes::StringShape.new(name: 'DataSourceFilterString')
|
|
51
54
|
DataSources = Shapes::ListShape.new(name: 'DataSources')
|
|
55
|
+
DatasetIntegrationSummaries = Shapes::ListShape.new(name: 'DatasetIntegrationSummaries')
|
|
56
|
+
DatasetIntegrationSummary = Shapes::StructureShape.new(name: 'DatasetIntegrationSummary')
|
|
52
57
|
DeleteCentralizationRuleForOrganizationInput = Shapes::StructureShape.new(name: 'DeleteCentralizationRuleForOrganizationInput')
|
|
58
|
+
DeleteDatasetIntegrationInput = Shapes::StructureShape.new(name: 'DeleteDatasetIntegrationInput')
|
|
53
59
|
DeleteS3TableIntegrationInput = Shapes::StructureShape.new(name: 'DeleteS3TableIntegrationInput')
|
|
54
60
|
DeleteTelemetryPipelineInput = Shapes::StructureShape.new(name: 'DeleteTelemetryPipelineInput')
|
|
55
61
|
DeleteTelemetryPipelineOutput = Shapes::StructureShape.new(name: 'DeleteTelemetryPipelineOutput')
|
|
@@ -74,6 +80,8 @@ module Aws::ObservabilityAdmin
|
|
|
74
80
|
Filters = Shapes::ListShape.new(name: 'Filters')
|
|
75
81
|
GetCentralizationRuleForOrganizationInput = Shapes::StructureShape.new(name: 'GetCentralizationRuleForOrganizationInput')
|
|
76
82
|
GetCentralizationRuleForOrganizationOutput = Shapes::StructureShape.new(name: 'GetCentralizationRuleForOrganizationOutput')
|
|
83
|
+
GetDatasetIntegrationInput = Shapes::StructureShape.new(name: 'GetDatasetIntegrationInput')
|
|
84
|
+
GetDatasetIntegrationOutput = Shapes::StructureShape.new(name: 'GetDatasetIntegrationOutput')
|
|
77
85
|
GetS3TableIntegrationInput = Shapes::StructureShape.new(name: 'GetS3TableIntegrationInput')
|
|
78
86
|
GetS3TableIntegrationOutput = Shapes::StructureShape.new(name: 'GetS3TableIntegrationOutput')
|
|
79
87
|
GetTelemetryEnrichmentStatusOutput = Shapes::StructureShape.new(name: 'GetTelemetryEnrichmentStatusOutput')
|
|
@@ -100,6 +108,9 @@ module Aws::ObservabilityAdmin
|
|
|
100
108
|
ListCentralizationRulesForOrganizationInputRuleNamePrefixString = Shapes::StringShape.new(name: 'ListCentralizationRulesForOrganizationInputRuleNamePrefixString')
|
|
101
109
|
ListCentralizationRulesForOrganizationMaxResults = Shapes::IntegerShape.new(name: 'ListCentralizationRulesForOrganizationMaxResults')
|
|
102
110
|
ListCentralizationRulesForOrganizationOutput = Shapes::StructureShape.new(name: 'ListCentralizationRulesForOrganizationOutput')
|
|
111
|
+
ListDatasetIntegrationsInput = Shapes::StructureShape.new(name: 'ListDatasetIntegrationsInput')
|
|
112
|
+
ListDatasetIntegrationsMaxResults = Shapes::IntegerShape.new(name: 'ListDatasetIntegrationsMaxResults')
|
|
113
|
+
ListDatasetIntegrationsOutput = Shapes::StructureShape.new(name: 'ListDatasetIntegrationsOutput')
|
|
103
114
|
ListResourceTelemetryForOrganizationInput = Shapes::StructureShape.new(name: 'ListResourceTelemetryForOrganizationInput')
|
|
104
115
|
ListResourceTelemetryForOrganizationMaxResults = Shapes::IntegerShape.new(name: 'ListResourceTelemetryForOrganizationMaxResults')
|
|
105
116
|
ListResourceTelemetryForOrganizationOutput = Shapes::StructureShape.new(name: 'ListResourceTelemetryForOrganizationOutput')
|
|
@@ -167,6 +178,7 @@ module Aws::ObservabilityAdmin
|
|
|
167
178
|
SingleHeaderNameString = Shapes::StringShape.new(name: 'SingleHeaderNameString')
|
|
168
179
|
Sinks = Shapes::ListShape.new(name: 'Sinks')
|
|
169
180
|
Source = Shapes::StructureShape.new(name: 'Source')
|
|
181
|
+
SourceContextGraphConfiguration = Shapes::StructureShape.new(name: 'SourceContextGraphConfiguration')
|
|
170
182
|
SourceFilterString = Shapes::StringShape.new(name: 'SourceFilterString')
|
|
171
183
|
SourceLogsConfiguration = Shapes::StructureShape.new(name: 'SourceLogsConfiguration')
|
|
172
184
|
SourceMetricsConfiguration = Shapes::StructureShape.new(name: 'SourceMetricsConfiguration')
|
|
@@ -211,10 +223,13 @@ module Aws::ObservabilityAdmin
|
|
|
211
223
|
TelemetryType = Shapes::StringShape.new(name: 'TelemetryType')
|
|
212
224
|
TestTelemetryPipelineInput = Shapes::StructureShape.new(name: 'TestTelemetryPipelineInput')
|
|
213
225
|
TestTelemetryPipelineOutput = Shapes::StructureShape.new(name: 'TestTelemetryPipelineOutput')
|
|
226
|
+
Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
|
|
214
227
|
TooManyRequestsException = Shapes::StructureShape.new(name: 'TooManyRequestsException')
|
|
215
228
|
UntagResourceInput = Shapes::StructureShape.new(name: 'UntagResourceInput')
|
|
216
229
|
UpdateCentralizationRuleForOrganizationInput = Shapes::StructureShape.new(name: 'UpdateCentralizationRuleForOrganizationInput')
|
|
217
230
|
UpdateCentralizationRuleForOrganizationOutput = Shapes::StructureShape.new(name: 'UpdateCentralizationRuleForOrganizationOutput')
|
|
231
|
+
UpdateDatasetIntegrationInput = Shapes::StructureShape.new(name: 'UpdateDatasetIntegrationInput')
|
|
232
|
+
UpdateDatasetIntegrationOutput = Shapes::StructureShape.new(name: 'UpdateDatasetIntegrationOutput')
|
|
218
233
|
UpdateTelemetryPipelineInput = Shapes::StructureShape.new(name: 'UpdateTelemetryPipelineInput')
|
|
219
234
|
UpdateTelemetryPipelineOutput = Shapes::StructureShape.new(name: 'UpdateTelemetryPipelineOutput')
|
|
220
235
|
UpdateTelemetryRuleForOrganizationInput = Shapes::StructureShape.new(name: 'UpdateTelemetryRuleForOrganizationInput')
|
|
@@ -268,6 +283,7 @@ module Aws::ObservabilityAdmin
|
|
|
268
283
|
CentralizationRuleSource.add_member(:scope, Shapes::ShapeRef.new(shape: SourceFilterString, location_name: "Scope"))
|
|
269
284
|
CentralizationRuleSource.add_member(:source_logs_configuration, Shapes::ShapeRef.new(shape: SourceLogsConfiguration, location_name: "SourceLogsConfiguration"))
|
|
270
285
|
CentralizationRuleSource.add_member(:source_metrics_configuration, Shapes::ShapeRef.new(shape: SourceMetricsConfiguration, location_name: "SourceMetricsConfiguration"))
|
|
286
|
+
CentralizationRuleSource.add_member(:source_context_graph_configuration, Shapes::ShapeRef.new(shape: SourceContextGraphConfiguration, location_name: "SourceContextGraphConfiguration"))
|
|
271
287
|
CentralizationRuleSource.struct_class = Types::CentralizationRuleSource
|
|
272
288
|
|
|
273
289
|
CentralizationRuleSummaries.member = Shapes::ShapeRef.new(shape: CentralizationRuleSummary)
|
|
@@ -282,6 +298,7 @@ module Aws::ObservabilityAdmin
|
|
|
282
298
|
CentralizationRuleSummary.add_member(:failure_reason, Shapes::ShapeRef.new(shape: CentralizationFailureReason, location_name: "FailureReason"))
|
|
283
299
|
CentralizationRuleSummary.add_member(:tag_propagation_status, Shapes::ShapeRef.new(shape: TagPropagationStatus, location_name: "TagPropagationStatus"))
|
|
284
300
|
CentralizationRuleSummary.add_member(:tag_propagation_failure_reason, Shapes::ShapeRef.new(shape: TagPropagationFailureReason, location_name: "TagPropagationFailureReason"))
|
|
301
|
+
CentralizationRuleSummary.add_member(:context_graph_status, Shapes::ShapeRef.new(shape: ContextGraphStatus, location_name: "ContextGraphStatus"))
|
|
285
302
|
CentralizationRuleSummary.add_member(:destination_account_id, Shapes::ShapeRef.new(shape: String, location_name: "DestinationAccountId"))
|
|
286
303
|
CentralizationRuleSummary.add_member(:destination_region, Shapes::ShapeRef.new(shape: Region, location_name: "DestinationRegion"))
|
|
287
304
|
CentralizationRuleSummary.struct_class = Types::CentralizationRuleSummary
|
|
@@ -315,6 +332,16 @@ module Aws::ObservabilityAdmin
|
|
|
315
332
|
CreateCentralizationRuleForOrganizationOutput.add_member(:rule_arn, Shapes::ShapeRef.new(shape: ResourceArn, location_name: "RuleArn"))
|
|
316
333
|
CreateCentralizationRuleForOrganizationOutput.struct_class = Types::CreateCentralizationRuleForOrganizationOutput
|
|
317
334
|
|
|
335
|
+
CreateDatasetIntegrationInput.add_member(:role_arn, Shapes::ShapeRef.new(shape: ResourceArn, required: true, location_name: "RoleArn"))
|
|
336
|
+
CreateDatasetIntegrationInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagMapInput, location_name: "Tags"))
|
|
337
|
+
CreateDatasetIntegrationInput.struct_class = Types::CreateDatasetIntegrationInput
|
|
338
|
+
|
|
339
|
+
CreateDatasetIntegrationOutput.add_member(:arn, Shapes::ShapeRef.new(shape: ResourceArn, required: true, location_name: "Arn"))
|
|
340
|
+
CreateDatasetIntegrationOutput.add_member(:role_arn, Shapes::ShapeRef.new(shape: ResourceArn, required: true, location_name: "RoleArn"))
|
|
341
|
+
CreateDatasetIntegrationOutput.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreatedAt"))
|
|
342
|
+
CreateDatasetIntegrationOutput.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "UpdatedAt"))
|
|
343
|
+
CreateDatasetIntegrationOutput.struct_class = Types::CreateDatasetIntegrationOutput
|
|
344
|
+
|
|
318
345
|
CreateS3TableIntegrationInput.add_member(:encryption, Shapes::ShapeRef.new(shape: Encryption, required: true, location_name: "Encryption"))
|
|
319
346
|
CreateS3TableIntegrationInput.add_member(:role_arn, Shapes::ShapeRef.new(shape: ResourceArn, required: true, location_name: "RoleArn"))
|
|
320
347
|
CreateS3TableIntegrationInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagMapInput, location_name: "Tags"))
|
|
@@ -353,9 +380,20 @@ module Aws::ObservabilityAdmin
|
|
|
353
380
|
|
|
354
381
|
DataSources.member = Shapes::ShapeRef.new(shape: DataSource)
|
|
355
382
|
|
|
383
|
+
DatasetIntegrationSummaries.member = Shapes::ShapeRef.new(shape: DatasetIntegrationSummary)
|
|
384
|
+
|
|
385
|
+
DatasetIntegrationSummary.add_member(:arn, Shapes::ShapeRef.new(shape: ResourceArn, required: true, location_name: "Arn"))
|
|
386
|
+
DatasetIntegrationSummary.add_member(:role_arn, Shapes::ShapeRef.new(shape: ResourceArn, location_name: "RoleArn"))
|
|
387
|
+
DatasetIntegrationSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedAt"))
|
|
388
|
+
DatasetIntegrationSummary.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "UpdatedAt"))
|
|
389
|
+
DatasetIntegrationSummary.struct_class = Types::DatasetIntegrationSummary
|
|
390
|
+
|
|
356
391
|
DeleteCentralizationRuleForOrganizationInput.add_member(:rule_identifier, Shapes::ShapeRef.new(shape: RuleIdentifier, required: true, location_name: "RuleIdentifier"))
|
|
357
392
|
DeleteCentralizationRuleForOrganizationInput.struct_class = Types::DeleteCentralizationRuleForOrganizationInput
|
|
358
393
|
|
|
394
|
+
DeleteDatasetIntegrationInput.add_member(:arn, Shapes::ShapeRef.new(shape: ResourceArn, required: true, location_name: "Arn"))
|
|
395
|
+
DeleteDatasetIntegrationInput.struct_class = Types::DeleteDatasetIntegrationInput
|
|
396
|
+
|
|
359
397
|
DeleteS3TableIntegrationInput.add_member(:arn, Shapes::ShapeRef.new(shape: ResourceArn, required: true, location_name: "Arn"))
|
|
360
398
|
DeleteS3TableIntegrationInput.struct_class = Types::DeleteS3TableIntegrationInput
|
|
361
399
|
|
|
@@ -418,9 +456,19 @@ module Aws::ObservabilityAdmin
|
|
|
418
456
|
GetCentralizationRuleForOrganizationOutput.add_member(:failure_reason, Shapes::ShapeRef.new(shape: CentralizationFailureReason, location_name: "FailureReason"))
|
|
419
457
|
GetCentralizationRuleForOrganizationOutput.add_member(:tag_propagation_status, Shapes::ShapeRef.new(shape: TagPropagationStatus, location_name: "TagPropagationStatus"))
|
|
420
458
|
GetCentralizationRuleForOrganizationOutput.add_member(:tag_propagation_failure_reason, Shapes::ShapeRef.new(shape: TagPropagationFailureReason, location_name: "TagPropagationFailureReason"))
|
|
459
|
+
GetCentralizationRuleForOrganizationOutput.add_member(:context_graph_status, Shapes::ShapeRef.new(shape: ContextGraphStatus, location_name: "ContextGraphStatus"))
|
|
421
460
|
GetCentralizationRuleForOrganizationOutput.add_member(:centralization_rule, Shapes::ShapeRef.new(shape: CentralizationRule, location_name: "CentralizationRule"))
|
|
422
461
|
GetCentralizationRuleForOrganizationOutput.struct_class = Types::GetCentralizationRuleForOrganizationOutput
|
|
423
462
|
|
|
463
|
+
GetDatasetIntegrationInput.add_member(:arn, Shapes::ShapeRef.new(shape: ResourceArn, required: true, location_name: "Arn"))
|
|
464
|
+
GetDatasetIntegrationInput.struct_class = Types::GetDatasetIntegrationInput
|
|
465
|
+
|
|
466
|
+
GetDatasetIntegrationOutput.add_member(:arn, Shapes::ShapeRef.new(shape: ResourceArn, location_name: "Arn"))
|
|
467
|
+
GetDatasetIntegrationOutput.add_member(:role_arn, Shapes::ShapeRef.new(shape: ResourceArn, location_name: "RoleArn"))
|
|
468
|
+
GetDatasetIntegrationOutput.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedAt"))
|
|
469
|
+
GetDatasetIntegrationOutput.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "UpdatedAt"))
|
|
470
|
+
GetDatasetIntegrationOutput.struct_class = Types::GetDatasetIntegrationOutput
|
|
471
|
+
|
|
424
472
|
GetS3TableIntegrationInput.add_member(:arn, Shapes::ShapeRef.new(shape: ResourceArn, required: true, location_name: "Arn"))
|
|
425
473
|
GetS3TableIntegrationInput.struct_class = Types::GetS3TableIntegrationInput
|
|
426
474
|
|
|
@@ -507,6 +555,14 @@ module Aws::ObservabilityAdmin
|
|
|
507
555
|
ListCentralizationRulesForOrganizationOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
|
508
556
|
ListCentralizationRulesForOrganizationOutput.struct_class = Types::ListCentralizationRulesForOrganizationOutput
|
|
509
557
|
|
|
558
|
+
ListDatasetIntegrationsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: ListDatasetIntegrationsMaxResults, location_name: "MaxResults"))
|
|
559
|
+
ListDatasetIntegrationsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
|
560
|
+
ListDatasetIntegrationsInput.struct_class = Types::ListDatasetIntegrationsInput
|
|
561
|
+
|
|
562
|
+
ListDatasetIntegrationsOutput.add_member(:dataset_integration_summaries, Shapes::ShapeRef.new(shape: DatasetIntegrationSummaries, required: true, location_name: "DatasetIntegrationSummaries"))
|
|
563
|
+
ListDatasetIntegrationsOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
|
564
|
+
ListDatasetIntegrationsOutput.struct_class = Types::ListDatasetIntegrationsOutput
|
|
565
|
+
|
|
510
566
|
ListResourceTelemetryForOrganizationInput.add_member(:account_identifiers, Shapes::ShapeRef.new(shape: AccountIdentifiers, location_name: "AccountIdentifiers"))
|
|
511
567
|
ListResourceTelemetryForOrganizationInput.add_member(:resource_identifier_prefix, Shapes::ShapeRef.new(shape: ResourceIdentifierPrefix, location_name: "ResourceIdentifierPrefix"))
|
|
512
568
|
ListResourceTelemetryForOrganizationInput.add_member(:resource_types, Shapes::ShapeRef.new(shape: ResourceTypes, location_name: "ResourceTypes"))
|
|
@@ -656,6 +712,8 @@ module Aws::ObservabilityAdmin
|
|
|
656
712
|
Source.add_member(:type, Shapes::ShapeRef.new(shape: String, location_name: "Type"))
|
|
657
713
|
Source.struct_class = Types::Source
|
|
658
714
|
|
|
715
|
+
SourceContextGraphConfiguration.struct_class = Types::SourceContextGraphConfiguration
|
|
716
|
+
|
|
659
717
|
SourceLogsConfiguration.add_member(:log_group_selection_criteria, Shapes::ShapeRef.new(shape: LogsFilterString, location_name: "LogGroupSelectionCriteria"))
|
|
660
718
|
SourceLogsConfiguration.add_member(:data_source_selection_criteria, Shapes::ShapeRef.new(shape: DataSourceFilterString, location_name: "DataSourceSelectionCriteria"))
|
|
661
719
|
SourceLogsConfiguration.add_member(:encrypted_log_group_strategy, Shapes::ShapeRef.new(shape: EncryptedLogGroupStrategy, required: true, location_name: "EncryptedLogGroupStrategy"))
|
|
@@ -798,6 +856,16 @@ module Aws::ObservabilityAdmin
|
|
|
798
856
|
UpdateCentralizationRuleForOrganizationOutput.add_member(:rule_arn, Shapes::ShapeRef.new(shape: ResourceArn, location_name: "RuleArn"))
|
|
799
857
|
UpdateCentralizationRuleForOrganizationOutput.struct_class = Types::UpdateCentralizationRuleForOrganizationOutput
|
|
800
858
|
|
|
859
|
+
UpdateDatasetIntegrationInput.add_member(:arn, Shapes::ShapeRef.new(shape: ResourceArn, required: true, location_name: "Arn"))
|
|
860
|
+
UpdateDatasetIntegrationInput.add_member(:role_arn, Shapes::ShapeRef.new(shape: ResourceArn, required: true, location_name: "RoleArn"))
|
|
861
|
+
UpdateDatasetIntegrationInput.struct_class = Types::UpdateDatasetIntegrationInput
|
|
862
|
+
|
|
863
|
+
UpdateDatasetIntegrationOutput.add_member(:arn, Shapes::ShapeRef.new(shape: ResourceArn, required: true, location_name: "Arn"))
|
|
864
|
+
UpdateDatasetIntegrationOutput.add_member(:role_arn, Shapes::ShapeRef.new(shape: ResourceArn, required: true, location_name: "RoleArn"))
|
|
865
|
+
UpdateDatasetIntegrationOutput.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreatedAt"))
|
|
866
|
+
UpdateDatasetIntegrationOutput.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "UpdatedAt"))
|
|
867
|
+
UpdateDatasetIntegrationOutput.struct_class = Types::UpdateDatasetIntegrationOutput
|
|
868
|
+
|
|
801
869
|
UpdateTelemetryPipelineInput.add_member(:pipeline_identifier, Shapes::ShapeRef.new(shape: TelemetryPipelineIdentifier, required: true, location_name: "PipelineIdentifier"))
|
|
802
870
|
UpdateTelemetryPipelineInput.add_member(:configuration, Shapes::ShapeRef.new(shape: TelemetryPipelineConfiguration, required: true, location_name: "Configuration"))
|
|
803
871
|
UpdateTelemetryPipelineInput.struct_class = Types::UpdateTelemetryPipelineInput
|
|
@@ -878,6 +946,19 @@ module Aws::ObservabilityAdmin
|
|
|
878
946
|
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
|
879
947
|
end)
|
|
880
948
|
|
|
949
|
+
api.add_operation(:create_dataset_integration, Seahorse::Model::Operation.new.tap do |o|
|
|
950
|
+
o.name = "CreateDatasetIntegration"
|
|
951
|
+
o.http_method = "POST"
|
|
952
|
+
o.http_request_uri = "/CreateDatasetIntegration"
|
|
953
|
+
o.input = Shapes::ShapeRef.new(shape: CreateDatasetIntegrationInput)
|
|
954
|
+
o.output = Shapes::ShapeRef.new(shape: CreateDatasetIntegrationOutput)
|
|
955
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
956
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
957
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
958
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
959
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
|
960
|
+
end)
|
|
961
|
+
|
|
881
962
|
api.add_operation(:create_s3_table_integration, Seahorse::Model::Operation.new.tap do |o|
|
|
882
963
|
o.name = "CreateS3TableIntegration"
|
|
883
964
|
o.http_method = "POST"
|
|
@@ -947,6 +1028,19 @@ module Aws::ObservabilityAdmin
|
|
|
947
1028
|
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
|
948
1029
|
end)
|
|
949
1030
|
|
|
1031
|
+
api.add_operation(:delete_dataset_integration, Seahorse::Model::Operation.new.tap do |o|
|
|
1032
|
+
o.name = "DeleteDatasetIntegration"
|
|
1033
|
+
o.http_method = "POST"
|
|
1034
|
+
o.http_request_uri = "/DeleteDatasetIntegration"
|
|
1035
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteDatasetIntegrationInput)
|
|
1036
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
|
1037
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
1038
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
1039
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
1040
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
1041
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
|
1042
|
+
end)
|
|
1043
|
+
|
|
950
1044
|
api.add_operation(:delete_s3_table_integration, Seahorse::Model::Operation.new.tap do |o|
|
|
951
1045
|
o.name = "DeleteS3TableIntegration"
|
|
952
1046
|
o.http_method = "POST"
|
|
@@ -1014,6 +1108,19 @@ module Aws::ObservabilityAdmin
|
|
|
1014
1108
|
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
|
1015
1109
|
end)
|
|
1016
1110
|
|
|
1111
|
+
api.add_operation(:get_dataset_integration, Seahorse::Model::Operation.new.tap do |o|
|
|
1112
|
+
o.name = "GetDatasetIntegration"
|
|
1113
|
+
o.http_method = "POST"
|
|
1114
|
+
o.http_request_uri = "/GetDatasetIntegration"
|
|
1115
|
+
o.input = Shapes::ShapeRef.new(shape: GetDatasetIntegrationInput)
|
|
1116
|
+
o.output = Shapes::ShapeRef.new(shape: GetDatasetIntegrationOutput)
|
|
1117
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
1118
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
1119
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
1120
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
1121
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
|
1122
|
+
end)
|
|
1123
|
+
|
|
1017
1124
|
api.add_operation(:get_s3_table_integration, Seahorse::Model::Operation.new.tap do |o|
|
|
1018
1125
|
o.name = "GetS3TableIntegration"
|
|
1019
1126
|
o.http_method = "POST"
|
|
@@ -1119,6 +1226,24 @@ module Aws::ObservabilityAdmin
|
|
|
1119
1226
|
)
|
|
1120
1227
|
end)
|
|
1121
1228
|
|
|
1229
|
+
api.add_operation(:list_dataset_integrations, Seahorse::Model::Operation.new.tap do |o|
|
|
1230
|
+
o.name = "ListDatasetIntegrations"
|
|
1231
|
+
o.http_method = "POST"
|
|
1232
|
+
o.http_request_uri = "/ListDatasetIntegrations"
|
|
1233
|
+
o.input = Shapes::ShapeRef.new(shape: ListDatasetIntegrationsInput)
|
|
1234
|
+
o.output = Shapes::ShapeRef.new(shape: ListDatasetIntegrationsOutput)
|
|
1235
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
1236
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
1237
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
1238
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
|
1239
|
+
o[:pager] = Aws::Pager.new(
|
|
1240
|
+
limit_key: "max_results",
|
|
1241
|
+
tokens: {
|
|
1242
|
+
"next_token" => "next_token"
|
|
1243
|
+
}
|
|
1244
|
+
)
|
|
1245
|
+
end)
|
|
1246
|
+
|
|
1122
1247
|
api.add_operation(:list_resource_telemetry, Seahorse::Model::Operation.new.tap do |o|
|
|
1123
1248
|
o.name = "ListResourceTelemetry"
|
|
1124
1249
|
o.http_method = "POST"
|
|
@@ -1365,6 +1490,19 @@ module Aws::ObservabilityAdmin
|
|
|
1365
1490
|
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
|
1366
1491
|
end)
|
|
1367
1492
|
|
|
1493
|
+
api.add_operation(:update_dataset_integration, Seahorse::Model::Operation.new.tap do |o|
|
|
1494
|
+
o.name = "UpdateDatasetIntegration"
|
|
1495
|
+
o.http_method = "POST"
|
|
1496
|
+
o.http_request_uri = "/UpdateDatasetIntegration"
|
|
1497
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateDatasetIntegrationInput)
|
|
1498
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateDatasetIntegrationOutput)
|
|
1499
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
1500
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
1501
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
1502
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
1503
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
|
1504
|
+
end)
|
|
1505
|
+
|
|
1368
1506
|
api.add_operation(:update_telemetry_pipeline, Seahorse::Model::Operation.new.tap do |o|
|
|
1369
1507
|
o.name = "UpdateTelemetryPipeline"
|
|
1370
1508
|
o.http_method = "POST"
|
|
@@ -197,13 +197,21 @@ module Aws::ObservabilityAdmin
|
|
|
197
197
|
# Metric specific configuration for centralization source metrics.
|
|
198
198
|
# @return [Types::SourceMetricsConfiguration]
|
|
199
199
|
#
|
|
200
|
+
# @!attribute [rw] source_context_graph_configuration
|
|
201
|
+
# Configuration that enables centralization of the context graph for
|
|
202
|
+
# the selected sources. Including this configuration in a rule's
|
|
203
|
+
# source opts the rule into centralizing the context graph for the
|
|
204
|
+
# selected sources.
|
|
205
|
+
# @return [Types::SourceContextGraphConfiguration]
|
|
206
|
+
#
|
|
200
207
|
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/CentralizationRuleSource AWS API Documentation
|
|
201
208
|
#
|
|
202
209
|
class CentralizationRuleSource < Struct.new(
|
|
203
210
|
:regions,
|
|
204
211
|
:scope,
|
|
205
212
|
:source_logs_configuration,
|
|
206
|
-
:source_metrics_configuration
|
|
213
|
+
:source_metrics_configuration,
|
|
214
|
+
:source_context_graph_configuration)
|
|
207
215
|
SENSITIVE = []
|
|
208
216
|
include Aws::Structure
|
|
209
217
|
end
|
|
@@ -259,6 +267,13 @@ module Aws::ObservabilityAdmin
|
|
|
259
267
|
# when `TagPropagationStatus` is `Unhealthy`.
|
|
260
268
|
# @return [String]
|
|
261
269
|
#
|
|
270
|
+
# @!attribute [rw] context_graph_status
|
|
271
|
+
# The status of context graph centralization for this rule. Returns
|
|
272
|
+
# `Provisioning` while the context graph is being set up, `Healthy`
|
|
273
|
+
# once it is active, or `Unhealthy` if provisioning failed. This
|
|
274
|
+
# status is independent of the overall `RuleHealth` for log delivery.
|
|
275
|
+
# @return [String]
|
|
276
|
+
#
|
|
262
277
|
# @!attribute [rw] destination_account_id
|
|
263
278
|
# The primary destination account of the organization centralization
|
|
264
279
|
# rule.
|
|
@@ -282,6 +297,7 @@ module Aws::ObservabilityAdmin
|
|
|
282
297
|
:failure_reason,
|
|
283
298
|
:tag_propagation_status,
|
|
284
299
|
:tag_propagation_failure_reason,
|
|
300
|
+
:context_graph_status,
|
|
285
301
|
:destination_account_id,
|
|
286
302
|
:destination_region)
|
|
287
303
|
SENSITIVE = []
|
|
@@ -427,6 +443,54 @@ module Aws::ObservabilityAdmin
|
|
|
427
443
|
include Aws::Structure
|
|
428
444
|
end
|
|
429
445
|
|
|
446
|
+
# @!attribute [rw] role_arn
|
|
447
|
+
# The Amazon Resource Name (ARN) of the IAM role that grants Amazon
|
|
448
|
+
# CloudWatch permission to access the resources needed for the dataset
|
|
449
|
+
# integration.
|
|
450
|
+
# @return [String]
|
|
451
|
+
#
|
|
452
|
+
# @!attribute [rw] tags
|
|
453
|
+
# The key-value pairs to associate with the dataset integration
|
|
454
|
+
# resource for categorization and management purposes.
|
|
455
|
+
# @return [Hash<String,String>]
|
|
456
|
+
#
|
|
457
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/CreateDatasetIntegrationInput AWS API Documentation
|
|
458
|
+
#
|
|
459
|
+
class CreateDatasetIntegrationInput < Struct.new(
|
|
460
|
+
:role_arn,
|
|
461
|
+
:tags)
|
|
462
|
+
SENSITIVE = []
|
|
463
|
+
include Aws::Structure
|
|
464
|
+
end
|
|
465
|
+
|
|
466
|
+
# @!attribute [rw] arn
|
|
467
|
+
# The Amazon Resource Name (ARN) of the created dataset integration.
|
|
468
|
+
# @return [String]
|
|
469
|
+
#
|
|
470
|
+
# @!attribute [rw] role_arn
|
|
471
|
+
# The Amazon Resource Name (ARN) of the IAM role associated with the
|
|
472
|
+
# dataset integration.
|
|
473
|
+
# @return [String]
|
|
474
|
+
#
|
|
475
|
+
# @!attribute [rw] created_at
|
|
476
|
+
# The timestamp when the dataset integration was created.
|
|
477
|
+
# @return [Time]
|
|
478
|
+
#
|
|
479
|
+
# @!attribute [rw] updated_at
|
|
480
|
+
# The timestamp when the dataset integration was last updated.
|
|
481
|
+
# @return [Time]
|
|
482
|
+
#
|
|
483
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/CreateDatasetIntegrationOutput AWS API Documentation
|
|
484
|
+
#
|
|
485
|
+
class CreateDatasetIntegrationOutput < Struct.new(
|
|
486
|
+
:arn,
|
|
487
|
+
:role_arn,
|
|
488
|
+
:created_at,
|
|
489
|
+
:updated_at)
|
|
490
|
+
SENSITIVE = []
|
|
491
|
+
include Aws::Structure
|
|
492
|
+
end
|
|
493
|
+
|
|
430
494
|
# @!attribute [rw] encryption
|
|
431
495
|
# The encryption configuration for the S3 Table integration, including
|
|
432
496
|
# the encryption algorithm and KMS key settings.
|
|
@@ -613,6 +677,38 @@ module Aws::ObservabilityAdmin
|
|
|
613
677
|
include Aws::Structure
|
|
614
678
|
end
|
|
615
679
|
|
|
680
|
+
# Contains summary information about a dataset integration, including
|
|
681
|
+
# its ARN, associated IAM role, and creation and update timestamps, as
|
|
682
|
+
# returned by `ListDatasetIntegrations`.
|
|
683
|
+
#
|
|
684
|
+
# @!attribute [rw] arn
|
|
685
|
+
# The Amazon Resource Name (ARN) of the dataset integration.
|
|
686
|
+
# @return [String]
|
|
687
|
+
#
|
|
688
|
+
# @!attribute [rw] role_arn
|
|
689
|
+
# The Amazon Resource Name (ARN) of the IAM role associated with the
|
|
690
|
+
# dataset integration.
|
|
691
|
+
# @return [String]
|
|
692
|
+
#
|
|
693
|
+
# @!attribute [rw] created_at
|
|
694
|
+
# The timestamp when the dataset integration was created.
|
|
695
|
+
# @return [Time]
|
|
696
|
+
#
|
|
697
|
+
# @!attribute [rw] updated_at
|
|
698
|
+
# The timestamp when the dataset integration was last updated.
|
|
699
|
+
# @return [Time]
|
|
700
|
+
#
|
|
701
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/DatasetIntegrationSummary AWS API Documentation
|
|
702
|
+
#
|
|
703
|
+
class DatasetIntegrationSummary < Struct.new(
|
|
704
|
+
:arn,
|
|
705
|
+
:role_arn,
|
|
706
|
+
:created_at,
|
|
707
|
+
:updated_at)
|
|
708
|
+
SENSITIVE = []
|
|
709
|
+
include Aws::Structure
|
|
710
|
+
end
|
|
711
|
+
|
|
616
712
|
# @!attribute [rw] rule_identifier
|
|
617
713
|
# The identifier (name or ARN) of the organization centralization rule
|
|
618
714
|
# to delete.
|
|
@@ -626,6 +722,18 @@ module Aws::ObservabilityAdmin
|
|
|
626
722
|
include Aws::Structure
|
|
627
723
|
end
|
|
628
724
|
|
|
725
|
+
# @!attribute [rw] arn
|
|
726
|
+
# The Amazon Resource Name (ARN) of the dataset integration to delete.
|
|
727
|
+
# @return [String]
|
|
728
|
+
#
|
|
729
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/DeleteDatasetIntegrationInput AWS API Documentation
|
|
730
|
+
#
|
|
731
|
+
class DeleteDatasetIntegrationInput < Struct.new(
|
|
732
|
+
:arn)
|
|
733
|
+
SENSITIVE = []
|
|
734
|
+
include Aws::Structure
|
|
735
|
+
end
|
|
736
|
+
|
|
629
737
|
# @!attribute [rw] arn
|
|
630
738
|
# The Amazon Resource Name (ARN) of the S3 Table integration to
|
|
631
739
|
# delete.
|
|
@@ -897,6 +1005,13 @@ module Aws::ObservabilityAdmin
|
|
|
897
1005
|
# when `TagPropagationStatus` is `Unhealthy`.
|
|
898
1006
|
# @return [String]
|
|
899
1007
|
#
|
|
1008
|
+
# @!attribute [rw] context_graph_status
|
|
1009
|
+
# The status of context graph centralization for this rule. Returns
|
|
1010
|
+
# `Provisioning` while the context graph is being set up, `Healthy`
|
|
1011
|
+
# once it is active, or `Unhealthy` if provisioning failed. This
|
|
1012
|
+
# status is independent of the overall `RuleHealth` for log delivery.
|
|
1013
|
+
# @return [String]
|
|
1014
|
+
#
|
|
900
1015
|
# @!attribute [rw] centralization_rule
|
|
901
1016
|
# The configuration details for the organization centralization rule.
|
|
902
1017
|
# @return [Types::CentralizationRule]
|
|
@@ -914,11 +1029,53 @@ module Aws::ObservabilityAdmin
|
|
|
914
1029
|
:failure_reason,
|
|
915
1030
|
:tag_propagation_status,
|
|
916
1031
|
:tag_propagation_failure_reason,
|
|
1032
|
+
:context_graph_status,
|
|
917
1033
|
:centralization_rule)
|
|
918
1034
|
SENSITIVE = []
|
|
919
1035
|
include Aws::Structure
|
|
920
1036
|
end
|
|
921
1037
|
|
|
1038
|
+
# @!attribute [rw] arn
|
|
1039
|
+
# The Amazon Resource Name (ARN) of the dataset integration to
|
|
1040
|
+
# retrieve.
|
|
1041
|
+
# @return [String]
|
|
1042
|
+
#
|
|
1043
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/GetDatasetIntegrationInput AWS API Documentation
|
|
1044
|
+
#
|
|
1045
|
+
class GetDatasetIntegrationInput < Struct.new(
|
|
1046
|
+
:arn)
|
|
1047
|
+
SENSITIVE = []
|
|
1048
|
+
include Aws::Structure
|
|
1049
|
+
end
|
|
1050
|
+
|
|
1051
|
+
# @!attribute [rw] arn
|
|
1052
|
+
# The Amazon Resource Name (ARN) of the dataset integration.
|
|
1053
|
+
# @return [String]
|
|
1054
|
+
#
|
|
1055
|
+
# @!attribute [rw] role_arn
|
|
1056
|
+
# The Amazon Resource Name (ARN) of the IAM role associated with the
|
|
1057
|
+
# dataset integration.
|
|
1058
|
+
# @return [String]
|
|
1059
|
+
#
|
|
1060
|
+
# @!attribute [rw] created_at
|
|
1061
|
+
# The timestamp when the dataset integration was created.
|
|
1062
|
+
# @return [Time]
|
|
1063
|
+
#
|
|
1064
|
+
# @!attribute [rw] updated_at
|
|
1065
|
+
# The timestamp when the dataset integration was last updated.
|
|
1066
|
+
# @return [Time]
|
|
1067
|
+
#
|
|
1068
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/GetDatasetIntegrationOutput AWS API Documentation
|
|
1069
|
+
#
|
|
1070
|
+
class GetDatasetIntegrationOutput < Struct.new(
|
|
1071
|
+
:arn,
|
|
1072
|
+
:role_arn,
|
|
1073
|
+
:created_at,
|
|
1074
|
+
:updated_at)
|
|
1075
|
+
SENSITIVE = []
|
|
1076
|
+
include Aws::Structure
|
|
1077
|
+
end
|
|
1078
|
+
|
|
922
1079
|
# @!attribute [rw] arn
|
|
923
1080
|
# The Amazon Resource Name (ARN) of the S3 Table integration to
|
|
924
1081
|
# retrieve.
|
|
@@ -1349,6 +1506,41 @@ module Aws::ObservabilityAdmin
|
|
|
1349
1506
|
include Aws::Structure
|
|
1350
1507
|
end
|
|
1351
1508
|
|
|
1509
|
+
# @!attribute [rw] max_results
|
|
1510
|
+
# The maximum number of results to return in a single call.
|
|
1511
|
+
# @return [Integer]
|
|
1512
|
+
#
|
|
1513
|
+
# @!attribute [rw] next_token
|
|
1514
|
+
# The token for the next set of results. A previous call generates
|
|
1515
|
+
# this token.
|
|
1516
|
+
# @return [String]
|
|
1517
|
+
#
|
|
1518
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/ListDatasetIntegrationsInput AWS API Documentation
|
|
1519
|
+
#
|
|
1520
|
+
class ListDatasetIntegrationsInput < Struct.new(
|
|
1521
|
+
:max_results,
|
|
1522
|
+
:next_token)
|
|
1523
|
+
SENSITIVE = []
|
|
1524
|
+
include Aws::Structure
|
|
1525
|
+
end
|
|
1526
|
+
|
|
1527
|
+
# @!attribute [rw] dataset_integration_summaries
|
|
1528
|
+
# The dataset integrations in your account.
|
|
1529
|
+
# @return [Array<Types::DatasetIntegrationSummary>]
|
|
1530
|
+
#
|
|
1531
|
+
# @!attribute [rw] next_token
|
|
1532
|
+
# A token to resume pagination of results.
|
|
1533
|
+
# @return [String]
|
|
1534
|
+
#
|
|
1535
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/ListDatasetIntegrationsOutput AWS API Documentation
|
|
1536
|
+
#
|
|
1537
|
+
class ListDatasetIntegrationsOutput < Struct.new(
|
|
1538
|
+
:dataset_integration_summaries,
|
|
1539
|
+
:next_token)
|
|
1540
|
+
SENSITIVE = []
|
|
1541
|
+
include Aws::Structure
|
|
1542
|
+
end
|
|
1543
|
+
|
|
1352
1544
|
# @!attribute [rw] account_identifiers
|
|
1353
1545
|
# A list of Amazon Web Services accounts used to filter the resources
|
|
1354
1546
|
# to those associated with the specified accounts.
|
|
@@ -1361,8 +1553,22 @@ module Aws::ObservabilityAdmin
|
|
|
1361
1553
|
#
|
|
1362
1554
|
# @!attribute [rw] resource_types
|
|
1363
1555
|
# A list of resource types used to filter resources in the
|
|
1364
|
-
# organization. If this parameter is provided, the
|
|
1365
|
-
#
|
|
1556
|
+
# organization. If this parameter is provided, the service returns the
|
|
1557
|
+
# resources in the same order as specified in the request. Currently
|
|
1558
|
+
# supported resource types for discovery are:
|
|
1559
|
+
#
|
|
1560
|
+
# * `AWS::EC2::Instance`
|
|
1561
|
+
#
|
|
1562
|
+
# * `AWS::EC2::VPC`
|
|
1563
|
+
#
|
|
1564
|
+
# * `AWS::Lambda::Function`
|
|
1565
|
+
#
|
|
1566
|
+
# * `AWS::EKS::Cluster`
|
|
1567
|
+
#
|
|
1568
|
+
# * `AWS::WAFv2::WebACL`
|
|
1569
|
+
#
|
|
1570
|
+
# * `AWS::ElasticLoadBalancingV2::LoadBalancer` (Network Load
|
|
1571
|
+
# Balancers only)
|
|
1366
1572
|
# @return [Array<String>]
|
|
1367
1573
|
#
|
|
1368
1574
|
# @!attribute [rw] telemetry_configuration_state
|
|
@@ -1431,8 +1637,22 @@ module Aws::ObservabilityAdmin
|
|
|
1431
1637
|
#
|
|
1432
1638
|
# @!attribute [rw] resource_types
|
|
1433
1639
|
# A list of resource types used to filter resources supported by
|
|
1434
|
-
# telemetry config. If this parameter is provided, the
|
|
1435
|
-
#
|
|
1640
|
+
# telemetry config. If this parameter is provided, the service returns
|
|
1641
|
+
# the resources in the same order as specified in the request.
|
|
1642
|
+
# Currently supported resource types for discovery are:
|
|
1643
|
+
#
|
|
1644
|
+
# * `AWS::EC2::Instance`
|
|
1645
|
+
#
|
|
1646
|
+
# * `AWS::EC2::VPC`
|
|
1647
|
+
#
|
|
1648
|
+
# * `AWS::Lambda::Function`
|
|
1649
|
+
#
|
|
1650
|
+
# * `AWS::EKS::Cluster`
|
|
1651
|
+
#
|
|
1652
|
+
# * `AWS::WAFv2::WebACL`
|
|
1653
|
+
#
|
|
1654
|
+
# * `AWS::ElasticLoadBalancingV2::LoadBalancer` (Network Load
|
|
1655
|
+
# Balancers only)
|
|
1436
1656
|
# @return [Array<String>]
|
|
1437
1657
|
#
|
|
1438
1658
|
# @!attribute [rw] telemetry_configuration_state
|
|
@@ -2071,6 +2291,17 @@ module Aws::ObservabilityAdmin
|
|
|
2071
2291
|
include Aws::Structure
|
|
2072
2292
|
end
|
|
2073
2293
|
|
|
2294
|
+
# Configuration that enables centralization of the context graph for the
|
|
2295
|
+
# selected sources. Including this configuration in a rule's source
|
|
2296
|
+
# opts the rule into centralizing the context graph for the selected
|
|
2297
|
+
# sources.
|
|
2298
|
+
#
|
|
2299
|
+
# @api private
|
|
2300
|
+
#
|
|
2301
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/SourceContextGraphConfiguration AWS API Documentation
|
|
2302
|
+
#
|
|
2303
|
+
class SourceContextGraphConfiguration < Aws::EmptyStructure; end
|
|
2304
|
+
|
|
2074
2305
|
# Configuration for selecting and handling source log groups for
|
|
2075
2306
|
# centralization.
|
|
2076
2307
|
#
|
|
@@ -2777,6 +3008,52 @@ module Aws::ObservabilityAdmin
|
|
|
2777
3008
|
include Aws::Structure
|
|
2778
3009
|
end
|
|
2779
3010
|
|
|
3011
|
+
# @!attribute [rw] arn
|
|
3012
|
+
# The Amazon Resource Name (ARN) of the dataset integration to update.
|
|
3013
|
+
# @return [String]
|
|
3014
|
+
#
|
|
3015
|
+
# @!attribute [rw] role_arn
|
|
3016
|
+
# The Amazon Resource Name (ARN) of the IAM role to associate with the
|
|
3017
|
+
# dataset integration.
|
|
3018
|
+
# @return [String]
|
|
3019
|
+
#
|
|
3020
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/UpdateDatasetIntegrationInput AWS API Documentation
|
|
3021
|
+
#
|
|
3022
|
+
class UpdateDatasetIntegrationInput < Struct.new(
|
|
3023
|
+
:arn,
|
|
3024
|
+
:role_arn)
|
|
3025
|
+
SENSITIVE = []
|
|
3026
|
+
include Aws::Structure
|
|
3027
|
+
end
|
|
3028
|
+
|
|
3029
|
+
# @!attribute [rw] arn
|
|
3030
|
+
# The Amazon Resource Name (ARN) of the updated dataset integration.
|
|
3031
|
+
# @return [String]
|
|
3032
|
+
#
|
|
3033
|
+
# @!attribute [rw] role_arn
|
|
3034
|
+
# The Amazon Resource Name (ARN) of the IAM role associated with the
|
|
3035
|
+
# updated dataset integration.
|
|
3036
|
+
# @return [String]
|
|
3037
|
+
#
|
|
3038
|
+
# @!attribute [rw] created_at
|
|
3039
|
+
# The timestamp when the dataset integration was created.
|
|
3040
|
+
# @return [Time]
|
|
3041
|
+
#
|
|
3042
|
+
# @!attribute [rw] updated_at
|
|
3043
|
+
# The timestamp when the dataset integration was last updated.
|
|
3044
|
+
# @return [Time]
|
|
3045
|
+
#
|
|
3046
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/UpdateDatasetIntegrationOutput AWS API Documentation
|
|
3047
|
+
#
|
|
3048
|
+
class UpdateDatasetIntegrationOutput < Struct.new(
|
|
3049
|
+
:arn,
|
|
3050
|
+
:role_arn,
|
|
3051
|
+
:created_at,
|
|
3052
|
+
:updated_at)
|
|
3053
|
+
SENSITIVE = []
|
|
3054
|
+
include Aws::Structure
|
|
3055
|
+
end
|
|
3056
|
+
|
|
2780
3057
|
# @!attribute [rw] pipeline_identifier
|
|
2781
3058
|
# The ARN of the telemetry pipeline to update.
|
|
2782
3059
|
# @return [String]
|
data/sig/client.rbs
CHANGED
|
@@ -90,6 +90,20 @@ module Aws
|
|
|
90
90
|
) -> _CreateCentralizationRuleForOrganizationResponseSuccess
|
|
91
91
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCentralizationRuleForOrganizationResponseSuccess
|
|
92
92
|
|
|
93
|
+
interface _CreateDatasetIntegrationResponseSuccess
|
|
94
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateDatasetIntegrationOutput]
|
|
95
|
+
def arn: () -> ::String
|
|
96
|
+
def role_arn: () -> ::String
|
|
97
|
+
def created_at: () -> ::Time
|
|
98
|
+
def updated_at: () -> ::Time
|
|
99
|
+
end
|
|
100
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ObservabilityAdmin/Client.html#create_dataset_integration-instance_method
|
|
101
|
+
def create_dataset_integration: (
|
|
102
|
+
role_arn: ::String,
|
|
103
|
+
?tags: Hash[::String, ::String]
|
|
104
|
+
) -> _CreateDatasetIntegrationResponseSuccess
|
|
105
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDatasetIntegrationResponseSuccess
|
|
106
|
+
|
|
93
107
|
interface _CreateS3TableIntegrationResponseSuccess
|
|
94
108
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateS3TableIntegrationOutput]
|
|
95
109
|
def arn: () -> ::String
|
|
@@ -149,6 +163,12 @@ module Aws
|
|
|
149
163
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
150
164
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
151
165
|
|
|
166
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ObservabilityAdmin/Client.html#delete_dataset_integration-instance_method
|
|
167
|
+
def delete_dataset_integration: (
|
|
168
|
+
arn: ::String
|
|
169
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
170
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
171
|
+
|
|
152
172
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ObservabilityAdmin/Client.html#delete_s3_table_integration-instance_method
|
|
153
173
|
def delete_s3_table_integration: (
|
|
154
174
|
arn: ::String
|
|
@@ -188,6 +208,7 @@ module Aws
|
|
|
188
208
|
def failure_reason: () -> ("TRUSTED_ACCESS_NOT_ENABLED" | "DESTINATION_ACCOUNT_NOT_IN_ORGANIZATION" | "INTERNAL_SERVER_ERROR")
|
|
189
209
|
def tag_propagation_status: () -> ("Healthy" | "Unhealthy")
|
|
190
210
|
def tag_propagation_failure_reason: () -> ("RoleNotAssumable" | "RoleLacksPermissions")
|
|
211
|
+
def context_graph_status: () -> ("Healthy" | "Unhealthy" | "Provisioning")
|
|
191
212
|
def centralization_rule: () -> Types::CentralizationRule
|
|
192
213
|
end
|
|
193
214
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ObservabilityAdmin/Client.html#get_centralization_rule_for_organization-instance_method
|
|
@@ -196,6 +217,19 @@ module Aws
|
|
|
196
217
|
) -> _GetCentralizationRuleForOrganizationResponseSuccess
|
|
197
218
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCentralizationRuleForOrganizationResponseSuccess
|
|
198
219
|
|
|
220
|
+
interface _GetDatasetIntegrationResponseSuccess
|
|
221
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetDatasetIntegrationOutput]
|
|
222
|
+
def arn: () -> ::String
|
|
223
|
+
def role_arn: () -> ::String
|
|
224
|
+
def created_at: () -> ::Time
|
|
225
|
+
def updated_at: () -> ::Time
|
|
226
|
+
end
|
|
227
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ObservabilityAdmin/Client.html#get_dataset_integration-instance_method
|
|
228
|
+
def get_dataset_integration: (
|
|
229
|
+
arn: ::String
|
|
230
|
+
) -> _GetDatasetIntegrationResponseSuccess
|
|
231
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDatasetIntegrationResponseSuccess
|
|
232
|
+
|
|
199
233
|
interface _GetS3TableIntegrationResponseSuccess
|
|
200
234
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetS3TableIntegrationOutput]
|
|
201
235
|
def arn: () -> ::String
|
|
@@ -300,6 +334,18 @@ module Aws
|
|
|
300
334
|
) -> _ListCentralizationRulesForOrganizationResponseSuccess
|
|
301
335
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCentralizationRulesForOrganizationResponseSuccess
|
|
302
336
|
|
|
337
|
+
interface _ListDatasetIntegrationsResponseSuccess
|
|
338
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListDatasetIntegrationsOutput]
|
|
339
|
+
def dataset_integration_summaries: () -> ::Array[Types::DatasetIntegrationSummary]
|
|
340
|
+
def next_token: () -> ::String
|
|
341
|
+
end
|
|
342
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ObservabilityAdmin/Client.html#list_dataset_integrations-instance_method
|
|
343
|
+
def list_dataset_integrations: (
|
|
344
|
+
?max_results: ::Integer,
|
|
345
|
+
?next_token: ::String
|
|
346
|
+
) -> _ListDatasetIntegrationsResponseSuccess
|
|
347
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDatasetIntegrationsResponseSuccess
|
|
348
|
+
|
|
303
349
|
interface _ListResourceTelemetryResponseSuccess
|
|
304
350
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListResourceTelemetryOutput]
|
|
305
351
|
def telemetry_configurations: () -> ::Array[Types::TelemetryConfiguration]
|
|
@@ -478,6 +524,20 @@ module Aws
|
|
|
478
524
|
) -> _UpdateCentralizationRuleForOrganizationResponseSuccess
|
|
479
525
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateCentralizationRuleForOrganizationResponseSuccess
|
|
480
526
|
|
|
527
|
+
interface _UpdateDatasetIntegrationResponseSuccess
|
|
528
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDatasetIntegrationOutput]
|
|
529
|
+
def arn: () -> ::String
|
|
530
|
+
def role_arn: () -> ::String
|
|
531
|
+
def created_at: () -> ::Time
|
|
532
|
+
def updated_at: () -> ::Time
|
|
533
|
+
end
|
|
534
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ObservabilityAdmin/Client.html#update_dataset_integration-instance_method
|
|
535
|
+
def update_dataset_integration: (
|
|
536
|
+
arn: ::String,
|
|
537
|
+
role_arn: ::String
|
|
538
|
+
) -> _UpdateDatasetIntegrationResponseSuccess
|
|
539
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDatasetIntegrationResponseSuccess
|
|
540
|
+
|
|
481
541
|
interface _UpdateTelemetryPipelineResponseSuccess
|
|
482
542
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateTelemetryPipelineOutput]
|
|
483
543
|
end
|
data/sig/params.rbs
CHANGED
data/sig/types.rbs
CHANGED
|
@@ -55,6 +55,7 @@ module Aws::ObservabilityAdmin
|
|
|
55
55
|
attr_accessor scope: ::String
|
|
56
56
|
attr_accessor source_logs_configuration: Types::SourceLogsConfiguration
|
|
57
57
|
attr_accessor source_metrics_configuration: Types::SourceMetricsConfiguration
|
|
58
|
+
attr_accessor source_context_graph_configuration: Types::SourceContextGraphConfiguration
|
|
58
59
|
SENSITIVE: []
|
|
59
60
|
end
|
|
60
61
|
|
|
@@ -69,6 +70,7 @@ module Aws::ObservabilityAdmin
|
|
|
69
70
|
attr_accessor failure_reason: ("TRUSTED_ACCESS_NOT_ENABLED" | "DESTINATION_ACCOUNT_NOT_IN_ORGANIZATION" | "INTERNAL_SERVER_ERROR")
|
|
70
71
|
attr_accessor tag_propagation_status: ("Healthy" | "Unhealthy")
|
|
71
72
|
attr_accessor tag_propagation_failure_reason: ("RoleNotAssumable" | "RoleLacksPermissions")
|
|
73
|
+
attr_accessor context_graph_status: ("Healthy" | "Unhealthy" | "Provisioning")
|
|
72
74
|
attr_accessor destination_account_id: ::String
|
|
73
75
|
attr_accessor destination_region: ::String
|
|
74
76
|
SENSITIVE: []
|
|
@@ -113,6 +115,20 @@ module Aws::ObservabilityAdmin
|
|
|
113
115
|
SENSITIVE: []
|
|
114
116
|
end
|
|
115
117
|
|
|
118
|
+
class CreateDatasetIntegrationInput
|
|
119
|
+
attr_accessor role_arn: ::String
|
|
120
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
121
|
+
SENSITIVE: []
|
|
122
|
+
end
|
|
123
|
+
|
|
124
|
+
class CreateDatasetIntegrationOutput
|
|
125
|
+
attr_accessor arn: ::String
|
|
126
|
+
attr_accessor role_arn: ::String
|
|
127
|
+
attr_accessor created_at: ::Time
|
|
128
|
+
attr_accessor updated_at: ::Time
|
|
129
|
+
SENSITIVE: []
|
|
130
|
+
end
|
|
131
|
+
|
|
116
132
|
class CreateS3TableIntegrationInput
|
|
117
133
|
attr_accessor encryption: Types::Encryption
|
|
118
134
|
attr_accessor role_arn: ::String
|
|
@@ -167,11 +183,24 @@ module Aws::ObservabilityAdmin
|
|
|
167
183
|
SENSITIVE: []
|
|
168
184
|
end
|
|
169
185
|
|
|
186
|
+
class DatasetIntegrationSummary
|
|
187
|
+
attr_accessor arn: ::String
|
|
188
|
+
attr_accessor role_arn: ::String
|
|
189
|
+
attr_accessor created_at: ::Time
|
|
190
|
+
attr_accessor updated_at: ::Time
|
|
191
|
+
SENSITIVE: []
|
|
192
|
+
end
|
|
193
|
+
|
|
170
194
|
class DeleteCentralizationRuleForOrganizationInput
|
|
171
195
|
attr_accessor rule_identifier: ::String
|
|
172
196
|
SENSITIVE: []
|
|
173
197
|
end
|
|
174
198
|
|
|
199
|
+
class DeleteDatasetIntegrationInput
|
|
200
|
+
attr_accessor arn: ::String
|
|
201
|
+
SENSITIVE: []
|
|
202
|
+
end
|
|
203
|
+
|
|
175
204
|
class DeleteS3TableIntegrationInput
|
|
176
205
|
attr_accessor arn: ::String
|
|
177
206
|
SENSITIVE: []
|
|
@@ -251,10 +280,24 @@ module Aws::ObservabilityAdmin
|
|
|
251
280
|
attr_accessor failure_reason: ("TRUSTED_ACCESS_NOT_ENABLED" | "DESTINATION_ACCOUNT_NOT_IN_ORGANIZATION" | "INTERNAL_SERVER_ERROR")
|
|
252
281
|
attr_accessor tag_propagation_status: ("Healthy" | "Unhealthy")
|
|
253
282
|
attr_accessor tag_propagation_failure_reason: ("RoleNotAssumable" | "RoleLacksPermissions")
|
|
283
|
+
attr_accessor context_graph_status: ("Healthy" | "Unhealthy" | "Provisioning")
|
|
254
284
|
attr_accessor centralization_rule: Types::CentralizationRule
|
|
255
285
|
SENSITIVE: []
|
|
256
286
|
end
|
|
257
287
|
|
|
288
|
+
class GetDatasetIntegrationInput
|
|
289
|
+
attr_accessor arn: ::String
|
|
290
|
+
SENSITIVE: []
|
|
291
|
+
end
|
|
292
|
+
|
|
293
|
+
class GetDatasetIntegrationOutput
|
|
294
|
+
attr_accessor arn: ::String
|
|
295
|
+
attr_accessor role_arn: ::String
|
|
296
|
+
attr_accessor created_at: ::Time
|
|
297
|
+
attr_accessor updated_at: ::Time
|
|
298
|
+
SENSITIVE: []
|
|
299
|
+
end
|
|
300
|
+
|
|
258
301
|
class GetS3TableIntegrationInput
|
|
259
302
|
attr_accessor arn: ::String
|
|
260
303
|
SENSITIVE: []
|
|
@@ -373,6 +416,18 @@ module Aws::ObservabilityAdmin
|
|
|
373
416
|
SENSITIVE: []
|
|
374
417
|
end
|
|
375
418
|
|
|
419
|
+
class ListDatasetIntegrationsInput
|
|
420
|
+
attr_accessor max_results: ::Integer
|
|
421
|
+
attr_accessor next_token: ::String
|
|
422
|
+
SENSITIVE: []
|
|
423
|
+
end
|
|
424
|
+
|
|
425
|
+
class ListDatasetIntegrationsOutput
|
|
426
|
+
attr_accessor dataset_integration_summaries: ::Array[Types::DatasetIntegrationSummary]
|
|
427
|
+
attr_accessor next_token: ::String
|
|
428
|
+
SENSITIVE: []
|
|
429
|
+
end
|
|
430
|
+
|
|
376
431
|
class ListResourceTelemetryForOrganizationInput
|
|
377
432
|
attr_accessor account_identifiers: ::Array[::String]
|
|
378
433
|
attr_accessor resource_identifier_prefix: ::String
|
|
@@ -560,6 +615,9 @@ module Aws::ObservabilityAdmin
|
|
|
560
615
|
SENSITIVE: []
|
|
561
616
|
end
|
|
562
617
|
|
|
618
|
+
class SourceContextGraphConfiguration < Aws::EmptyStructure
|
|
619
|
+
end
|
|
620
|
+
|
|
563
621
|
class SourceLogsConfiguration
|
|
564
622
|
attr_accessor log_group_selection_criteria: ::String
|
|
565
623
|
attr_accessor data_source_selection_criteria: ::String
|
|
@@ -723,6 +781,20 @@ module Aws::ObservabilityAdmin
|
|
|
723
781
|
SENSITIVE: []
|
|
724
782
|
end
|
|
725
783
|
|
|
784
|
+
class UpdateDatasetIntegrationInput
|
|
785
|
+
attr_accessor arn: ::String
|
|
786
|
+
attr_accessor role_arn: ::String
|
|
787
|
+
SENSITIVE: []
|
|
788
|
+
end
|
|
789
|
+
|
|
790
|
+
class UpdateDatasetIntegrationOutput
|
|
791
|
+
attr_accessor arn: ::String
|
|
792
|
+
attr_accessor role_arn: ::String
|
|
793
|
+
attr_accessor created_at: ::Time
|
|
794
|
+
attr_accessor updated_at: ::Time
|
|
795
|
+
SENSITIVE: []
|
|
796
|
+
end
|
|
797
|
+
|
|
726
798
|
class UpdateTelemetryPipelineInput
|
|
727
799
|
attr_accessor pipeline_identifier: ::String
|
|
728
800
|
attr_accessor configuration: Types::TelemetryPipelineConfiguration
|