
com.google.cloud.bigquery.migration.v2.PointOrBuilder Maven / Gradle / Ivy
/*
* Copyright 2020 Google LLC
*
* 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
*
* https://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.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/bigquery/migration/v2/migration_metrics.proto
package com.google.cloud.bigquery.migration.v2;
public interface PointOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.bigquery.migration.v2.Point)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* The time interval to which the data point applies. For `GAUGE` metrics,
* the start time does not need to be supplied, but if it is supplied, it must
* equal the end time. For `DELTA` metrics, the start and end time should
* specify a non-zero interval, with subsequent points specifying contiguous
* and non-overlapping intervals. For `CUMULATIVE` metrics, the start and end
* time should specify a non-zero interval, with subsequent points specifying
* the same start time and increasing end times, until an event resets the
* cumulative value to zero and sets a new start time for the following
* points.
*
*
* .google.cloud.bigquery.migration.v2.TimeInterval interval = 1;
*
* @return Whether the interval field is set.
*/
boolean hasInterval();
/**
*
*
*
* The time interval to which the data point applies. For `GAUGE` metrics,
* the start time does not need to be supplied, but if it is supplied, it must
* equal the end time. For `DELTA` metrics, the start and end time should
* specify a non-zero interval, with subsequent points specifying contiguous
* and non-overlapping intervals. For `CUMULATIVE` metrics, the start and end
* time should specify a non-zero interval, with subsequent points specifying
* the same start time and increasing end times, until an event resets the
* cumulative value to zero and sets a new start time for the following
* points.
*
*
* .google.cloud.bigquery.migration.v2.TimeInterval interval = 1;
*
* @return The interval.
*/
com.google.cloud.bigquery.migration.v2.TimeInterval getInterval();
/**
*
*
*
* The time interval to which the data point applies. For `GAUGE` metrics,
* the start time does not need to be supplied, but if it is supplied, it must
* equal the end time. For `DELTA` metrics, the start and end time should
* specify a non-zero interval, with subsequent points specifying contiguous
* and non-overlapping intervals. For `CUMULATIVE` metrics, the start and end
* time should specify a non-zero interval, with subsequent points specifying
* the same start time and increasing end times, until an event resets the
* cumulative value to zero and sets a new start time for the following
* points.
*
*
* .google.cloud.bigquery.migration.v2.TimeInterval interval = 1;
*/
com.google.cloud.bigquery.migration.v2.TimeIntervalOrBuilder getIntervalOrBuilder();
/**
*
*
*
* The value of the data point.
*
*
* .google.cloud.bigquery.migration.v2.TypedValue value = 2;
*
* @return Whether the value field is set.
*/
boolean hasValue();
/**
*
*
*
* The value of the data point.
*
*
* .google.cloud.bigquery.migration.v2.TypedValue value = 2;
*
* @return The value.
*/
com.google.cloud.bigquery.migration.v2.TypedValue getValue();
/**
*
*
*
* The value of the data point.
*
*
* .google.cloud.bigquery.migration.v2.TypedValue value = 2;
*/
com.google.cloud.bigquery.migration.v2.TypedValueOrBuilder getValueOrBuilder();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy