Skip to content

Commit fda98fc

Browse files
feat(firebaseappdistribution): update the api
#### firebaseappdistribution:v1alpha The following keys were added: - resources.projects.resources.apps.resources.testCases.methods.batchDelete (Total Keys: 12) - schemas.GoogleFirebaseAppdistroV1alphaBatchDeleteTestCasesRequest (Total Keys: 4)
1 parent a575a65 commit fda98fc

File tree

2 files changed

+73
-1
lines changed

2 files changed

+73
-1
lines changed

docs/dyn/firebaseappdistribution_v1alpha.projects.apps.testCases.html

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,9 @@
7474

7575
<h1><a href="firebaseappdistribution_v1alpha.html">Firebase App Distribution API</a> . <a href="firebaseappdistribution_v1alpha.projects.html">projects</a> . <a href="firebaseappdistribution_v1alpha.projects.apps.html">apps</a> . <a href="firebaseappdistribution_v1alpha.projects.apps.testCases.html">testCases</a></h1>
7676
<h2>Instance Methods</h2>
77+
<p class="toc_element">
78+
<code><a href="#batchDelete">batchDelete(parent, body=None, x__xgafv=None)</a></code></p>
79+
<p class="firstline">Delete test cases.</p>
7780
<p class="toc_element">
7881
<code><a href="#close">close()</a></code></p>
7982
<p class="firstline">Close httplib2 connections.</p>
@@ -96,6 +99,33 @@ <h2>Instance Methods</h2>
9699
<code><a href="#patch">patch(name, body=None, x__xgafv=None)</a></code></p>
97100
<p class="firstline">Update a test case.</p>
98101
<h3>Method Details</h3>
102+
<div class="method">
103+
<code class="details" id="batchDelete">batchDelete(parent, body=None, x__xgafv=None)</code>
104+
<pre>Delete test cases.
105+
106+
Args:
107+
parent: string, Required. The parent resource where these test cases will be deleted. Format: `projects/{project_number}/apps/{app_id}` (required)
108+
body: object, The request body.
109+
The object takes the form of:
110+
111+
{ # The request message for `DeleteTestCase`.
112+
&quot;names&quot;: [ # Required. The name of the test cases to delete. A maximum number of 1000 test cases can be deleted in one batch Format: `projects/{project_number}/apps/{app_id}/testCases/{test_case_id}`
113+
&quot;A String&quot;,
114+
],
115+
}
116+
117+
x__xgafv: string, V1 error format.
118+
Allowed values
119+
1 - v1 error format
120+
2 - v2 error format
121+
122+
Returns:
123+
An object of the form:
124+
125+
{ # A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); }
126+
}</pre>
127+
</div>
128+
99129
<div class="method">
100130
<code class="details" id="close">close()</code>
101131
<pre>Close httplib2 connections.</pre>

googleapiclient/discovery_cache/documents/firebaseappdistribution.v1alpha.json

Lines changed: 43 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -615,6 +615,34 @@
615615
},
616616
"testCases": {
617617
"methods": {
618+
"batchDelete": {
619+
"description": "Delete test cases.",
620+
"flatPath": "v1alpha/projects/{projectsId}/apps/{appsId}/testCases:batchDelete",
621+
"httpMethod": "POST",
622+
"id": "firebaseappdistribution.projects.apps.testCases.batchDelete",
623+
"parameterOrder": [
624+
"parent"
625+
],
626+
"parameters": {
627+
"parent": {
628+
"description": "Required. The parent resource where these test cases will be deleted. Format: `projects/{project_number}/apps/{app_id}`",
629+
"location": "path",
630+
"pattern": "^projects/[^/]+/apps/[^/]+$",
631+
"required": true,
632+
"type": "string"
633+
}
634+
},
635+
"path": "v1alpha/{+parent}/testCases:batchDelete",
636+
"request": {
637+
"$ref": "GoogleFirebaseAppdistroV1alphaBatchDeleteTestCasesRequest"
638+
},
639+
"response": {
640+
"$ref": "GoogleProtobufEmpty"
641+
},
642+
"scopes": [
643+
"https://www.googleapis.com/auth/cloud-platform"
644+
]
645+
},
618646
"create": {
619647
"description": "Create a new test case.",
620648
"flatPath": "v1alpha/projects/{projectsId}/apps/{appsId}/testCases",
@@ -803,7 +831,7 @@
803831
}
804832
}
805833
},
806-
"revision": "20250219",
834+
"revision": "20250303",
807835
"rootUrl": "https://firebaseappdistribution.googleapis.com/",
808836
"schemas": {
809837
"AndroidxCrawlerOutputPoint": {
@@ -1101,6 +1129,20 @@
11011129
},
11021130
"type": "object"
11031131
},
1132+
"GoogleFirebaseAppdistroV1alphaBatchDeleteTestCasesRequest": {
1133+
"description": "The request message for `DeleteTestCase`.",
1134+
"id": "GoogleFirebaseAppdistroV1alphaBatchDeleteTestCasesRequest",
1135+
"properties": {
1136+
"names": {
1137+
"description": "Required. The name of the test cases to delete. A maximum number of 1000 test cases can be deleted in one batch Format: `projects/{project_number}/apps/{app_id}/testCases/{test_case_id}`",
1138+
"items": {
1139+
"type": "string"
1140+
},
1141+
"type": "array"
1142+
}
1143+
},
1144+
"type": "object"
1145+
},
11041146
"GoogleFirebaseAppdistroV1alphaCancelReleaseTestResponse": {
11051147
"description": "The (empty) response message for `CancelReleaseTest`.",
11061148
"id": "GoogleFirebaseAppdistroV1alphaCancelReleaseTestResponse",

0 commit comments

Comments
 (0)