google-apis-doubleclickbidmanager_v1_1 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: f6d7ab804ccb1dd37fdb776bd7dc21fecd82647054a4ed726d443468e5eca828
4
- data.tar.gz: '00778591cb673e6cd511e2043a8b770fc5775c46ec0d8606946df8e1f61124de'
3
+ metadata.gz: a9aeeaa2f5bbfdad9f137e6025662b5c6d497bf50ecfb243b86551898966c5ff
4
+ data.tar.gz: 930ef36ec169380cd08d49e59c53e262cb426f1eb73548ebfb469293e466b724
5
5
  SHA512:
6
- metadata.gz: 874bb656a951db8ccc49d99939d01a87cdc411ad9c4d7e61ca342627290ef7e1c876efebbea82e0c9cf9a64295f5562dc62f55b0497a4b409a84fba472a276eb
7
- data.tar.gz: 8e54794149824ab85a468e4d896812b179cfb03bbde5aea24638567d353b5baaa25182662dfae9a7eea309f361ec480397728863c278b5891d0a280468a83107
6
+ metadata.gz: 162bbff7a7e16901e21d5aa9cf566b184a2674a8c59cbbcc66255b2c7a197c9cfe2c75e98d8a0748a44bceffff2950cea54004362394d04d468b4ff2d48e37f8
7
+ data.tar.gz: 87c9974641237f98d92d43c4dec6f91f89f1aec6694a034fd1527c9be1193294e05c3f5d8a861dae92d970121cac219074348a8fd4df512bc3e8bcc642769256
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-doubleclickbidmanager_v1_1
2
2
 
3
+ ### v0.3.0 (2021-04-29)
4
+
5
+ * Regenerated from discovery document revision 20210420
6
+ * Regenerated using generator version 0.2.0
7
+
3
8
  ### v0.2.0 (2021-03-04)
4
9
 
5
10
  * Regenerated from discovery document revision 20210209
@@ -76,157 +76,6 @@ module Google
76
76
  end
77
77
  end
78
78
 
79
- # Request to fetch stored line items.
80
- class DownloadLineItemsRequest
81
- include Google::Apis::Core::Hashable
82
-
83
- # File specification (column names, types, order) in which the line items will
84
- # be returned. Default to EWF.
85
- # Corresponds to the JSON property `fileSpec`
86
- # @return [String]
87
- attr_accessor :file_spec
88
-
89
- # Ids of the specified filter type used to filter line items to fetch. If
90
- # omitted, all the line items will be returned.
91
- # Corresponds to the JSON property `filterIds`
92
- # @return [Array<Fixnum>]
93
- attr_accessor :filter_ids
94
-
95
- # Filter type used to filter line items to fetch.
96
- # Corresponds to the JSON property `filterType`
97
- # @return [String]
98
- attr_accessor :filter_type
99
-
100
- # Format in which the line items will be returned. Default to CSV.
101
- # Corresponds to the JSON property `format`
102
- # @return [String]
103
- attr_accessor :format
104
-
105
- def initialize(**args)
106
- update!(**args)
107
- end
108
-
109
- # Update properties of this object
110
- def update!(**args)
111
- @file_spec = args[:file_spec] if args.key?(:file_spec)
112
- @filter_ids = args[:filter_ids] if args.key?(:filter_ids)
113
- @filter_type = args[:filter_type] if args.key?(:filter_type)
114
- @format = args[:format] if args.key?(:format)
115
- end
116
- end
117
-
118
- # Download line items response.
119
- class DownloadLineItemsResponse
120
- include Google::Apis::Core::Hashable
121
-
122
- # Retrieved line items in CSV format. For more information about file formats,
123
- # see Entity Write File Format.
124
- # Corresponds to the JSON property `lineItems`
125
- # @return [String]
126
- attr_accessor :line_items
127
-
128
- def initialize(**args)
129
- update!(**args)
130
- end
131
-
132
- # Update properties of this object
133
- def update!(**args)
134
- @line_items = args[:line_items] if args.key?(:line_items)
135
- end
136
- end
137
-
138
- # Request to fetch stored inventory sources, campaigns, insertion orders, line
139
- # items, YouTube ad groups and ads.
140
- class DownloadRequest
141
- include Google::Apis::Core::Hashable
142
-
143
- # File types that will be returned. If INVENTORY_SOURCE is requested, no other
144
- # file types may be requested. Acceptable values are: - "AD" - "AD_GROUP" - "
145
- # CAMPAIGN" - "INSERTION_ORDER" - "INVENTORY_SOURCE" - "LINE_ITEM"
146
- # Corresponds to the JSON property `fileTypes`
147
- # @return [Array<String>]
148
- attr_accessor :file_types
149
-
150
- # The IDs of the specified filter type. This is used to filter entities to fetch.
151
- # At least one ID must be specified.
152
- # Corresponds to the JSON property `filterIds`
153
- # @return [Array<Fixnum>]
154
- attr_accessor :filter_ids
155
-
156
- # Filter type used to filter entities to fetch. PARTNER_ID and
157
- # INVENTORY_SOURCE_ID may only be used when downloading inventory sources.
158
- # Corresponds to the JSON property `filterType`
159
- # @return [String]
160
- attr_accessor :filter_type
161
-
162
- # SDF Version (column names, types, order) in which the entities will be
163
- # returned. Default to 5.
164
- # Corresponds to the JSON property `version`
165
- # @return [String]
166
- attr_accessor :version
167
-
168
- def initialize(**args)
169
- update!(**args)
170
- end
171
-
172
- # Update properties of this object
173
- def update!(**args)
174
- @file_types = args[:file_types] if args.key?(:file_types)
175
- @filter_ids = args[:filter_ids] if args.key?(:filter_ids)
176
- @filter_type = args[:filter_type] if args.key?(:filter_type)
177
- @version = args[:version] if args.key?(:version)
178
- end
179
- end
180
-
181
- # Download response.
182
- class DownloadResponse
183
- include Google::Apis::Core::Hashable
184
-
185
- # Retrieved ad groups in SDF format.
186
- # Corresponds to the JSON property `adGroups`
187
- # @return [String]
188
- attr_accessor :ad_groups
189
-
190
- # Retrieved ads in SDF format.
191
- # Corresponds to the JSON property `ads`
192
- # @return [String]
193
- attr_accessor :ads
194
-
195
- # Retrieved campaigns in SDF format.
196
- # Corresponds to the JSON property `campaigns`
197
- # @return [String]
198
- attr_accessor :campaigns
199
-
200
- # Retrieved insertion orders in SDF format.
201
- # Corresponds to the JSON property `insertionOrders`
202
- # @return [String]
203
- attr_accessor :insertion_orders
204
-
205
- #
206
- # Corresponds to the JSON property `inventorySources`
207
- # @return [String]
208
- attr_accessor :inventory_sources
209
-
210
- # Retrieved line items in SDF format.
211
- # Corresponds to the JSON property `lineItems`
212
- # @return [String]
213
- attr_accessor :line_items
214
-
215
- def initialize(**args)
216
- update!(**args)
217
- end
218
-
219
- # Update properties of this object
220
- def update!(**args)
221
- @ad_groups = args[:ad_groups] if args.key?(:ad_groups)
222
- @ads = args[:ads] if args.key?(:ads)
223
- @campaigns = args[:campaigns] if args.key?(:campaigns)
224
- @insertion_orders = args[:insertion_orders] if args.key?(:insertion_orders)
225
- @inventory_sources = args[:inventory_sources] if args.key?(:inventory_sources)
226
- @line_items = args[:line_items] if args.key?(:line_items)
227
- end
228
- end
229
-
230
79
  # Defines the type of filter to be applied to the path, a DV360 event dimension
231
80
  # filter.
232
81
  class EventFilter
@@ -848,57 +697,6 @@ module Google
848
697
  end
849
698
  end
850
699
 
851
- # Represents the upload status of a row in the request.
852
- class RowStatus
853
- include Google::Apis::Core::Hashable
854
-
855
- # Whether the stored entity is changed as a result of upload.
856
- # Corresponds to the JSON property `changed`
857
- # @return [Boolean]
858
- attr_accessor :changed
859
- alias_method :changed?, :changed
860
-
861
- # Entity Id.
862
- # Corresponds to the JSON property `entityId`
863
- # @return [Fixnum]
864
- attr_accessor :entity_id
865
-
866
- # Entity name.
867
- # Corresponds to the JSON property `entityName`
868
- # @return [String]
869
- attr_accessor :entity_name
870
-
871
- # Reasons why the entity can't be uploaded.
872
- # Corresponds to the JSON property `errors`
873
- # @return [Array<String>]
874
- attr_accessor :errors
875
-
876
- # Whether the entity is persisted.
877
- # Corresponds to the JSON property `persisted`
878
- # @return [Boolean]
879
- attr_accessor :persisted
880
- alias_method :persisted?, :persisted
881
-
882
- # Row number.
883
- # Corresponds to the JSON property `rowNumber`
884
- # @return [Fixnum]
885
- attr_accessor :row_number
886
-
887
- def initialize(**args)
888
- update!(**args)
889
- end
890
-
891
- # Update properties of this object
892
- def update!(**args)
893
- @changed = args[:changed] if args.key?(:changed)
894
- @entity_id = args[:entity_id] if args.key?(:entity_id)
895
- @entity_name = args[:entity_name] if args.key?(:entity_name)
896
- @errors = args[:errors] if args.key?(:errors)
897
- @persisted = args[:persisted] if args.key?(:persisted)
898
- @row_number = args[:row_number] if args.key?(:row_number)
899
- end
900
- end
901
-
902
700
  # A Rule defines a name, and a boolean expression in [conjunctive normal form](
903
701
  # http: //mathworld.wolfram.com/ConjunctiveNormalForm.html)`.external` that can
904
702
  # be // applied to a path event to determine if that name should be applied.
@@ -966,83 +764,6 @@ module Google
966
764
  @timezone_code = args[:timezone_code] if args.key?(:timezone_code)
967
765
  end
968
766
  end
969
-
970
- # Request to upload line items.
971
- class UploadLineItemsRequest
972
- include Google::Apis::Core::Hashable
973
-
974
- # Set to true to get upload status without actually persisting the line items.
975
- # Corresponds to the JSON property `dryRun`
976
- # @return [Boolean]
977
- attr_accessor :dry_run
978
- alias_method :dry_run?, :dry_run
979
-
980
- # Format the line items are in. Default to CSV.
981
- # Corresponds to the JSON property `format`
982
- # @return [String]
983
- attr_accessor :format
984
-
985
- # Line items in CSV to upload. Refer to Entity Write File Format for more
986
- # information on file format.
987
- # Corresponds to the JSON property `lineItems`
988
- # @return [String]
989
- attr_accessor :line_items
990
-
991
- def initialize(**args)
992
- update!(**args)
993
- end
994
-
995
- # Update properties of this object
996
- def update!(**args)
997
- @dry_run = args[:dry_run] if args.key?(:dry_run)
998
- @format = args[:format] if args.key?(:format)
999
- @line_items = args[:line_items] if args.key?(:line_items)
1000
- end
1001
- end
1002
-
1003
- # Upload line items response.
1004
- class UploadLineItemsResponse
1005
- include Google::Apis::Core::Hashable
1006
-
1007
- # Represents the status of upload.
1008
- # Corresponds to the JSON property `uploadStatus`
1009
- # @return [Google::Apis::DoubleclickbidmanagerV1_1::UploadStatus]
1010
- attr_accessor :upload_status
1011
-
1012
- def initialize(**args)
1013
- update!(**args)
1014
- end
1015
-
1016
- # Update properties of this object
1017
- def update!(**args)
1018
- @upload_status = args[:upload_status] if args.key?(:upload_status)
1019
- end
1020
- end
1021
-
1022
- # Represents the status of upload.
1023
- class UploadStatus
1024
- include Google::Apis::Core::Hashable
1025
-
1026
- # Reasons why upload can't be completed.
1027
- # Corresponds to the JSON property `errors`
1028
- # @return [Array<String>]
1029
- attr_accessor :errors
1030
-
1031
- # Per-row upload status.
1032
- # Corresponds to the JSON property `rowStatus`
1033
- # @return [Array<Google::Apis::DoubleclickbidmanagerV1_1::RowStatus>]
1034
- attr_accessor :row_status
1035
-
1036
- def initialize(**args)
1037
- update!(**args)
1038
- end
1039
-
1040
- # Update properties of this object
1041
- def update!(**args)
1042
- @errors = args[:errors] if args.key?(:errors)
1043
- @row_status = args[:row_status] if args.key?(:row_status)
1044
- end
1045
- end
1046
767
  end
1047
768
  end
1048
769
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DoubleclickbidmanagerV1_1
18
18
  # Version of the google-apis-doubleclickbidmanager_v1_1 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 = "20210209"
25
+ REVISION = "20210420"
26
26
  end
27
27
  end
28
28
  end
@@ -34,30 +34,6 @@ module Google
34
34
  include Google::Apis::Core::JsonObjectSupport
35
35
  end
36
36
 
37
- class DownloadLineItemsRequest
38
- class Representation < Google::Apis::Core::JsonRepresentation; end
39
-
40
- include Google::Apis::Core::JsonObjectSupport
41
- end
42
-
43
- class DownloadLineItemsResponse
44
- class Representation < Google::Apis::Core::JsonRepresentation; end
45
-
46
- include Google::Apis::Core::JsonObjectSupport
47
- end
48
-
49
- class DownloadRequest
50
- class Representation < Google::Apis::Core::JsonRepresentation; end
51
-
52
- include Google::Apis::Core::JsonObjectSupport
53
- end
54
-
55
- class DownloadResponse
56
- class Representation < Google::Apis::Core::JsonRepresentation; end
57
-
58
- include Google::Apis::Core::JsonObjectSupport
59
- end
60
-
61
37
  class EventFilter
62
38
  class Representation < Google::Apis::Core::JsonRepresentation; end
63
39
 
@@ -160,12 +136,6 @@ module Google
160
136
  include Google::Apis::Core::JsonObjectSupport
161
137
  end
162
138
 
163
- class RowStatus
164
- class Representation < Google::Apis::Core::JsonRepresentation; end
165
-
166
- include Google::Apis::Core::JsonObjectSupport
167
- end
168
-
169
139
  class Rule
170
140
  class Representation < Google::Apis::Core::JsonRepresentation; end
171
141
 
@@ -178,24 +148,6 @@ module Google
178
148
  include Google::Apis::Core::JsonObjectSupport
179
149
  end
180
150
 
181
- class UploadLineItemsRequest
182
- class Representation < Google::Apis::Core::JsonRepresentation; end
183
-
184
- include Google::Apis::Core::JsonObjectSupport
185
- end
186
-
187
- class UploadLineItemsResponse
188
- class Representation < Google::Apis::Core::JsonRepresentation; end
189
-
190
- include Google::Apis::Core::JsonObjectSupport
191
- end
192
-
193
- class UploadStatus
194
- class Representation < Google::Apis::Core::JsonRepresentation; end
195
-
196
- include Google::Apis::Core::JsonObjectSupport
197
- end
198
-
199
151
  class ChannelGrouping
200
152
  # @private
201
153
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -214,45 +166,6 @@ module Google
214
166
  end
215
167
  end
216
168
 
217
- class DownloadLineItemsRequest
218
- # @private
219
- class Representation < Google::Apis::Core::JsonRepresentation
220
- property :file_spec, as: 'fileSpec'
221
- collection :filter_ids, as: 'filterIds'
222
- property :filter_type, as: 'filterType'
223
- property :format, as: 'format'
224
- end
225
- end
226
-
227
- class DownloadLineItemsResponse
228
- # @private
229
- class Representation < Google::Apis::Core::JsonRepresentation
230
- property :line_items, as: 'lineItems'
231
- end
232
- end
233
-
234
- class DownloadRequest
235
- # @private
236
- class Representation < Google::Apis::Core::JsonRepresentation
237
- collection :file_types, as: 'fileTypes'
238
- collection :filter_ids, as: 'filterIds'
239
- property :filter_type, as: 'filterType'
240
- property :version, as: 'version'
241
- end
242
- end
243
-
244
- class DownloadResponse
245
- # @private
246
- class Representation < Google::Apis::Core::JsonRepresentation
247
- property :ad_groups, as: 'adGroups'
248
- property :ads, as: 'ads'
249
- property :campaigns, as: 'campaigns'
250
- property :insertion_orders, as: 'insertionOrders'
251
- property :inventory_sources, as: 'inventorySources'
252
- property :line_items, as: 'lineItems'
253
- end
254
- end
255
-
256
169
  class EventFilter
257
170
  # @private
258
171
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -434,18 +347,6 @@ module Google
434
347
  end
435
348
  end
436
349
 
437
- class RowStatus
438
- # @private
439
- class Representation < Google::Apis::Core::JsonRepresentation
440
- property :changed, as: 'changed'
441
- property :entity_id, :numeric_string => true, as: 'entityId'
442
- property :entity_name, as: 'entityName'
443
- collection :errors, as: 'errors'
444
- property :persisted, as: 'persisted'
445
- property :row_number, as: 'rowNumber'
446
- end
447
- end
448
-
449
350
  class Rule
450
351
  # @private
451
352
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -464,32 +365,6 @@ module Google
464
365
  property :timezone_code, as: 'timezoneCode'
465
366
  end
466
367
  end
467
-
468
- class UploadLineItemsRequest
469
- # @private
470
- class Representation < Google::Apis::Core::JsonRepresentation
471
- property :dry_run, as: 'dryRun'
472
- property :format, as: 'format'
473
- property :line_items, as: 'lineItems'
474
- end
475
- end
476
-
477
- class UploadLineItemsResponse
478
- # @private
479
- class Representation < Google::Apis::Core::JsonRepresentation
480
- property :upload_status, as: 'uploadStatus', class: Google::Apis::DoubleclickbidmanagerV1_1::UploadStatus, decorator: Google::Apis::DoubleclickbidmanagerV1_1::UploadStatus::Representation
481
-
482
- end
483
- end
484
-
485
- class UploadStatus
486
- # @private
487
- class Representation < Google::Apis::Core::JsonRepresentation
488
- collection :errors, as: 'errors'
489
- collection :row_status, as: 'rowStatus', class: Google::Apis::DoubleclickbidmanagerV1_1::RowStatus, decorator: Google::Apis::DoubleclickbidmanagerV1_1::RowStatus::Representation
490
-
491
- end
492
- end
493
368
  end
494
369
  end
495
370
  end
@@ -50,68 +50,6 @@ module Google
50
50
  @batch_path = 'batch'
51
51
  end
52
52
 
53
- # Retrieves line items in CSV format. YouTube & partners line items are not
54
- # supported.
55
- # @param [Google::Apis::DoubleclickbidmanagerV1_1::DownloadLineItemsRequest] download_line_items_request_object
56
- # @param [String] fields
57
- # Selector specifying which fields to include in a partial response.
58
- # @param [String] quota_user
59
- # Available to use for quota purposes for server-side applications. Can be any
60
- # arbitrary string assigned to a user, but should not exceed 40 characters.
61
- # @param [Google::Apis::RequestOptions] options
62
- # Request-specific options
63
- #
64
- # @yield [result, err] Result & error if block supplied
65
- # @yieldparam result [Google::Apis::DoubleclickbidmanagerV1_1::DownloadLineItemsResponse] parsed result object
66
- # @yieldparam err [StandardError] error object if request failed
67
- #
68
- # @return [Google::Apis::DoubleclickbidmanagerV1_1::DownloadLineItemsResponse]
69
- #
70
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
71
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
72
- # @raise [Google::Apis::AuthorizationError] Authorization is required
73
- def downloadlineitems_lineitem(download_line_items_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
74
- command = make_simple_command(:post, 'lineitems/downloadlineitems', options)
75
- command.request_representation = Google::Apis::DoubleclickbidmanagerV1_1::DownloadLineItemsRequest::Representation
76
- command.request_object = download_line_items_request_object
77
- command.response_representation = Google::Apis::DoubleclickbidmanagerV1_1::DownloadLineItemsResponse::Representation
78
- command.response_class = Google::Apis::DoubleclickbidmanagerV1_1::DownloadLineItemsResponse
79
- command.query['fields'] = fields unless fields.nil?
80
- command.query['quotaUser'] = quota_user unless quota_user.nil?
81
- execute_or_queue_command(command, &block)
82
- end
83
-
84
- # Uploads line items in CSV format. YouTube & partners line items are not
85
- # supported.
86
- # @param [Google::Apis::DoubleclickbidmanagerV1_1::UploadLineItemsRequest] upload_line_items_request_object
87
- # @param [String] fields
88
- # Selector specifying which fields to include in a partial response.
89
- # @param [String] quota_user
90
- # Available to use for quota purposes for server-side applications. Can be any
91
- # arbitrary string assigned to a user, but should not exceed 40 characters.
92
- # @param [Google::Apis::RequestOptions] options
93
- # Request-specific options
94
- #
95
- # @yield [result, err] Result & error if block supplied
96
- # @yieldparam result [Google::Apis::DoubleclickbidmanagerV1_1::UploadLineItemsResponse] parsed result object
97
- # @yieldparam err [StandardError] error object if request failed
98
- #
99
- # @return [Google::Apis::DoubleclickbidmanagerV1_1::UploadLineItemsResponse]
100
- #
101
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
102
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
103
- # @raise [Google::Apis::AuthorizationError] Authorization is required
104
- def uploadlineitems_lineitem(upload_line_items_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
105
- command = make_simple_command(:post, 'lineitems/uploadlineitems', options)
106
- command.request_representation = Google::Apis::DoubleclickbidmanagerV1_1::UploadLineItemsRequest::Representation
107
- command.request_object = upload_line_items_request_object
108
- command.response_representation = Google::Apis::DoubleclickbidmanagerV1_1::UploadLineItemsResponse::Representation
109
- command.response_class = Google::Apis::DoubleclickbidmanagerV1_1::UploadLineItemsResponse
110
- command.query['fields'] = fields unless fields.nil?
111
- command.query['quotaUser'] = quota_user unless quota_user.nil?
112
- execute_or_queue_command(command, &block)
113
- end
114
-
115
53
  # Creates a query.
116
54
  # @param [Google::Apis::DoubleclickbidmanagerV1_1::Query] query_object
117
55
  # @param [Boolean] asynchronous
@@ -308,36 +246,6 @@ module Google
308
246
  command.query['quotaUser'] = quota_user unless quota_user.nil?
309
247
  execute_or_queue_command(command, &block)
310
248
  end
311
-
312
- # Retrieves entities in SDF format.
313
- # @param [Google::Apis::DoubleclickbidmanagerV1_1::DownloadRequest] download_request_object
314
- # @param [String] fields
315
- # Selector specifying which fields to include in a partial response.
316
- # @param [String] quota_user
317
- # Available to use for quota purposes for server-side applications. Can be any
318
- # arbitrary string assigned to a user, but should not exceed 40 characters.
319
- # @param [Google::Apis::RequestOptions] options
320
- # Request-specific options
321
- #
322
- # @yield [result, err] Result & error if block supplied
323
- # @yieldparam result [Google::Apis::DoubleclickbidmanagerV1_1::DownloadResponse] parsed result object
324
- # @yieldparam err [StandardError] error object if request failed
325
- #
326
- # @return [Google::Apis::DoubleclickbidmanagerV1_1::DownloadResponse]
327
- #
328
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
329
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
330
- # @raise [Google::Apis::AuthorizationError] Authorization is required
331
- def download_sdf(download_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
332
- command = make_simple_command(:post, 'sdf/download', options)
333
- command.request_representation = Google::Apis::DoubleclickbidmanagerV1_1::DownloadRequest::Representation
334
- command.request_object = download_request_object
335
- command.response_representation = Google::Apis::DoubleclickbidmanagerV1_1::DownloadResponse::Representation
336
- command.response_class = Google::Apis::DoubleclickbidmanagerV1_1::DownloadResponse
337
- command.query['fields'] = fields unless fields.nil?
338
- command.query['quotaUser'] = quota_user unless quota_user.nil?
339
- execute_or_queue_command(command, &block)
340
- end
341
249
 
342
250
  protected
343
251
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-doubleclickbidmanager_v1_1
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-doubleclickbidmanager_v1_1/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-doubleclickbidmanager_v1_1/v0.2.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-doubleclickbidmanager_v1_1/v0.3.0
56
56
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-doubleclickbidmanager_v1_1
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 DoubleClick Bid Manager API V1_1