-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathbackup_destination_summary.go
236 lines (189 loc) · 11.7 KB
/
backup_destination_summary.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
// Copyright (c) 2016, 2018, 2025, Oracle and/or its affiliates. All rights reserved.
// This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
// Code generated. DO NOT EDIT.
// Database Service API
//
// The API for the Database Service. Use this API to manage resources such as databases and DB Systems. For more information, see Overview of the Database Service (https://docs.oracle.com/iaas/Content/Database/Concepts/databaseoverview.htm).
//
package database
import (
"fmt"
"github.com/oracle/oci-go-sdk/v65/common"
"strings"
)
// BackupDestinationSummary Backup destination details, including the list of databases using the backup destination.
type BackupDestinationSummary struct {
// The OCID (https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup destination.
Id *string `mandatory:"false" json:"id"`
// The user-provided name of the backup destination.
DisplayName *string `mandatory:"false" json:"displayName"`
// The OCID (https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
CompartmentId *string `mandatory:"false" json:"compartmentId"`
// Type of the backup destination.
Type BackupDestinationSummaryTypeEnum `mandatory:"false" json:"type,omitempty"`
// List of databases associated with the backup destination.
AssociatedDatabases []AssociatedDatabaseDetails `mandatory:"false" json:"associatedDatabases"`
// For a RECOVERY_APPLIANCE backup destination, the connection string for connecting to the Recovery Appliance.
ConnectionString *string `mandatory:"false" json:"connectionString"`
// For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) users that are used to access the Recovery Appliance.
VpcUsers []string `mandatory:"false" json:"vpcUsers"`
// The local directory path on each VM cluster node where the NFS server location is mounted. The local directory path and the NFS server location must each be the same across all of the VM cluster nodes. Ensure that the NFS mount is maintained continuously on all of the VM cluster nodes.
LocalMountPointPath *string `mandatory:"false" json:"localMountPointPath"`
// NFS Mount type for backup destination.
NfsMountType BackupDestinationSummaryNfsMountTypeEnum `mandatory:"false" json:"nfsMountType,omitempty"`
// Host names or IP addresses for NFS Auto mount.
NfsServer []string `mandatory:"false" json:"nfsServer"`
// Specifies the directory on which to mount the file system
NfsServerExport *string `mandatory:"false" json:"nfsServerExport"`
// The current lifecycle state of the backup destination.
LifecycleState BackupDestinationSummaryLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"`
// The date and time the backup destination was created.
TimeCreated *common.SDKTime `mandatory:"false" json:"timeCreated"`
// A descriptive text associated with the lifecycleState.
// Typically contains additional displayable text
LifecycleDetails *string `mandatory:"false" json:"lifecycleDetails"`
// Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace.
// For more information, see Resource Tags (https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
// Example: `{"Department": "Finance"}`
FreeformTags map[string]string `mandatory:"false" json:"freeformTags"`
// Defined tags for this resource. Each key is predefined and scoped to a namespace.
// For more information, see Resource Tags (https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"`
// The total storage size of the backup destination in GBs, rounded to the nearest integer.
TotalStorageSizeInGBs *int `mandatory:"false" json:"totalStorageSizeInGBs"`
// The total amount of space utilized on the backup destination (in GBs), rounded to the nearest integer.
UtilizedStorageSizeInGBs *int `mandatory:"false" json:"utilizedStorageSizeInGBs"`
// The time when the total storage size and the utilized storage size of the backup destination are updated.
TimeAtWhichStorageDetailsAreUpdated *common.SDKTime `mandatory:"false" json:"timeAtWhichStorageDetailsAreUpdated"`
}
func (m BackupDestinationSummary) String() string {
return common.PointerString(m)
}
// ValidateEnumValue returns an error when providing an unsupported enum value
// This function is being called during constructing API request process
// Not recommended for calling this function directly
func (m BackupDestinationSummary) ValidateEnumValue() (bool, error) {
errMessage := []string{}
if _, ok := GetMappingBackupDestinationSummaryTypeEnum(string(m.Type)); !ok && m.Type != "" {
errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for Type: %s. Supported values are: %s.", m.Type, strings.Join(GetBackupDestinationSummaryTypeEnumStringValues(), ",")))
}
if _, ok := GetMappingBackupDestinationSummaryNfsMountTypeEnum(string(m.NfsMountType)); !ok && m.NfsMountType != "" {
errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for NfsMountType: %s. Supported values are: %s.", m.NfsMountType, strings.Join(GetBackupDestinationSummaryNfsMountTypeEnumStringValues(), ",")))
}
if _, ok := GetMappingBackupDestinationSummaryLifecycleStateEnum(string(m.LifecycleState)); !ok && m.LifecycleState != "" {
errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for LifecycleState: %s. Supported values are: %s.", m.LifecycleState, strings.Join(GetBackupDestinationSummaryLifecycleStateEnumStringValues(), ",")))
}
if len(errMessage) > 0 {
return true, fmt.Errorf(strings.Join(errMessage, "\n"))
}
return false, nil
}
// BackupDestinationSummaryTypeEnum Enum with underlying type: string
type BackupDestinationSummaryTypeEnum string
// Set of constants representing the allowable values for BackupDestinationSummaryTypeEnum
const (
BackupDestinationSummaryTypeNfs BackupDestinationSummaryTypeEnum = "NFS"
BackupDestinationSummaryTypeRecoveryAppliance BackupDestinationSummaryTypeEnum = "RECOVERY_APPLIANCE"
)
var mappingBackupDestinationSummaryTypeEnum = map[string]BackupDestinationSummaryTypeEnum{
"NFS": BackupDestinationSummaryTypeNfs,
"RECOVERY_APPLIANCE": BackupDestinationSummaryTypeRecoveryAppliance,
}
var mappingBackupDestinationSummaryTypeEnumLowerCase = map[string]BackupDestinationSummaryTypeEnum{
"nfs": BackupDestinationSummaryTypeNfs,
"recovery_appliance": BackupDestinationSummaryTypeRecoveryAppliance,
}
// GetBackupDestinationSummaryTypeEnumValues Enumerates the set of values for BackupDestinationSummaryTypeEnum
func GetBackupDestinationSummaryTypeEnumValues() []BackupDestinationSummaryTypeEnum {
values := make([]BackupDestinationSummaryTypeEnum, 0)
for _, v := range mappingBackupDestinationSummaryTypeEnum {
values = append(values, v)
}
return values
}
// GetBackupDestinationSummaryTypeEnumStringValues Enumerates the set of values in String for BackupDestinationSummaryTypeEnum
func GetBackupDestinationSummaryTypeEnumStringValues() []string {
return []string{
"NFS",
"RECOVERY_APPLIANCE",
}
}
// GetMappingBackupDestinationSummaryTypeEnum performs case Insensitive comparison on enum value and return the desired enum
func GetMappingBackupDestinationSummaryTypeEnum(val string) (BackupDestinationSummaryTypeEnum, bool) {
enum, ok := mappingBackupDestinationSummaryTypeEnumLowerCase[strings.ToLower(val)]
return enum, ok
}
// BackupDestinationSummaryNfsMountTypeEnum Enum with underlying type: string
type BackupDestinationSummaryNfsMountTypeEnum string
// Set of constants representing the allowable values for BackupDestinationSummaryNfsMountTypeEnum
const (
BackupDestinationSummaryNfsMountTypeSelfMount BackupDestinationSummaryNfsMountTypeEnum = "SELF_MOUNT"
BackupDestinationSummaryNfsMountTypeAutomatedMount BackupDestinationSummaryNfsMountTypeEnum = "AUTOMATED_MOUNT"
)
var mappingBackupDestinationSummaryNfsMountTypeEnum = map[string]BackupDestinationSummaryNfsMountTypeEnum{
"SELF_MOUNT": BackupDestinationSummaryNfsMountTypeSelfMount,
"AUTOMATED_MOUNT": BackupDestinationSummaryNfsMountTypeAutomatedMount,
}
var mappingBackupDestinationSummaryNfsMountTypeEnumLowerCase = map[string]BackupDestinationSummaryNfsMountTypeEnum{
"self_mount": BackupDestinationSummaryNfsMountTypeSelfMount,
"automated_mount": BackupDestinationSummaryNfsMountTypeAutomatedMount,
}
// GetBackupDestinationSummaryNfsMountTypeEnumValues Enumerates the set of values for BackupDestinationSummaryNfsMountTypeEnum
func GetBackupDestinationSummaryNfsMountTypeEnumValues() []BackupDestinationSummaryNfsMountTypeEnum {
values := make([]BackupDestinationSummaryNfsMountTypeEnum, 0)
for _, v := range mappingBackupDestinationSummaryNfsMountTypeEnum {
values = append(values, v)
}
return values
}
// GetBackupDestinationSummaryNfsMountTypeEnumStringValues Enumerates the set of values in String for BackupDestinationSummaryNfsMountTypeEnum
func GetBackupDestinationSummaryNfsMountTypeEnumStringValues() []string {
return []string{
"SELF_MOUNT",
"AUTOMATED_MOUNT",
}
}
// GetMappingBackupDestinationSummaryNfsMountTypeEnum performs case Insensitive comparison on enum value and return the desired enum
func GetMappingBackupDestinationSummaryNfsMountTypeEnum(val string) (BackupDestinationSummaryNfsMountTypeEnum, bool) {
enum, ok := mappingBackupDestinationSummaryNfsMountTypeEnumLowerCase[strings.ToLower(val)]
return enum, ok
}
// BackupDestinationSummaryLifecycleStateEnum Enum with underlying type: string
type BackupDestinationSummaryLifecycleStateEnum string
// Set of constants representing the allowable values for BackupDestinationSummaryLifecycleStateEnum
const (
BackupDestinationSummaryLifecycleStateActive BackupDestinationSummaryLifecycleStateEnum = "ACTIVE"
BackupDestinationSummaryLifecycleStateFailed BackupDestinationSummaryLifecycleStateEnum = "FAILED"
BackupDestinationSummaryLifecycleStateDeleted BackupDestinationSummaryLifecycleStateEnum = "DELETED"
)
var mappingBackupDestinationSummaryLifecycleStateEnum = map[string]BackupDestinationSummaryLifecycleStateEnum{
"ACTIVE": BackupDestinationSummaryLifecycleStateActive,
"FAILED": BackupDestinationSummaryLifecycleStateFailed,
"DELETED": BackupDestinationSummaryLifecycleStateDeleted,
}
var mappingBackupDestinationSummaryLifecycleStateEnumLowerCase = map[string]BackupDestinationSummaryLifecycleStateEnum{
"active": BackupDestinationSummaryLifecycleStateActive,
"failed": BackupDestinationSummaryLifecycleStateFailed,
"deleted": BackupDestinationSummaryLifecycleStateDeleted,
}
// GetBackupDestinationSummaryLifecycleStateEnumValues Enumerates the set of values for BackupDestinationSummaryLifecycleStateEnum
func GetBackupDestinationSummaryLifecycleStateEnumValues() []BackupDestinationSummaryLifecycleStateEnum {
values := make([]BackupDestinationSummaryLifecycleStateEnum, 0)
for _, v := range mappingBackupDestinationSummaryLifecycleStateEnum {
values = append(values, v)
}
return values
}
// GetBackupDestinationSummaryLifecycleStateEnumStringValues Enumerates the set of values in String for BackupDestinationSummaryLifecycleStateEnum
func GetBackupDestinationSummaryLifecycleStateEnumStringValues() []string {
return []string{
"ACTIVE",
"FAILED",
"DELETED",
}
}
// GetMappingBackupDestinationSummaryLifecycleStateEnum performs case Insensitive comparison on enum value and return the desired enum
func GetMappingBackupDestinationSummaryLifecycleStateEnum(val string) (BackupDestinationSummaryLifecycleStateEnum, bool) {
enum, ok := mappingBackupDestinationSummaryLifecycleStateEnumLowerCase[strings.ToLower(val)]
return enum, ok
}