// Copyright 2025 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
//
//     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.

syntax = "proto3";

package google.cloud.alloydb.v1alpha;

import "google/api/field_behavior.proto";

option csharp_namespace = "Google.Cloud.AlloyDb.V1Alpha";
option go_package = "cloud.google.com/go/alloydb/apiv1alpha/alloydbpb;alloydbpb";
option java_multiple_files = true;
option java_outer_classname = "GeminiProto";
option java_package = "com.google.cloud.alloydb.v1alpha";
option php_namespace = "Google\\Cloud\\AlloyDb\\V1alpha";
option ruby_package = "Google::Cloud::AlloyDB::V1alpha";

// Enum representing the type of GCA entitlement assigned to a resource.
enum GCAEntitlementType {
  // No GCA entitlement is assigned.
  GCA_ENTITLEMENT_TYPE_UNSPECIFIED = 0;

  // The resource is entitled to the GCA Standard Tier.
  GCA_STANDARD = 1;
}

// Deprecated and unused. This message will be removed in the near future.
message GeminiClusterConfig {
  // Output only. Deprecated and unused. This field will be removed in the near
  // future.
  bool entitled = 1
      [deprecated = true, (google.api.field_behavior) = OUTPUT_ONLY];
}

// Deprecated and unused. This message will be removed in the near future.
message GeminiInstanceConfig {
  // Output only. Deprecated and unused. This field will be removed in the near
  // future.
  bool entitled = 1
      [deprecated = true, (google.api.field_behavior) = OUTPUT_ONLY];
}

// Instance level configuration parameters related to the Gemini Cloud Assist
// product.
message GCAInstanceConfig {
  // Output only. Represents the GCA entitlement state of the instance.
  GCAEntitlementType gca_entitlement = 1
      [(google.api.field_behavior) = OUTPUT_ONLY];
}
