C# Class Google.PowerShell.CloudStorage.GcsCmdlet

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

Méthodes publiques

Méthode 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.

Méthodes protégées

Méthode 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

Méthode Description
StorageService ( GetBaseClientServiceInitializer ( ) : System

Method Details

ConvertToDictionary() protected méthode

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

ConvertToDictionary() protected méthode

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
Résultat string>.Dictionary

GetBaseUri() protected méthode

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
Résultat string

GetContentType() public méthode

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
Résultat string

InferContentType() public static méthode

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
Résultat string