-
Notifications
You must be signed in to change notification settings - Fork 1
/
backup_location.go
90 lines (75 loc) · 2.75 KB
/
backup_location.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
// Copyright (c) 2016, 2018, 2021, 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.
// Vault Service Key Management API
//
// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service
// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.)
//
package keymanagement
import (
"encoding/json"
"github.com/erikcai/oci-go-sdk/v33/common"
)
// BackupLocation Backup upload location
type BackupLocation interface {
}
type backuplocation struct {
JsonData []byte
Destination string `json:"destination"`
}
// UnmarshalJSON unmarshals json
func (m *backuplocation) UnmarshalJSON(data []byte) error {
m.JsonData = data
type Unmarshalerbackuplocation backuplocation
s := struct {
Model Unmarshalerbackuplocation
}{}
err := json.Unmarshal(data, &s.Model)
if err != nil {
return err
}
m.Destination = s.Model.Destination
return err
}
// UnmarshalPolymorphicJSON unmarshals polymorphic json
func (m *backuplocation) UnmarshalPolymorphicJSON(data []byte) (interface{}, error) {
if data == nil || string(data) == "null" {
return nil, nil
}
var err error
switch m.Destination {
case "BUCKET":
mm := BackupLocationBucket{}
err = json.Unmarshal(data, &mm)
return mm, err
case "PRE_AUTHENTICATED_REQUEST_URI":
mm := BackupLocationUri{}
err = json.Unmarshal(data, &mm)
return mm, err
default:
return *m, nil
}
}
func (m backuplocation) String() string {
return common.PointerString(m)
}
// BackupLocationDestinationEnum Enum with underlying type: string
type BackupLocationDestinationEnum string
// Set of constants representing the allowable values for BackupLocationDestinationEnum
const (
BackupLocationDestinationBucket BackupLocationDestinationEnum = "BUCKET"
BackupLocationDestinationPreAuthenticatedRequestUri BackupLocationDestinationEnum = "PRE_AUTHENTICATED_REQUEST_URI"
)
var mappingBackupLocationDestination = map[string]BackupLocationDestinationEnum{
"BUCKET": BackupLocationDestinationBucket,
"PRE_AUTHENTICATED_REQUEST_URI": BackupLocationDestinationPreAuthenticatedRequestUri,
}
// GetBackupLocationDestinationEnumValues Enumerates the set of values for BackupLocationDestinationEnum
func GetBackupLocationDestinationEnumValues() []BackupLocationDestinationEnum {
values := make([]BackupLocationDestinationEnum, 0)
for _, v := range mappingBackupLocationDestination {
values = append(values, v)
}
return values
}