...
1apiVersion: apiextensions.k8s.io/v1
2kind: CustomResourceDefinition
3metadata:
4 annotations:
5 cnrm.cloud.google.com/version: 0.0.0-dev
6 creationTimestamp: null
7 labels:
8 cnrm.cloud.google.com/managed-by-kcc: "true"
9 cnrm.cloud.google.com/stability-level: alpha
10 cnrm.cloud.google.com/system: "true"
11 cnrm.cloud.google.com/tf2crd: "true"
12 name: healthcaredicomstores.healthcare.cnrm.cloud.google.com
13spec:
14 group: healthcare.cnrm.cloud.google.com
15 names:
16 categories:
17 - gcp
18 kind: HealthcareDICOMStore
19 plural: healthcaredicomstores
20 shortNames:
21 - gcphealthcaredicomstore
22 - gcphealthcaredicomstores
23 singular: healthcaredicomstore
24 preserveUnknownFields: false
25 scope: Namespaced
26 versions:
27 - additionalPrinterColumns:
28 - jsonPath: .metadata.creationTimestamp
29 name: Age
30 type: date
31 - description: When 'True', the most recent reconcile of the resource succeeded
32 jsonPath: .status.conditions[?(@.type=='Ready')].status
33 name: Ready
34 type: string
35 - description: The reason for the value in 'Ready'
36 jsonPath: .status.conditions[?(@.type=='Ready')].reason
37 name: Status
38 type: string
39 - description: The last transition time for the value in 'Status'
40 jsonPath: .status.conditions[?(@.type=='Ready')].lastTransitionTime
41 name: Status Age
42 type: date
43 name: v1alpha1
44 schema:
45 openAPIV3Schema:
46 properties:
47 apiVersion:
48 description: 'apiVersion defines the versioned schema of this representation
49 of an object. Servers should convert recognized schemas to the latest
50 internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources'
51 type: string
52 kind:
53 description: 'kind is a string value representing the REST resource this
54 object represents. Servers may infer this from the endpoint the client
55 submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds'
56 type: string
57 metadata:
58 type: object
59 spec:
60 properties:
61 dataset:
62 description: |-
63 Immutable. Identifies the dataset addressed by this request. Must be in the format
64 'projects/{project}/locations/{location}/datasets/{dataset}'.
65 type: string
66 notificationConfig:
67 description: A nested object resource.
68 properties:
69 pubsubTopic:
70 description: |-
71 The Cloud Pub/Sub topic that notifications of changes are published on. Supplied by the client.
72 PubsubMessage.Data will contain the resource name. PubsubMessage.MessageId is the ID of this message.
73 It is guaranteed to be unique within the topic. PubsubMessage.PublishTime is the time at which the message
74 was published. Notifications are only sent if the topic is non-empty. Topic names must be scoped to a
75 project. service-PROJECT_NUMBER@gcp-sa-healthcare.iam.gserviceaccount.com must have publisher permissions on the given
76 Cloud Pub/Sub topic. Not having adequate permissions will cause the calls that send notifications to fail.
77 type: string
78 required:
79 - pubsubTopic
80 type: object
81 resourceID:
82 description: Immutable. Optional. The name of the resource. Used for
83 creation and acquisition. When unset, the value of `metadata.name`
84 is used as the default.
85 type: string
86 streamConfigs:
87 description: |-
88 To enable streaming to BigQuery, configure the streamConfigs object in your DICOM store.
89 streamConfigs is an array, so you can specify multiple BigQuery destinations. You can stream metadata from a single DICOM store to up to five BigQuery tables in a BigQuery dataset.
90 items:
91 properties:
92 bigqueryDestination:
93 description: BigQueryDestination to include a fully qualified
94 BigQuery table URI where DICOM instance metadata will be streamed.
95 properties:
96 tableUri:
97 description: a fully qualified BigQuery table URI where
98 DICOM instance metadata will be streamed.
99 type: string
100 required:
101 - tableUri
102 type: object
103 required:
104 - bigqueryDestination
105 type: object
106 type: array
107 required:
108 - dataset
109 type: object
110 status:
111 properties:
112 conditions:
113 description: Conditions represent the latest available observation
114 of the resource's current state.
115 items:
116 properties:
117 lastTransitionTime:
118 description: Last time the condition transitioned from one status
119 to another.
120 type: string
121 message:
122 description: Human-readable message indicating details about
123 last transition.
124 type: string
125 reason:
126 description: Unique, one-word, CamelCase reason for the condition's
127 last transition.
128 type: string
129 status:
130 description: Status is the status of the condition. Can be True,
131 False, Unknown.
132 type: string
133 type:
134 description: Type is the type of the condition.
135 type: string
136 type: object
137 type: array
138 observedGeneration:
139 description: ObservedGeneration is the generation of the resource
140 that was most recently observed by the Config Connector controller.
141 If this is equal to metadata.generation, then that means that the
142 current reported status reflects the most recent desired state of
143 the resource.
144 type: integer
145 selfLink:
146 description: The fully qualified name of this dataset.
147 type: string
148 type: object
149 required:
150 - spec
151 type: object
152 served: true
153 storage: true
154 subresources:
155 status: {}
156status:
157 acceptedNames:
158 kind: ""
159 plural: ""
160 conditions: []
161 storedVersions: []
View as plain text