google-apis-displayvideo_v3 0.15.0 → 0.16.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: af8f53a27f162ee5b7072b32f59ebbda8718b934d91207d1b2b858e305323f0a
|
4
|
+
data.tar.gz: daa7bce2f0148cdd6bea91c40142d61b73c794d59b1598adca44fbd53e059dc9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '098827fdcebb804b273c51688018ddbc1e98f7a2bf66eff17853a01b5cf962140030b846a3f1a1d2244fe9ba8042dad93fb7563538e8534bb6b30c3defd13f0f'
|
7
|
+
data.tar.gz: a543fe9747c35f36acc0e7f9841adcd11f31b76d4c119785dd6bf69e06fd0bf3b3306b00ed99b8e98f3049f3a9188da42c567bdfd3fdcbaa4a20bc190a600444
|
data/CHANGELOG.md
CHANGED
@@ -6928,6 +6928,12 @@ module Google
|
|
6928
6928
|
# @return [Array<Fixnum>]
|
6929
6929
|
attr_accessor :ad_group_ids
|
6930
6930
|
|
6931
|
+
# Optional. YouTube Ad Groups QA to download by ID. All IDs must belong to the
|
6932
|
+
# same Advertiser or Partner specified in CreateSdfDownloadTaskRequest.
|
6933
|
+
# Corresponds to the JSON property `adGroupQaIds`
|
6934
|
+
# @return [Array<Fixnum>]
|
6935
|
+
attr_accessor :ad_group_qa_ids
|
6936
|
+
|
6931
6937
|
# Campaigns to download by ID. All IDs must belong to the same Advertiser or
|
6932
6938
|
# Partner specified in CreateSdfDownloadTaskRequest.
|
6933
6939
|
# Corresponds to the JSON property `campaignIds`
|
@@ -6946,6 +6952,12 @@ module Google
|
|
6946
6952
|
# @return [Array<Fixnum>]
|
6947
6953
|
attr_accessor :line_item_ids
|
6948
6954
|
|
6955
|
+
# Optional. Line Items QA to download by ID. All IDs must belong to the same
|
6956
|
+
# Advertiser or Partner specified in CreateSdfDownloadTaskRequest.
|
6957
|
+
# Corresponds to the JSON property `lineItemQaIds`
|
6958
|
+
# @return [Array<Fixnum>]
|
6959
|
+
attr_accessor :line_item_qa_ids
|
6960
|
+
|
6949
6961
|
# Media Products to download by ID. All IDs must belong to the same Advertiser
|
6950
6962
|
# or Partner specified in CreateSdfDownloadTaskRequest.
|
6951
6963
|
# Corresponds to the JSON property `mediaProductIds`
|
@@ -6960,9 +6972,11 @@ module Google
|
|
6960
6972
|
def update!(**args)
|
6961
6973
|
@ad_group_ad_ids = args[:ad_group_ad_ids] if args.key?(:ad_group_ad_ids)
|
6962
6974
|
@ad_group_ids = args[:ad_group_ids] if args.key?(:ad_group_ids)
|
6975
|
+
@ad_group_qa_ids = args[:ad_group_qa_ids] if args.key?(:ad_group_qa_ids)
|
6963
6976
|
@campaign_ids = args[:campaign_ids] if args.key?(:campaign_ids)
|
6964
6977
|
@insertion_order_ids = args[:insertion_order_ids] if args.key?(:insertion_order_ids)
|
6965
6978
|
@line_item_ids = args[:line_item_ids] if args.key?(:line_item_ids)
|
6979
|
+
@line_item_qa_ids = args[:line_item_qa_ids] if args.key?(:line_item_qa_ids)
|
6966
6980
|
@media_product_ids = args[:media_product_ids] if args.key?(:media_product_ids)
|
6967
6981
|
end
|
6968
6982
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DisplayvideoV3
|
18
18
|
# Version of the google-apis-displayvideo_v3 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.16.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240627"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -3906,9 +3906,11 @@ module Google
|
|
3906
3906
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3907
3907
|
collection :ad_group_ad_ids, as: 'adGroupAdIds'
|
3908
3908
|
collection :ad_group_ids, as: 'adGroupIds'
|
3909
|
+
collection :ad_group_qa_ids, as: 'adGroupQaIds'
|
3909
3910
|
collection :campaign_ids, as: 'campaignIds'
|
3910
3911
|
collection :insertion_order_ids, as: 'insertionOrderIds'
|
3911
3912
|
collection :line_item_ids, as: 'lineItemIds'
|
3913
|
+
collection :line_item_qa_ids, as: 'lineItemQaIds'
|
3912
3914
|
collection :media_product_ids, as: 'mediaProductIds'
|
3913
3915
|
end
|
3914
3916
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-displayvideo_v3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.16.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: 2024-06-
|
11
|
+
date: 2024-06-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-displayvideo_v3/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-displayvideo_v3/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-displayvideo_v3/v0.16.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-displayvideo_v3
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|