aws-sdk-cloudtrail 1.95.0 → 1.96.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-cloudtrail/client.rb +535 -47
- data/lib/aws-sdk-cloudtrail/client_api.rb +232 -0
- data/lib/aws-sdk-cloudtrail/errors.rb +11 -0
- data/lib/aws-sdk-cloudtrail/types.rb +699 -62
- data/lib/aws-sdk-cloudtrail.rb +1 -1
- data/sig/client.rbs +139 -4
- data/sig/errors.rbs +2 -0
- data/sig/types.rbs +140 -0
- metadata +2 -2
    
        data/lib/aws-sdk-cloudtrail.rb
    CHANGED
    
    
    
        data/sig/client.rbs
    CHANGED
    
    | @@ -95,11 +95,13 @@ module Aws | |
| 95 95 | 
             
                    include ::Seahorse::Client::_ResponseSuccess[Types::CancelQueryResponse]
         | 
| 96 96 | 
             
                    def query_id: () -> ::String
         | 
| 97 97 | 
             
                    def query_status: () -> ("QUEUED" | "RUNNING" | "FINISHED" | "FAILED" | "CANCELLED" | "TIMED_OUT")
         | 
| 98 | 
            +
                    def event_data_store_owner_account_id: () -> ::String
         | 
| 98 99 | 
             
                  end
         | 
| 99 100 | 
             
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudTrail/Client.html#cancel_query-instance_method
         | 
| 100 101 | 
             
                  def cancel_query: (
         | 
| 101 102 | 
             
                                      ?event_data_store: ::String,
         | 
| 102 | 
            -
                                      query_id: ::String
         | 
| 103 | 
            +
                                      query_id: ::String,
         | 
| 104 | 
            +
                                      ?event_data_store_owner_account_id: ::String
         | 
| 103 105 | 
             
                                    ) -> _CancelQueryResponseSuccess
         | 
| 104 106 | 
             
                                  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CancelQueryResponseSuccess
         | 
| 105 107 |  | 
| @@ -130,6 +132,44 @@ module Aws | |
| 130 132 | 
             
                                      ) -> _CreateChannelResponseSuccess
         | 
| 131 133 | 
             
                                    | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateChannelResponseSuccess
         | 
| 132 134 |  | 
| 135 | 
            +
                  interface _CreateDashboardResponseSuccess
         | 
| 136 | 
            +
                    include ::Seahorse::Client::_ResponseSuccess[Types::CreateDashboardResponse]
         | 
| 137 | 
            +
                    def dashboard_arn: () -> ::String
         | 
| 138 | 
            +
                    def name: () -> ::String
         | 
| 139 | 
            +
                    def type: () -> ("MANAGED" | "CUSTOM")
         | 
| 140 | 
            +
                    def widgets: () -> ::Array[Types::Widget]
         | 
| 141 | 
            +
                    def tags_list: () -> ::Array[Types::Tag]
         | 
| 142 | 
            +
                    def refresh_schedule: () -> Types::RefreshSchedule
         | 
| 143 | 
            +
                    def termination_protection_enabled: () -> bool
         | 
| 144 | 
            +
                  end
         | 
| 145 | 
            +
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudTrail/Client.html#create_dashboard-instance_method
         | 
| 146 | 
            +
                  def create_dashboard: (
         | 
| 147 | 
            +
                                          name: ::String,
         | 
| 148 | 
            +
                                          ?refresh_schedule: {
         | 
| 149 | 
            +
                                            frequency: {
         | 
| 150 | 
            +
                                              unit: ("HOURS" | "DAYS")?,
         | 
| 151 | 
            +
                                              value: ::Integer?
         | 
| 152 | 
            +
                                            }?,
         | 
| 153 | 
            +
                                            status: ("ENABLED" | "DISABLED")?,
         | 
| 154 | 
            +
                                            time_of_day: ::String?
         | 
| 155 | 
            +
                                          },
         | 
| 156 | 
            +
                                          ?tags_list: Array[
         | 
| 157 | 
            +
                                            {
         | 
| 158 | 
            +
                                              key: ::String,
         | 
| 159 | 
            +
                                              value: ::String?
         | 
| 160 | 
            +
                                            },
         | 
| 161 | 
            +
                                          ],
         | 
| 162 | 
            +
                                          ?termination_protection_enabled: bool,
         | 
| 163 | 
            +
                                          ?widgets: Array[
         | 
| 164 | 
            +
                                            {
         | 
| 165 | 
            +
                                              query_statement: ::String,
         | 
| 166 | 
            +
                                              query_parameters: Array[::String]?,
         | 
| 167 | 
            +
                                              view_properties: Hash[::String, ::String]
         | 
| 168 | 
            +
                                            },
         | 
| 169 | 
            +
                                          ]
         | 
| 170 | 
            +
                                        ) -> _CreateDashboardResponseSuccess
         | 
| 171 | 
            +
                                      | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDashboardResponseSuccess
         | 
| 172 | 
            +
             | 
| 133 173 | 
             
                  interface _CreateEventDataStoreResponseSuccess
         | 
| 134 174 | 
             
                    include ::Seahorse::Client::_ResponseSuccess[Types::CreateEventDataStoreResponse]
         | 
| 135 175 | 
             
                    def event_data_store_arn: () -> ::String
         | 
| @@ -228,6 +268,15 @@ module Aws | |
| 228 268 | 
             
                                      ) -> _DeleteChannelResponseSuccess
         | 
| 229 269 | 
             
                                    | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteChannelResponseSuccess
         | 
| 230 270 |  | 
| 271 | 
            +
                  interface _DeleteDashboardResponseSuccess
         | 
| 272 | 
            +
                    include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDashboardResponse]
         | 
| 273 | 
            +
                  end
         | 
| 274 | 
            +
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudTrail/Client.html#delete_dashboard-instance_method
         | 
| 275 | 
            +
                  def delete_dashboard: (
         | 
| 276 | 
            +
                                          dashboard_id: ::String
         | 
| 277 | 
            +
                                        ) -> _DeleteDashboardResponseSuccess
         | 
| 278 | 
            +
                                      | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDashboardResponseSuccess
         | 
| 279 | 
            +
             | 
| 231 280 | 
             
                  interface _DeleteEventDataStoreResponseSuccess
         | 
| 232 281 | 
             
                    include ::Seahorse::Client::_ResponseSuccess[Types::DeleteEventDataStoreResponse]
         | 
| 233 282 | 
             
                  end
         | 
| @@ -274,12 +323,15 @@ module Aws | |
| 274 323 | 
             
                    def delivery_s3_uri: () -> ::String
         | 
| 275 324 | 
             
                    def delivery_status: () -> ("SUCCESS" | "FAILED" | "FAILED_SIGNING_FILE" | "PENDING" | "RESOURCE_NOT_FOUND" | "ACCESS_DENIED" | "ACCESS_DENIED_SIGNING_FILE" | "CANCELLED" | "UNKNOWN")
         | 
| 276 325 | 
             
                    def prompt: () -> ::String
         | 
| 326 | 
            +
                    def event_data_store_owner_account_id: () -> ::String
         | 
| 277 327 | 
             
                  end
         | 
| 278 328 | 
             
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudTrail/Client.html#describe_query-instance_method
         | 
| 279 329 | 
             
                  def describe_query: (
         | 
| 280 330 | 
             
                                        ?event_data_store: ::String,
         | 
| 281 331 | 
             
                                        ?query_id: ::String,
         | 
| 282 | 
            -
                                        ?query_alias: ::String
         | 
| 332 | 
            +
                                        ?query_alias: ::String,
         | 
| 333 | 
            +
                                        ?refresh_id: ::String,
         | 
| 334 | 
            +
                                        ?event_data_store_owner_account_id: ::String
         | 
| 283 335 | 
             
                                      ) -> _DescribeQueryResponseSuccess
         | 
| 284 336 | 
             
                                    | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeQueryResponseSuccess
         | 
| 285 337 |  | 
| @@ -322,6 +374,7 @@ module Aws | |
| 322 374 | 
             
                    include ::Seahorse::Client::_ResponseSuccess[Types::GenerateQueryResponse]
         | 
| 323 375 | 
             
                    def query_statement: () -> ::String
         | 
| 324 376 | 
             
                    def query_alias: () -> ::String
         | 
| 377 | 
            +
                    def event_data_store_owner_account_id: () -> ::String
         | 
| 325 378 | 
             
                  end
         | 
| 326 379 | 
             
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudTrail/Client.html#generate_query-instance_method
         | 
| 327 380 | 
             
                  def generate_query: (
         | 
| @@ -345,6 +398,25 @@ module Aws | |
| 345 398 | 
             
                                   ) -> _GetChannelResponseSuccess
         | 
| 346 399 | 
             
                                 | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetChannelResponseSuccess
         | 
| 347 400 |  | 
| 401 | 
            +
                  interface _GetDashboardResponseSuccess
         | 
| 402 | 
            +
                    include ::Seahorse::Client::_ResponseSuccess[Types::GetDashboardResponse]
         | 
| 403 | 
            +
                    def dashboard_arn: () -> ::String
         | 
| 404 | 
            +
                    def type: () -> ("MANAGED" | "CUSTOM")
         | 
| 405 | 
            +
                    def status: () -> ("CREATING" | "CREATED" | "UPDATING" | "UPDATED" | "DELETING")
         | 
| 406 | 
            +
                    def widgets: () -> ::Array[Types::Widget]
         | 
| 407 | 
            +
                    def refresh_schedule: () -> Types::RefreshSchedule
         | 
| 408 | 
            +
                    def created_timestamp: () -> ::Time
         | 
| 409 | 
            +
                    def updated_timestamp: () -> ::Time
         | 
| 410 | 
            +
                    def last_refresh_id: () -> ::String
         | 
| 411 | 
            +
                    def last_refresh_failure_reason: () -> ::String
         | 
| 412 | 
            +
                    def termination_protection_enabled: () -> bool
         | 
| 413 | 
            +
                  end
         | 
| 414 | 
            +
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudTrail/Client.html#get_dashboard-instance_method
         | 
| 415 | 
            +
                  def get_dashboard: (
         | 
| 416 | 
            +
                                       dashboard_id: ::String
         | 
| 417 | 
            +
                                     ) -> _GetDashboardResponseSuccess
         | 
| 418 | 
            +
                                   | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDashboardResponseSuccess
         | 
| 419 | 
            +
             | 
| 348 420 | 
             
                  interface _GetEventDataStoreResponseSuccess
         | 
| 349 421 | 
             
                    include ::Seahorse::Client::_ResponseSuccess[Types::GetEventDataStoreResponse]
         | 
| 350 422 | 
             
                    def event_data_store_arn: () -> ::String
         | 
| @@ -426,7 +498,8 @@ module Aws | |
| 426 498 | 
             
                                           ?event_data_store: ::String,
         | 
| 427 499 | 
             
                                           query_id: ::String,
         | 
| 428 500 | 
             
                                           ?next_token: ::String,
         | 
| 429 | 
            -
                                           ?max_query_results: ::Integer
         | 
| 501 | 
            +
                                           ?max_query_results: ::Integer,
         | 
| 502 | 
            +
                                           ?event_data_store_owner_account_id: ::String
         | 
| 430 503 | 
             
                                         ) -> _GetQueryResultsResponseSuccess
         | 
| 431 504 | 
             
                                       | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetQueryResultsResponseSuccess
         | 
| 432 505 |  | 
| @@ -434,6 +507,7 @@ module Aws | |
| 434 507 | 
             
                    include ::Seahorse::Client::_ResponseSuccess[Types::GetResourcePolicyResponse]
         | 
| 435 508 | 
             
                    def resource_arn: () -> ::String
         | 
| 436 509 | 
             
                    def resource_policy: () -> ::String
         | 
| 510 | 
            +
                    def delegated_admin_resource_policy: () -> ::String
         | 
| 437 511 | 
             
                  end
         | 
| 438 512 | 
             
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudTrail/Client.html#get_resource_policy-instance_method
         | 
| 439 513 | 
             
                  def get_resource_policy: (
         | 
| @@ -489,6 +563,20 @@ module Aws | |
| 489 563 | 
             
                                     ) -> _ListChannelsResponseSuccess
         | 
| 490 564 | 
             
                                   | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListChannelsResponseSuccess
         | 
| 491 565 |  | 
| 566 | 
            +
                  interface _ListDashboardsResponseSuccess
         | 
| 567 | 
            +
                    include ::Seahorse::Client::_ResponseSuccess[Types::ListDashboardsResponse]
         | 
| 568 | 
            +
                    def dashboards: () -> ::Array[Types::DashboardDetail]
         | 
| 569 | 
            +
                    def next_token: () -> ::String
         | 
| 570 | 
            +
                  end
         | 
| 571 | 
            +
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudTrail/Client.html#list_dashboards-instance_method
         | 
| 572 | 
            +
                  def list_dashboards: (
         | 
| 573 | 
            +
                                         ?name_prefix: ::String,
         | 
| 574 | 
            +
                                         ?type: ("MANAGED" | "CUSTOM"),
         | 
| 575 | 
            +
                                         ?next_token: ::String,
         | 
| 576 | 
            +
                                         ?max_results: ::Integer
         | 
| 577 | 
            +
                                       ) -> _ListDashboardsResponseSuccess
         | 
| 578 | 
            +
                                     | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDashboardsResponseSuccess
         | 
| 579 | 
            +
             | 
| 492 580 | 
             
                  interface _ListEventDataStoresResponseSuccess
         | 
| 493 581 | 
             
                    include ::Seahorse::Client::_ResponseSuccess[Types::ListEventDataStoresResponse]
         | 
| 494 582 | 
             
                    def event_data_stores: () -> ::Array[Types::EventDataStore]
         | 
| @@ -691,6 +779,7 @@ module Aws | |
| 691 779 | 
             
                    include ::Seahorse::Client::_ResponseSuccess[Types::PutResourcePolicyResponse]
         | 
| 692 780 | 
             
                    def resource_arn: () -> ::String
         | 
| 693 781 | 
             
                    def resource_policy: () -> ::String
         | 
| 782 | 
            +
                    def delegated_admin_resource_policy: () -> ::String
         | 
| 694 783 | 
             
                  end
         | 
| 695 784 | 
             
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudTrail/Client.html#put_resource_policy-instance_method
         | 
| 696 785 | 
             
                  def put_resource_policy: (
         | 
| @@ -744,6 +833,17 @@ module Aws | |
| 744 833 | 
             
                                                ) -> _RestoreEventDataStoreResponseSuccess
         | 
| 745 834 | 
             
                                              | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreEventDataStoreResponseSuccess
         | 
| 746 835 |  | 
| 836 | 
            +
                  interface _StartDashboardRefreshResponseSuccess
         | 
| 837 | 
            +
                    include ::Seahorse::Client::_ResponseSuccess[Types::StartDashboardRefreshResponse]
         | 
| 838 | 
            +
                    def refresh_id: () -> ::String
         | 
| 839 | 
            +
                  end
         | 
| 840 | 
            +
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudTrail/Client.html#start_dashboard_refresh-instance_method
         | 
| 841 | 
            +
                  def start_dashboard_refresh: (
         | 
| 842 | 
            +
                                                 dashboard_id: ::String,
         | 
| 843 | 
            +
                                                 ?query_parameter_values: Hash[::String, ::String]
         | 
| 844 | 
            +
                                               ) -> _StartDashboardRefreshResponseSuccess
         | 
| 845 | 
            +
                                             | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartDashboardRefreshResponseSuccess
         | 
| 846 | 
            +
             | 
| 747 847 | 
             
                  interface _StartEventDataStoreIngestionResponseSuccess
         | 
| 748 848 | 
             
                    include ::Seahorse::Client::_ResponseSuccess[Types::StartEventDataStoreIngestionResponse]
         | 
| 749 849 | 
             
                  end
         | 
| @@ -792,13 +892,15 @@ module Aws | |
| 792 892 | 
             
                  interface _StartQueryResponseSuccess
         | 
| 793 893 | 
             
                    include ::Seahorse::Client::_ResponseSuccess[Types::StartQueryResponse]
         | 
| 794 894 | 
             
                    def query_id: () -> ::String
         | 
| 895 | 
            +
                    def event_data_store_owner_account_id: () -> ::String
         | 
| 795 896 | 
             
                  end
         | 
| 796 897 | 
             
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudTrail/Client.html#start_query-instance_method
         | 
| 797 898 | 
             
                  def start_query: (
         | 
| 798 899 | 
             
                                     ?query_statement: ::String,
         | 
| 799 900 | 
             
                                     ?delivery_s3_uri: ::String,
         | 
| 800 901 | 
             
                                     ?query_alias: ::String,
         | 
| 801 | 
            -
                                     ?query_parameters: Array[::String]
         | 
| 902 | 
            +
                                     ?query_parameters: Array[::String],
         | 
| 903 | 
            +
                                     ?event_data_store_owner_account_id: ::String
         | 
| 802 904 | 
             
                                   ) -> _StartQueryResponseSuccess
         | 
| 803 905 | 
             
                                 | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartQueryResponseSuccess
         | 
| 804 906 |  | 
| @@ -858,6 +960,39 @@ module Aws | |
| 858 960 | 
             
                                      ) -> _UpdateChannelResponseSuccess
         | 
| 859 961 | 
             
                                    | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateChannelResponseSuccess
         | 
| 860 962 |  | 
| 963 | 
            +
                  interface _UpdateDashboardResponseSuccess
         | 
| 964 | 
            +
                    include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDashboardResponse]
         | 
| 965 | 
            +
                    def dashboard_arn: () -> ::String
         | 
| 966 | 
            +
                    def name: () -> ::String
         | 
| 967 | 
            +
                    def type: () -> ("MANAGED" | "CUSTOM")
         | 
| 968 | 
            +
                    def widgets: () -> ::Array[Types::Widget]
         | 
| 969 | 
            +
                    def refresh_schedule: () -> Types::RefreshSchedule
         | 
| 970 | 
            +
                    def termination_protection_enabled: () -> bool
         | 
| 971 | 
            +
                    def created_timestamp: () -> ::Time
         | 
| 972 | 
            +
                    def updated_timestamp: () -> ::Time
         | 
| 973 | 
            +
                  end
         | 
| 974 | 
            +
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudTrail/Client.html#update_dashboard-instance_method
         | 
| 975 | 
            +
                  def update_dashboard: (
         | 
| 976 | 
            +
                                          dashboard_id: ::String,
         | 
| 977 | 
            +
                                          ?widgets: Array[
         | 
| 978 | 
            +
                                            {
         | 
| 979 | 
            +
                                              query_statement: ::String,
         | 
| 980 | 
            +
                                              query_parameters: Array[::String]?,
         | 
| 981 | 
            +
                                              view_properties: Hash[::String, ::String]
         | 
| 982 | 
            +
                                            },
         | 
| 983 | 
            +
                                          ],
         | 
| 984 | 
            +
                                          ?refresh_schedule: {
         | 
| 985 | 
            +
                                            frequency: {
         | 
| 986 | 
            +
                                              unit: ("HOURS" | "DAYS")?,
         | 
| 987 | 
            +
                                              value: ::Integer?
         | 
| 988 | 
            +
                                            }?,
         | 
| 989 | 
            +
                                            status: ("ENABLED" | "DISABLED")?,
         | 
| 990 | 
            +
                                            time_of_day: ::String?
         | 
| 991 | 
            +
                                          },
         | 
| 992 | 
            +
                                          ?termination_protection_enabled: bool
         | 
| 993 | 
            +
                                        ) -> _UpdateDashboardResponseSuccess
         | 
| 994 | 
            +
                                      | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDashboardResponseSuccess
         | 
| 995 | 
            +
             | 
| 861 996 | 
             
                  interface _UpdateEventDataStoreResponseSuccess
         | 
| 862 997 | 
             
                    include ::Seahorse::Client::_ResponseSuccess[Types::UpdateEventDataStoreResponse]
         | 
| 863 998 | 
             
                    def event_data_store_arn: () -> ::String
         | 
    
        data/sig/errors.rbs
    CHANGED
    
    | @@ -167,6 +167,8 @@ module Aws | |
| 167 167 | 
             
                  end
         | 
| 168 168 | 
             
                  class S3BucketDoesNotExistException < ::Aws::Errors::ServiceError
         | 
| 169 169 | 
             
                  end
         | 
| 170 | 
            +
                  class ServiceQuotaExceededException < ::Aws::Errors::ServiceError
         | 
| 171 | 
            +
                  end
         | 
| 170 172 | 
             
                  class TagsLimitExceededException < ::Aws::Errors::ServiceError
         | 
| 171 173 | 
             
                  end
         | 
| 172 174 | 
             
                  class ThrottlingException < ::Aws::Errors::ServiceError
         | 
    
        data/sig/types.rbs
    CHANGED
    
    | @@ -52,12 +52,14 @@ module Aws::CloudTrail | |
| 52 52 | 
             
                class CancelQueryRequest
         | 
| 53 53 | 
             
                  attr_accessor event_data_store: ::String
         | 
| 54 54 | 
             
                  attr_accessor query_id: ::String
         | 
| 55 | 
            +
                  attr_accessor event_data_store_owner_account_id: ::String
         | 
| 55 56 | 
             
                  SENSITIVE: []
         | 
| 56 57 | 
             
                end
         | 
| 57 58 |  | 
| 58 59 | 
             
                class CancelQueryResponse
         | 
| 59 60 | 
             
                  attr_accessor query_id: ::String
         | 
| 60 61 | 
             
                  attr_accessor query_status: ("QUEUED" | "RUNNING" | "FINISHED" | "FAILED" | "CANCELLED" | "TIMED_OUT")
         | 
| 62 | 
            +
                  attr_accessor event_data_store_owner_account_id: ::String
         | 
| 61 63 | 
             
                  SENSITIVE: []
         | 
| 62 64 | 
             
                end
         | 
| 63 65 |  | 
| @@ -120,6 +122,26 @@ module Aws::CloudTrail | |
| 120 122 | 
             
                  SENSITIVE: []
         | 
| 121 123 | 
             
                end
         | 
| 122 124 |  | 
| 125 | 
            +
                class CreateDashboardRequest
         | 
| 126 | 
            +
                  attr_accessor name: ::String
         | 
| 127 | 
            +
                  attr_accessor refresh_schedule: Types::RefreshSchedule
         | 
| 128 | 
            +
                  attr_accessor tags_list: ::Array[Types::Tag]
         | 
| 129 | 
            +
                  attr_accessor termination_protection_enabled: bool
         | 
| 130 | 
            +
                  attr_accessor widgets: ::Array[Types::RequestWidget]
         | 
| 131 | 
            +
                  SENSITIVE: []
         | 
| 132 | 
            +
                end
         | 
| 133 | 
            +
             | 
| 134 | 
            +
                class CreateDashboardResponse
         | 
| 135 | 
            +
                  attr_accessor dashboard_arn: ::String
         | 
| 136 | 
            +
                  attr_accessor name: ::String
         | 
| 137 | 
            +
                  attr_accessor type: ("MANAGED" | "CUSTOM")
         | 
| 138 | 
            +
                  attr_accessor widgets: ::Array[Types::Widget]
         | 
| 139 | 
            +
                  attr_accessor tags_list: ::Array[Types::Tag]
         | 
| 140 | 
            +
                  attr_accessor refresh_schedule: Types::RefreshSchedule
         | 
| 141 | 
            +
                  attr_accessor termination_protection_enabled: bool
         | 
| 142 | 
            +
                  SENSITIVE: []
         | 
| 143 | 
            +
                end
         | 
| 144 | 
            +
             | 
| 123 145 | 
             
                class CreateEventDataStoreRequest
         | 
| 124 146 | 
             
                  attr_accessor name: ::String
         | 
| 125 147 | 
             
                  attr_accessor advanced_event_selectors: ::Array[Types::AdvancedEventSelector]
         | 
| @@ -184,6 +206,12 @@ module Aws::CloudTrail | |
| 184 206 | 
             
                  SENSITIVE: []
         | 
| 185 207 | 
             
                end
         | 
| 186 208 |  | 
| 209 | 
            +
                class DashboardDetail
         | 
| 210 | 
            +
                  attr_accessor dashboard_arn: ::String
         | 
| 211 | 
            +
                  attr_accessor type: ("MANAGED" | "CUSTOM")
         | 
| 212 | 
            +
                  SENSITIVE: []
         | 
| 213 | 
            +
                end
         | 
| 214 | 
            +
             | 
| 187 215 | 
             
                class DataResource
         | 
| 188 216 | 
             
                  attr_accessor type: ::String
         | 
| 189 217 | 
             
                  attr_accessor values: ::Array[::String]
         | 
| @@ -201,6 +229,14 @@ module Aws::CloudTrail | |
| 201 229 | 
             
                class DeleteChannelResponse < Aws::EmptyStructure
         | 
| 202 230 | 
             
                end
         | 
| 203 231 |  | 
| 232 | 
            +
                class DeleteDashboardRequest
         | 
| 233 | 
            +
                  attr_accessor dashboard_id: ::String
         | 
| 234 | 
            +
                  SENSITIVE: []
         | 
| 235 | 
            +
                end
         | 
| 236 | 
            +
             | 
| 237 | 
            +
                class DeleteDashboardResponse < Aws::EmptyStructure
         | 
| 238 | 
            +
                end
         | 
| 239 | 
            +
             | 
| 204 240 | 
             
                class DeleteEventDataStoreRequest
         | 
| 205 241 | 
             
                  attr_accessor event_data_store: ::String
         | 
| 206 242 | 
             
                  SENSITIVE: []
         | 
| @@ -237,6 +273,8 @@ module Aws::CloudTrail | |
| 237 273 | 
             
                  attr_accessor event_data_store: ::String
         | 
| 238 274 | 
             
                  attr_accessor query_id: ::String
         | 
| 239 275 | 
             
                  attr_accessor query_alias: ::String
         | 
| 276 | 
            +
                  attr_accessor refresh_id: ::String
         | 
| 277 | 
            +
                  attr_accessor event_data_store_owner_account_id: ::String
         | 
| 240 278 | 
             
                  SENSITIVE: []
         | 
| 241 279 | 
             
                end
         | 
| 242 280 |  | 
| @@ -249,6 +287,7 @@ module Aws::CloudTrail | |
| 249 287 | 
             
                  attr_accessor delivery_s3_uri: ::String
         | 
| 250 288 | 
             
                  attr_accessor delivery_status: ("SUCCESS" | "FAILED" | "FAILED_SIGNING_FILE" | "PENDING" | "RESOURCE_NOT_FOUND" | "ACCESS_DENIED" | "ACCESS_DENIED_SIGNING_FILE" | "CANCELLED" | "UNKNOWN")
         | 
| 251 289 | 
             
                  attr_accessor prompt: ::String
         | 
| 290 | 
            +
                  attr_accessor event_data_store_owner_account_id: ::String
         | 
| 252 291 | 
             
                  SENSITIVE: []
         | 
| 253 292 | 
             
                end
         | 
| 254 293 |  | 
| @@ -358,6 +397,7 @@ module Aws::CloudTrail | |
| 358 397 | 
             
                class GenerateQueryResponse
         | 
| 359 398 | 
             
                  attr_accessor query_statement: ::String
         | 
| 360 399 | 
             
                  attr_accessor query_alias: ::String
         | 
| 400 | 
            +
                  attr_accessor event_data_store_owner_account_id: ::String
         | 
| 361 401 | 
             
                  SENSITIVE: []
         | 
| 362 402 | 
             
                end
         | 
| 363 403 |  | 
| @@ -379,6 +419,25 @@ module Aws::CloudTrail | |
| 379 419 | 
             
                  SENSITIVE: []
         | 
| 380 420 | 
             
                end
         | 
| 381 421 |  | 
| 422 | 
            +
                class GetDashboardRequest
         | 
| 423 | 
            +
                  attr_accessor dashboard_id: ::String
         | 
| 424 | 
            +
                  SENSITIVE: []
         | 
| 425 | 
            +
                end
         | 
| 426 | 
            +
             | 
| 427 | 
            +
                class GetDashboardResponse
         | 
| 428 | 
            +
                  attr_accessor dashboard_arn: ::String
         | 
| 429 | 
            +
                  attr_accessor type: ("MANAGED" | "CUSTOM")
         | 
| 430 | 
            +
                  attr_accessor status: ("CREATING" | "CREATED" | "UPDATING" | "UPDATED" | "DELETING")
         | 
| 431 | 
            +
                  attr_accessor widgets: ::Array[Types::Widget]
         | 
| 432 | 
            +
                  attr_accessor refresh_schedule: Types::RefreshSchedule
         | 
| 433 | 
            +
                  attr_accessor created_timestamp: ::Time
         | 
| 434 | 
            +
                  attr_accessor updated_timestamp: ::Time
         | 
| 435 | 
            +
                  attr_accessor last_refresh_id: ::String
         | 
| 436 | 
            +
                  attr_accessor last_refresh_failure_reason: ::String
         | 
| 437 | 
            +
                  attr_accessor termination_protection_enabled: bool
         | 
| 438 | 
            +
                  SENSITIVE: []
         | 
| 439 | 
            +
                end
         | 
| 440 | 
            +
             | 
| 382 441 | 
             
                class GetEventDataStoreRequest
         | 
| 383 442 | 
             
                  attr_accessor event_data_store: ::String
         | 
| 384 443 | 
             
                  SENSITIVE: []
         | 
| @@ -452,6 +511,7 @@ module Aws::CloudTrail | |
| 452 511 | 
             
                  attr_accessor query_id: ::String
         | 
| 453 512 | 
             
                  attr_accessor next_token: ::String
         | 
| 454 513 | 
             
                  attr_accessor max_query_results: ::Integer
         | 
| 514 | 
            +
                  attr_accessor event_data_store_owner_account_id: ::String
         | 
| 455 515 | 
             
                  SENSITIVE: []
         | 
| 456 516 | 
             
                end
         | 
| 457 517 |  | 
| @@ -472,6 +532,7 @@ module Aws::CloudTrail | |
| 472 532 | 
             
                class GetResourcePolicyResponse
         | 
| 473 533 | 
             
                  attr_accessor resource_arn: ::String
         | 
| 474 534 | 
             
                  attr_accessor resource_policy: ::String
         | 
| 535 | 
            +
                  attr_accessor delegated_admin_resource_policy: ::String
         | 
| 475 536 | 
             
                  SENSITIVE: []
         | 
| 476 537 | 
             
                end
         | 
| 477 538 |  | 
| @@ -680,6 +741,20 @@ module Aws::CloudTrail | |
| 680 741 | 
             
                  SENSITIVE: []
         | 
| 681 742 | 
             
                end
         | 
| 682 743 |  | 
| 744 | 
            +
                class ListDashboardsRequest
         | 
| 745 | 
            +
                  attr_accessor name_prefix: ::String
         | 
| 746 | 
            +
                  attr_accessor type: ("MANAGED" | "CUSTOM")
         | 
| 747 | 
            +
                  attr_accessor next_token: ::String
         | 
| 748 | 
            +
                  attr_accessor max_results: ::Integer
         | 
| 749 | 
            +
                  SENSITIVE: []
         | 
| 750 | 
            +
                end
         | 
| 751 | 
            +
             | 
| 752 | 
            +
                class ListDashboardsResponse
         | 
| 753 | 
            +
                  attr_accessor dashboards: ::Array[Types::DashboardDetail]
         | 
| 754 | 
            +
                  attr_accessor next_token: ::String
         | 
| 755 | 
            +
                  SENSITIVE: []
         | 
| 756 | 
            +
                end
         | 
| 757 | 
            +
             | 
| 683 758 | 
             
                class ListEventDataStoresRequest
         | 
| 684 759 | 
             
                  attr_accessor next_token: ::String
         | 
| 685 760 | 
             
                  attr_accessor max_results: ::Integer
         | 
| @@ -895,6 +970,7 @@ module Aws::CloudTrail | |
| 895 970 | 
             
                class PutResourcePolicyResponse
         | 
| 896 971 | 
             
                  attr_accessor resource_arn: ::String
         | 
| 897 972 | 
             
                  attr_accessor resource_policy: ::String
         | 
| 973 | 
            +
                  attr_accessor delegated_admin_resource_policy: ::String
         | 
| 898 974 | 
             
                  SENSITIVE: []
         | 
| 899 975 | 
             
                end
         | 
| 900 976 |  | 
| @@ -924,6 +1000,19 @@ module Aws::CloudTrail | |
| 924 1000 | 
             
                  SENSITIVE: []
         | 
| 925 1001 | 
             
                end
         | 
| 926 1002 |  | 
| 1003 | 
            +
                class RefreshSchedule
         | 
| 1004 | 
            +
                  attr_accessor frequency: Types::RefreshScheduleFrequency
         | 
| 1005 | 
            +
                  attr_accessor status: ("ENABLED" | "DISABLED")
         | 
| 1006 | 
            +
                  attr_accessor time_of_day: ::String
         | 
| 1007 | 
            +
                  SENSITIVE: []
         | 
| 1008 | 
            +
                end
         | 
| 1009 | 
            +
             | 
| 1010 | 
            +
                class RefreshScheduleFrequency
         | 
| 1011 | 
            +
                  attr_accessor unit: ("HOURS" | "DAYS")
         | 
| 1012 | 
            +
                  attr_accessor value: ::Integer
         | 
| 1013 | 
            +
                  SENSITIVE: []
         | 
| 1014 | 
            +
                end
         | 
| 1015 | 
            +
             | 
| 927 1016 | 
             
                class RegisterOrganizationDelegatedAdminRequest
         | 
| 928 1017 | 
             
                  attr_accessor member_account_id: ::String
         | 
| 929 1018 | 
             
                  SENSITIVE: []
         | 
| @@ -941,6 +1030,13 @@ module Aws::CloudTrail | |
| 941 1030 | 
             
                class RemoveTagsResponse < Aws::EmptyStructure
         | 
| 942 1031 | 
             
                end
         | 
| 943 1032 |  | 
| 1033 | 
            +
                class RequestWidget
         | 
| 1034 | 
            +
                  attr_accessor query_statement: ::String
         | 
| 1035 | 
            +
                  attr_accessor query_parameters: ::Array[::String]
         | 
| 1036 | 
            +
                  attr_accessor view_properties: ::Hash[::String, ::String]
         | 
| 1037 | 
            +
                  SENSITIVE: []
         | 
| 1038 | 
            +
                end
         | 
| 1039 | 
            +
             | 
| 944 1040 | 
             
                class Resource
         | 
| 945 1041 | 
             
                  attr_accessor resource_type: ::String
         | 
| 946 1042 | 
             
                  attr_accessor resource_name: ::String
         | 
| @@ -999,12 +1095,26 @@ module Aws::CloudTrail | |
| 999 1095 | 
             
                  SENSITIVE: []
         | 
| 1000 1096 | 
             
                end
         | 
| 1001 1097 |  | 
| 1098 | 
            +
                class ServiceQuotaExceededException < Aws::EmptyStructure
         | 
| 1099 | 
            +
                end
         | 
| 1100 | 
            +
             | 
| 1002 1101 | 
             
                class SourceConfig
         | 
| 1003 1102 | 
             
                  attr_accessor apply_to_all_regions: bool
         | 
| 1004 1103 | 
             
                  attr_accessor advanced_event_selectors: ::Array[Types::AdvancedEventSelector]
         | 
| 1005 1104 | 
             
                  SENSITIVE: []
         | 
| 1006 1105 | 
             
                end
         | 
| 1007 1106 |  | 
| 1107 | 
            +
                class StartDashboardRefreshRequest
         | 
| 1108 | 
            +
                  attr_accessor dashboard_id: ::String
         | 
| 1109 | 
            +
                  attr_accessor query_parameter_values: ::Hash[::String, ::String]
         | 
| 1110 | 
            +
                  SENSITIVE: []
         | 
| 1111 | 
            +
                end
         | 
| 1112 | 
            +
             | 
| 1113 | 
            +
                class StartDashboardRefreshResponse
         | 
| 1114 | 
            +
                  attr_accessor refresh_id: ::String
         | 
| 1115 | 
            +
                  SENSITIVE: []
         | 
| 1116 | 
            +
                end
         | 
| 1117 | 
            +
             | 
| 1008 1118 | 
             
                class StartEventDataStoreIngestionRequest
         | 
| 1009 1119 | 
             
                  attr_accessor event_data_store: ::String
         | 
| 1010 1120 | 
             
                  SENSITIVE: []
         | 
| @@ -1047,11 +1157,13 @@ module Aws::CloudTrail | |
| 1047 1157 | 
             
                  attr_accessor delivery_s3_uri: ::String
         | 
| 1048 1158 | 
             
                  attr_accessor query_alias: ::String
         | 
| 1049 1159 | 
             
                  attr_accessor query_parameters: ::Array[::String]
         | 
| 1160 | 
            +
                  attr_accessor event_data_store_owner_account_id: ::String
         | 
| 1050 1161 | 
             
                  SENSITIVE: []
         | 
| 1051 1162 | 
             
                end
         | 
| 1052 1163 |  | 
| 1053 1164 | 
             
                class StartQueryResponse
         | 
| 1054 1165 | 
             
                  attr_accessor query_id: ::String
         | 
| 1166 | 
            +
                  attr_accessor event_data_store_owner_account_id: ::String
         | 
| 1055 1167 | 
             
                  SENSITIVE: []
         | 
| 1056 1168 | 
             
                end
         | 
| 1057 1169 |  | 
| @@ -1155,6 +1267,26 @@ module Aws::CloudTrail | |
| 1155 1267 | 
             
                  SENSITIVE: []
         | 
| 1156 1268 | 
             
                end
         | 
| 1157 1269 |  | 
| 1270 | 
            +
                class UpdateDashboardRequest
         | 
| 1271 | 
            +
                  attr_accessor dashboard_id: ::String
         | 
| 1272 | 
            +
                  attr_accessor widgets: ::Array[Types::RequestWidget]
         | 
| 1273 | 
            +
                  attr_accessor refresh_schedule: Types::RefreshSchedule
         | 
| 1274 | 
            +
                  attr_accessor termination_protection_enabled: bool
         | 
| 1275 | 
            +
                  SENSITIVE: []
         | 
| 1276 | 
            +
                end
         | 
| 1277 | 
            +
             | 
| 1278 | 
            +
                class UpdateDashboardResponse
         | 
| 1279 | 
            +
                  attr_accessor dashboard_arn: ::String
         | 
| 1280 | 
            +
                  attr_accessor name: ::String
         | 
| 1281 | 
            +
                  attr_accessor type: ("MANAGED" | "CUSTOM")
         | 
| 1282 | 
            +
                  attr_accessor widgets: ::Array[Types::Widget]
         | 
| 1283 | 
            +
                  attr_accessor refresh_schedule: Types::RefreshSchedule
         | 
| 1284 | 
            +
                  attr_accessor termination_protection_enabled: bool
         | 
| 1285 | 
            +
                  attr_accessor created_timestamp: ::Time
         | 
| 1286 | 
            +
                  attr_accessor updated_timestamp: ::Time
         | 
| 1287 | 
            +
                  SENSITIVE: []
         | 
| 1288 | 
            +
                end
         | 
| 1289 | 
            +
             | 
| 1158 1290 | 
             
                class UpdateEventDataStoreRequest
         | 
| 1159 1291 | 
             
                  attr_accessor event_data_store: ::String
         | 
| 1160 1292 | 
             
                  attr_accessor name: ::String
         | 
| @@ -1217,5 +1349,13 @@ module Aws::CloudTrail | |
| 1217 1349 | 
             
                  attr_accessor is_organization_trail: bool
         | 
| 1218 1350 | 
             
                  SENSITIVE: []
         | 
| 1219 1351 | 
             
                end
         | 
| 1352 | 
            +
             | 
| 1353 | 
            +
                class Widget
         | 
| 1354 | 
            +
                  attr_accessor query_alias: ::String
         | 
| 1355 | 
            +
                  attr_accessor query_statement: ::String
         | 
| 1356 | 
            +
                  attr_accessor query_parameters: ::Array[::String]
         | 
| 1357 | 
            +
                  attr_accessor view_properties: ::Hash[::String, ::String]
         | 
| 1358 | 
            +
                  SENSITIVE: []
         | 
| 1359 | 
            +
                end
         | 
| 1220 1360 | 
             
              end
         | 
| 1221 1361 | 
             
            end
         | 
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: aws-sdk-cloudtrail
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 1. | 
| 4 | 
            +
              version: 1.96.0
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Amazon Web Services
         | 
| 8 8 | 
             
            autorequire:
         | 
| 9 9 | 
             
            bindir: bin
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date: 2024-11- | 
| 11 | 
            +
            date: 2024-11-21 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: aws-sdk-core
         |