Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Changelog
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Changelog
- 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
Changelogs represents a change made to a given agent.
Instance Attribute Summary collapse
-
#action ⇒ String
The action of the change.
-
#create_time ⇒ String
The timestamp of the change.
-
#display_name ⇒ String
The affected resource display name of the change.
-
#language_code ⇒ String
The affected language code of the change.
-
#name ⇒ String
The unique identifier of the changelog.
-
#resource ⇒ String
The affected resource name of the change.
-
#type ⇒ String
The affected resource type.
-
#user_email ⇒ String
Email address of the authenticated user.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3Changelog
constructor
A new instance of GoogleCloudDialogflowCxV3Changelog.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3Changelog
Returns a new instance of GoogleCloudDialogflowCxV3Changelog.
995 996 997 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 995 def initialize(**args) update!(**args) end |
Instance Attribute Details
#action ⇒ String
The action of the change.
Corresponds to the JSON property action
957 958 959 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 957 def action @action end |
#create_time ⇒ String
The timestamp of the change.
Corresponds to the JSON property createTime
962 963 964 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 962 def create_time @create_time end |
#display_name ⇒ String
The affected resource display name of the change.
Corresponds to the JSON property displayName
967 968 969 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 967 def display_name @display_name end |
#language_code ⇒ String
The affected language code of the change.
Corresponds to the JSON property languageCode
972 973 974 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 972 def language_code @language_code end |
#name ⇒ String
The unique identifier of the changelog. Format: projects//locations//agents//
changelogs/.
Corresponds to the JSON property name
978 979 980 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 978 def name @name end |
#resource ⇒ String
The affected resource name of the change.
Corresponds to the JSON property resource
983 984 985 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 983 def resource @resource end |
#type ⇒ String
The affected resource type.
Corresponds to the JSON property type
988 989 990 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 988 def type @type end |
#user_email ⇒ String
Email address of the authenticated user.
Corresponds to the JSON property userEmail
993 994 995 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 993 def user_email @user_email end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1000 def update!(**args) @action = args[:action] if args.key?(:action) @create_time = args[:create_time] if args.key?(:create_time) @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) @resource = args[:resource] if args.key?(:resource) @type = args[:type] if args.key?(:type) @user_email = args[:user_email] if args.key?(:user_email) end |