Security Command Center API . folders . sources . findings

Instance Methods

externalSystems()

Returns the externalSystems Resource.

close()

Close httplib2 connections.

group(parent, body=None, x__xgafv=None)

Filters an organization or source's findings and groups them by their specified properties. To group across all sources provide a `-` as the source id. Example: /v1/organizations/{organization_id}/sources/-/findings, /v1/folders/{folder_id}/sources/-/findings, /v1/projects/{project_id}/sources/-/findings

group_next()

Retrieves the next page of results.

list(parent, compareDuration=None, fieldMask=None, filter=None, orderBy=None, pageSize=None, pageToken=None, readTime=None, x__xgafv=None)

Lists an organization or source's findings. To list across all sources provide a `-` as the source id. Example: /v1/organizations/{organization_id}/sources/-/findings

list_next()

Retrieves the next page of results.

patch(name, body=None, updateMask=None, x__xgafv=None)

Creates or updates a finding. The corresponding source must exist for a finding creation to succeed.

setMute(name, body=None, x__xgafv=None)

Updates the mute state of a finding.

setState(name, body=None, x__xgafv=None)

Updates the state of a finding.

updateSecurityMarks(name, body=None, startTime=None, updateMask=None, x__xgafv=None)

Updates security marks.

Method Details

close()
Close httplib2 connections.
group(parent, body=None, x__xgafv=None)
Filters an organization or source's findings and groups them by their specified properties. To group across all sources provide a `-` as the source id. Example: /v1/organizations/{organization_id}/sources/-/findings, /v1/folders/{folder_id}/sources/-/findings, /v1/projects/{project_id}/sources/-/findings

Args:
  parent: string, Required. Name of the source to groupBy. Its format is "organizations/[organization_id]/sources/[source_id]", folders/[folder_id]/sources/[source_id], or projects/[project_id]/sources/[source_id]. To groupBy across all sources provide a source_id of `-`. For example: organizations/{organization_id}/sources/-, folders/{folder_id}/sources/-, or projects/{project_id}/sources/- (required)
  body: object, The request body.
    The object takes the form of:

{ # Request message for grouping by findings.
  "compareDuration": "A String", # When compare_duration is set, the GroupResult's "state_change" attribute is updated to indicate whether the finding had its state changed, the finding's state remained unchanged, or if the finding was added during the compare_duration period of time that precedes the read_time. This is the time between (read_time - compare_duration) and read_time. The state_change value is derived based on the presence and state of the finding at the two points in time. Intermediate state changes between the two times don't affect the result. For example, the results aren't affected if the finding is made inactive and then active again. Possible "state_change" values when compare_duration is specified: * "CHANGED": indicates that the finding was present and matched the given filter at the start of compare_duration, but changed its state at read_time. * "UNCHANGED": indicates that the finding was present and matched the given filter at the start of compare_duration and did not change state at read_time. * "ADDED": indicates that the finding did not match the given filter or was not present at the start of compare_duration, but was present at read_time. * "REMOVED": indicates that the finding was present and matched the filter at the start of compare_duration, but did not match the filter at read_time. If compare_duration is not specified, then the only possible state_change is "UNUSED", which will be the state_change set for all findings present at read_time. If this field is set then `state_change` must be a specified field in `group_by`.
  "filter": "A String", # Expression that defines the filter to apply across findings. The expression is a list of one or more restrictions combined via logical operators `AND` and `OR`. Parentheses are supported, and `OR` has higher precedence than `AND`. Restrictions have the form ` ` and may have a `-` character in front of them to indicate negation. Examples include: * name * source_properties.a_property * security_marks.marks.marka The supported operators are: * `=` for all value types. * `>`, `<`, `>=`, `<=` for integer values. * `:`, meaning substring matching, for strings. The supported value types are: * string literals in quotes. * integer literals without quotes. * boolean literals `true` and `false` without quotes. The following field and operator combinations are supported: * name: `=` * parent: `=`, `:` * resource_name: `=`, `:` * state: `=`, `:` * category: `=`, `:` * external_uri: `=`, `:` * event_time: `=`, `>`, `<`, `>=`, `<=` Usage: This should be milliseconds since epoch or an RFC3339 string. Examples: `event_time = "2019-06-10T16:07:18-07:00"` `event_time = 1560208038000` * severity: `=`, `:` * workflow_state: `=`, `:` * security_marks.marks: `=`, `:` * source_properties: `=`, `:`, `>`, `<`, `>=`, `<=` For example, `source_properties.size = 100` is a valid filter string. Use a partial match on the empty string to filter based on a property existing: `source_properties.my_property : ""` Use a negated partial match on the empty string to filter based on a property not existing: `-source_properties.my_property : ""` * resource: * resource.name: `=`, `:` * resource.parent_name: `=`, `:` * resource.parent_display_name: `=`, `:` * resource.project_name: `=`, `:` * resource.project_display_name: `=`, `:` * resource.type: `=`, `:`
  "groupBy": "A String", # Required. Expression that defines what assets fields to use for grouping (including `state_change`). The string value should follow SQL syntax: comma separated list of fields. For example: "parent,resource_name". The following fields are supported when compare_duration is set: * state_change
  "pageSize": 42, # The maximum number of results to return in a single response. Default is 10, minimum is 1, maximum is 1000.
  "pageToken": "A String", # The value returned by the last `GroupFindingsResponse`; indicates that this is a continuation of a prior `GroupFindings` call, and that the system should return the next page of data.
  "readTime": "A String", # Time used as a reference point when filtering findings. The filter is limited to findings existing at the supplied time and their values are those at that specific time. Absence of this field will default to the API's version of NOW.
}

  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # Response message for group by findings.
  "groupByResults": [ # Group results. There exists an element for each existing unique combination of property/values. The element contains a count for the number of times those specific property/values appear.
    { # Result containing the properties and count of a groupBy request.
      "count": "A String", # Total count of resources for the given properties.
      "properties": { # Properties matching the groupBy fields in the request.
        "a_key": "",
      },
    },
  ],
  "nextPageToken": "A String", # Token to retrieve the next page of results, or empty if there are no more results.
  "readTime": "A String", # Time used for executing the groupBy request.
  "totalSize": 42, # The total number of results matching the query.
}
group_next()
Retrieves the next page of results.

        Args:
          previous_request: The request for the previous page. (required)
          previous_response: The response from the request for the previous page. (required)

        Returns:
          A request object that you can call 'execute()' on to request the next
          page. Returns None if there are no more items in the collection.
        
list(parent, compareDuration=None, fieldMask=None, filter=None, orderBy=None, pageSize=None, pageToken=None, readTime=None, x__xgafv=None)
Lists an organization or source's findings. To list across all sources provide a `-` as the source id. Example: /v1/organizations/{organization_id}/sources/-/findings

Args:
  parent: string, Required. Name of the source the findings belong to. Its format is "organizations/[organization_id]/sources/[source_id], folders/[folder_id]/sources/[source_id], or projects/[project_id]/sources/[source_id]". To list across all sources provide a source_id of `-`. For example: organizations/{organization_id}/sources/-, folders/{folder_id}/sources/- or projects/{projects_id}/sources/- (required)
  compareDuration: string, When compare_duration is set, the ListFindingsResult's "state_change" attribute is updated to indicate whether the finding had its state changed, the finding's state remained unchanged, or if the finding was added in any state during the compare_duration period of time that precedes the read_time. This is the time between (read_time - compare_duration) and read_time. The state_change value is derived based on the presence and state of the finding at the two points in time. Intermediate state changes between the two times don't affect the result. For example, the results aren't affected if the finding is made inactive and then active again. Possible "state_change" values when compare_duration is specified: * "CHANGED": indicates that the finding was present and matched the given filter at the start of compare_duration, but changed its state at read_time. * "UNCHANGED": indicates that the finding was present and matched the given filter at the start of compare_duration and did not change state at read_time. * "ADDED": indicates that the finding did not match the given filter or was not present at the start of compare_duration, but was present at read_time. * "REMOVED": indicates that the finding was present and matched the filter at the start of compare_duration, but did not match the filter at read_time. If compare_duration is not specified, then the only possible state_change is "UNUSED", which will be the state_change set for all findings present at read_time.
  fieldMask: string, A field mask to specify the Finding fields to be listed in the response. An empty field mask will list all fields.
  filter: string, Expression that defines the filter to apply across findings. The expression is a list of one or more restrictions combined via logical operators `AND` and `OR`. Parentheses are supported, and `OR` has higher precedence than `AND`. Restrictions have the form ` ` and may have a `-` character in front of them to indicate negation. Examples include: * name * source_properties.a_property * security_marks.marks.marka The supported operators are: * `=` for all value types. * `>`, `<`, `>=`, `<=` for integer values. * `:`, meaning substring matching, for strings. The supported value types are: * string literals in quotes. * integer literals without quotes. * boolean literals `true` and `false` without quotes. The following field and operator combinations are supported: * name: `=` * parent: `=`, `:` * resource_name: `=`, `:` * state: `=`, `:` * category: `=`, `:` * external_uri: `=`, `:` * event_time: `=`, `>`, `<`, `>=`, `<=` Usage: This should be milliseconds since epoch or an RFC3339 string. Examples: `event_time = "2019-06-10T16:07:18-07:00"` `event_time = 1560208038000` * severity: `=`, `:` * workflow_state: `=`, `:` * security_marks.marks: `=`, `:` * source_properties: `=`, `:`, `>`, `<`, `>=`, `<=` For example, `source_properties.size = 100` is a valid filter string. Use a partial match on the empty string to filter based on a property existing: `source_properties.my_property : ""` Use a negated partial match on the empty string to filter based on a property not existing: `-source_properties.my_property : ""` * resource: * resource.name: `=`, `:` * resource.parent_name: `=`, `:` * resource.parent_display_name: `=`, `:` * resource.project_name: `=`, `:` * resource.project_display_name: `=`, `:` * resource.type: `=`, `:` * resource.folders.resource_folder: `=`, `:` * resource.display_name: `=`, `:`
  orderBy: string, Expression that defines what fields and order to use for sorting. The string value should follow SQL syntax: comma separated list of fields. For example: "name,resource_properties.a_property". The default sorting order is ascending. To specify descending order for a field, a suffix " desc" should be appended to the field name. For example: "name desc,source_properties.a_property". Redundant space characters in the syntax are insignificant. "name desc,source_properties.a_property" and " name desc , source_properties.a_property " are equivalent. The following fields are supported: name parent state category resource_name event_time source_properties security_marks.marks
  pageSize: integer, The maximum number of results to return in a single response. Default is 10, minimum is 1, maximum is 1000.
  pageToken: string, The value returned by the last `ListFindingsResponse`; indicates that this is a continuation of a prior `ListFindings` call, and that the system should return the next page of data.
  readTime: string, Time used as a reference point when filtering findings. The filter is limited to findings existing at the supplied time and their values are those at that specific time. Absence of this field will default to the API's version of NOW.
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # Response message for listing findings.
  "listFindingsResults": [ # Findings matching the list request.
    { # Result containing the Finding and its StateChange.
      "finding": { # Security Command Center finding. A finding is a record of assessment data like security, risk, health, or privacy, that is ingested into Security Command Center for presentation, notification, analysis, policy testing, and enforcement. For example, a cross-site scripting (XSS) vulnerability in an App Engine application is a finding. # Finding matching the search request.
        "access": { # Represents an access event. # Access details associated with the finding, such as more information on the caller, which method was accessed, and from where.
          "callerIp": "A String", # Caller's IP address, such as "1.1.1.1".
          "callerIpGeo": { # Represents a geographical location for a given access. # The caller IP's geolocation, which identifies where the call came from.
            "regionCode": "A String", # A CLDR.
          },
          "methodName": "A String", # The method that the service account called, e.g. "SetIamPolicy".
          "principalEmail": "A String", # Associated email, such as "foo@google.com". The email address of the authenticated user or a service account acting on behalf of a third party principal making the request. For third party identity callers, the `principal_subject` field is populated instead of this field. For privacy reasons, the principal email address is sometimes redacted. For more information, see [Caller identities in audit logs](https://cloud.google.com/logging/docs/audit#user-id).
          "principalSubject": "A String", # A string that represents the principal_subject that is associated with the identity. Unlike `principal_email`, `principal_subject` supports principals that aren't associated with email addresses, such as third party principals. For most identities, the format is `principal://iam.googleapis.com/{identity pool name}/subject/{subject}`. Some GKE identities, such as GKE_WORKLOAD, FREEFORM, and GKE_HUB_WORKLOAD, still use the legacy format `serviceAccount:{identity pool name}[{subject}]`.
          "serviceAccountDelegationInfo": [ # The identity delegation history of an authenticated service account that made the request. The `serviceAccountDelegationInfo[]` object contains information about the real authorities that try to access Google Cloud resources by delegating on a service account. When multiple authorities are present, they are guaranteed to be sorted based on the original ordering of the identity delegation events.
            { # Identity delegation history of an authenticated service account.
              "principalEmail": "A String", # The email address of a Google account.
              "principalSubject": "A String", # A string representing the principal_subject associated with the identity. As compared to `principal_email`, supports principals that aren't associated with email addresses, such as third party principals. For most identities, the format will be `principal://iam.googleapis.com/{identity pool name}/subjects/{subject}` except for some GKE identities (GKE_WORKLOAD, FREEFORM, GKE_HUB_WORKLOAD) that are still in the legacy format `serviceAccount:{identity pool name}[{subject}]`
            },
          ],
          "serviceAccountKeyName": "A String", # The name of the service account key that was used to create or exchange credentials when authenticating the service account that made the request. This is a scheme-less URI full resource name. For example: "//iam.googleapis.com/projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT}/keys/{key}".
          "serviceName": "A String", # This is the API service that the service account made a call to, e.g. "iam.googleapis.com"
          "userAgent": "A String", # The caller's user agent string associated with the finding.
          "userAgentFamily": "A String", # Type of user agent associated with the finding. For example, an operating system shell or an embedded or standalone application.
          "userName": "A String", # A string that represents a username. The username provided depends on the type of the finding and is likely not an IAM principal. For example, this can be a system username if the finding is related to a virtual machine, or it can be an application login username.
        },
        "application": { # Represents an application associated with a finding. # Represents an application associated with the finding.
          "baseUri": "A String", # The base URI that identifies the network location of the application in which the vulnerability was detected. For example, `http://example.com`.
          "fullUri": "A String", # The full URI with payload that can be used to reproduce the vulnerability. For example, `http://example.com?p=aMmYgI6H`.
        },
        "attackExposure": { # An attack exposure contains the results of an attack path simulation run. # The results of an attack path simulation relevant to this finding.
          "attackExposureResult": "A String", # The resource name of the attack path simulation result that contains the details regarding this attack exposure score. Example: organizations/123/simulations/456/attackExposureResults/789
          "exposedHighValueResourcesCount": 42, # The number of high value resources that are exposed as a result of this finding.
          "exposedLowValueResourcesCount": 42, # The number of high value resources that are exposed as a result of this finding.
          "exposedMediumValueResourcesCount": 42, # The number of medium value resources that are exposed as a result of this finding.
          "latestCalculationTime": "A String", # The most recent time the attack exposure was updated on this finding.
          "score": 3.14, # A number between 0 (inclusive) and infinity that represents how important this finding is to remediate. The higher the score, the more important it is to remediate.
          "state": "A String", # What state this AttackExposure is in. This captures whether or not an attack exposure has been calculated or not.
        },
        "backupDisasterRecovery": { # Information related to Google Cloud Backup and DR Service findings. # Fields related to Backup and DR findings.
          "appliance": "A String", # The name of the Backup and DR appliance that captures, moves, and manages the lifecycle of backup data. For example, `backup-server-57137`.
          "applications": [ # The names of Backup and DR applications. An application is a VM, database, or file system on a managed host monitored by a backup and recovery appliance. For example, `centos7-01-vol00`, `centos7-01-vol01`, `centos7-01-vol02`.
            "A String",
          ],
          "backupCreateTime": "A String", # The timestamp at which the Backup and DR backup was created.
          "backupTemplate": "A String", # The name of a Backup and DR template which comprises one or more backup policies. See the [Backup and DR documentation](https://cloud.google.com/backup-disaster-recovery/docs/concepts/backup-plan#temp) for more information. For example, `snap-ov`.
          "backupType": "A String", # The backup type of the Backup and DR image. For example, `Snapshot`, `Remote Snapshot`, `OnVault`.
          "host": "A String", # The name of a Backup and DR host, which is managed by the backup and recovery appliance and known to the management console. The host can be of type Generic (for example, Compute Engine, SQL Server, Oracle DB, SMB file system, etc.), vCenter, or an ESX server. See the [Backup and DR documentation on hosts](https://cloud.google.com/backup-disaster-recovery/docs/configuration/manage-hosts-and-their-applications) for more information. For example, `centos7-01`.
          "policies": [ # The names of Backup and DR policies that are associated with a template and that define when to run a backup, how frequently to run a backup, and how long to retain the backup image. For example, `onvaults`.
            "A String",
          ],
          "policyOptions": [ # The names of Backup and DR advanced policy options of a policy applying to an application. See the [Backup and DR documentation on policy options](https://cloud.google.com/backup-disaster-recovery/docs/create-plan/policy-settings). For example, `skipofflineappsincongrp, nounmap`.
            "A String",
          ],
          "profile": "A String", # The name of the Backup and DR resource profile that specifies the storage media for backups of application and VM data. See the [Backup and DR documentation on profiles](https://cloud.google.com/backup-disaster-recovery/docs/concepts/backup-plan#profile). For example, `GCP`.
          "storagePool": "A String", # The name of the Backup and DR storage pool that the backup and recovery appliance is storing data in. The storage pool could be of type Cloud, Primary, Snapshot, or OnVault. See the [Backup and DR documentation on storage pools](https://cloud.google.com/backup-disaster-recovery/docs/concepts/storage-pools). For example, `DiskPoolOne`.
        },
        "canonicalName": "A String", # The canonical name of the finding. It's either "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}", "folders/{folder_id}/sources/{source_id}/findings/{finding_id}" or "projects/{project_number}/sources/{source_id}/findings/{finding_id}", depending on the closest CRM ancestor of the resource associated with the finding.
        "category": "A String", # The additional taxonomy group within findings from a given source. This field is immutable after creation time. Example: "XSS_FLASH_INJECTION"
        "cloudArmor": { # Fields related to Google Cloud Armor findings. # Fields related to Cloud Armor findings.
          "adaptiveProtection": { # Information about [Google Cloud Armor Adaptive Protection](https://cloud.google.com/armor/docs/cloud-armor-overview#google-cloud-armor-adaptive-protection). # Information about potential Layer 7 DDoS attacks identified by [Google Cloud Armor Adaptive Protection](https://cloud.google.com/armor/docs/adaptive-protection-overview).
            "confidence": 3.14, # A score of 0 means that there is low confidence that the detected event is an actual attack. A score of 1 means that there is high confidence that the detected event is an attack. See the [Adaptive Protection documentation](https://cloud.google.com/armor/docs/adaptive-protection-overview#configure-alert-tuning) for further explanation.
          },
          "attack": { # Information about DDoS attack volume and classification. # Information about DDoS attack volume and classification.
            "classification": "A String", # Type of attack, for example, 'SYN-flood', 'NTP-udp', or 'CHARGEN-udp'.
            "volumeBps": 42, # Total BPS (bytes per second) volume of attack.
            "volumePps": 42, # Total PPS (packets per second) volume of attack.
          },
          "duration": "A String", # Duration of attack from the start until the current moment (updated every 5 minutes).
          "requests": { # Information about the requests relevant to the finding. # Information about incoming requests evaluated by [Google Cloud Armor security policies](https://cloud.google.com/armor/docs/security-policy-overview).
            "longTermAllowed": 42, # Allowed RPS (requests per second) over the long term.
            "longTermDenied": 42, # Denied RPS (requests per second) over the long term.
            "ratio": 3.14, # For 'Increasing deny ratio', the ratio is the denied traffic divided by the allowed traffic. For 'Allowed traffic spike', the ratio is the allowed traffic in the short term divided by allowed traffic in the long term.
            "shortTermAllowed": 42, # Allowed RPS (requests per second) in the short term.
          },
          "securityPolicy": { # Information about the [Google Cloud Armor security policy](https://cloud.google.com/armor/docs/security-policy-overview) relevant to the finding. # Information about the [Google Cloud Armor security policy](https://cloud.google.com/armor/docs/security-policy-overview) relevant to the finding.
            "name": "A String", # The name of the Google Cloud Armor security policy, for example, "my-security-policy".
            "preview": True or False, # Whether or not the associated rule or policy is in preview mode.
            "type": "A String", # The type of Google Cloud Armor security policy for example, 'backend security policy', 'edge security policy', 'network edge security policy', or 'always-on DDoS protection'.
          },
          "threatVector": "A String", # Distinguish between volumetric & protocol DDoS attack and application layer attacks. For example, "L3_4" for Layer 3 and Layer 4 DDoS attacks, or "L_7" for Layer 7 DDoS attacks.
        },
        "cloudDlpDataProfile": { # The [data profile](https://cloud.google.com/dlp/docs/data-profiles) associated with the finding. # Cloud DLP data profile that is associated with the finding.
          "dataProfile": "A String", # Name of the data profile, for example, `projects/123/locations/europe/tableProfiles/8383929`.
          "parentType": "A String", # The resource hierarchy level at which the data profile was generated.
        },
        "cloudDlpInspection": { # Details about the Cloud Data Loss Prevention (Cloud DLP) [inspection job](https://cloud.google.com/dlp/docs/concepts-job-triggers) that produced the finding. # Cloud Data Loss Prevention (Cloud DLP) inspection results that are associated with the finding.
          "fullScan": True or False, # Whether Cloud DLP scanned the complete resource or a sampled subset.
          "infoType": "A String", # The type of information (or *[infoType](https://cloud.google.com/dlp/docs/infotypes-reference)*) found, for example, `EMAIL_ADDRESS` or `STREET_ADDRESS`.
          "infoTypeCount": "A String", # The number of times Cloud DLP found this infoType within this job and resource.
          "inspectJob": "A String", # Name of the inspection job, for example, `projects/123/locations/europe/dlpJobs/i-8383929`.
        },
        "compliances": [ # Contains compliance information for security standards associated to the finding.
          { # Contains compliance information about a security standard indicating unmet recommendations.
            "ids": [ # Policies within the standard or benchmark, for example, A.12.4.1
              "A String",
            ],
            "standard": "A String", # Industry-wide compliance standards or benchmarks, such as CIS, PCI, and OWASP.
            "version": "A String", # Version of the standard or benchmark, for example, 1.1
          },
        ],
        "connections": [ # Contains information about the IP connection associated with the finding.
          { # Contains information about the IP connection associated with the finding.
            "destinationIp": "A String", # Destination IP address. Not present for sockets that are listening and not connected.
            "destinationPort": 42, # Destination port. Not present for sockets that are listening and not connected.
            "protocol": "A String", # IANA Internet Protocol Number such as TCP(6) and UDP(17).
            "sourceIp": "A String", # Source IP address.
            "sourcePort": 42, # Source port.
          },
        ],
        "contacts": { # Output only. Map containing the points of contact for the given finding. The key represents the type of contact, while the value contains a list of all the contacts that pertain. Please refer to: https://cloud.google.com/resource-manager/docs/managing-notification-contacts#notification-categories { "security": { "contacts": [ { "email": "person1@company.com" }, { "email": "person2@company.com" } ] } }
          "a_key": { # Details about specific contacts
            "contacts": [ # A list of contacts
              { # The email address of a contact.
                "email": "A String", # An email address. For example, "`person123@company.com`".
              },
            ],
          },
        },
        "containers": [ # Containers associated with the finding. This field provides information for both Kubernetes and non-Kubernetes containers.
          { # Container associated with the finding.
            "createTime": "A String", # The time that the container was created.
            "imageId": "A String", # Optional container image ID, if provided by the container runtime. Uniquely identifies the container image launched using a container image digest.
            "labels": [ # Container labels, as provided by the container runtime.
              { # Represents a generic name-value label. A label has separate name and value fields to support filtering with the `contains()` function. For more information, see [Filtering on array-type fields](https://cloud.google.com/security-command-center/docs/how-to-api-list-findings#array-contains-filtering).
                "name": "A String", # Name of the label.
                "value": "A String", # Value that corresponds to the label's name.
              },
            ],
            "name": "A String", # Name of the container.
            "uri": "A String", # Container image URI provided when configuring a pod or container. This string can identify a container image version using mutable tags.
          },
        ],
        "createTime": "A String", # The time at which the finding was created in Security Command Center.
        "database": { # Represents database access information, such as queries. A database may be a sub-resource of an instance (as in the case of Cloud SQL instances or Cloud Spanner instances), or the database instance itself. Some database resources might not have the [full resource name](https://google.aip.dev/122#full-resource-names) populated because these resource types, such as Cloud SQL databases, are not yet supported by Cloud Asset Inventory. In these cases only the display name is provided. # Database associated with the finding.
          "displayName": "A String", # The human-readable name of the database that the user connected to.
          "grantees": [ # The target usernames, roles, or groups of an SQL privilege grant, which is not an IAM policy change.
            "A String",
          ],
          "name": "A String", # Some database resources may not have the [full resource name](https://google.aip.dev/122#full-resource-names) populated because these resource types are not yet supported by Cloud Asset Inventory (e.g. Cloud SQL databases). In these cases only the display name will be provided. The [full resource name](https://google.aip.dev/122#full-resource-names) of the database that the user connected to, if it is supported by Cloud Asset Inventory.
          "query": "A String", # The SQL statement that is associated with the database access.
          "userName": "A String", # The username used to connect to the database. The username might not be an IAM principal and does not have a set format.
          "version": "A String", # The version of the database, for example, POSTGRES_14. See [the complete list](https://cloud.google.com/sql/docs/mysql/admin-api/rest/v1/SqlDatabaseVersion).
        },
        "description": "A String", # Contains more details about the finding.
        "eventTime": "A String", # The time the finding was first detected. If an existing finding is updated, then this is the time the update occurred. For example, if the finding represents an open firewall, this property captures the time the detector believes the firewall became open. The accuracy is determined by the detector. If the finding is later resolved, then this time reflects when the finding was resolved. This must not be set to a value greater than the current timestamp.
        "exfiltration": { # Exfiltration represents a data exfiltration attempt from one or more sources to one or more targets. The `sources` attribute lists the sources of the exfiltrated data. The `targets` attribute lists the destinations the data was copied to. # Represents exfiltrations associated with the finding.
          "sources": [ # If there are multiple sources, then the data is considered "joined" between them. For instance, BigQuery can join multiple tables, and each table would be considered a source.
            { # Resource where data was exfiltrated from or exfiltrated to.
              "components": [ # Subcomponents of the asset that was exfiltrated, like URIs used during exfiltration, table names, databases, and filenames. For example, multiple tables might have been exfiltrated from the same Cloud SQL instance, or multiple files might have been exfiltrated from the same Cloud Storage bucket.
                "A String",
              ],
              "name": "A String", # The resource's [full resource name](https://cloud.google.com/apis/design/resource_names#full_resource_name).
            },
          ],
          "targets": [ # If there are multiple targets, each target would get a complete copy of the "joined" source data.
            { # Resource where data was exfiltrated from or exfiltrated to.
              "components": [ # Subcomponents of the asset that was exfiltrated, like URIs used during exfiltration, table names, databases, and filenames. For example, multiple tables might have been exfiltrated from the same Cloud SQL instance, or multiple files might have been exfiltrated from the same Cloud Storage bucket.
                "A String",
              ],
              "name": "A String", # The resource's [full resource name](https://cloud.google.com/apis/design/resource_names#full_resource_name).
            },
          ],
          "totalExfiltratedBytes": "A String", # Total exfiltrated bytes processed for the entire job.
        },
        "externalSystems": { # Output only. Third party SIEM/SOAR fields within SCC, contains external system information and external system finding fields.
          "a_key": { # Representation of third party SIEM/SOAR fields within SCC.
            "assignees": [ # References primary/secondary etc assignees in the external system.
              "A String",
            ],
            "caseCloseTime": "A String", # The time when the case was closed, as reported by the external system.
            "caseCreateTime": "A String", # The time when the case was created, as reported by the external system.
            "casePriority": "A String", # The priority of the finding's corresponding case in the external system.
            "caseSla": "A String", # The SLA of the finding's corresponding case in the external system.
            "caseUri": "A String", # The link to the finding's corresponding case in the external system.
            "externalSystemUpdateTime": "A String", # The time when the case was last updated, as reported by the external system.
            "externalUid": "A String", # The identifier that's used to track the finding's corresponding case in the external system.
            "name": "A String", # Full resource name of the external system, for example: "organizations/1234/sources/5678/findings/123456/externalSystems/jira", "folders/1234/sources/5678/findings/123456/externalSystems/jira", "projects/1234/sources/5678/findings/123456/externalSystems/jira"
            "status": "A String", # The most recent status of the finding's corresponding case, as reported by the external system.
            "ticketInfo": { # Information about the ticket, if any, that is being used to track the resolution of the issue that is identified by this finding. # Information about the ticket, if any, that is being used to track the resolution of the issue that is identified by this finding.
              "assignee": "A String", # The assignee of the ticket in the ticket system.
              "description": "A String", # The description of the ticket in the ticket system.
              "id": "A String", # The identifier of the ticket in the ticket system.
              "status": "A String", # The latest status of the ticket, as reported by the ticket system.
              "updateTime": "A String", # The time when the ticket was last updated, as reported by the ticket system.
              "uri": "A String", # The link to the ticket in the ticket system.
            },
          },
        },
        "externalUri": "A String", # The URI that, if available, points to a web page outside of Security Command Center where additional information about the finding can be found. This field is guaranteed to be either empty or a well formed URL.
        "files": [ # File associated with the finding.
          { # File information about the related binary/library used by an executable, or the script used by a script interpreter
            "contents": "A String", # Prefix of the file contents as a JSON-encoded string.
            "diskPath": { # Path of the file in terms of underlying disk/partition identifiers. # Path of the file in terms of underlying disk/partition identifiers.
              "partitionUuid": "A String", # UUID of the partition (format https://wiki.archlinux.org/title/persistent_block_device_naming#by-uuid)
              "relativePath": "A String", # Relative path of the file in the partition as a JSON encoded string. Example: /home/user1/executable_file.sh
            },
            "hashedSize": "A String", # The length in bytes of the file prefix that was hashed. If hashed_size == size, any hashes reported represent the entire file.
            "partiallyHashed": True or False, # True when the hash covers only a prefix of the file.
            "path": "A String", # Absolute path of the file as a JSON encoded string.
            "sha256": "A String", # SHA256 hash of the first hashed_size bytes of the file encoded as a hex string. If hashed_size == size, sha256 represents the SHA256 hash of the entire file.
            "size": "A String", # Size of the file in bytes.
          },
        ],
        "findingClass": "A String", # The class of the finding.
        "iamBindings": [ # Represents IAM bindings associated with the finding.
          { # Represents a particular IAM binding, which captures a member's role addition, removal, or state.
            "action": "A String", # The action that was performed on a Binding.
            "member": "A String", # A single identity requesting access for a Cloud Platform resource, for example, "foo@google.com".
            "role": "A String", # Role that is assigned to "members". For example, "roles/viewer", "roles/editor", or "roles/owner".
          },
        ],
        "indicator": { # Represents what's commonly known as an _indicator of compromise_ (IoC) in computer forensics. This is an artifact observed on a network or in an operating system that, with high confidence, indicates a computer intrusion. For more information, see [Indicator of compromise](https://en.wikipedia.org/wiki/Indicator_of_compromise). # Represents what's commonly known as an *indicator of compromise* (IoC) in computer forensics. This is an artifact observed on a network or in an operating system that, with high confidence, indicates a computer intrusion. For more information, see [Indicator of compromise](https://en.wikipedia.org/wiki/Indicator_of_compromise).
          "domains": [ # List of domains associated to the Finding.
            "A String",
          ],
          "ipAddresses": [ # The list of IP addresses that are associated with the finding.
            "A String",
          ],
          "signatures": [ # The list of matched signatures indicating that the given process is present in the environment.
            { # Indicates what signature matched this process.
              "memoryHashSignature": { # A signature corresponding to memory page hashes. # Signature indicating that a binary family was matched.
                "binaryFamily": "A String", # The binary family.
                "detections": [ # The list of memory hash detections contributing to the binary family match.
                  { # Memory hash detection contributing to the binary family match.
                    "binary": "A String", # The name of the binary associated with the memory hash signature detection.
                    "percentPagesMatched": 3.14, # The percentage of memory page hashes in the signature that were matched.
                  },
                ],
              },
              "signatureType": "A String", # Describes the type of resource associated with the signature.
              "yaraRuleSignature": { # A signature corresponding to a YARA rule. # Signature indicating that a YARA rule was matched.
                "yaraRule": "A String", # The name of the YARA rule.
              },
            },
          ],
          "uris": [ # The list of URIs associated to the Findings.
            "A String",
          ],
        },
        "kernelRootkit": { # Kernel mode rootkit signatures. # Signature of the kernel rootkit.
          "name": "A String", # Rootkit name, when available.
          "unexpectedCodeModification": True or False, # True if unexpected modifications of kernel code memory are present.
          "unexpectedFtraceHandler": True or False, # True if `ftrace` points are present with callbacks pointing to regions that are not in the expected kernel or module code range.
          "unexpectedInterruptHandler": True or False, # True if interrupt handlers that are are not in the expected kernel or module code regions are present.
          "unexpectedKernelCodePages": True or False, # True if kernel code pages that are not in the expected kernel or module code regions are present.
          "unexpectedKprobeHandler": True or False, # True if `kprobe` points are present with callbacks pointing to regions that are not in the expected kernel or module code range.
          "unexpectedProcessesInRunqueue": True or False, # True if unexpected processes in the scheduler run queue are present. Such processes are in the run queue, but not in the process task list.
          "unexpectedReadOnlyDataModification": True or False, # True if unexpected modifications of kernel read-only data memory are present.
          "unexpectedSystemCallHandler": True or False, # True if system call handlers that are are not in the expected kernel or module code regions are present.
        },
        "kubernetes": { # Kubernetes-related attributes. # Kubernetes resources associated with the finding.
          "accessReviews": [ # Provides information on any Kubernetes access reviews (privilege checks) relevant to the finding.
            { # Conveys information about a Kubernetes access review (such as one returned by a [`kubectl auth can-i`](https://kubernetes.io/docs/reference/access-authn-authz/authorization/#checking-api-access) command) that was involved in a finding.
              "group": "A String", # The API group of the resource. "*" means all.
              "name": "A String", # The name of the resource being requested. Empty means all.
              "ns": "A String", # Namespace of the action being requested. Currently, there is no distinction between no namespace and all namespaces. Both are represented by "" (empty).
              "resource": "A String", # The optional resource type requested. "*" means all.
              "subresource": "A String", # The optional subresource type.
              "verb": "A String", # A Kubernetes resource API verb, like get, list, watch, create, update, delete, proxy. "*" means all.
              "version": "A String", # The API version of the resource. "*" means all.
            },
          ],
          "bindings": [ # Provides Kubernetes role binding information for findings that involve [RoleBindings or ClusterRoleBindings](https://cloud.google.com/kubernetes-engine/docs/how-to/role-based-access-control).
            { # Represents a Kubernetes RoleBinding or ClusterRoleBinding.
              "name": "A String", # Name for the binding.
              "ns": "A String", # Namespace for the binding.
              "role": { # Kubernetes Role or ClusterRole. # The Role or ClusterRole referenced by the binding.
                "kind": "A String", # Role type.
                "name": "A String", # Role name.
                "ns": "A String", # Role namespace.
              },
              "subjects": [ # Represents one or more subjects that are bound to the role. Not always available for PATCH requests.
                { # Represents a Kubernetes subject.
                  "kind": "A String", # Authentication type for the subject.
                  "name": "A String", # Name for the subject.
                  "ns": "A String", # Namespace for the subject.
                },
              ],
            },
          ],
          "nodePools": [ # GKE [node pools](https://cloud.google.com/kubernetes-engine/docs/concepts/node-pools) associated with the finding. This field contains node pool information for each node, when it is available.
            { # Provides GKE node pool information.
              "name": "A String", # Kubernetes node pool name.
              "nodes": [ # Nodes associated with the finding.
                { # Kubernetes nodes associated with the finding.
                  "name": "A String", # [Full resource name](https://google.aip.dev/122#full-resource-names) of the Compute Engine VM running the cluster node.
                },
              ],
            },
          ],
          "nodes": [ # Provides Kubernetes [node](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-architecture#nodes) information.
            { # Kubernetes nodes associated with the finding.
              "name": "A String", # [Full resource name](https://google.aip.dev/122#full-resource-names) of the Compute Engine VM running the cluster node.
            },
          ],
          "objects": [ # Kubernetes objects related to the finding.
            { # Kubernetes object related to the finding, uniquely identified by GKNN. Used if the object Kind is not one of Pod, Node, NodePool, Binding, or AccessReview.
              "containers": [ # Pod containers associated with this finding, if any.
                { # Container associated with the finding.
                  "createTime": "A String", # The time that the container was created.
                  "imageId": "A String", # Optional container image ID, if provided by the container runtime. Uniquely identifies the container image launched using a container image digest.
                  "labels": [ # Container labels, as provided by the container runtime.
                    { # Represents a generic name-value label. A label has separate name and value fields to support filtering with the `contains()` function. For more information, see [Filtering on array-type fields](https://cloud.google.com/security-command-center/docs/how-to-api-list-findings#array-contains-filtering).
                      "name": "A String", # Name of the label.
                      "value": "A String", # Value that corresponds to the label's name.
                    },
                  ],
                  "name": "A String", # Name of the container.
                  "uri": "A String", # Container image URI provided when configuring a pod or container. This string can identify a container image version using mutable tags.
                },
              ],
              "group": "A String", # Kubernetes object group, such as "policy.k8s.io/v1".
              "kind": "A String", # Kubernetes object kind, such as "Namespace".
              "name": "A String", # Kubernetes object name. For details see https://kubernetes.io/docs/concepts/overview/working-with-objects/names/.
              "ns": "A String", # Kubernetes object namespace. Must be a valid DNS label. Named "ns" to avoid collision with C++ namespace keyword. For details see https://kubernetes.io/docs/tasks/administer-cluster/namespaces/.
            },
          ],
          "pods": [ # Kubernetes [Pods](https://cloud.google.com/kubernetes-engine/docs/concepts/pod) associated with the finding. This field contains Pod records for each container that is owned by a Pod.
            { # A Kubernetes Pod.
              "containers": [ # Pod containers associated with this finding, if any.
                { # Container associated with the finding.
                  "createTime": "A String", # The time that the container was created.
                  "imageId": "A String", # Optional container image ID, if provided by the container runtime. Uniquely identifies the container image launched using a container image digest.
                  "labels": [ # Container labels, as provided by the container runtime.
                    { # Represents a generic name-value label. A label has separate name and value fields to support filtering with the `contains()` function. For more information, see [Filtering on array-type fields](https://cloud.google.com/security-command-center/docs/how-to-api-list-findings#array-contains-filtering).
                      "name": "A String", # Name of the label.
                      "value": "A String", # Value that corresponds to the label's name.
                    },
                  ],
                  "name": "A String", # Name of the container.
                  "uri": "A String", # Container image URI provided when configuring a pod or container. This string can identify a container image version using mutable tags.
                },
              ],
              "labels": [ # Pod labels. For Kubernetes containers, these are applied to the container.
                { # Represents a generic name-value label. A label has separate name and value fields to support filtering with the `contains()` function. For more information, see [Filtering on array-type fields](https://cloud.google.com/security-command-center/docs/how-to-api-list-findings#array-contains-filtering).
                  "name": "A String", # Name of the label.
                  "value": "A String", # Value that corresponds to the label's name.
                },
              ],
              "name": "A String", # Kubernetes Pod name.
              "ns": "A String", # Kubernetes Pod namespace.
            },
          ],
          "roles": [ # Provides Kubernetes role information for findings that involve [Roles or ClusterRoles](https://cloud.google.com/kubernetes-engine/docs/how-to/role-based-access-control).
            { # Kubernetes Role or ClusterRole.
              "kind": "A String", # Role type.
              "name": "A String", # Role name.
              "ns": "A String", # Role namespace.
            },
          ],
        },
        "loadBalancers": [ # The load balancers associated with the finding.
          { # Contains information related to the load balancer associated with the finding.
            "name": "A String", # The name of the load balancer associated with the finding.
          },
        ],
        "logEntries": [ # Log entries that are relevant to the finding.
          { # An individual entry in a log.
            "cloudLoggingEntry": { # Metadata taken from a [Cloud Logging LogEntry](https://cloud.google.com/logging/docs/reference/v2/rest/v2/LogEntry) # An individual entry in a log stored in Cloud Logging.
              "insertId": "A String", # A unique identifier for the log entry.
              "logId": "A String", # The type of the log (part of `log_name`. `log_name` is the resource name of the log to which this log entry belongs). For example: `cloudresourcemanager.googleapis.com/activity`. Note that this field is not URL-encoded, unlike the `LOG_ID` field in `LogEntry`.
              "resourceContainer": "A String", # The organization, folder, or project of the monitored resource that produced this log entry.
              "timestamp": "A String", # The time the event described by the log entry occurred.
            },
          },
        ],
        "mitreAttack": { # MITRE ATT&CK tactics and techniques related to this finding. See: https://attack.mitre.org # MITRE ATT&CK tactics and techniques related to this finding. See: https://attack.mitre.org
          "additionalTactics": [ # Additional MITRE ATT&CK tactics related to this finding, if any.
            "A String",
          ],
          "additionalTechniques": [ # Additional MITRE ATT&CK techniques related to this finding, if any, along with any of their respective parent techniques.
            "A String",
          ],
          "primaryTactic": "A String", # The MITRE ATT&CK tactic most closely represented by this finding, if any.
          "primaryTechniques": [ # The MITRE ATT&CK technique most closely represented by this finding, if any. primary_techniques is a repeated field because there are multiple levels of MITRE ATT&CK techniques. If the technique most closely represented by this finding is a sub-technique (e.g. `SCANNING_IP_BLOCKS`), both the sub-technique and its parent technique(s) will be listed (e.g. `SCANNING_IP_BLOCKS`, `ACTIVE_SCANNING`).
            "A String",
          ],
          "version": "A String", # The MITRE ATT&CK version referenced by the above fields. E.g. "8".
        },
        "moduleName": "A String", # Unique identifier of the module which generated the finding. Example: folders/598186756061/securityHealthAnalyticsSettings/customModules/56799441161885
        "mute": "A String", # Indicates the mute state of a finding (either muted, unmuted or undefined). Unlike other attributes of a finding, a finding provider shouldn't set the value of mute.
        "muteInitiator": "A String", # Records additional information about the mute operation, for example, the [mute configuration](/security-command-center/docs/how-to-mute-findings) that muted the finding and the user who muted the finding.
        "muteUpdateTime": "A String", # Output only. The most recent time this finding was muted or unmuted.
        "name": "A String", # The [relative resource name](https://cloud.google.com/apis/design/resource_names#relative_resource_name) of the finding. Example: "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}", "folders/{folder_id}/sources/{source_id}/findings/{finding_id}", "projects/{project_id}/sources/{source_id}/findings/{finding_id}".
        "nextSteps": "A String", # Steps to address the finding.
        "notebook": { # Represents a Jupyter notebook IPYNB file, such as a [Colab Enterprise notebook](https://cloud.google.com/colab/docs/introduction) file, that is associated with a finding. # Notebook associated with the finding.
          "lastAuthor": "A String", # The user ID of the latest author to modify the notebook.
          "name": "A String", # The name of the notebook.
          "notebookUpdateTime": "A String", # The most recent time the notebook was updated.
          "service": "A String", # The source notebook service, for example, "Colab Enterprise".
        },
        "orgPolicies": [ # Contains information about the org policies associated with the finding.
          { # Contains information about the org policies associated with the finding.
            "name": "A String", # The resource name of the org policy. Example: "organizations/{organization_id}/policies/{constraint_name}"
          },
        ],
        "parent": "A String", # The relative resource name of the source the finding belongs to. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name This field is immutable after creation time. For example: "organizations/{organization_id}/sources/{source_id}"
        "parentDisplayName": "A String", # Output only. The human readable display name of the finding source such as "Event Threat Detection" or "Security Health Analytics".
        "processes": [ # Represents operating system processes associated with the Finding.
          { # Represents an operating system process.
            "args": [ # Process arguments as JSON encoded strings.
              "A String",
            ],
            "argumentsTruncated": True or False, # True if `args` is incomplete.
            "binary": { # File information about the related binary/library used by an executable, or the script used by a script interpreter # File information for the process executable.
              "contents": "A String", # Prefix of the file contents as a JSON-encoded string.
              "diskPath": { # Path of the file in terms of underlying disk/partition identifiers. # Path of the file in terms of underlying disk/partition identifiers.
                "partitionUuid": "A String", # UUID of the partition (format https://wiki.archlinux.org/title/persistent_block_device_naming#by-uuid)
                "relativePath": "A String", # Relative path of the file in the partition as a JSON encoded string. Example: /home/user1/executable_file.sh
              },
              "hashedSize": "A String", # The length in bytes of the file prefix that was hashed. If hashed_size == size, any hashes reported represent the entire file.
              "partiallyHashed": True or False, # True when the hash covers only a prefix of the file.
              "path": "A String", # Absolute path of the file as a JSON encoded string.
              "sha256": "A String", # SHA256 hash of the first hashed_size bytes of the file encoded as a hex string. If hashed_size == size, sha256 represents the SHA256 hash of the entire file.
              "size": "A String", # Size of the file in bytes.
            },
            "envVariables": [ # Process environment variables.
              { # A name-value pair representing an environment variable used in an operating system process.
                "name": "A String", # Environment variable name as a JSON encoded string.
                "val": "A String", # Environment variable value as a JSON encoded string.
              },
            ],
            "envVariablesTruncated": True or False, # True if `env_variables` is incomplete.
            "libraries": [ # File information for libraries loaded by the process.
              { # File information about the related binary/library used by an executable, or the script used by a script interpreter
                "contents": "A String", # Prefix of the file contents as a JSON-encoded string.
                "diskPath": { # Path of the file in terms of underlying disk/partition identifiers. # Path of the file in terms of underlying disk/partition identifiers.
                  "partitionUuid": "A String", # UUID of the partition (format https://wiki.archlinux.org/title/persistent_block_device_naming#by-uuid)
                  "relativePath": "A String", # Relative path of the file in the partition as a JSON encoded string. Example: /home/user1/executable_file.sh
                },
                "hashedSize": "A String", # The length in bytes of the file prefix that was hashed. If hashed_size == size, any hashes reported represent the entire file.
                "partiallyHashed": True or False, # True when the hash covers only a prefix of the file.
                "path": "A String", # Absolute path of the file as a JSON encoded string.
                "sha256": "A String", # SHA256 hash of the first hashed_size bytes of the file encoded as a hex string. If hashed_size == size, sha256 represents the SHA256 hash of the entire file.
                "size": "A String", # Size of the file in bytes.
              },
            ],
            "name": "A String", # The process name, as displayed in utilities like `top` and `ps`. This name can be accessed through `/proc/[pid]/comm` and changed with `prctl(PR_SET_NAME)`.
            "parentPid": "A String", # The parent process ID.
            "pid": "A String", # The process ID.
            "script": { # File information about the related binary/library used by an executable, or the script used by a script interpreter # When the process represents the invocation of a script, `binary` provides information about the interpreter, while `script` provides information about the script file provided to the interpreter.
              "contents": "A String", # Prefix of the file contents as a JSON-encoded string.
              "diskPath": { # Path of the file in terms of underlying disk/partition identifiers. # Path of the file in terms of underlying disk/partition identifiers.
                "partitionUuid": "A String", # UUID of the partition (format https://wiki.archlinux.org/title/persistent_block_device_naming#by-uuid)
                "relativePath": "A String", # Relative path of the file in the partition as a JSON encoded string. Example: /home/user1/executable_file.sh
              },
              "hashedSize": "A String", # The length in bytes of the file prefix that was hashed. If hashed_size == size, any hashes reported represent the entire file.
              "partiallyHashed": True or False, # True when the hash covers only a prefix of the file.
              "path": "A String", # Absolute path of the file as a JSON encoded string.
              "sha256": "A String", # SHA256 hash of the first hashed_size bytes of the file encoded as a hex string. If hashed_size == size, sha256 represents the SHA256 hash of the entire file.
              "size": "A String", # Size of the file in bytes.
            },
          },
        ],
        "resourceName": "A String", # For findings on Google Cloud resources, the full resource name of the Google Cloud resource this finding is for. See: https://cloud.google.com/apis/design/resource_names#full_resource_name When the finding is for a non-Google Cloud resource, the resourceName can be a customer or partner defined string. This field is immutable after creation time.
        "securityMarks": { # User specified security marks that are attached to the parent Security Command Center resource. Security marks are scoped within a Security Command Center organization -- they can be modified and viewed by all users who have proper permissions on the organization. # Output only. User specified security marks. These marks are entirely managed by the user and come from the SecurityMarks resource that belongs to the finding.
          "canonicalName": "A String", # The canonical name of the marks. Examples: "organizations/{organization_id}/assets/{asset_id}/securityMarks" "folders/{folder_id}/assets/{asset_id}/securityMarks" "projects/{project_number}/assets/{asset_id}/securityMarks" "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}/securityMarks" "folders/{folder_id}/sources/{source_id}/findings/{finding_id}/securityMarks" "projects/{project_number}/sources/{source_id}/findings/{finding_id}/securityMarks"
          "marks": { # Mutable user specified security marks belonging to the parent resource. Constraints are as follows: * Keys and values are treated as case insensitive * Keys must be between 1 - 256 characters (inclusive) * Keys must be letters, numbers, underscores, or dashes * Values have leading and trailing whitespace trimmed, remaining characters must be between 1 - 4096 characters (inclusive)
            "a_key": "A String",
          },
          "name": "A String", # The relative resource name of the SecurityMarks. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Examples: "organizations/{organization_id}/assets/{asset_id}/securityMarks" "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}/securityMarks".
        },
        "securityPosture": { # Represents a posture that is deployed on Google Cloud by the Security Command Center Posture Management service. A posture contains one or more policy sets. A policy set is a group of policies that enforce a set of security rules on Google Cloud. # The security posture associated with the finding.
          "changedPolicy": "A String", # The name of the updated policy, for example, `projects/{project_id}/policies/{constraint_name}`.
          "name": "A String", # Name of the posture, for example, `CIS-Posture`.
          "policy": "A String", # The ID of the updated policy, for example, `compute-policy-1`.
          "policyDriftDetails": [ # The details about a change in an updated policy that violates the deployed posture.
            { # The policy field that violates the deployed posture and its expected and detected values.
              "detectedValue": "A String", # The detected value that violates the deployed posture, for example, `false` or `allowed_values={"projects/22831892"}`.
              "expectedValue": "A String", # The value of this field that was configured in a posture, for example, `true` or `allowed_values={"projects/29831892"}`.
              "field": "A String", # The name of the updated field, for example constraint.implementation.policy_rules[0].enforce
            },
          ],
          "policySet": "A String", # The name of the updated policyset, for example, `cis-policyset`.
          "postureDeployment": "A String", # The name of the posture deployment, for example, `organizations/{org_id}/posturedeployments/{posture_deployment_id}`.
          "postureDeploymentResource": "A String", # The project, folder, or organization on which the posture is deployed, for example, `projects/{project_number}`.
          "revisionId": "A String", # The version of the posture, for example, `c7cfa2a8`.
        },
        "severity": "A String", # The severity of the finding. This field is managed by the source that writes the finding.
        "sourceProperties": { # Source specific properties. These properties are managed by the source that writes the finding. The key names in the source_properties map must be between 1 and 255 characters, and must start with a letter and contain alphanumeric characters or underscores only.
          "a_key": "",
        },
        "state": "A String", # The state of the finding.
        "vulnerability": { # Refers to common vulnerability fields e.g. cve, cvss, cwe etc. # Represents vulnerability-specific fields like CVE and CVSS scores. CVE stands for Common Vulnerabilities and Exposures (https://cve.mitre.org/about/)
          "cve": { # CVE stands for Common Vulnerabilities and Exposures. Information from the [CVE record](https://www.cve.org/ResourcesSupport/Glossary) that describes this vulnerability. # CVE stands for Common Vulnerabilities and Exposures (https://cve.mitre.org/about/)
            "cvssv3": { # Common Vulnerability Scoring System version 3. # Describe Common Vulnerability Scoring System specified at https://www.first.org/cvss/v3.1/specification-document
              "attackComplexity": "A String", # This metric describes the conditions beyond the attacker's control that must exist in order to exploit the vulnerability.
              "attackVector": "A String", # Base Metrics Represents the intrinsic characteristics of a vulnerability that are constant over time and across user environments. This metric reflects the context by which vulnerability exploitation is possible.
              "availabilityImpact": "A String", # This metric measures the impact to the availability of the impacted component resulting from a successfully exploited vulnerability.
              "baseScore": 3.14, # The base score is a function of the base metric scores.
              "confidentialityImpact": "A String", # This metric measures the impact to the confidentiality of the information resources managed by a software component due to a successfully exploited vulnerability.
              "integrityImpact": "A String", # This metric measures the impact to integrity of a successfully exploited vulnerability.
              "privilegesRequired": "A String", # This metric describes the level of privileges an attacker must possess before successfully exploiting the vulnerability.
              "scope": "A String", # The Scope metric captures whether a vulnerability in one vulnerable component impacts resources in components beyond its security scope.
              "userInteraction": "A String", # This metric captures the requirement for a human user, other than the attacker, to participate in the successful compromise of the vulnerable component.
            },
            "exploitationActivity": "A String", # The exploitation activity of the vulnerability in the wild.
            "id": "A String", # The unique identifier for the vulnerability. e.g. CVE-2021-34527
            "impact": "A String", # The potential impact of the vulnerability if it was to be exploited.
            "observedInTheWild": True or False, # Whether or not the vulnerability has been observed in the wild.
            "references": [ # Additional information about the CVE. e.g. https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-34527
              { # Additional Links
                "source": "A String", # Source of the reference e.g. NVD
                "uri": "A String", # Uri for the mentioned source e.g. https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-34527.
              },
            ],
            "upstreamFixAvailable": True or False, # Whether upstream fix is available for the CVE.
            "zeroDay": True or False, # Whether or not the vulnerability was zero day when the finding was published.
          },
          "fixedPackage": { # Package is a generic definition of a package. # The fixed package is relevant to the finding.
            "cpeUri": "A String", # The CPE URI where the vulnerability was detected.
            "packageName": "A String", # The name of the package where the vulnerability was detected.
            "packageType": "A String", # Type of package, for example, os, maven, or go.
            "packageVersion": "A String", # The version of the package.
          },
          "offendingPackage": { # Package is a generic definition of a package. # The offending package is relevant to the finding.
            "cpeUri": "A String", # The CPE URI where the vulnerability was detected.
            "packageName": "A String", # The name of the package where the vulnerability was detected.
            "packageType": "A String", # Type of package, for example, os, maven, or go.
            "packageVersion": "A String", # The version of the package.
          },
          "securityBulletin": { # SecurityBulletin are notifications of vulnerabilities of Google products. # The security bulletin is relevant to this finding.
            "bulletinId": "A String", # ID of the bulletin corresponding to the vulnerability.
            "submissionTime": "A String", # Submission time of this Security Bulletin.
            "suggestedUpgradeVersion": "A String", # This represents a version that the cluster receiving this notification should be upgraded to, based on its current version. For example, 1.15.0
          },
        },
      },
      "resource": { # Information related to the Google Cloud resource that is associated with this finding. # Output only. Resource that is associated with this finding.
        "awsMetadata": { # AWS metadata associated with the resource, only applicable if the finding's cloud provider is Amazon Web Services. # The AWS metadata associated with the finding.
          "account": { # An AWS account that is a member of an organization. # The AWS account associated with the resource.
            "id": "A String", # The unique identifier (ID) of the account, containing exactly 12 digits.
            "name": "A String", # The friendly name of this account.
          },
          "organization": { # An organization is a collection of accounts that are centrally managed together using consolidated billing, organized hierarchically with organizational units (OUs), and controlled with policies. # The AWS organization associated with the resource.
            "id": "A String", # The unique identifier (ID) for the organization. The regex pattern for an organization ID string requires "o-" followed by from 10 to 32 lowercase letters or digits.
          },
          "organizationalUnits": [ # A list of AWS organizational units associated with the resource, ordered from lowest level (closest to the account) to highest level.
            { # An Organizational Unit (OU) is a container of AWS accounts within a root of an organization. Policies that are attached to an OU apply to all accounts contained in that OU and in any child OUs.
              "id": "A String", # The unique identifier (ID) associated with this OU. The regex pattern for an organizational unit ID string requires "ou-" followed by from 4 to 32 lowercase letters or digits (the ID of the root that contains the OU). This string is followed by a second "-" dash and from 8 to 32 additional lowercase letters or digits. For example, "ou-ab12-cd34ef56".
              "name": "A String", # The friendly name of the OU.
            },
          ],
        },
        "cloudProvider": "A String", # Indicates which cloud provider the finding is from.
        "displayName": "A String", # The human readable name of the resource.
        "folders": [ # Contains a Folder message for each folder in the assets ancestry. The first folder is the deepest nested folder, and the last folder is the folder directly under the Organization.
          { # Message that contains the resource name and display name of a folder resource.
            "resourceFolder": "A String", # Full resource name of this folder. See: https://cloud.google.com/apis/design/resource_names#full_resource_name
            "resourceFolderDisplayName": "A String", # The user defined display name for this folder.
          },
        ],
        "location": "A String", # The region or location of the service (if applicable).
        "name": "A String", # The full resource name of the resource. See: https://cloud.google.com/apis/design/resource_names#full_resource_name
        "organization": "A String", # Indicates which organization / tenant the finding is for.
        "parentDisplayName": "A String", # The human readable name of resource's parent.
        "parentName": "A String", # The full resource name of resource's parent.
        "projectDisplayName": "A String", # The project ID that the resource belongs to.
        "projectName": "A String", # The full resource name of project that the resource belongs to.
        "resourcePath": { # Represents the path of resources leading up to the resource this finding is about. # Provides the path to the resource within the resource hierarchy.
          "nodes": [ # The list of nodes that make the up resource path, ordered from lowest level to highest level.
            { # A node within the resource path. Each node represents a resource within the resource hierarchy.
              "displayName": "A String", # The display name of the resource this node represents.
              "id": "A String", # The ID of the resource this node represents.
              "nodeType": "A String", # The type of resource this node represents.
            },
          ],
        },
        "resourcePathString": "A String", # A string representation of the resource path. For Google Cloud, it has the format of org/{organization_id}/folder/{folder_id}/folder/{folder_id}/project/{project_id} where there can be any number of folders. For AWS, it has the format of org/{organization_id}/ou/{organizational_unit_id}/ou/{organizational_unit_id}/account/{account_id} where there can be any number of organizational units. For Azure, it has the format of mg/{management_group_id}/mg/{management_group_id}/subscription/{subscription_id}/rg/{resource_group_name} where there can be any number of management groups.
        "service": "A String", # The service or resource provider associated with the resource.
        "type": "A String", # The full resource type of the resource.
      },
      "stateChange": "A String", # State change of the finding between the points in time.
    },
  ],
  "nextPageToken": "A String", # Token to retrieve the next page of results, or empty if there are no more results.
  "readTime": "A String", # Time used for executing the list request.
  "totalSize": 42, # The total number of findings matching the query.
}
list_next()
Retrieves the next page of results.

        Args:
          previous_request: The request for the previous page. (required)
          previous_response: The response from the request for the previous page. (required)

        Returns:
          A request object that you can call 'execute()' on to request the next
          page. Returns None if there are no more items in the collection.
        
patch(name, body=None, updateMask=None, x__xgafv=None)
Creates or updates a finding. The corresponding source must exist for a finding creation to succeed.

Args:
  name: string, The [relative resource name](https://cloud.google.com/apis/design/resource_names#relative_resource_name) of the finding. Example: "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}", "folders/{folder_id}/sources/{source_id}/findings/{finding_id}", "projects/{project_id}/sources/{source_id}/findings/{finding_id}". (required)
  body: object, The request body.
    The object takes the form of:

{ # Security Command Center finding. A finding is a record of assessment data like security, risk, health, or privacy, that is ingested into Security Command Center for presentation, notification, analysis, policy testing, and enforcement. For example, a cross-site scripting (XSS) vulnerability in an App Engine application is a finding.
  "access": { # Represents an access event. # Access details associated with the finding, such as more information on the caller, which method was accessed, and from where.
    "callerIp": "A String", # Caller's IP address, such as "1.1.1.1".
    "callerIpGeo": { # Represents a geographical location for a given access. # The caller IP's geolocation, which identifies where the call came from.
      "regionCode": "A String", # A CLDR.
    },
    "methodName": "A String", # The method that the service account called, e.g. "SetIamPolicy".
    "principalEmail": "A String", # Associated email, such as "foo@google.com". The email address of the authenticated user or a service account acting on behalf of a third party principal making the request. For third party identity callers, the `principal_subject` field is populated instead of this field. For privacy reasons, the principal email address is sometimes redacted. For more information, see [Caller identities in audit logs](https://cloud.google.com/logging/docs/audit#user-id).
    "principalSubject": "A String", # A string that represents the principal_subject that is associated with the identity. Unlike `principal_email`, `principal_subject` supports principals that aren't associated with email addresses, such as third party principals. For most identities, the format is `principal://iam.googleapis.com/{identity pool name}/subject/{subject}`. Some GKE identities, such as GKE_WORKLOAD, FREEFORM, and GKE_HUB_WORKLOAD, still use the legacy format `serviceAccount:{identity pool name}[{subject}]`.
    "serviceAccountDelegationInfo": [ # The identity delegation history of an authenticated service account that made the request. The `serviceAccountDelegationInfo[]` object contains information about the real authorities that try to access Google Cloud resources by delegating on a service account. When multiple authorities are present, they are guaranteed to be sorted based on the original ordering of the identity delegation events.
      { # Identity delegation history of an authenticated service account.
        "principalEmail": "A String", # The email address of a Google account.
        "principalSubject": "A String", # A string representing the principal_subject associated with the identity. As compared to `principal_email`, supports principals that aren't associated with email addresses, such as third party principals. For most identities, the format will be `principal://iam.googleapis.com/{identity pool name}/subjects/{subject}` except for some GKE identities (GKE_WORKLOAD, FREEFORM, GKE_HUB_WORKLOAD) that are still in the legacy format `serviceAccount:{identity pool name}[{subject}]`
      },
    ],
    "serviceAccountKeyName": "A String", # The name of the service account key that was used to create or exchange credentials when authenticating the service account that made the request. This is a scheme-less URI full resource name. For example: "//iam.googleapis.com/projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT}/keys/{key}".
    "serviceName": "A String", # This is the API service that the service account made a call to, e.g. "iam.googleapis.com"
    "userAgent": "A String", # The caller's user agent string associated with the finding.
    "userAgentFamily": "A String", # Type of user agent associated with the finding. For example, an operating system shell or an embedded or standalone application.
    "userName": "A String", # A string that represents a username. The username provided depends on the type of the finding and is likely not an IAM principal. For example, this can be a system username if the finding is related to a virtual machine, or it can be an application login username.
  },
  "application": { # Represents an application associated with a finding. # Represents an application associated with the finding.
    "baseUri": "A String", # The base URI that identifies the network location of the application in which the vulnerability was detected. For example, `http://example.com`.
    "fullUri": "A String", # The full URI with payload that can be used to reproduce the vulnerability. For example, `http://example.com?p=aMmYgI6H`.
  },
  "attackExposure": { # An attack exposure contains the results of an attack path simulation run. # The results of an attack path simulation relevant to this finding.
    "attackExposureResult": "A String", # The resource name of the attack path simulation result that contains the details regarding this attack exposure score. Example: organizations/123/simulations/456/attackExposureResults/789
    "exposedHighValueResourcesCount": 42, # The number of high value resources that are exposed as a result of this finding.
    "exposedLowValueResourcesCount": 42, # The number of high value resources that are exposed as a result of this finding.
    "exposedMediumValueResourcesCount": 42, # The number of medium value resources that are exposed as a result of this finding.
    "latestCalculationTime": "A String", # The most recent time the attack exposure was updated on this finding.
    "score": 3.14, # A number between 0 (inclusive) and infinity that represents how important this finding is to remediate. The higher the score, the more important it is to remediate.
    "state": "A String", # What state this AttackExposure is in. This captures whether or not an attack exposure has been calculated or not.
  },
  "backupDisasterRecovery": { # Information related to Google Cloud Backup and DR Service findings. # Fields related to Backup and DR findings.
    "appliance": "A String", # The name of the Backup and DR appliance that captures, moves, and manages the lifecycle of backup data. For example, `backup-server-57137`.
    "applications": [ # The names of Backup and DR applications. An application is a VM, database, or file system on a managed host monitored by a backup and recovery appliance. For example, `centos7-01-vol00`, `centos7-01-vol01`, `centos7-01-vol02`.
      "A String",
    ],
    "backupCreateTime": "A String", # The timestamp at which the Backup and DR backup was created.
    "backupTemplate": "A String", # The name of a Backup and DR template which comprises one or more backup policies. See the [Backup and DR documentation](https://cloud.google.com/backup-disaster-recovery/docs/concepts/backup-plan#temp) for more information. For example, `snap-ov`.
    "backupType": "A String", # The backup type of the Backup and DR image. For example, `Snapshot`, `Remote Snapshot`, `OnVault`.
    "host": "A String", # The name of a Backup and DR host, which is managed by the backup and recovery appliance and known to the management console. The host can be of type Generic (for example, Compute Engine, SQL Server, Oracle DB, SMB file system, etc.), vCenter, or an ESX server. See the [Backup and DR documentation on hosts](https://cloud.google.com/backup-disaster-recovery/docs/configuration/manage-hosts-and-their-applications) for more information. For example, `centos7-01`.
    "policies": [ # The names of Backup and DR policies that are associated with a template and that define when to run a backup, how frequently to run a backup, and how long to retain the backup image. For example, `onvaults`.
      "A String",
    ],
    "policyOptions": [ # The names of Backup and DR advanced policy options of a policy applying to an application. See the [Backup and DR documentation on policy options](https://cloud.google.com/backup-disaster-recovery/docs/create-plan/policy-settings). For example, `skipofflineappsincongrp, nounmap`.
      "A String",
    ],
    "profile": "A String", # The name of the Backup and DR resource profile that specifies the storage media for backups of application and VM data. See the [Backup and DR documentation on profiles](https://cloud.google.com/backup-disaster-recovery/docs/concepts/backup-plan#profile). For example, `GCP`.
    "storagePool": "A String", # The name of the Backup and DR storage pool that the backup and recovery appliance is storing data in. The storage pool could be of type Cloud, Primary, Snapshot, or OnVault. See the [Backup and DR documentation on storage pools](https://cloud.google.com/backup-disaster-recovery/docs/concepts/storage-pools). For example, `DiskPoolOne`.
  },
  "canonicalName": "A String", # The canonical name of the finding. It's either "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}", "folders/{folder_id}/sources/{source_id}/findings/{finding_id}" or "projects/{project_number}/sources/{source_id}/findings/{finding_id}", depending on the closest CRM ancestor of the resource associated with the finding.
  "category": "A String", # The additional taxonomy group within findings from a given source. This field is immutable after creation time. Example: "XSS_FLASH_INJECTION"
  "cloudArmor": { # Fields related to Google Cloud Armor findings. # Fields related to Cloud Armor findings.
    "adaptiveProtection": { # Information about [Google Cloud Armor Adaptive Protection](https://cloud.google.com/armor/docs/cloud-armor-overview#google-cloud-armor-adaptive-protection). # Information about potential Layer 7 DDoS attacks identified by [Google Cloud Armor Adaptive Protection](https://cloud.google.com/armor/docs/adaptive-protection-overview).
      "confidence": 3.14, # A score of 0 means that there is low confidence that the detected event is an actual attack. A score of 1 means that there is high confidence that the detected event is an attack. See the [Adaptive Protection documentation](https://cloud.google.com/armor/docs/adaptive-protection-overview#configure-alert-tuning) for further explanation.
    },
    "attack": { # Information about DDoS attack volume and classification. # Information about DDoS attack volume and classification.
      "classification": "A String", # Type of attack, for example, 'SYN-flood', 'NTP-udp', or 'CHARGEN-udp'.
      "volumeBps": 42, # Total BPS (bytes per second) volume of attack.
      "volumePps": 42, # Total PPS (packets per second) volume of attack.
    },
    "duration": "A String", # Duration of attack from the start until the current moment (updated every 5 minutes).
    "requests": { # Information about the requests relevant to the finding. # Information about incoming requests evaluated by [Google Cloud Armor security policies](https://cloud.google.com/armor/docs/security-policy-overview).
      "longTermAllowed": 42, # Allowed RPS (requests per second) over the long term.
      "longTermDenied": 42, # Denied RPS (requests per second) over the long term.
      "ratio": 3.14, # For 'Increasing deny ratio', the ratio is the denied traffic divided by the allowed traffic. For 'Allowed traffic spike', the ratio is the allowed traffic in the short term divided by allowed traffic in the long term.
      "shortTermAllowed": 42, # Allowed RPS (requests per second) in the short term.
    },
    "securityPolicy": { # Information about the [Google Cloud Armor security policy](https://cloud.google.com/armor/docs/security-policy-overview) relevant to the finding. # Information about the [Google Cloud Armor security policy](https://cloud.google.com/armor/docs/security-policy-overview) relevant to the finding.
      "name": "A String", # The name of the Google Cloud Armor security policy, for example, "my-security-policy".
      "preview": True or False, # Whether or not the associated rule or policy is in preview mode.
      "type": "A String", # The type of Google Cloud Armor security policy for example, 'backend security policy', 'edge security policy', 'network edge security policy', or 'always-on DDoS protection'.
    },
    "threatVector": "A String", # Distinguish between volumetric & protocol DDoS attack and application layer attacks. For example, "L3_4" for Layer 3 and Layer 4 DDoS attacks, or "L_7" for Layer 7 DDoS attacks.
  },
  "cloudDlpDataProfile": { # The [data profile](https://cloud.google.com/dlp/docs/data-profiles) associated with the finding. # Cloud DLP data profile that is associated with the finding.
    "dataProfile": "A String", # Name of the data profile, for example, `projects/123/locations/europe/tableProfiles/8383929`.
    "parentType": "A String", # The resource hierarchy level at which the data profile was generated.
  },
  "cloudDlpInspection": { # Details about the Cloud Data Loss Prevention (Cloud DLP) [inspection job](https://cloud.google.com/dlp/docs/concepts-job-triggers) that produced the finding. # Cloud Data Loss Prevention (Cloud DLP) inspection results that are associated with the finding.
    "fullScan": True or False, # Whether Cloud DLP scanned the complete resource or a sampled subset.
    "infoType": "A String", # The type of information (or *[infoType](https://cloud.google.com/dlp/docs/infotypes-reference)*) found, for example, `EMAIL_ADDRESS` or `STREET_ADDRESS`.
    "infoTypeCount": "A String", # The number of times Cloud DLP found this infoType within this job and resource.
    "inspectJob": "A String", # Name of the inspection job, for example, `projects/123/locations/europe/dlpJobs/i-8383929`.
  },
  "compliances": [ # Contains compliance information for security standards associated to the finding.
    { # Contains compliance information about a security standard indicating unmet recommendations.
      "ids": [ # Policies within the standard or benchmark, for example, A.12.4.1
        "A String",
      ],
      "standard": "A String", # Industry-wide compliance standards or benchmarks, such as CIS, PCI, and OWASP.
      "version": "A String", # Version of the standard or benchmark, for example, 1.1
    },
  ],
  "connections": [ # Contains information about the IP connection associated with the finding.
    { # Contains information about the IP connection associated with the finding.
      "destinationIp": "A String", # Destination IP address. Not present for sockets that are listening and not connected.
      "destinationPort": 42, # Destination port. Not present for sockets that are listening and not connected.
      "protocol": "A String", # IANA Internet Protocol Number such as TCP(6) and UDP(17).
      "sourceIp": "A String", # Source IP address.
      "sourcePort": 42, # Source port.
    },
  ],
  "contacts": { # Output only. Map containing the points of contact for the given finding. The key represents the type of contact, while the value contains a list of all the contacts that pertain. Please refer to: https://cloud.google.com/resource-manager/docs/managing-notification-contacts#notification-categories { "security": { "contacts": [ { "email": "person1@company.com" }, { "email": "person2@company.com" } ] } }
    "a_key": { # Details about specific contacts
      "contacts": [ # A list of contacts
        { # The email address of a contact.
          "email": "A String", # An email address. For example, "`person123@company.com`".
        },
      ],
    },
  },
  "containers": [ # Containers associated with the finding. This field provides information for both Kubernetes and non-Kubernetes containers.
    { # Container associated with the finding.
      "createTime": "A String", # The time that the container was created.
      "imageId": "A String", # Optional container image ID, if provided by the container runtime. Uniquely identifies the container image launched using a container image digest.
      "labels": [ # Container labels, as provided by the container runtime.
        { # Represents a generic name-value label. A label has separate name and value fields to support filtering with the `contains()` function. For more information, see [Filtering on array-type fields](https://cloud.google.com/security-command-center/docs/how-to-api-list-findings#array-contains-filtering).
          "name": "A String", # Name of the label.
          "value": "A String", # Value that corresponds to the label's name.
        },
      ],
      "name": "A String", # Name of the container.
      "uri": "A String", # Container image URI provided when configuring a pod or container. This string can identify a container image version using mutable tags.
    },
  ],
  "createTime": "A String", # The time at which the finding was created in Security Command Center.
  "database": { # Represents database access information, such as queries. A database may be a sub-resource of an instance (as in the case of Cloud SQL instances or Cloud Spanner instances), or the database instance itself. Some database resources might not have the [full resource name](https://google.aip.dev/122#full-resource-names) populated because these resource types, such as Cloud SQL databases, are not yet supported by Cloud Asset Inventory. In these cases only the display name is provided. # Database associated with the finding.
    "displayName": "A String", # The human-readable name of the database that the user connected to.
    "grantees": [ # The target usernames, roles, or groups of an SQL privilege grant, which is not an IAM policy change.
      "A String",
    ],
    "name": "A String", # Some database resources may not have the [full resource name](https://google.aip.dev/122#full-resource-names) populated because these resource types are not yet supported by Cloud Asset Inventory (e.g. Cloud SQL databases). In these cases only the display name will be provided. The [full resource name](https://google.aip.dev/122#full-resource-names) of the database that the user connected to, if it is supported by Cloud Asset Inventory.
    "query": "A String", # The SQL statement that is associated with the database access.
    "userName": "A String", # The username used to connect to the database. The username might not be an IAM principal and does not have a set format.
    "version": "A String", # The version of the database, for example, POSTGRES_14. See [the complete list](https://cloud.google.com/sql/docs/mysql/admin-api/rest/v1/SqlDatabaseVersion).
  },
  "description": "A String", # Contains more details about the finding.
  "eventTime": "A String", # The time the finding was first detected. If an existing finding is updated, then this is the time the update occurred. For example, if the finding represents an open firewall, this property captures the time the detector believes the firewall became open. The accuracy is determined by the detector. If the finding is later resolved, then this time reflects when the finding was resolved. This must not be set to a value greater than the current timestamp.
  "exfiltration": { # Exfiltration represents a data exfiltration attempt from one or more sources to one or more targets. The `sources` attribute lists the sources of the exfiltrated data. The `targets` attribute lists the destinations the data was copied to. # Represents exfiltrations associated with the finding.
    "sources": [ # If there are multiple sources, then the data is considered "joined" between them. For instance, BigQuery can join multiple tables, and each table would be considered a source.
      { # Resource where data was exfiltrated from or exfiltrated to.
        "components": [ # Subcomponents of the asset that was exfiltrated, like URIs used during exfiltration, table names, databases, and filenames. For example, multiple tables might have been exfiltrated from the same Cloud SQL instance, or multiple files might have been exfiltrated from the same Cloud Storage bucket.
          "A String",
        ],
        "name": "A String", # The resource's [full resource name](https://cloud.google.com/apis/design/resource_names#full_resource_name).
      },
    ],
    "targets": [ # If there are multiple targets, each target would get a complete copy of the "joined" source data.
      { # Resource where data was exfiltrated from or exfiltrated to.
        "components": [ # Subcomponents of the asset that was exfiltrated, like URIs used during exfiltration, table names, databases, and filenames. For example, multiple tables might have been exfiltrated from the same Cloud SQL instance, or multiple files might have been exfiltrated from the same Cloud Storage bucket.
          "A String",
        ],
        "name": "A String", # The resource's [full resource name](https://cloud.google.com/apis/design/resource_names#full_resource_name).
      },
    ],
    "totalExfiltratedBytes": "A String", # Total exfiltrated bytes processed for the entire job.
  },
  "externalSystems": { # Output only. Third party SIEM/SOAR fields within SCC, contains external system information and external system finding fields.
    "a_key": { # Representation of third party SIEM/SOAR fields within SCC.
      "assignees": [ # References primary/secondary etc assignees in the external system.
        "A String",
      ],
      "caseCloseTime": "A String", # The time when the case was closed, as reported by the external system.
      "caseCreateTime": "A String", # The time when the case was created, as reported by the external system.
      "casePriority": "A String", # The priority of the finding's corresponding case in the external system.
      "caseSla": "A String", # The SLA of the finding's corresponding case in the external system.
      "caseUri": "A String", # The link to the finding's corresponding case in the external system.
      "externalSystemUpdateTime": "A String", # The time when the case was last updated, as reported by the external system.
      "externalUid": "A String", # The identifier that's used to track the finding's corresponding case in the external system.
      "name": "A String", # Full resource name of the external system, for example: "organizations/1234/sources/5678/findings/123456/externalSystems/jira", "folders/1234/sources/5678/findings/123456/externalSystems/jira", "projects/1234/sources/5678/findings/123456/externalSystems/jira"
      "status": "A String", # The most recent status of the finding's corresponding case, as reported by the external system.
      "ticketInfo": { # Information about the ticket, if any, that is being used to track the resolution of the issue that is identified by this finding. # Information about the ticket, if any, that is being used to track the resolution of the issue that is identified by this finding.
        "assignee": "A String", # The assignee of the ticket in the ticket system.
        "description": "A String", # The description of the ticket in the ticket system.
        "id": "A String", # The identifier of the ticket in the ticket system.
        "status": "A String", # The latest status of the ticket, as reported by the ticket system.
        "updateTime": "A String", # The time when the ticket was last updated, as reported by the ticket system.
        "uri": "A String", # The link to the ticket in the ticket system.
      },
    },
  },
  "externalUri": "A String", # The URI that, if available, points to a web page outside of Security Command Center where additional information about the finding can be found. This field is guaranteed to be either empty or a well formed URL.
  "files": [ # File associated with the finding.
    { # File information about the related binary/library used by an executable, or the script used by a script interpreter
      "contents": "A String", # Prefix of the file contents as a JSON-encoded string.
      "diskPath": { # Path of the file in terms of underlying disk/partition identifiers. # Path of the file in terms of underlying disk/partition identifiers.
        "partitionUuid": "A String", # UUID of the partition (format https://wiki.archlinux.org/title/persistent_block_device_naming#by-uuid)
        "relativePath": "A String", # Relative path of the file in the partition as a JSON encoded string. Example: /home/user1/executable_file.sh
      },
      "hashedSize": "A String", # The length in bytes of the file prefix that was hashed. If hashed_size == size, any hashes reported represent the entire file.
      "partiallyHashed": True or False, # True when the hash covers only a prefix of the file.
      "path": "A String", # Absolute path of the file as a JSON encoded string.
      "sha256": "A String", # SHA256 hash of the first hashed_size bytes of the file encoded as a hex string. If hashed_size == size, sha256 represents the SHA256 hash of the entire file.
      "size": "A String", # Size of the file in bytes.
    },
  ],
  "findingClass": "A String", # The class of the finding.
  "iamBindings": [ # Represents IAM bindings associated with the finding.
    { # Represents a particular IAM binding, which captures a member's role addition, removal, or state.
      "action": "A String", # The action that was performed on a Binding.
      "member": "A String", # A single identity requesting access for a Cloud Platform resource, for example, "foo@google.com".
      "role": "A String", # Role that is assigned to "members". For example, "roles/viewer", "roles/editor", or "roles/owner".
    },
  ],
  "indicator": { # Represents what's commonly known as an _indicator of compromise_ (IoC) in computer forensics. This is an artifact observed on a network or in an operating system that, with high confidence, indicates a computer intrusion. For more information, see [Indicator of compromise](https://en.wikipedia.org/wiki/Indicator_of_compromise). # Represents what's commonly known as an *indicator of compromise* (IoC) in computer forensics. This is an artifact observed on a network or in an operating system that, with high confidence, indicates a computer intrusion. For more information, see [Indicator of compromise](https://en.wikipedia.org/wiki/Indicator_of_compromise).
    "domains": [ # List of domains associated to the Finding.
      "A String",
    ],
    "ipAddresses": [ # The list of IP addresses that are associated with the finding.
      "A String",
    ],
    "signatures": [ # The list of matched signatures indicating that the given process is present in the environment.
      { # Indicates what signature matched this process.
        "memoryHashSignature": { # A signature corresponding to memory page hashes. # Signature indicating that a binary family was matched.
          "binaryFamily": "A String", # The binary family.
          "detections": [ # The list of memory hash detections contributing to the binary family match.
            { # Memory hash detection contributing to the binary family match.
              "binary": "A String", # The name of the binary associated with the memory hash signature detection.
              "percentPagesMatched": 3.14, # The percentage of memory page hashes in the signature that were matched.
            },
          ],
        },
        "signatureType": "A String", # Describes the type of resource associated with the signature.
        "yaraRuleSignature": { # A signature corresponding to a YARA rule. # Signature indicating that a YARA rule was matched.
          "yaraRule": "A String", # The name of the YARA rule.
        },
      },
    ],
    "uris": [ # The list of URIs associated to the Findings.
      "A String",
    ],
  },
  "kernelRootkit": { # Kernel mode rootkit signatures. # Signature of the kernel rootkit.
    "name": "A String", # Rootkit name, when available.
    "unexpectedCodeModification": True or False, # True if unexpected modifications of kernel code memory are present.
    "unexpectedFtraceHandler": True or False, # True if `ftrace` points are present with callbacks pointing to regions that are not in the expected kernel or module code range.
    "unexpectedInterruptHandler": True or False, # True if interrupt handlers that are are not in the expected kernel or module code regions are present.
    "unexpectedKernelCodePages": True or False, # True if kernel code pages that are not in the expected kernel or module code regions are present.
    "unexpectedKprobeHandler": True or False, # True if `kprobe` points are present with callbacks pointing to regions that are not in the expected kernel or module code range.
    "unexpectedProcessesInRunqueue": True or False, # True if unexpected processes in the scheduler run queue are present. Such processes are in the run queue, but not in the process task list.
    "unexpectedReadOnlyDataModification": True or False, # True if unexpected modifications of kernel read-only data memory are present.
    "unexpectedSystemCallHandler": True or False, # True if system call handlers that are are not in the expected kernel or module code regions are present.
  },
  "kubernetes": { # Kubernetes-related attributes. # Kubernetes resources associated with the finding.
    "accessReviews": [ # Provides information on any Kubernetes access reviews (privilege checks) relevant to the finding.
      { # Conveys information about a Kubernetes access review (such as one returned by a [`kubectl auth can-i`](https://kubernetes.io/docs/reference/access-authn-authz/authorization/#checking-api-access) command) that was involved in a finding.
        "group": "A String", # The API group of the resource. "*" means all.
        "name": "A String", # The name of the resource being requested. Empty means all.
        "ns": "A String", # Namespace of the action being requested. Currently, there is no distinction between no namespace and all namespaces. Both are represented by "" (empty).
        "resource": "A String", # The optional resource type requested. "*" means all.
        "subresource": "A String", # The optional subresource type.
        "verb": "A String", # A Kubernetes resource API verb, like get, list, watch, create, update, delete, proxy. "*" means all.
        "version": "A String", # The API version of the resource. "*" means all.
      },
    ],
    "bindings": [ # Provides Kubernetes role binding information for findings that involve [RoleBindings or ClusterRoleBindings](https://cloud.google.com/kubernetes-engine/docs/how-to/role-based-access-control).
      { # Represents a Kubernetes RoleBinding or ClusterRoleBinding.
        "name": "A String", # Name for the binding.
        "ns": "A String", # Namespace for the binding.
        "role": { # Kubernetes Role or ClusterRole. # The Role or ClusterRole referenced by the binding.
          "kind": "A String", # Role type.
          "name": "A String", # Role name.
          "ns": "A String", # Role namespace.
        },
        "subjects": [ # Represents one or more subjects that are bound to the role. Not always available for PATCH requests.
          { # Represents a Kubernetes subject.
            "kind": "A String", # Authentication type for the subject.
            "name": "A String", # Name for the subject.
            "ns": "A String", # Namespace for the subject.
          },
        ],
      },
    ],
    "nodePools": [ # GKE [node pools](https://cloud.google.com/kubernetes-engine/docs/concepts/node-pools) associated with the finding. This field contains node pool information for each node, when it is available.
      { # Provides GKE node pool information.
        "name": "A String", # Kubernetes node pool name.
        "nodes": [ # Nodes associated with the finding.
          { # Kubernetes nodes associated with the finding.
            "name": "A String", # [Full resource name](https://google.aip.dev/122#full-resource-names) of the Compute Engine VM running the cluster node.
          },
        ],
      },
    ],
    "nodes": [ # Provides Kubernetes [node](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-architecture#nodes) information.
      { # Kubernetes nodes associated with the finding.
        "name": "A String", # [Full resource name](https://google.aip.dev/122#full-resource-names) of the Compute Engine VM running the cluster node.
      },
    ],
    "objects": [ # Kubernetes objects related to the finding.
      { # Kubernetes object related to the finding, uniquely identified by GKNN. Used if the object Kind is not one of Pod, Node, NodePool, Binding, or AccessReview.
        "containers": [ # Pod containers associated with this finding, if any.
          { # Container associated with the finding.
            "createTime": "A String", # The time that the container was created.
            "imageId": "A String", # Optional container image ID, if provided by the container runtime. Uniquely identifies the container image launched using a container image digest.
            "labels": [ # Container labels, as provided by the container runtime.
              { # Represents a generic name-value label. A label has separate name and value fields to support filtering with the `contains()` function. For more information, see [Filtering on array-type fields](https://cloud.google.com/security-command-center/docs/how-to-api-list-findings#array-contains-filtering).
                "name": "A String", # Name of the label.
                "value": "A String", # Value that corresponds to the label's name.
              },
            ],
            "name": "A String", # Name of the container.
            "uri": "A String", # Container image URI provided when configuring a pod or container. This string can identify a container image version using mutable tags.
          },
        ],
        "group": "A String", # Kubernetes object group, such as "policy.k8s.io/v1".
        "kind": "A String", # Kubernetes object kind, such as "Namespace".
        "name": "A String", # Kubernetes object name. For details see https://kubernetes.io/docs/concepts/overview/working-with-objects/names/.
        "ns": "A String", # Kubernetes object namespace. Must be a valid DNS label. Named "ns" to avoid collision with C++ namespace keyword. For details see https://kubernetes.io/docs/tasks/administer-cluster/namespaces/.
      },
    ],
    "pods": [ # Kubernetes [Pods](https://cloud.google.com/kubernetes-engine/docs/concepts/pod) associated with the finding. This field contains Pod records for each container that is owned by a Pod.
      { # A Kubernetes Pod.
        "containers": [ # Pod containers associated with this finding, if any.
          { # Container associated with the finding.
            "createTime": "A String", # The time that the container was created.
            "imageId": "A String", # Optional container image ID, if provided by the container runtime. Uniquely identifies the container image launched using a container image digest.
            "labels": [ # Container labels, as provided by the container runtime.
              { # Represents a generic name-value label. A label has separate name and value fields to support filtering with the `contains()` function. For more information, see [Filtering on array-type fields](https://cloud.google.com/security-command-center/docs/how-to-api-list-findings#array-contains-filtering).
                "name": "A String", # Name of the label.
                "value": "A String", # Value that corresponds to the label's name.
              },
            ],
            "name": "A String", # Name of the container.
            "uri": "A String", # Container image URI provided when configuring a pod or container. This string can identify a container image version using mutable tags.
          },
        ],
        "labels": [ # Pod labels. For Kubernetes containers, these are applied to the container.
          { # Represents a generic name-value label. A label has separate name and value fields to support filtering with the `contains()` function. For more information, see [Filtering on array-type fields](https://cloud.google.com/security-command-center/docs/how-to-api-list-findings#array-contains-filtering).
            "name": "A String", # Name of the label.
            "value": "A String", # Value that corresponds to the label's name.
          },
        ],
        "name": "A String", # Kubernetes Pod name.
        "ns": "A String", # Kubernetes Pod namespace.
      },
    ],
    "roles": [ # Provides Kubernetes role information for findings that involve [Roles or ClusterRoles](https://cloud.google.com/kubernetes-engine/docs/how-to/role-based-access-control).
      { # Kubernetes Role or ClusterRole.
        "kind": "A String", # Role type.
        "name": "A String", # Role name.
        "ns": "A String", # Role namespace.
      },
    ],
  },
  "loadBalancers": [ # The load balancers associated with the finding.
    { # Contains information related to the load balancer associated with the finding.
      "name": "A String", # The name of the load balancer associated with the finding.
    },
  ],
  "logEntries": [ # Log entries that are relevant to the finding.
    { # An individual entry in a log.
      "cloudLoggingEntry": { # Metadata taken from a [Cloud Logging LogEntry](https://cloud.google.com/logging/docs/reference/v2/rest/v2/LogEntry) # An individual entry in a log stored in Cloud Logging.
        "insertId": "A String", # A unique identifier for the log entry.
        "logId": "A String", # The type of the log (part of `log_name`. `log_name` is the resource name of the log to which this log entry belongs). For example: `cloudresourcemanager.googleapis.com/activity`. Note that this field is not URL-encoded, unlike the `LOG_ID` field in `LogEntry`.
        "resourceContainer": "A String", # The organization, folder, or project of the monitored resource that produced this log entry.
        "timestamp": "A String", # The time the event described by the log entry occurred.
      },
    },
  ],
  "mitreAttack": { # MITRE ATT&CK tactics and techniques related to this finding. See: https://attack.mitre.org # MITRE ATT&CK tactics and techniques related to this finding. See: https://attack.mitre.org
    "additionalTactics": [ # Additional MITRE ATT&CK tactics related to this finding, if any.
      "A String",
    ],
    "additionalTechniques": [ # Additional MITRE ATT&CK techniques related to this finding, if any, along with any of their respective parent techniques.
      "A String",
    ],
    "primaryTactic": "A String", # The MITRE ATT&CK tactic most closely represented by this finding, if any.
    "primaryTechniques": [ # The MITRE ATT&CK technique most closely represented by this finding, if any. primary_techniques is a repeated field because there are multiple levels of MITRE ATT&CK techniques. If the technique most closely represented by this finding is a sub-technique (e.g. `SCANNING_IP_BLOCKS`), both the sub-technique and its parent technique(s) will be listed (e.g. `SCANNING_IP_BLOCKS`, `ACTIVE_SCANNING`).
      "A String",
    ],
    "version": "A String", # The MITRE ATT&CK version referenced by the above fields. E.g. "8".
  },
  "moduleName": "A String", # Unique identifier of the module which generated the finding. Example: folders/598186756061/securityHealthAnalyticsSettings/customModules/56799441161885
  "mute": "A String", # Indicates the mute state of a finding (either muted, unmuted or undefined). Unlike other attributes of a finding, a finding provider shouldn't set the value of mute.
  "muteInitiator": "A String", # Records additional information about the mute operation, for example, the [mute configuration](/security-command-center/docs/how-to-mute-findings) that muted the finding and the user who muted the finding.
  "muteUpdateTime": "A String", # Output only. The most recent time this finding was muted or unmuted.
  "name": "A String", # The [relative resource name](https://cloud.google.com/apis/design/resource_names#relative_resource_name) of the finding. Example: "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}", "folders/{folder_id}/sources/{source_id}/findings/{finding_id}", "projects/{project_id}/sources/{source_id}/findings/{finding_id}".
  "nextSteps": "A String", # Steps to address the finding.
  "notebook": { # Represents a Jupyter notebook IPYNB file, such as a [Colab Enterprise notebook](https://cloud.google.com/colab/docs/introduction) file, that is associated with a finding. # Notebook associated with the finding.
    "lastAuthor": "A String", # The user ID of the latest author to modify the notebook.
    "name": "A String", # The name of the notebook.
    "notebookUpdateTime": "A String", # The most recent time the notebook was updated.
    "service": "A String", # The source notebook service, for example, "Colab Enterprise".
  },
  "orgPolicies": [ # Contains information about the org policies associated with the finding.
    { # Contains information about the org policies associated with the finding.
      "name": "A String", # The resource name of the org policy. Example: "organizations/{organization_id}/policies/{constraint_name}"
    },
  ],
  "parent": "A String", # The relative resource name of the source the finding belongs to. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name This field is immutable after creation time. For example: "organizations/{organization_id}/sources/{source_id}"
  "parentDisplayName": "A String", # Output only. The human readable display name of the finding source such as "Event Threat Detection" or "Security Health Analytics".
  "processes": [ # Represents operating system processes associated with the Finding.
    { # Represents an operating system process.
      "args": [ # Process arguments as JSON encoded strings.
        "A String",
      ],
      "argumentsTruncated": True or False, # True if `args` is incomplete.
      "binary": { # File information about the related binary/library used by an executable, or the script used by a script interpreter # File information for the process executable.
        "contents": "A String", # Prefix of the file contents as a JSON-encoded string.
        "diskPath": { # Path of the file in terms of underlying disk/partition identifiers. # Path of the file in terms of underlying disk/partition identifiers.
          "partitionUuid": "A String", # UUID of the partition (format https://wiki.archlinux.org/title/persistent_block_device_naming#by-uuid)
          "relativePath": "A String", # Relative path of the file in the partition as a JSON encoded string. Example: /home/user1/executable_file.sh
        },
        "hashedSize": "A String", # The length in bytes of the file prefix that was hashed. If hashed_size == size, any hashes reported represent the entire file.
        "partiallyHashed": True or False, # True when the hash covers only a prefix of the file.
        "path": "A String", # Absolute path of the file as a JSON encoded string.
        "sha256": "A String", # SHA256 hash of the first hashed_size bytes of the file encoded as a hex string. If hashed_size == size, sha256 represents the SHA256 hash of the entire file.
        "size": "A String", # Size of the file in bytes.
      },
      "envVariables": [ # Process environment variables.
        { # A name-value pair representing an environment variable used in an operating system process.
          "name": "A String", # Environment variable name as a JSON encoded string.
          "val": "A String", # Environment variable value as a JSON encoded string.
        },
      ],
      "envVariablesTruncated": True or False, # True if `env_variables` is incomplete.
      "libraries": [ # File information for libraries loaded by the process.
        { # File information about the related binary/library used by an executable, or the script used by a script interpreter
          "contents": "A String", # Prefix of the file contents as a JSON-encoded string.
          "diskPath": { # Path of the file in terms of underlying disk/partition identifiers. # Path of the file in terms of underlying disk/partition identifiers.
            "partitionUuid": "A String", # UUID of the partition (format https://wiki.archlinux.org/title/persistent_block_device_naming#by-uuid)
            "relativePath": "A String", # Relative path of the file in the partition as a JSON encoded string. Example: /home/user1/executable_file.sh
          },
          "hashedSize": "A String", # The length in bytes of the file prefix that was hashed. If hashed_size == size, any hashes reported represent the entire file.
          "partiallyHashed": True or False, # True when the hash covers only a prefix of the file.
          "path": "A String", # Absolute path of the file as a JSON encoded string.
          "sha256": "A String", # SHA256 hash of the first hashed_size bytes of the file encoded as a hex string. If hashed_size == size, sha256 represents the SHA256 hash of the entire file.
          "size": "A String", # Size of the file in bytes.
        },
      ],
      "name": "A String", # The process name, as displayed in utilities like `top` and `ps`. This name can be accessed through `/proc/[pid]/comm` and changed with `prctl(PR_SET_NAME)`.
      "parentPid": "A String", # The parent process ID.
      "pid": "A String", # The process ID.
      "script": { # File information about the related binary/library used by an executable, or the script used by a script interpreter # When the process represents the invocation of a script, `binary` provides information about the interpreter, while `script` provides information about the script file provided to the interpreter.
        "contents": "A String", # Prefix of the file contents as a JSON-encoded string.
        "diskPath": { # Path of the file in terms of underlying disk/partition identifiers. # Path of the file in terms of underlying disk/partition identifiers.
          "partitionUuid": "A String", # UUID of the partition (format https://wiki.archlinux.org/title/persistent_block_device_naming#by-uuid)
          "relativePath": "A String", # Relative path of the file in the partition as a JSON encoded string. Example: /home/user1/executable_file.sh
        },
        "hashedSize": "A String", # The length in bytes of the file prefix that was hashed. If hashed_size == size, any hashes reported represent the entire file.
        "partiallyHashed": True or False, # True when the hash covers only a prefix of the file.
        "path": "A String", # Absolute path of the file as a JSON encoded string.
        "sha256": "A String", # SHA256 hash of the first hashed_size bytes of the file encoded as a hex string. If hashed_size == size, sha256 represents the SHA256 hash of the entire file.
        "size": "A String", # Size of the file in bytes.
      },
    },
  ],
  "resourceName": "A String", # For findings on Google Cloud resources, the full resource name of the Google Cloud resource this finding is for. See: https://cloud.google.com/apis/design/resource_names#full_resource_name When the finding is for a non-Google Cloud resource, the resourceName can be a customer or partner defined string. This field is immutable after creation time.
  "securityMarks": { # User specified security marks that are attached to the parent Security Command Center resource. Security marks are scoped within a Security Command Center organization -- they can be modified and viewed by all users who have proper permissions on the organization. # Output only. User specified security marks. These marks are entirely managed by the user and come from the SecurityMarks resource that belongs to the finding.
    "canonicalName": "A String", # The canonical name of the marks. Examples: "organizations/{organization_id}/assets/{asset_id}/securityMarks" "folders/{folder_id}/assets/{asset_id}/securityMarks" "projects/{project_number}/assets/{asset_id}/securityMarks" "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}/securityMarks" "folders/{folder_id}/sources/{source_id}/findings/{finding_id}/securityMarks" "projects/{project_number}/sources/{source_id}/findings/{finding_id}/securityMarks"
    "marks": { # Mutable user specified security marks belonging to the parent resource. Constraints are as follows: * Keys and values are treated as case insensitive * Keys must be between 1 - 256 characters (inclusive) * Keys must be letters, numbers, underscores, or dashes * Values have leading and trailing whitespace trimmed, remaining characters must be between 1 - 4096 characters (inclusive)
      "a_key": "A String",
    },
    "name": "A String", # The relative resource name of the SecurityMarks. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Examples: "organizations/{organization_id}/assets/{asset_id}/securityMarks" "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}/securityMarks".
  },
  "securityPosture": { # Represents a posture that is deployed on Google Cloud by the Security Command Center Posture Management service. A posture contains one or more policy sets. A policy set is a group of policies that enforce a set of security rules on Google Cloud. # The security posture associated with the finding.
    "changedPolicy": "A String", # The name of the updated policy, for example, `projects/{project_id}/policies/{constraint_name}`.
    "name": "A String", # Name of the posture, for example, `CIS-Posture`.
    "policy": "A String", # The ID of the updated policy, for example, `compute-policy-1`.
    "policyDriftDetails": [ # The details about a change in an updated policy that violates the deployed posture.
      { # The policy field that violates the deployed posture and its expected and detected values.
        "detectedValue": "A String", # The detected value that violates the deployed posture, for example, `false` or `allowed_values={"projects/22831892"}`.
        "expectedValue": "A String", # The value of this field that was configured in a posture, for example, `true` or `allowed_values={"projects/29831892"}`.
        "field": "A String", # The name of the updated field, for example constraint.implementation.policy_rules[0].enforce
      },
    ],
    "policySet": "A String", # The name of the updated policyset, for example, `cis-policyset`.
    "postureDeployment": "A String", # The name of the posture deployment, for example, `organizations/{org_id}/posturedeployments/{posture_deployment_id}`.
    "postureDeploymentResource": "A String", # The project, folder, or organization on which the posture is deployed, for example, `projects/{project_number}`.
    "revisionId": "A String", # The version of the posture, for example, `c7cfa2a8`.
  },
  "severity": "A String", # The severity of the finding. This field is managed by the source that writes the finding.
  "sourceProperties": { # Source specific properties. These properties are managed by the source that writes the finding. The key names in the source_properties map must be between 1 and 255 characters, and must start with a letter and contain alphanumeric characters or underscores only.
    "a_key": "",
  },
  "state": "A String", # The state of the finding.
  "vulnerability": { # Refers to common vulnerability fields e.g. cve, cvss, cwe etc. # Represents vulnerability-specific fields like CVE and CVSS scores. CVE stands for Common Vulnerabilities and Exposures (https://cve.mitre.org/about/)
    "cve": { # CVE stands for Common Vulnerabilities and Exposures. Information from the [CVE record](https://www.cve.org/ResourcesSupport/Glossary) that describes this vulnerability. # CVE stands for Common Vulnerabilities and Exposures (https://cve.mitre.org/about/)
      "cvssv3": { # Common Vulnerability Scoring System version 3. # Describe Common Vulnerability Scoring System specified at https://www.first.org/cvss/v3.1/specification-document
        "attackComplexity": "A String", # This metric describes the conditions beyond the attacker's control that must exist in order to exploit the vulnerability.
        "attackVector": "A String", # Base Metrics Represents the intrinsic characteristics of a vulnerability that are constant over time and across user environments. This metric reflects the context by which vulnerability exploitation is possible.
        "availabilityImpact": "A String", # This metric measures the impact to the availability of the impacted component resulting from a successfully exploited vulnerability.
        "baseScore": 3.14, # The base score is a function of the base metric scores.
        "confidentialityImpact": "A String", # This metric measures the impact to the confidentiality of the information resources managed by a software component due to a successfully exploited vulnerability.
        "integrityImpact": "A String", # This metric measures the impact to integrity of a successfully exploited vulnerability.
        "privilegesRequired": "A String", # This metric describes the level of privileges an attacker must possess before successfully exploiting the vulnerability.
        "scope": "A String", # The Scope metric captures whether a vulnerability in one vulnerable component impacts resources in components beyond its security scope.
        "userInteraction": "A String", # This metric captures the requirement for a human user, other than the attacker, to participate in the successful compromise of the vulnerable component.
      },
      "exploitationActivity": "A String", # The exploitation activity of the vulnerability in the wild.
      "id": "A String", # The unique identifier for the vulnerability. e.g. CVE-2021-34527
      "impact": "A String", # The potential impact of the vulnerability if it was to be exploited.
      "observedInTheWild": True or False, # Whether or not the vulnerability has been observed in the wild.
      "references": [ # Additional information about the CVE. e.g. https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-34527
        { # Additional Links
          "source": "A String", # Source of the reference e.g. NVD
          "uri": "A String", # Uri for the mentioned source e.g. https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-34527.
        },
      ],
      "upstreamFixAvailable": True or False, # Whether upstream fix is available for the CVE.
      "zeroDay": True or False, # Whether or not the vulnerability was zero day when the finding was published.
    },
    "fixedPackage": { # Package is a generic definition of a package. # The fixed package is relevant to the finding.
      "cpeUri": "A String", # The CPE URI where the vulnerability was detected.
      "packageName": "A String", # The name of the package where the vulnerability was detected.
      "packageType": "A String", # Type of package, for example, os, maven, or go.
      "packageVersion": "A String", # The version of the package.
    },
    "offendingPackage": { # Package is a generic definition of a package. # The offending package is relevant to the finding.
      "cpeUri": "A String", # The CPE URI where the vulnerability was detected.
      "packageName": "A String", # The name of the package where the vulnerability was detected.
      "packageType": "A String", # Type of package, for example, os, maven, or go.
      "packageVersion": "A String", # The version of the package.
    },
    "securityBulletin": { # SecurityBulletin are notifications of vulnerabilities of Google products. # The security bulletin is relevant to this finding.
      "bulletinId": "A String", # ID of the bulletin corresponding to the vulnerability.
      "submissionTime": "A String", # Submission time of this Security Bulletin.
      "suggestedUpgradeVersion": "A String", # This represents a version that the cluster receiving this notification should be upgraded to, based on its current version. For example, 1.15.0
    },
  },
}

  updateMask: string, The FieldMask to use when updating the finding resource. This field should not be specified when creating a finding. When updating a finding, an empty mask is treated as updating all mutable fields and replacing source_properties. Individual source_properties can be added/updated by using "source_properties." in the field mask.
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # Security Command Center finding. A finding is a record of assessment data like security, risk, health, or privacy, that is ingested into Security Command Center for presentation, notification, analysis, policy testing, and enforcement. For example, a cross-site scripting (XSS) vulnerability in an App Engine application is a finding.
  "access": { # Represents an access event. # Access details associated with the finding, such as more information on the caller, which method was accessed, and from where.
    "callerIp": "A String", # Caller's IP address, such as "1.1.1.1".
    "callerIpGeo": { # Represents a geographical location for a given access. # The caller IP's geolocation, which identifies where the call came from.
      "regionCode": "A String", # A CLDR.
    },
    "methodName": "A String", # The method that the service account called, e.g. "SetIamPolicy".
    "principalEmail": "A String", # Associated email, such as "foo@google.com". The email address of the authenticated user or a service account acting on behalf of a third party principal making the request. For third party identity callers, the `principal_subject` field is populated instead of this field. For privacy reasons, the principal email address is sometimes redacted. For more information, see [Caller identities in audit logs](https://cloud.google.com/logging/docs/audit#user-id).
    "principalSubject": "A String", # A string that represents the principal_subject that is associated with the identity. Unlike `principal_email`, `principal_subject` supports principals that aren't associated with email addresses, such as third party principals. For most identities, the format is `principal://iam.googleapis.com/{identity pool name}/subject/{subject}`. Some GKE identities, such as GKE_WORKLOAD, FREEFORM, and GKE_HUB_WORKLOAD, still use the legacy format `serviceAccount:{identity pool name}[{subject}]`.
    "serviceAccountDelegationInfo": [ # The identity delegation history of an authenticated service account that made the request. The `serviceAccountDelegationInfo[]` object contains information about the real authorities that try to access Google Cloud resources by delegating on a service account. When multiple authorities are present, they are guaranteed to be sorted based on the original ordering of the identity delegation events.
      { # Identity delegation history of an authenticated service account.
        "principalEmail": "A String", # The email address of a Google account.
        "principalSubject": "A String", # A string representing the principal_subject associated with the identity. As compared to `principal_email`, supports principals that aren't associated with email addresses, such as third party principals. For most identities, the format will be `principal://iam.googleapis.com/{identity pool name}/subjects/{subject}` except for some GKE identities (GKE_WORKLOAD, FREEFORM, GKE_HUB_WORKLOAD) that are still in the legacy format `serviceAccount:{identity pool name}[{subject}]`
      },
    ],
    "serviceAccountKeyName": "A String", # The name of the service account key that was used to create or exchange credentials when authenticating the service account that made the request. This is a scheme-less URI full resource name. For example: "//iam.googleapis.com/projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT}/keys/{key}".
    "serviceName": "A String", # This is the API service that the service account made a call to, e.g. "iam.googleapis.com"
    "userAgent": "A String", # The caller's user agent string associated with the finding.
    "userAgentFamily": "A String", # Type of user agent associated with the finding. For example, an operating system shell or an embedded or standalone application.
    "userName": "A String", # A string that represents a username. The username provided depends on the type of the finding and is likely not an IAM principal. For example, this can be a system username if the finding is related to a virtual machine, or it can be an application login username.
  },
  "application": { # Represents an application associated with a finding. # Represents an application associated with the finding.
    "baseUri": "A String", # The base URI that identifies the network location of the application in which the vulnerability was detected. For example, `http://example.com`.
    "fullUri": "A String", # The full URI with payload that can be used to reproduce the vulnerability. For example, `http://example.com?p=aMmYgI6H`.
  },
  "attackExposure": { # An attack exposure contains the results of an attack path simulation run. # The results of an attack path simulation relevant to this finding.
    "attackExposureResult": "A String", # The resource name of the attack path simulation result that contains the details regarding this attack exposure score. Example: organizations/123/simulations/456/attackExposureResults/789
    "exposedHighValueResourcesCount": 42, # The number of high value resources that are exposed as a result of this finding.
    "exposedLowValueResourcesCount": 42, # The number of high value resources that are exposed as a result of this finding.
    "exposedMediumValueResourcesCount": 42, # The number of medium value resources that are exposed as a result of this finding.
    "latestCalculationTime": "A String", # The most recent time the attack exposure was updated on this finding.
    "score": 3.14, # A number between 0 (inclusive) and infinity that represents how important this finding is to remediate. The higher the score, the more important it is to remediate.
    "state": "A String", # What state this AttackExposure is in. This captures whether or not an attack exposure has been calculated or not.
  },
  "backupDisasterRecovery": { # Information related to Google Cloud Backup and DR Service findings. # Fields related to Backup and DR findings.
    "appliance": "A String", # The name of the Backup and DR appliance that captures, moves, and manages the lifecycle of backup data. For example, `backup-server-57137`.
    "applications": [ # The names of Backup and DR applications. An application is a VM, database, or file system on a managed host monitored by a backup and recovery appliance. For example, `centos7-01-vol00`, `centos7-01-vol01`, `centos7-01-vol02`.
      "A String",
    ],
    "backupCreateTime": "A String", # The timestamp at which the Backup and DR backup was created.
    "backupTemplate": "A String", # The name of a Backup and DR template which comprises one or more backup policies. See the [Backup and DR documentation](https://cloud.google.com/backup-disaster-recovery/docs/concepts/backup-plan#temp) for more information. For example, `snap-ov`.
    "backupType": "A String", # The backup type of the Backup and DR image. For example, `Snapshot`, `Remote Snapshot`, `OnVault`.
    "host": "A String", # The name of a Backup and DR host, which is managed by the backup and recovery appliance and known to the management console. The host can be of type Generic (for example, Compute Engine, SQL Server, Oracle DB, SMB file system, etc.), vCenter, or an ESX server. See the [Backup and DR documentation on hosts](https://cloud.google.com/backup-disaster-recovery/docs/configuration/manage-hosts-and-their-applications) for more information. For example, `centos7-01`.
    "policies": [ # The names of Backup and DR policies that are associated with a template and that define when to run a backup, how frequently to run a backup, and how long to retain the backup image. For example, `onvaults`.
      "A String",
    ],
    "policyOptions": [ # The names of Backup and DR advanced policy options of a policy applying to an application. See the [Backup and DR documentation on policy options](https://cloud.google.com/backup-disaster-recovery/docs/create-plan/policy-settings). For example, `skipofflineappsincongrp, nounmap`.
      "A String",
    ],
    "profile": "A String", # The name of the Backup and DR resource profile that specifies the storage media for backups of application and VM data. See the [Backup and DR documentation on profiles](https://cloud.google.com/backup-disaster-recovery/docs/concepts/backup-plan#profile). For example, `GCP`.
    "storagePool": "A String", # The name of the Backup and DR storage pool that the backup and recovery appliance is storing data in. The storage pool could be of type Cloud, Primary, Snapshot, or OnVault. See the [Backup and DR documentation on storage pools](https://cloud.google.com/backup-disaster-recovery/docs/concepts/storage-pools). For example, `DiskPoolOne`.
  },
  "canonicalName": "A String", # The canonical name of the finding. It's either "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}", "folders/{folder_id}/sources/{source_id}/findings/{finding_id}" or "projects/{project_number}/sources/{source_id}/findings/{finding_id}", depending on the closest CRM ancestor of the resource associated with the finding.
  "category": "A String", # The additional taxonomy group within findings from a given source. This field is immutable after creation time. Example: "XSS_FLASH_INJECTION"
  "cloudArmor": { # Fields related to Google Cloud Armor findings. # Fields related to Cloud Armor findings.
    "adaptiveProtection": { # Information about [Google Cloud Armor Adaptive Protection](https://cloud.google.com/armor/docs/cloud-armor-overview#google-cloud-armor-adaptive-protection). # Information about potential Layer 7 DDoS attacks identified by [Google Cloud Armor Adaptive Protection](https://cloud.google.com/armor/docs/adaptive-protection-overview).
      "confidence": 3.14, # A score of 0 means that there is low confidence that the detected event is an actual attack. A score of 1 means that there is high confidence that the detected event is an attack. See the [Adaptive Protection documentation](https://cloud.google.com/armor/docs/adaptive-protection-overview#configure-alert-tuning) for further explanation.
    },
    "attack": { # Information about DDoS attack volume and classification. # Information about DDoS attack volume and classification.
      "classification": "A String", # Type of attack, for example, 'SYN-flood', 'NTP-udp', or 'CHARGEN-udp'.
      "volumeBps": 42, # Total BPS (bytes per second) volume of attack.
      "volumePps": 42, # Total PPS (packets per second) volume of attack.
    },
    "duration": "A String", # Duration of attack from the start until the current moment (updated every 5 minutes).
    "requests": { # Information about the requests relevant to the finding. # Information about incoming requests evaluated by [Google Cloud Armor security policies](https://cloud.google.com/armor/docs/security-policy-overview).
      "longTermAllowed": 42, # Allowed RPS (requests per second) over the long term.
      "longTermDenied": 42, # Denied RPS (requests per second) over the long term.
      "ratio": 3.14, # For 'Increasing deny ratio', the ratio is the denied traffic divided by the allowed traffic. For 'Allowed traffic spike', the ratio is the allowed traffic in the short term divided by allowed traffic in the long term.
      "shortTermAllowed": 42, # Allowed RPS (requests per second) in the short term.
    },
    "securityPolicy": { # Information about the [Google Cloud Armor security policy](https://cloud.google.com/armor/docs/security-policy-overview) relevant to the finding. # Information about the [Google Cloud Armor security policy](https://cloud.google.com/armor/docs/security-policy-overview) relevant to the finding.
      "name": "A String", # The name of the Google Cloud Armor security policy, for example, "my-security-policy".
      "preview": True or False, # Whether or not the associated rule or policy is in preview mode.
      "type": "A String", # The type of Google Cloud Armor security policy for example, 'backend security policy', 'edge security policy', 'network edge security policy', or 'always-on DDoS protection'.
    },
    "threatVector": "A String", # Distinguish between volumetric & protocol DDoS attack and application layer attacks. For example, "L3_4" for Layer 3 and Layer 4 DDoS attacks, or "L_7" for Layer 7 DDoS attacks.
  },
  "cloudDlpDataProfile": { # The [data profile](https://cloud.google.com/dlp/docs/data-profiles) associated with the finding. # Cloud DLP data profile that is associated with the finding.
    "dataProfile": "A String", # Name of the data profile, for example, `projects/123/locations/europe/tableProfiles/8383929`.
    "parentType": "A String", # The resource hierarchy level at which the data profile was generated.
  },
  "cloudDlpInspection": { # Details about the Cloud Data Loss Prevention (Cloud DLP) [inspection job](https://cloud.google.com/dlp/docs/concepts-job-triggers) that produced the finding. # Cloud Data Loss Prevention (Cloud DLP) inspection results that are associated with the finding.
    "fullScan": True or False, # Whether Cloud DLP scanned the complete resource or a sampled subset.
    "infoType": "A String", # The type of information (or *[infoType](https://cloud.google.com/dlp/docs/infotypes-reference)*) found, for example, `EMAIL_ADDRESS` or `STREET_ADDRESS`.
    "infoTypeCount": "A String", # The number of times Cloud DLP found this infoType within this job and resource.
    "inspectJob": "A String", # Name of the inspection job, for example, `projects/123/locations/europe/dlpJobs/i-8383929`.
  },
  "compliances": [ # Contains compliance information for security standards associated to the finding.
    { # Contains compliance information about a security standard indicating unmet recommendations.
      "ids": [ # Policies within the standard or benchmark, for example, A.12.4.1
        "A String",
      ],
      "standard": "A String", # Industry-wide compliance standards or benchmarks, such as CIS, PCI, and OWASP.
      "version": "A String", # Version of the standard or benchmark, for example, 1.1
    },
  ],
  "connections": [ # Contains information about the IP connection associated with the finding.
    { # Contains information about the IP connection associated with the finding.
      "destinationIp": "A String", # Destination IP address. Not present for sockets that are listening and not connected.
      "destinationPort": 42, # Destination port. Not present for sockets that are listening and not connected.
      "protocol": "A String", # IANA Internet Protocol Number such as TCP(6) and UDP(17).
      "sourceIp": "A String", # Source IP address.
      "sourcePort": 42, # Source port.
    },
  ],
  "contacts": { # Output only. Map containing the points of contact for the given finding. The key represents the type of contact, while the value contains a list of all the contacts that pertain. Please refer to: https://cloud.google.com/resource-manager/docs/managing-notification-contacts#notification-categories { "security": { "contacts": [ { "email": "person1@company.com" }, { "email": "person2@company.com" } ] } }
    "a_key": { # Details about specific contacts
      "contacts": [ # A list of contacts
        { # The email address of a contact.
          "email": "A String", # An email address. For example, "`person123@company.com`".
        },
      ],
    },
  },
  "containers": [ # Containers associated with the finding. This field provides information for both Kubernetes and non-Kubernetes containers.
    { # Container associated with the finding.
      "createTime": "A String", # The time that the container was created.
      "imageId": "A String", # Optional container image ID, if provided by the container runtime. Uniquely identifies the container image launched using a container image digest.
      "labels": [ # Container labels, as provided by the container runtime.
        { # Represents a generic name-value label. A label has separate name and value fields to support filtering with the `contains()` function. For more information, see [Filtering on array-type fields](https://cloud.google.com/security-command-center/docs/how-to-api-list-findings#array-contains-filtering).
          "name": "A String", # Name of the label.
          "value": "A String", # Value that corresponds to the label's name.
        },
      ],
      "name": "A String", # Name of the container.
      "uri": "A String", # Container image URI provided when configuring a pod or container. This string can identify a container image version using mutable tags.
    },
  ],
  "createTime": "A String", # The time at which the finding was created in Security Command Center.
  "database": { # Represents database access information, such as queries. A database may be a sub-resource of an instance (as in the case of Cloud SQL instances or Cloud Spanner instances), or the database instance itself. Some database resources might not have the [full resource name](https://google.aip.dev/122#full-resource-names) populated because these resource types, such as Cloud SQL databases, are not yet supported by Cloud Asset Inventory. In these cases only the display name is provided. # Database associated with the finding.
    "displayName": "A String", # The human-readable name of the database that the user connected to.
    "grantees": [ # The target usernames, roles, or groups of an SQL privilege grant, which is not an IAM policy change.
      "A String",
    ],
    "name": "A String", # Some database resources may not have the [full resource name](https://google.aip.dev/122#full-resource-names) populated because these resource types are not yet supported by Cloud Asset Inventory (e.g. Cloud SQL databases). In these cases only the display name will be provided. The [full resource name](https://google.aip.dev/122#full-resource-names) of the database that the user connected to, if it is supported by Cloud Asset Inventory.
    "query": "A String", # The SQL statement that is associated with the database access.
    "userName": "A String", # The username used to connect to the database. The username might not be an IAM principal and does not have a set format.
    "version": "A String", # The version of the database, for example, POSTGRES_14. See [the complete list](https://cloud.google.com/sql/docs/mysql/admin-api/rest/v1/SqlDatabaseVersion).
  },
  "description": "A String", # Contains more details about the finding.
  "eventTime": "A String", # The time the finding was first detected. If an existing finding is updated, then this is the time the update occurred. For example, if the finding represents an open firewall, this property captures the time the detector believes the firewall became open. The accuracy is determined by the detector. If the finding is later resolved, then this time reflects when the finding was resolved. This must not be set to a value greater than the current timestamp.
  "exfiltration": { # Exfiltration represents a data exfiltration attempt from one or more sources to one or more targets. The `sources` attribute lists the sources of the exfiltrated data. The `targets` attribute lists the destinations the data was copied to. # Represents exfiltrations associated with the finding.
    "sources": [ # If there are multiple sources, then the data is considered "joined" between them. For instance, BigQuery can join multiple tables, and each table would be considered a source.
      { # Resource where data was exfiltrated from or exfiltrated to.
        "components": [ # Subcomponents of the asset that was exfiltrated, like URIs used during exfiltration, table names, databases, and filenames. For example, multiple tables might have been exfiltrated from the same Cloud SQL instance, or multiple files might have been exfiltrated from the same Cloud Storage bucket.
          "A String",
        ],
        "name": "A String", # The resource's [full resource name](https://cloud.google.com/apis/design/resource_names#full_resource_name).
      },
    ],
    "targets": [ # If there are multiple targets, each target would get a complete copy of the "joined" source data.
      { # Resource where data was exfiltrated from or exfiltrated to.
        "components": [ # Subcomponents of the asset that was exfiltrated, like URIs used during exfiltration, table names, databases, and filenames. For example, multiple tables might have been exfiltrated from the same Cloud SQL instance, or multiple files might have been exfiltrated from the same Cloud Storage bucket.
          "A String",
        ],
        "name": "A String", # The resource's [full resource name](https://cloud.google.com/apis/design/resource_names#full_resource_name).
      },
    ],
    "totalExfiltratedBytes": "A String", # Total exfiltrated bytes processed for the entire job.
  },
  "externalSystems": { # Output only. Third party SIEM/SOAR fields within SCC, contains external system information and external system finding fields.
    "a_key": { # Representation of third party SIEM/SOAR fields within SCC.
      "assignees": [ # References primary/secondary etc assignees in the external system.
        "A String",
      ],
      "caseCloseTime": "A String", # The time when the case was closed, as reported by the external system.
      "caseCreateTime": "A String", # The time when the case was created, as reported by the external system.
      "casePriority": "A String", # The priority of the finding's corresponding case in the external system.
      "caseSla": "A String", # The SLA of the finding's corresponding case in the external system.
      "caseUri": "A String", # The link to the finding's corresponding case in the external system.
      "externalSystemUpdateTime": "A String", # The time when the case was last updated, as reported by the external system.
      "externalUid": "A String", # The identifier that's used to track the finding's corresponding case in the external system.
      "name": "A String", # Full resource name of the external system, for example: "organizations/1234/sources/5678/findings/123456/externalSystems/jira", "folders/1234/sources/5678/findings/123456/externalSystems/jira", "projects/1234/sources/5678/findings/123456/externalSystems/jira"
      "status": "A String", # The most recent status of the finding's corresponding case, as reported by the external system.
      "ticketInfo": { # Information about the ticket, if any, that is being used to track the resolution of the issue that is identified by this finding. # Information about the ticket, if any, that is being used to track the resolution of the issue that is identified by this finding.
        "assignee": "A String", # The assignee of the ticket in the ticket system.
        "description": "A String", # The description of the ticket in the ticket system.
        "id": "A String", # The identifier of the ticket in the ticket system.
        "status": "A String", # The latest status of the ticket, as reported by the ticket system.
        "updateTime": "A String", # The time when the ticket was last updated, as reported by the ticket system.
        "uri": "A String", # The link to the ticket in the ticket system.
      },
    },
  },
  "externalUri": "A String", # The URI that, if available, points to a web page outside of Security Command Center where additional information about the finding can be found. This field is guaranteed to be either empty or a well formed URL.
  "files": [ # File associated with the finding.
    { # File information about the related binary/library used by an executable, or the script used by a script interpreter
      "contents": "A String", # Prefix of the file contents as a JSON-encoded string.
      "diskPath": { # Path of the file in terms of underlying disk/partition identifiers. # Path of the file in terms of underlying disk/partition identifiers.
        "partitionUuid": "A String", # UUID of the partition (format https://wiki.archlinux.org/title/persistent_block_device_naming#by-uuid)
        "relativePath": "A String", # Relative path of the file in the partition as a JSON encoded string. Example: /home/user1/executable_file.sh
      },
      "hashedSize": "A String", # The length in bytes of the file prefix that was hashed. If hashed_size == size, any hashes reported represent the entire file.
      "partiallyHashed": True or False, # True when the hash covers only a prefix of the file.
      "path": "A String", # Absolute path of the file as a JSON encoded string.
      "sha256": "A String", # SHA256 hash of the first hashed_size bytes of the file encoded as a hex string. If hashed_size == size, sha256 represents the SHA256 hash of the entire file.
      "size": "A String", # Size of the file in bytes.
    },
  ],
  "findingClass": "A String", # The class of the finding.
  "iamBindings": [ # Represents IAM bindings associated with the finding.
    { # Represents a particular IAM binding, which captures a member's role addition, removal, or state.
      "action": "A String", # The action that was performed on a Binding.
      "member": "A String", # A single identity requesting access for a Cloud Platform resource, for example, "foo@google.com".
      "role": "A String", # Role that is assigned to "members". For example, "roles/viewer", "roles/editor", or "roles/owner".
    },
  ],
  "indicator": { # Represents what's commonly known as an _indicator of compromise_ (IoC) in computer forensics. This is an artifact observed on a network or in an operating system that, with high confidence, indicates a computer intrusion. For more information, see [Indicator of compromise](https://en.wikipedia.org/wiki/Indicator_of_compromise). # Represents what's commonly known as an *indicator of compromise* (IoC) in computer forensics. This is an artifact observed on a network or in an operating system that, with high confidence, indicates a computer intrusion. For more information, see [Indicator of compromise](https://en.wikipedia.org/wiki/Indicator_of_compromise).
    "domains": [ # List of domains associated to the Finding.
      "A String",
    ],
    "ipAddresses": [ # The list of IP addresses that are associated with the finding.
      "A String",
    ],
    "signatures": [ # The list of matched signatures indicating that the given process is present in the environment.
      { # Indicates what signature matched this process.
        "memoryHashSignature": { # A signature corresponding to memory page hashes. # Signature indicating that a binary family was matched.
          "binaryFamily": "A String", # The binary family.
          "detections": [ # The list of memory hash detections contributing to the binary family match.
            { # Memory hash detection contributing to the binary family match.
              "binary": "A String", # The name of the binary associated with the memory hash signature detection.
              "percentPagesMatched": 3.14, # The percentage of memory page hashes in the signature that were matched.
            },
          ],
        },
        "signatureType": "A String", # Describes the type of resource associated with the signature.
        "yaraRuleSignature": { # A signature corresponding to a YARA rule. # Signature indicating that a YARA rule was matched.
          "yaraRule": "A String", # The name of the YARA rule.
        },
      },
    ],
    "uris": [ # The list of URIs associated to the Findings.
      "A String",
    ],
  },
  "kernelRootkit": { # Kernel mode rootkit signatures. # Signature of the kernel rootkit.
    "name": "A String", # Rootkit name, when available.
    "unexpectedCodeModification": True or False, # True if unexpected modifications of kernel code memory are present.
    "unexpectedFtraceHandler": True or False, # True if `ftrace` points are present with callbacks pointing to regions that are not in the expected kernel or module code range.
    "unexpectedInterruptHandler": True or False, # True if interrupt handlers that are are not in the expected kernel or module code regions are present.
    "unexpectedKernelCodePages": True or False, # True if kernel code pages that are not in the expected kernel or module code regions are present.
    "unexpectedKprobeHandler": True or False, # True if `kprobe` points are present with callbacks pointing to regions that are not in the expected kernel or module code range.
    "unexpectedProcessesInRunqueue": True or False, # True if unexpected processes in the scheduler run queue are present. Such processes are in the run queue, but not in the process task list.
    "unexpectedReadOnlyDataModification": True or False, # True if unexpected modifications of kernel read-only data memory are present.
    "unexpectedSystemCallHandler": True or False, # True if system call handlers that are are not in the expected kernel or module code regions are present.
  },
  "kubernetes": { # Kubernetes-related attributes. # Kubernetes resources associated with the finding.
    "accessReviews": [ # Provides information on any Kubernetes access reviews (privilege checks) relevant to the finding.
      { # Conveys information about a Kubernetes access review (such as one returned by a [`kubectl auth can-i`](https://kubernetes.io/docs/reference/access-authn-authz/authorization/#checking-api-access) command) that was involved in a finding.
        "group": "A String", # The API group of the resource. "*" means all.
        "name": "A String", # The name of the resource being requested. Empty means all.
        "ns": "A String", # Namespace of the action being requested. Currently, there is no distinction between no namespace and all namespaces. Both are represented by "" (empty).
        "resource": "A String", # The optional resource type requested. "*" means all.
        "subresource": "A String", # The optional subresource type.
        "verb": "A String", # A Kubernetes resource API verb, like get, list, watch, create, update, delete, proxy. "*" means all.
        "version": "A String", # The API version of the resource. "*" means all.
      },
    ],
    "bindings": [ # Provides Kubernetes role binding information for findings that involve [RoleBindings or ClusterRoleBindings](https://cloud.google.com/kubernetes-engine/docs/how-to/role-based-access-control).
      { # Represents a Kubernetes RoleBinding or ClusterRoleBinding.
        "name": "A String", # Name for the binding.
        "ns": "A String", # Namespace for the binding.
        "role": { # Kubernetes Role or ClusterRole. # The Role or ClusterRole referenced by the binding.
          "kind": "A String", # Role type.
          "name": "A String", # Role name.
          "ns": "A String", # Role namespace.
        },
        "subjects": [ # Represents one or more subjects that are bound to the role. Not always available for PATCH requests.
          { # Represents a Kubernetes subject.
            "kind": "A String", # Authentication type for the subject.
            "name": "A String", # Name for the subject.
            "ns": "A String", # Namespace for the subject.
          },
        ],
      },
    ],
    "nodePools": [ # GKE [node pools](https://cloud.google.com/kubernetes-engine/docs/concepts/node-pools) associated with the finding. This field contains node pool information for each node, when it is available.
      { # Provides GKE node pool information.
        "name": "A String", # Kubernetes node pool name.
        "nodes": [ # Nodes associated with the finding.
          { # Kubernetes nodes associated with the finding.
            "name": "A String", # [Full resource name](https://google.aip.dev/122#full-resource-names) of the Compute Engine VM running the cluster node.
          },
        ],
      },
    ],
    "nodes": [ # Provides Kubernetes [node](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-architecture#nodes) information.
      { # Kubernetes nodes associated with the finding.
        "name": "A String", # [Full resource name](https://google.aip.dev/122#full-resource-names) of the Compute Engine VM running the cluster node.
      },
    ],
    "objects": [ # Kubernetes objects related to the finding.
      { # Kubernetes object related to the finding, uniquely identified by GKNN. Used if the object Kind is not one of Pod, Node, NodePool, Binding, or AccessReview.
        "containers": [ # Pod containers associated with this finding, if any.
          { # Container associated with the finding.
            "createTime": "A String", # The time that the container was created.
            "imageId": "A String", # Optional container image ID, if provided by the container runtime. Uniquely identifies the container image launched using a container image digest.
            "labels": [ # Container labels, as provided by the container runtime.
              { # Represents a generic name-value label. A label has separate name and value fields to support filtering with the `contains()` function. For more information, see [Filtering on array-type fields](https://cloud.google.com/security-command-center/docs/how-to-api-list-findings#array-contains-filtering).
                "name": "A String", # Name of the label.
                "value": "A String", # Value that corresponds to the label's name.
              },
            ],
            "name": "A String", # Name of the container.
            "uri": "A String", # Container image URI provided when configuring a pod or container. This string can identify a container image version using mutable tags.
          },
        ],
        "group": "A String", # Kubernetes object group, such as "policy.k8s.io/v1".
        "kind": "A String", # Kubernetes object kind, such as "Namespace".
        "name": "A String", # Kubernetes object name. For details see https://kubernetes.io/docs/concepts/overview/working-with-objects/names/.
        "ns": "A String", # Kubernetes object namespace. Must be a valid DNS label. Named "ns" to avoid collision with C++ namespace keyword. For details see https://kubernetes.io/docs/tasks/administer-cluster/namespaces/.
      },
    ],
    "pods": [ # Kubernetes [Pods](https://cloud.google.com/kubernetes-engine/docs/concepts/pod) associated with the finding. This field contains Pod records for each container that is owned by a Pod.
      { # A Kubernetes Pod.
        "containers": [ # Pod containers associated with this finding, if any.
          { # Container associated with the finding.
            "createTime": "A String", # The time that the container was created.
            "imageId": "A String", # Optional container image ID, if provided by the container runtime. Uniquely identifies the container image launched using a container image digest.
            "labels": [ # Container labels, as provided by the container runtime.
              { # Represents a generic name-value label. A label has separate name and value fields to support filtering with the `contains()` function. For more information, see [Filtering on array-type fields](https://cloud.google.com/security-command-center/docs/how-to-api-list-findings#array-contains-filtering).
                "name": "A String", # Name of the label.
                "value": "A String", # Value that corresponds to the label's name.
              },
            ],
            "name": "A String", # Name of the container.
            "uri": "A String", # Container image URI provided when configuring a pod or container. This string can identify a container image version using mutable tags.
          },
        ],
        "labels": [ # Pod labels. For Kubernetes containers, these are applied to the container.
          { # Represents a generic name-value label. A label has separate name and value fields to support filtering with the `contains()` function. For more information, see [Filtering on array-type fields](https://cloud.google.com/security-command-center/docs/how-to-api-list-findings#array-contains-filtering).
            "name": "A String", # Name of the label.
            "value": "A String", # Value that corresponds to the label's name.
          },
        ],
        "name": "A String", # Kubernetes Pod name.
        "ns": "A String", # Kubernetes Pod namespace.
      },
    ],
    "roles": [ # Provides Kubernetes role information for findings that involve [Roles or ClusterRoles](https://cloud.google.com/kubernetes-engine/docs/how-to/role-based-access-control).
      { # Kubernetes Role or ClusterRole.
        "kind": "A String", # Role type.
        "name": "A String", # Role name.
        "ns": "A String", # Role namespace.
      },
    ],
  },
  "loadBalancers": [ # The load balancers associated with the finding.
    { # Contains information related to the load balancer associated with the finding.
      "name": "A String", # The name of the load balancer associated with the finding.
    },
  ],
  "logEntries": [ # Log entries that are relevant to the finding.
    { # An individual entry in a log.
      "cloudLoggingEntry": { # Metadata taken from a [Cloud Logging LogEntry](https://cloud.google.com/logging/docs/reference/v2/rest/v2/LogEntry) # An individual entry in a log stored in Cloud Logging.
        "insertId": "A String", # A unique identifier for the log entry.
        "logId": "A String", # The type of the log (part of `log_name`. `log_name` is the resource name of the log to which this log entry belongs). For example: `cloudresourcemanager.googleapis.com/activity`. Note that this field is not URL-encoded, unlike the `LOG_ID` field in `LogEntry`.
        "resourceContainer": "A String", # The organization, folder, or project of the monitored resource that produced this log entry.
        "timestamp": "A String", # The time the event described by the log entry occurred.
      },
    },
  ],
  "mitreAttack": { # MITRE ATT&CK tactics and techniques related to this finding. See: https://attack.mitre.org # MITRE ATT&CK tactics and techniques related to this finding. See: https://attack.mitre.org
    "additionalTactics": [ # Additional MITRE ATT&CK tactics related to this finding, if any.
      "A String",
    ],
    "additionalTechniques": [ # Additional MITRE ATT&CK techniques related to this finding, if any, along with any of their respective parent techniques.
      "A String",
    ],
    "primaryTactic": "A String", # The MITRE ATT&CK tactic most closely represented by this finding, if any.
    "primaryTechniques": [ # The MITRE ATT&CK technique most closely represented by this finding, if any. primary_techniques is a repeated field because there are multiple levels of MITRE ATT&CK techniques. If the technique most closely represented by this finding is a sub-technique (e.g. `SCANNING_IP_BLOCKS`), both the sub-technique and its parent technique(s) will be listed (e.g. `SCANNING_IP_BLOCKS`, `ACTIVE_SCANNING`).
      "A String",
    ],
    "version": "A String", # The MITRE ATT&CK version referenced by the above fields. E.g. "8".
  },
  "moduleName": "A String", # Unique identifier of the module which generated the finding. Example: folders/598186756061/securityHealthAnalyticsSettings/customModules/56799441161885
  "mute": "A String", # Indicates the mute state of a finding (either muted, unmuted or undefined). Unlike other attributes of a finding, a finding provider shouldn't set the value of mute.
  "muteInitiator": "A String", # Records additional information about the mute operation, for example, the [mute configuration](/security-command-center/docs/how-to-mute-findings) that muted the finding and the user who muted the finding.
  "muteUpdateTime": "A String", # Output only. The most recent time this finding was muted or unmuted.
  "name": "A String", # The [relative resource name](https://cloud.google.com/apis/design/resource_names#relative_resource_name) of the finding. Example: "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}", "folders/{folder_id}/sources/{source_id}/findings/{finding_id}", "projects/{project_id}/sources/{source_id}/findings/{finding_id}".
  "nextSteps": "A String", # Steps to address the finding.
  "notebook": { # Represents a Jupyter notebook IPYNB file, such as a [Colab Enterprise notebook](https://cloud.google.com/colab/docs/introduction) file, that is associated with a finding. # Notebook associated with the finding.
    "lastAuthor": "A String", # The user ID of the latest author to modify the notebook.
    "name": "A String", # The name of the notebook.
    "notebookUpdateTime": "A String", # The most recent time the notebook was updated.
    "service": "A String", # The source notebook service, for example, "Colab Enterprise".
  },
  "orgPolicies": [ # Contains information about the org policies associated with the finding.
    { # Contains information about the org policies associated with the finding.
      "name": "A String", # The resource name of the org policy. Example: "organizations/{organization_id}/policies/{constraint_name}"
    },
  ],
  "parent": "A String", # The relative resource name of the source the finding belongs to. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name This field is immutable after creation time. For example: "organizations/{organization_id}/sources/{source_id}"
  "parentDisplayName": "A String", # Output only. The human readable display name of the finding source such as "Event Threat Detection" or "Security Health Analytics".
  "processes": [ # Represents operating system processes associated with the Finding.
    { # Represents an operating system process.
      "args": [ # Process arguments as JSON encoded strings.
        "A String",
      ],
      "argumentsTruncated": True or False, # True if `args` is incomplete.
      "binary": { # File information about the related binary/library used by an executable, or the script used by a script interpreter # File information for the process executable.
        "contents": "A String", # Prefix of the file contents as a JSON-encoded string.
        "diskPath": { # Path of the file in terms of underlying disk/partition identifiers. # Path of the file in terms of underlying disk/partition identifiers.
          "partitionUuid": "A String", # UUID of the partition (format https://wiki.archlinux.org/title/persistent_block_device_naming#by-uuid)
          "relativePath": "A String", # Relative path of the file in the partition as a JSON encoded string. Example: /home/user1/executable_file.sh
        },
        "hashedSize": "A String", # The length in bytes of the file prefix that was hashed. If hashed_size == size, any hashes reported represent the entire file.
        "partiallyHashed": True or False, # True when the hash covers only a prefix of the file.
        "path": "A String", # Absolute path of the file as a JSON encoded string.
        "sha256": "A String", # SHA256 hash of the first hashed_size bytes of the file encoded as a hex string. If hashed_size == size, sha256 represents the SHA256 hash of the entire file.
        "size": "A String", # Size of the file in bytes.
      },
      "envVariables": [ # Process environment variables.
        { # A name-value pair representing an environment variable used in an operating system process.
          "name": "A String", # Environment variable name as a JSON encoded string.
          "val": "A String", # Environment variable value as a JSON encoded string.
        },
      ],
      "envVariablesTruncated": True or False, # True if `env_variables` is incomplete.
      "libraries": [ # File information for libraries loaded by the process.
        { # File information about the related binary/library used by an executable, or the script used by a script interpreter
          "contents": "A String", # Prefix of the file contents as a JSON-encoded string.
          "diskPath": { # Path of the file in terms of underlying disk/partition identifiers. # Path of the file in terms of underlying disk/partition identifiers.
            "partitionUuid": "A String", # UUID of the partition (format https://wiki.archlinux.org/title/persistent_block_device_naming#by-uuid)
            "relativePath": "A String", # Relative path of the file in the partition as a JSON encoded string. Example: /home/user1/executable_file.sh
          },
          "hashedSize": "A String", # The length in bytes of the file prefix that was hashed. If hashed_size == size, any hashes reported represent the entire file.
          "partiallyHashed": True or False, # True when the hash covers only a prefix of the file.
          "path": "A String", # Absolute path of the file as a JSON encoded string.
          "sha256": "A String", # SHA256 hash of the first hashed_size bytes of the file encoded as a hex string. If hashed_size == size, sha256 represents the SHA256 hash of the entire file.
          "size": "A String", # Size of the file in bytes.
        },
      ],
      "name": "A String", # The process name, as displayed in utilities like `top` and `ps`. This name can be accessed through `/proc/[pid]/comm` and changed with `prctl(PR_SET_NAME)`.
      "parentPid": "A String", # The parent process ID.
      "pid": "A String", # The process ID.
      "script": { # File information about the related binary/library used by an executable, or the script used by a script interpreter # When the process represents the invocation of a script, `binary` provides information about the interpreter, while `script` provides information about the script file provided to the interpreter.
        "contents": "A String", # Prefix of the file contents as a JSON-encoded string.
        "diskPath": { # Path of the file in terms of underlying disk/partition identifiers. # Path of the file in terms of underlying disk/partition identifiers.
          "partitionUuid": "A String", # UUID of the partition (format https://wiki.archlinux.org/title/persistent_block_device_naming#by-uuid)
          "relativePath": "A String", # Relative path of the file in the partition as a JSON encoded string. Example: /home/user1/executable_file.sh
        },
        "hashedSize": "A String", # The length in bytes of the file prefix that was hashed. If hashed_size == size, any hashes reported represent the entire file.
        "partiallyHashed": True or False, # True when the hash covers only a prefix of the file.
        "path": "A String", # Absolute path of the file as a JSON encoded string.
        "sha256": "A String", # SHA256 hash of the first hashed_size bytes of the file encoded as a hex string. If hashed_size == size, sha256 represents the SHA256 hash of the entire file.
        "size": "A String", # Size of the file in bytes.
      },
    },
  ],
  "resourceName": "A String", # For findings on Google Cloud resources, the full resource name of the Google Cloud resource this finding is for. See: https://cloud.google.com/apis/design/resource_names#full_resource_name When the finding is for a non-Google Cloud resource, the resourceName can be a customer or partner defined string. This field is immutable after creation time.
  "securityMarks": { # User specified security marks that are attached to the parent Security Command Center resource. Security marks are scoped within a Security Command Center organization -- they can be modified and viewed by all users who have proper permissions on the organization. # Output only. User specified security marks. These marks are entirely managed by the user and come from the SecurityMarks resource that belongs to the finding.
    "canonicalName": "A String", # The canonical name of the marks. Examples: "organizations/{organization_id}/assets/{asset_id}/securityMarks" "folders/{folder_id}/assets/{asset_id}/securityMarks" "projects/{project_number}/assets/{asset_id}/securityMarks" "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}/securityMarks" "folders/{folder_id}/sources/{source_id}/findings/{finding_id}/securityMarks" "projects/{project_number}/sources/{source_id}/findings/{finding_id}/securityMarks"
    "marks": { # Mutable user specified security marks belonging to the parent resource. Constraints are as follows: * Keys and values are treated as case insensitive * Keys must be between 1 - 256 characters (inclusive) * Keys must be letters, numbers, underscores, or dashes * Values have leading and trailing whitespace trimmed, remaining characters must be between 1 - 4096 characters (inclusive)
      "a_key": "A String",
    },
    "name": "A String", # The relative resource name of the SecurityMarks. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Examples: "organizations/{organization_id}/assets/{asset_id}/securityMarks" "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}/securityMarks".
  },
  "securityPosture": { # Represents a posture that is deployed on Google Cloud by the Security Command Center Posture Management service. A posture contains one or more policy sets. A policy set is a group of policies that enforce a set of security rules on Google Cloud. # The security posture associated with the finding.
    "changedPolicy": "A String", # The name of the updated policy, for example, `projects/{project_id}/policies/{constraint_name}`.
    "name": "A String", # Name of the posture, for example, `CIS-Posture`.
    "policy": "A String", # The ID of the updated policy, for example, `compute-policy-1`.
    "policyDriftDetails": [ # The details about a change in an updated policy that violates the deployed posture.
      { # The policy field that violates the deployed posture and its expected and detected values.
        "detectedValue": "A String", # The detected value that violates the deployed posture, for example, `false` or `allowed_values={"projects/22831892"}`.
        "expectedValue": "A String", # The value of this field that was configured in a posture, for example, `true` or `allowed_values={"projects/29831892"}`.
        "field": "A String", # The name of the updated field, for example constraint.implementation.policy_rules[0].enforce
      },
    ],
    "policySet": "A String", # The name of the updated policyset, for example, `cis-policyset`.
    "postureDeployment": "A String", # The name of the posture deployment, for example, `organizations/{org_id}/posturedeployments/{posture_deployment_id}`.
    "postureDeploymentResource": "A String", # The project, folder, or organization on which the posture is deployed, for example, `projects/{project_number}`.
    "revisionId": "A String", # The version of the posture, for example, `c7cfa2a8`.
  },
  "severity": "A String", # The severity of the finding. This field is managed by the source that writes the finding.
  "sourceProperties": { # Source specific properties. These properties are managed by the source that writes the finding. The key names in the source_properties map must be between 1 and 255 characters, and must start with a letter and contain alphanumeric characters or underscores only.
    "a_key": "",
  },
  "state": "A String", # The state of the finding.
  "vulnerability": { # Refers to common vulnerability fields e.g. cve, cvss, cwe etc. # Represents vulnerability-specific fields like CVE and CVSS scores. CVE stands for Common Vulnerabilities and Exposures (https://cve.mitre.org/about/)
    "cve": { # CVE stands for Common Vulnerabilities and Exposures. Information from the [CVE record](https://www.cve.org/ResourcesSupport/Glossary) that describes this vulnerability. # CVE stands for Common Vulnerabilities and Exposures (https://cve.mitre.org/about/)
      "cvssv3": { # Common Vulnerability Scoring System version 3. # Describe Common Vulnerability Scoring System specified at https://www.first.org/cvss/v3.1/specification-document
        "attackComplexity": "A String", # This metric describes the conditions beyond the attacker's control that must exist in order to exploit the vulnerability.
        "attackVector": "A String", # Base Metrics Represents the intrinsic characteristics of a vulnerability that are constant over time and across user environments. This metric reflects the context by which vulnerability exploitation is possible.
        "availabilityImpact": "A String", # This metric measures the impact to the availability of the impacted component resulting from a successfully exploited vulnerability.
        "baseScore": 3.14, # The base score is a function of the base metric scores.
        "confidentialityImpact": "A String", # This metric measures the impact to the confidentiality of the information resources managed by a software component due to a successfully exploited vulnerability.
        "integrityImpact": "A String", # This metric measures the impact to integrity of a successfully exploited vulnerability.
        "privilegesRequired": "A String", # This metric describes the level of privileges an attacker must possess before successfully exploiting the vulnerability.
        "scope": "A String", # The Scope metric captures whether a vulnerability in one vulnerable component impacts resources in components beyond its security scope.
        "userInteraction": "A String", # This metric captures the requirement for a human user, other than the attacker, to participate in the successful compromise of the vulnerable component.
      },
      "exploitationActivity": "A String", # The exploitation activity of the vulnerability in the wild.
      "id": "A String", # The unique identifier for the vulnerability. e.g. CVE-2021-34527
      "impact": "A String", # The potential impact of the vulnerability if it was to be exploited.
      "observedInTheWild": True or False, # Whether or not the vulnerability has been observed in the wild.
      "references": [ # Additional information about the CVE. e.g. https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-34527
        { # Additional Links
          "source": "A String", # Source of the reference e.g. NVD
          "uri": "A String", # Uri for the mentioned source e.g. https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-34527.
        },
      ],
      "upstreamFixAvailable": True or False, # Whether upstream fix is available for the CVE.
      "zeroDay": True or False, # Whether or not the vulnerability was zero day when the finding was published.
    },
    "fixedPackage": { # Package is a generic definition of a package. # The fixed package is relevant to the finding.
      "cpeUri": "A String", # The CPE URI where the vulnerability was detected.
      "packageName": "A String", # The name of the package where the vulnerability was detected.
      "packageType": "A String", # Type of package, for example, os, maven, or go.
      "packageVersion": "A String", # The version of the package.
    },
    "offendingPackage": { # Package is a generic definition of a package. # The offending package is relevant to the finding.
      "cpeUri": "A String", # The CPE URI where the vulnerability was detected.
      "packageName": "A String", # The name of the package where the vulnerability was detected.
      "packageType": "A String", # Type of package, for example, os, maven, or go.
      "packageVersion": "A String", # The version of the package.
    },
    "securityBulletin": { # SecurityBulletin are notifications of vulnerabilities of Google products. # The security bulletin is relevant to this finding.
      "bulletinId": "A String", # ID of the bulletin corresponding to the vulnerability.
      "submissionTime": "A String", # Submission time of this Security Bulletin.
      "suggestedUpgradeVersion": "A String", # This represents a version that the cluster receiving this notification should be upgraded to, based on its current version. For example, 1.15.0
    },
  },
}
setMute(name, body=None, x__xgafv=None)
Updates the mute state of a finding.

Args:
  name: string, Required. The [relative resource name](https://cloud.google.com/apis/design/resource_names#relative_resource_name) of the finding. Example: "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}", "folders/{folder_id}/sources/{source_id}/findings/{finding_id}", "projects/{project_id}/sources/{source_id}/findings/{finding_id}". (required)
  body: object, The request body.
    The object takes the form of:

{ # Request message for updating a finding's mute status.
  "mute": "A String", # Required. The desired state of the Mute.
}

  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # Security Command Center finding. A finding is a record of assessment data like security, risk, health, or privacy, that is ingested into Security Command Center for presentation, notification, analysis, policy testing, and enforcement. For example, a cross-site scripting (XSS) vulnerability in an App Engine application is a finding.
  "access": { # Represents an access event. # Access details associated with the finding, such as more information on the caller, which method was accessed, and from where.
    "callerIp": "A String", # Caller's IP address, such as "1.1.1.1".
    "callerIpGeo": { # Represents a geographical location for a given access. # The caller IP's geolocation, which identifies where the call came from.
      "regionCode": "A String", # A CLDR.
    },
    "methodName": "A String", # The method that the service account called, e.g. "SetIamPolicy".
    "principalEmail": "A String", # Associated email, such as "foo@google.com". The email address of the authenticated user or a service account acting on behalf of a third party principal making the request. For third party identity callers, the `principal_subject` field is populated instead of this field. For privacy reasons, the principal email address is sometimes redacted. For more information, see [Caller identities in audit logs](https://cloud.google.com/logging/docs/audit#user-id).
    "principalSubject": "A String", # A string that represents the principal_subject that is associated with the identity. Unlike `principal_email`, `principal_subject` supports principals that aren't associated with email addresses, such as third party principals. For most identities, the format is `principal://iam.googleapis.com/{identity pool name}/subject/{subject}`. Some GKE identities, such as GKE_WORKLOAD, FREEFORM, and GKE_HUB_WORKLOAD, still use the legacy format `serviceAccount:{identity pool name}[{subject}]`.
    "serviceAccountDelegationInfo": [ # The identity delegation history of an authenticated service account that made the request. The `serviceAccountDelegationInfo[]` object contains information about the real authorities that try to access Google Cloud resources by delegating on a service account. When multiple authorities are present, they are guaranteed to be sorted based on the original ordering of the identity delegation events.
      { # Identity delegation history of an authenticated service account.
        "principalEmail": "A String", # The email address of a Google account.
        "principalSubject": "A String", # A string representing the principal_subject associated with the identity. As compared to `principal_email`, supports principals that aren't associated with email addresses, such as third party principals. For most identities, the format will be `principal://iam.googleapis.com/{identity pool name}/subjects/{subject}` except for some GKE identities (GKE_WORKLOAD, FREEFORM, GKE_HUB_WORKLOAD) that are still in the legacy format `serviceAccount:{identity pool name}[{subject}]`
      },
    ],
    "serviceAccountKeyName": "A String", # The name of the service account key that was used to create or exchange credentials when authenticating the service account that made the request. This is a scheme-less URI full resource name. For example: "//iam.googleapis.com/projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT}/keys/{key}".
    "serviceName": "A String", # This is the API service that the service account made a call to, e.g. "iam.googleapis.com"
    "userAgent": "A String", # The caller's user agent string associated with the finding.
    "userAgentFamily": "A String", # Type of user agent associated with the finding. For example, an operating system shell or an embedded or standalone application.
    "userName": "A String", # A string that represents a username. The username provided depends on the type of the finding and is likely not an IAM principal. For example, this can be a system username if the finding is related to a virtual machine, or it can be an application login username.
  },
  "application": { # Represents an application associated with a finding. # Represents an application associated with the finding.
    "baseUri": "A String", # The base URI that identifies the network location of the application in which the vulnerability was detected. For example, `http://example.com`.
    "fullUri": "A String", # The full URI with payload that can be used to reproduce the vulnerability. For example, `http://example.com?p=aMmYgI6H`.
  },
  "attackExposure": { # An attack exposure contains the results of an attack path simulation run. # The results of an attack path simulation relevant to this finding.
    "attackExposureResult": "A String", # The resource name of the attack path simulation result that contains the details regarding this attack exposure score. Example: organizations/123/simulations/456/attackExposureResults/789
    "exposedHighValueResourcesCount": 42, # The number of high value resources that are exposed as a result of this finding.
    "exposedLowValueResourcesCount": 42, # The number of high value resources that are exposed as a result of this finding.
    "exposedMediumValueResourcesCount": 42, # The number of medium value resources that are exposed as a result of this finding.
    "latestCalculationTime": "A String", # The most recent time the attack exposure was updated on this finding.
    "score": 3.14, # A number between 0 (inclusive) and infinity that represents how important this finding is to remediate. The higher the score, the more important it is to remediate.
    "state": "A String", # What state this AttackExposure is in. This captures whether or not an attack exposure has been calculated or not.
  },
  "backupDisasterRecovery": { # Information related to Google Cloud Backup and DR Service findings. # Fields related to Backup and DR findings.
    "appliance": "A String", # The name of the Backup and DR appliance that captures, moves, and manages the lifecycle of backup data. For example, `backup-server-57137`.
    "applications": [ # The names of Backup and DR applications. An application is a VM, database, or file system on a managed host monitored by a backup and recovery appliance. For example, `centos7-01-vol00`, `centos7-01-vol01`, `centos7-01-vol02`.
      "A String",
    ],
    "backupCreateTime": "A String", # The timestamp at which the Backup and DR backup was created.
    "backupTemplate": "A String", # The name of a Backup and DR template which comprises one or more backup policies. See the [Backup and DR documentation](https://cloud.google.com/backup-disaster-recovery/docs/concepts/backup-plan#temp) for more information. For example, `snap-ov`.
    "backupType": "A String", # The backup type of the Backup and DR image. For example, `Snapshot`, `Remote Snapshot`, `OnVault`.
    "host": "A String", # The name of a Backup and DR host, which is managed by the backup and recovery appliance and known to the management console. The host can be of type Generic (for example, Compute Engine, SQL Server, Oracle DB, SMB file system, etc.), vCenter, or an ESX server. See the [Backup and DR documentation on hosts](https://cloud.google.com/backup-disaster-recovery/docs/configuration/manage-hosts-and-their-applications) for more information. For example, `centos7-01`.
    "policies": [ # The names of Backup and DR policies that are associated with a template and that define when to run a backup, how frequently to run a backup, and how long to retain the backup image. For example, `onvaults`.
      "A String",
    ],
    "policyOptions": [ # The names of Backup and DR advanced policy options of a policy applying to an application. See the [Backup and DR documentation on policy options](https://cloud.google.com/backup-disaster-recovery/docs/create-plan/policy-settings). For example, `skipofflineappsincongrp, nounmap`.
      "A String",
    ],
    "profile": "A String", # The name of the Backup and DR resource profile that specifies the storage media for backups of application and VM data. See the [Backup and DR documentation on profiles](https://cloud.google.com/backup-disaster-recovery/docs/concepts/backup-plan#profile). For example, `GCP`.
    "storagePool": "A String", # The name of the Backup and DR storage pool that the backup and recovery appliance is storing data in. The storage pool could be of type Cloud, Primary, Snapshot, or OnVault. See the [Backup and DR documentation on storage pools](https://cloud.google.com/backup-disaster-recovery/docs/concepts/storage-pools). For example, `DiskPoolOne`.
  },
  "canonicalName": "A String", # The canonical name of the finding. It's either "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}", "folders/{folder_id}/sources/{source_id}/findings/{finding_id}" or "projects/{project_number}/sources/{source_id}/findings/{finding_id}", depending on the closest CRM ancestor of the resource associated with the finding.
  "category": "A String", # The additional taxonomy group within findings from a given source. This field is immutable after creation time. Example: "XSS_FLASH_INJECTION"
  "cloudArmor": { # Fields related to Google Cloud Armor findings. # Fields related to Cloud Armor findings.
    "adaptiveProtection": { # Information about [Google Cloud Armor Adaptive Protection](https://cloud.google.com/armor/docs/cloud-armor-overview#google-cloud-armor-adaptive-protection). # Information about potential Layer 7 DDoS attacks identified by [Google Cloud Armor Adaptive Protection](https://cloud.google.com/armor/docs/adaptive-protection-overview).
      "confidence": 3.14, # A score of 0 means that there is low confidence that the detected event is an actual attack. A score of 1 means that there is high confidence that the detected event is an attack. See the [Adaptive Protection documentation](https://cloud.google.com/armor/docs/adaptive-protection-overview#configure-alert-tuning) for further explanation.
    },
    "attack": { # Information about DDoS attack volume and classification. # Information about DDoS attack volume and classification.
      "classification": "A String", # Type of attack, for example, 'SYN-flood', 'NTP-udp', or 'CHARGEN-udp'.
      "volumeBps": 42, # Total BPS (bytes per second) volume of attack.
      "volumePps": 42, # Total PPS (packets per second) volume of attack.
    },
    "duration": "A String", # Duration of attack from the start until the current moment (updated every 5 minutes).
    "requests": { # Information about the requests relevant to the finding. # Information about incoming requests evaluated by [Google Cloud Armor security policies](https://cloud.google.com/armor/docs/security-policy-overview).
      "longTermAllowed": 42, # Allowed RPS (requests per second) over the long term.
      "longTermDenied": 42, # Denied RPS (requests per second) over the long term.
      "ratio": 3.14, # For 'Increasing deny ratio', the ratio is the denied traffic divided by the allowed traffic. For 'Allowed traffic spike', the ratio is the allowed traffic in the short term divided by allowed traffic in the long term.
      "shortTermAllowed": 42, # Allowed RPS (requests per second) in the short term.
    },
    "securityPolicy": { # Information about the [Google Cloud Armor security policy](https://cloud.google.com/armor/docs/security-policy-overview) relevant to the finding. # Information about the [Google Cloud Armor security policy](https://cloud.google.com/armor/docs/security-policy-overview) relevant to the finding.
      "name": "A String", # The name of the Google Cloud Armor security policy, for example, "my-security-policy".
      "preview": True or False, # Whether or not the associated rule or policy is in preview mode.
      "type": "A String", # The type of Google Cloud Armor security policy for example, 'backend security policy', 'edge security policy', 'network edge security policy', or 'always-on DDoS protection'.
    },
    "threatVector": "A String", # Distinguish between volumetric & protocol DDoS attack and application layer attacks. For example, "L3_4" for Layer 3 and Layer 4 DDoS attacks, or "L_7" for Layer 7 DDoS attacks.
  },
  "cloudDlpDataProfile": { # The [data profile](https://cloud.google.com/dlp/docs/data-profiles) associated with the finding. # Cloud DLP data profile that is associated with the finding.
    "dataProfile": "A String", # Name of the data profile, for example, `projects/123/locations/europe/tableProfiles/8383929`.
    "parentType": "A String", # The resource hierarchy level at which the data profile was generated.
  },
  "cloudDlpInspection": { # Details about the Cloud Data Loss Prevention (Cloud DLP) [inspection job](https://cloud.google.com/dlp/docs/concepts-job-triggers) that produced the finding. # Cloud Data Loss Prevention (Cloud DLP) inspection results that are associated with the finding.
    "fullScan": True or False, # Whether Cloud DLP scanned the complete resource or a sampled subset.
    "infoType": "A String", # The type of information (or *[infoType](https://cloud.google.com/dlp/docs/infotypes-reference)*) found, for example, `EMAIL_ADDRESS` or `STREET_ADDRESS`.
    "infoTypeCount": "A String", # The number of times Cloud DLP found this infoType within this job and resource.
    "inspectJob": "A String", # Name of the inspection job, for example, `projects/123/locations/europe/dlpJobs/i-8383929`.
  },
  "compliances": [ # Contains compliance information for security standards associated to the finding.
    { # Contains compliance information about a security standard indicating unmet recommendations.
      "ids": [ # Policies within the standard or benchmark, for example, A.12.4.1
        "A String",
      ],
      "standard": "A String", # Industry-wide compliance standards or benchmarks, such as CIS, PCI, and OWASP.
      "version": "A String", # Version of the standard or benchmark, for example, 1.1
    },
  ],
  "connections": [ # Contains information about the IP connection associated with the finding.
    { # Contains information about the IP connection associated with the finding.
      "destinationIp": "A String", # Destination IP address. Not present for sockets that are listening and not connected.
      "destinationPort": 42, # Destination port. Not present for sockets that are listening and not connected.
      "protocol": "A String", # IANA Internet Protocol Number such as TCP(6) and UDP(17).
      "sourceIp": "A String", # Source IP address.
      "sourcePort": 42, # Source port.
    },
  ],
  "contacts": { # Output only. Map containing the points of contact for the given finding. The key represents the type of contact, while the value contains a list of all the contacts that pertain. Please refer to: https://cloud.google.com/resource-manager/docs/managing-notification-contacts#notification-categories { "security": { "contacts": [ { "email": "person1@company.com" }, { "email": "person2@company.com" } ] } }
    "a_key": { # Details about specific contacts
      "contacts": [ # A list of contacts
        { # The email address of a contact.
          "email": "A String", # An email address. For example, "`person123@company.com`".
        },
      ],
    },
  },
  "containers": [ # Containers associated with the finding. This field provides information for both Kubernetes and non-Kubernetes containers.
    { # Container associated with the finding.
      "createTime": "A String", # The time that the container was created.
      "imageId": "A String", # Optional container image ID, if provided by the container runtime. Uniquely identifies the container image launched using a container image digest.
      "labels": [ # Container labels, as provided by the container runtime.
        { # Represents a generic name-value label. A label has separate name and value fields to support filtering with the `contains()` function. For more information, see [Filtering on array-type fields](https://cloud.google.com/security-command-center/docs/how-to-api-list-findings#array-contains-filtering).
          "name": "A String", # Name of the label.
          "value": "A String", # Value that corresponds to the label's name.
        },
      ],
      "name": "A String", # Name of the container.
      "uri": "A String", # Container image URI provided when configuring a pod or container. This string can identify a container image version using mutable tags.
    },
  ],
  "createTime": "A String", # The time at which the finding was created in Security Command Center.
  "database": { # Represents database access information, such as queries. A database may be a sub-resource of an instance (as in the case of Cloud SQL instances or Cloud Spanner instances), or the database instance itself. Some database resources might not have the [full resource name](https://google.aip.dev/122#full-resource-names) populated because these resource types, such as Cloud SQL databases, are not yet supported by Cloud Asset Inventory. In these cases only the display name is provided. # Database associated with the finding.
    "displayName": "A String", # The human-readable name of the database that the user connected to.
    "grantees": [ # The target usernames, roles, or groups of an SQL privilege grant, which is not an IAM policy change.
      "A String",
    ],
    "name": "A String", # Some database resources may not have the [full resource name](https://google.aip.dev/122#full-resource-names) populated because these resource types are not yet supported by Cloud Asset Inventory (e.g. Cloud SQL databases). In these cases only the display name will be provided. The [full resource name](https://google.aip.dev/122#full-resource-names) of the database that the user connected to, if it is supported by Cloud Asset Inventory.
    "query": "A String", # The SQL statement that is associated with the database access.
    "userName": "A String", # The username used to connect to the database. The username might not be an IAM principal and does not have a set format.
    "version": "A String", # The version of the database, for example, POSTGRES_14. See [the complete list](https://cloud.google.com/sql/docs/mysql/admin-api/rest/v1/SqlDatabaseVersion).
  },
  "description": "A String", # Contains more details about the finding.
  "eventTime": "A String", # The time the finding was first detected. If an existing finding is updated, then this is the time the update occurred. For example, if the finding represents an open firewall, this property captures the time the detector believes the firewall became open. The accuracy is determined by the detector. If the finding is later resolved, then this time reflects when the finding was resolved. This must not be set to a value greater than the current timestamp.
  "exfiltration": { # Exfiltration represents a data exfiltration attempt from one or more sources to one or more targets. The `sources` attribute lists the sources of the exfiltrated data. The `targets` attribute lists the destinations the data was copied to. # Represents exfiltrations associated with the finding.
    "sources": [ # If there are multiple sources, then the data is considered "joined" between them. For instance, BigQuery can join multiple tables, and each table would be considered a source.
      { # Resource where data was exfiltrated from or exfiltrated to.
        "components": [ # Subcomponents of the asset that was exfiltrated, like URIs used during exfiltration, table names, databases, and filenames. For example, multiple tables might have been exfiltrated from the same Cloud SQL instance, or multiple files might have been exfiltrated from the same Cloud Storage bucket.
          "A String",
        ],
        "name": "A String", # The resource's [full resource name](https://cloud.google.com/apis/design/resource_names#full_resource_name).
      },
    ],
    "targets": [ # If there are multiple targets, each target would get a complete copy of the "joined" source data.
      { # Resource where data was exfiltrated from or exfiltrated to.
        "components": [ # Subcomponents of the asset that was exfiltrated, like URIs used during exfiltration, table names, databases, and filenames. For example, multiple tables might have been exfiltrated from the same Cloud SQL instance, or multiple files might have been exfiltrated from the same Cloud Storage bucket.
          "A String",
        ],
        "name": "A String", # The resource's [full resource name](https://cloud.google.com/apis/design/resource_names#full_resource_name).
      },
    ],
    "totalExfiltratedBytes": "A String", # Total exfiltrated bytes processed for the entire job.
  },
  "externalSystems": { # Output only. Third party SIEM/SOAR fields within SCC, contains external system information and external system finding fields.
    "a_key": { # Representation of third party SIEM/SOAR fields within SCC.
      "assignees": [ # References primary/secondary etc assignees in the external system.
        "A String",
      ],
      "caseCloseTime": "A String", # The time when the case was closed, as reported by the external system.
      "caseCreateTime": "A String", # The time when the case was created, as reported by the external system.
      "casePriority": "A String", # The priority of the finding's corresponding case in the external system.
      "caseSla": "A String", # The SLA of the finding's corresponding case in the external system.
      "caseUri": "A String", # The link to the finding's corresponding case in the external system.
      "externalSystemUpdateTime": "A String", # The time when the case was last updated, as reported by the external system.
      "externalUid": "A String", # The identifier that's used to track the finding's corresponding case in the external system.
      "name": "A String", # Full resource name of the external system, for example: "organizations/1234/sources/5678/findings/123456/externalSystems/jira", "folders/1234/sources/5678/findings/123456/externalSystems/jira", "projects/1234/sources/5678/findings/123456/externalSystems/jira"
      "status": "A String", # The most recent status of the finding's corresponding case, as reported by the external system.
      "ticketInfo": { # Information about the ticket, if any, that is being used to track the resolution of the issue that is identified by this finding. # Information about the ticket, if any, that is being used to track the resolution of the issue that is identified by this finding.
        "assignee": "A String", # The assignee of the ticket in the ticket system.
        "description": "A String", # The description of the ticket in the ticket system.
        "id": "A String", # The identifier of the ticket in the ticket system.
        "status": "A String", # The latest status of the ticket, as reported by the ticket system.
        "updateTime": "A String", # The time when the ticket was last updated, as reported by the ticket system.
        "uri": "A String", # The link to the ticket in the ticket system.
      },
    },
  },
  "externalUri": "A String", # The URI that, if available, points to a web page outside of Security Command Center where additional information about the finding can be found. This field is guaranteed to be either empty or a well formed URL.
  "files": [ # File associated with the finding.
    { # File information about the related binary/library used by an executable, or the script used by a script interpreter
      "contents": "A String", # Prefix of the file contents as a JSON-encoded string.
      "diskPath": { # Path of the file in terms of underlying disk/partition identifiers. # Path of the file in terms of underlying disk/partition identifiers.
        "partitionUuid": "A String", # UUID of the partition (format https://wiki.archlinux.org/title/persistent_block_device_naming#by-uuid)
        "relativePath": "A String", # Relative path of the file in the partition as a JSON encoded string. Example: /home/user1/executable_file.sh
      },
      "hashedSize": "A String", # The length in bytes of the file prefix that was hashed. If hashed_size == size, any hashes reported represent the entire file.
      "partiallyHashed": True or False, # True when the hash covers only a prefix of the file.
      "path": "A String", # Absolute path of the file as a JSON encoded string.
      "sha256": "A String", # SHA256 hash of the first hashed_size bytes of the file encoded as a hex string. If hashed_size == size, sha256 represents the SHA256 hash of the entire file.
      "size": "A String", # Size of the file in bytes.
    },
  ],
  "findingClass": "A String", # The class of the finding.
  "iamBindings": [ # Represents IAM bindings associated with the finding.
    { # Represents a particular IAM binding, which captures a member's role addition, removal, or state.
      "action": "A String", # The action that was performed on a Binding.
      "member": "A String", # A single identity requesting access for a Cloud Platform resource, for example, "foo@google.com".
      "role": "A String", # Role that is assigned to "members". For example, "roles/viewer", "roles/editor", or "roles/owner".
    },
  ],
  "indicator": { # Represents what's commonly known as an _indicator of compromise_ (IoC) in computer forensics. This is an artifact observed on a network or in an operating system that, with high confidence, indicates a computer intrusion. For more information, see [Indicator of compromise](https://en.wikipedia.org/wiki/Indicator_of_compromise). # Represents what's commonly known as an *indicator of compromise* (IoC) in computer forensics. This is an artifact observed on a network or in an operating system that, with high confidence, indicates a computer intrusion. For more information, see [Indicator of compromise](https://en.wikipedia.org/wiki/Indicator_of_compromise).
    "domains": [ # List of domains associated to the Finding.
      "A String",
    ],
    "ipAddresses": [ # The list of IP addresses that are associated with the finding.
      "A String",
    ],
    "signatures": [ # The list of matched signatures indicating that the given process is present in the environment.
      { # Indicates what signature matched this process.
        "memoryHashSignature": { # A signature corresponding to memory page hashes. # Signature indicating that a binary family was matched.
          "binaryFamily": "A String", # The binary family.
          "detections": [ # The list of memory hash detections contributing to the binary family match.
            { # Memory hash detection contributing to the binary family match.
              "binary": "A String", # The name of the binary associated with the memory hash signature detection.
              "percentPagesMatched": 3.14, # The percentage of memory page hashes in the signature that were matched.
            },
          ],
        },
        "signatureType": "A String", # Describes the type of resource associated with the signature.
        "yaraRuleSignature": { # A signature corresponding to a YARA rule. # Signature indicating that a YARA rule was matched.
          "yaraRule": "A String", # The name of the YARA rule.
        },
      },
    ],
    "uris": [ # The list of URIs associated to the Findings.
      "A String",
    ],
  },
  "kernelRootkit": { # Kernel mode rootkit signatures. # Signature of the kernel rootkit.
    "name": "A String", # Rootkit name, when available.
    "unexpectedCodeModification": True or False, # True if unexpected modifications of kernel code memory are present.
    "unexpectedFtraceHandler": True or False, # True if `ftrace` points are present with callbacks pointing to regions that are not in the expected kernel or module code range.
    "unexpectedInterruptHandler": True or False, # True if interrupt handlers that are are not in the expected kernel or module code regions are present.
    "unexpectedKernelCodePages": True or False, # True if kernel code pages that are not in the expected kernel or module code regions are present.
    "unexpectedKprobeHandler": True or False, # True if `kprobe` points are present with callbacks pointing to regions that are not in the expected kernel or module code range.
    "unexpectedProcessesInRunqueue": True or False, # True if unexpected processes in the scheduler run queue are present. Such processes are in the run queue, but not in the process task list.
    "unexpectedReadOnlyDataModification": True or False, # True if unexpected modifications of kernel read-only data memory are present.
    "unexpectedSystemCallHandler": True or False, # True if system call handlers that are are not in the expected kernel or module code regions are present.
  },
  "kubernetes": { # Kubernetes-related attributes. # Kubernetes resources associated with the finding.
    "accessReviews": [ # Provides information on any Kubernetes access reviews (privilege checks) relevant to the finding.
      { # Conveys information about a Kubernetes access review (such as one returned by a [`kubectl auth can-i`](https://kubernetes.io/docs/reference/access-authn-authz/authorization/#checking-api-access) command) that was involved in a finding.
        "group": "A String", # The API group of the resource. "*" means all.
        "name": "A String", # The name of the resource being requested. Empty means all.
        "ns": "A String", # Namespace of the action being requested. Currently, there is no distinction between no namespace and all namespaces. Both are represented by "" (empty).
        "resource": "A String", # The optional resource type requested. "*" means all.
        "subresource": "A String", # The optional subresource type.
        "verb": "A String", # A Kubernetes resource API verb, like get, list, watch, create, update, delete, proxy. "*" means all.
        "version": "A String", # The API version of the resource. "*" means all.
      },
    ],
    "bindings": [ # Provides Kubernetes role binding information for findings that involve [RoleBindings or ClusterRoleBindings](https://cloud.google.com/kubernetes-engine/docs/how-to/role-based-access-control).
      { # Represents a Kubernetes RoleBinding or ClusterRoleBinding.
        "name": "A String", # Name for the binding.
        "ns": "A String", # Namespace for the binding.
        "role": { # Kubernetes Role or ClusterRole. # The Role or ClusterRole referenced by the binding.
          "kind": "A String", # Role type.
          "name": "A String", # Role name.
          "ns": "A String", # Role namespace.
        },
        "subjects": [ # Represents one or more subjects that are bound to the role. Not always available for PATCH requests.
          { # Represents a Kubernetes subject.
            "kind": "A String", # Authentication type for the subject.
            "name": "A String", # Name for the subject.
            "ns": "A String", # Namespace for the subject.
          },
        ],
      },
    ],
    "nodePools": [ # GKE [node pools](https://cloud.google.com/kubernetes-engine/docs/concepts/node-pools) associated with the finding. This field contains node pool information for each node, when it is available.
      { # Provides GKE node pool information.
        "name": "A String", # Kubernetes node pool name.
        "nodes": [ # Nodes associated with the finding.
          { # Kubernetes nodes associated with the finding.
            "name": "A String", # [Full resource name](https://google.aip.dev/122#full-resource-names) of the Compute Engine VM running the cluster node.
          },
        ],
      },
    ],
    "nodes": [ # Provides Kubernetes [node](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-architecture#nodes) information.
      { # Kubernetes nodes associated with the finding.
        "name": "A String", # [Full resource name](https://google.aip.dev/122#full-resource-names) of the Compute Engine VM running the cluster node.
      },
    ],
    "objects": [ # Kubernetes objects related to the finding.
      { # Kubernetes object related to the finding, uniquely identified by GKNN. Used if the object Kind is not one of Pod, Node, NodePool, Binding, or AccessReview.
        "containers": [ # Pod containers associated with this finding, if any.
          { # Container associated with the finding.
            "createTime": "A String", # The time that the container was created.
            "imageId": "A String", # Optional container image ID, if provided by the container runtime. Uniquely identifies the container image launched using a container image digest.
            "labels": [ # Container labels, as provided by the container runtime.
              { # Represents a generic name-value label. A label has separate name and value fields to support filtering with the `contains()` function. For more information, see [Filtering on array-type fields](https://cloud.google.com/security-command-center/docs/how-to-api-list-findings#array-contains-filtering).
                "name": "A String", # Name of the label.
                "value": "A String", # Value that corresponds to the label's name.
              },
            ],
            "name": "A String", # Name of the container.
            "uri": "A String", # Container image URI provided when configuring a pod or container. This string can identify a container image version using mutable tags.
          },
        ],
        "group": "A String", # Kubernetes object group, such as "policy.k8s.io/v1".
        "kind": "A String", # Kubernetes object kind, such as "Namespace".
        "name": "A String", # Kubernetes object name. For details see https://kubernetes.io/docs/concepts/overview/working-with-objects/names/.
        "ns": "A String", # Kubernetes object namespace. Must be a valid DNS label. Named "ns" to avoid collision with C++ namespace keyword. For details see https://kubernetes.io/docs/tasks/administer-cluster/namespaces/.
      },
    ],
    "pods": [ # Kubernetes [Pods](https://cloud.google.com/kubernetes-engine/docs/concepts/pod) associated with the finding. This field contains Pod records for each container that is owned by a Pod.
      { # A Kubernetes Pod.
        "containers": [ # Pod containers associated with this finding, if any.
          { # Container associated with the finding.
            "createTime": "A String", # The time that the container was created.
            "imageId": "A String", # Optional container image ID, if provided by the container runtime. Uniquely identifies the container image launched using a container image digest.
            "labels": [ # Container labels, as provided by the container runtime.
              { # Represents a generic name-value label. A label has separate name and value fields to support filtering with the `contains()` function. For more information, see [Filtering on array-type fields](https://cloud.google.com/security-command-center/docs/how-to-api-list-findings#array-contains-filtering).
                "name": "A String", # Name of the label.
                "value": "A String", # Value that corresponds to the label's name.
              },
            ],
            "name": "A String", # Name of the container.
            "uri": "A String", # Container image URI provided when configuring a pod or container. This string can identify a container image version using mutable tags.
          },
        ],
        "labels": [ # Pod labels. For Kubernetes containers, these are applied to the container.
          { # Represents a generic name-value label. A label has separate name and value fields to support filtering with the `contains()` function. For more information, see [Filtering on array-type fields](https://cloud.google.com/security-command-center/docs/how-to-api-list-findings#array-contains-filtering).
            "name": "A String", # Name of the label.
            "value": "A String", # Value that corresponds to the label's name.
          },
        ],
        "name": "A String", # Kubernetes Pod name.
        "ns": "A String", # Kubernetes Pod namespace.
      },
    ],
    "roles": [ # Provides Kubernetes role information for findings that involve [Roles or ClusterRoles](https://cloud.google.com/kubernetes-engine/docs/how-to/role-based-access-control).
      { # Kubernetes Role or ClusterRole.
        "kind": "A String", # Role type.
        "name": "A String", # Role name.
        "ns": "A String", # Role namespace.
      },
    ],
  },
  "loadBalancers": [ # The load balancers associated with the finding.
    { # Contains information related to the load balancer associated with the finding.
      "name": "A String", # The name of the load balancer associated with the finding.
    },
  ],
  "logEntries": [ # Log entries that are relevant to the finding.
    { # An individual entry in a log.
      "cloudLoggingEntry": { # Metadata taken from a [Cloud Logging LogEntry](https://cloud.google.com/logging/docs/reference/v2/rest/v2/LogEntry) # An individual entry in a log stored in Cloud Logging.
        "insertId": "A String", # A unique identifier for the log entry.
        "logId": "A String", # The type of the log (part of `log_name`. `log_name` is the resource name of the log to which this log entry belongs). For example: `cloudresourcemanager.googleapis.com/activity`. Note that this field is not URL-encoded, unlike the `LOG_ID` field in `LogEntry`.
        "resourceContainer": "A String", # The organization, folder, or project of the monitored resource that produced this log entry.
        "timestamp": "A String", # The time the event described by the log entry occurred.
      },
    },
  ],
  "mitreAttack": { # MITRE ATT&CK tactics and techniques related to this finding. See: https://attack.mitre.org # MITRE ATT&CK tactics and techniques related to this finding. See: https://attack.mitre.org
    "additionalTactics": [ # Additional MITRE ATT&CK tactics related to this finding, if any.
      "A String",
    ],
    "additionalTechniques": [ # Additional MITRE ATT&CK techniques related to this finding, if any, along with any of their respective parent techniques.
      "A String",
    ],
    "primaryTactic": "A String", # The MITRE ATT&CK tactic most closely represented by this finding, if any.
    "primaryTechniques": [ # The MITRE ATT&CK technique most closely represented by this finding, if any. primary_techniques is a repeated field because there are multiple levels of MITRE ATT&CK techniques. If the technique most closely represented by this finding is a sub-technique (e.g. `SCANNING_IP_BLOCKS`), both the sub-technique and its parent technique(s) will be listed (e.g. `SCANNING_IP_BLOCKS`, `ACTIVE_SCANNING`).
      "A String",
    ],
    "version": "A String", # The MITRE ATT&CK version referenced by the above fields. E.g. "8".
  },
  "moduleName": "A String", # Unique identifier of the module which generated the finding. Example: folders/598186756061/securityHealthAnalyticsSettings/customModules/56799441161885
  "mute": "A String", # Indicates the mute state of a finding (either muted, unmuted or undefined). Unlike other attributes of a finding, a finding provider shouldn't set the value of mute.
  "muteInitiator": "A String", # Records additional information about the mute operation, for example, the [mute configuration](/security-command-center/docs/how-to-mute-findings) that muted the finding and the user who muted the finding.
  "muteUpdateTime": "A String", # Output only. The most recent time this finding was muted or unmuted.
  "name": "A String", # The [relative resource name](https://cloud.google.com/apis/design/resource_names#relative_resource_name) of the finding. Example: "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}", "folders/{folder_id}/sources/{source_id}/findings/{finding_id}", "projects/{project_id}/sources/{source_id}/findings/{finding_id}".
  "nextSteps": "A String", # Steps to address the finding.
  "notebook": { # Represents a Jupyter notebook IPYNB file, such as a [Colab Enterprise notebook](https://cloud.google.com/colab/docs/introduction) file, that is associated with a finding. # Notebook associated with the finding.
    "lastAuthor": "A String", # The user ID of the latest author to modify the notebook.
    "name": "A String", # The name of the notebook.
    "notebookUpdateTime": "A String", # The most recent time the notebook was updated.
    "service": "A String", # The source notebook service, for example, "Colab Enterprise".
  },
  "orgPolicies": [ # Contains information about the org policies associated with the finding.
    { # Contains information about the org policies associated with the finding.
      "name": "A String", # The resource name of the org policy. Example: "organizations/{organization_id}/policies/{constraint_name}"
    },
  ],
  "parent": "A String", # The relative resource name of the source the finding belongs to. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name This field is immutable after creation time. For example: "organizations/{organization_id}/sources/{source_id}"
  "parentDisplayName": "A String", # Output only. The human readable display name of the finding source such as "Event Threat Detection" or "Security Health Analytics".
  "processes": [ # Represents operating system processes associated with the Finding.
    { # Represents an operating system process.
      "args": [ # Process arguments as JSON encoded strings.
        "A String",
      ],
      "argumentsTruncated": True or False, # True if `args` is incomplete.
      "binary": { # File information about the related binary/library used by an executable, or the script used by a script interpreter # File information for the process executable.
        "contents": "A String", # Prefix of the file contents as a JSON-encoded string.
        "diskPath": { # Path of the file in terms of underlying disk/partition identifiers. # Path of the file in terms of underlying disk/partition identifiers.
          "partitionUuid": "A String", # UUID of the partition (format https://wiki.archlinux.org/title/persistent_block_device_naming#by-uuid)
          "relativePath": "A String", # Relative path of the file in the partition as a JSON encoded string. Example: /home/user1/executable_file.sh
        },
        "hashedSize": "A String", # The length in bytes of the file prefix that was hashed. If hashed_size == size, any hashes reported represent the entire file.
        "partiallyHashed": True or False, # True when the hash covers only a prefix of the file.
        "path": "A String", # Absolute path of the file as a JSON encoded string.
        "sha256": "A String", # SHA256 hash of the first hashed_size bytes of the file encoded as a hex string. If hashed_size == size, sha256 represents the SHA256 hash of the entire file.
        "size": "A String", # Size of the file in bytes.
      },
      "envVariables": [ # Process environment variables.
        { # A name-value pair representing an environment variable used in an operating system process.
          "name": "A String", # Environment variable name as a JSON encoded string.
          "val": "A String", # Environment variable value as a JSON encoded string.
        },
      ],
      "envVariablesTruncated": True or False, # True if `env_variables` is incomplete.
      "libraries": [ # File information for libraries loaded by the process.
        { # File information about the related binary/library used by an executable, or the script used by a script interpreter
          "contents": "A String", # Prefix of the file contents as a JSON-encoded string.
          "diskPath": { # Path of the file in terms of underlying disk/partition identifiers. # Path of the file in terms of underlying disk/partition identifiers.
            "partitionUuid": "A String", # UUID of the partition (format https://wiki.archlinux.org/title/persistent_block_device_naming#by-uuid)
            "relativePath": "A String", # Relative path of the file in the partition as a JSON encoded string. Example: /home/user1/executable_file.sh
          },
          "hashedSize": "A String", # The length in bytes of the file prefix that was hashed. If hashed_size == size, any hashes reported represent the entire file.
          "partiallyHashed": True or False, # True when the hash covers only a prefix of the file.
          "path": "A String", # Absolute path of the file as a JSON encoded string.
          "sha256": "A String", # SHA256 hash of the first hashed_size bytes of the file encoded as a hex string. If hashed_size == size, sha256 represents the SHA256 hash of the entire file.
          "size": "A String", # Size of the file in bytes.
        },
      ],
      "name": "A String", # The process name, as displayed in utilities like `top` and `ps`. This name can be accessed through `/proc/[pid]/comm` and changed with `prctl(PR_SET_NAME)`.
      "parentPid": "A String", # The parent process ID.
      "pid": "A String", # The process ID.
      "script": { # File information about the related binary/library used by an executable, or the script used by a script interpreter # When the process represents the invocation of a script, `binary` provides information about the interpreter, while `script` provides information about the script file provided to the interpreter.
        "contents": "A String", # Prefix of the file contents as a JSON-encoded string.
        "diskPath": { # Path of the file in terms of underlying disk/partition identifiers. # Path of the file in terms of underlying disk/partition identifiers.
          "partitionUuid": "A String", # UUID of the partition (format https://wiki.archlinux.org/title/persistent_block_device_naming#by-uuid)
          "relativePath": "A String", # Relative path of the file in the partition as a JSON encoded string. Example: /home/user1/executable_file.sh
        },
        "hashedSize": "A String", # The length in bytes of the file prefix that was hashed. If hashed_size == size, any hashes reported represent the entire file.
        "partiallyHashed": True or False, # True when the hash covers only a prefix of the file.
        "path": "A String", # Absolute path of the file as a JSON encoded string.
        "sha256": "A String", # SHA256 hash of the first hashed_size bytes of the file encoded as a hex string. If hashed_size == size, sha256 represents the SHA256 hash of the entire file.
        "size": "A String", # Size of the file in bytes.
      },
    },
  ],
  "resourceName": "A String", # For findings on Google Cloud resources, the full resource name of the Google Cloud resource this finding is for. See: https://cloud.google.com/apis/design/resource_names#full_resource_name When the finding is for a non-Google Cloud resource, the resourceName can be a customer or partner defined string. This field is immutable after creation time.
  "securityMarks": { # User specified security marks that are attached to the parent Security Command Center resource. Security marks are scoped within a Security Command Center organization -- they can be modified and viewed by all users who have proper permissions on the organization. # Output only. User specified security marks. These marks are entirely managed by the user and come from the SecurityMarks resource that belongs to the finding.
    "canonicalName": "A String", # The canonical name of the marks. Examples: "organizations/{organization_id}/assets/{asset_id}/securityMarks" "folders/{folder_id}/assets/{asset_id}/securityMarks" "projects/{project_number}/assets/{asset_id}/securityMarks" "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}/securityMarks" "folders/{folder_id}/sources/{source_id}/findings/{finding_id}/securityMarks" "projects/{project_number}/sources/{source_id}/findings/{finding_id}/securityMarks"
    "marks": { # Mutable user specified security marks belonging to the parent resource. Constraints are as follows: * Keys and values are treated as case insensitive * Keys must be between 1 - 256 characters (inclusive) * Keys must be letters, numbers, underscores, or dashes * Values have leading and trailing whitespace trimmed, remaining characters must be between 1 - 4096 characters (inclusive)
      "a_key": "A String",
    },
    "name": "A String", # The relative resource name of the SecurityMarks. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Examples: "organizations/{organization_id}/assets/{asset_id}/securityMarks" "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}/securityMarks".
  },
  "securityPosture": { # Represents a posture that is deployed on Google Cloud by the Security Command Center Posture Management service. A posture contains one or more policy sets. A policy set is a group of policies that enforce a set of security rules on Google Cloud. # The security posture associated with the finding.
    "changedPolicy": "A String", # The name of the updated policy, for example, `projects/{project_id}/policies/{constraint_name}`.
    "name": "A String", # Name of the posture, for example, `CIS-Posture`.
    "policy": "A String", # The ID of the updated policy, for example, `compute-policy-1`.
    "policyDriftDetails": [ # The details about a change in an updated policy that violates the deployed posture.
      { # The policy field that violates the deployed posture and its expected and detected values.
        "detectedValue": "A String", # The detected value that violates the deployed posture, for example, `false` or `allowed_values={"projects/22831892"}`.
        "expectedValue": "A String", # The value of this field that was configured in a posture, for example, `true` or `allowed_values={"projects/29831892"}`.
        "field": "A String", # The name of the updated field, for example constraint.implementation.policy_rules[0].enforce
      },
    ],
    "policySet": "A String", # The name of the updated policyset, for example, `cis-policyset`.
    "postureDeployment": "A String", # The name of the posture deployment, for example, `organizations/{org_id}/posturedeployments/{posture_deployment_id}`.
    "postureDeploymentResource": "A String", # The project, folder, or organization on which the posture is deployed, for example, `projects/{project_number}`.
    "revisionId": "A String", # The version of the posture, for example, `c7cfa2a8`.
  },
  "severity": "A String", # The severity of the finding. This field is managed by the source that writes the finding.
  "sourceProperties": { # Source specific properties. These properties are managed by the source that writes the finding. The key names in the source_properties map must be between 1 and 255 characters, and must start with a letter and contain alphanumeric characters or underscores only.
    "a_key": "",
  },
  "state": "A String", # The state of the finding.
  "vulnerability": { # Refers to common vulnerability fields e.g. cve, cvss, cwe etc. # Represents vulnerability-specific fields like CVE and CVSS scores. CVE stands for Common Vulnerabilities and Exposures (https://cve.mitre.org/about/)
    "cve": { # CVE stands for Common Vulnerabilities and Exposures. Information from the [CVE record](https://www.cve.org/ResourcesSupport/Glossary) that describes this vulnerability. # CVE stands for Common Vulnerabilities and Exposures (https://cve.mitre.org/about/)
      "cvssv3": { # Common Vulnerability Scoring System version 3. # Describe Common Vulnerability Scoring System specified at https://www.first.org/cvss/v3.1/specification-document
        "attackComplexity": "A String", # This metric describes the conditions beyond the attacker's control that must exist in order to exploit the vulnerability.
        "attackVector": "A String", # Base Metrics Represents the intrinsic characteristics of a vulnerability that are constant over time and across user environments. This metric reflects the context by which vulnerability exploitation is possible.
        "availabilityImpact": "A String", # This metric measures the impact to the availability of the impacted component resulting from a successfully exploited vulnerability.
        "baseScore": 3.14, # The base score is a function of the base metric scores.
        "confidentialityImpact": "A String", # This metric measures the impact to the confidentiality of the information resources managed by a software component due to a successfully exploited vulnerability.
        "integrityImpact": "A String", # This metric measures the impact to integrity of a successfully exploited vulnerability.
        "privilegesRequired": "A String", # This metric describes the level of privileges an attacker must possess before successfully exploiting the vulnerability.
        "scope": "A String", # The Scope metric captures whether a vulnerability in one vulnerable component impacts resources in components beyond its security scope.
        "userInteraction": "A String", # This metric captures the requirement for a human user, other than the attacker, to participate in the successful compromise of the vulnerable component.
      },
      "exploitationActivity": "A String", # The exploitation activity of the vulnerability in the wild.
      "id": "A String", # The unique identifier for the vulnerability. e.g. CVE-2021-34527
      "impact": "A String", # The potential impact of the vulnerability if it was to be exploited.
      "observedInTheWild": True or False, # Whether or not the vulnerability has been observed in the wild.
      "references": [ # Additional information about the CVE. e.g. https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-34527
        { # Additional Links
          "source": "A String", # Source of the reference e.g. NVD
          "uri": "A String", # Uri for the mentioned source e.g. https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-34527.
        },
      ],
      "upstreamFixAvailable": True or False, # Whether upstream fix is available for the CVE.
      "zeroDay": True or False, # Whether or not the vulnerability was zero day when the finding was published.
    },
    "fixedPackage": { # Package is a generic definition of a package. # The fixed package is relevant to the finding.
      "cpeUri": "A String", # The CPE URI where the vulnerability was detected.
      "packageName": "A String", # The name of the package where the vulnerability was detected.
      "packageType": "A String", # Type of package, for example, os, maven, or go.
      "packageVersion": "A String", # The version of the package.
    },
    "offendingPackage": { # Package is a generic definition of a package. # The offending package is relevant to the finding.
      "cpeUri": "A String", # The CPE URI where the vulnerability was detected.
      "packageName": "A String", # The name of the package where the vulnerability was detected.
      "packageType": "A String", # Type of package, for example, os, maven, or go.
      "packageVersion": "A String", # The version of the package.
    },
    "securityBulletin": { # SecurityBulletin are notifications of vulnerabilities of Google products. # The security bulletin is relevant to this finding.
      "bulletinId": "A String", # ID of the bulletin corresponding to the vulnerability.
      "submissionTime": "A String", # Submission time of this Security Bulletin.
      "suggestedUpgradeVersion": "A String", # This represents a version that the cluster receiving this notification should be upgraded to, based on its current version. For example, 1.15.0
    },
  },
}
setState(name, body=None, x__xgafv=None)
Updates the state of a finding.

Args:
  name: string, Required. The [relative resource name](https://cloud.google.com/apis/design/resource_names#relative_resource_name) of the finding. Example: "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}", "folders/{folder_id}/sources/{source_id}/findings/{finding_id}", "projects/{project_id}/sources/{source_id}/findings/{finding_id}". (required)
  body: object, The request body.
    The object takes the form of:

{ # Request message for updating a finding's state.
  "startTime": "A String", # Required. The time at which the updated state takes effect.
  "state": "A String", # Required. The desired State of the finding.
}

  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # Security Command Center finding. A finding is a record of assessment data like security, risk, health, or privacy, that is ingested into Security Command Center for presentation, notification, analysis, policy testing, and enforcement. For example, a cross-site scripting (XSS) vulnerability in an App Engine application is a finding.
  "access": { # Represents an access event. # Access details associated with the finding, such as more information on the caller, which method was accessed, and from where.
    "callerIp": "A String", # Caller's IP address, such as "1.1.1.1".
    "callerIpGeo": { # Represents a geographical location for a given access. # The caller IP's geolocation, which identifies where the call came from.
      "regionCode": "A String", # A CLDR.
    },
    "methodName": "A String", # The method that the service account called, e.g. "SetIamPolicy".
    "principalEmail": "A String", # Associated email, such as "foo@google.com". The email address of the authenticated user or a service account acting on behalf of a third party principal making the request. For third party identity callers, the `principal_subject` field is populated instead of this field. For privacy reasons, the principal email address is sometimes redacted. For more information, see [Caller identities in audit logs](https://cloud.google.com/logging/docs/audit#user-id).
    "principalSubject": "A String", # A string that represents the principal_subject that is associated with the identity. Unlike `principal_email`, `principal_subject` supports principals that aren't associated with email addresses, such as third party principals. For most identities, the format is `principal://iam.googleapis.com/{identity pool name}/subject/{subject}`. Some GKE identities, such as GKE_WORKLOAD, FREEFORM, and GKE_HUB_WORKLOAD, still use the legacy format `serviceAccount:{identity pool name}[{subject}]`.
    "serviceAccountDelegationInfo": [ # The identity delegation history of an authenticated service account that made the request. The `serviceAccountDelegationInfo[]` object contains information about the real authorities that try to access Google Cloud resources by delegating on a service account. When multiple authorities are present, they are guaranteed to be sorted based on the original ordering of the identity delegation events.
      { # Identity delegation history of an authenticated service account.
        "principalEmail": "A String", # The email address of a Google account.
        "principalSubject": "A String", # A string representing the principal_subject associated with the identity. As compared to `principal_email`, supports principals that aren't associated with email addresses, such as third party principals. For most identities, the format will be `principal://iam.googleapis.com/{identity pool name}/subjects/{subject}` except for some GKE identities (GKE_WORKLOAD, FREEFORM, GKE_HUB_WORKLOAD) that are still in the legacy format `serviceAccount:{identity pool name}[{subject}]`
      },
    ],
    "serviceAccountKeyName": "A String", # The name of the service account key that was used to create or exchange credentials when authenticating the service account that made the request. This is a scheme-less URI full resource name. For example: "//iam.googleapis.com/projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT}/keys/{key}".
    "serviceName": "A String", # This is the API service that the service account made a call to, e.g. "iam.googleapis.com"
    "userAgent": "A String", # The caller's user agent string associated with the finding.
    "userAgentFamily": "A String", # Type of user agent associated with the finding. For example, an operating system shell or an embedded or standalone application.
    "userName": "A String", # A string that represents a username. The username provided depends on the type of the finding and is likely not an IAM principal. For example, this can be a system username if the finding is related to a virtual machine, or it can be an application login username.
  },
  "application": { # Represents an application associated with a finding. # Represents an application associated with the finding.
    "baseUri": "A String", # The base URI that identifies the network location of the application in which the vulnerability was detected. For example, `http://example.com`.
    "fullUri": "A String", # The full URI with payload that can be used to reproduce the vulnerability. For example, `http://example.com?p=aMmYgI6H`.
  },
  "attackExposure": { # An attack exposure contains the results of an attack path simulation run. # The results of an attack path simulation relevant to this finding.
    "attackExposureResult": "A String", # The resource name of the attack path simulation result that contains the details regarding this attack exposure score. Example: organizations/123/simulations/456/attackExposureResults/789
    "exposedHighValueResourcesCount": 42, # The number of high value resources that are exposed as a result of this finding.
    "exposedLowValueResourcesCount": 42, # The number of high value resources that are exposed as a result of this finding.
    "exposedMediumValueResourcesCount": 42, # The number of medium value resources that are exposed as a result of this finding.
    "latestCalculationTime": "A String", # The most recent time the attack exposure was updated on this finding.
    "score": 3.14, # A number between 0 (inclusive) and infinity that represents how important this finding is to remediate. The higher the score, the more important it is to remediate.
    "state": "A String", # What state this AttackExposure is in. This captures whether or not an attack exposure has been calculated or not.
  },
  "backupDisasterRecovery": { # Information related to Google Cloud Backup and DR Service findings. # Fields related to Backup and DR findings.
    "appliance": "A String", # The name of the Backup and DR appliance that captures, moves, and manages the lifecycle of backup data. For example, `backup-server-57137`.
    "applications": [ # The names of Backup and DR applications. An application is a VM, database, or file system on a managed host monitored by a backup and recovery appliance. For example, `centos7-01-vol00`, `centos7-01-vol01`, `centos7-01-vol02`.
      "A String",
    ],
    "backupCreateTime": "A String", # The timestamp at which the Backup and DR backup was created.
    "backupTemplate": "A String", # The name of a Backup and DR template which comprises one or more backup policies. See the [Backup and DR documentation](https://cloud.google.com/backup-disaster-recovery/docs/concepts/backup-plan#temp) for more information. For example, `snap-ov`.
    "backupType": "A String", # The backup type of the Backup and DR image. For example, `Snapshot`, `Remote Snapshot`, `OnVault`.
    "host": "A String", # The name of a Backup and DR host, which is managed by the backup and recovery appliance and known to the management console. The host can be of type Generic (for example, Compute Engine, SQL Server, Oracle DB, SMB file system, etc.), vCenter, or an ESX server. See the [Backup and DR documentation on hosts](https://cloud.google.com/backup-disaster-recovery/docs/configuration/manage-hosts-and-their-applications) for more information. For example, `centos7-01`.
    "policies": [ # The names of Backup and DR policies that are associated with a template and that define when to run a backup, how frequently to run a backup, and how long to retain the backup image. For example, `onvaults`.
      "A String",
    ],
    "policyOptions": [ # The names of Backup and DR advanced policy options of a policy applying to an application. See the [Backup and DR documentation on policy options](https://cloud.google.com/backup-disaster-recovery/docs/create-plan/policy-settings). For example, `skipofflineappsincongrp, nounmap`.
      "A String",
    ],
    "profile": "A String", # The name of the Backup and DR resource profile that specifies the storage media for backups of application and VM data. See the [Backup and DR documentation on profiles](https://cloud.google.com/backup-disaster-recovery/docs/concepts/backup-plan#profile). For example, `GCP`.
    "storagePool": "A String", # The name of the Backup and DR storage pool that the backup and recovery appliance is storing data in. The storage pool could be of type Cloud, Primary, Snapshot, or OnVault. See the [Backup and DR documentation on storage pools](https://cloud.google.com/backup-disaster-recovery/docs/concepts/storage-pools). For example, `DiskPoolOne`.
  },
  "canonicalName": "A String", # The canonical name of the finding. It's either "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}", "folders/{folder_id}/sources/{source_id}/findings/{finding_id}" or "projects/{project_number}/sources/{source_id}/findings/{finding_id}", depending on the closest CRM ancestor of the resource associated with the finding.
  "category": "A String", # The additional taxonomy group within findings from a given source. This field is immutable after creation time. Example: "XSS_FLASH_INJECTION"
  "cloudArmor": { # Fields related to Google Cloud Armor findings. # Fields related to Cloud Armor findings.
    "adaptiveProtection": { # Information about [Google Cloud Armor Adaptive Protection](https://cloud.google.com/armor/docs/cloud-armor-overview#google-cloud-armor-adaptive-protection). # Information about potential Layer 7 DDoS attacks identified by [Google Cloud Armor Adaptive Protection](https://cloud.google.com/armor/docs/adaptive-protection-overview).
      "confidence": 3.14, # A score of 0 means that there is low confidence that the detected event is an actual attack. A score of 1 means that there is high confidence that the detected event is an attack. See the [Adaptive Protection documentation](https://cloud.google.com/armor/docs/adaptive-protection-overview#configure-alert-tuning) for further explanation.
    },
    "attack": { # Information about DDoS attack volume and classification. # Information about DDoS attack volume and classification.
      "classification": "A String", # Type of attack, for example, 'SYN-flood', 'NTP-udp', or 'CHARGEN-udp'.
      "volumeBps": 42, # Total BPS (bytes per second) volume of attack.
      "volumePps": 42, # Total PPS (packets per second) volume of attack.
    },
    "duration": "A String", # Duration of attack from the start until the current moment (updated every 5 minutes).
    "requests": { # Information about the requests relevant to the finding. # Information about incoming requests evaluated by [Google Cloud Armor security policies](https://cloud.google.com/armor/docs/security-policy-overview).
      "longTermAllowed": 42, # Allowed RPS (requests per second) over the long term.
      "longTermDenied": 42, # Denied RPS (requests per second) over the long term.
      "ratio": 3.14, # For 'Increasing deny ratio', the ratio is the denied traffic divided by the allowed traffic. For 'Allowed traffic spike', the ratio is the allowed traffic in the short term divided by allowed traffic in the long term.
      "shortTermAllowed": 42, # Allowed RPS (requests per second) in the short term.
    },
    "securityPolicy": { # Information about the [Google Cloud Armor security policy](https://cloud.google.com/armor/docs/security-policy-overview) relevant to the finding. # Information about the [Google Cloud Armor security policy](https://cloud.google.com/armor/docs/security-policy-overview) relevant to the finding.
      "name": "A String", # The name of the Google Cloud Armor security policy, for example, "my-security-policy".
      "preview": True or False, # Whether or not the associated rule or policy is in preview mode.
      "type": "A String", # The type of Google Cloud Armor security policy for example, 'backend security policy', 'edge security policy', 'network edge security policy', or 'always-on DDoS protection'.
    },
    "threatVector": "A String", # Distinguish between volumetric & protocol DDoS attack and application layer attacks. For example, "L3_4" for Layer 3 and Layer 4 DDoS attacks, or "L_7" for Layer 7 DDoS attacks.
  },
  "cloudDlpDataProfile": { # The [data profile](https://cloud.google.com/dlp/docs/data-profiles) associated with the finding. # Cloud DLP data profile that is associated with the finding.
    "dataProfile": "A String", # Name of the data profile, for example, `projects/123/locations/europe/tableProfiles/8383929`.
    "parentType": "A String", # The resource hierarchy level at which the data profile was generated.
  },
  "cloudDlpInspection": { # Details about the Cloud Data Loss Prevention (Cloud DLP) [inspection job](https://cloud.google.com/dlp/docs/concepts-job-triggers) that produced the finding. # Cloud Data Loss Prevention (Cloud DLP) inspection results that are associated with the finding.
    "fullScan": True or False, # Whether Cloud DLP scanned the complete resource or a sampled subset.
    "infoType": "A String", # The type of information (or *[infoType](https://cloud.google.com/dlp/docs/infotypes-reference)*) found, for example, `EMAIL_ADDRESS` or `STREET_ADDRESS`.
    "infoTypeCount": "A String", # The number of times Cloud DLP found this infoType within this job and resource.
    "inspectJob": "A String", # Name of the inspection job, for example, `projects/123/locations/europe/dlpJobs/i-8383929`.
  },
  "compliances": [ # Contains compliance information for security standards associated to the finding.
    { # Contains compliance information about a security standard indicating unmet recommendations.
      "ids": [ # Policies within the standard or benchmark, for example, A.12.4.1
        "A String",
      ],
      "standard": "A String", # Industry-wide compliance standards or benchmarks, such as CIS, PCI, and OWASP.
      "version": "A String", # Version of the standard or benchmark, for example, 1.1
    },
  ],
  "connections": [ # Contains information about the IP connection associated with the finding.
    { # Contains information about the IP connection associated with the finding.
      "destinationIp": "A String", # Destination IP address. Not present for sockets that are listening and not connected.
      "destinationPort": 42, # Destination port. Not present for sockets that are listening and not connected.
      "protocol": "A String", # IANA Internet Protocol Number such as TCP(6) and UDP(17).
      "sourceIp": "A String", # Source IP address.
      "sourcePort": 42, # Source port.
    },
  ],
  "contacts": { # Output only. Map containing the points of contact for the given finding. The key represents the type of contact, while the value contains a list of all the contacts that pertain. Please refer to: https://cloud.google.com/resource-manager/docs/managing-notification-contacts#notification-categories { "security": { "contacts": [ { "email": "person1@company.com" }, { "email": "person2@company.com" } ] } }
    "a_key": { # Details about specific contacts
      "contacts": [ # A list of contacts
        { # The email address of a contact.
          "email": "A String", # An email address. For example, "`person123@company.com`".
        },
      ],
    },
  },
  "containers": [ # Containers associated with the finding. This field provides information for both Kubernetes and non-Kubernetes containers.
    { # Container associated with the finding.
      "createTime": "A String", # The time that the container was created.
      "imageId": "A String", # Optional container image ID, if provided by the container runtime. Uniquely identifies the container image launched using a container image digest.
      "labels": [ # Container labels, as provided by the container runtime.
        { # Represents a generic name-value label. A label has separate name and value fields to support filtering with the `contains()` function. For more information, see [Filtering on array-type fields](https://cloud.google.com/security-command-center/docs/how-to-api-list-findings#array-contains-filtering).
          "name": "A String", # Name of the label.
          "value": "A String", # Value that corresponds to the label's name.
        },
      ],
      "name": "A String", # Name of the container.
      "uri": "A String", # Container image URI provided when configuring a pod or container. This string can identify a container image version using mutable tags.
    },
  ],
  "createTime": "A String", # The time at which the finding was created in Security Command Center.
  "database": { # Represents database access information, such as queries. A database may be a sub-resource of an instance (as in the case of Cloud SQL instances or Cloud Spanner instances), or the database instance itself. Some database resources might not have the [full resource name](https://google.aip.dev/122#full-resource-names) populated because these resource types, such as Cloud SQL databases, are not yet supported by Cloud Asset Inventory. In these cases only the display name is provided. # Database associated with the finding.
    "displayName": "A String", # The human-readable name of the database that the user connected to.
    "grantees": [ # The target usernames, roles, or groups of an SQL privilege grant, which is not an IAM policy change.
      "A String",
    ],
    "name": "A String", # Some database resources may not have the [full resource name](https://google.aip.dev/122#full-resource-names) populated because these resource types are not yet supported by Cloud Asset Inventory (e.g. Cloud SQL databases). In these cases only the display name will be provided. The [full resource name](https://google.aip.dev/122#full-resource-names) of the database that the user connected to, if it is supported by Cloud Asset Inventory.
    "query": "A String", # The SQL statement that is associated with the database access.
    "userName": "A String", # The username used to connect to the database. The username might not be an IAM principal and does not have a set format.
    "version": "A String", # The version of the database, for example, POSTGRES_14. See [the complete list](https://cloud.google.com/sql/docs/mysql/admin-api/rest/v1/SqlDatabaseVersion).
  },
  "description": "A String", # Contains more details about the finding.
  "eventTime": "A String", # The time the finding was first detected. If an existing finding is updated, then this is the time the update occurred. For example, if the finding represents an open firewall, this property captures the time the detector believes the firewall became open. The accuracy is determined by the detector. If the finding is later resolved, then this time reflects when the finding was resolved. This must not be set to a value greater than the current timestamp.
  "exfiltration": { # Exfiltration represents a data exfiltration attempt from one or more sources to one or more targets. The `sources` attribute lists the sources of the exfiltrated data. The `targets` attribute lists the destinations the data was copied to. # Represents exfiltrations associated with the finding.
    "sources": [ # If there are multiple sources, then the data is considered "joined" between them. For instance, BigQuery can join multiple tables, and each table would be considered a source.
      { # Resource where data was exfiltrated from or exfiltrated to.
        "components": [ # Subcomponents of the asset that was exfiltrated, like URIs used during exfiltration, table names, databases, and filenames. For example, multiple tables might have been exfiltrated from the same Cloud SQL instance, or multiple files might have been exfiltrated from the same Cloud Storage bucket.
          "A String",
        ],
        "name": "A String", # The resource's [full resource name](https://cloud.google.com/apis/design/resource_names#full_resource_name).
      },
    ],
    "targets": [ # If there are multiple targets, each target would get a complete copy of the "joined" source data.
      { # Resource where data was exfiltrated from or exfiltrated to.
        "components": [ # Subcomponents of the asset that was exfiltrated, like URIs used during exfiltration, table names, databases, and filenames. For example, multiple tables might have been exfiltrated from the same Cloud SQL instance, or multiple files might have been exfiltrated from the same Cloud Storage bucket.
          "A String",
        ],
        "name": "A String", # The resource's [full resource name](https://cloud.google.com/apis/design/resource_names#full_resource_name).
      },
    ],
    "totalExfiltratedBytes": "A String", # Total exfiltrated bytes processed for the entire job.
  },
  "externalSystems": { # Output only. Third party SIEM/SOAR fields within SCC, contains external system information and external system finding fields.
    "a_key": { # Representation of third party SIEM/SOAR fields within SCC.
      "assignees": [ # References primary/secondary etc assignees in the external system.
        "A String",
      ],
      "caseCloseTime": "A String", # The time when the case was closed, as reported by the external system.
      "caseCreateTime": "A String", # The time when the case was created, as reported by the external system.
      "casePriority": "A String", # The priority of the finding's corresponding case in the external system.
      "caseSla": "A String", # The SLA of the finding's corresponding case in the external system.
      "caseUri": "A String", # The link to the finding's corresponding case in the external system.
      "externalSystemUpdateTime": "A String", # The time when the case was last updated, as reported by the external system.
      "externalUid": "A String", # The identifier that's used to track the finding's corresponding case in the external system.
      "name": "A String", # Full resource name of the external system, for example: "organizations/1234/sources/5678/findings/123456/externalSystems/jira", "folders/1234/sources/5678/findings/123456/externalSystems/jira", "projects/1234/sources/5678/findings/123456/externalSystems/jira"
      "status": "A String", # The most recent status of the finding's corresponding case, as reported by the external system.
      "ticketInfo": { # Information about the ticket, if any, that is being used to track the resolution of the issue that is identified by this finding. # Information about the ticket, if any, that is being used to track the resolution of the issue that is identified by this finding.
        "assignee": "A String", # The assignee of the ticket in the ticket system.
        "description": "A String", # The description of the ticket in the ticket system.
        "id": "A String", # The identifier of the ticket in the ticket system.
        "status": "A String", # The latest status of the ticket, as reported by the ticket system.
        "updateTime": "A String", # The time when the ticket was last updated, as reported by the ticket system.
        "uri": "A String", # The link to the ticket in the ticket system.
      },
    },
  },
  "externalUri": "A String", # The URI that, if available, points to a web page outside of Security Command Center where additional information about the finding can be found. This field is guaranteed to be either empty or a well formed URL.
  "files": [ # File associated with the finding.
    { # File information about the related binary/library used by an executable, or the script used by a script interpreter
      "contents": "A String", # Prefix of the file contents as a JSON-encoded string.
      "diskPath": { # Path of the file in terms of underlying disk/partition identifiers. # Path of the file in terms of underlying disk/partition identifiers.
        "partitionUuid": "A String", # UUID of the partition (format https://wiki.archlinux.org/title/persistent_block_device_naming#by-uuid)
        "relativePath": "A String", # Relative path of the file in the partition as a JSON encoded string. Example: /home/user1/executable_file.sh
      },
      "hashedSize": "A String", # The length in bytes of the file prefix that was hashed. If hashed_size == size, any hashes reported represent the entire file.
      "partiallyHashed": True or False, # True when the hash covers only a prefix of the file.
      "path": "A String", # Absolute path of the file as a JSON encoded string.
      "sha256": "A String", # SHA256 hash of the first hashed_size bytes of the file encoded as a hex string. If hashed_size == size, sha256 represents the SHA256 hash of the entire file.
      "size": "A String", # Size of the file in bytes.
    },
  ],
  "findingClass": "A String", # The class of the finding.
  "iamBindings": [ # Represents IAM bindings associated with the finding.
    { # Represents a particular IAM binding, which captures a member's role addition, removal, or state.
      "action": "A String", # The action that was performed on a Binding.
      "member": "A String", # A single identity requesting access for a Cloud Platform resource, for example, "foo@google.com".
      "role": "A String", # Role that is assigned to "members". For example, "roles/viewer", "roles/editor", or "roles/owner".
    },
  ],
  "indicator": { # Represents what's commonly known as an _indicator of compromise_ (IoC) in computer forensics. This is an artifact observed on a network or in an operating system that, with high confidence, indicates a computer intrusion. For more information, see [Indicator of compromise](https://en.wikipedia.org/wiki/Indicator_of_compromise). # Represents what's commonly known as an *indicator of compromise* (IoC) in computer forensics. This is an artifact observed on a network or in an operating system that, with high confidence, indicates a computer intrusion. For more information, see [Indicator of compromise](https://en.wikipedia.org/wiki/Indicator_of_compromise).
    "domains": [ # List of domains associated to the Finding.
      "A String",
    ],
    "ipAddresses": [ # The list of IP addresses that are associated with the finding.
      "A String",
    ],
    "signatures": [ # The list of matched signatures indicating that the given process is present in the environment.
      { # Indicates what signature matched this process.
        "memoryHashSignature": { # A signature corresponding to memory page hashes. # Signature indicating that a binary family was matched.
          "binaryFamily": "A String", # The binary family.
          "detections": [ # The list of memory hash detections contributing to the binary family match.
            { # Memory hash detection contributing to the binary family match.
              "binary": "A String", # The name of the binary associated with the memory hash signature detection.
              "percentPagesMatched": 3.14, # The percentage of memory page hashes in the signature that were matched.
            },
          ],
        },
        "signatureType": "A String", # Describes the type of resource associated with the signature.
        "yaraRuleSignature": { # A signature corresponding to a YARA rule. # Signature indicating that a YARA rule was matched.
          "yaraRule": "A String", # The name of the YARA rule.
        },
      },
    ],
    "uris": [ # The list of URIs associated to the Findings.
      "A String",
    ],
  },
  "kernelRootkit": { # Kernel mode rootkit signatures. # Signature of the kernel rootkit.
    "name": "A String", # Rootkit name, when available.
    "unexpectedCodeModification": True or False, # True if unexpected modifications of kernel code memory are present.
    "unexpectedFtraceHandler": True or False, # True if `ftrace` points are present with callbacks pointing to regions that are not in the expected kernel or module code range.
    "unexpectedInterruptHandler": True or False, # True if interrupt handlers that are are not in the expected kernel or module code regions are present.
    "unexpectedKernelCodePages": True or False, # True if kernel code pages that are not in the expected kernel or module code regions are present.
    "unexpectedKprobeHandler": True or False, # True if `kprobe` points are present with callbacks pointing to regions that are not in the expected kernel or module code range.
    "unexpectedProcessesInRunqueue": True or False, # True if unexpected processes in the scheduler run queue are present. Such processes are in the run queue, but not in the process task list.
    "unexpectedReadOnlyDataModification": True or False, # True if unexpected modifications of kernel read-only data memory are present.
    "unexpectedSystemCallHandler": True or False, # True if system call handlers that are are not in the expected kernel or module code regions are present.
  },
  "kubernetes": { # Kubernetes-related attributes. # Kubernetes resources associated with the finding.
    "accessReviews": [ # Provides information on any Kubernetes access reviews (privilege checks) relevant to the finding.
      { # Conveys information about a Kubernetes access review (such as one returned by a [`kubectl auth can-i`](https://kubernetes.io/docs/reference/access-authn-authz/authorization/#checking-api-access) command) that was involved in a finding.
        "group": "A String", # The API group of the resource. "*" means all.
        "name": "A String", # The name of the resource being requested. Empty means all.
        "ns": "A String", # Namespace of the action being requested. Currently, there is no distinction between no namespace and all namespaces. Both are represented by "" (empty).
        "resource": "A String", # The optional resource type requested. "*" means all.
        "subresource": "A String", # The optional subresource type.
        "verb": "A String", # A Kubernetes resource API verb, like get, list, watch, create, update, delete, proxy. "*" means all.
        "version": "A String", # The API version of the resource. "*" means all.
      },
    ],
    "bindings": [ # Provides Kubernetes role binding information for findings that involve [RoleBindings or ClusterRoleBindings](https://cloud.google.com/kubernetes-engine/docs/how-to/role-based-access-control).
      { # Represents a Kubernetes RoleBinding or ClusterRoleBinding.
        "name": "A String", # Name for the binding.
        "ns": "A String", # Namespace for the binding.
        "role": { # Kubernetes Role or ClusterRole. # The Role or ClusterRole referenced by the binding.
          "kind": "A String", # Role type.
          "name": "A String", # Role name.
          "ns": "A String", # Role namespace.
        },
        "subjects": [ # Represents one or more subjects that are bound to the role. Not always available for PATCH requests.
          { # Represents a Kubernetes subject.
            "kind": "A String", # Authentication type for the subject.
            "name": "A String", # Name for the subject.
            "ns": "A String", # Namespace for the subject.
          },
        ],
      },
    ],
    "nodePools": [ # GKE [node pools](https://cloud.google.com/kubernetes-engine/docs/concepts/node-pools) associated with the finding. This field contains node pool information for each node, when it is available.
      { # Provides GKE node pool information.
        "name": "A String", # Kubernetes node pool name.
        "nodes": [ # Nodes associated with the finding.
          { # Kubernetes nodes associated with the finding.
            "name": "A String", # [Full resource name](https://google.aip.dev/122#full-resource-names) of the Compute Engine VM running the cluster node.
          },
        ],
      },
    ],
    "nodes": [ # Provides Kubernetes [node](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-architecture#nodes) information.
      { # Kubernetes nodes associated with the finding.
        "name": "A String", # [Full resource name](https://google.aip.dev/122#full-resource-names) of the Compute Engine VM running the cluster node.
      },
    ],
    "objects": [ # Kubernetes objects related to the finding.
      { # Kubernetes object related to the finding, uniquely identified by GKNN. Used if the object Kind is not one of Pod, Node, NodePool, Binding, or AccessReview.
        "containers": [ # Pod containers associated with this finding, if any.
          { # Container associated with the finding.
            "createTime": "A String", # The time that the container was created.
            "imageId": "A String", # Optional container image ID, if provided by the container runtime. Uniquely identifies the container image launched using a container image digest.
            "labels": [ # Container labels, as provided by the container runtime.
              { # Represents a generic name-value label. A label has separate name and value fields to support filtering with the `contains()` function. For more information, see [Filtering on array-type fields](https://cloud.google.com/security-command-center/docs/how-to-api-list-findings#array-contains-filtering).
                "name": "A String", # Name of the label.
                "value": "A String", # Value that corresponds to the label's name.
              },
            ],
            "name": "A String", # Name of the container.
            "uri": "A String", # Container image URI provided when configuring a pod or container. This string can identify a container image version using mutable tags.
          },
        ],
        "group": "A String", # Kubernetes object group, such as "policy.k8s.io/v1".
        "kind": "A String", # Kubernetes object kind, such as "Namespace".
        "name": "A String", # Kubernetes object name. For details see https://kubernetes.io/docs/concepts/overview/working-with-objects/names/.
        "ns": "A String", # Kubernetes object namespace. Must be a valid DNS label. Named "ns" to avoid collision with C++ namespace keyword. For details see https://kubernetes.io/docs/tasks/administer-cluster/namespaces/.
      },
    ],
    "pods": [ # Kubernetes [Pods](https://cloud.google.com/kubernetes-engine/docs/concepts/pod) associated with the finding. This field contains Pod records for each container that is owned by a Pod.
      { # A Kubernetes Pod.
        "containers": [ # Pod containers associated with this finding, if any.
          { # Container associated with the finding.
            "createTime": "A String", # The time that the container was created.
            "imageId": "A String", # Optional container image ID, if provided by the container runtime. Uniquely identifies the container image launched using a container image digest.
            "labels": [ # Container labels, as provided by the container runtime.
              { # Represents a generic name-value label. A label has separate name and value fields to support filtering with the `contains()` function. For more information, see [Filtering on array-type fields](https://cloud.google.com/security-command-center/docs/how-to-api-list-findings#array-contains-filtering).
                "name": "A String", # Name of the label.
                "value": "A String", # Value that corresponds to the label's name.
              },
            ],
            "name": "A String", # Name of the container.
            "uri": "A String", # Container image URI provided when configuring a pod or container. This string can identify a container image version using mutable tags.
          },
        ],
        "labels": [ # Pod labels. For Kubernetes containers, these are applied to the container.
          { # Represents a generic name-value label. A label has separate name and value fields to support filtering with the `contains()` function. For more information, see [Filtering on array-type fields](https://cloud.google.com/security-command-center/docs/how-to-api-list-findings#array-contains-filtering).
            "name": "A String", # Name of the label.
            "value": "A String", # Value that corresponds to the label's name.
          },
        ],
        "name": "A String", # Kubernetes Pod name.
        "ns": "A String", # Kubernetes Pod namespace.
      },
    ],
    "roles": [ # Provides Kubernetes role information for findings that involve [Roles or ClusterRoles](https://cloud.google.com/kubernetes-engine/docs/how-to/role-based-access-control).
      { # Kubernetes Role or ClusterRole.
        "kind": "A String", # Role type.
        "name": "A String", # Role name.
        "ns": "A String", # Role namespace.
      },
    ],
  },
  "loadBalancers": [ # The load balancers associated with the finding.
    { # Contains information related to the load balancer associated with the finding.
      "name": "A String", # The name of the load balancer associated with the finding.
    },
  ],
  "logEntries": [ # Log entries that are relevant to the finding.
    { # An individual entry in a log.
      "cloudLoggingEntry": { # Metadata taken from a [Cloud Logging LogEntry](https://cloud.google.com/logging/docs/reference/v2/rest/v2/LogEntry) # An individual entry in a log stored in Cloud Logging.
        "insertId": "A String", # A unique identifier for the log entry.
        "logId": "A String", # The type of the log (part of `log_name`. `log_name` is the resource name of the log to which this log entry belongs). For example: `cloudresourcemanager.googleapis.com/activity`. Note that this field is not URL-encoded, unlike the `LOG_ID` field in `LogEntry`.
        "resourceContainer": "A String", # The organization, folder, or project of the monitored resource that produced this log entry.
        "timestamp": "A String", # The time the event described by the log entry occurred.
      },
    },
  ],
  "mitreAttack": { # MITRE ATT&CK tactics and techniques related to this finding. See: https://attack.mitre.org # MITRE ATT&CK tactics and techniques related to this finding. See: https://attack.mitre.org
    "additionalTactics": [ # Additional MITRE ATT&CK tactics related to this finding, if any.
      "A String",
    ],
    "additionalTechniques": [ # Additional MITRE ATT&CK techniques related to this finding, if any, along with any of their respective parent techniques.
      "A String",
    ],
    "primaryTactic": "A String", # The MITRE ATT&CK tactic most closely represented by this finding, if any.
    "primaryTechniques": [ # The MITRE ATT&CK technique most closely represented by this finding, if any. primary_techniques is a repeated field because there are multiple levels of MITRE ATT&CK techniques. If the technique most closely represented by this finding is a sub-technique (e.g. `SCANNING_IP_BLOCKS`), both the sub-technique and its parent technique(s) will be listed (e.g. `SCANNING_IP_BLOCKS`, `ACTIVE_SCANNING`).
      "A String",
    ],
    "version": "A String", # The MITRE ATT&CK version referenced by the above fields. E.g. "8".
  },
  "moduleName": "A String", # Unique identifier of the module which generated the finding. Example: folders/598186756061/securityHealthAnalyticsSettings/customModules/56799441161885
  "mute": "A String", # Indicates the mute state of a finding (either muted, unmuted or undefined). Unlike other attributes of a finding, a finding provider shouldn't set the value of mute.
  "muteInitiator": "A String", # Records additional information about the mute operation, for example, the [mute configuration](/security-command-center/docs/how-to-mute-findings) that muted the finding and the user who muted the finding.
  "muteUpdateTime": "A String", # Output only. The most recent time this finding was muted or unmuted.
  "name": "A String", # The [relative resource name](https://cloud.google.com/apis/design/resource_names#relative_resource_name) of the finding. Example: "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}", "folders/{folder_id}/sources/{source_id}/findings/{finding_id}", "projects/{project_id}/sources/{source_id}/findings/{finding_id}".
  "nextSteps": "A String", # Steps to address the finding.
  "notebook": { # Represents a Jupyter notebook IPYNB file, such as a [Colab Enterprise notebook](https://cloud.google.com/colab/docs/introduction) file, that is associated with a finding. # Notebook associated with the finding.
    "lastAuthor": "A String", # The user ID of the latest author to modify the notebook.
    "name": "A String", # The name of the notebook.
    "notebookUpdateTime": "A String", # The most recent time the notebook was updated.
    "service": "A String", # The source notebook service, for example, "Colab Enterprise".
  },
  "orgPolicies": [ # Contains information about the org policies associated with the finding.
    { # Contains information about the org policies associated with the finding.
      "name": "A String", # The resource name of the org policy. Example: "organizations/{organization_id}/policies/{constraint_name}"
    },
  ],
  "parent": "A String", # The relative resource name of the source the finding belongs to. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name This field is immutable after creation time. For example: "organizations/{organization_id}/sources/{source_id}"
  "parentDisplayName": "A String", # Output only. The human readable display name of the finding source such as "Event Threat Detection" or "Security Health Analytics".
  "processes": [ # Represents operating system processes associated with the Finding.
    { # Represents an operating system process.
      "args": [ # Process arguments as JSON encoded strings.
        "A String",
      ],
      "argumentsTruncated": True or False, # True if `args` is incomplete.
      "binary": { # File information about the related binary/library used by an executable, or the script used by a script interpreter # File information for the process executable.
        "contents": "A String", # Prefix of the file contents as a JSON-encoded string.
        "diskPath": { # Path of the file in terms of underlying disk/partition identifiers. # Path of the file in terms of underlying disk/partition identifiers.
          "partitionUuid": "A String", # UUID of the partition (format https://wiki.archlinux.org/title/persistent_block_device_naming#by-uuid)
          "relativePath": "A String", # Relative path of the file in the partition as a JSON encoded string. Example: /home/user1/executable_file.sh
        },
        "hashedSize": "A String", # The length in bytes of the file prefix that was hashed. If hashed_size == size, any hashes reported represent the entire file.
        "partiallyHashed": True or False, # True when the hash covers only a prefix of the file.
        "path": "A String", # Absolute path of the file as a JSON encoded string.
        "sha256": "A String", # SHA256 hash of the first hashed_size bytes of the file encoded as a hex string. If hashed_size == size, sha256 represents the SHA256 hash of the entire file.
        "size": "A String", # Size of the file in bytes.
      },
      "envVariables": [ # Process environment variables.
        { # A name-value pair representing an environment variable used in an operating system process.
          "name": "A String", # Environment variable name as a JSON encoded string.
          "val": "A String", # Environment variable value as a JSON encoded string.
        },
      ],
      "envVariablesTruncated": True or False, # True if `env_variables` is incomplete.
      "libraries": [ # File information for libraries loaded by the process.
        { # File information about the related binary/library used by an executable, or the script used by a script interpreter
          "contents": "A String", # Prefix of the file contents as a JSON-encoded string.
          "diskPath": { # Path of the file in terms of underlying disk/partition identifiers. # Path of the file in terms of underlying disk/partition identifiers.
            "partitionUuid": "A String", # UUID of the partition (format https://wiki.archlinux.org/title/persistent_block_device_naming#by-uuid)
            "relativePath": "A String", # Relative path of the file in the partition as a JSON encoded string. Example: /home/user1/executable_file.sh
          },
          "hashedSize": "A String", # The length in bytes of the file prefix that was hashed. If hashed_size == size, any hashes reported represent the entire file.
          "partiallyHashed": True or False, # True when the hash covers only a prefix of the file.
          "path": "A String", # Absolute path of the file as a JSON encoded string.
          "sha256": "A String", # SHA256 hash of the first hashed_size bytes of the file encoded as a hex string. If hashed_size == size, sha256 represents the SHA256 hash of the entire file.
          "size": "A String", # Size of the file in bytes.
        },
      ],
      "name": "A String", # The process name, as displayed in utilities like `top` and `ps`. This name can be accessed through `/proc/[pid]/comm` and changed with `prctl(PR_SET_NAME)`.
      "parentPid": "A String", # The parent process ID.
      "pid": "A String", # The process ID.
      "script": { # File information about the related binary/library used by an executable, or the script used by a script interpreter # When the process represents the invocation of a script, `binary` provides information about the interpreter, while `script` provides information about the script file provided to the interpreter.
        "contents": "A String", # Prefix of the file contents as a JSON-encoded string.
        "diskPath": { # Path of the file in terms of underlying disk/partition identifiers. # Path of the file in terms of underlying disk/partition identifiers.
          "partitionUuid": "A String", # UUID of the partition (format https://wiki.archlinux.org/title/persistent_block_device_naming#by-uuid)
          "relativePath": "A String", # Relative path of the file in the partition as a JSON encoded string. Example: /home/user1/executable_file.sh
        },
        "hashedSize": "A String", # The length in bytes of the file prefix that was hashed. If hashed_size == size, any hashes reported represent the entire file.
        "partiallyHashed": True or False, # True when the hash covers only a prefix of the file.
        "path": "A String", # Absolute path of the file as a JSON encoded string.
        "sha256": "A String", # SHA256 hash of the first hashed_size bytes of the file encoded as a hex string. If hashed_size == size, sha256 represents the SHA256 hash of the entire file.
        "size": "A String", # Size of the file in bytes.
      },
    },
  ],
  "resourceName": "A String", # For findings on Google Cloud resources, the full resource name of the Google Cloud resource this finding is for. See: https://cloud.google.com/apis/design/resource_names#full_resource_name When the finding is for a non-Google Cloud resource, the resourceName can be a customer or partner defined string. This field is immutable after creation time.
  "securityMarks": { # User specified security marks that are attached to the parent Security Command Center resource. Security marks are scoped within a Security Command Center organization -- they can be modified and viewed by all users who have proper permissions on the organization. # Output only. User specified security marks. These marks are entirely managed by the user and come from the SecurityMarks resource that belongs to the finding.
    "canonicalName": "A String", # The canonical name of the marks. Examples: "organizations/{organization_id}/assets/{asset_id}/securityMarks" "folders/{folder_id}/assets/{asset_id}/securityMarks" "projects/{project_number}/assets/{asset_id}/securityMarks" "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}/securityMarks" "folders/{folder_id}/sources/{source_id}/findings/{finding_id}/securityMarks" "projects/{project_number}/sources/{source_id}/findings/{finding_id}/securityMarks"
    "marks": { # Mutable user specified security marks belonging to the parent resource. Constraints are as follows: * Keys and values are treated as case insensitive * Keys must be between 1 - 256 characters (inclusive) * Keys must be letters, numbers, underscores, or dashes * Values have leading and trailing whitespace trimmed, remaining characters must be between 1 - 4096 characters (inclusive)
      "a_key": "A String",
    },
    "name": "A String", # The relative resource name of the SecurityMarks. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Examples: "organizations/{organization_id}/assets/{asset_id}/securityMarks" "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}/securityMarks".
  },
  "securityPosture": { # Represents a posture that is deployed on Google Cloud by the Security Command Center Posture Management service. A posture contains one or more policy sets. A policy set is a group of policies that enforce a set of security rules on Google Cloud. # The security posture associated with the finding.
    "changedPolicy": "A String", # The name of the updated policy, for example, `projects/{project_id}/policies/{constraint_name}`.
    "name": "A String", # Name of the posture, for example, `CIS-Posture`.
    "policy": "A String", # The ID of the updated policy, for example, `compute-policy-1`.
    "policyDriftDetails": [ # The details about a change in an updated policy that violates the deployed posture.
      { # The policy field that violates the deployed posture and its expected and detected values.
        "detectedValue": "A String", # The detected value that violates the deployed posture, for example, `false` or `allowed_values={"projects/22831892"}`.
        "expectedValue": "A String", # The value of this field that was configured in a posture, for example, `true` or `allowed_values={"projects/29831892"}`.
        "field": "A String", # The name of the updated field, for example constraint.implementation.policy_rules[0].enforce
      },
    ],
    "policySet": "A String", # The name of the updated policyset, for example, `cis-policyset`.
    "postureDeployment": "A String", # The name of the posture deployment, for example, `organizations/{org_id}/posturedeployments/{posture_deployment_id}`.
    "postureDeploymentResource": "A String", # The project, folder, or organization on which the posture is deployed, for example, `projects/{project_number}`.
    "revisionId": "A String", # The version of the posture, for example, `c7cfa2a8`.
  },
  "severity": "A String", # The severity of the finding. This field is managed by the source that writes the finding.
  "sourceProperties": { # Source specific properties. These properties are managed by the source that writes the finding. The key names in the source_properties map must be between 1 and 255 characters, and must start with a letter and contain alphanumeric characters or underscores only.
    "a_key": "",
  },
  "state": "A String", # The state of the finding.
  "vulnerability": { # Refers to common vulnerability fields e.g. cve, cvss, cwe etc. # Represents vulnerability-specific fields like CVE and CVSS scores. CVE stands for Common Vulnerabilities and Exposures (https://cve.mitre.org/about/)
    "cve": { # CVE stands for Common Vulnerabilities and Exposures. Information from the [CVE record](https://www.cve.org/ResourcesSupport/Glossary) that describes this vulnerability. # CVE stands for Common Vulnerabilities and Exposures (https://cve.mitre.org/about/)
      "cvssv3": { # Common Vulnerability Scoring System version 3. # Describe Common Vulnerability Scoring System specified at https://www.first.org/cvss/v3.1/specification-document
        "attackComplexity": "A String", # This metric describes the conditions beyond the attacker's control that must exist in order to exploit the vulnerability.
        "attackVector": "A String", # Base Metrics Represents the intrinsic characteristics of a vulnerability that are constant over time and across user environments. This metric reflects the context by which vulnerability exploitation is possible.
        "availabilityImpact": "A String", # This metric measures the impact to the availability of the impacted component resulting from a successfully exploited vulnerability.
        "baseScore": 3.14, # The base score is a function of the base metric scores.
        "confidentialityImpact": "A String", # This metric measures the impact to the confidentiality of the information resources managed by a software component due to a successfully exploited vulnerability.
        "integrityImpact": "A String", # This metric measures the impact to integrity of a successfully exploited vulnerability.
        "privilegesRequired": "A String", # This metric describes the level of privileges an attacker must possess before successfully exploiting the vulnerability.
        "scope": "A String", # The Scope metric captures whether a vulnerability in one vulnerable component impacts resources in components beyond its security scope.
        "userInteraction": "A String", # This metric captures the requirement for a human user, other than the attacker, to participate in the successful compromise of the vulnerable component.
      },
      "exploitationActivity": "A String", # The exploitation activity of the vulnerability in the wild.
      "id": "A String", # The unique identifier for the vulnerability. e.g. CVE-2021-34527
      "impact": "A String", # The potential impact of the vulnerability if it was to be exploited.
      "observedInTheWild": True or False, # Whether or not the vulnerability has been observed in the wild.
      "references": [ # Additional information about the CVE. e.g. https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-34527
        { # Additional Links
          "source": "A String", # Source of the reference e.g. NVD
          "uri": "A String", # Uri for the mentioned source e.g. https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-34527.
        },
      ],
      "upstreamFixAvailable": True or False, # Whether upstream fix is available for the CVE.
      "zeroDay": True or False, # Whether or not the vulnerability was zero day when the finding was published.
    },
    "fixedPackage": { # Package is a generic definition of a package. # The fixed package is relevant to the finding.
      "cpeUri": "A String", # The CPE URI where the vulnerability was detected.
      "packageName": "A String", # The name of the package where the vulnerability was detected.
      "packageType": "A String", # Type of package, for example, os, maven, or go.
      "packageVersion": "A String", # The version of the package.
    },
    "offendingPackage": { # Package is a generic definition of a package. # The offending package is relevant to the finding.
      "cpeUri": "A String", # The CPE URI where the vulnerability was detected.
      "packageName": "A String", # The name of the package where the vulnerability was detected.
      "packageType": "A String", # Type of package, for example, os, maven, or go.
      "packageVersion": "A String", # The version of the package.
    },
    "securityBulletin": { # SecurityBulletin are notifications of vulnerabilities of Google products. # The security bulletin is relevant to this finding.
      "bulletinId": "A String", # ID of the bulletin corresponding to the vulnerability.
      "submissionTime": "A String", # Submission time of this Security Bulletin.
      "suggestedUpgradeVersion": "A String", # This represents a version that the cluster receiving this notification should be upgraded to, based on its current version. For example, 1.15.0
    },
  },
}
updateSecurityMarks(name, body=None, startTime=None, updateMask=None, x__xgafv=None)
Updates security marks.

Args:
  name: string, The relative resource name of the SecurityMarks. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Examples: "organizations/{organization_id}/assets/{asset_id}/securityMarks" "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}/securityMarks". (required)
  body: object, The request body.
    The object takes the form of:

{ # User specified security marks that are attached to the parent Security Command Center resource. Security marks are scoped within a Security Command Center organization -- they can be modified and viewed by all users who have proper permissions on the organization.
  "canonicalName": "A String", # The canonical name of the marks. Examples: "organizations/{organization_id}/assets/{asset_id}/securityMarks" "folders/{folder_id}/assets/{asset_id}/securityMarks" "projects/{project_number}/assets/{asset_id}/securityMarks" "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}/securityMarks" "folders/{folder_id}/sources/{source_id}/findings/{finding_id}/securityMarks" "projects/{project_number}/sources/{source_id}/findings/{finding_id}/securityMarks"
  "marks": { # Mutable user specified security marks belonging to the parent resource. Constraints are as follows: * Keys and values are treated as case insensitive * Keys must be between 1 - 256 characters (inclusive) * Keys must be letters, numbers, underscores, or dashes * Values have leading and trailing whitespace trimmed, remaining characters must be between 1 - 4096 characters (inclusive)
    "a_key": "A String",
  },
  "name": "A String", # The relative resource name of the SecurityMarks. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Examples: "organizations/{organization_id}/assets/{asset_id}/securityMarks" "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}/securityMarks".
}

  startTime: string, The time at which the updated SecurityMarks take effect. If not set uses current server time. Updates will be applied to the SecurityMarks that are active immediately preceding this time. Must be earlier or equal to the server time.
  updateMask: string, The FieldMask to use when updating the security marks resource. The field mask must not contain duplicate fields. If empty or set to "marks", all marks will be replaced. Individual marks can be updated using "marks.".
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # User specified security marks that are attached to the parent Security Command Center resource. Security marks are scoped within a Security Command Center organization -- they can be modified and viewed by all users who have proper permissions on the organization.
  "canonicalName": "A String", # The canonical name of the marks. Examples: "organizations/{organization_id}/assets/{asset_id}/securityMarks" "folders/{folder_id}/assets/{asset_id}/securityMarks" "projects/{project_number}/assets/{asset_id}/securityMarks" "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}/securityMarks" "folders/{folder_id}/sources/{source_id}/findings/{finding_id}/securityMarks" "projects/{project_number}/sources/{source_id}/findings/{finding_id}/securityMarks"
  "marks": { # Mutable user specified security marks belonging to the parent resource. Constraints are as follows: * Keys and values are treated as case insensitive * Keys must be between 1 - 256 characters (inclusive) * Keys must be letters, numbers, underscores, or dashes * Values have leading and trailing whitespace trimmed, remaining characters must be between 1 - 4096 characters (inclusive)
    "a_key": "A String",
  },
  "name": "A String", # The relative resource name of the SecurityMarks. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Examples: "organizations/{organization_id}/assets/{asset_id}/securityMarks" "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}/securityMarks".
}