Struct google_dialogflow2_beta1::GoogleCloudDialogflowV2beta1ImportAgentRequest[][src]

pub struct GoogleCloudDialogflowV2beta1ImportAgentRequest {
    pub agent_uri: Option<String>,
    pub agent_content: Option<String>,
}

The request message for Agents.ImportAgent.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

The URI to a Google Cloud Storage file containing the agent to import. Note: The URI must start with "gs://".

The agent to import.

Example for how to import an agent via the command line:

curl \
  'https://dialogflow.googleapis.com/v2beta1/projects/<project_name>/agent:import\
   -X POST \
   -H 'Authorization: Bearer '$(gcloud auth application-default
   print-access-token) \
   -H 'Accept: application/json' \
   -H 'Content-Type: application/json' \
   --compressed \
   --data-binary "{
      'agentContent': '$(cat <agent zip file> | base64 -w 0)'
   }"

Trait Implementations

Auto Trait Implementations