Class: Google::Apis::ContaineranalysisV1beta1::Publisher
- Inherits:
-
Object
- Object
- Google::Apis::ContaineranalysisV1beta1::Publisher
- 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
Publisher contains information about the publisher of this Note.
Instance Attribute Summary collapse
-
#context ⇒ String
The context or namespace.
-
#issuing_authority ⇒ String
Provides information about the authority of the issuing party to release the document, in particular, the party's constituency and responsibilities or other obligations.
-
#name ⇒ String
Name of the publisher.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Publisher
constructor
A new instance of Publisher.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Publisher
Returns a new instance of Publisher.
5136 5137 5138 |
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 5136 def initialize(**args) update!(**args) end |
Instance Attribute Details
#context ⇒ String
The context or namespace. Contains a URL which is under control of the issuing
party and can be used as a globally unique identifier for that issuing party.
Example: https://csaf.io
Corresponds to the JSON property context
5122 5123 5124 |
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 5122 def context @context end |
#issuing_authority ⇒ String
Provides information about the authority of the issuing party to release the
document, in particular, the party's constituency and responsibilities or
other obligations.
Corresponds to the JSON property issuingAuthority
5129 5130 5131 |
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 5129 def @issuing_authority end |
#name ⇒ String
Name of the publisher. Examples: 'Google', 'Google Cloud Platform'.
Corresponds to the JSON property name
5134 5135 5136 |
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 5134 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5141 5142 5143 5144 5145 |
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 5141 def update!(**args) @context = args[:context] if args.key?(:context) @issuing_authority = args[:issuing_authority] if args.key?(:issuing_authority) @name = args[:name] if args.key?(:name) end |