Google Cloud Network Security V1 Client - Class OrganizationSecurityProfileGroupServiceClient (1.3.0)

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

Service Description: Organization SecurityProfileGroup is created under organization.

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 FetchAuthTokenInterface|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\OrganizationSecurityProfileGroupServiceClient; $creds = new ServiceAccountCredentials($scopes, $json); $options = new OrganizationSecurityProfileGroupServiceClient(['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|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|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'.

createSecurityProfile

Creates a new SecurityProfile in a given organization and location.

The async variant is OrganizationSecurityProfileGroupServiceClient::createSecurityProfileAsync() .

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

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings 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\SecurityProfile>
Example
use Google\ApiCore\ApiException;
use Google\ApiCore\OperationResponse;
use Google\Cloud\NetworkSecurity\V1\Client\OrganizationSecurityProfileGroupServiceClient;
use Google\Cloud\NetworkSecurity\V1\CreateSecurityProfileRequest;
use Google\Cloud\NetworkSecurity\V1\SecurityProfile;
use Google\Rpc\Status;

/**
 * @param string $formattedParent   The parent resource of the SecurityProfile. Must be in the format
 *                                  `projects|organizations/&#42;/locations/{location}`. Please see
 *                                  {@see OrganizationSecurityProfileGroupServiceClient::organizationLocationName()} for help formatting this field.
 * @param string $securityProfileId Short name of the SecurityProfile resource to be created. This
 *                                  value should be 1-63 characters long, containing only letters, numbers,
 *                                  hyphens, and underscores, and should not start with a number. E.g.
 *                                  "security_profile1".
 */
function create_security_profile_sample(string $formattedParent, string $securityProfileId): void
{
    // Create a client.
    $organizationSecurityProfileGroupServiceClient = new OrganizationSecurityProfileGroupServiceClient();

    // Prepare the request message.
    $securityProfile = new SecurityProfile();
    $request = (new CreateSecurityProfileRequest())
        ->setParent($formattedParent)
        ->setSecurityProfileId($securityProfileId)
        ->setSecurityProfile($securityProfile);

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

        if ($response->operationSucceeded()) {
            /** @var SecurityProfile $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 = OrganizationSecurityProfileGroupServiceClient::organizationLocationName(
        '[ORGANIZATION]',
        '[LOCATION]'
    );
    $securityProfileId = '[SECURITY_PROFILE_ID]';

    create_security_profile_sample($formattedParent, $securityProfileId);
}

createSecurityProfileGroup

Creates a new SecurityProfileGroup in a given organization and location.

The async variant is OrganizationSecurityProfileGroupServiceClient::createSecurityProfileGroupAsync() .

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

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings 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\SecurityProfileGroup>
Example
use Google\ApiCore\ApiException;
use Google\ApiCore\OperationResponse;
use Google\Cloud\NetworkSecurity\V1\Client\OrganizationSecurityProfileGroupServiceClient;
use Google\Cloud\NetworkSecurity\V1\CreateSecurityProfileGroupRequest;
use Google\Cloud\NetworkSecurity\V1\SecurityProfileGroup;
use Google\Rpc\Status;

/**
 * @param string $formattedParent        The parent resource of the SecurityProfileGroup. Must be in the
 *                                       format `projects|organizations/&#42;/locations/{location}`. Please see
 *                                       {@see OrganizationSecurityProfileGroupServiceClient::organizationLocationName()} for help formatting this field.
 * @param string $securityProfileGroupId Short name of the SecurityProfileGroup resource to be created.
 *                                       This value should be 1-63 characters long, containing only
 *                                       letters, numbers, hyphens, and underscores, and should not start
 *                                       with a number. E.g. "security_profile_group1".
 */
function create_security_profile_group_sample(
    string $formattedParent,
    string $securityProfileGroupId
): void {
    // Create a client.
    $organizationSecurityProfileGroupServiceClient = new OrganizationSecurityProfileGroupServiceClient();

    // Prepare the request message.
    $securityProfileGroup = new SecurityProfileGroup();
    $request = (new CreateSecurityProfileGroupRequest())
        ->setParent($formattedParent)
        ->setSecurityProfileGroupId($securityProfileGroupId)
        ->setSecurityProfileGroup($securityProfileGroup);

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

        if ($response->operationSucceeded()) {
            /** @var SecurityProfileGroup $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 = OrganizationSecurityProfileGroupServiceClient::organizationLocationName(
        '[ORGANIZATION]',
        '[LOCATION]'
    );
    $securityProfileGroupId = '[SECURITY_PROFILE_GROUP_ID]';

    create_security_profile_group_sample($formattedParent, $securityProfileGroupId);
}

deleteSecurityProfile

Deletes a single SecurityProfile.

The async variant is OrganizationSecurityProfileGroupServiceClient::deleteSecurityProfileAsync() .

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

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings 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\OrganizationSecurityProfileGroupServiceClient;
use Google\Cloud\NetworkSecurity\V1\DeleteSecurityProfileRequest;
use Google\Rpc\Status;

/**
 * @param string $formattedName A name of the SecurityProfile to delete. Must be in the format
 *                              `projects|organizations/&#42;/locations/{location}/securityProfiles/{security_profile_id}`. Please see
 *                              {@see OrganizationSecurityProfileGroupServiceClient::securityProfileName()} for help formatting this field.
 */
function delete_security_profile_sample(string $formattedName): void
{
    // Create a client.
    $organizationSecurityProfileGroupServiceClient = new OrganizationSecurityProfileGroupServiceClient();

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

    // Call the API and handle any network failures.
    try {
        /** @var OperationResponse $response */
        $response = $organizationSecurityProfileGroupServiceClient->deleteSecurityProfile($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 = OrganizationSecurityProfileGroupServiceClient::securityProfileName(
        '[ORGANIZATION]',
        '[LOCATION]',
        '[SECURITY_PROFILE]'
    );

    delete_security_profile_sample($formattedName);
}

deleteSecurityProfileGroup

Deletes a single SecurityProfileGroup.

The async variant is OrganizationSecurityProfileGroupServiceClient::deleteSecurityProfileGroupAsync() .

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

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings 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\OrganizationSecurityProfileGroupServiceClient;
use Google\Cloud\NetworkSecurity\V1\DeleteSecurityProfileGroupRequest;
use Google\Rpc\Status;

/**
 * @param string $formattedName A name of the SecurityProfileGroup to delete. Must be in the
 *                              format
 *                              `projects|organizations/&#42;/locations/{location}/securityProfileGroups/{security_profile_group}`. Please see
 *                              {@see OrganizationSecurityProfileGroupServiceClient::securityProfileGroupName()} for help formatting this field.
 */
function delete_security_profile_group_sample(string $formattedName): void
{
    // Create a client.
    $organizationSecurityProfileGroupServiceClient = new OrganizationSecurityProfileGroupServiceClient();

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

    // Call the API and handle any network failures.
    try {
        /** @var OperationResponse $response */
        $response = $organizationSecurityProfileGroupServiceClient->deleteSecurityProfileGroup($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 = OrganizationSecurityProfileGroupServiceClient::securityProfileGroupName(
        '[ORGANIZATION]',
        '[LOCATION]',
        '[SECURITY_PROFILE_GROUP]'
    );

    delete_security_profile_group_sample($formattedName);
}

getSecurityProfile

Gets details of a single SecurityProfile.

The async variant is OrganizationSecurityProfileGroupServiceClient::getSecurityProfileAsync() .

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

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings 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\SecurityProfile
Example
use Google\ApiCore\ApiException;
use Google\Cloud\NetworkSecurity\V1\Client\OrganizationSecurityProfileGroupServiceClient;
use Google\Cloud\NetworkSecurity\V1\GetSecurityProfileRequest;
use Google\Cloud\NetworkSecurity\V1\SecurityProfile;

/**
 * @param string $formattedName A name of the SecurityProfile to get. Must be in the format
 *                              `projects|organizations/&#42;/locations/{location}/securityProfiles/{security_profile_id}`. Please see
 *                              {@see OrganizationSecurityProfileGroupServiceClient::securityProfileName()} for help formatting this field.
 */
function get_security_profile_sample(string $formattedName): void
{
    // Create a client.
    $organizationSecurityProfileGroupServiceClient = new OrganizationSecurityProfileGroupServiceClient();

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

    // Call the API and handle any network failures.
    try {
        /** @var SecurityProfile $response */
        $response = $organizationSecurityProfileGroupServiceClient->getSecurityProfile($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 = OrganizationSecurityProfileGroupServiceClient::securityProfileName(
        '[ORGANIZATION]',
        '[LOCATION]',
        '[SECURITY_PROFILE]'
    );

    get_security_profile_sample($formattedName);
}

getSecurityProfileGroup

Gets details of a single SecurityProfileGroup.

The async variant is OrganizationSecurityProfileGroupServiceClient::getSecurityProfileGroupAsync() .

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

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings 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\SecurityProfileGroup
Example
use Google\ApiCore\ApiException;
use Google\Cloud\NetworkSecurity\V1\Client\OrganizationSecurityProfileGroupServiceClient;
use Google\Cloud\NetworkSecurity\V1\GetSecurityProfileGroupRequest;
use Google\Cloud\NetworkSecurity\V1\SecurityProfileGroup;

/**
 * @param string $formattedName A name of the SecurityProfileGroup to get. Must be in the format
 *                              `projects|organizations/&#42;/locations/{location}/securityProfileGroups/{security_profile_group}`. Please see
 *                              {@see OrganizationSecurityProfileGroupServiceClient::securityProfileGroupName()} for help formatting this field.
 */
function get_security_profile_group_sample(string $formattedName): void
{
    // Create a client.
    $organizationSecurityProfileGroupServiceClient = new OrganizationSecurityProfileGroupServiceClient();

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

    // Call the API and handle any network failures.
    try {
        /** @var SecurityProfileGroup $response */
        $response = $organizationSecurityProfileGroupServiceClient->getSecurityProfileGroup($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 = OrganizationSecurityProfileGroupServiceClient::securityProfileGroupName(
        '[ORGANIZATION]',
        '[LOCATION]',
        '[SECURITY_PROFILE_GROUP]'
    );

    get_security_profile_group_sample($formattedName);
}

listSecurityProfileGroups

Lists SecurityProfileGroups in a given organization and location.

The async variant is OrganizationSecurityProfileGroupServiceClient::listSecurityProfileGroupsAsync() .

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

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings 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\OrganizationSecurityProfileGroupServiceClient;
use Google\Cloud\NetworkSecurity\V1\ListSecurityProfileGroupsRequest;
use Google\Cloud\NetworkSecurity\V1\SecurityProfileGroup;

/**
 * @param string $formattedParent The project or organization and location from which the
 *                                SecurityProfileGroups should be listed, specified in the format
 *                                `projects|organizations/&#42;/locations/{location}`. Please see
 *                                {@see OrganizationSecurityProfileGroupServiceClient::organizationLocationName()} for help formatting this field.
 */
function list_security_profile_groups_sample(string $formattedParent): void
{
    // Create a client.
    $organizationSecurityProfileGroupServiceClient = new OrganizationSecurityProfileGroupServiceClient();

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

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

        /** @var SecurityProfileGroup $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 = OrganizationSecurityProfileGroupServiceClient::organizationLocationName(
        '[ORGANIZATION]',
        '[LOCATION]'
    );

    list_security_profile_groups_sample($formattedParent);
}

listSecurityProfiles

Lists SecurityProfiles in a given organization and location.

The async variant is OrganizationSecurityProfileGroupServiceClient::listSecurityProfilesAsync() .

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

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings 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\OrganizationSecurityProfileGroupServiceClient;
use Google\Cloud\NetworkSecurity\V1\ListSecurityProfilesRequest;
use Google\Cloud\NetworkSecurity\V1\SecurityProfile;

/**
 * @param string $formattedParent The project or organization and location from which the
 *                                SecurityProfiles should be listed, specified in the format
 *                                `projects|organizations/&#42;/locations/{location}`. Please see
 *                                {@see OrganizationSecurityProfileGroupServiceClient::organizationLocationName()} for help formatting this field.
 */
function list_security_profiles_sample(string $formattedParent): void
{
    // Create a client.
    $organizationSecurityProfileGroupServiceClient = new OrganizationSecurityProfileGroupServiceClient();

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

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

        /** @var SecurityProfile $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 = OrganizationSecurityProfileGroupServiceClient::organizationLocationName(
        '[ORGANIZATION]',
        '[LOCATION]'
    );

    list_security_profiles_sample($formattedParent);
}

updateSecurityProfile

Updates the parameters of a single SecurityProfile.

The async variant is OrganizationSecurityProfileGroupServiceClient::updateSecurityProfileAsync() .

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

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings 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\SecurityProfile>
Example
use Google\ApiCore\ApiException;
use Google\ApiCore\OperationResponse;
use Google\Cloud\NetworkSecurity\V1\Client\OrganizationSecurityProfileGroupServiceClient;
use Google\Cloud\NetworkSecurity\V1\SecurityProfile;
use Google\Cloud\NetworkSecurity\V1\UpdateSecurityProfileRequest;
use Google\Protobuf\FieldMask;
use Google\Rpc\Status;

/**
 * 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 update_security_profile_sample(): void
{
    // Create a client.
    $organizationSecurityProfileGroupServiceClient = new OrganizationSecurityProfileGroupServiceClient();

    // Prepare the request message.
    $updateMask = new FieldMask();
    $securityProfile = new SecurityProfile();
    $request = (new UpdateSecurityProfileRequest())
        ->setUpdateMask($updateMask)
        ->setSecurityProfile($securityProfile);

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

        if ($response->operationSucceeded()) {
            /** @var SecurityProfile $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());
    }
}

updateSecurityProfileGroup

Updates the parameters of a single SecurityProfileGroup.

The async variant is OrganizationSecurityProfileGroupServiceClient::updateSecurityProfileGroupAsync() .

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

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings 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\SecurityProfileGroup>
Example
use Google\ApiCore\ApiException;
use Google\ApiCore\OperationResponse;
use Google\Cloud\NetworkSecurity\V1\Client\OrganizationSecurityProfileGroupServiceClient;
use Google\Cloud\NetworkSecurity\V1\SecurityProfileGroup;
use Google\Cloud\NetworkSecurity\V1\UpdateSecurityProfileGroupRequest;
use Google\Protobuf\FieldMask;
use Google\Rpc\Status;

/**
 * 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 update_security_profile_group_sample(): void
{
    // Create a client.
    $organizationSecurityProfileGroupServiceClient = new OrganizationSecurityProfileGroupServiceClient();

    // Prepare the request message.
    $updateMask = new FieldMask();
    $securityProfileGroup = new SecurityProfileGroup();
    $request = (new UpdateSecurityProfileGroupRequest())
        ->setUpdateMask($updateMask)
        ->setSecurityProfileGroup($securityProfileGroup);

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

        if ($response->operationSucceeded()) {
            /** @var SecurityProfileGroup $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());
    }
}

getLocation

Gets information about a location.

The async variant is OrganizationSecurityProfileGroupServiceClient::getLocationAsync() .

Parameters
Name Description
request Google\Cloud\Location\GetLocationRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings 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\OrganizationSecurityProfileGroupServiceClient;

/**
 * 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.
    $organizationSecurityProfileGroupServiceClient = new OrganizationSecurityProfileGroupServiceClient();

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

    // Call the API and handle any network failures.
    try {
        /** @var Location $response */
        $response = $organizationSecurityProfileGroupServiceClient->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 OrganizationSecurityProfileGroupServiceClient::listLocationsAsync() .

Parameters
Name Description
request Google\Cloud\Location\ListLocationsRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings 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\OrganizationSecurityProfileGroupServiceClient;

/**
 * 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.
    $organizationSecurityProfileGroupServiceClient = new OrganizationSecurityProfileGroupServiceClient();

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

    // Call the API and handle any network failures.
    try {
        /** @var PagedListResponse $response */
        $response = $organizationSecurityProfileGroupServiceClient->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 OrganizationSecurityProfileGroupServiceClient::getIamPolicyAsync() .

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

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings 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\OrganizationSecurityProfileGroupServiceClient;

/**
 * @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.
    $organizationSecurityProfileGroupServiceClient = new OrganizationSecurityProfileGroupServiceClient();

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

    // Call the API and handle any network failures.
    try {
        /** @var Policy $response */
        $response = $organizationSecurityProfileGroupServiceClient->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 OrganizationSecurityProfileGroupServiceClient::setIamPolicyAsync() .

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

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings 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\OrganizationSecurityProfileGroupServiceClient;

/**
 * @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.
    $organizationSecurityProfileGroupServiceClient = new OrganizationSecurityProfileGroupServiceClient();

    // 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 = $organizationSecurityProfileGroupServiceClient->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 OrganizationSecurityProfileGroupServiceClient::testIamPermissionsAsync() .

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

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings 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\OrganizationSecurityProfileGroupServiceClient;

/**
 * @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.
    $organizationSecurityProfileGroupServiceClient = new OrganizationSecurityProfileGroupServiceClient();

    // 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 = $organizationSecurityProfileGroupServiceClient->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);
}

createSecurityProfileAsync

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

createSecurityProfileGroupAsync

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

deleteSecurityProfileAsync

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

deleteSecurityProfileGroupAsync

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

getSecurityProfileAsync

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

getSecurityProfileGroupAsync

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

listSecurityProfileGroupsAsync

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

listSecurityProfilesAsync

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

updateSecurityProfileAsync

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

updateSecurityProfileGroupAsync

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

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::interceptEndpointGroupName

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

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

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::mirroringEndpointGroupName

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

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

static::organizationLocationName

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

Parameters
Name Description
organization string
location string
Returns
Type Description
string The formatted organization_location resource.

static::organizationLocationSecurityProfileName

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

Parameters
Name Description
organization string
location string
securityProfile string
Returns
Type Description
string The formatted organization_location_security_profile resource.

static::organizationLocationSecurityProfileGroupName

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

Parameters
Name Description
organization string
location string
securityProfileGroup string
Returns
Type Description
string The formatted organization_location_security_profile_group resource.

static::projectLocationSecurityProfileName

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

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

static::projectLocationSecurityProfileGroupName

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

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

static::securityProfileName

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

Parameters
Name Description
organization string
location string
securityProfile string
Returns
Type Description
string The formatted security_profile resource.

static::securityProfileGroupName

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

Parameters
Name Description
organization string
location string
securityProfileGroup string
Returns
Type Description
string The formatted security_profile_group 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

  • interceptEndpointGroup: projects/{project}/locations/{location}/interceptEndpointGroups/{intercept_endpoint_group}
  • location: projects/{project}/locations/{location}
  • mirroringEndpointGroup: projects/{project}/locations/{location}/mirroringEndpointGroups/{mirroring_endpoint_group}
  • organizationLocation: organizations/{organization}/locations/{location}
  • organizationLocationSecurityProfile: organizations/{organization}/locations/{location}/securityProfiles/{security_profile}
  • organizationLocationSecurityProfileGroup: organizations/{organization}/locations/{location}/securityProfileGroups/{security_profile_group}
  • projectLocationSecurityProfile: projects/{project}/locations/{location}/securityProfiles/{security_profile}
  • projectLocationSecurityProfileGroup: projects/{project}/locations/{location}/securityProfileGroups/{security_profile_group}
  • securityProfile: organizations/{organization}/locations/{location}/securityProfiles/{security_profile}
  • securityProfileGroup: organizations/{organization}/locations/{location}/securityProfileGroups/{security_profile_group}

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.