@alicloud/gpdb20160503 3.12.0 → 3.12.1
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 +2 -2
- package/dist/client.js +13 -13
- package/dist/client.js.map +1 -1
- package/dist/models/DescribeBranchRequest.d.ts +1 -1
- package/dist/models/DescribeBranchResponseBody.d.ts +7 -6
- package/dist/models/DescribeBranchResponseBody.js +2 -0
- package/dist/models/DescribeBranchResponseBody.js.map +1 -1
- package/dist/models/ListBranchesRequest.d.ts +5 -5
- 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 +13 -13
- package/src/models/DescribeBranchRequest.ts +1 -1
- package/src/models/DescribeBranchResponseBody.ts +9 -6
- package/src/models/ListBranchesRequest.ts +5 -5
- package/src/models/ListBranchesResponseBody.ts +6 -3
|
@@ -2,7 +2,7 @@ import * as $dara from '@darabonba/typescript';
|
|
|
2
2
|
export declare class DescribeBranchRequest extends $dara.Model {
|
|
3
3
|
/**
|
|
4
4
|
* @remarks
|
|
5
|
-
* The branch ID
|
|
5
|
+
* The branch ID that uniquely identifies a Supabase branch.
|
|
6
6
|
*
|
|
7
7
|
* This parameter is required.
|
|
8
8
|
*
|
|
@@ -30,7 +30,7 @@ export declare class DescribeBranchResponseBodyBranchTags extends $dara.Model {
|
|
|
30
30
|
export declare class DescribeBranchResponseBodyBranch extends $dara.Model {
|
|
31
31
|
/**
|
|
32
32
|
* @remarks
|
|
33
|
-
* The branch ID
|
|
33
|
+
* The branch ID that uniquely identifies a Supabase branch.
|
|
34
34
|
*
|
|
35
35
|
* @example
|
|
36
36
|
* br-xxxx
|
|
@@ -98,7 +98,7 @@ export declare class DescribeBranchResponseBodyBranch extends $dara.Model {
|
|
|
98
98
|
isDefault?: boolean;
|
|
99
99
|
/**
|
|
100
100
|
* @remarks
|
|
101
|
-
* The parent branch ID, which specifies the parent branch
|
|
101
|
+
* The parent branch ID, which specifies the parent branch of a new branch or a query condition.
|
|
102
102
|
*
|
|
103
103
|
* @example
|
|
104
104
|
* br-main
|
|
@@ -114,7 +114,7 @@ export declare class DescribeBranchResponseBodyBranch extends $dara.Model {
|
|
|
114
114
|
parentBranchName?: string;
|
|
115
115
|
/**
|
|
116
116
|
* @remarks
|
|
117
|
-
* The LSN of the parent branch at the time this branch was created.
|
|
117
|
+
* The Log Sequence Number (LSN) of the parent branch at the time this branch was created.
|
|
118
118
|
*
|
|
119
119
|
* @example
|
|
120
120
|
* 0/3522648
|
|
@@ -124,7 +124,7 @@ export declare class DescribeBranchResponseBodyBranch extends $dara.Model {
|
|
|
124
124
|
* @remarks
|
|
125
125
|
* The data synchronization point in time selected from the parent branch when this branch was created, in ISO 8601 UTC format.
|
|
126
126
|
*
|
|
127
|
-
*
|
|
127
|
+
* Description:
|
|
128
128
|
* - For child branches, this value indicates the point in time of the parent branch selected during creation.
|
|
129
129
|
* - If no parent branch exists, the value 1970-01-01T00:00:00.000Z is returned.
|
|
130
130
|
*
|
|
@@ -134,7 +134,7 @@ export declare class DescribeBranchResponseBodyBranch extends $dara.Model {
|
|
|
134
134
|
parentTimestamp?: string;
|
|
135
135
|
/**
|
|
136
136
|
* @remarks
|
|
137
|
-
* The Supabase project ID
|
|
137
|
+
* The Supabase project ID that corresponds to the primary branch.
|
|
138
138
|
*
|
|
139
139
|
* @example
|
|
140
140
|
* spb-xxxx
|
|
@@ -160,6 +160,7 @@ export declare class DescribeBranchResponseBodyBranch extends $dara.Model {
|
|
|
160
160
|
* Supabase
|
|
161
161
|
*/
|
|
162
162
|
serviceType?: string;
|
|
163
|
+
spbProjectId?: string;
|
|
163
164
|
/**
|
|
164
165
|
* @remarks
|
|
165
166
|
* The branch status.
|
|
@@ -170,7 +171,7 @@ export declare class DescribeBranchResponseBodyBranch extends $dara.Model {
|
|
|
170
171
|
status?: string;
|
|
171
172
|
/**
|
|
172
173
|
* @remarks
|
|
173
|
-
* The branch
|
|
174
|
+
* The list of branch tags.
|
|
174
175
|
*/
|
|
175
176
|
tags?: DescribeBranchResponseBodyBranchTags[];
|
|
176
177
|
static names(): {
|
|
@@ -75,6 +75,7 @@ class DescribeBranchResponseBodyBranch extends $dara.Model {
|
|
|
75
75
|
projectId: 'ProjectId',
|
|
76
76
|
protected: 'Protected',
|
|
77
77
|
serviceType: 'ServiceType',
|
|
78
|
+
spbProjectId: 'SpbProjectId',
|
|
78
79
|
status: 'Status',
|
|
79
80
|
tags: 'Tags',
|
|
80
81
|
};
|
|
@@ -96,6 +97,7 @@ class DescribeBranchResponseBodyBranch extends $dara.Model {
|
|
|
96
97
|
projectId: 'string',
|
|
97
98
|
protected: 'boolean',
|
|
98
99
|
serviceType: 'string',
|
|
100
|
+
spbProjectId: 'string',
|
|
99
101
|
status: 'string',
|
|
100
102
|
tags: { 'type': 'array', 'itemType': DescribeBranchResponseBodyBranchTags },
|
|
101
103
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DescribeBranchResponseBody.js","sourceRoot":"","sources":["../../src/models/DescribeBranchResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,oCAAqC,SAAQ,KAAK,CAAC,KAAK;IAiBnE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,GAAG,EAAE,KAAK;YACV,KAAK,EAAE,OAAO;SACf,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,GAAG,EAAE,QAAQ;YACb,KAAK,EAAE,QAAQ;SAChB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAtCD,oFAsCC;AAED,MAAa,gCAAiC,SAAQ,KAAK,CAAC,KAAK;
|
|
1
|
+
{"version":3,"file":"DescribeBranchResponseBody.js","sourceRoot":"","sources":["../../src/models/DescribeBranchResponseBody.ts"],"names":[],"mappings":"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"}
|
|
@@ -2,7 +2,7 @@ import * as $dara from '@darabonba/typescript';
|
|
|
2
2
|
export declare class ListBranchesRequest extends $dara.Model {
|
|
3
3
|
/**
|
|
4
4
|
* @remarks
|
|
5
|
-
* The maximum number of records to return in this
|
|
5
|
+
* The maximum number of records to return in this query.
|
|
6
6
|
*
|
|
7
7
|
* @example
|
|
8
8
|
* 20
|
|
@@ -10,7 +10,7 @@ export declare class ListBranchesRequest extends $dara.Model {
|
|
|
10
10
|
maxResults?: number;
|
|
11
11
|
/**
|
|
12
12
|
* @remarks
|
|
13
|
-
* The cursor for
|
|
13
|
+
* 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.
|
|
14
14
|
*
|
|
15
15
|
* @example
|
|
16
16
|
* caeba0bbb2be03f84eb48b699f0a4883
|
|
@@ -42,7 +42,7 @@ export declare class ListBranchesRequest extends $dara.Model {
|
|
|
42
42
|
pageSize?: number;
|
|
43
43
|
/**
|
|
44
44
|
* @remarks
|
|
45
|
-
* The parent branch ID. This parameter specifies the parent branch for a new branch or a query filter.
|
|
45
|
+
* The parent branch ID. This parameter specifies the parent branch for a new branch or as a query filter condition.
|
|
46
46
|
*
|
|
47
47
|
* @example
|
|
48
48
|
* br-main
|
|
@@ -66,7 +66,7 @@ export declare class ListBranchesRequest extends $dara.Model {
|
|
|
66
66
|
search?: string;
|
|
67
67
|
/**
|
|
68
68
|
* @remarks
|
|
69
|
-
* The
|
|
69
|
+
* The sort field.
|
|
70
70
|
*
|
|
71
71
|
* Valid values:
|
|
72
72
|
* - BranchName: sorts by branch name.
|
|
@@ -81,7 +81,7 @@ export declare class ListBranchesRequest extends $dara.Model {
|
|
|
81
81
|
sortBy?: string;
|
|
82
82
|
/**
|
|
83
83
|
* @remarks
|
|
84
|
-
* The sort
|
|
84
|
+
* The sort direction.
|
|
85
85
|
*
|
|
86
86
|
* Valid values:
|
|
87
87
|
* - Asc: ascending order.
|
|
@@ -41,6 +41,7 @@ export declare class ListBranchesResponseBodyBranchesBranch extends $dara.Model
|
|
|
41
41
|
projectId?: string;
|
|
42
42
|
protected?: boolean;
|
|
43
43
|
serviceType?: string;
|
|
44
|
+
spbProjectId?: string;
|
|
44
45
|
status?: string;
|
|
45
46
|
tags?: ListBranchesResponseBodyBranchesBranchTags;
|
|
46
47
|
static names(): {
|
|
@@ -71,7 +72,7 @@ export declare class ListBranchesResponseBody extends $dara.Model {
|
|
|
71
72
|
branches?: ListBranchesResponseBodyBranches;
|
|
72
73
|
/**
|
|
73
74
|
* @remarks
|
|
74
|
-
* The maximum number of records to return in this
|
|
75
|
+
* The maximum number of records to return in this query.
|
|
75
76
|
*
|
|
76
77
|
* @example
|
|
77
78
|
* 20
|
|
@@ -79,7 +80,7 @@ export declare class ListBranchesResponseBody extends $dara.Model {
|
|
|
79
80
|
maxResults?: number;
|
|
80
81
|
/**
|
|
81
82
|
* @remarks
|
|
82
|
-
* The cursor for
|
|
83
|
+
* 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.
|
|
83
84
|
*
|
|
84
85
|
* @example
|
|
85
86
|
* caeba0bbb2be03f84eb48b699f0a4883
|
|
@@ -119,7 +120,7 @@ export declare class ListBranchesResponseBody extends $dara.Model {
|
|
|
119
120
|
requestId?: string;
|
|
120
121
|
/**
|
|
121
122
|
* @remarks
|
|
122
|
-
* The total number of branches that match the query
|
|
123
|
+
* The total number of branches that match the query conditions.
|
|
123
124
|
*
|
|
124
125
|
* @example
|
|
125
126
|
* 20
|
|
@@ -96,6 +96,7 @@ class ListBranchesResponseBodyBranchesBranch extends $dara.Model {
|
|
|
96
96
|
projectId: 'ProjectId',
|
|
97
97
|
protected: 'Protected',
|
|
98
98
|
serviceType: 'ServiceType',
|
|
99
|
+
spbProjectId: 'SpbProjectId',
|
|
99
100
|
status: 'Status',
|
|
100
101
|
tags: 'Tags',
|
|
101
102
|
};
|
|
@@ -116,6 +117,7 @@ class ListBranchesResponseBodyBranchesBranch extends $dara.Model {
|
|
|
116
117
|
projectId: 'string',
|
|
117
118
|
protected: 'boolean',
|
|
118
119
|
serviceType: 'string',
|
|
120
|
+
spbProjectId: 'string',
|
|
119
121
|
status: 'string',
|
|
120
122
|
tags: ListBranchesResponseBodyBranchesBranchTags,
|
|
121
123
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ListBranchesResponseBody.js","sourceRoot":"","sources":["../../src/models/ListBranchesResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,6CAA8C,SAAQ,KAAK,CAAC,KAAK;IAG5E,MAAM,CAAC,KAAK;QACV,OAAO;YACL,GAAG,EAAE,KAAK;YACV,KAAK,EAAE,OAAO;SACf,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,GAAG,EAAE,QAAQ;YACb,KAAK,EAAE,QAAQ;SAChB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAxBD,sGAwBC;AAED,MAAa,0CAA2C,SAAQ,KAAK,CAAC,KAAK;IAEzE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,GAAG,EAAE,KAAK;SACX,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,GAAG,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,6CAA6C,EAAE;SACpF,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC;YAC3B,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;QACtC,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAxBD,gGAwBC;AAED,MAAa,sCAAuC,SAAQ,KAAK,CAAC,KAAK;
|
|
1
|
+
{"version":3,"file":"ListBranchesResponseBody.js","sourceRoot":"","sources":["../../src/models/ListBranchesResponseBody.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -26,20 +26,20 @@ export default class Client extends OpenApi {
|
|
|
26
26
|
'cn-shenzhen-finance-1': "gpdb.aliyuncs.com",
|
|
27
27
|
'cn-qingdao': "gpdb.aliyuncs.com",
|
|
28
28
|
'cn-north-2-gov-1': "gpdb.aliyuncs.com",
|
|
29
|
-
'me-east-1': "gpdb.me-east-1.aliyuncs.com",
|
|
30
|
-
'me-central-1': "gpdb.me-central-1.aliyuncs.com",
|
|
31
|
-
'eu-west-1': "gpdb.eu-west-1.aliyuncs.com",
|
|
32
|
-
'eu-central-1': "gpdb.eu-central-1.aliyuncs.com",
|
|
33
|
-
'cn-zhangjiakou': "gpdb.cn-zhangjiakou.aliyuncs.com",
|
|
34
29
|
'cn-wulanchabu': "gpdb.cn-wulanchabu.aliyuncs.com",
|
|
35
|
-
'cn-
|
|
36
|
-
'cn-chengdu': "gpdb.cn-chengdu.aliyuncs.com",
|
|
37
|
-
'cn-beijing-finance-1': "gpdb.cn-beijing-finance-1.aliyuncs.com",
|
|
38
|
-
'ap-southeast-7': "gpdb.ap-southeast-7.aliyuncs.com",
|
|
39
|
-
'ap-southeast-5': "gpdb.ap-southeast-5.aliyuncs.com",
|
|
40
|
-
'ap-southeast-3': "gpdb.ap-southeast-3.aliyuncs.com",
|
|
30
|
+
'cn-zhangjiakou': "gpdb.cn-zhangjiakou.aliyuncs.com",
|
|
41
31
|
'ap-northeast-2': "gpdb.ap-northeast-2.aliyuncs.com",
|
|
42
32
|
'ap-northeast-1': "gpdb.ap-northeast-1.aliyuncs.com",
|
|
33
|
+
'cn-chengdu': "gpdb.cn-chengdu.aliyuncs.com",
|
|
34
|
+
'ap-southeast-3': "gpdb.ap-southeast-3.aliyuncs.com",
|
|
35
|
+
'cn-huhehaote': "gpdb.cn-huhehaote.aliyuncs.com",
|
|
36
|
+
'ap-southeast-5': "gpdb.ap-southeast-5.aliyuncs.com",
|
|
37
|
+
'ap-southeast-7': "gpdb.ap-southeast-7.aliyuncs.com",
|
|
38
|
+
'eu-west-1': "gpdb.eu-west-1.aliyuncs.com",
|
|
39
|
+
'eu-central-1': "gpdb.eu-central-1.aliyuncs.com",
|
|
40
|
+
'me-east-1': "gpdb.me-east-1.aliyuncs.com",
|
|
41
|
+
'me-central-1': "gpdb.me-central-1.aliyuncs.com",
|
|
42
|
+
'cn-beijing-finance-1': "gpdb.cn-beijing-finance-1.aliyuncs.com",
|
|
43
43
|
};
|
|
44
44
|
this.checkConfig(config);
|
|
45
45
|
this._endpoint = this.getEndpoint("gpdb", this._regionId, this._endpointRule, this._network, this._suffix, this._endpointMap, this._endpoint);
|
|
@@ -12242,7 +12242,7 @@ export default class Client extends OpenApi {
|
|
|
12242
12242
|
* Queries the branch list of a Supabase project.
|
|
12243
12243
|
*
|
|
12244
12244
|
* @remarks
|
|
12245
|
-
*
|
|
12245
|
+
* This operation performs a paging query of all branches under a specified Supabase project. You can filter results by parent branch, keyword, and sorting conditions.
|
|
12246
12246
|
*
|
|
12247
12247
|
* @param request - ListBranchesRequest
|
|
12248
12248
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -12308,7 +12308,7 @@ export default class Client extends OpenApi {
|
|
|
12308
12308
|
* Queries the branch list of a Supabase project.
|
|
12309
12309
|
*
|
|
12310
12310
|
* @remarks
|
|
12311
|
-
*
|
|
12311
|
+
* This operation performs a paging query of all branches under a specified Supabase project. You can filter results by parent branch, keyword, and sorting conditions.
|
|
12312
12312
|
*
|
|
12313
12313
|
* @param request - ListBranchesRequest
|
|
12314
12314
|
* @returns ListBranchesResponse
|
|
@@ -5,7 +5,7 @@ import * as $dara from '@darabonba/typescript';
|
|
|
5
5
|
export class DescribeBranchRequest extends $dara.Model {
|
|
6
6
|
/**
|
|
7
7
|
* @remarks
|
|
8
|
-
* The branch ID
|
|
8
|
+
* The branch ID that uniquely identifies a Supabase branch.
|
|
9
9
|
*
|
|
10
10
|
* This parameter is required.
|
|
11
11
|
*
|
|
@@ -45,7 +45,7 @@ export class DescribeBranchResponseBodyBranchTags extends $dara.Model {
|
|
|
45
45
|
export class DescribeBranchResponseBodyBranch extends $dara.Model {
|
|
46
46
|
/**
|
|
47
47
|
* @remarks
|
|
48
|
-
* The branch ID
|
|
48
|
+
* The branch ID that uniquely identifies a Supabase branch.
|
|
49
49
|
*
|
|
50
50
|
* @example
|
|
51
51
|
* br-xxxx
|
|
@@ -113,7 +113,7 @@ export class DescribeBranchResponseBodyBranch extends $dara.Model {
|
|
|
113
113
|
isDefault?: boolean;
|
|
114
114
|
/**
|
|
115
115
|
* @remarks
|
|
116
|
-
* The parent branch ID, which specifies the parent branch
|
|
116
|
+
* The parent branch ID, which specifies the parent branch of a new branch or a query condition.
|
|
117
117
|
*
|
|
118
118
|
* @example
|
|
119
119
|
* br-main
|
|
@@ -129,7 +129,7 @@ export class DescribeBranchResponseBodyBranch extends $dara.Model {
|
|
|
129
129
|
parentBranchName?: string;
|
|
130
130
|
/**
|
|
131
131
|
* @remarks
|
|
132
|
-
* The LSN of the parent branch at the time this branch was created.
|
|
132
|
+
* The Log Sequence Number (LSN) of the parent branch at the time this branch was created.
|
|
133
133
|
*
|
|
134
134
|
* @example
|
|
135
135
|
* 0/3522648
|
|
@@ -139,7 +139,7 @@ export class DescribeBranchResponseBodyBranch extends $dara.Model {
|
|
|
139
139
|
* @remarks
|
|
140
140
|
* The data synchronization point in time selected from the parent branch when this branch was created, in ISO 8601 UTC format.
|
|
141
141
|
*
|
|
142
|
-
*
|
|
142
|
+
* Description:
|
|
143
143
|
* - For child branches, this value indicates the point in time of the parent branch selected during creation.
|
|
144
144
|
* - If no parent branch exists, the value 1970-01-01T00:00:00.000Z is returned.
|
|
145
145
|
*
|
|
@@ -149,7 +149,7 @@ export class DescribeBranchResponseBodyBranch extends $dara.Model {
|
|
|
149
149
|
parentTimestamp?: string;
|
|
150
150
|
/**
|
|
151
151
|
* @remarks
|
|
152
|
-
* The Supabase project ID
|
|
152
|
+
* The Supabase project ID that corresponds to the primary branch.
|
|
153
153
|
*
|
|
154
154
|
* @example
|
|
155
155
|
* spb-xxxx
|
|
@@ -175,6 +175,7 @@ export class DescribeBranchResponseBodyBranch extends $dara.Model {
|
|
|
175
175
|
* Supabase
|
|
176
176
|
*/
|
|
177
177
|
serviceType?: string;
|
|
178
|
+
spbProjectId?: string;
|
|
178
179
|
/**
|
|
179
180
|
* @remarks
|
|
180
181
|
* The branch status.
|
|
@@ -185,7 +186,7 @@ export class DescribeBranchResponseBodyBranch extends $dara.Model {
|
|
|
185
186
|
status?: string;
|
|
186
187
|
/**
|
|
187
188
|
* @remarks
|
|
188
|
-
* The branch
|
|
189
|
+
* The list of branch tags.
|
|
189
190
|
*/
|
|
190
191
|
tags?: DescribeBranchResponseBodyBranchTags[];
|
|
191
192
|
static names(): { [key: string]: string } {
|
|
@@ -205,6 +206,7 @@ export class DescribeBranchResponseBodyBranch extends $dara.Model {
|
|
|
205
206
|
projectId: 'ProjectId',
|
|
206
207
|
protected: 'Protected',
|
|
207
208
|
serviceType: 'ServiceType',
|
|
209
|
+
spbProjectId: 'SpbProjectId',
|
|
208
210
|
status: 'Status',
|
|
209
211
|
tags: 'Tags',
|
|
210
212
|
};
|
|
@@ -227,6 +229,7 @@ export class DescribeBranchResponseBodyBranch extends $dara.Model {
|
|
|
227
229
|
projectId: 'string',
|
|
228
230
|
protected: 'boolean',
|
|
229
231
|
serviceType: 'string',
|
|
232
|
+
spbProjectId: 'string',
|
|
230
233
|
status: 'string',
|
|
231
234
|
tags: { 'type': 'array', 'itemType': DescribeBranchResponseBodyBranchTags },
|
|
232
235
|
};
|
|
@@ -5,7 +5,7 @@ import * as $dara from '@darabonba/typescript';
|
|
|
5
5
|
export class ListBranchesRequest extends $dara.Model {
|
|
6
6
|
/**
|
|
7
7
|
* @remarks
|
|
8
|
-
* The maximum number of records to return in this
|
|
8
|
+
* The maximum number of records to return in this query.
|
|
9
9
|
*
|
|
10
10
|
* @example
|
|
11
11
|
* 20
|
|
@@ -13,7 +13,7 @@ export class ListBranchesRequest extends $dara.Model {
|
|
|
13
13
|
maxResults?: number;
|
|
14
14
|
/**
|
|
15
15
|
* @remarks
|
|
16
|
-
* The cursor for
|
|
16
|
+
* 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.
|
|
17
17
|
*
|
|
18
18
|
* @example
|
|
19
19
|
* caeba0bbb2be03f84eb48b699f0a4883
|
|
@@ -45,7 +45,7 @@ export class ListBranchesRequest extends $dara.Model {
|
|
|
45
45
|
pageSize?: number;
|
|
46
46
|
/**
|
|
47
47
|
* @remarks
|
|
48
|
-
* The parent branch ID. This parameter specifies the parent branch for a new branch or a query filter.
|
|
48
|
+
* The parent branch ID. This parameter specifies the parent branch for a new branch or as a query filter condition.
|
|
49
49
|
*
|
|
50
50
|
* @example
|
|
51
51
|
* br-main
|
|
@@ -69,7 +69,7 @@ export class ListBranchesRequest extends $dara.Model {
|
|
|
69
69
|
search?: string;
|
|
70
70
|
/**
|
|
71
71
|
* @remarks
|
|
72
|
-
* The
|
|
72
|
+
* The sort field.
|
|
73
73
|
*
|
|
74
74
|
* Valid values:
|
|
75
75
|
* - BranchName: sorts by branch name.
|
|
@@ -84,7 +84,7 @@ export class ListBranchesRequest extends $dara.Model {
|
|
|
84
84
|
sortBy?: string;
|
|
85
85
|
/**
|
|
86
86
|
* @remarks
|
|
87
|
-
* The sort
|
|
87
|
+
* The sort direction.
|
|
88
88
|
*
|
|
89
89
|
* Valid values:
|
|
90
90
|
* - Asc: ascending order.
|
|
@@ -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
|