aws-sdk-glue 1.177.0 → 1.179.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/types.rbs CHANGED
@@ -803,6 +803,14 @@ module Aws::Glue
803
803
  SENSITIVE: []
804
804
  end
805
805
 
806
+ class ConfigurationObject
807
+ attr_accessor default_value: ::String
808
+ attr_accessor allowed_values: ::Array[::String]
809
+ attr_accessor min_value: ::String
810
+ attr_accessor max_value: ::String
811
+ SENSITIVE: []
812
+ end
813
+
806
814
  class ConflictException
807
815
  attr_accessor message: ::String
808
816
  SENSITIVE: []
@@ -1351,6 +1359,19 @@ module Aws::Glue
1351
1359
  SENSITIVE: []
1352
1360
  end
1353
1361
 
1362
+ class CreateUsageProfileRequest
1363
+ attr_accessor name: ::String
1364
+ attr_accessor description: ::String
1365
+ attr_accessor configuration: Types::ProfileConfiguration
1366
+ attr_accessor tags: ::Hash[::String, ::String]
1367
+ SENSITIVE: []
1368
+ end
1369
+
1370
+ class CreateUsageProfileResponse
1371
+ attr_accessor name: ::String
1372
+ SENSITIVE: []
1373
+ end
1374
+
1354
1375
  class CreateUserDefinedFunctionRequest
1355
1376
  attr_accessor catalog_id: ::String
1356
1377
  attr_accessor database_name: ::String
@@ -1450,6 +1471,7 @@ module Aws::Glue
1450
1471
  class DataQualityEvaluationRunAdditionalRunOptions
1451
1472
  attr_accessor cloud_watch_metrics_enabled: bool
1452
1473
  attr_accessor results_s3_prefix: ::String
1474
+ attr_accessor composite_rule_evaluation_method: ("COLUMN" | "ROW")
1453
1475
  SENSITIVE: []
1454
1476
  end
1455
1477
 
@@ -1875,6 +1897,14 @@ module Aws::Glue
1875
1897
  SENSITIVE: []
1876
1898
  end
1877
1899
 
1900
+ class DeleteUsageProfileRequest
1901
+ attr_accessor name: ::String
1902
+ SENSITIVE: []
1903
+ end
1904
+
1905
+ class DeleteUsageProfileResponse < Aws::EmptyStructure
1906
+ end
1907
+
1878
1908
  class DeleteUserDefinedFunctionRequest
1879
1909
  attr_accessor catalog_id: ::String
1880
1910
  attr_accessor database_name: ::String
@@ -3088,6 +3118,20 @@ module Aws::Glue
3088
3118
  SENSITIVE: []
3089
3119
  end
3090
3120
 
3121
+ class GetUsageProfileRequest
3122
+ attr_accessor name: ::String
3123
+ SENSITIVE: []
3124
+ end
3125
+
3126
+ class GetUsageProfileResponse
3127
+ attr_accessor name: ::String
3128
+ attr_accessor description: ::String
3129
+ attr_accessor configuration: Types::ProfileConfiguration
3130
+ attr_accessor created_on: ::Time
3131
+ attr_accessor last_modified_on: ::Time
3132
+ SENSITIVE: []
3133
+ end
3134
+
3091
3135
  class GetUserDefinedFunctionRequest
3092
3136
  attr_accessor catalog_id: ::String
3093
3137
  attr_accessor database_name: ::String
@@ -3368,6 +3412,7 @@ module Aws::Glue
3368
3412
  attr_accessor execution_class: ("FLEX" | "STANDARD")
3369
3413
  attr_accessor source_control_details: Types::SourceControlDetails
3370
3414
  attr_accessor maintenance_window: ::String
3415
+ attr_accessor profile_name: ::String
3371
3416
  SENSITIVE: [:code_gen_configuration_nodes]
3372
3417
  end
3373
3418
 
@@ -3428,6 +3473,7 @@ module Aws::Glue
3428
3473
  attr_accessor dpu_seconds: ::Float
3429
3474
  attr_accessor execution_class: ("FLEX" | "STANDARD")
3430
3475
  attr_accessor maintenance_window: ::String
3476
+ attr_accessor profile_name: ::String
3431
3477
  SENSITIVE: []
3432
3478
  end
3433
3479
 
@@ -3827,6 +3873,18 @@ module Aws::Glue
3827
3873
  SENSITIVE: []
3828
3874
  end
3829
3875
 
3876
+ class ListUsageProfilesRequest
3877
+ attr_accessor next_token: ::String
3878
+ attr_accessor max_results: ::Integer
3879
+ SENSITIVE: []
3880
+ end
3881
+
3882
+ class ListUsageProfilesResponse
3883
+ attr_accessor profiles: ::Array[Types::UsageProfileDefinition]
3884
+ attr_accessor next_token: ::String
3885
+ SENSITIVE: []
3886
+ end
3887
+
3830
3888
  class ListWorkflowsRequest
3831
3889
  attr_accessor next_token: ::String
3832
3890
  attr_accessor max_results: ::Integer
@@ -4034,6 +4092,11 @@ module Aws::Glue
4034
4092
  SENSITIVE: []
4035
4093
  end
4036
4094
 
4095
+ class OperationNotSupportedException
4096
+ attr_accessor message: ::String
4097
+ SENSITIVE: []
4098
+ end
4099
+
4037
4100
  class OperationTimeoutException
4038
4101
  attr_accessor message: ::String
4039
4102
  SENSITIVE: []
@@ -4177,6 +4240,12 @@ module Aws::Glue
4177
4240
  SENSITIVE: []
4178
4241
  end
4179
4242
 
4243
+ class ProfileConfiguration
4244
+ attr_accessor session_configuration: ::Hash[::String, Types::ConfigurationObject]
4245
+ attr_accessor job_configuration: ::Hash[::String, Types::ConfigurationObject]
4246
+ SENSITIVE: []
4247
+ end
4248
+
4180
4249
  class PropertyPredicate
4181
4250
  attr_accessor key: ::String
4182
4251
  attr_accessor value: ::String
@@ -4782,6 +4851,7 @@ module Aws::Glue
4782
4851
  attr_accessor execution_time: ::Float
4783
4852
  attr_accessor dpu_seconds: ::Float
4784
4853
  attr_accessor idle_timeout: ::Integer
4854
+ attr_accessor profile_name: ::String
4785
4855
  SENSITIVE: []
4786
4856
  end
4787
4857
 
@@ -5728,6 +5798,18 @@ module Aws::Glue
5728
5798
  SENSITIVE: []
5729
5799
  end
5730
5800
 
5801
+ class UpdateUsageProfileRequest
5802
+ attr_accessor name: ::String
5803
+ attr_accessor description: ::String
5804
+ attr_accessor configuration: Types::ProfileConfiguration
5805
+ SENSITIVE: []
5806
+ end
5807
+
5808
+ class UpdateUsageProfileResponse
5809
+ attr_accessor name: ::String
5810
+ SENSITIVE: []
5811
+ end
5812
+
5731
5813
  class UpdateUserDefinedFunctionRequest
5732
5814
  attr_accessor catalog_id: ::String
5733
5815
  attr_accessor database_name: ::String
@@ -5766,6 +5848,14 @@ module Aws::Glue
5766
5848
  SENSITIVE: []
5767
5849
  end
5768
5850
 
5851
+ class UsageProfileDefinition
5852
+ attr_accessor name: ::String
5853
+ attr_accessor description: ::String
5854
+ attr_accessor created_on: ::Time
5855
+ attr_accessor last_modified_on: ::Time
5856
+ SENSITIVE: []
5857
+ end
5858
+
5769
5859
  class UserDefinedFunction
5770
5860
  attr_accessor function_name: ::String
5771
5861
  attr_accessor database_name: ::String
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-glue
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.177.0
4
+ version: 1.179.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-06-06 00:00:00.000000000 Z
11
+ date: 2024-06-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core