Class: Google::Apis::BinaryauthorizationV1::Attestor

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

Overview

An attestor that attests to container image artifacts. An existing attestor cannot be modified except where indicated.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Attestor

Returns a new instance of Attestor.



161
162
163
# File 'generated/google/apis/binaryauthorization_v1/classes.rb', line 161

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

Instance Attribute Details

#descriptionString

Optional. A descriptive comment. This field may be updated. The field may be displayed in chooser dialogs. Corresponds to the JSON property description

Returns:

  • (String)


142
143
144
# File 'generated/google/apis/binaryauthorization_v1/classes.rb', line 142

def description
  @description
end

#nameString

Required. The resource name, in the format: projects/*/attestors/*. This field may not be updated. Corresponds to the JSON property name

Returns:

  • (String)


148
149
150
# File 'generated/google/apis/binaryauthorization_v1/classes.rb', line 148

def name
  @name
end

#update_timeString

Output only. Time when the attestor was last updated. Corresponds to the JSON property updateTime

Returns:

  • (String)


153
154
155
# File 'generated/google/apis/binaryauthorization_v1/classes.rb', line 153

def update_time
  @update_time
end

#user_owned_grafeas_noteGoogle::Apis::BinaryauthorizationV1::UserOwnedGrafeasNote

An user owned Grafeas note references a Grafeas Attestation.Authority Note created by the user. Corresponds to the JSON property userOwnedGrafeasNote



159
160
161
# File 'generated/google/apis/binaryauthorization_v1/classes.rb', line 159

def user_owned_grafeas_note
  @user_owned_grafeas_note
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



166
167
168
169
170
171
# File 'generated/google/apis/binaryauthorization_v1/classes.rb', line 166

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