Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ImportTestCasesRequest
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ImportTestCasesRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v3/classes.rb,
lib/google/apis/dialogflow_v3/representations.rb,
lib/google/apis/dialogflow_v3/representations.rb
Overview
The request message for TestCases.ImportTestCases.
Instance Attribute Summary collapse
-
#content ⇒ String
Uncompressed raw byte content for test cases.
-
#gcs_uri ⇒ String
The Google Cloud Storage URI to import test cases from.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3ImportTestCasesRequest
constructor
A new instance of GoogleCloudDialogflowCxV3ImportTestCasesRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3ImportTestCasesRequest
Returns a new instance of GoogleCloudDialogflowCxV3ImportTestCasesRequest.
4205 4206 4207 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 4205 def initialize(**args) update!(**args) end |
Instance Attribute Details
#content ⇒ String
Uncompressed raw byte content for test cases.
Corresponds to the JSON property content
NOTE: Values are automatically base64 encoded/decoded in the client library.
4193 4194 4195 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 4193 def content @content end |
#gcs_uri ⇒ String
The Google Cloud Storage URI to
import test cases from. The format of this URI must be gs:///
. Dialogflow
performs a read operation for the Cloud Storage object on the caller's behalf,
so your request authentication must have read permissions for the object. For
more information, see Dialogflow access control.
Corresponds to the JSON property gcsUri
4203 4204 4205 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 4203 def gcs_uri @gcs_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4210 4211 4212 4213 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 4210 def update!(**args) @content = args[:content] if args.key?(:content) @gcs_uri = args[:gcs_uri] if args.key?(:gcs_uri) end |