Class: Google::Apis::HealthcareV1alpha2::GoogleCloudHealthcareV1alpha2FhirRestGcsErrorDestination

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/healthcare_v1alpha2/classes.rb,
generated/google/apis/healthcare_v1alpha2/representations.rb,
generated/google/apis/healthcare_v1alpha2/representations.rb

Overview

Specifies the Cloud Storage destination where errors will be recorded.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GoogleCloudHealthcareV1alpha2FhirRestGcsErrorDestination

Returns a new instance of GoogleCloudHealthcareV1alpha2FhirRestGcsErrorDestination



1289
1290
1291
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 1289

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#uri_prefixString

URI for a Cloud Storage directory to which error report files should be written (in the format gs://bucket-id/path/to/destination/dir`). If there is no trailing slash, the service will append one when composing the object path. The user is responsible for creating the Cloud Storage bucket referenced inuri_prefix. Corresponds to the JSON propertyuriPrefix`

Returns:

  • (String)


1287
1288
1289
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 1287

def uri_prefix
  @uri_prefix
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1294
1295
1296
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 1294

def update!(**args)
  @uri_prefix = args[:uri_prefix] if args.key?(:uri_prefix)
end