Cloud Storage Client - Class CreatedHmacKey (1.48.3)

Reference documentation and code samples for the Cloud Storage Client class CreatedHmacKey.

Represents a newly created HMAC key. Provides access to the key metadata and secret.

Example:

 use Google\Cloud\Storage\StorageClient;

$storage = new StorageClient();
$response = $storage->createHmacKey($serviceAccountEmail); 

Namespace

Google \ Cloud \ Storage

Methods

__construct

Parameters
Name
Description
hmacKey
HmacKey

The HMAC Key object.

secret
string

The HMAC key secret.

hmacKey

Get the HMAC key object.

Example:

 $key = $response->hmacKey(); 
Returns
Type
Description

secret

Get the HMAC key secret.

This value will never be returned from the API after first creation. Make sure to record it for later use immediately upon key creation.

Example:

 $secret = $response->secret(); 
Returns
Type
Description
string
Design a Mobile Site
View Site in Mobile | Classic
Share by: