-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #73 from NaverCloudPlatform/release/2024.08.30
vserver, vmongodb error fix
- Loading branch information
Showing
42 changed files
with
724 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/* | ||
* vmongodb | ||
* | ||
* <br/>https://ncloud.apigw.ntruss.com/vmongodb/v2 | ||
* | ||
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) | ||
*/ | ||
|
||
package vmongodb | ||
|
||
// ACG번호리스트 | ||
type AccessControlGroupNoList struct { | ||
} |
24 changes: 24 additions & 0 deletions
24
services/vmongodb/add_or_change_cloud_mongo_db_user_parameter.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
* vmongodb | ||
* | ||
* <br/>https://ncloud.apigw.ntruss.com/vmongodb/v2 | ||
* | ||
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) | ||
*/ | ||
|
||
package vmongodb | ||
|
||
type AddOrChangeCloudMongoDbUserParameter struct { | ||
|
||
// User 이름 | ||
UserName *string `json:"userName"` | ||
|
||
// Database 이름 | ||
DatabaseName *string `json:"databaseName"` | ||
|
||
// Password | ||
Password *string `json:"password"` | ||
|
||
// DB 접근 권한 | ||
Authority *string `json:"authority"` | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* | ||
* vmongodb | ||
* | ||
* <br/>https://ncloud.apigw.ntruss.com/vmongodb/v2 | ||
* | ||
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) | ||
*/ | ||
|
||
package vmongodb | ||
|
||
type CloudMongoDbBucket struct { | ||
|
||
// CloudMongoDb버킷이름 | ||
BucketName *string `json:"bucketName,omitempty"` | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/* | ||
* vmongodb | ||
* | ||
* <br/>https://ncloud.apigw.ntruss.com/vmongodb/v2 | ||
* | ||
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) | ||
*/ | ||
|
||
package vmongodb | ||
|
||
type CloudMongoDbDbServerLog struct { | ||
|
||
// 데이터베이스서버로그파일이름 | ||
FileName *string `json:"fileName,omitempty"` | ||
|
||
// 데이터베이스서버로그파일사이즈 | ||
FileSize *int64 `json:"fileSize,omitempty"` | ||
|
||
// 데이터베이스서버로그파일수정일시 | ||
FileDate *string `json:"fileDate,omitempty"` | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/* | ||
* vmongodb | ||
* | ||
* <br/>https://ncloud.apigw.ntruss.com/vmongodb/v2 | ||
* | ||
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) | ||
*/ | ||
|
||
package vmongodb | ||
|
||
type DeleteCloudMongoDbUserParameter struct { | ||
|
||
// User 이름 | ||
UserName *string `json:"userName"` | ||
|
||
// Database 이름 | ||
DatabaseName *string `json:"databaseName"` | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# AccessControlGroupNoList | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
13 changes: 13 additions & 0 deletions
13
services/vmongodb/docs/AddOrChangeCloudMongoDbUserParameter.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# AddOrChangeCloudMongoDbUserParameter | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**UserName** | ***string** | User 이름 | [default to null] | ||
**DatabaseName** | ***string** | Database 이름 | [default to null] | ||
**Password** | ***string** | Password | [default to null] | ||
**Authority** | ***string** | DB 접근 권한 | [default to null] | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# CloudMongoDbBucket | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**BucketName** | ***string** | CloudMongoDb버킷이름 | [optional] [default to null] | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# CloudMongoDbDbServerLog | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**FileName** | ***string** | 데이터베이스서버로그파일이름 | [optional] [default to null] | ||
**FileSize** | ***int64** | 데이터베이스서버로그파일사이즈 | [optional] [default to null] | ||
**FileDate** | ***string** | 데이터베이스서버로그파일수정일시 | [optional] [default to null] | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# DeleteCloudMongoDbUserParameter | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**UserName** | ***string** | User 이름 | [default to null] | ||
**DatabaseName** | ***string** | Database 이름 | [default to null] | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
13 changes: 13 additions & 0 deletions
13
services/vmongodb/docs/ExportBackupToObjectStorageRequest.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# ExportBackupToObjectStorageRequest | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**RegionCode** | ***string** | REGION코드 | [optional] [default to null] | ||
**CloudMongoDbInstanceNo** | ***string** | CloudMongoDb인스턴스번호 | [default to null] | ||
**ObjectName** | ***string** | Backup 이름 | [default to null] | ||
**BucketName** | ***string** | 버킷이름 | [default to null] | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
12 changes: 12 additions & 0 deletions
12
services/vmongodb/docs/ExportBackupToObjectStorageResponse.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# ExportBackupToObjectStorageResponse | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**RequestId** | ***string** | | [optional] [default to null] | ||
**ReturnCode** | ***string** | | [optional] [default to null] | ||
**ReturnMessage** | ***string** | | [optional] [default to null] | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
14 changes: 14 additions & 0 deletions
14
services/vmongodb/docs/ExportDbServerLogToObjectStorageRequest.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# ExportDbServerLogToObjectStorageRequest | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**RegionCode** | ***string** | REGION코드 | [optional] [default to null] | ||
**LogType** | ***string** | 데이터베이스서버로그파일타입 | [default to null] | ||
**FileName** | ***string** | 데이터베이스서버로그파일이름 | [default to null] | ||
**BucketName** | ***string** | ObjectStorage버킷이름 | [default to null] | ||
**CloudMongoDbServerInstanceNo** | ***string** | CloudMongodb서버인스턴스번호 | [default to null] | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
12 changes: 12 additions & 0 deletions
12
services/vmongodb/docs/ExportDbServerLogToObjectStorageResponse.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# ExportDbServerLogToObjectStorageResponse | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**RequestId** | ***string** | | [optional] [default to null] | ||
**ReturnCode** | ***string** | | [optional] [default to null] | ||
**ReturnMessage** | ***string** | | [optional] [default to null] | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
11 changes: 11 additions & 0 deletions
11
services/vmongodb/docs/GetCloudMongoDbBucketListRequest.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# GetCloudMongoDbBucketListRequest | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**RegionCode** | ***string** | REGION코드 | [optional] [default to null] | ||
**CloudMongoDbInstanceNo** | ***string** | CloudMongoDb인스턴스번호 | [optional] [default to null] | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
14 changes: 14 additions & 0 deletions
14
services/vmongodb/docs/GetCloudMongoDbBucketListResponse.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# GetCloudMongoDbBucketListResponse | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**RequestId** | ***string** | | [optional] [default to null] | ||
**ReturnCode** | ***string** | | [optional] [default to null] | ||
**ReturnMessage** | ***string** | | [optional] [default to null] | ||
**TotalRows** | ***int32** | | [optional] [default to null] | ||
**CloudMongoDbBucketList** | **[[]\*CloudMongoDbBucket](CloudMongoDbBucket.md)** | CloudMongoDb버킷리스트 | [optional] [default to null] | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
12 changes: 12 additions & 0 deletions
12
services/vmongodb/docs/GetCloudMongoDbTargetSubnetListRequest.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# GetCloudMongoDbTargetSubnetListRequest | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**RegionCode** | ***string** | REGION코드 | [optional] [default to null] | ||
**VpcNo** | ***string** | VPC번호 | [optional] [default to null] | ||
**CloudMongoDbImageProductCode** | ***string** | CloudMongoDb이미지상품코드 | [optional] [default to null] | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
14 changes: 14 additions & 0 deletions
14
services/vmongodb/docs/GetCloudMongoDbTargetSubnetListResponse.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# GetCloudMongoDbTargetSubnetListResponse | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**RequestId** | ***string** | | [optional] [default to null] | ||
**ReturnCode** | ***string** | | [optional] [default to null] | ||
**ReturnMessage** | ***string** | | [optional] [default to null] | ||
**TotalRows** | ***int32** | | [optional] [default to null] | ||
**TargetSubnetList** | **[[]\*TargetSubnet](TargetSubnet.md)** | 상품리스트 | [optional] [default to null] | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
10 changes: 10 additions & 0 deletions
10
services/vmongodb/docs/GetCloudMongoDbTargetVpcListRequest.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# GetCloudMongoDbTargetVpcListRequest | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**RegionCode** | ***string** | REGION코드 | [optional] [default to null] | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
14 changes: 14 additions & 0 deletions
14
services/vmongodb/docs/GetCloudMongoDbTargetVpcListResponse.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# GetCloudMongoDbTargetVpcListResponse | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**RequestId** | ***string** | | [optional] [default to null] | ||
**ReturnCode** | ***string** | | [optional] [default to null] | ||
**ReturnMessage** | ***string** | | [optional] [default to null] | ||
**TotalRows** | ***int32** | | [optional] [default to null] | ||
**TargetVpcList** | **[[]\*TargetVpc](TargetVpc.md)** | 상품리스트 | [optional] [default to null] | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# GetDbServerLogListRequest | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**RegionCode** | ***string** | REGION코드 | [optional] [default to null] | ||
**LogType** | ***string** | 데이터베이스서버로그파일타입 | [default to null] | ||
**CloudMongoDbServerInstanceNo** | ***string** | CloudMongoDb서버인스턴스번호 | [default to null] | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# GetDbServerLogListResponse | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**RequestId** | ***string** | | [optional] [default to null] | ||
**ReturnCode** | ***string** | | [optional] [default to null] | ||
**ReturnMessage** | ***string** | | [optional] [default to null] | ||
**TotalRows** | ***int32** | | [optional] [default to null] | ||
**CloudMongoDbDbServerLogList** | **[[]\*CloudMongoDbDbServerLog](CloudMongoDbDbServerLog.md)** | CloudMongoDb데이터베이스서버로그리스트 | [optional] [default to null] | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# TargetSubnet | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**SubnetNo** | ***string** | Subnet번호 | [optional] [default to null] | ||
**SubnetName** | ***string** | Subnet이름 | [optional] [default to null] | ||
**VpcNo** | ***string** | VPC번호 | [optional] [default to null] | ||
**VpcName** | ***string** | VPC이름 | [optional] [default to null] | ||
**ZoneCode** | ***string** | ZONE코드 | [optional] [default to null] | ||
**Subnet** | ***string** | Subnet | [optional] [default to null] | ||
**IsPublic** | ***string** | Public여부 | [optional] [default to null] | ||
**CreatedDate** | ***string** | 생성시간 | [optional] [default to null] | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# TargetVpc | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**VpcNo** | ***string** | VPC번호 | [optional] [default to null] | ||
**VpcName** | ***string** | VPC이름 | [optional] [default to null] | ||
**Ipv4Cidr** | ***string** | IPv4 CIDR | [optional] [default to null] | ||
**RegionCode** | ***string** | REGION코드 | [optional] [default to null] | ||
**CreatedDate** | ***string** | 생성시간 | [optional] [default to null] | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
24 changes: 24 additions & 0 deletions
24
services/vmongodb/export_backup_to_object_storage_request.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
* vmongodb | ||
* | ||
* <br/>https://ncloud.apigw.ntruss.com/vmongodb/v2 | ||
* | ||
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) | ||
*/ | ||
|
||
package vmongodb | ||
|
||
type ExportBackupToObjectStorageRequest struct { | ||
|
||
// REGION코드 | ||
RegionCode *string `json:"regionCode,omitempty"` | ||
|
||
// CloudMongoDb인스턴스번호 | ||
CloudMongoDbInstanceNo *string `json:"cloudMongoDbInstanceNo"` | ||
|
||
// Backup 이름 | ||
ObjectName *string `json:"objectName"` | ||
|
||
// 버킷이름 | ||
BucketName *string `json:"bucketName"` | ||
} |
18 changes: 18 additions & 0 deletions
18
services/vmongodb/export_backup_to_object_storage_response.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/* | ||
* vmongodb | ||
* | ||
* <br/>https://ncloud.apigw.ntruss.com/vmongodb/v2 | ||
* | ||
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) | ||
*/ | ||
|
||
package vmongodb | ||
|
||
type ExportBackupToObjectStorageResponse struct { | ||
|
||
RequestId *string `json:"requestId,omitempty"` | ||
|
||
ReturnCode *string `json:"returnCode,omitempty"` | ||
|
||
ReturnMessage *string `json:"returnMessage,omitempty"` | ||
} |
Oops, something went wrong.