-
Notifications
You must be signed in to change notification settings - Fork 597
/
Copy pathapi.txt
127 lines (109 loc) · 9.48 KB
/
api.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
// Signature format: 3.0
package com.google.firebase.functions {
public final class FirebaseFunctions {
method public com.google.firebase.functions.HttpsCallableReference getHttpsCallable(String name);
method public com.google.firebase.functions.HttpsCallableReference getHttpsCallable(String name, com.google.firebase.functions.HttpsCallableOptions options);
method public com.google.firebase.functions.HttpsCallableReference getHttpsCallableFromUrl(java.net.URL url);
method public com.google.firebase.functions.HttpsCallableReference getHttpsCallableFromUrl(java.net.URL url, com.google.firebase.functions.HttpsCallableOptions options);
method public static com.google.firebase.functions.FirebaseFunctions getInstance();
method public static com.google.firebase.functions.FirebaseFunctions getInstance(com.google.firebase.FirebaseApp app);
method public static com.google.firebase.functions.FirebaseFunctions getInstance(com.google.firebase.FirebaseApp app, String regionOrCustomDomain);
method public static com.google.firebase.functions.FirebaseFunctions getInstance(String regionOrCustomDomain);
method public void useEmulator(String host, int port);
method @Deprecated public void useFunctionsEmulator(String origin);
field public static final com.google.firebase.functions.FirebaseFunctions.Companion Companion;
}
public static final class FirebaseFunctions.Companion {
method public com.google.firebase.functions.FirebaseFunctions getInstance();
method public com.google.firebase.functions.FirebaseFunctions getInstance(com.google.firebase.FirebaseApp app);
method public com.google.firebase.functions.FirebaseFunctions getInstance(com.google.firebase.FirebaseApp app, String regionOrCustomDomain);
method public com.google.firebase.functions.FirebaseFunctions getInstance(String regionOrCustomDomain);
}
public final class FirebaseFunctionsException extends com.google.firebase.FirebaseException {
method public com.google.firebase.functions.FirebaseFunctionsException.Code getCode();
method public Object? getDetails();
property public final com.google.firebase.functions.FirebaseFunctionsException.Code code;
property public final Object? details;
}
public enum FirebaseFunctionsException.Code {
method public static com.google.firebase.functions.FirebaseFunctionsException.Code fromHttpStatus(int status);
method public static com.google.firebase.functions.FirebaseFunctionsException.Code fromValue(int value);
enum_constant public static final com.google.firebase.functions.FirebaseFunctionsException.Code ABORTED;
enum_constant public static final com.google.firebase.functions.FirebaseFunctionsException.Code ALREADY_EXISTS;
enum_constant public static final com.google.firebase.functions.FirebaseFunctionsException.Code CANCELLED;
enum_constant public static final com.google.firebase.functions.FirebaseFunctionsException.Code DATA_LOSS;
enum_constant public static final com.google.firebase.functions.FirebaseFunctionsException.Code DEADLINE_EXCEEDED;
enum_constant public static final com.google.firebase.functions.FirebaseFunctionsException.Code FAILED_PRECONDITION;
enum_constant public static final com.google.firebase.functions.FirebaseFunctionsException.Code INTERNAL;
enum_constant public static final com.google.firebase.functions.FirebaseFunctionsException.Code INVALID_ARGUMENT;
enum_constant public static final com.google.firebase.functions.FirebaseFunctionsException.Code NOT_FOUND;
enum_constant public static final com.google.firebase.functions.FirebaseFunctionsException.Code OK;
enum_constant public static final com.google.firebase.functions.FirebaseFunctionsException.Code OUT_OF_RANGE;
enum_constant public static final com.google.firebase.functions.FirebaseFunctionsException.Code PERMISSION_DENIED;
enum_constant public static final com.google.firebase.functions.FirebaseFunctionsException.Code RESOURCE_EXHAUSTED;
enum_constant public static final com.google.firebase.functions.FirebaseFunctionsException.Code UNAUTHENTICATED;
enum_constant public static final com.google.firebase.functions.FirebaseFunctionsException.Code UNAVAILABLE;
enum_constant public static final com.google.firebase.functions.FirebaseFunctionsException.Code UNIMPLEMENTED;
enum_constant public static final com.google.firebase.functions.FirebaseFunctionsException.Code UNKNOWN;
field public static final com.google.firebase.functions.FirebaseFunctionsException.Code.Companion Companion;
}
public static final class FirebaseFunctionsException.Code.Companion {
method public com.google.firebase.functions.FirebaseFunctionsException.Code fromHttpStatus(int status);
method public com.google.firebase.functions.FirebaseFunctionsException.Code fromValue(int value);
}
public final class FunctionsKt {
method public static com.google.firebase.functions.FirebaseFunctions functions(com.google.firebase.Firebase, com.google.firebase.FirebaseApp app);
method public static com.google.firebase.functions.FirebaseFunctions functions(com.google.firebase.Firebase, com.google.firebase.FirebaseApp app, String regionOrCustomDomain);
method public static com.google.firebase.functions.FirebaseFunctions functions(com.google.firebase.Firebase, String regionOrCustomDomain);
method public static com.google.firebase.functions.FirebaseFunctions getFunctions(com.google.firebase.Firebase);
method public static com.google.firebase.functions.HttpsCallableReference getHttpsCallable(com.google.firebase.functions.FirebaseFunctions, String name, kotlin.jvm.functions.Function1<? super com.google.firebase.functions.HttpsCallableOptions.Builder,kotlin.Unit> init);
method public static com.google.firebase.functions.HttpsCallableReference getHttpsCallableFromUrl(com.google.firebase.functions.FirebaseFunctions, java.net.URL url, kotlin.jvm.functions.Function1<? super com.google.firebase.functions.HttpsCallableOptions.Builder,kotlin.Unit> init);
}
public final class HttpsCallableOptions {
method public boolean getLimitedUseAppCheckTokens();
field public final boolean limitedUseAppCheckTokens;
}
public static final class HttpsCallableOptions.Builder {
ctor public HttpsCallableOptions.Builder();
method public com.google.firebase.functions.HttpsCallableOptions build();
method public boolean getLimitedUseAppCheckTokens();
method public com.google.firebase.functions.HttpsCallableOptions.Builder setLimitedUseAppCheckTokens(boolean limitedUse);
field public boolean limitedUseAppCheckTokens;
}
public final class HttpsCallableReference {
method public com.google.android.gms.tasks.Task<com.google.firebase.functions.HttpsCallableResult> call();
method public com.google.android.gms.tasks.Task<com.google.firebase.functions.HttpsCallableResult> call(Object? data);
method public long getTimeout();
method public void setTimeout(long timeout, java.util.concurrent.TimeUnit units);
method public org.reactivestreams.Publisher<com.google.firebase.functions.StreamResponse> stream();
method public org.reactivestreams.Publisher<com.google.firebase.functions.StreamResponse> stream(Object? data = null);
method public com.google.firebase.functions.HttpsCallableReference withTimeout(long timeout, java.util.concurrent.TimeUnit units);
property public final long timeout;
}
public final class HttpsCallableResult {
method public Object? getData();
field public final Object? data;
}
public abstract class StreamResponse {
}
public static final class StreamResponse.Message extends com.google.firebase.functions.StreamResponse {
ctor public StreamResponse.Message(com.google.firebase.functions.HttpsCallableResult message);
method public com.google.firebase.functions.HttpsCallableResult getMessage();
property public final com.google.firebase.functions.HttpsCallableResult message;
}
public static final class StreamResponse.Result extends com.google.firebase.functions.StreamResponse {
ctor public StreamResponse.Result(com.google.firebase.functions.HttpsCallableResult result);
method public com.google.firebase.functions.HttpsCallableResult getResult();
property public final com.google.firebase.functions.HttpsCallableResult result;
}
}
package com.google.firebase.functions.ktx {
public final class FunctionsKt {
method @Deprecated public static com.google.firebase.functions.FirebaseFunctions functions(com.google.firebase.ktx.Firebase, com.google.firebase.FirebaseApp app);
method @Deprecated public static com.google.firebase.functions.FirebaseFunctions functions(com.google.firebase.ktx.Firebase, com.google.firebase.FirebaseApp app, String regionOrCustomDomain);
method @Deprecated public static com.google.firebase.functions.FirebaseFunctions functions(com.google.firebase.ktx.Firebase, String regionOrCustomDomain);
method @Deprecated public static com.google.firebase.functions.FirebaseFunctions getFunctions(com.google.firebase.ktx.Firebase);
method @Deprecated public static com.google.firebase.functions.HttpsCallableReference getHttpsCallable(com.google.firebase.functions.FirebaseFunctions, String name, kotlin.jvm.functions.Function1<? super com.google.firebase.functions.HttpsCallableOptions.Builder,kotlin.Unit> init);
method @Deprecated public static com.google.firebase.functions.HttpsCallableReference getHttpsCallableFromUrl(com.google.firebase.functions.FirebaseFunctions, java.net.URL url, kotlin.jvm.functions.Function1<? super com.google.firebase.functions.HttpsCallableOptions.Builder,kotlin.Unit> init);
}
}