Sha256: 2b283e15961eae1a5e823d09bf0f98da4cd1bca49673ab5b7ee81da34548626d
Contents?: true
Size: 950 Bytes
Versions: 16
Compression:
Stored size: 950 Bytes
Contents
module Vcloud module Core module Fog # Private helper constants for use with the vCloud API. # # @api private module ContentTypes ORG = 'application/vnd.vmware.vcloud.org+xml' VDC = 'application/vnd.vmware.vcloud.vdc+xml' VAPP = 'application/vnd.vmware.vcloud.vApp+xml' NETWORK = 'application/vnd.vmware.vcloud.network+xml' METADATA = 'application/vnd.vmware.vcloud.metadata.value+xml' end # Private helper constants for use with the vCloud API. # # @api private module MetadataValueType String = 'MetadataStringValue' Number = 'MetadataNumberValue' DateTime = 'MetadataDateTimeValue' Boolean = 'MetadataBooleanValue' end # Private helper constants for use with the vCloud API. # # @api private module RELATION PARENT = 'up' CHILD = 'down' end end end end
Version data entries
16 entries across 16 versions & 1 rubygems