All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.cloud.resourcemanager.v3.Purpose Maven / Gradle / Ivy

There is a newer version: 1.56.0
Show newest version
/*
 * 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/resourcemanager/v3/tag_keys.proto

// Protobuf Java Version: 3.25.4
package com.google.cloud.resourcemanager.v3;

/**
 *
 *
 * 
 * A purpose for each policy engine requiring such an integration. A single
 * policy engine may have multiple purposes defined, however a TagKey may only
 * specify a single purpose.
 * 
* * Protobuf enum {@code google.cloud.resourcemanager.v3.Purpose} */ public enum Purpose implements com.google.protobuf.ProtocolMessageEnum { /** * * *
   * Unspecified purpose.
   * 
* * PURPOSE_UNSPECIFIED = 0; */ PURPOSE_UNSPECIFIED(0), /** * * *
   * Purpose for Compute Engine firewalls.
   * A corresponding `purpose_data` should be set for the network the tag is
   * intended for. The key should be `network` and the value should be in
   * either of these two formats:
   *
   * -
   * `https://www.googleapis.com/compute/{compute_version}/projects/{project_id}/global/networks/{network_id}`
   * - `{project_id}/{network_name}`
   *
   * Examples:
   *
   * -
   * `https://www.googleapis.com/compute/staging_v1/projects/fail-closed-load-testing/global/networks/6992953698831725600`
   * - `fail-closed-load-testing/load-testing-network`
   * 
* * GCE_FIREWALL = 1; */ GCE_FIREWALL(1), UNRECOGNIZED(-1), ; /** * * *
   * Unspecified purpose.
   * 
* * PURPOSE_UNSPECIFIED = 0; */ public static final int PURPOSE_UNSPECIFIED_VALUE = 0; /** * * *
   * Purpose for Compute Engine firewalls.
   * A corresponding `purpose_data` should be set for the network the tag is
   * intended for. The key should be `network` and the value should be in
   * either of these two formats:
   *
   * -
   * `https://www.googleapis.com/compute/{compute_version}/projects/{project_id}/global/networks/{network_id}`
   * - `{project_id}/{network_name}`
   *
   * Examples:
   *
   * -
   * `https://www.googleapis.com/compute/staging_v1/projects/fail-closed-load-testing/global/networks/6992953698831725600`
   * - `fail-closed-load-testing/load-testing-network`
   * 
* * GCE_FIREWALL = 1; */ public static final int GCE_FIREWALL_VALUE = 1; public final int getNumber() { if (this == UNRECOGNIZED) { throw new java.lang.IllegalArgumentException( "Can't get the number of an unknown enum value."); } return value; } /** * @param value The numeric wire value of the corresponding enum entry. * @return The enum associated with the given numeric wire value. * @deprecated Use {@link #forNumber(int)} instead. */ @java.lang.Deprecated public static Purpose valueOf(int value) { return forNumber(value); } /** * @param value The numeric wire value of the corresponding enum entry. * @return The enum associated with the given numeric wire value. */ public static Purpose forNumber(int value) { switch (value) { case 0: return PURPOSE_UNSPECIFIED; case 1: return GCE_FIREWALL; default: return null; } } public static com.google.protobuf.Internal.EnumLiteMap internalGetValueMap() { return internalValueMap; } private static final com.google.protobuf.Internal.EnumLiteMap internalValueMap = new com.google.protobuf.Internal.EnumLiteMap() { public Purpose findValueByNumber(int number) { return Purpose.forNumber(number); } }; public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor() { if (this == UNRECOGNIZED) { throw new java.lang.IllegalStateException( "Can't get the descriptor of an unrecognized enum value."); } return getDescriptor().getValues().get(ordinal()); } public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType() { return getDescriptor(); } public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { return com.google.cloud.resourcemanager.v3.TagKeysProto.getDescriptor().getEnumTypes().get(0); } private static final Purpose[] VALUES = values(); public static Purpose valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc) { if (desc.getType() != getDescriptor()) { throw new java.lang.IllegalArgumentException("EnumValueDescriptor is not for this type."); } if (desc.getIndex() == -1) { return UNRECOGNIZED; } return VALUES[desc.getIndex()]; } private final int value; private Purpose(int value) { this.value = value; } // @@protoc_insertion_point(enum_scope:google.cloud.resourcemanager.v3.Purpose) }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy