Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2ConversationModel

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

Overview

Represents a conversation model.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2ConversationModel

Returns a new instance of GoogleCloudDialogflowV2ConversationModel.



7963
7964
7965
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 7963

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

Instance Attribute Details

#article_suggestion_model_metadataGoogle::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2ArticleSuggestionModelMetadata

Metadata for article suggestion models. Corresponds to the JSON property articleSuggestionModelMetadata



7908
7909
7910
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 7908

def 
  @article_suggestion_model_metadata
end

#create_timeString

Output only. Creation time of this model. Corresponds to the JSON property createTime

Returns:

  • (String)


7913
7914
7915
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 7913

def create_time
  @create_time
end

#datasetsArray<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2InputDataset>

Required. Datasets used to create model. Corresponds to the JSON property datasets



7918
7919
7920
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 7918

def datasets
  @datasets
end

#display_nameString

Required. The display name of the model. At most 64 bytes long. Corresponds to the JSON property displayName

Returns:

  • (String)


7923
7924
7925
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 7923

def display_name
  @display_name
end

#language_codeString

Language code for the conversation model. If not specified, the language is en- US. Language at ConversationModel should be set for all non en-us languages. This should be a BCP-47 language tag. Example: "en-US". Corresponds to the JSON property languageCode

Returns:

  • (String)


7931
7932
7933
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 7931

def language_code
  @language_code
end

#nameString

ConversationModel resource name. Format: projects//conversationModels/ Corresponds to the JSON property name

Returns:

  • (String)


7936
7937
7938
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 7936

def name
  @name
end

#satisfies_pziBoolean Also known as: satisfies_pzi?

Output only. A read only boolean field reflecting Zone Isolation status of the model. Corresponds to the JSON property satisfiesPzi

Returns:

  • (Boolean)


7942
7943
7944
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 7942

def satisfies_pzi
  @satisfies_pzi
end

#satisfies_pzsBoolean Also known as: satisfies_pzs?

Output only. A read only boolean field reflecting Zone Separation status of the model. Corresponds to the JSON property satisfiesPzs

Returns:

  • (Boolean)


7949
7950
7951
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 7949

def satisfies_pzs
  @satisfies_pzs
end

#smart_reply_model_metadataGoogle::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2SmartReplyModelMetadata

Metadata for smart reply models. Corresponds to the JSON property smartReplyModelMetadata



7955
7956
7957
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 7955

def 
  @smart_reply_model_metadata
end

#stateString

Output only. State of the model. A model can only serve prediction requests after it gets deployed. Corresponds to the JSON property state

Returns:

  • (String)


7961
7962
7963
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 7961

def state
  @state
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7968
7969
7970
7971
7972
7973
7974
7975
7976
7977
7978
7979
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 7968

def update!(**args)
  @article_suggestion_model_metadata = args[:article_suggestion_model_metadata] if args.key?(:article_suggestion_model_metadata)
  @create_time = args[:create_time] if args.key?(:create_time)
  @datasets = args[:datasets] if args.key?(:datasets)
  @display_name = args[:display_name] if args.key?(:display_name)
  @language_code = args[:language_code] if args.key?(:language_code)
  @name = args[:name] if args.key?(:name)
  @satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
  @satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
  @smart_reply_model_metadata = args[:smart_reply_model_metadata] if args.key?(:smart_reply_model_metadata)
  @state = args[:state] if args.key?(:state)
end