class Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSourceManifest

Location of the source manifest in Google Cloud Storage. This feature is in Preview; see description [here](github.com/GoogleCloudPlatform/cloud- builders/tree/master/gcs-fetcher).

Attributes

bucket[RW]

Google Cloud Storage bucket containing the source manifest (see [Bucket Name Requirements](cloud.google.com/storage/docs/bucket-naming#requirements) ). Corresponds to the JSON property ‘bucket` @return [String]

generation[RW]

Google Cloud Storage generation for the object. If the generation is omitted, the latest generation will be used. Corresponds to the JSON property ‘generation` @return [Fixnum]

object[RW]

Google Cloud Storage object containing the source manifest. This object must be a JSON file. Corresponds to the JSON property ‘object` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/containeranalysis_v1/classes.rb, line 2121
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/containeranalysis_v1/classes.rb, line 2126
def update!(**args)
  @bucket = args[:bucket] if args.key?(:bucket)
  @generation = args[:generation] if args.key?(:generation)
  @object = args[:object] if args.key?(:object)
end