aws-sdk-deadline 1.45.0 → 1.46.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d500d1ad0da10cd93a23fcc5683ffc79877428fcef7c44e135eabbaaece0c6e3
4
- data.tar.gz: 30baf2799270e852548db6dfba05b0cae2675d3f01921ff1ccea5c8223bdd4d0
3
+ metadata.gz: e01b78e3beef946106a052d06a7e3778ce5ef9f4361ca959f5d614869fa0c17b
4
+ data.tar.gz: 0dcbad39bc5741b9ea4d1ec54fd768aeae922febb104c11215dfe1469c9be6ca
5
5
  SHA512:
6
- metadata.gz: 5c29e54a652bb01e54d5c6b1d5888d93884bf80ad5d8be34a7b28b09c1e9ac273fda6da2b678efa5a5623d6b2e793508b21c2b2d0a51663c99c17a4b159c0f19
7
- data.tar.gz: 683ba1b6f033db86445d7d75a5a271cd845bae35c51e5f1cdaf0b2f3502d3b80310acaa4c99e3b4f1c97cf065e2b1e561b60e1fc6c3641bc633333e6fa4314f2
6
+ metadata.gz: 7f42e3977871c1832540b9d66782c5ee2600853c3b1fabf72fb0ae7f887965a336eceb32808b15d250e256a2dd094334467b8d4ec01dd9018e3d3cbe179b4ac2
7
+ data.tar.gz: 695559404cf8c99ae0d03c8950735cb9cc660682c55eb940dbd40ff449c741fd07cb449568487285eb879071baaf43eec4a584cc5e723204335d07ad4c732708
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.46.0 (2026-03-06)
5
+ ------------------
6
+
7
+ * Feature - AWS Deadline Cloud now supports cost scale factors for farms, enabling studios to adjust reported costs to reflect their actual rendering economics. Adjusted costs are reflected in Deadline Cloud's Usage Explorer and Budgets.
8
+
4
9
  1.45.0 (2026-02-06)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.45.0
1
+ 1.46.0
@@ -1111,6 +1111,9 @@ module Aws::Deadline
1111
1111
  # @option params [String] :kms_key_arn
1112
1112
  # The ARN of the KMS key to use on the farm.
1113
1113
  #
1114
+ # @option params [Float] :cost_scale_factor
1115
+ # The cost scale factor to apply on the farm.
1116
+ #
1114
1117
  # @option params [Hash<String,String>] :tags
1115
1118
  # The tags to add to your farm. Each tag consists of a tag key and a tag
1116
1119
  # value. Tag keys and values are both required, but tag values can be
@@ -1127,6 +1130,7 @@ module Aws::Deadline
1127
1130
  # display_name: "ResourceName", # required
1128
1131
  # description: "Description",
1129
1132
  # kms_key_arn: "KmsKeyArn",
1133
+ # cost_scale_factor: 1.0,
1130
1134
  # tags: {
1131
1135
  # "String" => "String",
1132
1136
  # },
@@ -2581,6 +2585,7 @@ module Aws::Deadline
2581
2585
  # * {Types::GetFarmResponse#display_name #display_name} => String
2582
2586
  # * {Types::GetFarmResponse#description #description} => String
2583
2587
  # * {Types::GetFarmResponse#kms_key_arn #kms_key_arn} => String
2588
+ # * {Types::GetFarmResponse#cost_scale_factor #cost_scale_factor} => Float
2584
2589
  # * {Types::GetFarmResponse#created_at #created_at} => Time
2585
2590
  # * {Types::GetFarmResponse#created_by #created_by} => String
2586
2591
  # * {Types::GetFarmResponse#updated_at #updated_at} => Time
@@ -2598,6 +2603,7 @@ module Aws::Deadline
2598
2603
  # resp.display_name #=> String
2599
2604
  # resp.description #=> String
2600
2605
  # resp.kms_key_arn #=> String
2606
+ # resp.cost_scale_factor #=> Float
2601
2607
  # resp.created_at #=> Time
2602
2608
  # resp.created_by #=> String
2603
2609
  # resp.updated_at #=> Time
@@ -6192,6 +6198,9 @@ module Aws::Deadline
6192
6198
  # displaying it on a webpage or any other system that might interpret
6193
6199
  # the content of this field.
6194
6200
  #
6201
+ # @option params [Float] :cost_scale_factor
6202
+ # The cost scale factor of the farm to update.
6203
+ #
6195
6204
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
6196
6205
  #
6197
6206
  # @example Request syntax with placeholder values
@@ -6200,6 +6209,7 @@ module Aws::Deadline
6200
6209
  # farm_id: "FarmId", # required
6201
6210
  # display_name: "ResourceName",
6202
6211
  # description: "Description",
6212
+ # cost_scale_factor: 1.0,
6203
6213
  # })
6204
6214
  #
6205
6215
  # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/UpdateFarm AWS API Documentation
@@ -7177,7 +7187,7 @@ module Aws::Deadline
7177
7187
  tracer: tracer
7178
7188
  )
7179
7189
  context[:gem_name] = 'aws-sdk-deadline'
7180
- context[:gem_version] = '1.45.0'
7190
+ context[:gem_version] = '1.46.0'
7181
7191
  Seahorse::Client::Request.new(handlers, context)
7182
7192
  end
7183
7193
 
@@ -91,6 +91,7 @@ module Aws::Deadline
91
91
  ConsumedUsages = Shapes::StructureShape.new(name: 'ConsumedUsages')
92
92
  CopyJobTemplateRequest = Shapes::StructureShape.new(name: 'CopyJobTemplateRequest')
93
93
  CopyJobTemplateResponse = Shapes::StructureShape.new(name: 'CopyJobTemplateResponse')
94
+ CostScaleFactor = Shapes::FloatShape.new(name: 'CostScaleFactor')
94
95
  CpuArchitectureType = Shapes::StringShape.new(name: 'CpuArchitectureType')
95
96
  CreateBudgetRequest = Shapes::StructureShape.new(name: 'CreateBudgetRequest')
96
97
  CreateBudgetResponse = Shapes::StructureShape.new(name: 'CreateBudgetResponse')
@@ -923,6 +924,7 @@ module Aws::Deadline
923
924
  CreateFarmRequest.add_member(:display_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "displayName"))
924
925
  CreateFarmRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
925
926
  CreateFarmRequest.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyArn"))
927
+ CreateFarmRequest.add_member(:cost_scale_factor, Shapes::ShapeRef.new(shape: CostScaleFactor, location_name: "costScaleFactor"))
926
928
  CreateFarmRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
927
929
  CreateFarmRequest.struct_class = Types::CreateFarmRequest
928
930
 
@@ -1358,6 +1360,7 @@ module Aws::Deadline
1358
1360
  GetFarmResponse.add_member(:display_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "displayName"))
1359
1361
  GetFarmResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
1360
1362
  GetFarmResponse.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyArn"))
1363
+ GetFarmResponse.add_member(:cost_scale_factor, Shapes::ShapeRef.new(shape: CostScaleFactor, required: true, location_name: "costScaleFactor"))
1361
1364
  GetFarmResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, required: true, location_name: "createdAt"))
1362
1365
  GetFarmResponse.add_member(:created_by, Shapes::ShapeRef.new(shape: CreatedBy, required: true, location_name: "createdBy"))
1363
1366
  GetFarmResponse.add_member(:updated_at, Shapes::ShapeRef.new(shape: UpdatedAt, location_name: "updatedAt"))
@@ -2800,6 +2803,7 @@ module Aws::Deadline
2800
2803
  UpdateFarmRequest.add_member(:farm_id, Shapes::ShapeRef.new(shape: FarmId, required: true, location: "uri", location_name: "farmId"))
2801
2804
  UpdateFarmRequest.add_member(:display_name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "displayName"))
2802
2805
  UpdateFarmRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
2806
+ UpdateFarmRequest.add_member(:cost_scale_factor, Shapes::ShapeRef.new(shape: CostScaleFactor, location_name: "costScaleFactor"))
2803
2807
  UpdateFarmRequest.struct_class = Types::UpdateFarmRequest
2804
2808
 
2805
2809
  UpdateFarmResponse.struct_class = Types::UpdateFarmResponse
@@ -1128,6 +1128,10 @@ module Aws::Deadline
1128
1128
  # The ARN of the KMS key to use on the farm.
1129
1129
  # @return [String]
1130
1130
  #
1131
+ # @!attribute [rw] cost_scale_factor
1132
+ # The cost scale factor to apply on the farm.
1133
+ # @return [Float]
1134
+ #
1131
1135
  # @!attribute [rw] tags
1132
1136
  # The tags to add to your farm. Each tag consists of a tag key and a
1133
1137
  # tag value. Tag keys and values are both required, but tag values can
@@ -1141,6 +1145,7 @@ module Aws::Deadline
1141
1145
  :display_name,
1142
1146
  :description,
1143
1147
  :kms_key_arn,
1148
+ :cost_scale_factor,
1144
1149
  :tags)
1145
1150
  SENSITIVE = [:description]
1146
1151
  include Aws::Structure
@@ -3066,6 +3071,10 @@ module Aws::Deadline
3066
3071
  # The ARN of the KMS key used on the farm.
3067
3072
  # @return [String]
3068
3073
  #
3074
+ # @!attribute [rw] cost_scale_factor
3075
+ # The cost scale factor applied on the farm.
3076
+ # @return [Float]
3077
+ #
3069
3078
  # @!attribute [rw] created_at
3070
3079
  # The date and time the resource was created.
3071
3080
  # @return [Time]
@@ -3089,6 +3098,7 @@ module Aws::Deadline
3089
3098
  :display_name,
3090
3099
  :description,
3091
3100
  :kms_key_arn,
3101
+ :cost_scale_factor,
3092
3102
  :created_at,
3093
3103
  :created_by,
3094
3104
  :updated_at,
@@ -9660,12 +9670,17 @@ module Aws::Deadline
9660
9670
  # interpret the content of this field.
9661
9671
  # @return [String]
9662
9672
  #
9673
+ # @!attribute [rw] cost_scale_factor
9674
+ # The cost scale factor of the farm to update.
9675
+ # @return [Float]
9676
+ #
9663
9677
  # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/UpdateFarmRequest AWS API Documentation
9664
9678
  #
9665
9679
  class UpdateFarmRequest < Struct.new(
9666
9680
  :farm_id,
9667
9681
  :display_name,
9668
- :description)
9682
+ :description,
9683
+ :cost_scale_factor)
9669
9684
  SENSITIVE = [:description]
9670
9685
  include Aws::Structure
9671
9686
  end
@@ -55,7 +55,7 @@ module Aws::Deadline
55
55
  autoload :EndpointProvider, 'aws-sdk-deadline/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-deadline/endpoints'
57
57
 
58
- GEM_VERSION = '1.45.0'
58
+ GEM_VERSION = '1.46.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -280,6 +280,7 @@ module Aws
280
280
  display_name: ::String,
281
281
  ?description: ::String,
282
282
  ?kms_key_arn: ::String,
283
+ ?cost_scale_factor: ::Float,
283
284
  ?tags: Hash[::String, ::String]
284
285
  ) -> _CreateFarmResponseSuccess
285
286
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateFarmResponseSuccess
@@ -803,6 +804,7 @@ module Aws
803
804
  def display_name: () -> ::String
804
805
  def description: () -> ::String
805
806
  def kms_key_arn: () -> ::String
807
+ def cost_scale_factor: () -> ::Float
806
808
  def created_at: () -> ::Time
807
809
  def created_by: () -> ::String
808
810
  def updated_at: () -> ::Time
@@ -1941,7 +1943,8 @@ module Aws
1941
1943
  def update_farm: (
1942
1944
  farm_id: ::String,
1943
1945
  ?display_name: ::String,
1944
- ?description: ::String
1946
+ ?description: ::String,
1947
+ ?cost_scale_factor: ::Float
1945
1948
  ) -> _UpdateFarmResponseSuccess
1946
1949
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateFarmResponseSuccess
1947
1950
 
data/sig/types.rbs CHANGED
@@ -327,6 +327,7 @@ module Aws::Deadline
327
327
  attr_accessor display_name: ::String
328
328
  attr_accessor description: ::String
329
329
  attr_accessor kms_key_arn: ::String
330
+ attr_accessor cost_scale_factor: ::Float
330
331
  attr_accessor tags: ::Hash[::String, ::String]
331
332
  SENSITIVE: [:description]
332
333
  end
@@ -888,6 +889,7 @@ module Aws::Deadline
888
889
  attr_accessor display_name: ::String
889
890
  attr_accessor description: ::String
890
891
  attr_accessor kms_key_arn: ::String
892
+ attr_accessor cost_scale_factor: ::Float
891
893
  attr_accessor created_at: ::Time
892
894
  attr_accessor created_by: ::String
893
895
  attr_accessor updated_at: ::Time
@@ -2646,6 +2648,7 @@ module Aws::Deadline
2646
2648
  attr_accessor farm_id: ::String
2647
2649
  attr_accessor display_name: ::String
2648
2650
  attr_accessor description: ::String
2651
+ attr_accessor cost_scale_factor: ::Float
2649
2652
  SENSITIVE: [:description]
2650
2653
  end
2651
2654
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-deadline
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.45.0
4
+ version: 1.46.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services