@alicloud/gpdb20160503 3.12.0 → 3.12.2
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.
- package/dist/client.d.ts +4 -4
- package/dist/client.js +62 -26
- package/dist/client.js.map +1 -1
- package/dist/models/CreateSupabaseProjectRequest.d.ts +1 -0
- package/dist/models/CreateSupabaseProjectRequest.js +2 -0
- package/dist/models/CreateSupabaseProjectRequest.js.map +1 -1
- package/dist/models/DescribeBranchResponseBody.d.ts +14 -6
- package/dist/models/DescribeBranchResponseBody.js +2 -0
- package/dist/models/DescribeBranchResponseBody.js.map +1 -1
- package/dist/models/GetSupabaseProjectResponseBody.d.ts +1 -0
- package/dist/models/GetSupabaseProjectResponseBody.js +2 -0
- package/dist/models/GetSupabaseProjectResponseBody.js.map +1 -1
- package/dist/models/ListBranchesRequest.d.ts +6 -6
- package/dist/models/ListBranchesResponseBody.d.ts +4 -3
- package/dist/models/ListBranchesResponseBody.js +2 -0
- package/dist/models/ListBranchesResponseBody.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +63 -26
- package/src/models/CreateSupabaseProjectRequest.ts +3 -0
- package/src/models/DescribeBranchResponseBody.ts +16 -6
- package/src/models/GetSupabaseProjectResponseBody.ts +3 -0
- package/src/models/ListBranchesRequest.ts +6 -6
- package/src/models/ListBranchesResponseBody.ts +6 -3
|
@@ -69,6 +69,7 @@ export class ListBranchesResponseBodyBranchesBranch extends $dara.Model {
|
|
|
69
69
|
projectId?: string;
|
|
70
70
|
protected?: boolean;
|
|
71
71
|
serviceType?: string;
|
|
72
|
+
spbProjectId?: string;
|
|
72
73
|
status?: string;
|
|
73
74
|
tags?: ListBranchesResponseBodyBranchesBranchTags;
|
|
74
75
|
static names(): { [key: string]: string } {
|
|
@@ -87,6 +88,7 @@ export class ListBranchesResponseBodyBranchesBranch extends $dara.Model {
|
|
|
87
88
|
projectId: 'ProjectId',
|
|
88
89
|
protected: 'Protected',
|
|
89
90
|
serviceType: 'ServiceType',
|
|
91
|
+
spbProjectId: 'SpbProjectId',
|
|
90
92
|
status: 'Status',
|
|
91
93
|
tags: 'Tags',
|
|
92
94
|
};
|
|
@@ -108,6 +110,7 @@ export class ListBranchesResponseBodyBranchesBranch extends $dara.Model {
|
|
|
108
110
|
projectId: 'string',
|
|
109
111
|
protected: 'boolean',
|
|
110
112
|
serviceType: 'string',
|
|
113
|
+
spbProjectId: 'string',
|
|
111
114
|
status: 'string',
|
|
112
115
|
tags: ListBranchesResponseBodyBranchesBranchTags,
|
|
113
116
|
};
|
|
@@ -155,7 +158,7 @@ export class ListBranchesResponseBody extends $dara.Model {
|
|
|
155
158
|
branches?: ListBranchesResponseBodyBranches;
|
|
156
159
|
/**
|
|
157
160
|
* @remarks
|
|
158
|
-
* The maximum number of records to return in this
|
|
161
|
+
* The maximum number of records to return in this query.
|
|
159
162
|
*
|
|
160
163
|
* @example
|
|
161
164
|
* 20
|
|
@@ -163,7 +166,7 @@ export class ListBranchesResponseBody extends $dara.Model {
|
|
|
163
166
|
maxResults?: number;
|
|
164
167
|
/**
|
|
165
168
|
* @remarks
|
|
166
|
-
* The cursor for
|
|
169
|
+
* The cursor for paging query. You do not need to specify this parameter for the first query. For subsequent queries, use the NextToken value returned in the previous response.
|
|
167
170
|
*
|
|
168
171
|
* @example
|
|
169
172
|
* caeba0bbb2be03f84eb48b699f0a4883
|
|
@@ -203,7 +206,7 @@ export class ListBranchesResponseBody extends $dara.Model {
|
|
|
203
206
|
requestId?: string;
|
|
204
207
|
/**
|
|
205
208
|
* @remarks
|
|
206
|
-
* The total number of branches that match the query
|
|
209
|
+
* The total number of branches that match the query conditions.
|
|
207
210
|
*
|
|
208
211
|
* @example
|
|
209
212
|
* 20
|