aws-sdk-quicksight 1.139.0 → 1.140.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-quicksight/client.rb +26 -1
- data/lib/aws-sdk-quicksight/client_api.rb +17 -0
- data/lib/aws-sdk-quicksight/types.rb +50 -3
- data/lib/aws-sdk-quicksight.rb +1 -1
- data/sig/client.rbs +16 -2
- data/sig/types.rbs +13 -0
- metadata +2 -2
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 11bd5d831970d208f08b35b735c83efba22dac8306612c5d8e179fab0be76d19
         | 
| 4 | 
            +
              data.tar.gz: b8254405a2b758048372269445e3b45029165c1894590bca9475f6de047341cd
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 6f7067d5d5d3c8d9a15e32642aa3fd6d1efd3f756ef98aec8682910cee24434f3cafc7040931016eb599d0a53a9ec7aa9eb3c6ff50ed802ef281a1aa43950974
         | 
| 7 | 
            +
              data.tar.gz: c4b16fbfbcca5e01a17cb3dae2c722ab7c58dc38415cf4f112a24affe059eea012de95a5b0df14668a2a9bd8ae08f83ef9a6590a8fcab3b16f79f6be446cf9b1
         | 
    
        data/CHANGELOG.md
    CHANGED
    
    | @@ -1,6 +1,11 @@ | |
| 1 1 | 
             
            Unreleased Changes
         | 
| 2 2 | 
             
            ------------------
         | 
| 3 3 |  | 
| 4 | 
            +
            1.140.0 (2024-12-18)
         | 
| 5 | 
            +
            ------------------
         | 
| 6 | 
            +
             | 
| 7 | 
            +
            * Feature - Add support for PerformanceConfiguration attribute to Dataset entity. Allow PerformanceConfiguration specification in CreateDataset and UpdateDataset APIs.
         | 
| 8 | 
            +
             | 
| 4 9 | 
             
            1.139.0 (2024-12-03)
         | 
| 5 10 | 
             
            ------------------
         | 
| 6 11 |  | 
    
        data/VERSION
    CHANGED
    
    | @@ -1 +1 @@ | |
| 1 | 
            -
            1. | 
| 1 | 
            +
            1.140.0
         | 
| @@ -2252,6 +2252,10 @@ module Aws::QuickSight | |
| 2252 2252 | 
             
                #   When you create the dataset, Amazon QuickSight adds the dataset to
         | 
| 2253 2253 | 
             
                #   these folders.
         | 
| 2254 2254 | 
             
                #
         | 
| 2255 | 
            +
                # @option params [Types::PerformanceConfiguration] :performance_configuration
         | 
| 2256 | 
            +
                #   The configuration for the performance optimization of the dataset that
         | 
| 2257 | 
            +
                #   contains a `UniqueKey` configuration.
         | 
| 2258 | 
            +
                #
         | 
| 2255 2259 | 
             
                # @return [Types::CreateDataSetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
         | 
| 2256 2260 | 
             
                #
         | 
| 2257 2261 | 
             
                #   * {Types::CreateDataSetResponse#arn #arn} => String
         | 
| @@ -2485,6 +2489,13 @@ module Aws::QuickSight | |
| 2485 2489 | 
             
                #       },
         | 
| 2486 2490 | 
             
                #     ],
         | 
| 2487 2491 | 
             
                #     folder_arns: ["Arn"],
         | 
| 2492 | 
            +
                #     performance_configuration: {
         | 
| 2493 | 
            +
                #       unique_keys: [
         | 
| 2494 | 
            +
                #         {
         | 
| 2495 | 
            +
                #           column_names: ["ColumnName"], # required
         | 
| 2496 | 
            +
                #         },
         | 
| 2497 | 
            +
                #       ],
         | 
| 2498 | 
            +
                #     },
         | 
| 2488 2499 | 
             
                #   })
         | 
| 2489 2500 | 
             
                #
         | 
| 2490 2501 | 
             
                # @example Response structure
         | 
| @@ -7124,6 +7135,9 @@ module Aws::QuickSight | |
| 7124 7135 | 
             
                #   resp.data_set.dataset_parameters[0].date_time_dataset_parameter.time_granularity #=> String, one of "YEAR", "QUARTER", "MONTH", "WEEK", "DAY", "HOUR", "MINUTE", "SECOND", "MILLISECOND"
         | 
| 7125 7136 | 
             
                #   resp.data_set.dataset_parameters[0].date_time_dataset_parameter.default_values.static_values #=> Array
         | 
| 7126 7137 | 
             
                #   resp.data_set.dataset_parameters[0].date_time_dataset_parameter.default_values.static_values[0] #=> Time
         | 
| 7138 | 
            +
                #   resp.data_set.performance_configuration.unique_keys #=> Array
         | 
| 7139 | 
            +
                #   resp.data_set.performance_configuration.unique_keys[0].column_names #=> Array
         | 
| 7140 | 
            +
                #   resp.data_set.performance_configuration.unique_keys[0].column_names[0] #=> String
         | 
| 7127 7141 | 
             
                #   resp.request_id #=> String
         | 
| 7128 7142 | 
             
                #   resp.status #=> Integer
         | 
| 7129 7143 | 
             
                #
         | 
| @@ -14935,6 +14949,10 @@ module Aws::QuickSight | |
| 14935 14949 | 
             
                # @option params [Array<Types::DatasetParameter>] :dataset_parameters
         | 
| 14936 14950 | 
             
                #   The parameter declarations of the dataset.
         | 
| 14937 14951 | 
             
                #
         | 
| 14952 | 
            +
                # @option params [Types::PerformanceConfiguration] :performance_configuration
         | 
| 14953 | 
            +
                #   The configuration for the performance optimization of the dataset that
         | 
| 14954 | 
            +
                #   contains a `UniqueKey` configuration.
         | 
| 14955 | 
            +
                #
         | 
| 14938 14956 | 
             
                # @return [Types::UpdateDataSetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
         | 
| 14939 14957 | 
             
                #
         | 
| 14940 14958 | 
             
                #   * {Types::UpdateDataSetResponse#arn #arn} => String
         | 
| @@ -15155,6 +15173,13 @@ module Aws::QuickSight | |
| 15155 15173 | 
             
                #         },
         | 
| 15156 15174 | 
             
                #       },
         | 
| 15157 15175 | 
             
                #     ],
         | 
| 15176 | 
            +
                #     performance_configuration: {
         | 
| 15177 | 
            +
                #       unique_keys: [
         | 
| 15178 | 
            +
                #         {
         | 
| 15179 | 
            +
                #           column_names: ["ColumnName"], # required
         | 
| 15180 | 
            +
                #         },
         | 
| 15181 | 
            +
                #       ],
         | 
| 15182 | 
            +
                #     },
         | 
| 15158 15183 | 
             
                #   })
         | 
| 15159 15184 | 
             
                #
         | 
| 15160 15185 | 
             
                # @example Response structure
         | 
| @@ -17490,7 +17515,7 @@ module Aws::QuickSight | |
| 17490 17515 | 
             
                    tracer: tracer
         | 
| 17491 17516 | 
             
                  )
         | 
| 17492 17517 | 
             
                  context[:gem_name] = 'aws-sdk-quicksight'
         | 
| 17493 | 
            -
                  context[:gem_version] = '1. | 
| 17518 | 
            +
                  context[:gem_version] = '1.140.0'
         | 
| 17494 17519 | 
             
                  Seahorse::Client::Request.new(handlers, context)
         | 
| 17495 17520 | 
             
                end
         | 
| 17496 17521 |  | 
| @@ -1356,6 +1356,7 @@ module Aws::QuickSight | |
| 1356 1356 | 
             
                PercentageDisplayFormatConfiguration = Shapes::StructureShape.new(name: 'PercentageDisplayFormatConfiguration')
         | 
| 1357 1357 | 
             
                PercentileAggregation = Shapes::StructureShape.new(name: 'PercentileAggregation')
         | 
| 1358 1358 | 
             
                PercentileValue = Shapes::FloatShape.new(name: 'PercentileValue')
         | 
| 1359 | 
            +
                PerformanceConfiguration = Shapes::StructureShape.new(name: 'PerformanceConfiguration')
         | 
| 1359 1360 | 
             
                PeriodOverPeriodComputation = Shapes::StructureShape.new(name: 'PeriodOverPeriodComputation')
         | 
| 1360 1361 | 
             
                PeriodToDateComputation = Shapes::StructureShape.new(name: 'PeriodToDateComputation')
         | 
| 1361 1362 | 
             
                PeriodsBackward = Shapes::IntegerShape.new(name: 'PeriodsBackward')
         | 
| @@ -1955,6 +1956,9 @@ module Aws::QuickSight | |
| 1955 1956 | 
             
                UnaggregatedFieldList = Shapes::ListShape.new(name: 'UnaggregatedFieldList')
         | 
| 1956 1957 | 
             
                UndefinedSpecifiedValueType = Shapes::StringShape.new(name: 'UndefinedSpecifiedValueType')
         | 
| 1957 1958 | 
             
                UnicodeIcon = Shapes::StringShape.new(name: 'UnicodeIcon')
         | 
| 1959 | 
            +
                UniqueKey = Shapes::StructureShape.new(name: 'UniqueKey')
         | 
| 1960 | 
            +
                UniqueKeyColumnNameList = Shapes::ListShape.new(name: 'UniqueKeyColumnNameList')
         | 
| 1961 | 
            +
                UniqueKeyList = Shapes::ListShape.new(name: 'UniqueKeyList')
         | 
| 1958 1962 | 
             
                UniqueValuesComputation = Shapes::StructureShape.new(name: 'UniqueValuesComputation')
         | 
| 1959 1963 | 
             
                UnlimitedPixelLength = Shapes::StringShape.new(name: 'UnlimitedPixelLength')
         | 
| 1960 1964 | 
             
                UnsupportedPricingPlanException = Shapes::StructureShape.new(name: 'UnsupportedPricingPlanException')
         | 
| @@ -3423,6 +3427,7 @@ module Aws::QuickSight | |
| 3423 3427 | 
             
                CreateDataSetRequest.add_member(:data_set_usage_configuration, Shapes::ShapeRef.new(shape: DataSetUsageConfiguration, location_name: "DataSetUsageConfiguration"))
         | 
| 3424 3428 | 
             
                CreateDataSetRequest.add_member(:dataset_parameters, Shapes::ShapeRef.new(shape: DatasetParameterList, location_name: "DatasetParameters"))
         | 
| 3425 3429 | 
             
                CreateDataSetRequest.add_member(:folder_arns, Shapes::ShapeRef.new(shape: FolderArnList, location_name: "FolderArns"))
         | 
| 3430 | 
            +
                CreateDataSetRequest.add_member(:performance_configuration, Shapes::ShapeRef.new(shape: PerformanceConfiguration, location_name: "PerformanceConfiguration"))
         | 
| 3426 3431 | 
             
                CreateDataSetRequest.struct_class = Types::CreateDataSetRequest
         | 
| 3427 3432 |  | 
| 3428 3433 | 
             
                CreateDataSetResponse.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
         | 
| @@ -3982,6 +3987,7 @@ module Aws::QuickSight | |
| 3982 3987 | 
             
                DataSet.add_member(:column_level_permission_rules, Shapes::ShapeRef.new(shape: ColumnLevelPermissionRuleList, location_name: "ColumnLevelPermissionRules"))
         | 
| 3983 3988 | 
             
                DataSet.add_member(:data_set_usage_configuration, Shapes::ShapeRef.new(shape: DataSetUsageConfiguration, location_name: "DataSetUsageConfiguration"))
         | 
| 3984 3989 | 
             
                DataSet.add_member(:dataset_parameters, Shapes::ShapeRef.new(shape: DatasetParameterList, location_name: "DatasetParameters"))
         | 
| 3990 | 
            +
                DataSet.add_member(:performance_configuration, Shapes::ShapeRef.new(shape: PerformanceConfiguration, location_name: "PerformanceConfiguration"))
         | 
| 3985 3991 | 
             
                DataSet.struct_class = Types::DataSet
         | 
| 3986 3992 |  | 
| 3987 3993 | 
             
                DataSetArnsList.member = Shapes::ShapeRef.new(shape: Arn)
         | 
| @@ -7334,6 +7340,9 @@ module Aws::QuickSight | |
| 7334 7340 | 
             
                PercentileAggregation.add_member(:percentile_value, Shapes::ShapeRef.new(shape: PercentileValue, location_name: "PercentileValue"))
         | 
| 7335 7341 | 
             
                PercentileAggregation.struct_class = Types::PercentileAggregation
         | 
| 7336 7342 |  | 
| 7343 | 
            +
                PerformanceConfiguration.add_member(:unique_keys, Shapes::ShapeRef.new(shape: UniqueKeyList, location_name: "UniqueKeys"))
         | 
| 7344 | 
            +
                PerformanceConfiguration.struct_class = Types::PerformanceConfiguration
         | 
| 7345 | 
            +
             | 
| 7337 7346 | 
             
                PeriodOverPeriodComputation.add_member(:computation_id, Shapes::ShapeRef.new(shape: ShortRestrictiveResourceId, required: true, location_name: "ComputationId"))
         | 
| 7338 7347 | 
             
                PeriodOverPeriodComputation.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "Name"))
         | 
| 7339 7348 | 
             
                PeriodOverPeriodComputation.add_member(:time, Shapes::ShapeRef.new(shape: DimensionField, location_name: "Time"))
         | 
| @@ -9371,6 +9380,13 @@ module Aws::QuickSight | |
| 9371 9380 |  | 
| 9372 9381 | 
             
                UnaggregatedFieldList.member = Shapes::ShapeRef.new(shape: UnaggregatedField)
         | 
| 9373 9382 |  | 
| 9383 | 
            +
                UniqueKey.add_member(:column_names, Shapes::ShapeRef.new(shape: UniqueKeyColumnNameList, required: true, location_name: "ColumnNames"))
         | 
| 9384 | 
            +
                UniqueKey.struct_class = Types::UniqueKey
         | 
| 9385 | 
            +
             | 
| 9386 | 
            +
                UniqueKeyColumnNameList.member = Shapes::ShapeRef.new(shape: ColumnName)
         | 
| 9387 | 
            +
             | 
| 9388 | 
            +
                UniqueKeyList.member = Shapes::ShapeRef.new(shape: UniqueKey)
         | 
| 9389 | 
            +
             | 
| 9374 9390 | 
             
                UniqueValuesComputation.add_member(:computation_id, Shapes::ShapeRef.new(shape: ShortRestrictiveResourceId, required: true, location_name: "ComputationId"))
         | 
| 9375 9391 | 
             
                UniqueValuesComputation.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "Name"))
         | 
| 9376 9392 | 
             
                UniqueValuesComputation.add_member(:category, Shapes::ShapeRef.new(shape: DimensionField, location_name: "Category"))
         | 
| @@ -9586,6 +9602,7 @@ module Aws::QuickSight | |
| 9586 9602 | 
             
                UpdateDataSetRequest.add_member(:column_level_permission_rules, Shapes::ShapeRef.new(shape: ColumnLevelPermissionRuleList, location_name: "ColumnLevelPermissionRules"))
         | 
| 9587 9603 | 
             
                UpdateDataSetRequest.add_member(:data_set_usage_configuration, Shapes::ShapeRef.new(shape: DataSetUsageConfiguration, location_name: "DataSetUsageConfiguration"))
         | 
| 9588 9604 | 
             
                UpdateDataSetRequest.add_member(:dataset_parameters, Shapes::ShapeRef.new(shape: DatasetParameterList, location_name: "DatasetParameters"))
         | 
| 9605 | 
            +
                UpdateDataSetRequest.add_member(:performance_configuration, Shapes::ShapeRef.new(shape: PerformanceConfiguration, location_name: "PerformanceConfiguration"))
         | 
| 9589 9606 | 
             
                UpdateDataSetRequest.struct_class = Types::UpdateDataSetRequest
         | 
| 9590 9607 |  | 
| 9591 9608 | 
             
                UpdateDataSetResponse.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
         | 
| @@ -6079,6 +6079,11 @@ module Aws::QuickSight | |
| 6079 6079 | 
             
                #   these folders.
         | 
| 6080 6080 | 
             
                #   @return [Array<String>]
         | 
| 6081 6081 | 
             
                #
         | 
| 6082 | 
            +
                # @!attribute [rw] performance_configuration
         | 
| 6083 | 
            +
                #   The configuration for the performance optimization of the dataset
         | 
| 6084 | 
            +
                #   that contains a `UniqueKey` configuration.
         | 
| 6085 | 
            +
                #   @return [Types::PerformanceConfiguration]
         | 
| 6086 | 
            +
                #
         | 
| 6082 6087 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateDataSetRequest AWS API Documentation
         | 
| 6083 6088 | 
             
                #
         | 
| 6084 6089 | 
             
                class CreateDataSetRequest < Struct.new(
         | 
| @@ -6097,7 +6102,8 @@ module Aws::QuickSight | |
| 6097 6102 | 
             
                  :tags,
         | 
| 6098 6103 | 
             
                  :data_set_usage_configuration,
         | 
| 6099 6104 | 
             
                  :dataset_parameters,
         | 
| 6100 | 
            -
                  :folder_arns | 
| 6105 | 
            +
                  :folder_arns,
         | 
| 6106 | 
            +
                  :performance_configuration)
         | 
| 6101 6107 | 
             
                  SENSITIVE = []
         | 
| 6102 6108 | 
             
                  include Aws::Structure
         | 
| 6103 6109 | 
             
                end
         | 
| @@ -8953,6 +8959,10 @@ module Aws::QuickSight | |
| 8953 8959 | 
             
                #   The parameters that are declared in a dataset.
         | 
| 8954 8960 | 
             
                #   @return [Array<Types::DatasetParameter>]
         | 
| 8955 8961 | 
             
                #
         | 
| 8962 | 
            +
                # @!attribute [rw] performance_configuration
         | 
| 8963 | 
            +
                #   The performance optimization configuration of a dataset.
         | 
| 8964 | 
            +
                #   @return [Types::PerformanceConfiguration]
         | 
| 8965 | 
            +
                #
         | 
| 8956 8966 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DataSet AWS API Documentation
         | 
| 8957 8967 | 
             
                #
         | 
| 8958 8968 | 
             
                class DataSet < Struct.new(
         | 
| @@ -8972,7 +8982,8 @@ module Aws::QuickSight | |
| 8972 8982 | 
             
                  :row_level_permission_tag_configuration,
         | 
| 8973 8983 | 
             
                  :column_level_permission_rules,
         | 
| 8974 8984 | 
             
                  :data_set_usage_configuration,
         | 
| 8975 | 
            -
                  :dataset_parameters | 
| 8985 | 
            +
                  :dataset_parameters,
         | 
| 8986 | 
            +
                  :performance_configuration)
         | 
| 8976 8987 | 
             
                  SENSITIVE = []
         | 
| 8977 8988 | 
             
                  include Aws::Structure
         | 
| 8978 8989 | 
             
                end
         | 
| @@ -25202,6 +25213,21 @@ module Aws::QuickSight | |
| 25202 25213 | 
             
                  include Aws::Structure
         | 
| 25203 25214 | 
             
                end
         | 
| 25204 25215 |  | 
| 25216 | 
            +
                # The configuration for the performance optimization of the dataset that
         | 
| 25217 | 
            +
                # contains a `UniqueKey` configuration.
         | 
| 25218 | 
            +
                #
         | 
| 25219 | 
            +
                # @!attribute [rw] unique_keys
         | 
| 25220 | 
            +
                #   A `UniqueKey` configuration.
         | 
| 25221 | 
            +
                #   @return [Array<Types::UniqueKey>]
         | 
| 25222 | 
            +
                #
         | 
| 25223 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/PerformanceConfiguration AWS API Documentation
         | 
| 25224 | 
            +
                #
         | 
| 25225 | 
            +
                class PerformanceConfiguration < Struct.new(
         | 
| 25226 | 
            +
                  :unique_keys)
         | 
| 25227 | 
            +
                  SENSITIVE = []
         | 
| 25228 | 
            +
                  include Aws::Structure
         | 
| 25229 | 
            +
                end
         | 
| 25230 | 
            +
             | 
| 25205 25231 | 
             
                # The period over period computation configuration.
         | 
| 25206 25232 | 
             
                #
         | 
| 25207 25233 | 
             
                # @!attribute [rw] computation_id
         | 
| @@ -35117,6 +35143,21 @@ module Aws::QuickSight | |
| 35117 35143 | 
             
                  include Aws::Structure
         | 
| 35118 35144 | 
             
                end
         | 
| 35119 35145 |  | 
| 35146 | 
            +
                # A `UniqueKey` configuration that references a dataset column.
         | 
| 35147 | 
            +
                #
         | 
| 35148 | 
            +
                # @!attribute [rw] column_names
         | 
| 35149 | 
            +
                #   The name of the column that is referenced in the `UniqueKey`
         | 
| 35150 | 
            +
                #   configuration.
         | 
| 35151 | 
            +
                #   @return [Array<String>]
         | 
| 35152 | 
            +
                #
         | 
| 35153 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UniqueKey AWS API Documentation
         | 
| 35154 | 
            +
                #
         | 
| 35155 | 
            +
                class UniqueKey < Struct.new(
         | 
| 35156 | 
            +
                  :column_names)
         | 
| 35157 | 
            +
                  SENSITIVE = []
         | 
| 35158 | 
            +
                  include Aws::Structure
         | 
| 35159 | 
            +
                end
         | 
| 35160 | 
            +
             | 
| 35120 35161 | 
             
                # The unique values computation configuration.
         | 
| 35121 35162 | 
             
                #
         | 
| 35122 35163 | 
             
                # @!attribute [rw] computation_id
         | 
| @@ -36191,6 +36232,11 @@ module Aws::QuickSight | |
| 36191 36232 | 
             
                #   The parameter declarations of the dataset.
         | 
| 36192 36233 | 
             
                #   @return [Array<Types::DatasetParameter>]
         | 
| 36193 36234 | 
             
                #
         | 
| 36235 | 
            +
                # @!attribute [rw] performance_configuration
         | 
| 36236 | 
            +
                #   The configuration for the performance optimization of the dataset
         | 
| 36237 | 
            +
                #   that contains a `UniqueKey` configuration.
         | 
| 36238 | 
            +
                #   @return [Types::PerformanceConfiguration]
         | 
| 36239 | 
            +
                #
         | 
| 36194 36240 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateDataSetRequest AWS API Documentation
         | 
| 36195 36241 | 
             
                #
         | 
| 36196 36242 | 
             
                class UpdateDataSetRequest < Struct.new(
         | 
| @@ -36206,7 +36252,8 @@ module Aws::QuickSight | |
| 36206 36252 | 
             
                  :row_level_permission_tag_configuration,
         | 
| 36207 36253 | 
             
                  :column_level_permission_rules,
         | 
| 36208 36254 | 
             
                  :data_set_usage_configuration,
         | 
| 36209 | 
            -
                  :dataset_parameters | 
| 36255 | 
            +
                  :dataset_parameters,
         | 
| 36256 | 
            +
                  :performance_configuration)
         | 
| 36210 36257 | 
             
                  SENSITIVE = []
         | 
| 36211 36258 | 
             
                  include Aws::Structure
         | 
| 36212 36259 | 
             
                end
         | 
    
        data/lib/aws-sdk-quicksight.rb
    CHANGED
    
    
    
        data/sig/client.rbs
    CHANGED
    
    | @@ -73938,7 +73938,14 @@ module Aws | |
| 73938 73938 | 
             
                                             }?
         | 
| 73939 73939 | 
             
                                           },
         | 
| 73940 73940 | 
             
                                         ],
         | 
| 73941 | 
            -
                                         ?folder_arns: Array[::String]
         | 
| 73941 | 
            +
                                         ?folder_arns: Array[::String],
         | 
| 73942 | 
            +
                                         ?performance_configuration: {
         | 
| 73943 | 
            +
                                           unique_keys: Array[
         | 
| 73944 | 
            +
                                             {
         | 
| 73945 | 
            +
                                               column_names: Array[::String]
         | 
| 73946 | 
            +
                                             },
         | 
| 73947 | 
            +
                                           ]?
         | 
| 73948 | 
            +
                                         }
         | 
| 73942 73949 | 
             
                                       ) -> _CreateDataSetResponseSuccess
         | 
| 73943 73950 | 
             
                                     | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDataSetResponseSuccess
         | 
| 73944 73951 |  | 
| @@ -187047,7 +187054,14 @@ module Aws | |
| 187047 187054 | 
             
                                               }?
         | 
| 187048 187055 | 
             
                                             }?
         | 
| 187049 187056 | 
             
                                           },
         | 
| 187050 | 
            -
                                         ]
         | 
| 187057 | 
            +
                                         ],
         | 
| 187058 | 
            +
                                         ?performance_configuration: {
         | 
| 187059 | 
            +
                                           unique_keys: Array[
         | 
| 187060 | 
            +
                                             {
         | 
| 187061 | 
            +
                                               column_names: Array[::String]
         | 
| 187062 | 
            +
                                             },
         | 
| 187063 | 
            +
                                           ]?
         | 
| 187064 | 
            +
                                         }
         | 
| 187051 187065 | 
             
                                       ) -> _UpdateDataSetResponseSuccess
         | 
| 187052 187066 | 
             
                                     | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDataSetResponseSuccess
         | 
| 187053 187067 |  | 
    
        data/sig/types.rbs
    CHANGED
    
    | @@ -1521,6 +1521,7 @@ module Aws::QuickSight | |
| 1521 1521 | 
             
                  attr_accessor data_set_usage_configuration: Types::DataSetUsageConfiguration
         | 
| 1522 1522 | 
             
                  attr_accessor dataset_parameters: ::Array[Types::DatasetParameter]
         | 
| 1523 1523 | 
             
                  attr_accessor folder_arns: ::Array[::String]
         | 
| 1524 | 
            +
                  attr_accessor performance_configuration: Types::PerformanceConfiguration
         | 
| 1524 1525 | 
             
                  SENSITIVE: []
         | 
| 1525 1526 | 
             
                end
         | 
| 1526 1527 |  | 
| @@ -2222,6 +2223,7 @@ module Aws::QuickSight | |
| 2222 2223 | 
             
                  attr_accessor column_level_permission_rules: ::Array[Types::ColumnLevelPermissionRule]
         | 
| 2223 2224 | 
             
                  attr_accessor data_set_usage_configuration: Types::DataSetUsageConfiguration
         | 
| 2224 2225 | 
             
                  attr_accessor dataset_parameters: ::Array[Types::DatasetParameter]
         | 
| 2226 | 
            +
                  attr_accessor performance_configuration: Types::PerformanceConfiguration
         | 
| 2225 2227 | 
             
                  SENSITIVE: []
         | 
| 2226 2228 | 
             
                end
         | 
| 2227 2229 |  | 
| @@ -6549,6 +6551,11 @@ module Aws::QuickSight | |
| 6549 6551 | 
             
                  SENSITIVE: []
         | 
| 6550 6552 | 
             
                end
         | 
| 6551 6553 |  | 
| 6554 | 
            +
                class PerformanceConfiguration
         | 
| 6555 | 
            +
                  attr_accessor unique_keys: ::Array[Types::UniqueKey]
         | 
| 6556 | 
            +
                  SENSITIVE: []
         | 
| 6557 | 
            +
                end
         | 
| 6558 | 
            +
             | 
| 6552 6559 | 
             
                class PeriodOverPeriodComputation
         | 
| 6553 6560 | 
             
                  attr_accessor computation_id: ::String
         | 
| 6554 6561 | 
             
                  attr_accessor name: ::String
         | 
| @@ -9052,6 +9059,11 @@ module Aws::QuickSight | |
| 9052 9059 | 
             
                  SENSITIVE: []
         | 
| 9053 9060 | 
             
                end
         | 
| 9054 9061 |  | 
| 9062 | 
            +
                class UniqueKey
         | 
| 9063 | 
            +
                  attr_accessor column_names: ::Array[::String]
         | 
| 9064 | 
            +
                  SENSITIVE: []
         | 
| 9065 | 
            +
                end
         | 
| 9066 | 
            +
             | 
| 9055 9067 | 
             
                class UniqueValuesComputation
         | 
| 9056 9068 | 
             
                  attr_accessor computation_id: ::String
         | 
| 9057 9069 | 
             
                  attr_accessor name: ::String
         | 
| @@ -9340,6 +9352,7 @@ module Aws::QuickSight | |
| 9340 9352 | 
             
                  attr_accessor column_level_permission_rules: ::Array[Types::ColumnLevelPermissionRule]
         | 
| 9341 9353 | 
             
                  attr_accessor data_set_usage_configuration: Types::DataSetUsageConfiguration
         | 
| 9342 9354 | 
             
                  attr_accessor dataset_parameters: ::Array[Types::DatasetParameter]
         | 
| 9355 | 
            +
                  attr_accessor performance_configuration: Types::PerformanceConfiguration
         | 
| 9343 9356 | 
             
                  SENSITIVE: []
         | 
| 9344 9357 | 
             
                end
         | 
| 9345 9358 |  | 
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: aws-sdk-quicksight
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 1. | 
| 4 | 
            +
              version: 1.140.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-12- | 
| 11 | 
            +
            date: 2024-12-18 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: aws-sdk-core
         |