File tree 2 files changed +24
-1
lines changed
src/main/java/com/yunionyun/mcp/mcclient/managers/impl/compute
2 files changed +24
-1
lines changed Original file line number Diff line number Diff line change 4
4
5
5
<groupId >com.yunionyun.mcp</groupId >
6
6
<artifactId >mcclient</artifactId >
7
- <version >3.2.16 </version >
7
+ <version >3.2.17 </version >
8
8
<packaging >jar</packaging >
9
9
10
10
<name >${project.groupId} :${project.artifactId} </name >
Original file line number Diff line number Diff line change
1
+ package com .yunionyun .mcp .mcclient .managers .impl .compute ;
2
+
3
+ import com .yunionyun .mcp .mcclient .EndpointType ;
4
+ import com .yunionyun .mcp .mcclient .managers .ComputeManager ;
5
+
6
+ public class ContainerManager extends ComputeManager {
7
+ public ContainerManager () {
8
+ this (EndpointType .InternalURL );
9
+ }
10
+
11
+ public ContainerManager (EndpointType endpointType ) {
12
+ super (
13
+ "container" ,
14
+ "containers" ,
15
+ endpointType ,
16
+ new String []{
17
+ "ID" ,
18
+ "Name" ,
19
+ "Spec" ,
20
+ },
21
+ new String []{});
22
+ }
23
+ }
You can’t perform that action at this time.
0 commit comments