Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettingsGitConnectionSettings
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettingsGitConnectionSettings
- 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
-
#access_token_secret ⇒ String
Corresponds to the JSON property
accessTokenSecret. -
#branches ⇒ Array<String>
Corresponds to the JSON property
branches. -
#display_name ⇒ String
Corresponds to the JSON property
displayName. -
#repository_uri ⇒ String
Corresponds to the JSON property
repositoryUri. -
#tracking_branch ⇒ String
Corresponds to the JSON property
trackingBranch.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettingsGitConnectionSettings
constructor
A new instance of GoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettingsGitConnectionSettings.
-
#update!(**args) ⇒ Object
Update properties of this object.
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_secret ⇒ String
Corresponds to the JSON property accessTokenSecret
4119 4120 4121 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4119 def access_token_secret @access_token_secret end |
#branches ⇒ Array<String>
Corresponds to the JSON property branches
4124 4125 4126 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4124 def branches @branches end |
#display_name ⇒ String
Corresponds to the JSON property displayName
4129 4130 4131 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4129 def display_name @display_name end |
#repository_uri ⇒ String
Corresponds to the JSON property repositoryUri
4134 4135 4136 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4134 def repository_uri @repository_uri end |
#tracking_branch ⇒ String
Corresponds to the JSON property trackingBranch
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 |