|
| 1 | + |
| 2 | +--- |
| 3 | +apiVersion: apiextensions.k8s.io/v1 |
| 4 | +kind: CustomResourceDefinition |
| 5 | +metadata: |
| 6 | + annotations: |
| 7 | + controller-gen.kubebuilder.io/version: v0.6.0 |
| 8 | + creationTimestamp: null |
| 9 | + name: yandexmessagequeues.connectors.cloud.yandex.com |
| 10 | +spec: |
| 11 | + group: connectors.cloud.yandex.com |
| 12 | + names: |
| 13 | + kind: YandexMessageQueue |
| 14 | + listKind: YandexMessageQueueList |
| 15 | + plural: yandexmessagequeues |
| 16 | + singular: yandexmessagequeue |
| 17 | + scope: Namespaced |
| 18 | + versions: |
| 19 | + - name: v1 |
| 20 | + schema: |
| 21 | + openAPIV3Schema: |
| 22 | + description: YandexMessageQueue is the Schema for the yandex object storage |
| 23 | + API |
| 24 | + properties: |
| 25 | + apiVersion: |
| 26 | + description: 'APIVersion defines the versioned schema of this representation |
| 27 | + of an object. Servers should convert recognized schemas to the latest |
| 28 | + internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' |
| 29 | + type: string |
| 30 | + kind: |
| 31 | + description: 'Kind is a string value representing the REST resource this |
| 32 | + object represents. Servers may infer this from the endpoint the client |
| 33 | + submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' |
| 34 | + type: string |
| 35 | + metadata: |
| 36 | + type: object |
| 37 | + spec: |
| 38 | + description: YandexMessageQueueSpec defines the desired state of YandexMessageQueue |
| 39 | + properties: |
| 40 | + SAKeyName: |
| 41 | + description: 'SAKeyName: specifies name of the Static Access Key that |
| 42 | + is used to authenticate this Yandex Object Storage in the cloud.' |
| 43 | + type: string |
| 44 | + contentBasedDeduplication: |
| 45 | + default: false |
| 46 | + description: 'ContentBasedDeduplication: flag that enables deduplication |
| 47 | + by message contents.' |
| 48 | + type: boolean |
| 49 | + delaySeconds: |
| 50 | + default: 0 |
| 51 | + description: 'DelaySeconds: Time in seconds for which messages are |
| 52 | + hidden after sending. Can be from 0 to 900 seconds (15 minutes). |
| 53 | + Defaults to 0.' |
| 54 | + type: integer |
| 55 | + fifoQueue: |
| 56 | + default: false |
| 57 | + description: 'FifoQueue: flag that states whether queue is FIFO or |
| 58 | + not. Must be immutable.' |
| 59 | + type: boolean |
| 60 | + maximumMessageSize: |
| 61 | + default: 262144 |
| 62 | + description: 'MaximumMessageSize: maximal size of message in bytes. |
| 63 | + Can vary from 1024 (1 KiB) to 262144 bytes (256 KiB). Defaults to |
| 64 | + 262144 (256 KiB).' |
| 65 | + type: integer |
| 66 | + messageRetentionPeriod: |
| 67 | + default: 345600 |
| 68 | + description: 'MessageRetentionPeriod: duration of message storing. |
| 69 | + Can vary from 60 seconds (1 minute) to 1209600 seconds (14 days). |
| 70 | + Defaults to: 345600 (4 days).' |
| 71 | + type: integer |
| 72 | + name: |
| 73 | + description: 'Name: must be unique in Yandex Cloud. Can consist of |
| 74 | + lowercase latin letters, dashes, dots and numbers and must be up |
| 75 | + to 80 characters long. Name of FIFO queue must end with ".fifo". |
| 76 | + Must be immutable.' |
| 77 | + maxLength: 80 |
| 78 | + pattern: '[a-z0-9][a-z0-9-_]*[a-z0-9]' |
| 79 | + type: string |
| 80 | + receiveMessageWaitTimeSeconds: |
| 81 | + default: 0 |
| 82 | + description: 'ReceiveMessageWaitTimeSeconds: timeout for method "ReceiveMessage" |
| 83 | + measured in seconds. Can vary from 0 to 20 seconds. Defaults to |
| 84 | + 0.' |
| 85 | + type: integer |
| 86 | + visibilityTimeout: |
| 87 | + default: 30 |
| 88 | + description: 'VisibilityTimeout: timeout of messages visibility timeout. |
| 89 | + Can vary from 0 to 43000 seconds. Defaults to 30.' |
| 90 | + type: integer |
| 91 | + required: |
| 92 | + - SAKeyName |
| 93 | + - name |
| 94 | + type: object |
| 95 | + status: |
| 96 | + description: YandexMessageQueueStatus defines the observed state of YandexMessageQueue |
| 97 | + properties: |
| 98 | + queueUrl: |
| 99 | + description: URL of created queue |
| 100 | + type: string |
| 101 | + type: object |
| 102 | + type: object |
| 103 | + served: true |
| 104 | + storage: true |
| 105 | +status: |
| 106 | + acceptedNames: |
| 107 | + kind: "" |
| 108 | + plural: "" |
| 109 | + conditions: [] |
| 110 | + storedVersions: [] |
0 commit comments