...

Text file src/github.com/GoogleCloudPlatform/k8s-config-connector/crds/healthcare_v1alpha1_healthcarehl7v2store.yaml

Documentation: github.com/GoogleCloudPlatform/k8s-config-connector/crds

     1# Copyright 2020 Google LLC
     2#
     3# Licensed under the Apache License, Version 2.0 (the "License");
     4# you may not use this file except in compliance with the License.
     5# You may obtain a copy of the License at
     6#
     7#     http://www.apache.org/licenses/LICENSE-2.0
     8#
     9# Unless required by applicable law or agreed to in writing, software
    10# distributed under the License is distributed on an "AS IS" BASIS,
    11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    12# See the License for the specific language governing permissions and
    13# limitations under the License.
    14
    15apiVersion: apiextensions.k8s.io/v1
    16kind: CustomResourceDefinition
    17metadata:
    18  annotations:
    19    cnrm.cloud.google.com/version: 1.106.0
    20  creationTimestamp: null
    21  labels:
    22    cnrm.cloud.google.com/managed-by-kcc: "true"
    23    cnrm.cloud.google.com/stability-level: alpha
    24    cnrm.cloud.google.com/system: "true"
    25    cnrm.cloud.google.com/tf2crd: "true"
    26  name: healthcarehl7v2stores.healthcare.cnrm.cloud.google.com
    27spec:
    28  group: healthcare.cnrm.cloud.google.com
    29  names:
    30    categories:
    31    - gcp
    32    kind: HealthcareHL7V2Store
    33    plural: healthcarehl7v2stores
    34    shortNames:
    35    - gcphealthcarehl7v2store
    36    - gcphealthcarehl7v2stores
    37    singular: healthcarehl7v2store
    38  scope: Namespaced
    39  versions:
    40  - additionalPrinterColumns:
    41    - jsonPath: .metadata.creationTimestamp
    42      name: Age
    43      type: date
    44    - description: When 'True', the most recent reconcile of the resource succeeded
    45      jsonPath: .status.conditions[?(@.type=='Ready')].status
    46      name: Ready
    47      type: string
    48    - description: The reason for the value in 'Ready'
    49      jsonPath: .status.conditions[?(@.type=='Ready')].reason
    50      name: Status
    51      type: string
    52    - description: The last transition time for the value in 'Status'
    53      jsonPath: .status.conditions[?(@.type=='Ready')].lastTransitionTime
    54      name: Status Age
    55      type: date
    56    name: v1alpha1
    57    schema:
    58      openAPIV3Schema:
    59        properties:
    60          apiVersion:
    61            description: 'apiVersion defines the versioned schema of this representation
    62              of an object. Servers should convert recognized schemas to the latest
    63              internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources'
    64            type: string
    65          kind:
    66            description: 'kind is a string value representing the REST resource this
    67              object represents. Servers may infer this from the endpoint the client
    68              submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds'
    69            type: string
    70          metadata:
    71            type: object
    72          spec:
    73            properties:
    74              dataset:
    75                description: |-
    76                  Immutable. Identifies the dataset addressed by this request. Must be in the format
    77                  'projects/{project}/locations/{location}/datasets/{dataset}'.
    78                type: string
    79              notificationConfig:
    80                description: DEPRECATED. This field has been replaced by notificationConfigs.
    81                  A nested object resource.
    82                properties:
    83                  pubsubTopic:
    84                    description: |-
    85                      The Cloud Pub/Sub topic that notifications of changes are published on. Supplied by the client.
    86                      PubsubMessage.Data will contain the resource name. PubsubMessage.MessageId is the ID of this message.
    87                      It is guaranteed to be unique within the topic. PubsubMessage.PublishTime is the time at which the message
    88                      was published. Notifications are only sent if the topic is non-empty. Topic names must be scoped to a
    89                      project. service-PROJECT_NUMBER@gcp-sa-healthcare.iam.gserviceaccount.com must have publisher permissions on the given
    90                      Cloud Pub/Sub topic. Not having adequate permissions will cause the calls that send notifications to fail.
    91                    type: string
    92                required:
    93                - pubsubTopic
    94                type: object
    95              notificationConfigs:
    96                description: |-
    97                  A list of notification configs. Each configuration uses a filter to determine whether to publish a
    98                  message (both Ingest & Create) on the corresponding notification destination. Only the message name
    99                  is sent as part of the notification. Supplied by the client.
   100                items:
   101                  properties:
   102                    filter:
   103                      description: |-
   104                        Restricts notifications sent for messages matching a filter. If this is empty, all messages
   105                        are matched. Syntax: https://cloud.google.com/appengine/docs/standard/python/search/query_strings
   106
   107                        Fields/functions available for filtering are:
   108
   109                        * messageType, from the MSH-9.1 field. For example, NOT messageType = "ADT".
   110                        * send_date or sendDate, the YYYY-MM-DD date the message was sent in the dataset's timeZone, from the MSH-7 segment. For example, send_date < "2017-01-02".
   111                        * sendTime, the timestamp when the message was sent, using the RFC3339 time format for comparisons, from the MSH-7 segment. For example, sendTime < "2017-01-02T00:00:00-05:00".
   112                        * sendFacility, the care center that the message came from, from the MSH-4 segment. For example, sendFacility = "ABC".
   113                        * PatientId(value, type), which matches if the message lists a patient having an ID of the given value and type in the PID-2, PID-3, or PID-4 segments. For example, PatientId("123456", "MRN").
   114                        * labels.x, a string value of the label with key x as set using the Message.labels map. For example, labels."priority"="high". The operator :* can be used to assert the existence of a label. For example, labels."priority":*.
   115                      type: string
   116                    pubsubTopic:
   117                      description: |-
   118                        The Cloud Pub/Sub topic that notifications of changes are published on. Supplied by the client.
   119                        PubsubMessage.Data will contain the resource name. PubsubMessage.MessageId is the ID of this message.
   120                        It is guaranteed to be unique within the topic. PubsubMessage.PublishTime is the time at which the message
   121                        was published. Notifications are only sent if the topic is non-empty. Topic names must be scoped to a
   122                        project. service-PROJECT_NUMBER@gcp-sa-healthcare.iam.gserviceaccount.com must have publisher permissions on the given
   123                        Cloud Pub/Sub topic. Not having adequate permissions will cause the calls that send notifications to fail.
   124
   125                        If a notification cannot be published to Cloud Pub/Sub, errors will be logged to Stackdriver.
   126                      type: string
   127                  required:
   128                  - pubsubTopic
   129                  type: object
   130                type: array
   131              parserConfig:
   132                description: A nested object resource.
   133                properties:
   134                  allowNullHeader:
   135                    description: Determines whether messages with no header are allowed.
   136                    type: boolean
   137                  schema:
   138                    description: |-
   139                      JSON encoded string for schemas used to parse messages in this
   140                      store if schematized parsing is desired.
   141                    type: string
   142                  segmentTerminator:
   143                    description: |-
   144                      Byte(s) to be used as the segment terminator. If this is unset, '\r' will be used as segment terminator.
   145
   146                      A base64-encoded string.
   147                    type: string
   148                  version:
   149                    description: 'Immutable. The version of the unschematized parser
   150                      to be used when a custom ''schema'' is not set. Default value:
   151                      "V1" Possible values: ["V1", "V2", "V3"].'
   152                    type: string
   153                type: object
   154              resourceID:
   155                description: Immutable. Optional. The name of the resource. Used for
   156                  creation and acquisition. When unset, the value of `metadata.name`
   157                  is used as the default.
   158                type: string
   159            required:
   160            - dataset
   161            type: object
   162          status:
   163            properties:
   164              conditions:
   165                description: Conditions represent the latest available observation
   166                  of the resource's current state.
   167                items:
   168                  properties:
   169                    lastTransitionTime:
   170                      description: Last time the condition transitioned from one status
   171                        to another.
   172                      type: string
   173                    message:
   174                      description: Human-readable message indicating details about
   175                        last transition.
   176                      type: string
   177                    reason:
   178                      description: Unique, one-word, CamelCase reason for the condition's
   179                        last transition.
   180                      type: string
   181                    status:
   182                      description: Status is the status of the condition. Can be True,
   183                        False, Unknown.
   184                      type: string
   185                    type:
   186                      description: Type is the type of the condition.
   187                      type: string
   188                  type: object
   189                type: array
   190              observedGeneration:
   191                description: ObservedGeneration is the generation of the resource
   192                  that was most recently observed by the Config Connector controller.
   193                  If this is equal to metadata.generation, then that means that the
   194                  current reported status reflects the most recent desired state of
   195                  the resource.
   196                type: integer
   197              selfLink:
   198                description: The fully qualified name of this dataset.
   199                type: string
   200            type: object
   201        required:
   202        - spec
   203        type: object
   204    served: true
   205    storage: true
   206    subresources:
   207      status: {}
   208status:
   209  acceptedNames:
   210    kind: ""
   211    plural: ""
   212  conditions: []
   213  storedVersions: []

View as plain text