Method: Google::Cloud::Dialogflow::V2::Version#name

Defined in:
proto_docs/google/cloud/dialogflow/v2/version.rb

#name::String (readonly)

Returns Output only. The unique identifier of this agent version. Supported formats:

  • projects/<Project ID>/agent/versions/<Version ID>
  • projects/<Project ID>/locations/<Location ID>/agent/versions/<Version ID>.

Returns:

  • (::String)

    Output only. The unique identifier of this agent version. Supported formats:

    • projects/<Project ID>/agent/versions/<Version ID>
    • projects/<Project ID>/locations/<Location ID>/agent/versions/<Version ID>


65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# File 'proto_docs/google/cloud/dialogflow/v2/version.rb', line 65

class Version
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The status of a version.
  module VersionStatus
    # Not specified. This value is not used.
    VERSION_STATUS_UNSPECIFIED = 0

    # Version is not ready to serve (e.g. training is in progress).
    IN_PROGRESS = 1

    # Version is ready to serve.
    READY = 2

    # Version training failed.
    FAILED = 3
  end
end