class Google::Apis::AppengineV1::ZipInfo

The zip file information for a zip deployment.

Attributes

files_count[RW]

An estimate of the number of files in a zip for a zip deployment. If set, must be greater than or equal to the actual number of files. Used for optimizing performance; if not provided, deployment may be slow. Corresponds to the JSON property `filesCount` @return [Fixnum]

source_url[RW]

URL of the zip file to deploy from. Must be a URL to a resource in Google Cloud Storage in the form 'http(s)://storage.googleapis.com//'. Corresponds to the JSON property `sourceUrl` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/appengine_v1/classes.rb, line 3211
def update!(**args)
  @files_count = args[:files_count] if args.key?(:files_count)
  @source_url = args[:source_url] if args.key?(:source_url)
end