Google Cloud Network Security V1 Client - Class SSERealmServiceClient (1.4.0)

Reference documentation and code samples for the Google Cloud Network Security V1 Client class SSERealmServiceClient.

Service Description: Service describing handlers for resources

This class provides the ability to make remote calls to the backing service through method calls that map to API methods.

Many parameters require resource names to be formatted in a particular way. To assist with these names, this class includes a format method for each type of name, and additionally a parseName method to extract the individual identifiers contained within formatted names that are returned by the API.

Namespace

Google \ Cloud \ NetworkSecurity \ V1 \ Client

Methods

__construct

Constructor.

Parameters
Name Description
options array|Google\ApiCore\Options\ClientOptions

Optional. Options for configuring the service API wrapper.

↳ apiEndpoint string

The address of the API remote host. May optionally include the port, formatted as "

↳ credentials Google\Auth\FetchAuthTokenInterface|Google\ApiCore\CredentialsWrapper

This option should only be used with a pre-constructed Google\Auth\FetchAuthTokenInterface or Google\ApiCore\CredentialsWrapper object. Note that when one of these objects are provided, any settings in $credentialsConfig will be ignored. Important: If you are providing a path to a credentials file, or a decoded credentials file as a PHP array, this usage is now DEPRECATED. Providing an unvalidated credential configuration to Google APIs can compromise the security of your systems and data. It is recommended to create the credentials explicitly use Google\Auth\Credentials\ServiceAccountCredentials; use Google\Cloud\NetworkSecurity\V1\SSERealmServiceClient; $creds = new ServiceAccountCredentials($scopes, $json); $options = new SSERealmServiceClient(['credentials' => $creds]); https://cloud.google.com/docs/authentication/external/externally-sourced-credentials

↳ credentialsConfig array

Options used to configure credentials, including auth token caching, for the client. For a full list of supporting configuration options, see Google\ApiCore\CredentialsWrapper::build() .

↳ disableRetries bool

Determines whether or not retries defined by the client configuration should be disabled. Defaults to false.

↳ clientConfig string|array

Client method configuration, including retry settings. This option can be either a path to a JSON file, or a PHP array containing the decoded JSON data. By default this settings points to the default client config file, which is provided in the resources folder.

↳ transport string|Google\ApiCore\Transport\TransportInterface

The transport used for executing network requests. May be either the string rest or grpc. Defaults to grpc if gRPC support is detected on the system. Advanced usage: Additionally, it is possible to pass in an already instantiated Google\ApiCore\Transport\TransportInterface object. Note that when this object is provided, any settings in $transportConfig, and any $apiEndpoint setting, will be ignored.

↳ transportConfig array

Configuration options that will be used to construct the transport. Options for each supported transport type should be passed in a key for that transport. For example: $transportConfig = [ 'grpc' => [...], 'rest' => [...], ]; See the Google\ApiCore\Transport\GrpcTransport::build() and Google\ApiCore\Transport\RestTransport::build() methods for the supported options.

↳ clientCertSource callable

A callable which returns the client cert as a string. This can be used to provide a certificate and private key to the transport layer for mTLS.

↳ logger false|Psr\Log\LoggerInterface

A PSR-3 compliant logger. If set to false, logging is disabled, ignoring the 'GOOGLE_SDK_PHP_LOGGING' environment flag

↳ universeDomain string

The service domain for the client. Defaults to 'googleapis.com'.

createSACAttachment

Creates a new SACAttachment in a given project and location.

The async variant is SSERealmServiceClient::createSACAttachmentAsync() .

Parameters
Name Description
request Google\Cloud\NetworkSecurity\V1\CreateSACAttachmentRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings Google\ApiCore\RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
Type Description
Google\ApiCore\OperationResponse<Google\Cloud\NetworkSecurity\V1\SACAttachment>
Example
use Google\ApiCore\ApiException;
use Google\ApiCore\OperationResponse;
use Google\Cloud\NetworkSecurity\V1\Client\SSERealmServiceClient;
use Google\Cloud\NetworkSecurity\V1\CreateSACAttachmentRequest;
use Google\Cloud\NetworkSecurity\V1\SACAttachment;
use Google\Rpc\Status;

/**
 * @param string $formattedParent         The parent, in the form
 *                                        `projects/{project}/locations/{location}`. Please see
 *                                        {@see SSERealmServiceClient::locationName()} for help formatting this field.
 * @param string $sacAttachmentId         ID of the created attachment.
 *                                        The ID must be 1-63 characters long, and comply with
 *                                        <a href="https://www.ietf.org/rfc/rfc1035.txt" target="_blank">RFC1035</a>.
 *                                        Specifically, it must be 1-63 characters long and match the regular
 *                                        expression `[a-z]([-a-z0-9]*[a-z0-9])?`
 *                                        which means the first character must be a lowercase letter, and all
 *                                        following characters must be a dash, lowercase letter, or digit, except
 *                                        the last character, which cannot be a dash.
 * @param string $sacAttachmentSacRealm   SAC Realm which owns the attachment. This can be input as an ID
 *                                        or a full resource name. The output always has the form
 *                                        `projects/{project_number}/locations/{location}/sacRealms/{sac_realm}`.
 * @param string $sacAttachmentNccGateway NCC Gateway associated with the attachment. This can be input as
 *                                        an ID or a full resource name. The output always has the form
 *                                        `projects/{project_number}/locations/{location}/spokes/{ncc_gateway}`.
 */
function create_sac_attachment_sample(
    string $formattedParent,
    string $sacAttachmentId,
    string $sacAttachmentSacRealm,
    string $sacAttachmentNccGateway
): void {
    // Create a client.
    $sSERealmServiceClient = new SSERealmServiceClient();

    // Prepare the request message.
    $sacAttachment = (new SACAttachment())
        ->setSacRealm($sacAttachmentSacRealm)
        ->setNccGateway($sacAttachmentNccGateway);
    $request = (new CreateSACAttachmentRequest())
        ->setParent($formattedParent)
        ->setSacAttachmentId($sacAttachmentId)
        ->setSacAttachment($sacAttachment);

    // Call the API and handle any network failures.
    try {
        /** @var OperationResponse $response */
        $response = $sSERealmServiceClient->createSACAttachment($request);
        $response->pollUntilComplete();

        if ($response->operationSucceeded()) {
            /** @var SACAttachment $result */
            $result = $response->getResult();
            printf('Operation successful with response data: %s' . PHP_EOL, $result->serializeToJsonString());
        } else {
            /** @var Status $error */
            $error = $response->getError();
            printf('Operation failed with error data: %s' . PHP_EOL, $error->serializeToJsonString());
        }
    } catch (ApiException $ex) {
        printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
    }
}

/**
 * Helper to execute the sample.
 *
 * This sample has been automatically generated and should be regarded as a code
 * template only. It will require modifications to work:
 *  - It may require correct/in-range values for request initialization.
 *  - It may require specifying regional endpoints when creating the service client,
 *    please see the apiEndpoint client configuration option for more details.
 */
function callSample(): void
{
    $formattedParent = SSERealmServiceClient::locationName('[PROJECT]', '[LOCATION]');
    $sacAttachmentId = '[SAC_ATTACHMENT_ID]';
    $sacAttachmentSacRealm = '[SAC_REALM]';
    $sacAttachmentNccGateway = '[NCC_GATEWAY]';

    create_sac_attachment_sample(
        $formattedParent,
        $sacAttachmentId,
        $sacAttachmentSacRealm,
        $sacAttachmentNccGateway
    );
}

createSACRealm

Creates a new SACRealm in a given project.

The async variant is SSERealmServiceClient::createSACRealmAsync() .

Parameters
Name Description
request Google\Cloud\NetworkSecurity\V1\CreateSACRealmRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings Google\ApiCore\RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
Type Description
Google\ApiCore\OperationResponse<Google\Cloud\NetworkSecurity\V1\SACRealm>
Example
use Google\ApiCore\ApiException;
use Google\ApiCore\OperationResponse;
use Google\Cloud\NetworkSecurity\V1\Client\SSERealmServiceClient;
use Google\Cloud\NetworkSecurity\V1\CreateSACRealmRequest;
use Google\Cloud\NetworkSecurity\V1\SACRealm;
use Google\Rpc\Status;

/**
 * @param string $formattedParent The parent, in the form `projects/{project}/locations/global`. Please see
 *                                {@see SSERealmServiceClient::locationName()} for help formatting this field.
 * @param string $sacRealmId      ID of the created realm.
 *                                The ID must be 1-63 characters long, and comply with
 *                                <a href="https://www.ietf.org/rfc/rfc1035.txt" target="_blank">RFC1035</a>.
 *                                Specifically, it must be 1-63 characters long and match the regular
 *                                expression `[a-z]([-a-z0-9]*[a-z0-9])?`
 *                                which means the first character must be a lowercase letter, and all
 *                                following characters must be a dash, lowercase letter, or digit, except
 *                                the last character, which cannot be a dash.
 */
function create_sac_realm_sample(string $formattedParent, string $sacRealmId): void
{
    // Create a client.
    $sSERealmServiceClient = new SSERealmServiceClient();

    // Prepare the request message.
    $sacRealm = new SACRealm();
    $request = (new CreateSACRealmRequest())
        ->setParent($formattedParent)
        ->setSacRealmId($sacRealmId)
        ->setSacRealm($sacRealm);

    // Call the API and handle any network failures.
    try {
        /** @var OperationResponse $response */
        $response = $sSERealmServiceClient->createSACRealm($request);
        $response->pollUntilComplete();

        if ($response->operationSucceeded()) {
            /** @var SACRealm $result */
            $result = $response->getResult();
            printf('Operation successful with response data: %s' . PHP_EOL, $result->serializeToJsonString());
        } else {
            /** @var Status $error */
            $error = $response->getError();
            printf('Operation failed with error data: %s' . PHP_EOL, $error->serializeToJsonString());
        }
    } catch (ApiException $ex) {
        printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
    }
}

/**
 * Helper to execute the sample.
 *
 * This sample has been automatically generated and should be regarded as a code
 * template only. It will require modifications to work:
 *  - It may require correct/in-range values for request initialization.
 *  - It may require specifying regional endpoints when creating the service client,
 *    please see the apiEndpoint client configuration option for more details.
 */
function callSample(): void
{
    $formattedParent = SSERealmServiceClient::locationName('[PROJECT]', '[LOCATION]');
    $sacRealmId = '[SAC_REALM_ID]';

    create_sac_realm_sample($formattedParent, $sacRealmId);
}

deleteSACAttachment

Deletes the specified attachment.

The async variant is SSERealmServiceClient::deleteSACAttachmentAsync() .

Parameters
Name Description
request Google\Cloud\NetworkSecurity\V1\DeleteSACAttachmentRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings Google\ApiCore\RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
Type Description
Google\ApiCore\OperationResponse<null>
Example
use Google\ApiCore\ApiException;
use Google\ApiCore\OperationResponse;
use Google\Cloud\NetworkSecurity\V1\Client\SSERealmServiceClient;
use Google\Cloud\NetworkSecurity\V1\DeleteSACAttachmentRequest;
use Google\Rpc\Status;

/**
 * @param string $formattedName Name of the resource, in the form
 *                              `projects/{project}/locations/{location}/sacAttachments/{sac_attachment}`. Please see
 *                              {@see SSERealmServiceClient::sACAttachmentName()} for help formatting this field.
 */
function delete_sac_attachment_sample(string $formattedName): void
{
    // Create a client.
    $sSERealmServiceClient = new SSERealmServiceClient();

    // Prepare the request message.
    $request = (new DeleteSACAttachmentRequest())
        ->setName($formattedName);

    // Call the API and handle any network failures.
    try {
        /** @var OperationResponse $response */
        $response = $sSERealmServiceClient->deleteSACAttachment($request);
        $response->pollUntilComplete();

        if ($response->operationSucceeded()) {
            printf('Operation completed successfully.' . PHP_EOL);
        } else {
            /** @var Status $error */
            $error = $response->getError();
            printf('Operation failed with error data: %s' . PHP_EOL, $error->serializeToJsonString());
        }
    } catch (ApiException $ex) {
        printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
    }
}

/**
 * Helper to execute the sample.
 *
 * This sample has been automatically generated and should be regarded as a code
 * template only. It will require modifications to work:
 *  - It may require correct/in-range values for request initialization.
 *  - It may require specifying regional endpoints when creating the service client,
 *    please see the apiEndpoint client configuration option for more details.
 */
function callSample(): void
{
    $formattedName = SSERealmServiceClient::sACAttachmentName(
        '[PROJECT]',
        '[LOCATION]',
        '[SAC_ATTACHMENT]'
    );

    delete_sac_attachment_sample($formattedName);
}

deleteSACRealm

Deletes the specified realm.

The async variant is SSERealmServiceClient::deleteSACRealmAsync() .

Parameters
Name Description
request Google\Cloud\NetworkSecurity\V1\DeleteSACRealmRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings Google\ApiCore\RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
Type Description
Google\ApiCore\OperationResponse<null>
Example
use Google\ApiCore\ApiException;
use Google\ApiCore\OperationResponse;
use Google\Cloud\NetworkSecurity\V1\Client\SSERealmServiceClient;
use Google\Cloud\NetworkSecurity\V1\DeleteSACRealmRequest;
use Google\Rpc\Status;

/**
 * @param string $formattedName Name of the resource, in the form
 *                              `projects/{project}/locations/global/sacRealms/{sacRealm}`. Please see
 *                              {@see SSERealmServiceClient::sACRealmName()} for help formatting this field.
 */
function delete_sac_realm_sample(string $formattedName): void
{
    // Create a client.
    $sSERealmServiceClient = new SSERealmServiceClient();

    // Prepare the request message.
    $request = (new DeleteSACRealmRequest())
        ->setName($formattedName);

    // Call the API and handle any network failures.
    try {
        /** @var OperationResponse $response */
        $response = $sSERealmServiceClient->deleteSACRealm($request);
        $response->pollUntilComplete();

        if ($response->operationSucceeded()) {
            printf('Operation completed successfully.' . PHP_EOL);
        } else {
            /** @var Status $error */
            $error = $response->getError();
            printf('Operation failed with error data: %s' . PHP_EOL, $error->serializeToJsonString());
        }
    } catch (ApiException $ex) {
        printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
    }
}

/**
 * Helper to execute the sample.
 *
 * This sample has been automatically generated and should be regarded as a code
 * template only. It will require modifications to work:
 *  - It may require correct/in-range values for request initialization.
 *  - It may require specifying regional endpoints when creating the service client,
 *    please see the apiEndpoint client configuration option for more details.
 */
function callSample(): void
{
    $formattedName = SSERealmServiceClient::sACRealmName('[PROJECT]', '[LOCATION]', '[SAC_REALM]');

    delete_sac_realm_sample($formattedName);
}

getSACAttachment

Returns the specified attachment.

The async variant is SSERealmServiceClient::getSACAttachmentAsync() .

Parameters
Name Description
request Google\Cloud\NetworkSecurity\V1\GetSACAttachmentRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings Google\ApiCore\RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
Type Description
Google\Cloud\NetworkSecurity\V1\SACAttachment
Example
use Google\ApiCore\ApiException;
use Google\Cloud\NetworkSecurity\V1\Client\SSERealmServiceClient;
use Google\Cloud\NetworkSecurity\V1\GetSACAttachmentRequest;
use Google\Cloud\NetworkSecurity\V1\SACAttachment;

/**
 * @param string $formattedName Name of the resource, in the form
 *                              `projects/{project}/locations/{location}/sacAttachments/{sac_attachment}`. Please see
 *                              {@see SSERealmServiceClient::sACAttachmentName()} for help formatting this field.
 */
function get_sac_attachment_sample(string $formattedName): void
{
    // Create a client.
    $sSERealmServiceClient = new SSERealmServiceClient();

    // Prepare the request message.
    $request = (new GetSACAttachmentRequest())
        ->setName($formattedName);

    // Call the API and handle any network failures.
    try {
        /** @var SACAttachment $response */
        $response = $sSERealmServiceClient->getSACAttachment($request);
        printf('Response data: %s' . PHP_EOL, $response->serializeToJsonString());
    } catch (ApiException $ex) {
        printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
    }
}

/**
 * Helper to execute the sample.
 *
 * This sample has been automatically generated and should be regarded as a code
 * template only. It will require modifications to work:
 *  - It may require correct/in-range values for request initialization.
 *  - It may require specifying regional endpoints when creating the service client,
 *    please see the apiEndpoint client configuration option for more details.
 */
function callSample(): void
{
    $formattedName = SSERealmServiceClient::sACAttachmentName(
        '[PROJECT]',
        '[LOCATION]',
        '[SAC_ATTACHMENT]'
    );

    get_sac_attachment_sample($formattedName);
}

getSACRealm

Returns the specified realm.

The async variant is SSERealmServiceClient::getSACRealmAsync() .

Parameters
Name Description
request Google\Cloud\NetworkSecurity\V1\GetSACRealmRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings Google\ApiCore\RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
Type Description
Google\Cloud\NetworkSecurity\V1\SACRealm
Example
use Google\ApiCore\ApiException;
use Google\Cloud\NetworkSecurity\V1\Client\SSERealmServiceClient;
use Google\Cloud\NetworkSecurity\V1\GetSACRealmRequest;
use Google\Cloud\NetworkSecurity\V1\SACRealm;

/**
 * @param string $formattedName Name of the resource, in the form
 *                              `projects/{project}/locations/global/sacRealms/{sacRealm}`. Please see
 *                              {@see SSERealmServiceClient::sACRealmName()} for help formatting this field.
 */
function get_sac_realm_sample(string $formattedName): void
{
    // Create a client.
    $sSERealmServiceClient = new SSERealmServiceClient();

    // Prepare the request message.
    $request = (new GetSACRealmRequest())
        ->setName($formattedName);

    // Call the API and handle any network failures.
    try {
        /** @var SACRealm $response */
        $response = $sSERealmServiceClient->getSACRealm($request);
        printf('Response data: %s' . PHP_EOL, $response->serializeToJsonString());
    } catch (ApiException $ex) {
        printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
    }
}

/**
 * Helper to execute the sample.
 *
 * This sample has been automatically generated and should be regarded as a code
 * template only. It will require modifications to work:
 *  - It may require correct/in-range values for request initialization.
 *  - It may require specifying regional endpoints when creating the service client,
 *    please see the apiEndpoint client configuration option for more details.
 */
function callSample(): void
{
    $formattedName = SSERealmServiceClient::sACRealmName('[PROJECT]', '[LOCATION]', '[SAC_REALM]');

    get_sac_realm_sample($formattedName);
}

listSACAttachments

Lists SACAttachments in a given project and location.

The async variant is SSERealmServiceClient::listSACAttachmentsAsync() .

Parameters
Name Description
request Google\Cloud\NetworkSecurity\V1\ListSACAttachmentsRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings Google\ApiCore\RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
Type Description
Google\ApiCore\PagedListResponse
Example
use Google\ApiCore\ApiException;
use Google\ApiCore\PagedListResponse;
use Google\Cloud\NetworkSecurity\V1\Client\SSERealmServiceClient;
use Google\Cloud\NetworkSecurity\V1\ListSACAttachmentsRequest;
use Google\Cloud\NetworkSecurity\V1\SACAttachment;

/**
 * @param string $formattedParent The parent, in the form
 *                                `projects/{project}/locations/{location}`. Please see
 *                                {@see SSERealmServiceClient::locationName()} for help formatting this field.
 */
function list_sac_attachments_sample(string $formattedParent): void
{
    // Create a client.
    $sSERealmServiceClient = new SSERealmServiceClient();

    // Prepare the request message.
    $request = (new ListSACAttachmentsRequest())
        ->setParent($formattedParent);

    // Call the API and handle any network failures.
    try {
        /** @var PagedListResponse $response */
        $response = $sSERealmServiceClient->listSACAttachments($request);

        /** @var SACAttachment $element */
        foreach ($response as $element) {
            printf('Element data: %s' . PHP_EOL, $element->serializeToJsonString());
        }
    } catch (ApiException $ex) {
        printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
    }
}

/**
 * Helper to execute the sample.
 *
 * This sample has been automatically generated and should be regarded as a code
 * template only. It will require modifications to work:
 *  - It may require correct/in-range values for request initialization.
 *  - It may require specifying regional endpoints when creating the service client,
 *    please see the apiEndpoint client configuration option for more details.
 */
function callSample(): void
{
    $formattedParent = SSERealmServiceClient::locationName('[PROJECT]', '[LOCATION]');

    list_sac_attachments_sample($formattedParent);
}

listSACRealms

Lists SACRealms in a given project.

The async variant is SSERealmServiceClient::listSACRealmsAsync() .

Parameters
Name Description
request Google\Cloud\NetworkSecurity\V1\ListSACRealmsRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings Google\ApiCore\RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
Type Description
Google\ApiCore\PagedListResponse
Example
use Google\ApiCore\ApiException;
use Google\ApiCore\PagedListResponse;
use Google\Cloud\NetworkSecurity\V1\Client\SSERealmServiceClient;
use Google\Cloud\NetworkSecurity\V1\ListSACRealmsRequest;
use Google\Cloud\NetworkSecurity\V1\SACRealm;

/**
 * @param string $formattedParent The parent, in the form `projects/{project}/locations/global`. Please see
 *                                {@see SSERealmServiceClient::locationName()} for help formatting this field.
 */
function list_sac_realms_sample(string $formattedParent): void
{
    // Create a client.
    $sSERealmServiceClient = new SSERealmServiceClient();

    // Prepare the request message.
    $request = (new ListSACRealmsRequest())
        ->setParent($formattedParent);

    // Call the API and handle any network failures.
    try {
        /** @var PagedListResponse $response */
        $response = $sSERealmServiceClient->listSACRealms($request);

        /** @var SACRealm $element */
        foreach ($response as $element) {
            printf('Element data: %s' . PHP_EOL, $element->serializeToJsonString());
        }
    } catch (ApiException $ex) {
        printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
    }
}

/**
 * Helper to execute the sample.
 *
 * This sample has been automatically generated and should be regarded as a code
 * template only. It will require modifications to work:
 *  - It may require correct/in-range values for request initialization.
 *  - It may require specifying regional endpoints when creating the service client,
 *    please see the apiEndpoint client configuration option for more details.
 */
function callSample(): void
{
    $formattedParent = SSERealmServiceClient::locationName('[PROJECT]', '[LOCATION]');

    list_sac_realms_sample($formattedParent);
}

getLocation

Gets information about a location.

The async variant is SSERealmServiceClient::getLocationAsync() .

Parameters
Name Description
request Google\Cloud\Location\GetLocationRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings Google\ApiCore\RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
Type Description
Google\Cloud\Location\Location
Example
use Google\ApiCore\ApiException;
use Google\Cloud\Location\GetLocationRequest;
use Google\Cloud\Location\Location;
use Google\Cloud\NetworkSecurity\V1\Client\SSERealmServiceClient;

/**
 * This sample has been automatically generated and should be regarded as a code
 * template only. It will require modifications to work:
 *  - It may require correct/in-range values for request initialization.
 *  - It may require specifying regional endpoints when creating the service client,
 *    please see the apiEndpoint client configuration option for more details.
 */
function get_location_sample(): void
{
    // Create a client.
    $sSERealmServiceClient = new SSERealmServiceClient();

    // Prepare the request message.
    $request = new GetLocationRequest();

    // Call the API and handle any network failures.
    try {
        /** @var Location $response */
        $response = $sSERealmServiceClient->getLocation($request);
        printf('Response data: %s' . PHP_EOL, $response->serializeToJsonString());
    } catch (ApiException $ex) {
        printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
    }
}

listLocations

Lists information about the supported locations for this service.

This method lists locations based on the resource scope provided in the ListLocationsRequest.name field: * Global locations: If name is empty, the method lists the public locations available to all projects. * **Project-specific locations*: If name follows the format projects/{project}, the method lists locations visible to that specific project. This includes public, private, or other project-specific locations enabled for the project.

For gRPC and client library implementations, the resource name is passed as the name field. For direct service calls, the resource name is incorporated into the request path based on the specific service implementation and version.

The async variant is SSERealmServiceClient::listLocationsAsync() .

Parameters
Name Description
request Google\Cloud\Location\ListLocationsRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings Google\ApiCore\RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
Type Description
Google\ApiCore\PagedListResponse
Example
use Google\ApiCore\ApiException;
use Google\ApiCore\PagedListResponse;
use Google\Cloud\Location\ListLocationsRequest;
use Google\Cloud\Location\Location;
use Google\Cloud\NetworkSecurity\V1\Client\SSERealmServiceClient;

/**
 * This sample has been automatically generated and should be regarded as a code
 * template only. It will require modifications to work:
 *  - It may require correct/in-range values for request initialization.
 *  - It may require specifying regional endpoints when creating the service client,
 *    please see the apiEndpoint client configuration option for more details.
 */
function list_locations_sample(): void
{
    // Create a client.
    $sSERealmServiceClient = new SSERealmServiceClient();

    // Prepare the request message.
    $request = new ListLocationsRequest();

    // Call the API and handle any network failures.
    try {
        /** @var PagedListResponse $response */
        $response = $sSERealmServiceClient->listLocations($request);

        /** @var Location $element */
        foreach ($response as $element) {
            printf('Element data: %s' . PHP_EOL, $element->serializeToJsonString());
        }
    } catch (ApiException $ex) {
        printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
    }
}

getIamPolicy

Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set.

The async variant is SSERealmServiceClient::getIamPolicyAsync() .

Parameters
Name Description
request Google\Cloud\Iam\V1\GetIamPolicyRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings Google\ApiCore\RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
Type Description
Google\Cloud\Iam\V1\Policy
Example
use Google\ApiCore\ApiException;
use Google\Cloud\Iam\V1\GetIamPolicyRequest;
use Google\Cloud\Iam\V1\Policy;
use Google\Cloud\NetworkSecurity\V1\Client\SSERealmServiceClient;

/**
 * @param string $resource REQUIRED: The resource for which the policy is being requested.
 *                         See the operation documentation for the appropriate value for this field.
 */
function get_iam_policy_sample(string $resource): void
{
    // Create a client.
    $sSERealmServiceClient = new SSERealmServiceClient();

    // Prepare the request message.
    $request = (new GetIamPolicyRequest())
        ->setResource($resource);

    // Call the API and handle any network failures.
    try {
        /** @var Policy $response */
        $response = $sSERealmServiceClient->getIamPolicy($request);
        printf('Response data: %s' . PHP_EOL, $response->serializeToJsonString());
    } catch (ApiException $ex) {
        printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
    }
}

/**
 * Helper to execute the sample.
 *
 * This sample has been automatically generated and should be regarded as a code
 * template only. It will require modifications to work:
 *  - It may require correct/in-range values for request initialization.
 *  - It may require specifying regional endpoints when creating the service client,
 *    please see the apiEndpoint client configuration option for more details.
 */
function callSample(): void
{
    $resource = '[RESOURCE]';

    get_iam_policy_sample($resource);
}

setIamPolicy

Sets the access control policy on the specified resource. Replaces any existing policy.

Can return NOT_FOUND, INVALID_ARGUMENT, and PERMISSION_DENIED errors.

The async variant is SSERealmServiceClient::setIamPolicyAsync() .

Parameters
Name Description
request Google\Cloud\Iam\V1\SetIamPolicyRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings Google\ApiCore\RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
Type Description
Google\Cloud\Iam\V1\Policy
Example
use Google\ApiCore\ApiException;
use Google\Cloud\Iam\V1\Policy;
use Google\Cloud\Iam\V1\SetIamPolicyRequest;
use Google\Cloud\NetworkSecurity\V1\Client\SSERealmServiceClient;

/**
 * @param string $resource REQUIRED: The resource for which the policy is being specified.
 *                         See the operation documentation for the appropriate value for this field.
 */
function set_iam_policy_sample(string $resource): void
{
    // Create a client.
    $sSERealmServiceClient = new SSERealmServiceClient();

    // Prepare the request message.
    $policy = new Policy();
    $request = (new SetIamPolicyRequest())
        ->setResource($resource)
        ->setPolicy($policy);

    // Call the API and handle any network failures.
    try {
        /** @var Policy $response */
        $response = $sSERealmServiceClient->setIamPolicy($request);
        printf('Response data: %s' . PHP_EOL, $response->serializeToJsonString());
    } catch (ApiException $ex) {
        printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
    }
}

/**
 * Helper to execute the sample.
 *
 * This sample has been automatically generated and should be regarded as a code
 * template only. It will require modifications to work:
 *  - It may require correct/in-range values for request initialization.
 *  - It may require specifying regional endpoints when creating the service client,
 *    please see the apiEndpoint client configuration option for more details.
 */
function callSample(): void
{
    $resource = '[RESOURCE]';

    set_iam_policy_sample($resource);
}

testIamPermissions

Returns permissions that a caller has on the specified resource. If the resource does not exist, this will return an empty set of permissions, not a NOT_FOUND error.

Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may "fail open" without warning.

The async variant is SSERealmServiceClient::testIamPermissionsAsync() .

Parameters
Name Description
request Google\Cloud\Iam\V1\TestIamPermissionsRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings Google\ApiCore\RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
Type Description
Google\Cloud\Iam\V1\TestIamPermissionsResponse
Example
use Google\ApiCore\ApiException;
use Google\Cloud\Iam\V1\TestIamPermissionsRequest;
use Google\Cloud\Iam\V1\TestIamPermissionsResponse;
use Google\Cloud\NetworkSecurity\V1\Client\SSERealmServiceClient;

/**
 * @param string $resource           REQUIRED: The resource for which the policy detail is being requested.
 *                                   See the operation documentation for the appropriate value for this field.
 * @param string $permissionsElement The set of permissions to check for the `resource`. Permissions with
 *                                   wildcards (such as '*' or 'storage.*') are not allowed. For more
 *                                   information see
 *                                   [IAM Overview](https://cloud.google.com/iam/docs/overview#permissions).
 */
function test_iam_permissions_sample(string $resource, string $permissionsElement): void
{
    // Create a client.
    $sSERealmServiceClient = new SSERealmServiceClient();

    // Prepare the request message.
    $permissions = [$permissionsElement,];
    $request = (new TestIamPermissionsRequest())
        ->setResource($resource)
        ->setPermissions($permissions);

    // Call the API and handle any network failures.
    try {
        /** @var TestIamPermissionsResponse $response */
        $response = $sSERealmServiceClient->testIamPermissions($request);
        printf('Response data: %s' . PHP_EOL, $response->serializeToJsonString());
    } catch (ApiException $ex) {
        printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
    }
}

/**
 * Helper to execute the sample.
 *
 * This sample has been automatically generated and should be regarded as a code
 * template only. It will require modifications to work:
 *  - It may require correct/in-range values for request initialization.
 *  - It may require specifying regional endpoints when creating the service client,
 *    please see the apiEndpoint client configuration option for more details.
 */
function callSample(): void
{
    $resource = '[RESOURCE]';
    $permissionsElement = '[PERMISSIONS]';

    test_iam_permissions_sample($resource, $permissionsElement);
}

createSACAttachmentAsync

Parameters
Name Description
request Google\Cloud\NetworkSecurity\V1\CreateSACAttachmentRequest
optionalArgs array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface<Google\ApiCore\OperationResponse>

createSACRealmAsync

Parameters
Name Description
request Google\Cloud\NetworkSecurity\V1\CreateSACRealmRequest
optionalArgs array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface<Google\ApiCore\OperationResponse>

deleteSACAttachmentAsync

Parameters
Name Description
request Google\Cloud\NetworkSecurity\V1\DeleteSACAttachmentRequest
optionalArgs array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface<Google\ApiCore\OperationResponse>

deleteSACRealmAsync

Parameters
Name Description
request Google\Cloud\NetworkSecurity\V1\DeleteSACRealmRequest
optionalArgs array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface<Google\ApiCore\OperationResponse>

getSACAttachmentAsync

Parameters
Name Description
request Google\Cloud\NetworkSecurity\V1\GetSACAttachmentRequest
optionalArgs array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface<Google\Cloud\NetworkSecurity\V1\SACAttachment>

getSACRealmAsync

Parameters
Name Description
request Google\Cloud\NetworkSecurity\V1\GetSACRealmRequest
optionalArgs array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface<Google\Cloud\NetworkSecurity\V1\SACRealm>

listSACAttachmentsAsync

Parameters
Name Description
request Google\Cloud\NetworkSecurity\V1\ListSACAttachmentsRequest
optionalArgs array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface<Google\ApiCore\PagedListResponse>

listSACRealmsAsync

Parameters
Name Description
request Google\Cloud\NetworkSecurity\V1\ListSACRealmsRequest
optionalArgs array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface<Google\ApiCore\PagedListResponse>

getLocationAsync

Parameters
Name Description
request Google\Cloud\Location\GetLocationRequest
optionalArgs array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface<Google\Cloud\Location\Location>

listLocationsAsync

Parameters
Name Description
request Google\Cloud\Location\ListLocationsRequest
optionalArgs array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface<Google\ApiCore\PagedListResponse>

getIamPolicyAsync

Parameters
Name Description
request Google\Cloud\Iam\V1\GetIamPolicyRequest
optionalArgs array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface<Google\Cloud\Iam\V1\Policy>

setIamPolicyAsync

Parameters
Name Description
request Google\Cloud\Iam\V1\SetIamPolicyRequest
optionalArgs array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface<Google\Cloud\Iam\V1\Policy>

testIamPermissionsAsync

Parameters
Name Description
request Google\Cloud\Iam\V1\TestIamPermissionsRequest
optionalArgs array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface<Google\Cloud\Iam\V1\TestIamPermissionsResponse>

getOperationsClient

Return an OperationsClient object with the same endpoint as $this.

Returns
Type Description
Google\LongRunning\Client\OperationsClient

resumeOperation

Resume an existing long running operation that was previously started by a long running API method. If $methodName is not provided, or does not match a long running API method, then the operation can still be resumed, but the OperationResponse object will not deserialize the final response.

Parameters
Name Description
operationName string

The name of the long running operation

methodName string

The name of the method used to start the operation

Returns
Type Description
Google\ApiCore\OperationResponse

static::locationName

Formats a string containing the fully-qualified path to represent a location resource.

Parameters
Name Description
project string
location string
Returns
Type Description
string The formatted location resource.

static::sACAttachmentName

Formats a string containing the fully-qualified path to represent a sac_attachment resource.

Parameters
Name Description
project string
location string
sacAttachment string
Returns
Type Description
string The formatted sac_attachment resource.

static::sACRealmName

Formats a string containing the fully-qualified path to represent a sac_realm resource.

Parameters
Name Description
project string
location string
sacRealm string
Returns
Type Description
string The formatted sac_realm resource.

static::parseName

Parses a formatted name string and returns an associative array of the components in the name.

The following name formats are supported: Template: Pattern

  • location: projects/{project}/locations/{location}
  • sACAttachment: projects/{project}/locations/{location}/sacAttachments/{sac_attachment}
  • sACRealm: projects/{project}/locations/{location}/sacRealms/{sac_realm}

The optional $template argument can be supplied to specify a particular pattern, and must match one of the templates listed above. If no $template argument is provided, or if the $template argument does not match one of the templates listed, then parseName will check each of the supported templates, and return the first match.

Parameters
Name Description
formattedName string

The formatted name string

template ?string

Optional name of template to match

Returns
Type Description
array An associative array from name component IDs to component values.