com.google.cloud.netapp.v1.SnapshotPolicyOrBuilder Maven / Gradle / Ivy
/*
* Copyright 2024 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/netapp/v1/volume.proto
// Protobuf Java Version: 3.25.4
package com.google.cloud.netapp.v1;
public interface SnapshotPolicyOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.netapp.v1.SnapshotPolicy)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* If enabled, make snapshots automatically according to the schedules.
* Default is false.
*
*
* optional bool enabled = 1;
*
* @return Whether the enabled field is set.
*/
boolean hasEnabled();
/**
*
*
*
* If enabled, make snapshots automatically according to the schedules.
* Default is false.
*
*
* optional bool enabled = 1;
*
* @return The enabled.
*/
boolean getEnabled();
/**
*
*
*
* Hourly schedule policy.
*
*
* optional .google.cloud.netapp.v1.HourlySchedule hourly_schedule = 2;
*
* @return Whether the hourlySchedule field is set.
*/
boolean hasHourlySchedule();
/**
*
*
*
* Hourly schedule policy.
*
*
* optional .google.cloud.netapp.v1.HourlySchedule hourly_schedule = 2;
*
* @return The hourlySchedule.
*/
com.google.cloud.netapp.v1.HourlySchedule getHourlySchedule();
/**
*
*
*
* Hourly schedule policy.
*
*
* optional .google.cloud.netapp.v1.HourlySchedule hourly_schedule = 2;
*/
com.google.cloud.netapp.v1.HourlyScheduleOrBuilder getHourlyScheduleOrBuilder();
/**
*
*
*
* Daily schedule policy.
*
*
* optional .google.cloud.netapp.v1.DailySchedule daily_schedule = 3;
*
* @return Whether the dailySchedule field is set.
*/
boolean hasDailySchedule();
/**
*
*
*
* Daily schedule policy.
*
*
* optional .google.cloud.netapp.v1.DailySchedule daily_schedule = 3;
*
* @return The dailySchedule.
*/
com.google.cloud.netapp.v1.DailySchedule getDailySchedule();
/**
*
*
*
* Daily schedule policy.
*
*
* optional .google.cloud.netapp.v1.DailySchedule daily_schedule = 3;
*/
com.google.cloud.netapp.v1.DailyScheduleOrBuilder getDailyScheduleOrBuilder();
/**
*
*
*
* Weekly schedule policy.
*
*
* optional .google.cloud.netapp.v1.WeeklySchedule weekly_schedule = 4;
*
* @return Whether the weeklySchedule field is set.
*/
boolean hasWeeklySchedule();
/**
*
*
*
* Weekly schedule policy.
*
*
* optional .google.cloud.netapp.v1.WeeklySchedule weekly_schedule = 4;
*
* @return The weeklySchedule.
*/
com.google.cloud.netapp.v1.WeeklySchedule getWeeklySchedule();
/**
*
*
*
* Weekly schedule policy.
*
*
* optional .google.cloud.netapp.v1.WeeklySchedule weekly_schedule = 4;
*/
com.google.cloud.netapp.v1.WeeklyScheduleOrBuilder getWeeklyScheduleOrBuilder();
/**
*
*
*
* Monthly schedule policy.
*
*
* optional .google.cloud.netapp.v1.MonthlySchedule monthly_schedule = 5;
*
* @return Whether the monthlySchedule field is set.
*/
boolean hasMonthlySchedule();
/**
*
*
*
* Monthly schedule policy.
*
*
* optional .google.cloud.netapp.v1.MonthlySchedule monthly_schedule = 5;
*
* @return The monthlySchedule.
*/
com.google.cloud.netapp.v1.MonthlySchedule getMonthlySchedule();
/**
*
*
*
* Monthly schedule policy.
*
*
* optional .google.cloud.netapp.v1.MonthlySchedule monthly_schedule = 5;
*/
com.google.cloud.netapp.v1.MonthlyScheduleOrBuilder getMonthlyScheduleOrBuilder();
}