Skip to main content

security_profiles_revisions

Creates, updates, deletes, gets or lists a security_profiles_revisions resource.

Overview

Namesecurity_profiles_revisions
TypeResource
Idgoogle.apigee.security_profiles_revisions

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
namestringImmutable. Name of the security profile resource. Format: organizations/{org}/securityProfiles/{profile}
descriptionstringDescription of the security profile.
displayNamestringDEPRECATED: DO NOT USE Display name of the security profile.
environmentsarrayList of environments attached to security profile.
maxScoreinteger (int32)Output only. Maximum security score that can be generated by this profile.
minScoreinteger (int32)Output only. Minimum security score that can be generated by this profile.
profileConfigobjectRequired. Customized profile configuration that computes the security score. (id: GoogleCloudApigeeV1ProfileConfig)
revisionCreateTimestring (google-datetime)Output only. The time when revision was created.
revisionIdstring (int64)Output only. Revision ID of the security profile.
revisionPublishTimestring (google-datetime)Output only. DEPRECATED: DO NOT USE The time when revision was published. Once published, the security profile revision cannot be updated further and can be attached to environments.
revisionUpdateTimestring (google-datetime)Output only. The time when revision was updated.
scoringConfigsarrayList of profile scoring configs in this revision.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
organizations_security_profiles_list_revisionsselectorganizationsId, securityProfilesIdpageSize, pageTokenListSecurityProfileRevisions lists all the revisions of the security profile.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
organizationsIdstring
securityProfilesIdstring
pageSizeinteger (int32)
pageTokenstring

SELECT examples

ListSecurityProfileRevisions lists all the revisions of the security profile.

SELECT
name,
description,
displayName,
environments,
maxScore,
minScore,
profileConfig,
revisionCreateTime,
revisionId,
revisionPublishTime,
revisionUpdateTime,
scoringConfigs
FROM google.apigee.security_profiles_revisions
WHERE organizationsId = '{{ organizationsId }}' -- required
AND securityProfilesId = '{{ securityProfilesId }}' -- required
AND pageSize = '{{ pageSize }}'
AND pageToken = '{{ pageToken }}';