google-apis-analyticsadmin_v1alpha 0.56.0 → 0.58.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/analyticsadmin_v1alpha/classes.rb +6 -0
- data/lib/google/apis/analyticsadmin_v1alpha/gem_version.rb +2 -2
- data/lib/google/apis/analyticsadmin_v1alpha/representations.rb +1 -0
- data/lib/google/apis/analyticsadmin_v1alpha/service.rb +6 -1
- data/lib/google/apis/analyticsadmin_v1alpha.rb +6 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '093f5b0f031f0dd4e7ca9a97c0b997b098003a415658c62b2b68eb09c25b0868'
|
|
4
|
+
data.tar.gz: 638ddad531350cbc2a97ac4ba03697cf5646dbe31144448cafa7eb8dfc302dc7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c94ab71c88f42a326c69b904d4e7e2ec463350e2b11a74687214f7b976da21914669e6d55b5d3d00452536c2b20aa8097f77035dc8dcb2092da680d9814d4238
|
|
7
|
+
data.tar.gz: dc15d241e75260c822a84b9fe8c047b9afe10b5b78a3d9115f43b4c830ad49d5f990e089c8ad6cedbcc3d67ea223b3002e0b227ffa68d5b679852819c8c72138
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-analyticsadmin_v1alpha
|
|
2
2
|
|
|
3
|
+
### v0.58.0 (2023-07-09)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20230704
|
|
6
|
+
|
|
7
|
+
### v0.57.0 (2023-06-25)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20230622
|
|
10
|
+
|
|
3
11
|
### v0.56.0 (2023-06-18)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20230615
|
|
@@ -845,6 +845,11 @@ module Google
|
|
|
845
845
|
# @return [String]
|
|
846
846
|
attr_accessor :acquisition_conversion_event_lookback_window
|
|
847
847
|
|
|
848
|
+
# Required. The Conversion Export Scope for data exported to linked Ads Accounts.
|
|
849
|
+
# Corresponds to the JSON property `adsWebConversionDataExportScope`
|
|
850
|
+
# @return [String]
|
|
851
|
+
attr_accessor :ads_web_conversion_data_export_scope
|
|
852
|
+
|
|
848
853
|
# Output only. Resource name of this attribution settings resource. Format:
|
|
849
854
|
# properties/`property_id`/attributionSettings Example: "properties/1000/
|
|
850
855
|
# attributionSettings"
|
|
@@ -873,6 +878,7 @@ module Google
|
|
|
873
878
|
# Update properties of this object
|
|
874
879
|
def update!(**args)
|
|
875
880
|
@acquisition_conversion_event_lookback_window = args[:acquisition_conversion_event_lookback_window] if args.key?(:acquisition_conversion_event_lookback_window)
|
|
881
|
+
@ads_web_conversion_data_export_scope = args[:ads_web_conversion_data_export_scope] if args.key?(:ads_web_conversion_data_export_scope)
|
|
876
882
|
@name = args[:name] if args.key?(:name)
|
|
877
883
|
@other_conversion_event_lookback_window = args[:other_conversion_event_lookback_window] if args.key?(:other_conversion_event_lookback_window)
|
|
878
884
|
@reporting_attribution_model = args[:reporting_attribution_model] if args.key?(:reporting_attribution_model)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module AnalyticsadminV1alpha
|
|
18
18
|
# Version of the google-apis-analyticsadmin_v1alpha gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.58.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20230704"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1200,6 +1200,7 @@ module Google
|
|
|
1200
1200
|
# @private
|
|
1201
1201
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1202
1202
|
property :acquisition_conversion_event_lookback_window, as: 'acquisitionConversionEventLookbackWindow'
|
|
1203
|
+
property :ads_web_conversion_data_export_scope, as: 'adsWebConversionDataExportScope'
|
|
1203
1204
|
property :name, as: 'name'
|
|
1204
1205
|
property :other_conversion_event_lookback_window, as: 'otherConversionEventLookbackWindow'
|
|
1205
1206
|
property :reporting_attribution_model, as: 'reportingAttributionModel'
|
|
@@ -22,7 +22,12 @@ module Google
|
|
|
22
22
|
module AnalyticsadminV1alpha
|
|
23
23
|
# Google Analytics Admin API
|
|
24
24
|
#
|
|
25
|
-
#
|
|
25
|
+
# Manage properties in Google Analytics. Warning: Creating multiple Customer
|
|
26
|
+
# Applications, Accounts, or Projects to simulate or act as a single Customer
|
|
27
|
+
# Application, Account, or Project (respectively) or to circumvent Service-
|
|
28
|
+
# specific usage limits or quotas is a direct violation of Google Cloud Platform
|
|
29
|
+
# Terms of Service as well as Google APIs Terms of Service. These actions can
|
|
30
|
+
# result in immediate termination of your GCP project(s) without any warning.
|
|
26
31
|
#
|
|
27
32
|
# @example
|
|
28
33
|
# require 'google/apis/analyticsadmin_v1alpha'
|
|
@@ -21,7 +21,12 @@ module Google
|
|
|
21
21
|
module Apis
|
|
22
22
|
# Google Analytics Admin API
|
|
23
23
|
#
|
|
24
|
-
#
|
|
24
|
+
# Manage properties in Google Analytics. Warning: Creating multiple Customer
|
|
25
|
+
# Applications, Accounts, or Projects to simulate or act as a single Customer
|
|
26
|
+
# Application, Account, or Project (respectively) or to circumvent Service-
|
|
27
|
+
# specific usage limits or quotas is a direct violation of Google Cloud Platform
|
|
28
|
+
# Terms of Service as well as Google APIs Terms of Service. These actions can
|
|
29
|
+
# result in immediate termination of your GCP project(s) without any warning.
|
|
25
30
|
#
|
|
26
31
|
# @see http://code.google.com/apis/analytics/docs/mgmt/home.html
|
|
27
32
|
module AnalyticsadminV1alpha
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-analyticsadmin_v1alpha
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.58.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: 2023-
|
|
11
|
+
date: 2023-07-09 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-analyticsadmin_v1alpha/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-analyticsadmin_v1alpha/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-analyticsadmin_v1alpha/v0.58.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-analyticsadmin_v1alpha
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|