All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.api.services.securitycenter.v1.model.GoogleCloudSecuritycenterV1ExternalSystem Maven / Gradle / Ivy

There is a newer version: v1-rev20241111-2.0.0
Show newest version
/*
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
 * in compliance with the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under the License
 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 * or implied. See the License for the specific language governing permissions and limitations under
 * the License.
 */
/*
 * This code was generated by https://github.com/googleapis/google-api-java-client-services/
 * Modify at your own risk.
 */

package com.google.api.services.securitycenter.v1.model;

/**
 * Representation of third party SIEM/SOAR fields within SCC.
 *
 * 

This is the Java data model class that specifies how to parse/serialize into the JSON that is * transmitted over HTTP when working with the Security Command Center API. For a detailed * explanation see: * https://developers.google.com/api-client-library/java/google-http-java-client/json *

* * @author Google, Inc. */ @SuppressWarnings("javadoc") public final class GoogleCloudSecuritycenterV1ExternalSystem extends com.google.api.client.json.GenericJson { /** * References primary/secondary etc assignees in the external system. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.util.List assignees; /** * The time when the case was closed, as reported by the external system. * The value may be {@code null}. */ @com.google.api.client.util.Key private String caseCloseTime; /** * The time when the case was created, as reported by the external system. * The value may be {@code null}. */ @com.google.api.client.util.Key private String caseCreateTime; /** * The priority of the finding's corresponding case in the external system. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String casePriority; /** * The SLA of the finding's corresponding case in the external system. * The value may be {@code null}. */ @com.google.api.client.util.Key private String caseSla; /** * The link to the finding's corresponding case in the external system. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String caseUri; /** * The time when the case was last updated, as reported by the external system. * The value may be {@code null}. */ @com.google.api.client.util.Key private String externalSystemUpdateTime; /** * The identifier that's used to track the finding's corresponding case in the external system. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String externalUid; /** * 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" * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String name; /** * The most recent status of the finding's corresponding case, as reported by the external system. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String status; /** * Information about the ticket, if any, that is being used to track the resolution of the issue * that is identified by this finding. * The value may be {@code null}. */ @com.google.api.client.util.Key private TicketInfo ticketInfo; /** * References primary/secondary etc assignees in the external system. * @return value or {@code null} for none */ public java.util.List getAssignees() { return assignees; } /** * References primary/secondary etc assignees in the external system. * @param assignees assignees or {@code null} for none */ public GoogleCloudSecuritycenterV1ExternalSystem setAssignees(java.util.List assignees) { this.assignees = assignees; return this; } /** * The time when the case was closed, as reported by the external system. * @return value or {@code null} for none */ public String getCaseCloseTime() { return caseCloseTime; } /** * The time when the case was closed, as reported by the external system. * @param caseCloseTime caseCloseTime or {@code null} for none */ public GoogleCloudSecuritycenterV1ExternalSystem setCaseCloseTime(String caseCloseTime) { this.caseCloseTime = caseCloseTime; return this; } /** * The time when the case was created, as reported by the external system. * @return value or {@code null} for none */ public String getCaseCreateTime() { return caseCreateTime; } /** * The time when the case was created, as reported by the external system. * @param caseCreateTime caseCreateTime or {@code null} for none */ public GoogleCloudSecuritycenterV1ExternalSystem setCaseCreateTime(String caseCreateTime) { this.caseCreateTime = caseCreateTime; return this; } /** * The priority of the finding's corresponding case in the external system. * @return value or {@code null} for none */ public java.lang.String getCasePriority() { return casePriority; } /** * The priority of the finding's corresponding case in the external system. * @param casePriority casePriority or {@code null} for none */ public GoogleCloudSecuritycenterV1ExternalSystem setCasePriority(java.lang.String casePriority) { this.casePriority = casePriority; return this; } /** * The SLA of the finding's corresponding case in the external system. * @return value or {@code null} for none */ public String getCaseSla() { return caseSla; } /** * The SLA of the finding's corresponding case in the external system. * @param caseSla caseSla or {@code null} for none */ public GoogleCloudSecuritycenterV1ExternalSystem setCaseSla(String caseSla) { this.caseSla = caseSla; return this; } /** * The link to the finding's corresponding case in the external system. * @return value or {@code null} for none */ public java.lang.String getCaseUri() { return caseUri; } /** * The link to the finding's corresponding case in the external system. * @param caseUri caseUri or {@code null} for none */ public GoogleCloudSecuritycenterV1ExternalSystem setCaseUri(java.lang.String caseUri) { this.caseUri = caseUri; return this; } /** * The time when the case was last updated, as reported by the external system. * @return value or {@code null} for none */ public String getExternalSystemUpdateTime() { return externalSystemUpdateTime; } /** * The time when the case was last updated, as reported by the external system. * @param externalSystemUpdateTime externalSystemUpdateTime or {@code null} for none */ public GoogleCloudSecuritycenterV1ExternalSystem setExternalSystemUpdateTime(String externalSystemUpdateTime) { this.externalSystemUpdateTime = externalSystemUpdateTime; return this; } /** * The identifier that's used to track the finding's corresponding case in the external system. * @return value or {@code null} for none */ public java.lang.String getExternalUid() { return externalUid; } /** * The identifier that's used to track the finding's corresponding case in the external system. * @param externalUid externalUid or {@code null} for none */ public GoogleCloudSecuritycenterV1ExternalSystem setExternalUid(java.lang.String externalUid) { this.externalUid = externalUid; return this; } /** * 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" * @return value or {@code null} for none */ public java.lang.String getName() { return name; } /** * 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" * @param name name or {@code null} for none */ public GoogleCloudSecuritycenterV1ExternalSystem setName(java.lang.String name) { this.name = name; return this; } /** * The most recent status of the finding's corresponding case, as reported by the external system. * @return value or {@code null} for none */ public java.lang.String getStatus() { return status; } /** * The most recent status of the finding's corresponding case, as reported by the external system. * @param status status or {@code null} for none */ public GoogleCloudSecuritycenterV1ExternalSystem setStatus(java.lang.String status) { this.status = status; return this; } /** * Information about the ticket, if any, that is being used to track the resolution of the issue * that is identified by this finding. * @return value or {@code null} for none */ public TicketInfo getTicketInfo() { return ticketInfo; } /** * Information about the ticket, if any, that is being used to track the resolution of the issue * that is identified by this finding. * @param ticketInfo ticketInfo or {@code null} for none */ public GoogleCloudSecuritycenterV1ExternalSystem setTicketInfo(TicketInfo ticketInfo) { this.ticketInfo = ticketInfo; return this; } @Override public GoogleCloudSecuritycenterV1ExternalSystem set(String fieldName, Object value) { return (GoogleCloudSecuritycenterV1ExternalSystem) super.set(fieldName, value); } @Override public GoogleCloudSecuritycenterV1ExternalSystem clone() { return (GoogleCloudSecuritycenterV1ExternalSystem) super.clone(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy