Skip to content

Commit d28d677

Browse files
committed
chore: auto update client api apecloud/apecloud@60227f1
1 parent 6979bc3 commit d28d677

31 files changed

+5329
-3
lines changed

.generator/schemas/adminapi.yaml

Lines changed: 165 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19209,6 +19209,167 @@ components:
1920919209
default: 8
1921019210
status:
1921119211
$ref: '#/components/schemas/engineOptionsDisasterRecoveryStatus'
19212+
cdcClusterConfig:
19213+
type: object
19214+
properties:
19215+
component:
19216+
type: string
19217+
configName:
19218+
type: string
19219+
parameters:
19220+
type: object
19221+
additionalProperties:
19222+
type: string
19223+
cdcClusterAccount:
19224+
type: object
19225+
properties:
19226+
defaultAccountName:
19227+
type: array
19228+
items:
19229+
type: string
19230+
cdcNetworkType:
19231+
type: string
19232+
enum:
19233+
- ClusterIP
19234+
- NodePort
19235+
- LoadBalancer
19236+
- FixedPodIP
19237+
cdcClusterEndpoint:
19238+
type: object
19239+
properties:
19240+
role:
19241+
type: string
19242+
component:
19243+
type: string
19244+
portName:
19245+
type: string
19246+
port:
19247+
type: integer
19248+
format: int32
19249+
authDatabase:
19250+
type: string
19251+
nullable: true
19252+
networkType:
19253+
$ref: '#/components/schemas/cdcNetworkType'
19254+
cdcSqlExecutor:
19255+
type: object
19256+
properties:
19257+
sql:
19258+
type: array
19259+
items:
19260+
type: string
19261+
result:
19262+
type: array
19263+
items:
19264+
type: string
19265+
authDatabase:
19266+
type: string
19267+
nullable: true
19268+
cdcLifecycleAction:
19269+
type: object
19270+
properties:
19271+
name:
19272+
type: string
19273+
sqlExecutor:
19274+
$ref: '#/components/schemas/cdcSqlExecutor'
19275+
cdcLifecycle:
19276+
type: object
19277+
properties:
19278+
preStart:
19279+
$ref: '#/components/schemas/cdcLifecycleAction'
19280+
postStart:
19281+
$ref: '#/components/schemas/cdcLifecycleAction'
19282+
preStop:
19283+
$ref: '#/components/schemas/cdcLifecycleAction'
19284+
postStop:
19285+
$ref: '#/components/schemas/cdcLifecycleAction'
19286+
cdcSettings:
19287+
type: object
19288+
properties:
19289+
config:
19290+
$ref: '#/components/schemas/cdcClusterConfig'
19291+
account:
19292+
$ref: '#/components/schemas/cdcClusterAccount'
19293+
endpoint:
19294+
$ref: '#/components/schemas/cdcClusterEndpoint'
19295+
lifecycle:
19296+
$ref: '#/components/schemas/cdcLifecycle'
19297+
cdcConfigResourceType:
19298+
type: string
19299+
enum:
19300+
- ConfigMap
19301+
- Secret
19302+
cdcConfigFormatType:
19303+
type: string
19304+
enum:
19305+
- Ini
19306+
- Toml
19307+
- Properties
19308+
cdcToolTemplate:
19309+
type: object
19310+
properties:
19311+
image:
19312+
type: string
19313+
command:
19314+
type: array
19315+
items:
19316+
type: string
19317+
args:
19318+
type: array
19319+
items:
19320+
type: string
19321+
replicas:
19322+
type: integer
19323+
format: int32
19324+
nullable: true
19325+
configFileName:
19326+
type: string
19327+
configFilePath:
19328+
type: string
19329+
configResourceType:
19330+
$ref: '#/components/schemas/cdcConfigResourceType'
19331+
configFormat:
19332+
$ref: '#/components/schemas/cdcConfigFormatType'
19333+
localRecoveryEnabled:
19334+
description: whether to enable local recovery feature
19335+
type: boolean
19336+
localRecoveryStorageClass:
19337+
type: string
19338+
nullable: true
19339+
localRecoveryStorageSize:
19340+
description: size of local recovery storage, the unit is MiB
19341+
type: integer
19342+
nullable: true
19343+
localRecoveryPath:
19344+
type: string
19345+
LogPath:
19346+
type: string
19347+
startupTimeoutMinutes:
19348+
type: integer
19349+
format: int32
19350+
nullable: true
19351+
properties:
19352+
type: object
19353+
additionalProperties:
19354+
type: string
19355+
cdcWorkerTemplate:
19356+
type: object
19357+
properties:
19358+
usingTool:
19359+
$ref: '#/components/schemas/cdcToolTemplate'
19360+
cdcOption:
19361+
type: object
19362+
properties:
19363+
versions:
19364+
type: array
19365+
items:
19366+
type: string
19367+
source:
19368+
$ref: '#/components/schemas/cdcSettings'
19369+
sink:
19370+
$ref: '#/components/schemas/cdcSettings'
19371+
worker:
19372+
$ref: '#/components/schemas/cdcWorkerTemplate'
1921219373
engineOption:
1921319374
type: object
1921419375
required:
@@ -19332,6 +19493,10 @@ components:
1933219493
$ref: '#/components/schemas/parameterOption'
1933319494
disasterRecovery:
1933419495
$ref: '#/components/schemas/disasterRecoveryOption'
19496+
cdc:
19497+
type: array
19498+
items:
19499+
$ref: '#/components/schemas/cdcOption'
1933519500
engineOptionList:
1933619501
required:
1933719502
- items

.generator/schemas/openapi.yaml

Lines changed: 165 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14632,6 +14632,167 @@ components:
1463214632
default: 8
1463314633
status:
1463414634
$ref: '#/components/schemas/engineOptionsDisasterRecoveryStatus'
14635+
cdcClusterConfig:
14636+
type: object
14637+
properties:
14638+
component:
14639+
type: string
14640+
configName:
14641+
type: string
14642+
parameters:
14643+
type: object
14644+
additionalProperties:
14645+
type: string
14646+
cdcClusterAccount:
14647+
type: object
14648+
properties:
14649+
defaultAccountName:
14650+
type: array
14651+
items:
14652+
type: string
14653+
cdcNetworkType:
14654+
type: string
14655+
enum:
14656+
- ClusterIP
14657+
- NodePort
14658+
- LoadBalancer
14659+
- FixedPodIP
14660+
cdcClusterEndpoint:
14661+
type: object
14662+
properties:
14663+
role:
14664+
type: string
14665+
component:
14666+
type: string
14667+
portName:
14668+
type: string
14669+
port:
14670+
type: integer
14671+
format: int32
14672+
authDatabase:
14673+
type: string
14674+
nullable: true
14675+
networkType:
14676+
$ref: '#/components/schemas/cdcNetworkType'
14677+
cdcSqlExecutor:
14678+
type: object
14679+
properties:
14680+
sql:
14681+
type: array
14682+
items:
14683+
type: string
14684+
result:
14685+
type: array
14686+
items:
14687+
type: string
14688+
authDatabase:
14689+
type: string
14690+
nullable: true
14691+
cdcLifecycleAction:
14692+
type: object
14693+
properties:
14694+
name:
14695+
type: string
14696+
sqlExecutor:
14697+
$ref: '#/components/schemas/cdcSqlExecutor'
14698+
cdcLifecycle:
14699+
type: object
14700+
properties:
14701+
preStart:
14702+
$ref: '#/components/schemas/cdcLifecycleAction'
14703+
postStart:
14704+
$ref: '#/components/schemas/cdcLifecycleAction'
14705+
preStop:
14706+
$ref: '#/components/schemas/cdcLifecycleAction'
14707+
postStop:
14708+
$ref: '#/components/schemas/cdcLifecycleAction'
14709+
cdcSettings:
14710+
type: object
14711+
properties:
14712+
config:
14713+
$ref: '#/components/schemas/cdcClusterConfig'
14714+
account:
14715+
$ref: '#/components/schemas/cdcClusterAccount'
14716+
endpoint:
14717+
$ref: '#/components/schemas/cdcClusterEndpoint'
14718+
lifecycle:
14719+
$ref: '#/components/schemas/cdcLifecycle'
14720+
cdcConfigResourceType:
14721+
type: string
14722+
enum:
14723+
- ConfigMap
14724+
- Secret
14725+
cdcConfigFormatType:
14726+
type: string
14727+
enum:
14728+
- Ini
14729+
- Toml
14730+
- Properties
14731+
cdcToolTemplate:
14732+
type: object
14733+
properties:
14734+
image:
14735+
type: string
14736+
command:
14737+
type: array
14738+
items:
14739+
type: string
14740+
args:
14741+
type: array
14742+
items:
14743+
type: string
14744+
replicas:
14745+
type: integer
14746+
format: int32
14747+
nullable: true
14748+
configFileName:
14749+
type: string
14750+
configFilePath:
14751+
type: string
14752+
configResourceType:
14753+
$ref: '#/components/schemas/cdcConfigResourceType'
14754+
configFormat:
14755+
$ref: '#/components/schemas/cdcConfigFormatType'
14756+
localRecoveryEnabled:
14757+
description: whether to enable local recovery feature
14758+
type: boolean
14759+
localRecoveryStorageClass:
14760+
type: string
14761+
nullable: true
14762+
localRecoveryStorageSize:
14763+
description: size of local recovery storage, the unit is MiB
14764+
type: integer
14765+
nullable: true
14766+
localRecoveryPath:
14767+
type: string
14768+
LogPath:
14769+
type: string
14770+
startupTimeoutMinutes:
14771+
type: integer
14772+
format: int32
14773+
nullable: true
14774+
properties:
14775+
type: object
14776+
additionalProperties:
14777+
type: string
14778+
cdcWorkerTemplate:
14779+
type: object
14780+
properties:
14781+
usingTool:
14782+
$ref: '#/components/schemas/cdcToolTemplate'
14783+
cdcOption:
14784+
type: object
14785+
properties:
14786+
versions:
14787+
type: array
14788+
items:
14789+
type: string
14790+
source:
14791+
$ref: '#/components/schemas/cdcSettings'
14792+
sink:
14793+
$ref: '#/components/schemas/cdcSettings'
14794+
worker:
14795+
$ref: '#/components/schemas/cdcWorkerTemplate'
1463514796
engineOption:
1463614797
type: object
1463714798
required:
@@ -14755,6 +14916,10 @@ components:
1475514916
$ref: '#/components/schemas/parameterOption'
1475614917
disasterRecovery:
1475714918
$ref: '#/components/schemas/disasterRecoveryOption'
14919+
cdc:
14920+
type: array
14921+
items:
14922+
$ref: '#/components/schemas/cdcOption'
1475814923
engineOptionList:
1475914924
required:
1476014925
- items

apecloud

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Subproject commit 3ac25f6e3049b258dc38aaee936181e14df701ac
1+
Subproject commit 60227f1ac3628d2b5273df0f292c454b6e1372db

0 commit comments

Comments
 (0)