Class: Google::Apis::OndemandscanningV1beta1::CloudRepoSourceContext

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

Overview

A CloudRepoSourceContext denotes a particular revision in a Google Cloud Source Repo.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CloudRepoSourceContext

Returns a new instance of CloudRepoSourceContext.



804
805
806
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 804

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

Instance Attribute Details

#alias_contextGoogle::Apis::OndemandscanningV1beta1::AliasContext

An alias to a repo revision. Corresponds to the JSON property aliasContext



792
793
794
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 792

def alias_context
  @alias_context
end

#repo_idGoogle::Apis::OndemandscanningV1beta1::RepoId

A unique identifier for a Cloud Repo. Corresponds to the JSON property repoId



797
798
799
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 797

def repo_id
  @repo_id
end

#revision_idString

A revision ID. Corresponds to the JSON property revisionId

Returns:

  • (String)


802
803
804
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 802

def revision_id
  @revision_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



809
810
811
812
813
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 809

def update!(**args)
  @alias_context = args[:alias_context] if args.key?(:alias_context)
  @repo_id = args[:repo_id] if args.key?(:repo_id)
  @revision_id = args[:revision_id] if args.key?(:revision_id)
end