Skip to content

Commit f02c951

Browse files
yoshi-automationsofisl
authored andcommitted
feat(firebaseapphosting): update the API
#### firebaseapphosting:v1beta The following keys were added: - schemas.Backend.properties.requestLogsDisabled.description - schemas.Backend.properties.requestLogsDisabled.type
1 parent ef2619d commit f02c951

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

discovery/firebaseapphosting-v1beta.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1098,7 +1098,7 @@
10981098
}
10991099
}
11001100
},
1101-
"revision": "20250501",
1101+
"revision": "20250701",
11021102
"rootUrl": "https://firebaseapphosting.googleapis.com/",
11031103
"schemas": {
11041104
"ArchiveSource": {
@@ -1201,6 +1201,10 @@
12011201
"readOnly": true,
12021202
"type": "boolean"
12031203
},
1204+
"requestLogsDisabled": {
1205+
"description": "Optional. A field that, if true, indicates that incoming request logs are disabled for this backend. Incoming request logs are enabled by default.",
1206+
"type": "boolean"
1207+
},
12041208
"serviceAccount": {
12051209
"description": "Required. The name of the service account used for Cloud Build and Cloud Run. Should have the role roles/firebaseapphosting.computeRunner or equivalent permissions.",
12061210
"type": "string"

src/apis/firebaseapphosting/v1beta.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,10 @@ export namespace firebaseapphosting_v1beta {
205205
* Output only. A field that, if true, indicates that the system is working to make adjustments to the backend during a LRO.
206206
*/
207207
reconciling?: boolean | null;
208+
/**
209+
* Optional. A field that, if true, indicates that incoming request logs are disabled for this backend. Incoming request logs are enabled by default.
210+
*/
211+
requestLogsDisabled?: boolean | null;
208212
/**
209213
* Required. The name of the service account used for Cloud Build and Cloud Run. Should have the role roles/firebaseapphosting.computeRunner or equivalent permissions.
210214
*/
@@ -1537,6 +1541,7 @@ export namespace firebaseapphosting_v1beta {
15371541
* // "mode": "my_mode",
15381542
* // "name": "my_name",
15391543
* // "reconciling": false,
1544+
* // "requestLogsDisabled": false,
15401545
* // "serviceAccount": "my_serviceAccount",
15411546
* // "servingLocality": "my_servingLocality",
15421547
* // "uid": "my_uid",
@@ -1851,6 +1856,7 @@ export namespace firebaseapphosting_v1beta {
18511856
* // "mode": "my_mode",
18521857
* // "name": "my_name",
18531858
* // "reconciling": false,
1859+
* // "requestLogsDisabled": false,
18541860
* // "serviceAccount": "my_serviceAccount",
18551861
* // "servingLocality": "my_servingLocality",
18561862
* // "uid": "my_uid",
@@ -2163,6 +2169,7 @@ export namespace firebaseapphosting_v1beta {
21632169
* // "mode": "my_mode",
21642170
* // "name": "my_name",
21652171
* // "reconciling": false,
2172+
* // "requestLogsDisabled": false,
21662173
* // "serviceAccount": "my_serviceAccount",
21672174
* // "servingLocality": "my_servingLocality",
21682175
* // "uid": "my_uid",

0 commit comments

Comments
 (0)