Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettingsGithubSettings

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

Overview

Settings of integration with GitHub.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettingsGithubSettings

Returns a new instance of GoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettingsGithubSettings.



4063
4064
4065
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4063

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

Instance Attribute Details

#access_tokenString

The access token used to authenticate the access to the GitHub repository. Corresponds to the JSON property accessToken

Returns:

  • (String)


4041
4042
4043
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4041

def access_token
  @access_token
end

#branchesArray<String>

A list of branches configured to be used from Dialogflow. Corresponds to the JSON property branches

Returns:

  • (Array<String>)


4046
4047
4048
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4046

def branches
  @branches
end

#display_nameString

The unique repository display name for the GitHub repository. Corresponds to the JSON property displayName

Returns:

  • (String)


4051
4052
4053
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4051

def display_name
  @display_name
end

#repository_uriString

The GitHub repository URI related to the agent. Corresponds to the JSON property repositoryUri

Returns:

  • (String)


4056
4057
4058
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4056

def repository_uri
  @repository_uri
end

#tracking_branchString

The branch of the GitHub repository tracked for this agent. Corresponds to the JSON property trackingBranch

Returns:

  • (String)


4061
4062
4063
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4061

def tracking_branch
  @tracking_branch
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4068
4069
4070
4071
4072
4073
4074
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4068

def update!(**args)
  @access_token = args[:access_token] if args.key?(:access_token)
  @branches = args[:branches] if args.key?(:branches)
  @display_name = args[:display_name] if args.key?(:display_name)
  @repository_uri = args[:repository_uri] if args.key?(:repository_uri)
  @tracking_branch = args[:tracking_branch] if args.key?(:tracking_branch)
end