github.com/kyma-project/kyma/components/asset-store-controller-manager@v0.0.0-20191203152857-3792b5df17c5/config/crd/bases/assetstore.kyma-project.io_buckets.yaml (about) 1 2 --- 3 apiVersion: apiextensions.k8s.io/v1beta1 4 kind: CustomResourceDefinition 5 metadata: 6 creationTimestamp: null 7 name: buckets.assetstore.kyma-project.io 8 spec: 9 additionalPrinterColumns: 10 - JSONPath: .status.phase 11 name: Phase 12 type: string 13 - JSONPath: .status.url 14 name: URL 15 type: string 16 - JSONPath: .metadata.creationTimestamp 17 name: Age 18 type: date 19 group: assetstore.kyma-project.io 20 names: 21 kind: Bucket 22 plural: buckets 23 scope: "" 24 subresources: 25 status: {} 26 validation: 27 openAPIV3Schema: 28 description: Bucket is the Schema for the buckets API 29 properties: 30 apiVersion: 31 description: 'APIVersion defines the versioned schema of this representation 32 of an object. Servers should convert recognized schemas to the latest 33 internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources' 34 type: string 35 kind: 36 description: 'Kind is a string value representing the REST resource this 37 object represents. Servers may infer this from the endpoint the client 38 submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds' 39 type: string 40 metadata: 41 type: object 42 spec: 43 description: BucketSpec defines the desired state of Bucket 44 properties: 45 policy: 46 enum: 47 - none 48 - readonly 49 - writeonly 50 - readwrite 51 - "" 52 type: string 53 region: 54 enum: 55 - us-east-1 56 - us-west-1 57 - us-west-2 58 - eu-west-1 59 - eu-central-1 60 - ap-southeast-1 61 - ap-southeast-2 62 - ap-northeast-1 63 - sa-east-1 64 - "" 65 type: string 66 type: object 67 status: 68 description: BucketStatus defines the observed state of Bucket 69 properties: 70 lastHeartbeatTime: 71 format: date-time 72 type: string 73 message: 74 type: string 75 observedGeneration: 76 format: int64 77 type: integer 78 phase: 79 type: string 80 reason: 81 type: string 82 remoteName: 83 type: string 84 url: 85 type: string 86 required: 87 - observedGeneration 88 type: object 89 type: object 90 version: v1alpha2 91 versions: 92 - name: v1alpha2 93 served: true 94 storage: true 95 status: 96 acceptedNames: 97 kind: "" 98 plural: "" 99 conditions: [] 100 storedVersions: []