Class: Google::Apis::ContaineranalysisV1alpha1::Uri

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

Overview

An URI message.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Uri

Returns a new instance of Uri.



7152
7153
7154
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 7152

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

Instance Attribute Details

#labelString

A label for the URI. Corresponds to the JSON property label

Returns:

  • (String)


7145
7146
7147
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 7145

def label
  @label
end

#uriString

The unique resource identifier. Corresponds to the JSON property uri

Returns:

  • (String)


7150
7151
7152
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 7150

def uri
  @uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7157
7158
7159
7160
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 7157

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