packer-cn/vendor/github.com/oracle/oci-go-sdk/objectstorage/bucket.go

120 lines
5.4 KiB
Go
Raw Normal View History

2018-04-11 05:20:07 -04:00
// Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved.
// Code generated. DO NOT EDIT.
// Object Storage Service API
//
2018-07-16 11:49:08 -04:00
// Common set of Object and Archive Storage APIs for managing buckets and objects.
2018-04-11 05:20:07 -04:00
//
package objectstorage
import (
"github.com/oracle/oci-go-sdk/common"
)
2018-07-16 11:49:08 -04:00
// Bucket A bucket is a container for storing objects in a compartment within a namespace. A bucket is associated with a single compartment.
// The compartment has policies that indicate what actions a user can perform on a bucket and all the objects in the bucket. For more
// information, see Managing Buckets (https://docs.us-phoenix-1.oraclecloud.com/Content/Object/Tasks/managingbuckets.htm).
// To use any of the API operations, you must be authorized in an IAM policy. If you're not authorized,
2018-04-11 05:20:07 -04:00
// talk to an administrator. If you're an administrator who needs to write policies to give users access, see
// Getting Started with Policies (https://docs.us-phoenix-1.oraclecloud.com/Content/Identity/Concepts/policygetstarted.htm).
type Bucket struct {
// The namespace in which the bucket lives.
Namespace *string `mandatory:"true" json:"namespace"`
2018-07-16 11:49:08 -04:00
// The name of the bucket. Avoid entering confidential information.
// Example: my-new-bucket1
2018-04-11 05:20:07 -04:00
Name *string `mandatory:"true" json:"name"`
// The compartment ID in which the bucket is authorized.
CompartmentId *string `mandatory:"true" json:"compartmentId"`
// Arbitrary string keys and values for user-defined metadata.
Metadata map[string]string `mandatory:"true" json:"metadata"`
// The OCID of the user who created the bucket.
CreatedBy *string `mandatory:"true" json:"createdBy"`
2018-07-16 11:49:08 -04:00
// The date and time the bucket was created, as described in RFC 2616 (https://tools.ietf.org/rfc/rfc2616), section 14.29.
2018-04-11 05:20:07 -04:00
TimeCreated *common.SDKTime `mandatory:"true" json:"timeCreated"`
// The entity tag for the bucket.
Etag *string `mandatory:"true" json:"etag"`
2018-07-16 11:49:08 -04:00
// The type of public access enabled on this bucket.
// A bucket is set to `NoPublicAccess` by default, which only allows an authenticated caller to access the
// bucket and its contents. When `ObjectRead` is enabled on the bucket, public access is allowed for the
// `GetObject`, `HeadObject`, and `ListObjects` operations. When `ObjectReadWithoutList` is enabled on the
// bucket, public access is allowed for the `GetObject` and `HeadObject` operations.
2018-04-11 05:20:07 -04:00
PublicAccessType BucketPublicAccessTypeEnum `mandatory:"false" json:"publicAccessType,omitempty"`
2018-07-16 11:49:08 -04:00
// The type of storage tier of this bucket.
// A bucket is set to 'Standard' tier by default, which means the bucket will be put in the standard storage tier.
// When 'Archive' tier type is set explicitly, the bucket is put in the archive storage tier. The 'storageTier'
// property is immutable after bucket is created.
StorageTier BucketStorageTierEnum `mandatory:"false" json:"storageTier,omitempty"`
// 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.us-phoenix-1.oraclecloud.com/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.us-phoenix-1.oraclecloud.com/Content/General/Concepts/resourcetags.htm).
// Example: `{"Operations": {"CostCenter": "42"}}`
DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"`
2018-04-11 05:20:07 -04:00
}
func (m Bucket) String() string {
return common.PointerString(m)
}
// BucketPublicAccessTypeEnum Enum with underlying type: string
type BucketPublicAccessTypeEnum string
// Set of constants representing the allowable values for BucketPublicAccessType
const (
2018-07-16 11:49:08 -04:00
BucketPublicAccessTypeNopublicaccess BucketPublicAccessTypeEnum = "NoPublicAccess"
BucketPublicAccessTypeObjectread BucketPublicAccessTypeEnum = "ObjectRead"
BucketPublicAccessTypeObjectreadwithoutlist BucketPublicAccessTypeEnum = "ObjectReadWithoutList"
2018-04-11 05:20:07 -04:00
)
var mappingBucketPublicAccessType = map[string]BucketPublicAccessTypeEnum{
2018-07-16 11:49:08 -04:00
"NoPublicAccess": BucketPublicAccessTypeNopublicaccess,
"ObjectRead": BucketPublicAccessTypeObjectread,
"ObjectReadWithoutList": BucketPublicAccessTypeObjectreadwithoutlist,
2018-04-11 05:20:07 -04:00
}
// GetBucketPublicAccessTypeEnumValues Enumerates the set of values for BucketPublicAccessType
func GetBucketPublicAccessTypeEnumValues() []BucketPublicAccessTypeEnum {
values := make([]BucketPublicAccessTypeEnum, 0)
for _, v := range mappingBucketPublicAccessType {
values = append(values, v)
}
return values
}
2018-07-16 11:49:08 -04:00
// BucketStorageTierEnum Enum with underlying type: string
type BucketStorageTierEnum string
// Set of constants representing the allowable values for BucketStorageTier
const (
BucketStorageTierStandard BucketStorageTierEnum = "Standard"
BucketStorageTierArchive BucketStorageTierEnum = "Archive"
)
var mappingBucketStorageTier = map[string]BucketStorageTierEnum{
"Standard": BucketStorageTierStandard,
"Archive": BucketStorageTierArchive,
}
// GetBucketStorageTierEnumValues Enumerates the set of values for BucketStorageTier
func GetBucketStorageTierEnumValues() []BucketStorageTierEnum {
values := make([]BucketStorageTierEnum, 0)
for _, v := range mappingBucketStorageTier {
values = append(values, v)
}
return values
}