Class: Google::Apis::ContaineranalysisV1beta1::AliasContext

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

An alias to a repo revision.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AliasContext

Returns a new instance of AliasContext.



77
78
79
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 77

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

Instance Attribute Details

#kindString

The alias kind. Corresponds to the JSON property kind

Returns:

  • (String)


70
71
72
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 70

def kind
  @kind
end

#nameString

The alias name. Corresponds to the JSON property name

Returns:

  • (String)


75
76
77
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 75

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



82
83
84
85
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 82

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