C# Class Google.PowerShell.CloudStorage.GcsCmdlet

Base class for Google Cloud Storage-based cmdlets.
Inheritance: GCloudCmdlet
Show file Open project: GoogleCloudPlatform/google-cloud-powershell Class Usage Examples

Public Methods

Method Description
GetContentType ( string newContentType, string>.Dictionary newMetadata, string defaultContentType = null ) : string

Return the content type to use for a Cloud Storage object given existing values, defauts, etc. The order of precidence is: 1. New content type, e.g. a ContentType parameter. 2. New metadata, e.g. Metadata value specified via parameter. 3. Default content type to apply (potentially null), e.g. sniffing file content. If no match is found, will return OctetStreamMimeType.

InferContentType ( string file ) : string

Infer the MIME type of a non-qualified file path. Returns null if no match is found.

Protected Methods

Method Description
ConvertToDictionary ( Hashtable hashtable ) : string>.Dictionary

Convert a PowerShell HashTable object into a string/string Dictionary.

ConvertToDictionary ( string>.IDictionary idict ) : string>.Dictionary

Converts an IDictionary into a Dictionary instance. (This method is preferred over passing it to the constructor for Dictionary since this will handle the null case.)

GetBaseUri ( string bucket, string objectName ) : string

Constructs the media URL of an object from its bucket and name. This does not include the generation or any preconditions. The returned string will always have a query parameter, so later query parameters can unconditionally be appended with an "&" prefix.

Private Methods

Method Description
StorageService ( GetBaseClientServiceInitializer ( ) : System

Method Details

ConvertToDictionary() protected method

Convert a PowerShell HashTable object into a string/string Dictionary.
protected ConvertToDictionary ( Hashtable hashtable ) : string>.Dictionary
hashtable System.Collections.Hashtable
return string>.Dictionary

ConvertToDictionary() protected method

Converts an IDictionary into a Dictionary instance. (This method is preferred over passing it to the constructor for Dictionary since this will handle the null case.)
protected ConvertToDictionary ( string>.IDictionary idict ) : string>.Dictionary
idict string>.IDictionary
return string>.Dictionary

GetBaseUri() protected method

Constructs the media URL of an object from its bucket and name. This does not include the generation or any preconditions. The returned string will always have a query parameter, so later query parameters can unconditionally be appended with an "&" prefix.
protected GetBaseUri ( string bucket, string objectName ) : string
bucket string
objectName string
return string

GetContentType() public method

Return the content type to use for a Cloud Storage object given existing values, defauts, etc. The order of precidence is: 1. New content type, e.g. a ContentType parameter. 2. New metadata, e.g. Metadata value specified via parameter. 3. Default content type to apply (potentially null), e.g. sniffing file content. If no match is found, will return OctetStreamMimeType.
public GetContentType ( string newContentType, string>.Dictionary newMetadata, string defaultContentType = null ) : string
newContentType string
newMetadata string>.Dictionary
defaultContentType string
return string

InferContentType() public static method

Infer the MIME type of a non-qualified file path. Returns null if no match is found.
public static InferContentType ( string file ) : string
file string
return string