google-apis-displayvideo_v2 0.29.0 → 0.31.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: aec6cc0a6f569c6413599b6cba55a7a142be724e23c405940fc1b554650dd328
4
- data.tar.gz: 8ca630cea1d927a520559d0a54fb3fd510ecd78b692c37cfff18f21b8bd4e6d7
3
+ metadata.gz: 1e2fe64c345e3466f69d36cda046106d3c0db3a86bd0fbb0f7d5466eb1d5467b
4
+ data.tar.gz: 8506ec1433b51231a35588e0199d070ad6dde8f7db4acf8d053da79fe8a3a445
5
5
  SHA512:
6
- metadata.gz: 4aa773ee683f2b3d0f3eca6b8a4b01bf62dccefe57f66e9ee967eaea7088c97a6964ff0c0def36ee4ab3445c1d3f9c52cbcdfe804f45438cc64c8ef8fad526a4
7
- data.tar.gz: 04ef25c824aa8f1c83d81a905b6f86ddb58874e28acc12deb80cad5b92ecabd147c819cc26aac1d2150b71776f817041bc4506a7550f3e88fd2e540c6977396d
6
+ metadata.gz: a48dee7b429572d66815265f6cf895c113e6cd429171ce3b12fb15c455e868c03f65fb3c9d7b29a4805fdbf3de082d14cdf3aa429fff86044a01612ef532dd80
7
+ data.tar.gz: 4874901508329e05c8d5a32649651a1bb8fe4ca6e705248bd8025aab40932281eb8f34a8f564d5a99297e8bf6ad46bc93026d5b5a78487742e1b968d0dc36ace
data/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Release history for google-apis-displayvideo_v2
2
2
 
3
+ ### v0.31.0 (2024-01-28)
4
+
5
+ * Regenerated from discovery document revision 20240125
6
+ * Regenerated using generator version 0.13.1
7
+
8
+ ### v0.30.0 (2024-01-22)
9
+
10
+ * Regenerated from discovery document revision 20240118
11
+ * Regenerated using generator version 0.13.0
12
+
3
13
  ### v0.29.0 (2024-01-07)
4
14
 
5
15
  * Regenerated from discovery document revision 20240104
@@ -270,7 +270,7 @@ module Google
270
270
  class AdvertiserBillingConfig
271
271
  include Google::Apis::Core::Hashable
272
272
 
273
- # The ID of a billing profile assigned to the advertiser.
273
+ # Optional. The ID of a billing profile assigned to the advertiser.
274
274
  # Corresponds to the JSON property `billingProfileId`
275
275
  # @return [Fixnum]
276
276
  attr_accessor :billing_profile_id
@@ -2907,6 +2907,12 @@ module Google
2907
2907
  # @return [Fixnum]
2908
2908
  attr_accessor :cm_account_id
2909
2909
 
2910
+ # Output only. The set of CM360 Advertiser IDs sharing the CM360 Floodlight
2911
+ # configuration.
2912
+ # Corresponds to the JSON property `cmAdvertiserIds`
2913
+ # @return [Array<Fixnum>]
2914
+ attr_accessor :cm_advertiser_ids
2915
+
2910
2916
  # Required. Immutable. ID of the CM360 Floodlight configuration linked with the
2911
2917
  # DV360 advertiser.
2912
2918
  # Corresponds to the JSON property `cmFloodlightConfigId`
@@ -2948,6 +2954,7 @@ module Google
2948
2954
  # Update properties of this object
2949
2955
  def update!(**args)
2950
2956
  @cm_account_id = args[:cm_account_id] if args.key?(:cm_account_id)
2957
+ @cm_advertiser_ids = args[:cm_advertiser_ids] if args.key?(:cm_advertiser_ids)
2951
2958
  @cm_floodlight_config_id = args[:cm_floodlight_config_id] if args.key?(:cm_floodlight_config_id)
2952
2959
  @cm_floodlight_linking_authorized = args[:cm_floodlight_linking_authorized] if args.key?(:cm_floodlight_linking_authorized)
2953
2960
  @cm_syncable_site_ids = args[:cm_syncable_site_ids] if args.key?(:cm_syncable_site_ids)
@@ -5644,6 +5651,73 @@ module Google
5644
5651
  end
5645
5652
  end
5646
5653
 
5654
+ # A single Floodlight activity.
5655
+ class FloodlightActivity
5656
+ include Google::Apis::Core::Hashable
5657
+
5658
+ # Output only. IDs of the advertisers that have access to the parent Floodlight
5659
+ # group. Only advertisers under the provided partner ID will be listed in this
5660
+ # field.
5661
+ # Corresponds to the JSON property `advertiserIds`
5662
+ # @return [Array<Fixnum>]
5663
+ attr_accessor :advertiser_ids
5664
+
5665
+ # Required. The display name of the Floodlight activity.
5666
+ # Corresponds to the JSON property `displayName`
5667
+ # @return [String]
5668
+ attr_accessor :display_name
5669
+
5670
+ # Output only. The unique ID of the Floodlight activity. Assigned by the system.
5671
+ # Corresponds to the JSON property `floodlightActivityId`
5672
+ # @return [Fixnum]
5673
+ attr_accessor :floodlight_activity_id
5674
+
5675
+ # Required. Immutable. The ID of the parent Floodlight group.
5676
+ # Corresponds to the JSON property `floodlightGroupId`
5677
+ # @return [Fixnum]
5678
+ attr_accessor :floodlight_group_id
5679
+
5680
+ # Output only. The resource name of the Floodlight activity.
5681
+ # Corresponds to the JSON property `name`
5682
+ # @return [String]
5683
+ attr_accessor :name
5684
+
5685
+ # Output only. A list of configuration objects designating whether remarketing
5686
+ # for this Floodlight Activity is enabled and available for a specifc advertiser.
5687
+ # If enabled, this Floodlight Activity generates a remarketing user list that
5688
+ # is able to be used in targeting under the advertiser.
5689
+ # Corresponds to the JSON property `remarketingConfigs`
5690
+ # @return [Array<Google::Apis::DisplayvideoV2::RemarketingConfig>]
5691
+ attr_accessor :remarketing_configs
5692
+
5693
+ # Optional. Whether the Floodlight activity is served.
5694
+ # Corresponds to the JSON property `servingStatus`
5695
+ # @return [String]
5696
+ attr_accessor :serving_status
5697
+
5698
+ # Output only. Whether tags are required to be compliant.
5699
+ # Corresponds to the JSON property `sslRequired`
5700
+ # @return [Boolean]
5701
+ attr_accessor :ssl_required
5702
+ alias_method :ssl_required?, :ssl_required
5703
+
5704
+ def initialize(**args)
5705
+ update!(**args)
5706
+ end
5707
+
5708
+ # Update properties of this object
5709
+ def update!(**args)
5710
+ @advertiser_ids = args[:advertiser_ids] if args.key?(:advertiser_ids)
5711
+ @display_name = args[:display_name] if args.key?(:display_name)
5712
+ @floodlight_activity_id = args[:floodlight_activity_id] if args.key?(:floodlight_activity_id)
5713
+ @floodlight_group_id = args[:floodlight_group_id] if args.key?(:floodlight_group_id)
5714
+ @name = args[:name] if args.key?(:name)
5715
+ @remarketing_configs = args[:remarketing_configs] if args.key?(:remarketing_configs)
5716
+ @serving_status = args[:serving_status] if args.key?(:serving_status)
5717
+ @ssl_required = args[:ssl_required] if args.key?(:ssl_required)
5718
+ end
5719
+ end
5720
+
5647
5721
  # A single Floodlight group.
5648
5722
  class FloodlightGroup
5649
5723
  include Google::Apis::Core::Hashable
@@ -5724,10 +5798,10 @@ module Google
5724
5798
  # @return [Fixnum]
5725
5799
  attr_accessor :max_impressions
5726
5800
 
5727
- # The maximum number of times a user may click-through or fully view an ad
5728
- # during this period until it is no longer served to them. Must be greater than
5729
- # 0. Only applicable to YouTube and Partners resources. Required when unlimited
5730
- # is `false` and max_impressions is not set.
5801
+ # Optional. The maximum number of times a user may click-through or fully view
5802
+ # an ad during this period until it is no longer served to them. Must be greater
5803
+ # than 0. Only applicable to YouTube and Partners resources. Required when
5804
+ # unlimited is `false` and max_impressions is not set.
5731
5805
  # Corresponds to the JSON property `maxViews`
5732
5806
  # @return [Fixnum]
5733
5807
  attr_accessor :max_views
@@ -7965,6 +8039,33 @@ module Google
7965
8039
  end
7966
8040
  end
7967
8041
 
8042
+ #
8043
+ class ListFloodlightActivitiesResponse
8044
+ include Google::Apis::Core::Hashable
8045
+
8046
+ # The list of Floodlight activities. This list will be absent if empty.
8047
+ # Corresponds to the JSON property `floodlightActivities`
8048
+ # @return [Array<Google::Apis::DisplayvideoV2::FloodlightActivity>]
8049
+ attr_accessor :floodlight_activities
8050
+
8051
+ # A token to retrieve the next page of results. Pass this value in the
8052
+ # page_token field in the subsequent call to `ListFloodlightActivities` method
8053
+ # to retrieve the next page of results.
8054
+ # Corresponds to the JSON property `nextPageToken`
8055
+ # @return [String]
8056
+ attr_accessor :next_page_token
8057
+
8058
+ def initialize(**args)
8059
+ update!(**args)
8060
+ end
8061
+
8062
+ # Update properties of this object
8063
+ def update!(**args)
8064
+ @floodlight_activities = args[:floodlight_activities] if args.key?(:floodlight_activities)
8065
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
8066
+ end
8067
+ end
8068
+
7968
8069
  #
7969
8070
  class ListGoogleAudiencesResponse
7970
8071
  include Google::Apis::Core::Hashable
@@ -10242,6 +10343,34 @@ module Google
10242
10343
  end
10243
10344
  end
10244
10345
 
10346
+ # Settings that control the whether remarketing is enabled for the given
10347
+ # identified advertiser.
10348
+ class RemarketingConfig
10349
+ include Google::Apis::Core::Hashable
10350
+
10351
+ # Output only. The ID of the advertiser.
10352
+ # Corresponds to the JSON property `advertiserId`
10353
+ # @return [Fixnum]
10354
+ attr_accessor :advertiser_id
10355
+
10356
+ # Output only. Whether the Floodlight activity remarketing user list is
10357
+ # available to the identified advertiser.
10358
+ # Corresponds to the JSON property `remarketingEnabled`
10359
+ # @return [Boolean]
10360
+ attr_accessor :remarketing_enabled
10361
+ alias_method :remarketing_enabled?, :remarketing_enabled
10362
+
10363
+ def initialize(**args)
10364
+ update!(**args)
10365
+ end
10366
+
10367
+ # Update properties of this object
10368
+ def update!(**args)
10369
+ @advertiser_id = args[:advertiser_id] if args.key?(:advertiser_id)
10370
+ @remarketing_enabled = args[:remarketing_enabled] if args.key?(:remarketing_enabled)
10371
+ end
10372
+ end
10373
+
10245
10374
  # Request message for NegativeKeywordService.ReplaceNegativeKeywords.
10246
10375
  class ReplaceNegativeKeywordsRequest
10247
10376
  include Google::Apis::Core::Hashable
@@ -12081,6 +12210,12 @@ module Google
12081
12210
  class YoutubeAndPartnersInventorySourceConfig
12082
12211
  include Google::Apis::Core::Hashable
12083
12212
 
12213
+ # Optional. Whether to target inventory in video apps available with Google TV.
12214
+ # Corresponds to the JSON property `includeGoogleTv`
12215
+ # @return [Boolean]
12216
+ attr_accessor :include_google_tv
12217
+ alias_method :include_google_tv?, :include_google_tv
12218
+
12084
12219
  # Whether to target inventory on the YouTube search results page.
12085
12220
  # Corresponds to the JSON property `includeYoutubeSearch`
12086
12221
  # @return [Boolean]
@@ -12107,6 +12242,7 @@ module Google
12107
12242
 
12108
12243
  # Update properties of this object
12109
12244
  def update!(**args)
12245
+ @include_google_tv = args[:include_google_tv] if args.key?(:include_google_tv)
12110
12246
  @include_youtube_search = args[:include_youtube_search] if args.key?(:include_youtube_search)
12111
12247
  @include_youtube_video_partners = args[:include_youtube_video_partners] if args.key?(:include_youtube_video_partners)
12112
12248
  @include_youtube_videos = args[:include_youtube_videos] if args.key?(:include_youtube_videos)
@@ -12140,18 +12276,19 @@ module Google
12140
12276
  # @return [Google::Apis::DisplayvideoV2::YoutubeAndPartnersInventorySourceConfig]
12141
12277
  attr_accessor :inventory_source_settings
12142
12278
 
12143
- # The ID of the form to generate leads.
12279
+ # Optional. The ID of the form to generate leads.
12144
12280
  # Corresponds to the JSON property `leadFormId`
12145
12281
  # @return [Fixnum]
12146
12282
  attr_accessor :lead_form_id
12147
12283
 
12148
- # The ID of the merchant which is linked to the line item for product feed.
12284
+ # Optional. The ID of the merchant which is linked to the line item for product
12285
+ # feed.
12149
12286
  # Corresponds to the JSON property `linkedMerchantId`
12150
12287
  # @return [Fixnum]
12151
12288
  attr_accessor :linked_merchant_id
12152
12289
 
12153
- # The IDs of the videos appear below the primary video ad when the ad is playing
12154
- # in the YouTube app on mobile devices.
12290
+ # Optional. The IDs of the videos appear below the primary video ad when the ad
12291
+ # is playing in the YouTube app on mobile devices.
12155
12292
  # Corresponds to the JSON property `relatedVideoIds`
12156
12293
  # @return [Array<String>]
12157
12294
  attr_accessor :related_video_ids
@@ -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.29.0"
19
+ GEM_VERSION = "0.31.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.12.0"
22
+ GENERATOR_VERSION = "0.13.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240104"
25
+ REVISION = "20240125"
26
26
  end
27
27
  end
28
28
  end
@@ -904,6 +904,12 @@ module Google
904
904
  include Google::Apis::Core::JsonObjectSupport
905
905
  end
906
906
 
907
+ class FloodlightActivity
908
+ class Representation < Google::Apis::Core::JsonRepresentation; end
909
+
910
+ include Google::Apis::Core::JsonObjectSupport
911
+ end
912
+
907
913
  class FloodlightGroup
908
914
  class Representation < Google::Apis::Core::JsonRepresentation; end
909
915
 
@@ -1240,6 +1246,12 @@ module Google
1240
1246
  include Google::Apis::Core::JsonObjectSupport
1241
1247
  end
1242
1248
 
1249
+ class ListFloodlightActivitiesResponse
1250
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1251
+
1252
+ include Google::Apis::Core::JsonObjectSupport
1253
+ end
1254
+
1243
1255
  class ListGoogleAudiencesResponse
1244
1256
  class Representation < Google::Apis::Core::JsonRepresentation; end
1245
1257
 
@@ -1648,6 +1660,12 @@ module Google
1648
1660
  include Google::Apis::Core::JsonObjectSupport
1649
1661
  end
1650
1662
 
1663
+ class RemarketingConfig
1664
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1665
+
1666
+ include Google::Apis::Core::JsonObjectSupport
1667
+ end
1668
+
1651
1669
  class ReplaceNegativeKeywordsRequest
1652
1670
  class Representation < Google::Apis::Core::JsonRepresentation; end
1653
1671
 
@@ -2751,6 +2769,7 @@ module Google
2751
2769
  # @private
2752
2770
  class Representation < Google::Apis::Core::JsonRepresentation
2753
2771
  property :cm_account_id, :numeric_string => true, as: 'cmAccountId'
2772
+ collection :cm_advertiser_ids, as: 'cmAdvertiserIds'
2754
2773
  property :cm_floodlight_config_id, :numeric_string => true, as: 'cmFloodlightConfigId'
2755
2774
  property :cm_floodlight_linking_authorized, as: 'cmFloodlightLinkingAuthorized'
2756
2775
  collection :cm_syncable_site_ids, as: 'cmSyncableSiteIds'
@@ -3477,6 +3496,21 @@ module Google
3477
3496
  end
3478
3497
  end
3479
3498
 
3499
+ class FloodlightActivity
3500
+ # @private
3501
+ class Representation < Google::Apis::Core::JsonRepresentation
3502
+ collection :advertiser_ids, as: 'advertiserIds'
3503
+ property :display_name, as: 'displayName'
3504
+ property :floodlight_activity_id, :numeric_string => true, as: 'floodlightActivityId'
3505
+ property :floodlight_group_id, :numeric_string => true, as: 'floodlightGroupId'
3506
+ property :name, as: 'name'
3507
+ collection :remarketing_configs, as: 'remarketingConfigs', class: Google::Apis::DisplayvideoV2::RemarketingConfig, decorator: Google::Apis::DisplayvideoV2::RemarketingConfig::Representation
3508
+
3509
+ property :serving_status, as: 'servingStatus'
3510
+ property :ssl_required, as: 'sslRequired'
3511
+ end
3512
+ end
3513
+
3480
3514
  class FloodlightGroup
3481
3515
  # @private
3482
3516
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4090,6 +4124,15 @@ module Google
4090
4124
  end
4091
4125
  end
4092
4126
 
4127
+ class ListFloodlightActivitiesResponse
4128
+ # @private
4129
+ class Representation < Google::Apis::Core::JsonRepresentation
4130
+ collection :floodlight_activities, as: 'floodlightActivities', class: Google::Apis::DisplayvideoV2::FloodlightActivity, decorator: Google::Apis::DisplayvideoV2::FloodlightActivity::Representation
4131
+
4132
+ property :next_page_token, as: 'nextPageToken'
4133
+ end
4134
+ end
4135
+
4093
4136
  class ListGoogleAudiencesResponse
4094
4137
  # @private
4095
4138
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4723,6 +4766,14 @@ module Google
4723
4766
  end
4724
4767
  end
4725
4768
 
4769
+ class RemarketingConfig
4770
+ # @private
4771
+ class Representation < Google::Apis::Core::JsonRepresentation
4772
+ property :advertiser_id, :numeric_string => true, as: 'advertiserId'
4773
+ property :remarketing_enabled, as: 'remarketingEnabled'
4774
+ end
4775
+ end
4776
+
4726
4777
  class ReplaceNegativeKeywordsRequest
4727
4778
  # @private
4728
4779
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5243,6 +5294,7 @@ module Google
5243
5294
  class YoutubeAndPartnersInventorySourceConfig
5244
5295
  # @private
5245
5296
  class Representation < Google::Apis::Core::JsonRepresentation
5297
+ property :include_google_tv, as: 'includeGoogleTv'
5246
5298
  property :include_youtube_search, as: 'includeYoutubeSearch'
5247
5299
  property :include_youtube_video_partners, as: 'includeYoutubeVideoPartners'
5248
5300
  property :include_youtube_videos, as: 'includeYoutubeVideos'
@@ -34,6 +34,8 @@ module Google
34
34
  #
35
35
  # @see https://developers.google.com/display-video/
36
36
  class DisplayVideoService < Google::Apis::Core::BaseService
37
+ DEFAULT_ENDPOINT_TEMPLATE = "https://displayvideo.$UNIVERSE_DOMAIN$/"
38
+
37
39
  # @return [String]
38
40
  # API key. Your API key identifies your project and provides you with API access,
39
41
  # quota, and reports. Required unless you provide an OAuth 2.0 token.
@@ -45,7 +47,7 @@ module Google
45
47
  attr_accessor :quota_user
46
48
 
47
49
  def initialize
48
- super('https://displayvideo.googleapis.com/', '',
50
+ super(DEFAULT_ENDPOINT_TEMPLATE, '',
49
51
  client_name: 'google-apis-displayvideo_v2',
50
52
  client_version: Google::Apis::DisplayvideoV2::GEM_VERSION)
51
53
  @batch_path = 'batch'
@@ -5212,6 +5214,96 @@ module Google
5212
5214
  execute_or_queue_command(command, &block)
5213
5215
  end
5214
5216
 
5217
+ # Gets a Floodlight activity.
5218
+ # @param [Fixnum] floodlight_group_id
5219
+ # Required. The ID of the parent Floodlight group to which the requested
5220
+ # Floodlight activity belongs.
5221
+ # @param [Fixnum] floodlight_activity_id
5222
+ # Required. The ID of the Floodlight activity to fetch.
5223
+ # @param [Fixnum] partner_id
5224
+ # Required. The ID of the partner through which the Floodlight activity is being
5225
+ # accessed.
5226
+ # @param [String] fields
5227
+ # Selector specifying which fields to include in a partial response.
5228
+ # @param [String] quota_user
5229
+ # Available to use for quota purposes for server-side applications. Can be any
5230
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
5231
+ # @param [Google::Apis::RequestOptions] options
5232
+ # Request-specific options
5233
+ #
5234
+ # @yield [result, err] Result & error if block supplied
5235
+ # @yieldparam result [Google::Apis::DisplayvideoV2::FloodlightActivity] parsed result object
5236
+ # @yieldparam err [StandardError] error object if request failed
5237
+ #
5238
+ # @return [Google::Apis::DisplayvideoV2::FloodlightActivity]
5239
+ #
5240
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
5241
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
5242
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
5243
+ def get_floodlight_group_floodlight_activity(floodlight_group_id, floodlight_activity_id, partner_id: nil, fields: nil, quota_user: nil, options: nil, &block)
5244
+ command = make_simple_command(:get, 'v2/floodlightGroups/{+floodlightGroupId}/floodlightActivities/{+floodlightActivityId}', options)
5245
+ command.response_representation = Google::Apis::DisplayvideoV2::FloodlightActivity::Representation
5246
+ command.response_class = Google::Apis::DisplayvideoV2::FloodlightActivity
5247
+ command.params['floodlightGroupId'] = floodlight_group_id unless floodlight_group_id.nil?
5248
+ command.params['floodlightActivityId'] = floodlight_activity_id unless floodlight_activity_id.nil?
5249
+ command.query['partnerId'] = partner_id unless partner_id.nil?
5250
+ command.query['fields'] = fields unless fields.nil?
5251
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
5252
+ execute_or_queue_command(command, &block)
5253
+ end
5254
+
5255
+ # Lists Floodlight activities in a Floodlight group.
5256
+ # @param [Fixnum] floodlight_group_id
5257
+ # Required. The ID of the parent Floodlight group to which the requested
5258
+ # Floodlight activities belong.
5259
+ # @param [String] order_by
5260
+ # Optional. Field by which to sort the list. Acceptable values are: * `
5261
+ # displayName` (default) * `floodlightActivityId` The default sorting order is
5262
+ # ascending. To specify descending order for a field, a suffix "desc" should be
5263
+ # added to the field name. Example: `displayName desc`.
5264
+ # @param [Fixnum] page_size
5265
+ # Optional. Requested page size. Must be between `1` and `100`. If unspecified
5266
+ # will default to `100`. Returns error code `INVALID_ARGUMENT` if an invalid
5267
+ # value is specified.
5268
+ # @param [String] page_token
5269
+ # Optional. A token identifying a page of results the server should return.
5270
+ # Typically, this is the value of next_page_token returned from the previous
5271
+ # call to `ListFloodlightActivities` method. If not specified, the first page of
5272
+ # results will be returned.
5273
+ # @param [Fixnum] partner_id
5274
+ # Required. The ID of the partner through which the Floodlight activities are
5275
+ # being accessed.
5276
+ # @param [String] fields
5277
+ # Selector specifying which fields to include in a partial response.
5278
+ # @param [String] quota_user
5279
+ # Available to use for quota purposes for server-side applications. Can be any
5280
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
5281
+ # @param [Google::Apis::RequestOptions] options
5282
+ # Request-specific options
5283
+ #
5284
+ # @yield [result, err] Result & error if block supplied
5285
+ # @yieldparam result [Google::Apis::DisplayvideoV2::ListFloodlightActivitiesResponse] parsed result object
5286
+ # @yieldparam err [StandardError] error object if request failed
5287
+ #
5288
+ # @return [Google::Apis::DisplayvideoV2::ListFloodlightActivitiesResponse]
5289
+ #
5290
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
5291
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
5292
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
5293
+ def list_floodlight_group_floodlight_activities(floodlight_group_id, order_by: nil, page_size: nil, page_token: nil, partner_id: nil, fields: nil, quota_user: nil, options: nil, &block)
5294
+ command = make_simple_command(:get, 'v2/floodlightGroups/{+floodlightGroupId}/floodlightActivities', options)
5295
+ command.response_representation = Google::Apis::DisplayvideoV2::ListFloodlightActivitiesResponse::Representation
5296
+ command.response_class = Google::Apis::DisplayvideoV2::ListFloodlightActivitiesResponse
5297
+ command.params['floodlightGroupId'] = floodlight_group_id unless floodlight_group_id.nil?
5298
+ command.query['orderBy'] = order_by unless order_by.nil?
5299
+ command.query['pageSize'] = page_size unless page_size.nil?
5300
+ command.query['pageToken'] = page_token unless page_token.nil?
5301
+ command.query['partnerId'] = partner_id unless partner_id.nil?
5302
+ command.query['fields'] = fields unless fields.nil?
5303
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
5304
+ execute_or_queue_command(command, &block)
5305
+ end
5306
+
5215
5307
  # Gets a Google audience.
5216
5308
  # @param [Fixnum] google_audience_id
5217
5309
  # Required. The ID of the Google audience to fetch.
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.29.0
4
+ version: 0.31.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-01-07 00:00:00.000000000 Z
11
+ date: 2024-01-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.11.0
19
+ version: 0.12.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.11.0
29
+ version: 0.12.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.29.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-displayvideo_v2/v0.31.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: []