Class: Google::Apis::AppengineV1::ZipInfo

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

Overview

The zip file information for a zip deployment.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ZipInfo

Returns a new instance of ZipInfo.



2996
2997
2998
# File 'generated/google/apis/appengine_v1/classes.rb', line 2996

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

Instance Attribute Details

#files_countFixnum

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

Returns:

  • (Fixnum)


2988
2989
2990
# File 'generated/google/apis/appengine_v1/classes.rb', line 2988

def files_count
  @files_count
end

#source_urlString

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

Returns:

  • (String)


2994
2995
2996
# File 'generated/google/apis/appengine_v1/classes.rb', line 2994

def source_url
  @source_url
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3001
3002
3003
3004
# File 'generated/google/apis/appengine_v1/classes.rb', line 3001

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