com.google.api.services.securitycenter.v1.model.CloudDlpDataProfile Maven / Gradle / Ivy
/*
* 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;
/**
* The [data profile](https://cloud.google.com/dlp/docs/data-profiles) associated with the finding.
*
* 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 CloudDlpDataProfile extends com.google.api.client.json.GenericJson {
/**
* Name of the data profile, for example, `projects/123/locations/europe/tableProfiles/8383929`.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String dataProfile;
/**
* The resource hierarchy level at which the data profile was generated.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String parentType;
/**
* Name of the data profile, for example, `projects/123/locations/europe/tableProfiles/8383929`.
* @return value or {@code null} for none
*/
public java.lang.String getDataProfile() {
return dataProfile;
}
/**
* Name of the data profile, for example, `projects/123/locations/europe/tableProfiles/8383929`.
* @param dataProfile dataProfile or {@code null} for none
*/
public CloudDlpDataProfile setDataProfile(java.lang.String dataProfile) {
this.dataProfile = dataProfile;
return this;
}
/**
* The resource hierarchy level at which the data profile was generated.
* @return value or {@code null} for none
*/
public java.lang.String getParentType() {
return parentType;
}
/**
* The resource hierarchy level at which the data profile was generated.
* @param parentType parentType or {@code null} for none
*/
public CloudDlpDataProfile setParentType(java.lang.String parentType) {
this.parentType = parentType;
return this;
}
@Override
public CloudDlpDataProfile set(String fieldName, Object value) {
return (CloudDlpDataProfile) super.set(fieldName, value);
}
@Override
public CloudDlpDataProfile clone() {
return (CloudDlpDataProfile) super.clone();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy