google-apis-analyticsadmin_v1alpha 0.26.0 → 0.27.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: 57502f4f3e70cead7a01ffafcd38a34efa8817d9db0a19223b14db4851095abc
4
+ data.tar.gz: 94384354f2ee57725fe4c89ed53aee07b0b94e032bd520a76df096ed13443fd5
5
5
  SHA512:
6
- metadata.gz: 955a85720373e49037dcd914e35252ab8f88d227b0d97dd6916c537348c85c6ceff33d931b341c83a25974d0006a49800f28e558d5183a246f30fb5b88a01aab
7
- data.tar.gz: 1ddf3a2f8bed4dcafb82e943c95fe403098660415a163cb0de3888822687b24a06a0899b5964dc8ae472724468ad9204034b2761c7afa1fd66213f73ce69f176
6
+ metadata.gz: 1dab399b1f91ab7b8d3a29a4bda136a36ea8a962d3116796810a6882ada0d2f04c3252768b384e899b49d80adcae9d28a1ab129c4c03525d5d7652da69b0a5af
7
+ data.tar.gz: '09b5d8effe87fb419a65a25c647935facac100b71f520812fe4abacba8159d338ae92d75793568636a03e2a6d0b8083e2c1b235ced1dc76ead7fcf2bd0f52961'
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-analyticsadmin_v1alpha
2
2
 
3
+ ### v0.27.0 (2022-03-16)
4
+
5
+ * Regenerated from discovery document revision 20220315
6
+
3
7
  ### v0.26.0 (2022-02-24)
4
8
 
5
9
  * 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
 
@@ -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.27.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 = "20220315"
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.27.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-03-21 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.26.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-analyticsadmin_v1alpha/v0.27.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: []