Class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository

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

Overview

A repository for a git source.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository

Returns a new instance of ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository.



2348
2349
2350
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 2348

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

Instance Attribute Details

#developer_connectString

The Developer Connect Git repository link formatted as projects/*/locations/*/ connections/*/gitRepositoryLink/* Corresponds to the JSON property developerConnect

Returns:

  • (String)


2341
2342
2343
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 2341

def developer_connect
  @developer_connect
end

#urlString

Location of the Git repository. Corresponds to the JSON property url

Returns:

  • (String)


2346
2347
2348
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 2346

def url
  @url
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2353
2354
2355
2356
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 2353

def update!(**args)
  @developer_connect = args[:developer_connect] if args.key?(:developer_connect)
  @url = args[:url] if args.key?(:url)
end