/*
 * 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/vmwareengine/v1/vmwareengine.proto

package com.google.cloud.vmwareengine.v1;

public interface DeletePrivateCloudRequestOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.cloud.vmwareengine.v1.DeletePrivateCloudRequest)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * <pre>
   * Required. The resource name of the private cloud to delete.
   * Resource names are schemeless URIs that follow the conventions in
   * https://cloud.google.com/apis/design/resource_names.
   * For example:
   * `projects/my-project/locations/us-central1-a/privateClouds/my-cloud`
   * </pre>
   *
   * <code>
   * string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
   * </code>
   *
   * @return The name.
   */
  java.lang.String getName();
  /**
   *
   *
   * <pre>
   * Required. The resource name of the private cloud to delete.
   * Resource names are schemeless URIs that follow the conventions in
   * https://cloud.google.com/apis/design/resource_names.
   * For example:
   * `projects/my-project/locations/us-central1-a/privateClouds/my-cloud`
   * </pre>
   *
   * <code>
   * string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
   * </code>
   *
   * @return The bytes for name.
   */
  com.google.protobuf.ByteString getNameBytes();

  /**
   *
   *
   * <pre>
   * Optional. The request ID must be a valid UUID with the exception that zero
   * UUID is not supported (00000000-0000-0000-0000-000000000000).
   * </pre>
   *
   * <code>string request_id = 2 [(.google.api.field_behavior) = OPTIONAL];</code>
   *
   * @return The requestId.
   */
  java.lang.String getRequestId();
  /**
   *
   *
   * <pre>
   * Optional. The request ID must be a valid UUID with the exception that zero
   * UUID is not supported (00000000-0000-0000-0000-000000000000).
   * </pre>
   *
   * <code>string request_id = 2 [(.google.api.field_behavior) = OPTIONAL];</code>
   *
   * @return The bytes for requestId.
   */
  com.google.protobuf.ByteString getRequestIdBytes();

  /**
   *
   *
   * <pre>
   * Optional. If set to true, cascade delete is enabled and all children of
   * this private cloud resource are also deleted. When this flag is set to
   * false, the private cloud will not be deleted if there are any children
   * other than the management cluster. The management cluster is always
   * deleted.
   * </pre>
   *
   * <code>bool force = 3 [(.google.api.field_behavior) = OPTIONAL];</code>
   *
   * @return The force.
   */
  boolean getForce();

  /**
   *
   *
   * <pre>
   * Optional. Time delay of the deletion specified in hours. The default value
   * is `3`. Specifying a non-zero value for this field changes the value of
   * `PrivateCloud.state` to `DELETED` and sets `expire_time` to the planned
   * deletion time. Deletion can be cancelled before `expire_time` elapses using
   * [VmwareEngine.UndeletePrivateCloud][google.cloud.vmwareengine.v1.VmwareEngine.UndeletePrivateCloud].
   * Specifying a value of `0` for this field instead begins the deletion
   * process and ceases billing immediately. During the final deletion process,
   * the value of `PrivateCloud.state` becomes `PURGING`.
   * </pre>
   *
   * <code>optional int32 delay_hours = 4 [(.google.api.field_behavior) = OPTIONAL];</code>
   *
   * @return Whether the delayHours field is set.
   */
  boolean hasDelayHours();
  /**
   *
   *
   * <pre>
   * Optional. Time delay of the deletion specified in hours. The default value
   * is `3`. Specifying a non-zero value for this field changes the value of
   * `PrivateCloud.state` to `DELETED` and sets `expire_time` to the planned
   * deletion time. Deletion can be cancelled before `expire_time` elapses using
   * [VmwareEngine.UndeletePrivateCloud][google.cloud.vmwareengine.v1.VmwareEngine.UndeletePrivateCloud].
   * Specifying a value of `0` for this field instead begins the deletion
   * process and ceases billing immediately. During the final deletion process,
   * the value of `PrivateCloud.state` becomes `PURGING`.
   * </pre>
   *
   * <code>optional int32 delay_hours = 4 [(.google.api.field_behavior) = OPTIONAL];</code>
   *
   * @return The delayHours.
   */
  int getDelayHours();
}
