google-apis-analyticsadmin_v1alpha 0.26.0 → 0.29.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: d0ad025f8392744b771e491eecab3ddfe9915a21fb56e3bd992b8ffb9e88268c
4
- data.tar.gz: 1b01b18de3830539919ce32b79515322aba7b8be6acbf4a2cec65448eccff728
3
+ metadata.gz: 8997904c942768285965989f7b6b4f1a9713fa9b06b2278f13d7b04de89719ac
4
+ data.tar.gz: fc3b5d5c8c38d2132ef6089519c06890a47d67ecca1663257ec98cfcadca7bec
5
5
  SHA512:
6
- metadata.gz: 955a85720373e49037dcd914e35252ab8f88d227b0d97dd6916c537348c85c6ceff33d931b341c83a25974d0006a49800f28e558d5183a246f30fb5b88a01aab
7
- data.tar.gz: 1ddf3a2f8bed4dcafb82e943c95fe403098660415a163cb0de3888822687b24a06a0899b5964dc8ae472724468ad9204034b2761c7afa1fd66213f73ce69f176
6
+ metadata.gz: 0faf70224d76cca9a2534af5dff4238fc6ece38aacb60e854cb0d53f65df78044987e20736dbd3dbed068e7996d1c023f9c05aa5bab8485022a66183aae185c0
7
+ data.tar.gz: 599a72810b717aff0a3a347226541090aec5409e25c169f1905f2fbeefe4cecdfa55fd4f445c96b2fdb0c68b72d4107d0491272c77587401cc44b297921e9c7d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-analyticsadmin_v1alpha
2
2
 
3
+ ### v0.29.0 (2022-06-02)
4
+
5
+ * Unspecified changes
6
+
7
+ ### v0.28.0 (2022-03-22)
8
+
9
+ * Regenerated from discovery document revision 20220319
10
+
11
+ ### v0.27.0 (2022-03-16)
12
+
13
+ * Regenerated from discovery document revision 20220315
14
+
3
15
  ### v0.26.0 (2022-02-24)
4
16
 
5
17
  * Regenerated from discovery document revision 20220222
@@ -1797,7 +1797,7 @@ module Google
1797
1797
  attr_accessor :display_name
1798
1798
 
1799
1799
  # Output only. Resource name of this secret. This secret may be a child of any
1800
- # type of stream. Format: properties/`property`/webDataStreams/`webDataStream`/
1800
+ # type of stream. Format: properties/`property`/dataStreams/`dataStream`/
1801
1801
  # measurementProtocolSecrets/`measurementProtocolSecret`
1802
1802
  # Corresponds to the JSON property `name`
1803
1803
  # @return [String]
@@ -1874,12 +1874,20 @@ module Google
1874
1874
  attr_accessor :name
1875
1875
 
1876
1876
  # Immutable. Resource name of this property's logical parent. Note: The Property-
1877
- # Moving UI can be used to change the parent. Format: accounts/`account` Example:
1878
- # "accounts/100"
1877
+ # Moving UI can be used to change the parent. Format: accounts/`account`,
1878
+ # properties/`property` Example: "accounts/100", "properties/101"
1879
1879
  # Corresponds to the JSON property `parent`
1880
1880
  # @return [String]
1881
1881
  attr_accessor :parent
1882
1882
 
1883
+ # Immutable. The property type for this Property resource. When creating a
1884
+ # property, if the type is "PROPERTY_TYPE_UNSPECIFIED", then "ORDINARY_PROPERTY"
1885
+ # will be implied. "SUBPROPERTY" and "ROLLUP_PROPERTY" types cannot yet be
1886
+ # created via Google Analytics Admin API.
1887
+ # Corresponds to the JSON property `propertyType`
1888
+ # @return [String]
1889
+ attr_accessor :property_type
1890
+
1883
1891
  # Output only. The Google Analytics service level that applies to this property.
1884
1892
  # Corresponds to the JSON property `serviceLevel`
1885
1893
  # @return [String]
@@ -1914,6 +1922,7 @@ module Google
1914
1922
  @industry_category = args[:industry_category] if args.key?(:industry_category)
1915
1923
  @name = args[:name] if args.key?(:name)
1916
1924
  @parent = args[:parent] if args.key?(:parent)
1925
+ @property_type = args[:property_type] if args.key?(:property_type)
1917
1926
  @service_level = args[:service_level] if args.key?(:service_level)
1918
1927
  @time_zone = args[:time_zone] if args.key?(:time_zone)
1919
1928
  @update_time = args[:update_time] if args.key?(:update_time)
@@ -1929,12 +1938,24 @@ module Google
1929
1938
  # @return [String]
1930
1939
  attr_accessor :display_name
1931
1940
 
1941
+ # Resource name of this property's logical parent. Note: The Property-Moving UI
1942
+ # can be used to change the parent. Format: accounts/`account`, properties/`
1943
+ # property` Example: "accounts/100", "properties/200"
1944
+ # Corresponds to the JSON property `parent`
1945
+ # @return [String]
1946
+ attr_accessor :parent
1947
+
1932
1948
  # Resource name of property referred to by this property summary Format:
1933
1949
  # properties/`property_id` Example: "properties/1000"
1934
1950
  # Corresponds to the JSON property `property`
1935
1951
  # @return [String]
1936
1952
  attr_accessor :property
1937
1953
 
1954
+ # The property's property type.
1955
+ # Corresponds to the JSON property `propertyType`
1956
+ # @return [String]
1957
+ attr_accessor :property_type
1958
+
1938
1959
  def initialize(**args)
1939
1960
  update!(**args)
1940
1961
  end
@@ -1942,7 +1963,9 @@ module Google
1942
1963
  # Update properties of this object
1943
1964
  def update!(**args)
1944
1965
  @display_name = args[:display_name] if args.key?(:display_name)
1966
+ @parent = args[:parent] if args.key?(:parent)
1945
1967
  @property = args[:property] if args.key?(:property)
1968
+ @property_type = args[:property_type] if args.key?(:property_type)
1946
1969
  end
1947
1970
  end
1948
1971
 
@@ -2147,8 +2170,7 @@ module Google
2147
2170
  # A generic empty message that you can re-use to avoid defining duplicated empty
2148
2171
  # messages in your APIs. A typical example is to use it as the request or the
2149
2172
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
2150
- # protobuf.Empty) returns (google.protobuf.Empty); ` The JSON representation for
2151
- # `Empty` is empty JSON object ````.
2173
+ # protobuf.Empty) returns (google.protobuf.Empty); `
2152
2174
  class GoogleProtobufEmpty
2153
2175
  include Google::Apis::Core::Hashable
2154
2176
 
@@ -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.26.0"
19
+ GEM_VERSION = "0.29.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 = "20220222"
25
+ REVISION = "20220319"
26
26
  end
27
27
  end
28
28
  end
@@ -924,6 +924,7 @@ module Google
924
924
  property :industry_category, as: 'industryCategory'
925
925
  property :name, as: 'name'
926
926
  property :parent, as: 'parent'
927
+ property :property_type, as: 'propertyType'
927
928
  property :service_level, as: 'serviceLevel'
928
929
  property :time_zone, as: 'timeZone'
929
930
  property :update_time, as: 'updateTime'
@@ -934,7 +935,9 @@ module Google
934
935
  # @private
935
936
  class Representation < Google::Apis::Core::JsonRepresentation
936
937
  property :display_name, as: 'displayName'
938
+ property :parent, as: 'parent'
937
939
  property :property, as: 'property'
940
+ property :property_type, as: 'propertyType'
938
941
  end
939
942
  end
940
943
 
@@ -1906,7 +1906,7 @@ module Google
1906
1906
  # Updates a measurement protocol secret.
1907
1907
  # @param [String] name
1908
1908
  # Output only. Resource name of this secret. This secret may be a child of any
1909
- # type of stream. Format: properties/`property`/webDataStreams/`webDataStream`/
1909
+ # type of stream. Format: properties/`property`/dataStreams/`dataStream`/
1910
1910
  # measurementProtocolSecrets/`measurementProtocolSecret`
1911
1911
  # @param [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaMeasurementProtocolSecret] google_analytics_admin_v1alpha_measurement_protocol_secret_object
1912
1912
  # @param [String] update_mask
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.26.0
4
+ version: 0.29.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-02-28 00:00:00.000000000 Z
11
+ date: 2022-06-06 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.4'
19
+ version: '0.5'
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.4'
29
+ version: '0.5'
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-analyticsadmin_v1alpha/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-analyticsadmin_v1alpha/v0.26.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-analyticsadmin_v1alpha/v0.29.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: []
@@ -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.3.5
78
+ rubygems_version: 3.3.14
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Google Analytics Admin API V1alpha