@alicloud/cs20151215 3.0.25 → 3.0.26

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alicloud/cs20151215",
3
- "version": "3.0.25",
3
+ "version": "3.0.26",
4
4
  "description": "",
5
5
  "main": "dist/client.js",
6
6
  "scripts": {
package/src/client.ts CHANGED
@@ -9087,6 +9087,31 @@ export class DescribeClusterNodesResponseBodyPage extends $tea.Model {
9087
9087
  }
9088
9088
  }
9089
9089
 
9090
+ export class DescribeClusterResourcesResponseBodyDependencies extends $tea.Model {
9091
+ clusterId?: string;
9092
+ resourceType?: string;
9093
+ instanceId?: string;
9094
+ static names(): { [key: string]: string } {
9095
+ return {
9096
+ clusterId: 'cluster_id',
9097
+ resourceType: 'resource_type',
9098
+ instanceId: 'instance_id',
9099
+ };
9100
+ }
9101
+
9102
+ static types(): { [key: string]: any } {
9103
+ return {
9104
+ clusterId: 'string',
9105
+ resourceType: 'string',
9106
+ instanceId: 'string',
9107
+ };
9108
+ }
9109
+
9110
+ constructor(map?: { [key: string]: any }) {
9111
+ super(map);
9112
+ }
9113
+ }
9114
+
9090
9115
  export class DescribeClusterResourcesResponseBody extends $tea.Model {
9091
9116
  clusterId?: string;
9092
9117
  created?: string;
@@ -9095,6 +9120,7 @@ export class DescribeClusterResourcesResponseBody extends $tea.Model {
9095
9120
  resourceType?: string;
9096
9121
  state?: string;
9097
9122
  autoCreate?: number;
9123
+ dependencies?: DescribeClusterResourcesResponseBodyDependencies;
9098
9124
  static names(): { [key: string]: string } {
9099
9125
  return {
9100
9126
  clusterId: 'cluster_id',
@@ -9104,6 +9130,7 @@ export class DescribeClusterResourcesResponseBody extends $tea.Model {
9104
9130
  resourceType: 'resource_type',
9105
9131
  state: 'state',
9106
9132
  autoCreate: 'auto_create',
9133
+ dependencies: 'dependencies',
9107
9134
  };
9108
9135
  }
9109
9136
 
@@ -9116,6 +9143,7 @@ export class DescribeClusterResourcesResponseBody extends $tea.Model {
9116
9143
  resourceType: 'string',
9117
9144
  state: 'string',
9118
9145
  autoCreate: 'number',
9146
+ dependencies: DescribeClusterResourcesResponseBodyDependencies,
9119
9147
  };
9120
9148
  }
9121
9149