google-apis-adsense_v2 0.31.0 → 0.33.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: eda84d6da37ad87bfab1f53d06ef03b0e946231f021b0807027697fe3fb0842b
4
- data.tar.gz: cf26a621baa2d2e20db864af539229c887f4f633dd066bf225771b22b59bad87
3
+ metadata.gz: 91c475a801903efdb8be13a8c8f8655398befebf27830762a8923d4aba3980b3
4
+ data.tar.gz: e87b83f0239ccd7eb80f13ac9cfac2b084557c5fa080973bac918e956a22d93f
5
5
  SHA512:
6
- metadata.gz: 9a77d063a7939d176dd090d9dc6707549ec853a4173b88207635bd21b92496cd0cf7af7482827344b46734747f7db8c643ffeb38a4a8c14608c4875d04a12455
7
- data.tar.gz: b8e3193916a87fd13007040cef7db37d3c2bf5c950f1b4f9b3b76480785af041402c9c7c1317555f89621ac6fba1426bfa1d511b5543d4be297e22f6839bb64e
6
+ metadata.gz: 0d13d93708bfb51373dd21ed1b0b488b834e6fac3558df7aeee116e3777d3525c5c2b8d7284b566475ad14fc68e90b1a11e27941aa5454920b31be208f763ec4
7
+ data.tar.gz: 20a4a250d003438c5948293d814e43bec5470e5e165875617ce4febdc60038350361a5c01f381cf3c7af116bf193b75fb6ecf2b21ae0be8b230fd1d5043bbce7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-adsense_v2
2
2
 
3
+ ### v0.33.0 (2024-03-31)
4
+
5
+ * Regenerated from discovery document revision 20240324
6
+
7
+ ### v0.32.0 (2024-03-24)
8
+
9
+ * Regenerated from discovery document revision 20240320
10
+
3
11
  ### v0.31.0 (2024-02-24)
4
12
 
5
13
  * Regenerated using generator version 0.14.0
@@ -739,6 +739,35 @@ module Google
739
739
  end
740
740
  end
741
741
 
742
+ # Response definition for the policy issues list rpc. Policy issues are reported
743
+ # only if the publisher has at least one AFC ad client in READY or GETTING_READY
744
+ # state. If the publisher has no such AFC ad client, the response will be an
745
+ # empty list.
746
+ class ListPolicyIssuesResponse
747
+ include Google::Apis::Core::Hashable
748
+
749
+ # Continuation token used to page through policy issues. To retrieve the next
750
+ # page of the results, set the next request's "page_token" value to this.
751
+ # Corresponds to the JSON property `nextPageToken`
752
+ # @return [String]
753
+ attr_accessor :next_page_token
754
+
755
+ # The policy issues returned in the list response.
756
+ # Corresponds to the JSON property `policyIssues`
757
+ # @return [Array<Google::Apis::AdsenseV2::PolicyIssue>]
758
+ attr_accessor :policy_issues
759
+
760
+ def initialize(**args)
761
+ update!(**args)
762
+ end
763
+
764
+ # Update properties of this object
765
+ def update!(**args)
766
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
767
+ @policy_issues = args[:policy_issues] if args.key?(:policy_issues)
768
+ end
769
+ end
770
+
742
771
  # Response definition for the saved reports list rpc.
743
772
  class ListSavedReportsResponse
744
773
  include Google::Apis::Core::Hashable
@@ -864,6 +893,162 @@ module Google
864
893
  end
865
894
  end
866
895
 
896
+ # Representation of a policy issue for a single entity (site, site-section, or
897
+ # page). All issues for a single entity are represented by a single PolicyIssue
898
+ # resource, though that PolicyIssue can have multiple causes (or "topics") that
899
+ # can change over time. Policy issues are removed if there are no issues
900
+ # detected recently or if there's a recent successful appeal for the entity.
901
+ class PolicyIssue
902
+ include Google::Apis::Core::Hashable
903
+
904
+ # Required. The most severe action taken on the entity over the past seven days.
905
+ # Corresponds to the JSON property `action`
906
+ # @return [String]
907
+ attr_accessor :action
908
+
909
+ # Optional. List of ad clients associated with the policy issue (either as the
910
+ # primary ad client or an associated host/secondary ad client). In the latter
911
+ # case, this will be an ad client that is not owned by the current account.
912
+ # Corresponds to the JSON property `adClients`
913
+ # @return [Array<String>]
914
+ attr_accessor :ad_clients
915
+
916
+ # Required. Total number of ad requests affected by the policy violations over
917
+ # the past seven days.
918
+ # Corresponds to the JSON property `adRequestCount`
919
+ # @return [Fixnum]
920
+ attr_accessor :ad_request_count
921
+
922
+ # Required. Type of the entity indicating if the entity is a site, site-section,
923
+ # or page.
924
+ # Corresponds to the JSON property `entityType`
925
+ # @return [String]
926
+ attr_accessor :entity_type
927
+
928
+ # Represents a whole or partial calendar date, such as a birthday. The time of
929
+ # day and time zone are either specified elsewhere or are insignificant. The
930
+ # date is relative to the Gregorian Calendar. This can represent one of the
931
+ # following: * A full date, with non-zero year, month, and day values. * A month
932
+ # and day, with a zero year (for example, an anniversary). * A year on its own,
933
+ # with a zero month and a zero day. * A year and month, with a zero day (for
934
+ # example, a credit card expiration date). Related types: * google.type.
935
+ # TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
936
+ # Corresponds to the JSON property `firstDetectedDate`
937
+ # @return [Google::Apis::AdsenseV2::Date]
938
+ attr_accessor :first_detected_date
939
+
940
+ # Represents a whole or partial calendar date, such as a birthday. The time of
941
+ # day and time zone are either specified elsewhere or are insignificant. The
942
+ # date is relative to the Gregorian Calendar. This can represent one of the
943
+ # following: * A full date, with non-zero year, month, and day values. * A month
944
+ # and day, with a zero year (for example, an anniversary). * A year on its own,
945
+ # with a zero month and a zero day. * A year and month, with a zero day (for
946
+ # example, a credit card expiration date). Related types: * google.type.
947
+ # TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
948
+ # Corresponds to the JSON property `lastDetectedDate`
949
+ # @return [Google::Apis::AdsenseV2::Date]
950
+ attr_accessor :last_detected_date
951
+
952
+ # Required. Resource name of the entity with policy issues. Format: accounts/`
953
+ # account`/policyIssues/`policy_issue`
954
+ # Corresponds to the JSON property `name`
955
+ # @return [String]
956
+ attr_accessor :name
957
+
958
+ # Required. Unordered list. The policy topics that this entity was found to
959
+ # violate over the past seven days.
960
+ # Corresponds to the JSON property `policyTopics`
961
+ # @return [Array<Google::Apis::AdsenseV2::PolicyTopic>]
962
+ attr_accessor :policy_topics
963
+
964
+ # Required. Hostname/domain of the entity (for example "foo.com" or "www.foo.com"
965
+ # ). This _should_ be a bare domain/host name without any protocol. This will be
966
+ # present for all policy issues.
967
+ # Corresponds to the JSON property `site`
968
+ # @return [String]
969
+ attr_accessor :site
970
+
971
+ # Optional. Prefix of the site-section having policy issues (For example "foo.
972
+ # com/bar-section"). This will be present if the `entity_type` is `SITE_SECTION`
973
+ # and will be absent for other entity types.
974
+ # Corresponds to the JSON property `siteSection`
975
+ # @return [String]
976
+ attr_accessor :site_section
977
+
978
+ # Optional. URI of the page having policy violations (for example "foo.com/bar"
979
+ # or "www.foo.com/bar"). This will be present if the `entity_type` is `PAGE` and
980
+ # will be absent for other entity types.
981
+ # Corresponds to the JSON property `uri`
982
+ # @return [String]
983
+ attr_accessor :uri
984
+
985
+ # Represents a whole or partial calendar date, such as a birthday. The time of
986
+ # day and time zone are either specified elsewhere or are insignificant. The
987
+ # date is relative to the Gregorian Calendar. This can represent one of the
988
+ # following: * A full date, with non-zero year, month, and day values. * A month
989
+ # and day, with a zero year (for example, an anniversary). * A year on its own,
990
+ # with a zero month and a zero day. * A year and month, with a zero day (for
991
+ # example, a credit card expiration date). Related types: * google.type.
992
+ # TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
993
+ # Corresponds to the JSON property `warningEscalationDate`
994
+ # @return [Google::Apis::AdsenseV2::Date]
995
+ attr_accessor :warning_escalation_date
996
+
997
+ def initialize(**args)
998
+ update!(**args)
999
+ end
1000
+
1001
+ # Update properties of this object
1002
+ def update!(**args)
1003
+ @action = args[:action] if args.key?(:action)
1004
+ @ad_clients = args[:ad_clients] if args.key?(:ad_clients)
1005
+ @ad_request_count = args[:ad_request_count] if args.key?(:ad_request_count)
1006
+ @entity_type = args[:entity_type] if args.key?(:entity_type)
1007
+ @first_detected_date = args[:first_detected_date] if args.key?(:first_detected_date)
1008
+ @last_detected_date = args[:last_detected_date] if args.key?(:last_detected_date)
1009
+ @name = args[:name] if args.key?(:name)
1010
+ @policy_topics = args[:policy_topics] if args.key?(:policy_topics)
1011
+ @site = args[:site] if args.key?(:site)
1012
+ @site_section = args[:site_section] if args.key?(:site_section)
1013
+ @uri = args[:uri] if args.key?(:uri)
1014
+ @warning_escalation_date = args[:warning_escalation_date] if args.key?(:warning_escalation_date)
1015
+ end
1016
+ end
1017
+
1018
+ # Information about a particular policy topic. A policy topic represents a
1019
+ # single class of policy issue that can impact ad serving for your site. For
1020
+ # example, sexual content or having ads that obscure your content. A single
1021
+ # policy issue can have multiple policy topics for a single entity.
1022
+ class PolicyTopic
1023
+ include Google::Apis::Core::Hashable
1024
+
1025
+ # Required. Indicates if this is a policy violation or not. When the value is
1026
+ # true, issues that are instances of this topic must be addressed to remain in
1027
+ # compliance with the partner's agreements with Google. A false value indicates
1028
+ # that it's not mandatory to fix the issues but advertising demand might be
1029
+ # restricted.
1030
+ # Corresponds to the JSON property `mustFix`
1031
+ # @return [Boolean]
1032
+ attr_accessor :must_fix
1033
+ alias_method :must_fix?, :must_fix
1034
+
1035
+ # Required. The policy topic. For example, "sexual-content" or "ads-obscuring-
1036
+ # content"."
1037
+ # Corresponds to the JSON property `topic`
1038
+ # @return [String]
1039
+ attr_accessor :topic
1040
+
1041
+ def initialize(**args)
1042
+ update!(**args)
1043
+ end
1044
+
1045
+ # Update properties of this object
1046
+ def update!(**args)
1047
+ @must_fix = args[:must_fix] if args.key?(:must_fix)
1048
+ @topic = args[:topic] if args.key?(:topic)
1049
+ end
1050
+ end
1051
+
867
1052
  # Result of a generated report.
868
1053
  class ReportResult
869
1054
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module AdsenseV2
18
18
  # Version of the google-apis-adsense_v2 gem
19
- GEM_VERSION = "0.31.0"
19
+ GEM_VERSION = "0.33.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20231016"
25
+ REVISION = "20240324"
26
26
  end
27
27
  end
28
28
  end
@@ -160,6 +160,12 @@ module Google
160
160
  include Google::Apis::Core::JsonObjectSupport
161
161
  end
162
162
 
163
+ class ListPolicyIssuesResponse
164
+ class Representation < Google::Apis::Core::JsonRepresentation; end
165
+
166
+ include Google::Apis::Core::JsonObjectSupport
167
+ end
168
+
163
169
  class ListSavedReportsResponse
164
170
  class Representation < Google::Apis::Core::JsonRepresentation; end
165
171
 
@@ -184,6 +190,18 @@ module Google
184
190
  include Google::Apis::Core::JsonObjectSupport
185
191
  end
186
192
 
193
+ class PolicyIssue
194
+ class Representation < Google::Apis::Core::JsonRepresentation; end
195
+
196
+ include Google::Apis::Core::JsonObjectSupport
197
+ end
198
+
199
+ class PolicyTopic
200
+ class Representation < Google::Apis::Core::JsonRepresentation; end
201
+
202
+ include Google::Apis::Core::JsonObjectSupport
203
+ end
204
+
187
205
  class ReportResult
188
206
  class Representation < Google::Apis::Core::JsonRepresentation; end
189
207
 
@@ -427,6 +445,15 @@ module Google
427
445
  end
428
446
  end
429
447
 
448
+ class ListPolicyIssuesResponse
449
+ # @private
450
+ class Representation < Google::Apis::Core::JsonRepresentation
451
+ property :next_page_token, as: 'nextPageToken'
452
+ collection :policy_issues, as: 'policyIssues', class: Google::Apis::AdsenseV2::PolicyIssue, decorator: Google::Apis::AdsenseV2::PolicyIssue::Representation
453
+
454
+ end
455
+ end
456
+
430
457
  class ListSavedReportsResponse
431
458
  # @private
432
459
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -464,6 +491,36 @@ module Google
464
491
  end
465
492
  end
466
493
 
494
+ class PolicyIssue
495
+ # @private
496
+ class Representation < Google::Apis::Core::JsonRepresentation
497
+ property :action, as: 'action'
498
+ collection :ad_clients, as: 'adClients'
499
+ property :ad_request_count, :numeric_string => true, as: 'adRequestCount'
500
+ property :entity_type, as: 'entityType'
501
+ property :first_detected_date, as: 'firstDetectedDate', class: Google::Apis::AdsenseV2::Date, decorator: Google::Apis::AdsenseV2::Date::Representation
502
+
503
+ property :last_detected_date, as: 'lastDetectedDate', class: Google::Apis::AdsenseV2::Date, decorator: Google::Apis::AdsenseV2::Date::Representation
504
+
505
+ property :name, as: 'name'
506
+ collection :policy_topics, as: 'policyTopics', class: Google::Apis::AdsenseV2::PolicyTopic, decorator: Google::Apis::AdsenseV2::PolicyTopic::Representation
507
+
508
+ property :site, as: 'site'
509
+ property :site_section, as: 'siteSection'
510
+ property :uri, as: 'uri'
511
+ property :warning_escalation_date, as: 'warningEscalationDate', class: Google::Apis::AdsenseV2::Date, decorator: Google::Apis::AdsenseV2::Date::Representation
512
+
513
+ end
514
+ end
515
+
516
+ class PolicyTopic
517
+ # @private
518
+ class Representation < Google::Apis::Core::JsonRepresentation
519
+ property :must_fix, as: 'mustFix'
520
+ property :topic, as: 'topic'
521
+ end
522
+ end
523
+
467
524
  class ReportResult
468
525
  # @private
469
526
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -298,13 +298,14 @@ module Google
298
298
  execute_or_queue_command(command, &block)
299
299
  end
300
300
 
301
- # Creates an ad unit. This method can only be used by projects enabled for the [
302
- # AdSense for Platforms](https://developers.google.com/adsense/platforms/)
303
- # product. Note that ad units can only be created for ad clients with an "AFC"
304
- # product code. For more info see the [AdClient resource](/adsense/management/
305
- # reference/rest/v2/accounts.adclients). For now, this method can only be used
306
- # to create `DISPLAY` ad units. See: https://support.google.com/adsense/answer/
307
- # 9183566
301
+ # Creates an ad unit. This method can be called only by a restricted set of
302
+ # projects, which are usually owned by [AdSense for Platforms](https://
303
+ # developers.google.com/adsense/platforms/) publishers. Contact your account
304
+ # manager if you need to use this method. Note that ad units can only be created
305
+ # for ad clients with an "AFC" product code. For more info see the [AdClient
306
+ # resource](/adsense/management/reference/rest/v2/accounts.adclients). For now,
307
+ # this method can only be used to create `DISPLAY` ad units. See: https://
308
+ # support.google.com/adsense/answer/9183566
308
309
  # @param [String] parent
309
310
  # Required. Ad client to create an ad unit under. Format: accounts/`account`/
310
311
  # adclients/`adclient`
@@ -486,10 +487,12 @@ module Google
486
487
  execute_or_queue_command(command, &block)
487
488
  end
488
489
 
489
- # Updates an ad unit. This method can only be used by projects enabled for the [
490
- # AdSense for Platforms](https://developers.google.com/adsense/platforms/)
491
- # product. For now, this method can only be used to update `DISPLAY` ad units.
492
- # See: https://support.google.com/adsense/answer/9183566
490
+ # Updates an ad unit. This method can be called only by a restricted set of
491
+ # projects, which are usually owned by [AdSense for Platforms](https://
492
+ # developers.google.com/adsense/platforms/) publishers. Contact your account
493
+ # manager if you need to use this method. For now, this method can only be used
494
+ # to update `DISPLAY` ad units. See: https://support.google.com/adsense/answer/
495
+ # 9183566
493
496
  # @param [String] name
494
497
  # Output only. Resource name of the ad unit. Format: accounts/`account`/
495
498
  # adclients/`adclient`/adunits/`adunit`
@@ -526,9 +529,10 @@ module Google
526
529
  execute_or_queue_command(command, &block)
527
530
  end
528
531
 
529
- # Creates a custom channel. This method can only be used by projects enabled for
530
- # the [AdSense for Platforms](https://developers.google.com/adsense/platforms/)
531
- # product.
532
+ # Creates a custom channel. This method can be called only by a restricted set
533
+ # of projects, which are usually owned by [AdSense for Platforms](https://
534
+ # developers.google.com/adsense/platforms/) publishers. Contact your account
535
+ # manager if you need to use this method.
532
536
  # @param [String] parent
533
537
  # Required. The ad client to create a custom channel under. Format: accounts/`
534
538
  # account`/adclients/`adclient`
@@ -562,9 +566,10 @@ module Google
562
566
  execute_or_queue_command(command, &block)
563
567
  end
564
568
 
565
- # Deletes a custom channel. This method can only be used by projects enabled for
566
- # the [AdSense for Platforms](https://developers.google.com/adsense/platforms/)
567
- # product.
569
+ # Deletes a custom channel. This method can be called only by a restricted set
570
+ # of projects, which are usually owned by [AdSense for Platforms](https://
571
+ # developers.google.com/adsense/platforms/) publishers. Contact your account
572
+ # manager if you need to use this method.
568
573
  # @param [String] name
569
574
  # Required. Name of the custom channel to delete. Format: accounts/`account`/
570
575
  # adclients/`adclient`/customchannels/`customchannel`
@@ -710,9 +715,10 @@ module Google
710
715
  execute_or_queue_command(command, &block)
711
716
  end
712
717
 
713
- # Updates a custom channel. This method can only be used by projects enabled for
714
- # the [AdSense for Platforms](https://developers.google.com/adsense/platforms/)
715
- # product.
718
+ # Updates a custom channel. This method can be called only by a restricted set
719
+ # of projects, which are usually owned by [AdSense for Platforms](https://
720
+ # developers.google.com/adsense/platforms/) publishers. Contact your account
721
+ # manager if you need to use this method.
716
722
  # @param [String] name
717
723
  # Output only. Resource name of the custom channel. Format: accounts/`account`/
718
724
  # adclients/`adclient`/customchannels/`customchannel`
@@ -889,6 +895,79 @@ module Google
889
895
  execute_or_queue_command(command, &block)
890
896
  end
891
897
 
898
+ # Gets information about the selected policy issue.
899
+ # @param [String] name
900
+ # Required. Name of the policy issue. Format: accounts/`account`/policyIssues/`
901
+ # policy_issue`
902
+ # @param [String] fields
903
+ # Selector specifying which fields to include in a partial response.
904
+ # @param [String] quota_user
905
+ # Available to use for quota purposes for server-side applications. Can be any
906
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
907
+ # @param [Google::Apis::RequestOptions] options
908
+ # Request-specific options
909
+ #
910
+ # @yield [result, err] Result & error if block supplied
911
+ # @yieldparam result [Google::Apis::AdsenseV2::PolicyIssue] parsed result object
912
+ # @yieldparam err [StandardError] error object if request failed
913
+ #
914
+ # @return [Google::Apis::AdsenseV2::PolicyIssue]
915
+ #
916
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
917
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
918
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
919
+ def get_account_policy_issue(name, fields: nil, quota_user: nil, options: nil, &block)
920
+ command = make_simple_command(:get, 'v2/{+name}', options)
921
+ command.response_representation = Google::Apis::AdsenseV2::PolicyIssue::Representation
922
+ command.response_class = Google::Apis::AdsenseV2::PolicyIssue
923
+ command.params['name'] = name unless name.nil?
924
+ command.query['fields'] = fields unless fields.nil?
925
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
926
+ execute_or_queue_command(command, &block)
927
+ end
928
+
929
+ # Lists all the policy issues for the specified account.
930
+ # @param [String] parent
931
+ # Required. The account for which policy issues are being retrieved. Format:
932
+ # accounts/`account`
933
+ # @param [Fixnum] page_size
934
+ # The maximum number of policy issues to include in the response, used for
935
+ # paging. If unspecified, at most 10000 policy issues will be returned. The
936
+ # maximum value is 10000; values above 10000 will be coerced to 10000.
937
+ # @param [String] page_token
938
+ # A page token, received from a previous `ListPolicyIssues` call. Provide this
939
+ # to retrieve the subsequent page. When paginating, all other parameters
940
+ # provided to `ListPolicyIssues` must match the call that provided the page
941
+ # token.
942
+ # @param [String] fields
943
+ # Selector specifying which fields to include in a partial response.
944
+ # @param [String] quota_user
945
+ # Available to use for quota purposes for server-side applications. Can be any
946
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
947
+ # @param [Google::Apis::RequestOptions] options
948
+ # Request-specific options
949
+ #
950
+ # @yield [result, err] Result & error if block supplied
951
+ # @yieldparam result [Google::Apis::AdsenseV2::ListPolicyIssuesResponse] parsed result object
952
+ # @yieldparam err [StandardError] error object if request failed
953
+ #
954
+ # @return [Google::Apis::AdsenseV2::ListPolicyIssuesResponse]
955
+ #
956
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
957
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
958
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
959
+ def list_account_policy_issues(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
960
+ command = make_simple_command(:get, 'v2/{+parent}/policyIssues', options)
961
+ command.response_representation = Google::Apis::AdsenseV2::ListPolicyIssuesResponse::Representation
962
+ command.response_class = Google::Apis::AdsenseV2::ListPolicyIssuesResponse
963
+ command.params['parent'] = parent unless parent.nil?
964
+ command.query['pageSize'] = page_size unless page_size.nil?
965
+ command.query['pageToken'] = page_token unless page_token.nil?
966
+ command.query['fields'] = fields unless fields.nil?
967
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
968
+ execute_or_queue_command(command, &block)
969
+ end
970
+
892
971
  # Generates an ad hoc report.
893
972
  # @param [String] account
894
973
  # Required. The account which owns the collection of reports. Format: accounts/`
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-adsense_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.31.0
4
+ version: 0.33.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-02-25 00:00:00.000000000 Z
11
+ date: 2024-03-31 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-adsense_v2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-adsense_v2/v0.31.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-adsense_v2/v0.33.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-adsense_v2
63
63
  post_install_message:
64
64
  rdoc_options: []