google-apis-admob_v1beta 0.26.0 → 0.28.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4be8ce3f9ea7a9ec90db734c9d2cae9bb4612918f936c6834c52558a6cabc6de
|
4
|
+
data.tar.gz: 484a4cb157a6814bd22b7af1255d3d0aff0a584d34229ffc97a0acc02f67f1e8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bc4b4a9d9db731c87ea11802b5d3fb11dec441f6e3cf2b638b94fdbfed83563137c099e2243b681a19796a1e1a50ab5e98eeab2d408d6f6159d198e293ac4857
|
7
|
+
data.tar.gz: d91f5851d2e5dabd7726da80c7ed7ff801a06af8475e6cb27c7b20d7f8d43bc3ea56b680770ef856bba89cedb92f442b63716c4f8901d7f8832bae07d4c1a94c
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-admob_v1beta
|
2
2
|
|
3
|
+
### v0.28.0 (2024-01-23)
|
4
|
+
|
5
|
+
* Regenerated using generator version 0.13.0
|
6
|
+
|
7
|
+
### v0.27.0 (2023-11-19)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20231113
|
10
|
+
|
3
11
|
### v0.26.0 (2023-09-17)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230912
|
@@ -1016,12 +1016,24 @@ module Google
|
|
1016
1016
|
# @return [String]
|
1017
1017
|
attr_accessor :display_name
|
1018
1018
|
|
1019
|
+
# Output only. The time at which the experiment was ended or target to end (in
|
1020
|
+
# UTC).
|
1021
|
+
# Corresponds to the JSON property `endTime`
|
1022
|
+
# @return [String]
|
1023
|
+
attr_accessor :end_time
|
1024
|
+
|
1019
1025
|
# Output only. Unique identifier for the mediation A/B experiment. It is an
|
1020
1026
|
# output only property.
|
1021
1027
|
# Corresponds to the JSON property `experimentId`
|
1022
1028
|
# @return [String]
|
1023
1029
|
attr_accessor :experiment_id
|
1024
1030
|
|
1031
|
+
# Output only. The mediation group id this experiment belongs to. This can be
|
1032
|
+
# used for filtering the experiments in the list experiments API.
|
1033
|
+
# Corresponds to the JSON property `mediationGroupId`
|
1034
|
+
# @return [String]
|
1035
|
+
attr_accessor :mediation_group_id
|
1036
|
+
|
1025
1037
|
# Resource name for this experiment. The format is accounts/`publisher_id`/
|
1026
1038
|
# mediationGroups/`mediation_group_id`/mediationAbExperiment/ `
|
1027
1039
|
# mediation_group_experiment_id`. For example: accounts/pub-9876543210987654/
|
@@ -1030,6 +1042,11 @@ module Google
|
|
1030
1042
|
# @return [String]
|
1031
1043
|
attr_accessor :name
|
1032
1044
|
|
1045
|
+
# Output only. The time at which the experiment was started (in UTC).
|
1046
|
+
# Corresponds to the JSON property `startTime`
|
1047
|
+
# @return [String]
|
1048
|
+
attr_accessor :start_time
|
1049
|
+
|
1033
1050
|
# Output only. The state of the experiment. It is an output only field.
|
1034
1051
|
# Corresponds to the JSON property `state`
|
1035
1052
|
# @return [String]
|
@@ -1049,6 +1066,12 @@ module Google
|
|
1049
1066
|
# @return [Fixnum]
|
1050
1067
|
attr_accessor :treatment_traffic_percentage
|
1051
1068
|
|
1069
|
+
# Output only. The variant leader for the experiment according to some key
|
1070
|
+
# metrics.
|
1071
|
+
# Corresponds to the JSON property `variantLeader`
|
1072
|
+
# @return [String]
|
1073
|
+
attr_accessor :variant_leader
|
1074
|
+
|
1052
1075
|
def initialize(**args)
|
1053
1076
|
update!(**args)
|
1054
1077
|
end
|
@@ -1057,11 +1080,15 @@ module Google
|
|
1057
1080
|
def update!(**args)
|
1058
1081
|
@control_mediation_lines = args[:control_mediation_lines] if args.key?(:control_mediation_lines)
|
1059
1082
|
@display_name = args[:display_name] if args.key?(:display_name)
|
1083
|
+
@end_time = args[:end_time] if args.key?(:end_time)
|
1060
1084
|
@experiment_id = args[:experiment_id] if args.key?(:experiment_id)
|
1085
|
+
@mediation_group_id = args[:mediation_group_id] if args.key?(:mediation_group_id)
|
1061
1086
|
@name = args[:name] if args.key?(:name)
|
1087
|
+
@start_time = args[:start_time] if args.key?(:start_time)
|
1062
1088
|
@state = args[:state] if args.key?(:state)
|
1063
1089
|
@treatment_mediation_lines = args[:treatment_mediation_lines] if args.key?(:treatment_mediation_lines)
|
1064
1090
|
@treatment_traffic_percentage = args[:treatment_traffic_percentage] if args.key?(:treatment_traffic_percentage)
|
1091
|
+
@variant_leader = args[:variant_leader] if args.key?(:variant_leader)
|
1065
1092
|
end
|
1066
1093
|
end
|
1067
1094
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module AdmobV1beta
|
18
18
|
# Version of the google-apis-admob_v1beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.28.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.13.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20231113"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -598,12 +598,16 @@ module Google
|
|
598
598
|
collection :control_mediation_lines, as: 'controlMediationLines', class: Google::Apis::AdmobV1beta::MediationAbExperimentExperimentMediationLine, decorator: Google::Apis::AdmobV1beta::MediationAbExperimentExperimentMediationLine::Representation
|
599
599
|
|
600
600
|
property :display_name, as: 'displayName'
|
601
|
+
property :end_time, as: 'endTime'
|
601
602
|
property :experiment_id, as: 'experimentId'
|
603
|
+
property :mediation_group_id, as: 'mediationGroupId'
|
602
604
|
property :name, as: 'name'
|
605
|
+
property :start_time, as: 'startTime'
|
603
606
|
property :state, as: 'state'
|
604
607
|
collection :treatment_mediation_lines, as: 'treatmentMediationLines', class: Google::Apis::AdmobV1beta::MediationAbExperimentExperimentMediationLine, decorator: Google::Apis::AdmobV1beta::MediationAbExperimentExperimentMediationLine::Representation
|
605
608
|
|
606
609
|
property :treatment_traffic_percentage, :numeric_string => true, as: 'treatmentTrafficPercentage'
|
610
|
+
property :variant_leader, as: 'variantLeader'
|
607
611
|
end
|
608
612
|
end
|
609
613
|
|
@@ -33,6 +33,8 @@ module Google
|
|
33
33
|
#
|
34
34
|
# @see https://developers.google.com/admob/api/
|
35
35
|
class AdMobService < Google::Apis::Core::BaseService
|
36
|
+
DEFAULT_ENDPOINT_TEMPLATE = "https://admob.$UNIVERSE_DOMAIN$/"
|
37
|
+
|
36
38
|
# @return [String]
|
37
39
|
# API key. Your API key identifies your project and provides you with API access,
|
38
40
|
# quota, and reports. Required unless you provide an OAuth 2.0 token.
|
@@ -44,7 +46,7 @@ module Google
|
|
44
46
|
attr_accessor :quota_user
|
45
47
|
|
46
48
|
def initialize
|
47
|
-
super(
|
49
|
+
super(DEFAULT_ENDPOINT_TEMPLATE, '',
|
48
50
|
client_name: 'google-apis-admob_v1beta',
|
49
51
|
client_version: Google::Apis::AdmobV1beta::GEM_VERSION)
|
50
52
|
@batch_path = 'batch'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-admob_v1beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.28.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:
|
11
|
+
date: 2024-01-23 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.
|
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.
|
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-admob_v1beta/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-admob_v1beta/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-admob_v1beta/v0.28.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-admob_v1beta
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.
|
78
|
+
rubygems_version: 3.5.3
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for AdMob API V1beta
|