Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettingsGitConnectionSettings

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettingsGitConnectionSettings

Returns a new instance of GoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettingsGitConnectionSettings.



4141
4142
4143
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4141

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

Instance Attribute Details

#access_token_secretString

Corresponds to the JSON property accessTokenSecret

Returns:

  • (String)


4119
4120
4121
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4119

def access_token_secret
  @access_token_secret
end

#branchesArray<String>

Corresponds to the JSON property branches

Returns:

  • (Array<String>)


4124
4125
4126
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4124

def branches
  @branches
end

#display_nameString

Corresponds to the JSON property displayName

Returns:

  • (String)


4129
4130
4131
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4129

def display_name
  @display_name
end

#repository_uriString

Corresponds to the JSON property repositoryUri

Returns:

  • (String)


4134
4135
4136
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4134

def repository_uri
  @repository_uri
end

#tracking_branchString

Corresponds to the JSON property trackingBranch

Returns:

  • (String)


4139
4140
4141
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4139

def tracking_branch
  @tracking_branch
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4146
4147
4148
4149
4150
4151
4152
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4146

def update!(**args)
  @access_token_secret = args[:access_token_secret] if args.key?(:access_token_secret)
  @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