com.google.api.services.securitycenter.v1.model.GoogleCloudSecuritycenterV1BigQueryExport 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;
/**
* Configures how to deliver Findings to BigQuery Instance.
*
* 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 GoogleCloudSecuritycenterV1BigQueryExport extends com.google.api.client.json.GenericJson {
/**
* Output only. The time at which the BigQuery export was created. This field is set by the server
* and will be ignored if provided on export on creation.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private String createTime;
/**
* The dataset to write findings' updates to. Its format is
* "projects/[project_id]/datasets/[bigquery_dataset_id]". BigQuery Dataset unique ID must contain
* only letters (a-z, A-Z), numbers (0-9), or underscores (_).
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String dataset;
/**
* The description of the export (max of 1024 characters).
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String description;
/**
* Expression that defines the filter to apply across create/update events of findings. The
* expression is a list of zero 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. The fields map
* to those defined in the corresponding resource. 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 value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String filter;
/**
* Output only. Email address of the user who last edited the BigQuery export. This field is set
* by the server and will be ignored if provided on export creation or update.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String mostRecentEditor;
/**
* The relative resource name of this export. See:
* https://cloud.google.com/apis/design/resource_names#relative_resource_name. Example format:
* "organizations/{organization_id}/bigQueryExports/{export_id}" Example format:
* "folders/{folder_id}/bigQueryExports/{export_id}" Example format:
* "projects/{project_id}/bigQueryExports/{export_id}" This field is provided in responses, and is
* ignored when provided in create requests.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String name;
/**
* Output only. The service account that needs permission to create table and upload data to the
* BigQuery dataset.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String principal;
/**
* Output only. The most recent time at which the BigQuery export was updated. This field is set
* by the server and will be ignored if provided on export creation or update.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private String updateTime;
/**
* Output only. The time at which the BigQuery export was created. This field is set by the server
* and will be ignored if provided on export on creation.
* @return value or {@code null} for none
*/
public String getCreateTime() {
return createTime;
}
/**
* Output only. The time at which the BigQuery export was created. This field is set by the server
* and will be ignored if provided on export on creation.
* @param createTime createTime or {@code null} for none
*/
public GoogleCloudSecuritycenterV1BigQueryExport setCreateTime(String createTime) {
this.createTime = createTime;
return this;
}
/**
* The dataset to write findings' updates to. Its format is
* "projects/[project_id]/datasets/[bigquery_dataset_id]". BigQuery Dataset unique ID must contain
* only letters (a-z, A-Z), numbers (0-9), or underscores (_).
* @return value or {@code null} for none
*/
public java.lang.String getDataset() {
return dataset;
}
/**
* The dataset to write findings' updates to. Its format is
* "projects/[project_id]/datasets/[bigquery_dataset_id]". BigQuery Dataset unique ID must contain
* only letters (a-z, A-Z), numbers (0-9), or underscores (_).
* @param dataset dataset or {@code null} for none
*/
public GoogleCloudSecuritycenterV1BigQueryExport setDataset(java.lang.String dataset) {
this.dataset = dataset;
return this;
}
/**
* The description of the export (max of 1024 characters).
* @return value or {@code null} for none
*/
public java.lang.String getDescription() {
return description;
}
/**
* The description of the export (max of 1024 characters).
* @param description description or {@code null} for none
*/
public GoogleCloudSecuritycenterV1BigQueryExport setDescription(java.lang.String description) {
this.description = description;
return this;
}
/**
* Expression that defines the filter to apply across create/update events of findings. The
* expression is a list of zero 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. The fields map
* to those defined in the corresponding resource. 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.
* @return value or {@code null} for none
*/
public java.lang.String getFilter() {
return filter;
}
/**
* Expression that defines the filter to apply across create/update events of findings. The
* expression is a list of zero 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. The fields map
* to those defined in the corresponding resource. 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.
* @param filter filter or {@code null} for none
*/
public GoogleCloudSecuritycenterV1BigQueryExport setFilter(java.lang.String filter) {
this.filter = filter;
return this;
}
/**
* Output only. Email address of the user who last edited the BigQuery export. This field is set
* by the server and will be ignored if provided on export creation or update.
* @return value or {@code null} for none
*/
public java.lang.String getMostRecentEditor() {
return mostRecentEditor;
}
/**
* Output only. Email address of the user who last edited the BigQuery export. This field is set
* by the server and will be ignored if provided on export creation or update.
* @param mostRecentEditor mostRecentEditor or {@code null} for none
*/
public GoogleCloudSecuritycenterV1BigQueryExport setMostRecentEditor(java.lang.String mostRecentEditor) {
this.mostRecentEditor = mostRecentEditor;
return this;
}
/**
* The relative resource name of this export. See:
* https://cloud.google.com/apis/design/resource_names#relative_resource_name. Example format:
* "organizations/{organization_id}/bigQueryExports/{export_id}" Example format:
* "folders/{folder_id}/bigQueryExports/{export_id}" Example format:
* "projects/{project_id}/bigQueryExports/{export_id}" This field is provided in responses, and is
* ignored when provided in create requests.
* @return value or {@code null} for none
*/
public java.lang.String getName() {
return name;
}
/**
* The relative resource name of this export. See:
* https://cloud.google.com/apis/design/resource_names#relative_resource_name. Example format:
* "organizations/{organization_id}/bigQueryExports/{export_id}" Example format:
* "folders/{folder_id}/bigQueryExports/{export_id}" Example format:
* "projects/{project_id}/bigQueryExports/{export_id}" This field is provided in responses, and is
* ignored when provided in create requests.
* @param name name or {@code null} for none
*/
public GoogleCloudSecuritycenterV1BigQueryExport setName(java.lang.String name) {
this.name = name;
return this;
}
/**
* Output only. The service account that needs permission to create table and upload data to the
* BigQuery dataset.
* @return value or {@code null} for none
*/
public java.lang.String getPrincipal() {
return principal;
}
/**
* Output only. The service account that needs permission to create table and upload data to the
* BigQuery dataset.
* @param principal principal or {@code null} for none
*/
public GoogleCloudSecuritycenterV1BigQueryExport setPrincipal(java.lang.String principal) {
this.principal = principal;
return this;
}
/**
* Output only. The most recent time at which the BigQuery export was updated. This field is set
* by the server and will be ignored if provided on export creation or update.
* @return value or {@code null} for none
*/
public String getUpdateTime() {
return updateTime;
}
/**
* Output only. The most recent time at which the BigQuery export was updated. This field is set
* by the server and will be ignored if provided on export creation or update.
* @param updateTime updateTime or {@code null} for none
*/
public GoogleCloudSecuritycenterV1BigQueryExport setUpdateTime(String updateTime) {
this.updateTime = updateTime;
return this;
}
@Override
public GoogleCloudSecuritycenterV1BigQueryExport set(String fieldName, Object value) {
return (GoogleCloudSecuritycenterV1BigQueryExport) super.set(fieldName, value);
}
@Override
public GoogleCloudSecuritycenterV1BigQueryExport clone() {
return (GoogleCloudSecuritycenterV1BigQueryExport) super.clone();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy