Class: Google::Cloud::ContactCenterInsights::V1::BulkUploadFeedbackLabelsRequest::GcsSource
- Inherits:
-
Object
- Object
- Google::Cloud::ContactCenterInsights::V1::BulkUploadFeedbackLabelsRequest::GcsSource
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/contactcenterinsights/v1/contact_center_insights.rb
Overview
Google Cloud Storage Object details to get the feedback label file from.
Defined Under Namespace
Modules: Format
Instance Attribute Summary collapse
-
#format ⇒ ::Google::Cloud::ContactCenterInsights::V1::BulkUploadFeedbackLabelsRequest::GcsSource::Format
Required.
-
#object_uri ⇒ ::String
Required.
Instance Attribute Details
#format ⇒ ::Google::Cloud::ContactCenterInsights::V1::BulkUploadFeedbackLabelsRequest::GcsSource::Format
Returns Required. File format which will be ingested.
2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 |
# File 'proto_docs/google/cloud/contactcenterinsights/v1/contact_center_insights.rb', line 2235 class GcsSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # All permissible file formats. module Format # Unspecified format. FORMAT_UNSPECIFIED = 0 # CSV format. CSV = 1 # JSON format. JSON = 2 end end |
#object_uri ⇒ ::String
Returns Required. The Google Cloud Storage URI of the file to import.
Format: gs://bucket_name/object_name
.
2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 |
# File 'proto_docs/google/cloud/contactcenterinsights/v1/contact_center_insights.rb', line 2235 class GcsSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # All permissible file formats. module Format # Unspecified format. FORMAT_UNSPECIFIED = 0 # CSV format. CSV = 1 # JSON format. JSON = 2 end end |