aws-sdk-billingconductor 1.2.0 → 1.3.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: 5bcfbbcbf1e6510586ed4afe3169d2dbaf9af53368b268cffa421413c956a3a5
4
- data.tar.gz: ae2bf99cf08ae54c58cbd81980a2b18889a568964f76fe9ca053c4f09097af6b
3
+ metadata.gz: 407e1527a017a37949d23591110033a66c5e1d8f278a32f0fa09c26b14b49981
4
+ data.tar.gz: 9888bcf989dc1cfe9518e1ff4b9003bfcd3d752f37d8ac830bae5e018f9f45d6
5
5
  SHA512:
6
- metadata.gz: 34c61a52fad45d484e93b282a60621d73d0faf7264594516552c4039ca2212176f8bb77bba10a4e171fa5fb826e613a79cc1e9547070ab74b850628a0232106c
7
- data.tar.gz: 44a05f1528385f3ab02a27b2e7fe473bce24212a9de2ee28703264719f5d936af9c7c55a7c5454648f228311a8da124c0cc5766de47efe51e4fe32e7c3ce4fb5
6
+ metadata.gz: 86d699a85ba9b1e50776a50861fc38280641b2233955fd6cc04ed26170aa9bd5e031b0e959e9656c51e375a1ae8f08f96b050d7f3d8a99f6c1244fda2accb4c5
7
+ data.tar.gz: 79647c219ebd5bc32b321f413d9709ec67dd4ad426739e0923d980e84fd71a0e7c4dcccfa49e873bb2723e83a3f1ed1af18859756a06789df7363c52b688dd1b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.3.0 (2022-11-16)
5
+ ------------------
6
+
7
+ * Feature - This release adds a new feature BillingEntity pricing rule.
8
+
4
9
  1.2.0 (2022-11-08)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.2.0
1
+ 1.3.0
@@ -767,6 +767,11 @@ module Aws::BillingConductor
767
767
  # A map that contains tag keys and tag values that are attached to a
768
768
  # pricing rule.
769
769
  #
770
+ # @option params [String] :billing_entity
771
+ # The seller of services provided by Amazon Web Services, their
772
+ # affiliates, or third-party providers selling services via Amazon Web
773
+ # Services Marketplace.
774
+ #
770
775
  # @return [Types::CreatePricingRuleOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
771
776
  #
772
777
  # * {Types::CreatePricingRuleOutput#arn #arn} => String
@@ -777,13 +782,14 @@ module Aws::BillingConductor
777
782
  # client_token: "ClientToken",
778
783
  # name: "PricingRuleName", # required
779
784
  # description: "PricingRuleDescription",
780
- # scope: "GLOBAL", # required, accepts GLOBAL, SERVICE
785
+ # scope: "GLOBAL", # required, accepts GLOBAL, SERVICE, BILLING_ENTITY
781
786
  # type: "MARKUP", # required, accepts MARKUP, DISCOUNT
782
787
  # modifier_percentage: 1.0, # required
783
788
  # service: "Service",
784
789
  # tags: {
785
790
  # "TagKey" => "TagValue",
786
791
  # },
792
+ # billing_entity: "BillingEntity",
787
793
  # })
788
794
  #
789
795
  # @example Response structure
@@ -1450,13 +1456,14 @@ module Aws::BillingConductor
1450
1456
  # resp.pricing_rules[0].name #=> String
1451
1457
  # resp.pricing_rules[0].arn #=> String
1452
1458
  # resp.pricing_rules[0].description #=> String
1453
- # resp.pricing_rules[0].scope #=> String, one of "GLOBAL", "SERVICE"
1459
+ # resp.pricing_rules[0].scope #=> String, one of "GLOBAL", "SERVICE", "BILLING_ENTITY"
1454
1460
  # resp.pricing_rules[0].type #=> String, one of "MARKUP", "DISCOUNT"
1455
1461
  # resp.pricing_rules[0].modifier_percentage #=> Float
1456
1462
  # resp.pricing_rules[0].service #=> String
1457
1463
  # resp.pricing_rules[0].associated_pricing_plan_count #=> Integer
1458
1464
  # resp.pricing_rules[0].creation_time #=> Integer
1459
1465
  # resp.pricing_rules[0].last_modified_time #=> Integer
1466
+ # resp.pricing_rules[0].billing_entity #=> String
1460
1467
  # resp.next_token #=> String
1461
1468
  #
1462
1469
  # @see http://docs.aws.amazon.com/goto/WebAPI/billingconductor-2021-07-30/ListPricingRules AWS API Documentation
@@ -1876,6 +1883,7 @@ module Aws::BillingConductor
1876
1883
  # * {Types::UpdatePricingRuleOutput#service #service} => String
1877
1884
  # * {Types::UpdatePricingRuleOutput#associated_pricing_plan_count #associated_pricing_plan_count} => Integer
1878
1885
  # * {Types::UpdatePricingRuleOutput#last_modified_time #last_modified_time} => Integer
1886
+ # * {Types::UpdatePricingRuleOutput#billing_entity #billing_entity} => String
1879
1887
  #
1880
1888
  # @example Request syntax with placeholder values
1881
1889
  #
@@ -1892,12 +1900,13 @@ module Aws::BillingConductor
1892
1900
  # resp.arn #=> String
1893
1901
  # resp.name #=> String
1894
1902
  # resp.description #=> String
1895
- # resp.scope #=> String, one of "GLOBAL", "SERVICE"
1903
+ # resp.scope #=> String, one of "GLOBAL", "SERVICE", "BILLING_ENTITY"
1896
1904
  # resp.type #=> String, one of "MARKUP", "DISCOUNT"
1897
1905
  # resp.modifier_percentage #=> Float
1898
1906
  # resp.service #=> String
1899
1907
  # resp.associated_pricing_plan_count #=> Integer
1900
1908
  # resp.last_modified_time #=> Integer
1909
+ # resp.billing_entity #=> String
1901
1910
  #
1902
1911
  # @see http://docs.aws.amazon.com/goto/WebAPI/billingconductor-2021-07-30/UpdatePricingRule AWS API Documentation
1903
1912
  #
@@ -1921,7 +1930,7 @@ module Aws::BillingConductor
1921
1930
  params: params,
1922
1931
  config: config)
1923
1932
  context[:gem_name] = 'aws-sdk-billingconductor'
1924
- context[:gem_version] = '1.2.0'
1933
+ context[:gem_version] = '1.3.0'
1925
1934
  Seahorse::Client::Request.new(handlers, context)
1926
1935
  end
1927
1936
 
@@ -36,6 +36,7 @@ module Aws::BillingConductor
36
36
  BatchAssociateResourcesToCustomLineItemOutput = Shapes::StructureShape.new(name: 'BatchAssociateResourcesToCustomLineItemOutput')
37
37
  BatchDisassociateResourcesFromCustomLineItemInput = Shapes::StructureShape.new(name: 'BatchDisassociateResourcesFromCustomLineItemInput')
38
38
  BatchDisassociateResourcesFromCustomLineItemOutput = Shapes::StructureShape.new(name: 'BatchDisassociateResourcesFromCustomLineItemOutput')
39
+ BillingEntity = Shapes::StringShape.new(name: 'BillingEntity')
39
40
  BillingGroupArn = Shapes::StringShape.new(name: 'BillingGroupArn')
40
41
  BillingGroupArnList = Shapes::ListShape.new(name: 'BillingGroupArnList')
41
42
  BillingGroupCostReportElement = Shapes::StructureShape.new(name: 'BillingGroupCostReportElement')
@@ -331,6 +332,7 @@ module Aws::BillingConductor
331
332
  CreatePricingRuleInput.add_member(:modifier_percentage, Shapes::ShapeRef.new(shape: ModifierPercentage, required: true, location_name: "ModifierPercentage"))
332
333
  CreatePricingRuleInput.add_member(:service, Shapes::ShapeRef.new(shape: Service, location_name: "Service"))
333
334
  CreatePricingRuleInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
335
+ CreatePricingRuleInput.add_member(:billing_entity, Shapes::ShapeRef.new(shape: BillingEntity, location_name: "BillingEntity"))
334
336
  CreatePricingRuleInput.struct_class = Types::CreatePricingRuleInput
335
337
 
336
338
  CreatePricingRuleOutput.add_member(:arn, Shapes::ShapeRef.new(shape: PricingRuleArn, location_name: "Arn"))
@@ -633,6 +635,7 @@ module Aws::BillingConductor
633
635
  PricingRuleListElement.add_member(:associated_pricing_plan_count, Shapes::ShapeRef.new(shape: NumberOfPricingPlansAssociatedWith, location_name: "AssociatedPricingPlanCount"))
634
636
  PricingRuleListElement.add_member(:creation_time, Shapes::ShapeRef.new(shape: Instant, location_name: "CreationTime"))
635
637
  PricingRuleListElement.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Instant, location_name: "LastModifiedTime"))
638
+ PricingRuleListElement.add_member(:billing_entity, Shapes::ShapeRef.new(shape: BillingEntity, location_name: "BillingEntity"))
636
639
  PricingRuleListElement.struct_class = Types::PricingRuleListElement
637
640
 
638
641
  ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Message"))
@@ -740,6 +743,7 @@ module Aws::BillingConductor
740
743
  UpdatePricingRuleOutput.add_member(:service, Shapes::ShapeRef.new(shape: Service, location_name: "Service"))
741
744
  UpdatePricingRuleOutput.add_member(:associated_pricing_plan_count, Shapes::ShapeRef.new(shape: NumberOfPricingPlansAssociatedWith, location_name: "AssociatedPricingPlanCount"))
742
745
  UpdatePricingRuleOutput.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Instant, location_name: "LastModifiedTime"))
746
+ UpdatePricingRuleOutput.add_member(:billing_entity, Shapes::ShapeRef.new(shape: BillingEntity, location_name: "BillingEntity"))
743
747
  UpdatePricingRuleOutput.struct_class = Types::UpdatePricingRuleOutput
744
748
 
745
749
  ValidationException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Message"))
@@ -697,13 +697,14 @@ module Aws::BillingConductor
697
697
  # client_token: "ClientToken",
698
698
  # name: "PricingRuleName", # required
699
699
  # description: "PricingRuleDescription",
700
- # scope: "GLOBAL", # required, accepts GLOBAL, SERVICE
700
+ # scope: "GLOBAL", # required, accepts GLOBAL, SERVICE, BILLING_ENTITY
701
701
  # type: "MARKUP", # required, accepts MARKUP, DISCOUNT
702
702
  # modifier_percentage: 1.0, # required
703
703
  # service: "Service",
704
704
  # tags: {
705
705
  # "TagKey" => "TagValue",
706
706
  # },
707
+ # billing_entity: "BillingEntity",
707
708
  # }
708
709
  #
709
710
  # @!attribute [rw] client_token
@@ -746,6 +747,12 @@ module Aws::BillingConductor
746
747
  # pricing rule.
747
748
  # @return [Hash<String,String>]
748
749
  #
750
+ # @!attribute [rw] billing_entity
751
+ # The seller of services provided by Amazon Web Services, their
752
+ # affiliates, or third-party providers selling services via Amazon Web
753
+ # Services Marketplace.
754
+ # @return [String]
755
+ #
749
756
  # @see http://docs.aws.amazon.com/goto/WebAPI/billingconductor-2021-07-30/CreatePricingRuleInput AWS API Documentation
750
757
  #
751
758
  class CreatePricingRuleInput < Struct.new(
@@ -756,7 +763,8 @@ module Aws::BillingConductor
756
763
  :type,
757
764
  :modifier_percentage,
758
765
  :service,
759
- :tags)
766
+ :tags,
767
+ :billing_entity)
760
768
  SENSITIVE = [:name, :description]
761
769
  include Aws::Structure
762
770
  end
@@ -2387,6 +2395,12 @@ module Aws::BillingConductor
2387
2395
  # The most recent time when the pricing rule was modified.
2388
2396
  # @return [Integer]
2389
2397
  #
2398
+ # @!attribute [rw] billing_entity
2399
+ # The seller of services provided by Amazon Web Services, their
2400
+ # affiliates, or third-party providers selling services via Amazon Web
2401
+ # Services Marketplace.
2402
+ # @return [String]
2403
+ #
2390
2404
  # @see http://docs.aws.amazon.com/goto/WebAPI/billingconductor-2021-07-30/PricingRuleListElement AWS API Documentation
2391
2405
  #
2392
2406
  class PricingRuleListElement < Struct.new(
@@ -2399,7 +2413,8 @@ module Aws::BillingConductor
2399
2413
  :service,
2400
2414
  :associated_pricing_plan_count,
2401
2415
  :creation_time,
2402
- :last_modified_time)
2416
+ :last_modified_time,
2417
+ :billing_entity)
2403
2418
  SENSITIVE = [:name, :description]
2404
2419
  include Aws::Structure
2405
2420
  end
@@ -2974,6 +2989,12 @@ module Aws::BillingConductor
2974
2989
  # The most recent time the pricing rule was modified.
2975
2990
  # @return [Integer]
2976
2991
  #
2992
+ # @!attribute [rw] billing_entity
2993
+ # The seller of services provided by Amazon Web Services, their
2994
+ # affiliates, or third-party providers selling services via Amazon Web
2995
+ # Services Marketplace.
2996
+ # @return [String]
2997
+ #
2977
2998
  # @see http://docs.aws.amazon.com/goto/WebAPI/billingconductor-2021-07-30/UpdatePricingRuleOutput AWS API Documentation
2978
2999
  #
2979
3000
  class UpdatePricingRuleOutput < Struct.new(
@@ -2985,7 +3006,8 @@ module Aws::BillingConductor
2985
3006
  :modifier_percentage,
2986
3007
  :service,
2987
3008
  :associated_pricing_plan_count,
2988
- :last_modified_time)
3009
+ :last_modified_time,
3010
+ :billing_entity)
2989
3011
  SENSITIVE = [:name, :description]
2990
3012
  include Aws::Structure
2991
3013
  end
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-billingconductor/customizations'
53
53
  # @!group service
54
54
  module Aws::BillingConductor
55
55
 
56
- GEM_VERSION = '1.2.0'
56
+ GEM_VERSION = '1.3.0'
57
57
 
58
58
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-billingconductor
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.3.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: 2022-11-08 00:00:00.000000000 Z
11
+ date: 2022-11-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core