security_profiles_revisions
Creates, updates, deletes, gets or lists a security_profiles_revisions
resource.
Overview
Name | security_profiles_revisions |
Type | Resource |
Id | google.apigee.security_profiles_revisions |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Immutable. Name of the security profile resource. Format: organizations/{org}/securityProfiles/{profile} |
description | string | Description of the security profile. |
displayName | string | DEPRECATED: DO NOT USE Display name of the security profile. |
environments | array | List of environments attached to security profile. |
maxScore | integer | Output only. Maximum security score that can be generated by this profile. |
minScore | integer | Output only. Minimum security score that can be generated by this profile. |
profileConfig | object | ProfileConfig defines a set of categories and policies which will be used to compute security score. |
revisionCreateTime | string | Output only. The time when revision was created. |
revisionId | string | Output only. Revision ID of the security profile. |
revisionPublishTime | string | 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. |
revisionUpdateTime | string | Output only. The time when revision was updated. |
scoringConfigs | array | List of profile scoring configs in this revision. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
organizations_security_profiles_list_revisions | SELECT | organizationsId, securityProfilesId | ListSecurityProfileRevisions lists all the revisions of the security profile. |
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 }}'
AND securityProfilesId = '{{ securityProfilesId }}';