Class: Google::Apis::HealthcareV1beta1::GoogleCloudHealthcareV1beta1AnnotationGcsSource
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1beta1::GoogleCloudHealthcareV1beta1AnnotationGcsSource
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/healthcare_v1beta1/classes.rb,
lib/google/apis/healthcare_v1beta1/representations.rb,
lib/google/apis/healthcare_v1beta1/representations.rb
Overview
Specifies the configuration for importing data from Cloud Storage.
Instance Attribute Summary collapse
-
#uri ⇒ String
Points to a Cloud Storage URI containing file(s) with content only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudHealthcareV1beta1AnnotationGcsSource
constructor
A new instance of GoogleCloudHealthcareV1beta1AnnotationGcsSource.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudHealthcareV1beta1AnnotationGcsSource
Returns a new instance of GoogleCloudHealthcareV1beta1AnnotationGcsSource.
3711 3712 3713 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 3711 def initialize(**args) update!(**args) end |
Instance Attribute Details
#uri ⇒ String
Points to a Cloud Storage URI containing file(s) with content only. The URI
must be in the following format: gs://
bucket_id/
object_id`. The URI can
include wildcards in
object_idand thus identify multiple files. Supported
wildcards: '*' to match 0 or more non-separator characters '**' to match 0 or
more characters (including separators). Must be used at the end of a path and
with no other wildcards in the path. Can also be used with a file extension (
such as .dcm), which imports all files with the extension in the specified
directory and its sub-directories. For example,
gs://my-bucket/my-directory/**
.jsonimports all files with .json extensions in
my-directory/and its sub-
directories. '?' to match 1 character All other URI formats are invalid. Files
matching the wildcard are expected to contain content only, no metadata.
Corresponds to the JSON property
uri`
3709 3710 3711 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 3709 def uri @uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3716 3717 3718 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 3716 def update!(**args) @uri = args[:uri] if args.key?(:uri) end |