google-apis-firebase_v1beta1 0.8.0 → 0.12.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: 6a1e4fa57b53ee220cb139816030cb655a3c293a6f97cd0024b550617b79f87c
4
- data.tar.gz: 53f9b9a39fef44819d89e1a02ea650530de7f757f5ea0c43cce114adde56131e
3
+ metadata.gz: 3a09ba2f6bf56b06387f556a2c37681d58ceea4404f01b1ce0d87c99cda40f2f
4
+ data.tar.gz: e091da134ef3ed789a76027ee3c6c91f6b46b88010fb854467bcd67aa663bb1e
5
5
  SHA512:
6
- metadata.gz: 1fe9042974ffe3f1922177a4d10447d4a9e9586450c0ba05d7b8628452e91b75756064d767ccd1ce25c46533d7dc4ea1d7c67933ddf13100afcfa34f54ee7fa6
7
- data.tar.gz: c9968fefb0afabca46a51900f451ce94107abcc38576a481984f11cc440755b019072136ed5ae55d4118948b8b5fc68358694311944ae3881a5c5d8dfbe900b0
6
+ metadata.gz: 499c34ec4800d16c5295751d407a629a5c03dea5f7858faa74c79cbecd250d173028b0bd0893ec214b73333591471246dfab00943aa08c0574b57a7ad6f18c99
7
+ data.tar.gz: 3badea4cc18fdd9f6860a3a3c256618b024968f551a28a7554169db13de5896e4e2ec74c5b6a951da67069ce3f4ccbc2aebe09894938e134a643ea957cdc7aad
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Release history for google-apis-firebase_v1beta1
2
2
 
3
+ ### v0.12.0 (2021-12-14)
4
+
5
+ * Unspecified changes
6
+
7
+ ### v0.11.0 (2021-10-20)
8
+
9
+ * Unspecified changes
10
+
11
+ ### v0.10.0 (2021-10-15)
12
+
13
+ * Regenerated from discovery document revision 20211013
14
+
15
+ ### v0.9.0 (2021-10-07)
16
+
17
+ * Regenerated from discovery document revision 20211005
18
+
3
19
  ### v0.8.0 (2021-09-01)
4
20
 
5
21
  * Regenerated from discovery document revision 20210809
data/OVERVIEW.md CHANGED
@@ -51,7 +51,7 @@ require "google/apis/firebase_v1beta1"
51
51
  client = Google::Apis::FirebaseV1beta1::FirebaseManagementService.new
52
52
 
53
53
  # Authenticate calls
54
- client.authentication = # ... use the googleauth gem to create credentials
54
+ client.authorization = # ... use the googleauth gem to create credentials
55
55
  ```
56
56
 
57
57
  See the class reference docs for information on the methods you can call from a client.
@@ -60,8 +60,8 @@ See the class reference docs for information on the methods you can call from a
60
60
 
61
61
  More detailed descriptions of the Google simple REST clients are available in two documents.
62
62
 
63
- * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
- * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
63
+ * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
+ * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
65
65
 
66
66
  (Note: the above documents are written for the simple REST clients in general, and their examples may not reflect the Firebase service in particular.)
67
67
 
@@ -152,6 +152,13 @@ module Google
152
152
  class AnalyticsProperty
153
153
  include Google::Apis::Core::Hashable
154
154
 
155
+ # Output only. The ID of the [Google Analytics account](https://www.google.com/
156
+ # analytics/) for the Google Analytics property associated with the specified
157
+ # FirebaseProject.
158
+ # Corresponds to the JSON property `analyticsAccountId`
159
+ # @return [String]
160
+ attr_accessor :analytics_account_id
161
+
155
162
  # The display name of the Google Analytics property associated with the
156
163
  # specified `FirebaseProject`.
157
164
  # Corresponds to the JSON property `displayName`
@@ -174,6 +181,7 @@ module Google
174
181
 
175
182
  # Update properties of this object
176
183
  def update!(**args)
184
+ @analytics_account_id = args[:analytics_account_id] if args.key?(:analytics_account_id)
177
185
  @display_name = args[:display_name] if args.key?(:display_name)
178
186
  @id = args[:id] if args.key?(:id)
179
187
  end
@@ -526,6 +534,11 @@ module Google
526
534
  # @return [String]
527
535
  attr_accessor :project_id
528
536
 
537
+ # The Apple Developer Team ID associated with the App in the App Store.
538
+ # Corresponds to the JSON property `teamId`
539
+ # @return [String]
540
+ attr_accessor :team_id
541
+
529
542
  def initialize(**args)
530
543
  update!(**args)
531
544
  end
@@ -538,6 +551,7 @@ module Google
538
551
  @display_name = args[:display_name] if args.key?(:display_name)
539
552
  @name = args[:name] if args.key?(:name)
540
553
  @project_id = args[:project_id] if args.key?(:project_id)
554
+ @team_id = args[:team_id] if args.key?(:team_id)
541
555
  end
542
556
  end
543
557
 
@@ -1105,7 +1119,7 @@ module Google
1105
1119
  # of the Google Analytics web stream associated with the Firebase Web App.
1106
1120
  # Firebase SDKs use this ID to interact with Google Analytics APIs. Learn more
1107
1121
  # about this ID and Google Analytics web streams in the [Analytics documentation]
1108
- # (https://support.google.com/analytics/topic/9303475).
1122
+ # (https://support.google.com/analytics/answer/9304153).
1109
1123
  # Corresponds to the JSON property `measurementId`
1110
1124
  # @return [String]
1111
1125
  attr_accessor :measurement_id
@@ -1234,8 +1248,8 @@ module Google
1234
1248
  # Google Analytics APIs. This field is only present if the `WebApp` is linked to
1235
1249
  # a web stream in a Google Analytics App + Web property. Learn more about this
1236
1250
  # ID and Google Analytics web streams in the [Analytics documentation](https://
1237
- # support.google.com/analytics/topic/9303475). To generate a `measurementId` and
1238
- # link the `WebApp` with a Google Analytics web stream, call [`
1251
+ # support.google.com/analytics/answer/9304153). To generate a `measurementId`
1252
+ # and link the `WebApp` with a Google Analytics web stream, call [`
1239
1253
  # AddGoogleAnalytics`](../../v1beta1/projects/addGoogleAnalytics). For apps
1240
1254
  # using the Firebase JavaScript SDK v7.20.0 and later, Firebase dynamically
1241
1255
  # fetches the `measurementId` when your app initializes Analytics. Having this
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module FirebaseV1beta1
18
18
  # Version of the google-apis-firebase_v1beta1 gem
19
- GEM_VERSION = "0.8.0"
19
+ GEM_VERSION = "0.12.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210809"
25
+ REVISION = "20211013"
26
26
  end
27
27
  end
28
28
  end
@@ -258,6 +258,7 @@ module Google
258
258
  class AnalyticsProperty
259
259
  # @private
260
260
  class Representation < Google::Apis::Core::JsonRepresentation
261
+ property :analytics_account_id, as: 'analyticsAccountId'
261
262
  property :display_name, as: 'displayName'
262
263
  property :id, as: 'id'
263
264
  end
@@ -338,6 +339,7 @@ module Google
338
339
  property :display_name, as: 'displayName'
339
340
  property :name, as: 'name'
340
341
  property :project_id, as: 'projectId'
342
+ property :team_id, as: 'teamId'
341
343
  end
342
344
  end
343
345
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-firebase_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.12.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: 2021-09-06 00:00:00.000000000 Z
11
+ date: 2022-01-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -57,9 +57,9 @@ licenses:
57
57
  - Apache-2.0
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
- changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-firebase_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-firebase_v1beta1/v0.8.0
62
- source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-firebase_v1beta1
60
+ changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firebase_v1beta1/CHANGELOG.md
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-firebase_v1beta1/v0.12.0
62
+ source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firebase_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []
65
65
  require_paths:
@@ -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.2.17
78
+ rubygems_version: 3.3.4
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Firebase Management API V1beta1