google-apis-displayvideo_v2 0.5.0 → 0.6.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: 274bb14deb3e276c1b9499681b9957d59bddc192e651a7f1cfe6da3164593f28
4
- data.tar.gz: 7c061728be9269718da76c160a07ba6700f54f95e0ef8b2c66f29a0a5ccd38d9
3
+ metadata.gz: 5f1aea562648b150274f6ef9f382809fdf55d06eac57b20eacc50aaf8b059a70
4
+ data.tar.gz: 5cf2beabeb517b51819b0515f9c4fe3f35ea217b775ee2c05d908a9bc6807517
5
5
  SHA512:
6
- metadata.gz: e078d3f9b11d04844f681aa02b3da6b50a9c04f3c0aa9d409bad4eea471f5b8d344567ccc1d9d5b39f0ac7f6170f20e16ea8217ca9b0ca911f088c7e7b9ce99b
7
- data.tar.gz: 37f1b2f8297fd0e13cc920683e9b86a6e8906eadeb275eb1698b1bbff1b18b30cef6f3c415219a7fdf68a3c47d3a4bdc8784d877c0e0487e90cd048d34a62790
6
+ metadata.gz: 54b80dfb84c5822d67b26965a74fe19dcac631b61e718653b12b4580a9b62df36551f683aab4eb6789808bd8cb6ceaa4485cc51c2c3914dd23666a115aa33cb9
7
+ data.tar.gz: 3c1362ed53df5ce58db4af011d1cf8189aefe4e0320de79fe0e1b513a18a2fe104720f214d8c4fe4cc151e5bd485f717416376080d62a74656db622221122cbd
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-displayvideo_v2
2
2
 
3
+ ### v0.6.0 (2022-11-13)
4
+
5
+ * Regenerated from discovery document revision 20221110
6
+
3
7
  ### v0.5.0 (2022-11-01)
4
8
 
5
9
  * Regenerated from discovery document revision 20221027
@@ -119,6 +119,11 @@ module Google
119
119
  # @return [Fixnum]
120
120
  attr_accessor :advertiser_id
121
121
 
122
+ # Billing related settings of an advertiser.
123
+ # Corresponds to the JSON property `billingConfig`
124
+ # @return [Google::Apis::DisplayvideoV2::AdvertiserBillingConfig]
125
+ attr_accessor :billing_config
126
+
122
127
  # Creatives related settings of an advertiser.
123
128
  # Corresponds to the JSON property `creativeConfig`
124
129
  # @return [Google::Apis::DisplayvideoV2::AdvertiserCreativeConfig]
@@ -195,6 +200,7 @@ module Google
195
200
  def update!(**args)
196
201
  @ad_server_config = args[:ad_server_config] if args.key?(:ad_server_config)
197
202
  @advertiser_id = args[:advertiser_id] if args.key?(:advertiser_id)
203
+ @billing_config = args[:billing_config] if args.key?(:billing_config)
198
204
  @creative_config = args[:creative_config] if args.key?(:creative_config)
199
205
  @data_access_config = args[:data_access_config] if args.key?(:data_access_config)
200
206
  @display_name = args[:display_name] if args.key?(:display_name)
@@ -235,6 +241,25 @@ module Google
235
241
  end
236
242
  end
237
243
 
244
+ # Billing related settings of an advertiser.
245
+ class AdvertiserBillingConfig
246
+ include Google::Apis::Core::Hashable
247
+
248
+ # The ID of a billing profile assigned to the advertiser.
249
+ # Corresponds to the JSON property `billingProfileId`
250
+ # @return [Fixnum]
251
+ attr_accessor :billing_profile_id
252
+
253
+ def initialize(**args)
254
+ update!(**args)
255
+ end
256
+
257
+ # Update properties of this object
258
+ def update!(**args)
259
+ @billing_profile_id = args[:billing_profile_id] if args.key?(:billing_profile_id)
260
+ end
261
+ end
262
+
238
263
  # Creatives related settings of an advertiser.
239
264
  class AdvertiserCreativeConfig
240
265
  include Google::Apis::Core::Hashable
@@ -4618,8 +4643,8 @@ module Google
4618
4643
  class DuplicateLineItemRequest
4619
4644
  include Google::Apis::Core::Hashable
4620
4645
 
4621
- # The display name of the resulting line item. Must be UTF-8 encoded with a
4622
- # maximum size of 240 bytes.
4646
+ # The display name of the new line item. Must be UTF-8 encoded with a maximum
4647
+ # size of 240 bytes.
4623
4648
  # Corresponds to the JSON property `targetDisplayName`
4624
4649
  # @return [String]
4625
4650
  attr_accessor :target_display_name
@@ -4634,11 +4659,11 @@ module Google
4634
4659
  end
4635
4660
  end
4636
4661
 
4637
- # Response message for LineItemService.DuplicateLineItem.
4662
+ #
4638
4663
  class DuplicateLineItemResponse
4639
4664
  include Google::Apis::Core::Hashable
4640
4665
 
4641
- # The ID of the successfully created line item.
4666
+ # The ID of the created line item.
4642
4667
  # Corresponds to the JSON property `duplicateLineItemId`
4643
4668
  # @return [Fixnum]
4644
4669
  attr_accessor :duplicate_line_item_id
@@ -6119,7 +6144,7 @@ module Google
6119
6144
 
6120
6145
  # The budget segment description. It can be used to enter Purchase Order
6121
6146
  # information for each budget segment and have that information printed on the
6122
- # invoices. Must be UTF-8 encoded with a length of no more than 80 characters.
6147
+ # invoices. Must be UTF-8 encoded.
6123
6148
  # Corresponds to the JSON property `description`
6124
6149
  # @return [String]
6125
6150
  attr_accessor :description
@@ -7051,7 +7076,10 @@ module Google
7051
7076
 
7052
7077
  # Settings that control the targeting expansion of the line item. Targeting
7053
7078
  # expansion allows the line item to reach a larger audience based on the
7054
- # original audience list and the targeting expansion level.
7079
+ # original audience list and the targeting expansion level. Beginning November 7,
7080
+ # 2022, these settings may represent the [optimized targeting feature](//
7081
+ # support.google.com/displayvideo/answer/12060859) in place of targeting
7082
+ # expansion. This feature will be rolled out to all partners by November 9, 2022.
7055
7083
  # Corresponds to the JSON property `targetingExpansion`
7056
7084
  # @return [Google::Apis::DisplayvideoV2::TargetingExpansionConfig]
7057
7085
  attr_accessor :targeting_expansion
@@ -9853,7 +9881,7 @@ module Google
9853
9881
  # @return [Google::Apis::DisplayvideoV2::GeoRegionSearchTerms]
9854
9882
  attr_accessor :geo_region_search_terms
9855
9883
 
9856
- # Requested page size. Must be between `1` and `100`. If unspecified will
9884
+ # Requested page size. Must be between `1` and `200`. If unspecified will
9857
9885
  # default to `100`. Returns error code `INVALID_ARGUMENT` if an invalid value is
9858
9886
  # specified.
9859
9887
  # Corresponds to the JSON property `pageSize`
@@ -10069,20 +10097,33 @@ module Google
10069
10097
 
10070
10098
  # Settings that control the targeting expansion of the line item. Targeting
10071
10099
  # expansion allows the line item to reach a larger audience based on the
10072
- # original audience list and the targeting expansion level.
10100
+ # original audience list and the targeting expansion level. Beginning November 7,
10101
+ # 2022, these settings may represent the [optimized targeting feature](//
10102
+ # support.google.com/displayvideo/answer/12060859) in place of targeting
10103
+ # expansion. This feature will be rolled out to all partners by November 9, 2022.
10073
10104
  class TargetingExpansionConfig
10074
10105
  include Google::Apis::Core::Hashable
10075
10106
 
10076
- # Required. Whether to exclude first party audiences from targeting. Similar
10077
- # audiences of the excluded first party lists will not be excluded. Only
10078
- # applicable when a first-party audience is positively targeted (directly or
10079
- # included in a combined audience), otherwise this selection will be ignored.
10107
+ # Required. Whether to exclude first-party audiences from use in targeting
10108
+ # expansion or optimized targeting. Similar audiences of the excluded first-
10109
+ # party lists will not be excluded. Only applicable when a first-party audience
10110
+ # is positively targeted (directly or included in a combined audience),
10111
+ # otherwise this selection will be ignored.
10080
10112
  # Corresponds to the JSON property `excludeFirstPartyAudience`
10081
10113
  # @return [Boolean]
10082
10114
  attr_accessor :exclude_first_party_audience
10083
10115
  alias_method :exclude_first_party_audience?, :exclude_first_party_audience
10084
10116
 
10085
10117
  # Required. Magnitude of expansion for applicable targeting under this line item.
10118
+ # Beginning November 7, 2022, the behavior of this field will change in the
10119
+ # following ways with the replacement of targeting expansion with [optimized
10120
+ # targeting](//support.google.com/displayvideo/answer/12060859): * This field
10121
+ # will represent the optimized targeting checkbox, with a `NO_EXPANSION` value
10122
+ # representing optimized targeting turned off and a `LEAST_EXPANSION` value
10123
+ # representing optimized targeting turned on. * `NO_EXPANSION` will be the
10124
+ # default value for the field and will be automatically assigned if you do not
10125
+ # set the field. * If you set the field to any value other than `NO_EXPANSION`,
10126
+ # it will automatically be set to `LEAST_EXPANSION`.
10086
10127
  # Corresponds to the JSON property `targetingExpansionLevel`
10087
10128
  # @return [String]
10088
10129
  attr_accessor :targeting_expansion_level
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DisplayvideoV2
18
18
  # Version of the google-apis-displayvideo_v2 gem
19
- GEM_VERSION = "0.5.0"
19
+ GEM_VERSION = "0.6.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.11.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20221027"
25
+ REVISION = "20221110"
26
26
  end
27
27
  end
28
28
  end
@@ -52,6 +52,12 @@ module Google
52
52
  include Google::Apis::Core::JsonObjectSupport
53
53
  end
54
54
 
55
+ class AdvertiserBillingConfig
56
+ class Representation < Google::Apis::Core::JsonRepresentation; end
57
+
58
+ include Google::Apis::Core::JsonObjectSupport
59
+ end
60
+
55
61
  class AdvertiserCreativeConfig
56
62
  class Representation < Google::Apis::Core::JsonRepresentation; end
57
63
 
@@ -1810,6 +1816,8 @@ module Google
1810
1816
  property :ad_server_config, as: 'adServerConfig', class: Google::Apis::DisplayvideoV2::AdvertiserAdServerConfig, decorator: Google::Apis::DisplayvideoV2::AdvertiserAdServerConfig::Representation
1811
1817
 
1812
1818
  property :advertiser_id, :numeric_string => true, as: 'advertiserId'
1819
+ property :billing_config, as: 'billingConfig', class: Google::Apis::DisplayvideoV2::AdvertiserBillingConfig, decorator: Google::Apis::DisplayvideoV2::AdvertiserBillingConfig::Representation
1820
+
1813
1821
  property :creative_config, as: 'creativeConfig', class: Google::Apis::DisplayvideoV2::AdvertiserCreativeConfig, decorator: Google::Apis::DisplayvideoV2::AdvertiserCreativeConfig::Representation
1814
1822
 
1815
1823
  property :data_access_config, as: 'dataAccessConfig', class: Google::Apis::DisplayvideoV2::AdvertiserDataAccessConfig, decorator: Google::Apis::DisplayvideoV2::AdvertiserDataAccessConfig::Representation
@@ -1839,6 +1847,13 @@ module Google
1839
1847
  end
1840
1848
  end
1841
1849
 
1850
+ class AdvertiserBillingConfig
1851
+ # @private
1852
+ class Representation < Google::Apis::Core::JsonRepresentation
1853
+ property :billing_profile_id, :numeric_string => true, as: 'billingProfileId'
1854
+ end
1855
+ end
1856
+
1842
1857
  class AdvertiserCreativeConfig
1843
1858
  # @private
1844
1859
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -244,7 +244,7 @@ module Google
244
244
  # ascending. To specify descending order for a field, a suffix "desc" should be
245
245
  # added to the field name. For example, `displayName desc`.
246
246
  # @param [Fixnum] page_size
247
- # Requested page size. Must be between `1` and `100`. If unspecified will
247
+ # Requested page size. Must be between `1` and `200`. If unspecified will
248
248
  # default to `100`.
249
249
  # @param [String] page_token
250
250
  # A token identifying a page of results the server should return. Typically,
@@ -553,7 +553,7 @@ module Google
553
553
  # ascending. To specify descending order for a field, a suffix "desc" should be
554
554
  # added to the field name. Example: `displayName desc`.
555
555
  # @param [Fixnum] page_size
556
- # Requested page size. Must be between `1` and `100`. If unspecified will
556
+ # Requested page size. Must be between `1` and `200`. If unspecified will
557
557
  # default to `100`.
558
558
  # @param [String] page_token
559
559
  # A token identifying a page of results the server should return. Typically,
@@ -911,7 +911,7 @@ module Google
911
911
  # descending order for a field, a suffix " desc" should be added to the field
912
912
  # name. Example: `displayName desc`.
913
913
  # @param [Fixnum] page_size
914
- # Requested page size. Must be between `1` and `100`. If unspecified will
914
+ # Requested page size. Must be between `1` and `200`. If unspecified will
915
915
  # default to `100`. Returns error code `INVALID_ARGUMENT` if an invalid value is
916
916
  # specified.
917
917
  # @param [String] page_token
@@ -1358,7 +1358,7 @@ module Google
1358
1358
  # order for a field, a suffix "desc" should be added to the field name. Example:
1359
1359
  # `createTime desc`.
1360
1360
  # @param [Fixnum] page_size
1361
- # Requested page size. Must be between `1` and `100`. If unspecified will
1361
+ # Requested page size. Must be between `1` and `200`. If unspecified will
1362
1362
  # default to `100`. Returns error code `INVALID_ARGUMENT` if an invalid value is
1363
1363
  # specified.
1364
1364
  # @param [String] page_token
@@ -1945,7 +1945,7 @@ module Google
1945
1945
  # Select type of invoice to retrieve for Loi Sapin advertisers. Only applicable
1946
1946
  # to Loi Sapin advertisers. Will be ignored otherwise.
1947
1947
  # @param [Fixnum] page_size
1948
- # Requested page size. Must be between `1` and `100`. If unspecified will
1948
+ # Requested page size. Must be between `1` and `200`. If unspecified will
1949
1949
  # default to `100`. Returns error code `INVALID_ARGUMENT` if an invalid value is
1950
1950
  # specified.
1951
1951
  # @param [String] page_token
@@ -2022,7 +2022,10 @@ module Google
2022
2022
  # delete the assigned targeting options provided in
2023
2023
  # BulkEditAssignedTargetingOptionsRequest.delete_requests and then create the
2024
2024
  # assigned targeting options provided in BulkEditAssignedTargetingOptionsRequest.
2025
- # create_requests .
2025
+ # create_requests. Requests to this endpoint cannot be made concurrently with
2026
+ # the following requests updating the same line item: * BulkUpdate *
2027
+ # UpdateLineItem * CreateLineItemAssignedTargetingOption *
2028
+ # DeleteLineItemAssignedTargetingOption
2026
2029
  # @param [Fixnum] advertiser_id
2027
2030
  # Required. The ID of the advertiser the line items belong to.
2028
2031
  # @param [Google::Apis::DisplayvideoV2::BulkEditAssignedTargetingOptionsRequest] bulk_edit_assigned_targeting_options_request_object
@@ -2120,7 +2123,10 @@ module Google
2120
2123
  execute_or_queue_command(command, &block)
2121
2124
  end
2122
2125
 
2123
- # Updates multiple line items.
2126
+ # Updates multiple line items. Requests to this endpoint cannot be made
2127
+ # concurrently with the following requests updating the same line item: *
2128
+ # BulkEditAssignedTargetingOptions * UpdateLineItem *
2129
+ # CreateLineItemAssignedTargetingOption * DeleteLineItemAssignedTargetingOption
2124
2130
  # @param [String] advertisers_id
2125
2131
  # @param [Google::Apis::DisplayvideoV2::BulkUpdateLineItemsRequest] bulk_update_line_items_request_object
2126
2132
  # @param [String] fields
@@ -2220,7 +2226,7 @@ module Google
2220
2226
  execute_or_queue_command(command, &block)
2221
2227
  end
2222
2228
 
2223
- # Duplicates a line item. Returns the newly created line item id if successful.
2229
+ # Duplicates a line item. Returns the ID of the created line item if successful.
2224
2230
  # @param [Fixnum] advertiser_id
2225
2231
  # Required. The ID of the advertiser this line item belongs to.
2226
2232
  # @param [Fixnum] line_item_id
@@ -2366,7 +2372,7 @@ module Google
2366
2372
  # default sorting order is ascending. To specify descending order for a field, a
2367
2373
  # suffix "desc" should be added to the field name. Example: `displayName desc`.
2368
2374
  # @param [Fixnum] page_size
2369
- # Requested page size. Must be between `1` and `100`. If unspecified will
2375
+ # Requested page size. Must be between `1` and `200`. If unspecified will
2370
2376
  # default to `100`. Returns error code `INVALID_ARGUMENT` if an invalid value is
2371
2377
  # specified.
2372
2378
  # @param [String] page_token
@@ -2407,9 +2413,9 @@ module Google
2407
2413
 
2408
2414
  # Updates an existing line item. Returns the updated line item if successful.
2409
2415
  # Requests to this endpoint cannot be made concurrently with the following
2410
- # requests updating the same line item: *
2411
- # BulkEditLineItemAssignedTargetingOptions * UpdateLineItem *
2412
- # CreateLineItemAssignedTargetingOption * DeleteLineItemAssignedTargetingOption
2416
+ # requests updating the same line item: * BulkEditAssignedTargetingOptions *
2417
+ # BulkUpdateLineItems * CreateLineItemAssignedTargetingOption *
2418
+ # DeleteLineItemAssignedTargetingOption
2413
2419
  # @param [Fixnum] advertiser_id
2414
2420
  # Output only. The unique ID of the advertiser the line item belongs to.
2415
2421
  # @param [Fixnum] line_item_id
@@ -2451,8 +2457,8 @@ module Google
2451
2457
  # Assigns a targeting option to a line item. Returns the assigned targeting
2452
2458
  # option if successful. Requests to this endpoint cannot be made concurrently
2453
2459
  # with the following requests updating the same line item: *
2454
- # BulkEditLineItemAssignedTargetingOptions * UpdateLineItem *
2455
- # CreateLineItemAssignedTargetingOption * DeleteLineItemAssignedTargetingOption
2460
+ # BulkEditAssignedTargetingOptions * BulkUpdate * UpdateLineItem *
2461
+ # DeleteLineItemAssignedTargetingOption
2456
2462
  # @param [Fixnum] advertiser_id
2457
2463
  # Required. The ID of the advertiser the line item belongs to.
2458
2464
  # @param [Fixnum] line_item_id
@@ -2493,8 +2499,8 @@ module Google
2493
2499
 
2494
2500
  # Deletes an assigned targeting option from a line item. Requests to this
2495
2501
  # endpoint cannot be made concurrently with the following requests updating the
2496
- # same line item: * BulkEditLineItemAssignedTargetingOptions * UpdateLineItem *
2497
- # CreateLineItemAssignedTargetingOption * DeleteLineItemAssignedTargetingOption
2502
+ # same line item: * BulkEditAssignedTargetingOptions * BulkUpdate *
2503
+ # UpdateLineItem * CreateLineItemAssignedTargetingOption
2498
2504
  # @param [Fixnum] advertiser_id
2499
2505
  # Required. The ID of the advertiser the line item belongs to.
2500
2506
  # @param [Fixnum] line_item_id
@@ -2725,7 +2731,7 @@ module Google
2725
2731
  # descending order for a field, a suffix "desc" should be added to the field
2726
2732
  # name. Example: `displayName desc`.
2727
2733
  # @param [Fixnum] page_size
2728
- # Requested page size. Must be between `1` and `100`. Defaults to `100` if not
2734
+ # Requested page size. Must be between `1` and `200`. Defaults to `100` if not
2729
2735
  # set. Returns error code `INVALID_ARGUMENT` if an invalid value is specified.
2730
2736
  # @param [String] page_token
2731
2737
  # A token identifying a page of results the server should return. Typically,
@@ -2932,7 +2938,7 @@ module Google
2932
2938
  # for a field, a suffix " desc" should be added to the field name. Example: `
2933
2939
  # assignedLocationId desc`.
2934
2940
  # @param [Fixnum] page_size
2935
- # Requested page size. Must be between `1` and `100`. If unspecified will
2941
+ # Requested page size. Must be between `1` and `200`. If unspecified will
2936
2942
  # default to `100`. Returns error code `INVALID_ARGUMENT` if an invalid value is
2937
2943
  # specified.
2938
2944
  # @param [String] page_token
@@ -3133,7 +3139,7 @@ module Google
3133
3139
  # descending order for a field, a suffix "desc" should be added to the field
3134
3140
  # name. For example, `displayName desc`.
3135
3141
  # @param [Fixnum] page_size
3136
- # Requested page size. Must be between `1` and `100`. If unspecified will
3142
+ # Requested page size. Must be between `1` and `200`. If unspecified will
3137
3143
  # default to `100`.
3138
3144
  # @param [String] page_token
3139
3145
  # A token identifying a page of results the server should return. Typically,
@@ -3321,7 +3327,7 @@ module Google
3321
3327
  # Required. The ID of the DV360 advertiser to which the fetched negative keyword
3322
3328
  # lists belong.
3323
3329
  # @param [Fixnum] page_size
3324
- # Requested page size. Must be between `1` and `100`. Defaults to `100` if not
3330
+ # Requested page size. Must be between `1` and `200`. Defaults to `100` if not
3325
3331
  # set. Returns error code `INVALID_ARGUMENT` if an invalid value is specified.
3326
3332
  # @param [String] page_token
3327
3333
  # A token identifying a page of results the server should return. Typically,
@@ -3852,7 +3858,7 @@ module Google
3852
3858
  # descending order for a field, a suffix "desc" should be added to the field
3853
3859
  # name. Example: `displayName desc`.
3854
3860
  # @param [Fixnum] page_size
3855
- # Requested page size. Must be between `1` and `100`. If unspecified will
3861
+ # Requested page size. Must be between `1` and `200`. If unspecified will
3856
3862
  # default to `100`. Returns error code `INVALID_ARGUMENT` if an invalid value is
3857
3863
  # specified.
3858
3864
  # @param [String] page_token
@@ -3987,7 +3993,7 @@ module Google
3987
3993
  # for a field, a suffix "desc" should be added to the field name. Example: `
3988
3994
  # displayName desc`.
3989
3995
  # @param [Fixnum] page_size
3990
- # Requested page size. Must be between `1` and `100`. If unspecified will
3996
+ # Requested page size. Must be between `1` and `200`. If unspecified will
3991
3997
  # default to `100`. Returns error code `INVALID_ARGUMENT` if an invalid value is
3992
3998
  # specified.
3993
3999
  # @param [String] page_token
@@ -4199,7 +4205,7 @@ module Google
4199
4205
  # default) The default sorting order is descending. To specify ascending order
4200
4206
  # for a field, the suffix "desc" should be removed. Example: `createTime`.
4201
4207
  # @param [Fixnum] page_size
4202
- # Requested page size. Must be between `1` and `100`. If unspecified will
4208
+ # Requested page size. Must be between `1` and `200`. If unspecified will
4203
4209
  # default to `100`. Returns error code `INVALID_ARGUMENT` if an invalid value is
4204
4210
  # specified.
4205
4211
  # @param [String] page_token
@@ -4291,7 +4297,7 @@ module Google
4291
4297
  # descending order for a field, a suffix "desc" should be added to the field
4292
4298
  # name. Example: `displayName desc`.
4293
4299
  # @param [Fixnum] page_size
4294
- # Requested page size. Must be between `1` and `100`. If unspecified will
4300
+ # Requested page size. Must be between `1` and `200`. If unspecified will
4295
4301
  # default to `100`. Returns error code `INVALID_ARGUMENT` if an invalid value is
4296
4302
  # specified.
4297
4303
  # @param [String] page_token
@@ -4458,7 +4464,7 @@ module Google
4458
4464
  # order is ascending. To specify descending order for a field, a suffix "desc"
4459
4465
  # should be added to the field name. Example: `displayName desc`.
4460
4466
  # @param [Fixnum] page_size
4461
- # Requested page size. Must be between `1` and `100`. If unspecified will
4467
+ # Requested page size. Must be between `1` and `200`. If unspecified will
4462
4468
  # default to `100`. Returns error code `INVALID_ARGUMENT` if an invalid value is
4463
4469
  # specified.
4464
4470
  # @param [String] page_token
@@ -4672,7 +4678,7 @@ module Google
4672
4678
  # descending order for a field, a suffix "desc" should be added to the field
4673
4679
  # name. Example: `displayName desc`.
4674
4680
  # @param [Fixnum] page_size
4675
- # Requested page size. Must be between `1` and `100`. If unspecified will
4681
+ # Requested page size. Must be between `1` and `200`. If unspecified will
4676
4682
  # default to `100`. Returns error code `INVALID_ARGUMENT` if an invalid value is
4677
4683
  # specified.
4678
4684
  # @param [String] page_token
@@ -4845,8 +4851,8 @@ module Google
4845
4851
  # for a field, a suffix "desc" should be added to the field name. For example, `
4846
4852
  # displayName desc`.
4847
4853
  # @param [Fixnum] page_size
4848
- # Requested page size. Must be between `1` and `100`. If unspecified or greater
4849
- # than `100` will default to `100`.
4854
+ # Requested page size. Must be between `1` and `200`. If unspecified will
4855
+ # default to `100`.
4850
4856
  # @param [String] page_token
4851
4857
  # A token identifying a page of results the server should return. Typically,
4852
4858
  # this is the value of next_page_token returned from the previous call to `
@@ -5066,7 +5072,7 @@ module Google
5066
5072
  # specify descending order for a field, a suffix "desc" should be added to the
5067
5073
  # field name. For example, `displayName desc`.
5068
5074
  # @param [Fixnum] page_size
5069
- # Requested page size. Must be between `1` and `100`. If unspecified will
5075
+ # Requested page size. Must be between `1` and `200`. If unspecified will
5070
5076
  # default to `100`.
5071
5077
  # @param [String] page_token
5072
5078
  # A token identifying a page of results the server should return. Typically,
@@ -5474,7 +5480,7 @@ module Google
5474
5480
  # for a field, a suffix "desc" should be added to the field name. For example, `
5475
5481
  # displayName desc`.
5476
5482
  # @param [Fixnum] page_size
5477
- # Requested page size. Must be between `1` and `100`. If unspecified will
5483
+ # Requested page size. Must be between `1` and `200`. If unspecified will
5478
5484
  # default to `100`.
5479
5485
  # @param [String] page_token
5480
5486
  # A token identifying a page of results the server should return. Typically,
@@ -5725,7 +5731,7 @@ module Google
5725
5731
  # suffix "desc" should be added to the field name. For example, `displayName
5726
5732
  # desc`.
5727
5733
  # @param [Fixnum] page_size
5728
- # Requested page size. Must be between `1` and `100`. If unspecified will
5734
+ # Requested page size. Must be between `1` and `200`. If unspecified will
5729
5735
  # default to `100`.
5730
5736
  # @param [String] page_token
5731
5737
  # A token identifying a page of results the server should return. Typically,
@@ -5852,7 +5858,7 @@ module Google
5852
5858
  # descending order for a field, a suffix " desc" should be added to the field
5853
5859
  # name. Example: `displayName desc`.
5854
5860
  # @param [Fixnum] page_size
5855
- # Requested page size. Must be between `1` and `100`. If unspecified will
5861
+ # Requested page size. Must be between `1` and `200`. If unspecified will
5856
5862
  # default to `100`. Returns error code `INVALID_ARGUMENT` if an invalid value is
5857
5863
  # specified.
5858
5864
  # @param [String] page_token
@@ -6281,7 +6287,7 @@ module Google
6281
6287
  # To specify descending order for a field, a suffix "desc" should be added to
6282
6288
  # the field name. Example: `assignedTargetingOptionId desc`.
6283
6289
  # @param [Fixnum] page_size
6284
- # Requested page size. Must be between `1` and `100`. If unspecified will
6290
+ # Requested page size. Must be between `1` and `200`. If unspecified will
6285
6291
  # default to `100`. Returns error code `INVALID_ARGUMENT` if an invalid value is
6286
6292
  # specified.
6287
6293
  # @param [String] page_token
@@ -6478,7 +6484,7 @@ module Google
6478
6484
  # for a field, a suffix "desc" should be added to the field name. Example: `
6479
6485
  # targetingOptionId desc`.
6480
6486
  # @param [Fixnum] page_size
6481
- # Requested page size. Must be between `1` and `100`. If unspecified will
6487
+ # Requested page size. Must be between `1` and `200`. If unspecified will
6482
6488
  # default to `100`. Returns error code `INVALID_ARGUMENT` if an invalid value is
6483
6489
  # specified.
6484
6490
  # @param [String] page_token
@@ -6709,7 +6715,7 @@ module Google
6709
6715
  # for a field, a suffix "desc" should be added to the field name. For example, `
6710
6716
  # displayName desc`.
6711
6717
  # @param [Fixnum] page_size
6712
- # Requested page size. Must be between `1` and `100`. If unspecified will
6718
+ # Requested page size. Must be between `1` and `200`. If unspecified will
6713
6719
  # default to `100`.
6714
6720
  # @param [String] page_token
6715
6721
  # A token identifying a page of results the server should return. Typically,
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-displayvideo_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.6.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: 2022-11-07 00:00:00.000000000 Z
11
+ date: 2022-11-14 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_v2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-displayvideo_v2/v0.5.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-displayvideo_v2/v0.6.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-displayvideo_v2
63
63
  post_install_message:
64
64
  rdoc_options: []