Class: Google::Cloud::ContactCenterInsights::V1::BulkDownloadFeedbackLabelsRequest::GcsDestination
- Inherits:
-
Object
- Object
- Google::Cloud::ContactCenterInsights::V1::BulkDownloadFeedbackLabelsRequest::GcsDestination
- 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 write the feedback labels to.
Defined Under Namespace
Modules: Format
Instance Attribute Summary collapse
-
#add_whitespace ⇒ ::Boolean
Optional.
-
#always_print_empty_fields ⇒ ::Boolean
Optional.
-
#format ⇒ ::Google::Cloud::ContactCenterInsights::V1::BulkDownloadFeedbackLabelsRequest::GcsDestination::Format
Required.
-
#object_uri ⇒ ::String
Required.
-
#records_per_file_count ⇒ ::Integer
Optional.
Instance Attribute Details
#add_whitespace ⇒ ::Boolean
Returns Optional. Add whitespace to the JSON file. Makes easier to read, but increases file size. Only applicable for JSON format.
2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 |
# File 'proto_docs/google/cloud/contactcenterinsights/v1/contact_center_insights.rb', line 2357 class GcsDestination include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # All permissible file formats. # See `records_per_file_count` to override the default number of records # per file. module Format # Unspecified format. FORMAT_UNSPECIFIED = 0 # CSV format. # 1,000 labels are stored per CSV file by default. CSV = 1 # JSON format. # 1 label stored per JSON file by default. JSON = 2 end end |
#always_print_empty_fields ⇒ ::Boolean
Returns Optional. Always print fields with no presence. This is useful for printing fields that are not set, like implicit 0 value or empty lists/maps. Only applicable for JSON format.
2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 |
# File 'proto_docs/google/cloud/contactcenterinsights/v1/contact_center_insights.rb', line 2357 class GcsDestination include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # All permissible file formats. # See `records_per_file_count` to override the default number of records # per file. module Format # Unspecified format. FORMAT_UNSPECIFIED = 0 # CSV format. # 1,000 labels are stored per CSV file by default. CSV = 1 # JSON format. # 1 label stored per JSON file by default. JSON = 2 end end |
#format ⇒ ::Google::Cloud::ContactCenterInsights::V1::BulkDownloadFeedbackLabelsRequest::GcsDestination::Format
Returns Required. File format in which the labels will be exported.
2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 |
# File 'proto_docs/google/cloud/contactcenterinsights/v1/contact_center_insights.rb', line 2357 class GcsDestination include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # All permissible file formats. # See `records_per_file_count` to override the default number of records # per file. module Format # Unspecified format. FORMAT_UNSPECIFIED = 0 # CSV format. # 1,000 labels are stored per CSV file by default. CSV = 1 # JSON format. # 1 label stored per JSON file by default. JSON = 2 end end |
#object_uri ⇒ ::String
Returns Required. The Google Cloud Storage URI to write the feedback labels to.
The file name will be used as a prefix for the files written to the
bucket if the output needs to be split across multiple files, otherwise
it will be used as is. The file extension will be appended to the file
name based on the format selected.
E.g. gs://bucket_name/object_uri_prefix
.
2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 |
# File 'proto_docs/google/cloud/contactcenterinsights/v1/contact_center_insights.rb', line 2357 class GcsDestination include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # All permissible file formats. # See `records_per_file_count` to override the default number of records # per file. module Format # Unspecified format. FORMAT_UNSPECIFIED = 0 # CSV format. # 1,000 labels are stored per CSV file by default. CSV = 1 # JSON format. # 1 label stored per JSON file by default. JSON = 2 end end |
#records_per_file_count ⇒ ::Integer
Returns Optional. The number of records per file. Applicable for either format.
2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 |
# File 'proto_docs/google/cloud/contactcenterinsights/v1/contact_center_insights.rb', line 2357 class GcsDestination include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # All permissible file formats. # See `records_per_file_count` to override the default number of records # per file. module Format # Unspecified format. FORMAT_UNSPECIFIED = 0 # CSV format. # 1,000 labels are stored per CSV file by default. CSV = 1 # JSON format. # 1 label stored per JSON file by default. JSON = 2 end end |