forked from oracle/oci-go-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
export_set_summary.go
76 lines (60 loc) · 3.15 KB
/
export_set_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
// Copyright (c) 2016, 2018, 2020, 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.
// File Storage API
//
// API for the File Storage service. Use this API to manage file systems, mount targets, and snapshots. For more information, see Overview of File Storage (https://docs.cloud.oracle.com/iaas/Content/File/Concepts/filestorageoverview.htm).
//
package filestorage
import (
"github.com/oracle/oci-go-sdk/common"
)
// ExportSetSummary Summary information for an export set.
type ExportSetSummary struct {
// The OCID of the compartment that contains the export set.
CompartmentId *string `mandatory:"true" json:"compartmentId"`
// A user-friendly name. It does not have to be unique, and it is changeable.
// Avoid entering confidential information.
// Example: `My export set`
DisplayName *string `mandatory:"true" json:"displayName"`
// The OCID of the export set.
Id *string `mandatory:"true" json:"id"`
// The current state of the export set.
LifecycleState ExportSetSummaryLifecycleStateEnum `mandatory:"true" json:"lifecycleState"`
// The date and time the export set was created, expressed
// in RFC 3339 (https://tools.ietf.org/rfc/rfc3339) timestamp format.
// Example: `2016-08-25T21:10:29.600Z`
TimeCreated *common.SDKTime `mandatory:"true" json:"timeCreated"`
// The OCID of the virtual cloud network (VCN) the export set is in.
VcnId *string `mandatory:"true" json:"vcnId"`
// The availability domain the export set is in. May be unset
// as a blank or NULL value.
// Example: `Uocm:PHX-AD-1`
AvailabilityDomain *string `mandatory:"false" json:"availabilityDomain"`
}
func (m ExportSetSummary) String() string {
return common.PointerString(m)
}
// ExportSetSummaryLifecycleStateEnum Enum with underlying type: string
type ExportSetSummaryLifecycleStateEnum string
// Set of constants representing the allowable values for ExportSetSummaryLifecycleStateEnum
const (
ExportSetSummaryLifecycleStateCreating ExportSetSummaryLifecycleStateEnum = "CREATING"
ExportSetSummaryLifecycleStateActive ExportSetSummaryLifecycleStateEnum = "ACTIVE"
ExportSetSummaryLifecycleStateDeleting ExportSetSummaryLifecycleStateEnum = "DELETING"
ExportSetSummaryLifecycleStateDeleted ExportSetSummaryLifecycleStateEnum = "DELETED"
)
var mappingExportSetSummaryLifecycleState = map[string]ExportSetSummaryLifecycleStateEnum{
"CREATING": ExportSetSummaryLifecycleStateCreating,
"ACTIVE": ExportSetSummaryLifecycleStateActive,
"DELETING": ExportSetSummaryLifecycleStateDeleting,
"DELETED": ExportSetSummaryLifecycleStateDeleted,
}
// GetExportSetSummaryLifecycleStateEnumValues Enumerates the set of values for ExportSetSummaryLifecycleStateEnum
func GetExportSetSummaryLifecycleStateEnumValues() []ExportSetSummaryLifecycleStateEnum {
values := make([]ExportSetSummaryLifecycleStateEnum, 0)
for _, v := range mappingExportSetSummaryLifecycleState {
values = append(values, v)
}
return values
}