Apigee API (apigee:v1)

2023-03-10

2 new methods

Additions

    Methods
  • apigee.organizations.environments.securityIncidents.list

      Scopes: https://www.googleapis.com/auth/cloud-platform

      Flat Path: v1/organizations/{organizationsId}/environments/{environmentsId}/securityIncidents

      Parameter Order: parent

      Path: v1/{+parent}/securityIncidents

      Description: ListSecurityIncidents lists all the security incident associated with the environment.

      Parameters:

        filter

          Description: The filter expression to be used to get the list of security incidents, where filtering can be done on API Proxies. Example: filter = "api_proxy = /", "first_detected_time >", "last_detected_time <"

          Type: string

          Location: query

        parent

          Pattern: ^organizations/[^/]+/environments/[^/]+$

          Description: Required. For a specific organization, list of all the security incidents. Format: `organizations/{org}/environments/{environment}`

          Required: Yes

          Location: path

          Type: string

        pageSize

          Description: The maximum number of incidents to return. The service may return fewer than this value. If unspecified, at most 50 incidents will be returned.

          Type: integer

          Location: query

          Format: int32

        pageToken

          Type: string

          Description: A page token, received from a previous `ListSecurityIncident` call. Provide this to retrieve the subsequent page.

          Location: query

      HTTP Method: GET

  • apigee.organizations.environments.securityIncidents.get

      Scopes: https://www.googleapis.com/auth/cloud-platform

      Parameter Order: name

      Description: GetSecurityIncident gets the specified security incident. Returns NOT_FOUND if security incident is not present for the specified organization and environment.

      HTTP Method: GET

      Path: v1/{+name}

      Parameters:

        name

          Description: Required. Security incident in the following format: `organizations/{org}/environments/{environment}/securityIncidents/{incident}'. Example: organizations/testOrg/environments/testEnv/securityIncidents/1234-4567-890-111

          Pattern: ^organizations/[^/]+/environments/[^/]+/securityIncidents/[^/]+$

          Required: Yes

          Type: string

          Location: path

      Flat Path: v1/organizations/{organizationsId}/environments/{environmentsId}/securityIncidents/{securityIncidentsId}