@alicloud/polardb20170801 7.11.2 → 7.11.3
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 +2 -2
- package/dist/models/DeletePolarFsPathMappingRequest.d.ts +5 -5
- package/dist/models/DeletePolarFsPathMappingResponseBody.d.ts +1 -1
- package/package.json +1 -1
- package/src/client.ts +2 -2
- package/src/models/DeletePolarFsPathMappingRequest.ts +5 -5
- package/src/models/DeletePolarFsPathMappingResponseBody.ts +1 -1
package/dist/client.d.ts
CHANGED
|
@@ -2203,7 +2203,7 @@ export default class Client extends OpenApi {
|
|
|
2203
2203
|
*/
|
|
2204
2204
|
deletePolarFsObjects(request: $_model.DeletePolarFsObjectsRequest): Promise<$_model.DeletePolarFsObjectsResponse>;
|
|
2205
2205
|
/**
|
|
2206
|
-
* Deletes a path mapping
|
|
2206
|
+
* Deletes a transparent acceleration path mapping.
|
|
2207
2207
|
*
|
|
2208
2208
|
* @param request - DeletePolarFsPathMappingRequest
|
|
2209
2209
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -2211,7 +2211,7 @@ export default class Client extends OpenApi {
|
|
|
2211
2211
|
*/
|
|
2212
2212
|
deletePolarFsPathMappingWithOptions(request: $_model.DeletePolarFsPathMappingRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DeletePolarFsPathMappingResponse>;
|
|
2213
2213
|
/**
|
|
2214
|
-
* Deletes a path mapping
|
|
2214
|
+
* Deletes a transparent acceleration path mapping.
|
|
2215
2215
|
*
|
|
2216
2216
|
* @param request - DeletePolarFsPathMappingRequest
|
|
2217
2217
|
* @returns DeletePolarFsPathMappingResponse
|
package/dist/client.js
CHANGED
|
@@ -7765,7 +7765,7 @@ class Client extends openapi_core_1.default {
|
|
|
7765
7765
|
return await this.deletePolarFsObjectsWithOptions(request, runtime);
|
|
7766
7766
|
}
|
|
7767
7767
|
/**
|
|
7768
|
-
* Deletes a path mapping
|
|
7768
|
+
* Deletes a transparent acceleration path mapping.
|
|
7769
7769
|
*
|
|
7770
7770
|
* @param request - DeletePolarFsPathMappingRequest
|
|
7771
7771
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -7800,7 +7800,7 @@ class Client extends openapi_core_1.default {
|
|
|
7800
7800
|
return $dara.cast(await this.callApi(params, req, runtime), new $_model.DeletePolarFsPathMappingResponse({}));
|
|
7801
7801
|
}
|
|
7802
7802
|
/**
|
|
7803
|
-
* Deletes a path mapping
|
|
7803
|
+
* Deletes a transparent acceleration path mapping.
|
|
7804
7804
|
*
|
|
7805
7805
|
* @param request - DeletePolarFsPathMappingRequest
|
|
7806
7806
|
* @returns DeletePolarFsPathMappingResponse
|
|
@@ -2,7 +2,7 @@ import * as $dara from '@darabonba/typescript';
|
|
|
2
2
|
export declare class DeletePolarFsPathMappingRequestCustomBucketPathList extends $dara.Model {
|
|
3
3
|
/**
|
|
4
4
|
* @remarks
|
|
5
|
-
* The
|
|
5
|
+
* The custom storage bucket.
|
|
6
6
|
*
|
|
7
7
|
* @example
|
|
8
8
|
* Bucket
|
|
@@ -10,7 +10,7 @@ export declare class DeletePolarFsPathMappingRequestCustomBucketPathList extends
|
|
|
10
10
|
bucket?: string;
|
|
11
11
|
/**
|
|
12
12
|
* @remarks
|
|
13
|
-
* The
|
|
13
|
+
* The custom storage path.
|
|
14
14
|
*
|
|
15
15
|
* @example
|
|
16
16
|
* /data
|
|
@@ -30,12 +30,12 @@ export declare class DeletePolarFsPathMappingRequestCustomBucketPathList extends
|
|
|
30
30
|
export declare class DeletePolarFsPathMappingRequest extends $dara.Model {
|
|
31
31
|
/**
|
|
32
32
|
* @remarks
|
|
33
|
-
* The
|
|
33
|
+
* The bucket and corresponding path information.
|
|
34
34
|
*/
|
|
35
35
|
customBucketPathList?: DeletePolarFsPathMappingRequestCustomBucketPathList[];
|
|
36
36
|
/**
|
|
37
37
|
* @remarks
|
|
38
|
-
* The ID
|
|
38
|
+
* The cluster ID.
|
|
39
39
|
*
|
|
40
40
|
* This parameter is required.
|
|
41
41
|
*
|
|
@@ -45,7 +45,7 @@ export declare class DeletePolarFsPathMappingRequest extends $dara.Model {
|
|
|
45
45
|
DBClusterId?: string;
|
|
46
46
|
/**
|
|
47
47
|
* @remarks
|
|
48
|
-
* The
|
|
48
|
+
* The PolarFS instance ID.
|
|
49
49
|
*
|
|
50
50
|
* This parameter is required.
|
|
51
51
|
*
|
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -8907,7 +8907,7 @@ export default class Client extends OpenApi {
|
|
|
8907
8907
|
}
|
|
8908
8908
|
|
|
8909
8909
|
/**
|
|
8910
|
-
* Deletes a path mapping
|
|
8910
|
+
* Deletes a transparent acceleration path mapping.
|
|
8911
8911
|
*
|
|
8912
8912
|
* @param request - DeletePolarFsPathMappingRequest
|
|
8913
8913
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -8946,7 +8946,7 @@ export default class Client extends OpenApi {
|
|
|
8946
8946
|
}
|
|
8947
8947
|
|
|
8948
8948
|
/**
|
|
8949
|
-
* Deletes a path mapping
|
|
8949
|
+
* Deletes a transparent acceleration path mapping.
|
|
8950
8950
|
*
|
|
8951
8951
|
* @param request - DeletePolarFsPathMappingRequest
|
|
8952
8952
|
* @returns DeletePolarFsPathMappingResponse
|
|
@@ -5,7 +5,7 @@ import * as $dara from '@darabonba/typescript';
|
|
|
5
5
|
export class DeletePolarFsPathMappingRequestCustomBucketPathList extends $dara.Model {
|
|
6
6
|
/**
|
|
7
7
|
* @remarks
|
|
8
|
-
* The
|
|
8
|
+
* The custom storage bucket.
|
|
9
9
|
*
|
|
10
10
|
* @example
|
|
11
11
|
* Bucket
|
|
@@ -13,7 +13,7 @@ export class DeletePolarFsPathMappingRequestCustomBucketPathList extends $dara.M
|
|
|
13
13
|
bucket?: string;
|
|
14
14
|
/**
|
|
15
15
|
* @remarks
|
|
16
|
-
* The
|
|
16
|
+
* The custom storage path.
|
|
17
17
|
*
|
|
18
18
|
* @example
|
|
19
19
|
* /data
|
|
@@ -45,12 +45,12 @@ export class DeletePolarFsPathMappingRequestCustomBucketPathList extends $dara.M
|
|
|
45
45
|
export class DeletePolarFsPathMappingRequest extends $dara.Model {
|
|
46
46
|
/**
|
|
47
47
|
* @remarks
|
|
48
|
-
* The
|
|
48
|
+
* The bucket and corresponding path information.
|
|
49
49
|
*/
|
|
50
50
|
customBucketPathList?: DeletePolarFsPathMappingRequestCustomBucketPathList[];
|
|
51
51
|
/**
|
|
52
52
|
* @remarks
|
|
53
|
-
* The ID
|
|
53
|
+
* The cluster ID.
|
|
54
54
|
*
|
|
55
55
|
* This parameter is required.
|
|
56
56
|
*
|
|
@@ -60,7 +60,7 @@ export class DeletePolarFsPathMappingRequest extends $dara.Model {
|
|
|
60
60
|
DBClusterId?: string;
|
|
61
61
|
/**
|
|
62
62
|
* @remarks
|
|
63
|
-
* The
|
|
63
|
+
* The PolarFS instance ID.
|
|
64
64
|
*
|
|
65
65
|
* This parameter is required.
|
|
66
66
|
*
|