google-apis-firebase_v1beta1 0.26.0 → 0.28.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1ef0b2719e80156d0cefcfc3aff2aa80674651eacc59591af41b8112ef4dc1da
|
4
|
+
data.tar.gz: e5afcf2ccfe86404c1f2d91af31eba6e41f0c0a603a29425552a4702f0fbfb72
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c041c79d3c938e42bb2360ede08d90a6ca3ab29f767b7905bc4e0c76c3c9dbe8349ae1f1257642bf8d41bf0433ce65a5b578f6e0f69eee39bdc6ce95140b69bd
|
7
|
+
data.tar.gz: 877e42217abbc92b64137df5aab6b57126a1ec155f114f985987365e266d8aadc50f7f746128cb3ef5ef3f23cfdacf9ed53fa009e34e17a749d05f24ddb442b8
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-firebase_v1beta1
|
2
2
|
|
3
|
+
### v0.28.0 (2022-10-12)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20221010
|
6
|
+
|
7
|
+
### v0.27.0 (2022-10-02)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220927
|
10
|
+
|
3
11
|
### v0.26.0 (2022-09-21)
|
4
12
|
|
5
13
|
* Regenerated using generator version 0.10.0
|
@@ -522,17 +522,17 @@ module Google
|
|
522
522
|
# @return [String]
|
523
523
|
attr_accessor :name
|
524
524
|
|
525
|
-
# Output only. A user-assigned unique identifier for the Project.
|
526
|
-
# identifier may appear in URLs or names for some Firebase resources
|
527
|
-
# with the Project, but it should generally be treated as a
|
528
|
-
# reference the Project.
|
525
|
+
# Output only. Immutable. A user-assigned unique identifier for the Project.
|
526
|
+
# This identifier may appear in URLs or names for some Firebase resources
|
527
|
+
# associated with the Project, but it should generally be treated as a
|
528
|
+
# convenience alias to reference the Project.
|
529
529
|
# Corresponds to the JSON property `projectId`
|
530
530
|
# @return [String]
|
531
531
|
attr_accessor :project_id
|
532
532
|
|
533
|
-
# Output only. The globally unique, Google-assigned canonical
|
534
|
-
# Project. Use this identifier when configuring integrations
|
535
|
-
# calls to Firebase or third-party services.
|
533
|
+
# Output only. Immutable. The globally unique, Google-assigned canonical
|
534
|
+
# identifier for the Project. Use this identifier when configuring integrations
|
535
|
+
# and/or making API calls to Firebase or third-party services.
|
536
536
|
# Corresponds to the JSON property `projectNumber`
|
537
537
|
# @return [Fixnum]
|
538
538
|
attr_accessor :project_number
|
@@ -1067,6 +1067,15 @@ module Google
|
|
1067
1067
|
# @return [String]
|
1068
1068
|
attr_accessor :etag
|
1069
1069
|
|
1070
|
+
# Determines whether to _immediately_ delete the App. If set to true, the App is
|
1071
|
+
# immediately deleted from the Project and cannot be restored to the Project. If
|
1072
|
+
# not set, defaults to false, which means that the App may be restored to the
|
1073
|
+
# Project within 30 days using UndeleteAndroidApp.
|
1074
|
+
# Corresponds to the JSON property `immediate`
|
1075
|
+
# @return [Boolean]
|
1076
|
+
attr_accessor :immediate
|
1077
|
+
alias_method :immediate?, :immediate
|
1078
|
+
|
1070
1079
|
# If set to true, the request is only validated. The App will _not_ be removed.
|
1071
1080
|
# Corresponds to the JSON property `validateOnly`
|
1072
1081
|
# @return [Boolean]
|
@@ -1081,6 +1090,7 @@ module Google
|
|
1081
1090
|
def update!(**args)
|
1082
1091
|
@allow_missing = args[:allow_missing] if args.key?(:allow_missing)
|
1083
1092
|
@etag = args[:etag] if args.key?(:etag)
|
1093
|
+
@immediate = args[:immediate] if args.key?(:immediate)
|
1084
1094
|
@validate_only = args[:validate_only] if args.key?(:validate_only)
|
1085
1095
|
end
|
1086
1096
|
end
|
@@ -1102,6 +1112,15 @@ module Google
|
|
1102
1112
|
# @return [String]
|
1103
1113
|
attr_accessor :etag
|
1104
1114
|
|
1115
|
+
# Determines whether to _immediately_ delete the App. If set to true, the App is
|
1116
|
+
# immediately deleted from the Project and cannot be restored to the Project. If
|
1117
|
+
# not set, defaults to false, which means that the App may be restored to the
|
1118
|
+
# Project within 30 days using UndeleteIosApp
|
1119
|
+
# Corresponds to the JSON property `immediate`
|
1120
|
+
# @return [Boolean]
|
1121
|
+
attr_accessor :immediate
|
1122
|
+
alias_method :immediate?, :immediate
|
1123
|
+
|
1105
1124
|
# If set to true, the request is only validated. The App will _not_ be removed.
|
1106
1125
|
# Corresponds to the JSON property `validateOnly`
|
1107
1126
|
# @return [Boolean]
|
@@ -1116,6 +1135,7 @@ module Google
|
|
1116
1135
|
def update!(**args)
|
1117
1136
|
@allow_missing = args[:allow_missing] if args.key?(:allow_missing)
|
1118
1137
|
@etag = args[:etag] if args.key?(:etag)
|
1138
|
+
@immediate = args[:immediate] if args.key?(:immediate)
|
1119
1139
|
@validate_only = args[:validate_only] if args.key?(:validate_only)
|
1120
1140
|
end
|
1121
1141
|
end
|
@@ -1137,6 +1157,15 @@ module Google
|
|
1137
1157
|
# @return [String]
|
1138
1158
|
attr_accessor :etag
|
1139
1159
|
|
1160
|
+
# Determines whether to _immediately_ delete the App. If set to true, the App is
|
1161
|
+
# immediately deleted from the Project and cannot be restored to the Project. If
|
1162
|
+
# not set, defaults to false, which means that the App may be restored to the
|
1163
|
+
# Project within 30 days using UndeleteWebApp
|
1164
|
+
# Corresponds to the JSON property `immediate`
|
1165
|
+
# @return [Boolean]
|
1166
|
+
attr_accessor :immediate
|
1167
|
+
alias_method :immediate?, :immediate
|
1168
|
+
|
1140
1169
|
# If set to true, the request is only validated. The App will _not_ be removed.
|
1141
1170
|
# Corresponds to the JSON property `validateOnly`
|
1142
1171
|
# @return [Boolean]
|
@@ -1151,6 +1180,7 @@ module Google
|
|
1151
1180
|
def update!(**args)
|
1152
1181
|
@allow_missing = args[:allow_missing] if args.key?(:allow_missing)
|
1153
1182
|
@etag = args[:etag] if args.key?(:etag)
|
1183
|
+
@immediate = args[:immediate] if args.key?(:immediate)
|
1154
1184
|
@validate_only = args[:validate_only] if args.key?(:validate_only)
|
1155
1185
|
end
|
1156
1186
|
end
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.28.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.10.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20221010"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -507,6 +507,7 @@ module Google
|
|
507
507
|
class Representation < Google::Apis::Core::JsonRepresentation
|
508
508
|
property :allow_missing, as: 'allowMissing'
|
509
509
|
property :etag, as: 'etag'
|
510
|
+
property :immediate, as: 'immediate'
|
510
511
|
property :validate_only, as: 'validateOnly'
|
511
512
|
end
|
512
513
|
end
|
@@ -516,6 +517,7 @@ module Google
|
|
516
517
|
class Representation < Google::Apis::Core::JsonRepresentation
|
517
518
|
property :allow_missing, as: 'allowMissing'
|
518
519
|
property :etag, as: 'etag'
|
520
|
+
property :immediate, as: 'immediate'
|
519
521
|
property :validate_only, as: 'validateOnly'
|
520
522
|
end
|
521
523
|
end
|
@@ -525,6 +527,7 @@ module Google
|
|
525
527
|
class Representation < Google::Apis::Core::JsonRepresentation
|
526
528
|
property :allow_missing, as: 'allowMissing'
|
527
529
|
property :etag, as: 'etag'
|
530
|
+
property :immediate, as: 'immediate'
|
528
531
|
property :validate_only, as: 'validateOnly'
|
529
532
|
end
|
530
533
|
end
|
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.
|
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: 2022-
|
11
|
+
date: 2022-10-17 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-firebase_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-firebase_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-firebase_v1beta1/v0.28.0
|
62
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: []
|