google-apis-adsense_v2 0.13.0 → 0.14.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7043c97180eac33f139e24c6d5b027fa7e155ec4fd07cd4869ee0910f44fd37d
|
|
4
|
+
data.tar.gz: c21fc3b437cbed90724fdc24fe6926d0be3ea091101338a15667d4b29f3c747e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1b7f145cd0945220bba3cb8945a76f861ea21e585f19228dda2433558b7de4fae7fec93e4aad00b648342da2ae8a01909edf8bfd65d72b01663ead84105217cd
|
|
7
|
+
data.tar.gz: 9b406757d4de0f7da0b40fd38170aab715b1f634845cb58ea36c1c9524777318d7bec30db42e2f8f9cb60761da6f3966b15d0f15f5f1afc04da8815c4caaf268
|
data/CHANGELOG.md
CHANGED
|
@@ -54,6 +54,11 @@ module Google
|
|
|
54
54
|
attr_accessor :premium
|
|
55
55
|
alias_method :premium?, :premium
|
|
56
56
|
|
|
57
|
+
# Output only. State of the account.
|
|
58
|
+
# Corresponds to the JSON property `state`
|
|
59
|
+
# @return [String]
|
|
60
|
+
attr_accessor :state
|
|
61
|
+
|
|
57
62
|
# Represents a time zone from the [IANA Time Zone Database](https://www.iana.org/
|
|
58
63
|
# time-zones).
|
|
59
64
|
# Corresponds to the JSON property `timeZone`
|
|
@@ -71,6 +76,7 @@ module Google
|
|
|
71
76
|
@name = args[:name] if args.key?(:name)
|
|
72
77
|
@pending_tasks = args[:pending_tasks] if args.key?(:pending_tasks)
|
|
73
78
|
@premium = args[:premium] if args.key?(:premium)
|
|
79
|
+
@state = args[:state] if args.key?(:state)
|
|
74
80
|
@time_zone = args[:time_zone] if args.key?(:time_zone)
|
|
75
81
|
end
|
|
76
82
|
end
|
|
@@ -97,6 +103,11 @@ module Google
|
|
|
97
103
|
# @return [String]
|
|
98
104
|
attr_accessor :reporting_dimension_id
|
|
99
105
|
|
|
106
|
+
# Output only. State of the ad client.
|
|
107
|
+
# Corresponds to the JSON property `state`
|
|
108
|
+
# @return [String]
|
|
109
|
+
attr_accessor :state
|
|
110
|
+
|
|
100
111
|
def initialize(**args)
|
|
101
112
|
update!(**args)
|
|
102
113
|
end
|
|
@@ -106,6 +117,7 @@ module Google
|
|
|
106
117
|
@name = args[:name] if args.key?(:name)
|
|
107
118
|
@product_code = args[:product_code] if args.key?(:product_code)
|
|
108
119
|
@reporting_dimension_id = args[:reporting_dimension_id] if args.key?(:reporting_dimension_id)
|
|
120
|
+
@state = args[:state] if args.key?(:state)
|
|
109
121
|
end
|
|
110
122
|
end
|
|
111
123
|
|
|
@@ -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.
|
|
19
|
+
GEM_VERSION = "0.14.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20220330"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -216,6 +216,7 @@ module Google
|
|
|
216
216
|
property :name, as: 'name'
|
|
217
217
|
collection :pending_tasks, as: 'pendingTasks'
|
|
218
218
|
property :premium, as: 'premium'
|
|
219
|
+
property :state, as: 'state'
|
|
219
220
|
property :time_zone, as: 'timeZone', class: Google::Apis::AdsenseV2::TimeZone, decorator: Google::Apis::AdsenseV2::TimeZone::Representation
|
|
220
221
|
|
|
221
222
|
end
|
|
@@ -227,6 +228,7 @@ module Google
|
|
|
227
228
|
property :name, as: 'name'
|
|
228
229
|
property :product_code, as: 'productCode'
|
|
229
230
|
property :reporting_dimension_id, as: 'reportingDimensionId'
|
|
231
|
+
property :state, as: 'state'
|
|
230
232
|
end
|
|
231
233
|
end
|
|
232
234
|
|
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.
|
|
4
|
+
version: 0.14.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
|
+
date: 2022-04-04 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.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-adsense_v2/v0.14.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: []
|