@alicloud/websitebuild20250429 2.23.0 → 2.23.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.
Files changed (30) hide show
  1. package/dist/client.js +12 -0
  2. package/dist/client.js.map +1 -1
  3. package/dist/models/AppInstanceProfile.d.ts +1 -0
  4. package/dist/models/AppInstanceProfile.js +2 -0
  5. package/dist/models/AppInstanceProfile.js.map +1 -1
  6. package/dist/models/AppOperationAddress.d.ts +9 -0
  7. package/dist/models/AppOperationAddress.js +21 -0
  8. package/dist/models/AppOperationAddress.js.map +1 -1
  9. package/dist/models/CreateAppAssistantAgentRequest.d.ts +4 -0
  10. package/dist/models/CreateAppAssistantAgentRequest.js.map +1 -1
  11. package/dist/models/CreateAppAssistantAgentResponseBody.d.ts +8 -0
  12. package/dist/models/CreateAppAssistantAgentResponseBody.js.map +1 -1
  13. package/dist/models/CreateAppInstanceRequest.d.ts +32 -0
  14. package/dist/models/CreateAppInstanceRequest.js +8 -0
  15. package/dist/models/CreateAppInstanceRequest.js.map +1 -1
  16. package/dist/models/CreateAppInstanceShrinkRequest.d.ts +24 -0
  17. package/dist/models/CreateAppInstanceShrinkRequest.js +8 -0
  18. package/dist/models/CreateAppInstanceShrinkRequest.js.map +1 -1
  19. package/dist/models/ListAppInstancesResponseBody.d.ts +8 -0
  20. package/dist/models/ListAppInstancesResponseBody.js +2 -0
  21. package/dist/models/ListAppInstancesResponseBody.js.map +1 -1
  22. package/package.json +1 -1
  23. package/src/client.ts +16 -0
  24. package/src/models/AppInstanceProfile.ts +3 -0
  25. package/src/models/AppOperationAddress.ts +30 -0
  26. package/src/models/CreateAppAssistantAgentRequest.ts +4 -0
  27. package/src/models/CreateAppAssistantAgentResponseBody.ts +8 -0
  28. package/src/models/CreateAppInstanceRequest.ts +40 -0
  29. package/src/models/CreateAppInstanceShrinkRequest.ts +32 -0
  30. package/src/models/ListAppInstancesResponseBody.ts +10 -0
@@ -27,6 +27,11 @@ export class CreateAppInstanceShrinkRequest extends $dara.Model {
27
27
  * 210713a117660695309606626a
28
28
  */
29
29
  clientToken?: string;
30
+ /**
31
+ * @example
32
+ * OPEN_SUBSCRIPTION
33
+ */
34
+ createAction?: string;
30
35
  /**
31
36
  * @remarks
32
37
  * Deployment area
@@ -35,6 +40,11 @@ export class CreateAppInstanceShrinkRequest extends $dara.Model {
35
40
  * ChineseMainland
36
41
  */
37
42
  deployArea?: string;
43
+ /**
44
+ * @example
45
+ * go-to-the-docks-for-french-fries
46
+ */
47
+ description?: string;
38
48
  /**
39
49
  * @remarks
40
50
  * Required. The number of subscription periods
@@ -51,6 +61,11 @@ export class CreateAppInstanceShrinkRequest extends $dara.Model {
51
61
  * {}
52
62
  */
53
63
  extend?: string;
64
+ /**
65
+ * @example
66
+ * docs
67
+ */
68
+ name?: string;
54
69
  /**
55
70
  * @remarks
56
71
  * Payment type
@@ -75,6 +90,10 @@ export class CreateAppInstanceShrinkRequest extends $dara.Model {
75
90
  * 1
76
91
  */
77
92
  quantity?: number;
93
+ /**
94
+ * @example
95
+ * rg-aek2smovqqpvuly
96
+ */
78
97
  resourceGroupId?: string;
79
98
  /**
80
99
  * @remarks
@@ -85,20 +104,29 @@ export class CreateAppInstanceShrinkRequest extends $dara.Model {
85
104
  */
86
105
  siteVersion?: string;
87
106
  tagsShrink?: string;
107
+ /**
108
+ * @example
109
+ * 2023-09-01
110
+ */
111
+ version?: string;
88
112
  static names(): { [key: string]: string } {
89
113
  return {
90
114
  applicationType: 'ApplicationType',
91
115
  autoRenew: 'AutoRenew',
92
116
  clientToken: 'ClientToken',
117
+ createAction: 'CreateAction',
93
118
  deployArea: 'DeployArea',
119
+ description: 'Description',
94
120
  duration: 'Duration',
95
121
  extend: 'Extend',
122
+ name: 'Name',
96
123
  paymentType: 'PaymentType',
97
124
  pricingCycle: 'PricingCycle',
98
125
  quantity: 'Quantity',
99
126
  resourceGroupId: 'ResourceGroupId',
100
127
  siteVersion: 'SiteVersion',
101
128
  tagsShrink: 'Tags',
129
+ version: 'Version',
102
130
  };
103
131
  }
104
132
 
@@ -107,15 +135,19 @@ export class CreateAppInstanceShrinkRequest extends $dara.Model {
107
135
  applicationType: 'string',
108
136
  autoRenew: 'boolean',
109
137
  clientToken: 'string',
138
+ createAction: 'string',
110
139
  deployArea: 'string',
140
+ description: 'string',
111
141
  duration: 'number',
112
142
  extend: 'string',
143
+ name: 'string',
113
144
  paymentType: 'string',
114
145
  pricingCycle: 'string',
115
146
  quantity: 'number',
116
147
  resourceGroupId: 'string',
117
148
  siteVersion: 'string',
118
149
  tagsShrink: 'string',
150
+ version: 'string',
119
151
  };
120
152
  }
121
153
 
@@ -115,6 +115,9 @@ export class ListAppInstancesResponseBody extends $dara.Model {
115
115
  /**
116
116
  * @remarks
117
117
  * For the current query, apart from pagination limits, the server processes up to the most recent 1000 records. If the result exceeds 1000 records, **ResultLimit** is **true**, please narrow down the time range and search again; otherwise, **ResultLimit** is **false**.
118
+ *
119
+ * @example
120
+ * False
118
121
  */
119
122
  resultLimit?: boolean;
120
123
  /**
@@ -133,6 +136,11 @@ export class ListAppInstancesResponseBody extends $dara.Model {
133
136
  * 系统异常
134
137
  */
135
138
  rootErrorMsg?: string;
139
+ /**
140
+ * @example
141
+ * 1
142
+ */
143
+ startPosition?: string;
136
144
  /**
137
145
  * @remarks
138
146
  * Reserved parameter.
@@ -168,6 +176,7 @@ export class ListAppInstancesResponseBody extends $dara.Model {
168
176
  resultLimit: 'ResultLimit',
169
177
  rootErrorCode: 'RootErrorCode',
170
178
  rootErrorMsg: 'RootErrorMsg',
179
+ startPosition: 'StartPosition',
171
180
  synchro: 'Synchro',
172
181
  totalPageNum: 'TotalPageNum',
173
182
  };
@@ -192,6 +201,7 @@ export class ListAppInstancesResponseBody extends $dara.Model {
192
201
  resultLimit: 'boolean',
193
202
  rootErrorCode: 'string',
194
203
  rootErrorMsg: 'string',
204
+ startPosition: 'string',
195
205
  synchro: 'boolean',
196
206
  totalPageNum: 'number',
197
207
  };