google-apis-realtimebidding_v1alpha 0.2.0 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ac802cdf583a9b4a6eac8d856cbc7617c9c12923875a2b16c985541ce78f8ce6
4
- data.tar.gz: b715aeab3f41ecbd0bfc4c7a5d503dfe1ab1bd88aae07f7e86e93f0446b4d16b
3
+ metadata.gz: d1171fa262f10420b5d46168addb64bf02ba9fbb1154928d5640229dae6bb660
4
+ data.tar.gz: 82063288e159d38dad10dfee769ea783d2c3033c04c33ae1314bae5326e92887
5
5
  SHA512:
6
- metadata.gz: bf234596fb7d9f4567862472759313fe2c5017d6b93d80a2a04778a35d3a7fb9d16fdf23da4d20b4466c5afa31cc7fc2e93665450875e6fadd5441c5b70cab05
7
- data.tar.gz: 1e70d8bf6ac950e5bc05f2c1ec4b610708957c26b33ec7cc20407d9c11f4dde8030c23f78e635f3f8a86ebf07c960bd62580fd89ba3339f2df0fd128772dae85
6
+ metadata.gz: 4106fb1e9c5d5a4112c0600c5642368694901bcf84d87d802db2d36d1fa114a15ba6d4710de7a972891e2a464d70f25b8f400d20869dc0dc10bce68fb631b948
7
+ data.tar.gz: b283211fa817c22fc38f4264e5c58727e25d54e55f1cb0074230f826a7f8bd4c9912851267245c60ba467e48c140455a38871b99633a909bc094c205273df9ac
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-realtimebidding_v1alpha
2
2
 
3
+ ### v0.3.0 (2021-04-27)
4
+
5
+ * Regenerated from discovery document revision 20210424
6
+ * Regenerated using generator version 0.2.0
7
+
3
8
  ### v0.2.0 (2021-03-04)
4
9
 
5
10
  * Unspecified changes
@@ -27,17 +27,7 @@ module Google
27
27
  class BiddingFunction
28
28
  include Google::Apis::Core::Hashable
29
29
 
30
- # The raw Javascript source code of the bidding function. The function takes in
31
- # a Javascript object, `inputs`, that contains the following named fields: `
32
- # openrtbContextualBidRequest` OR `googleContextualBidRequest`, `
33
- # customContextualSignal`, `interestBasedBidData`, `interestGroupData`, `
34
- # recentImpressionAges`, and returns the bid price CPM (double). Example: ``` /*
35
- # Returns a bid price CPM (double). * * @param `Object` inputs an object with
36
- # the * following named fields: * - openrtbContextualBidRequest * OR
37
- # googleContextualBidRequest * - customContextualSignal * - interestBasedBidData
38
- # * - interestGroupData * - recentImpressionAges */ function biddingFunction(
39
- # inputs) ` ... return inputs.interestBasedBidData.cpm * inputs.
40
- # customContextualSignals.placementMultiplier; ` ```
30
+ # The raw Javascript source code of the bidding function.
41
31
  # Corresponds to the JSON property `biddingFunction`
42
32
  # @return [String]
43
33
  attr_accessor :bidding_function
@@ -48,6 +38,11 @@ module Google
48
38
  # @return [String]
49
39
  attr_accessor :name
50
40
 
41
+ # The type of the bidding function to be created.
42
+ # Corresponds to the JSON property `type`
43
+ # @return [String]
44
+ attr_accessor :type
45
+
51
46
  def initialize(**args)
52
47
  update!(**args)
53
48
  end
@@ -56,6 +51,7 @@ module Google
56
51
  def update!(**args)
57
52
  @bidding_function = args[:bidding_function] if args.key?(:bidding_function)
58
53
  @name = args[:name] if args.key?(:name)
54
+ @type = args[:type] if args.key?(:type)
59
55
  end
60
56
  end
61
57
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module RealtimebiddingV1alpha
18
18
  # Version of the google-apis-realtimebidding_v1alpha gem
19
- GEM_VERSION = "0.2.0"
19
+ GEM_VERSION = "0.3.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.1.2"
22
+ GENERATOR_VERSION = "0.2.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210124"
25
+ REVISION = "20210424"
26
26
  end
27
27
  end
28
28
  end
@@ -39,6 +39,7 @@ module Google
39
39
  class Representation < Google::Apis::Core::JsonRepresentation
40
40
  property :bidding_function, as: 'biddingFunction'
41
41
  property :name, as: 'name'
42
+ property :type, as: 'type'
42
43
  end
43
44
  end
44
45
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-realtimebidding_v1alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-03-08 00:00:00.000000000 Z
11
+ date: 2021-05-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -52,7 +52,7 @@ licenses:
52
52
  metadata:
53
53
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
54
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-realtimebidding_v1alpha/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-realtimebidding_v1alpha/v0.2.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-realtimebidding_v1alpha/v0.3.0
56
56
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-realtimebidding_v1alpha
57
57
  post_install_message:
58
58
  rdoc_options: []
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
69
69
  - !ruby/object:Gem::Version
70
70
  version: '0'
71
71
  requirements: []
72
- rubygems_version: 3.2.13
72
+ rubygems_version: 3.2.17
73
73
  signing_key:
74
74
  specification_version: 4
75
75
  summary: Simple REST client for Real-time Bidding API V1alpha