Latest generation

This commit is contained in:
ci core model
2026-01-15 14:01:53 +00:00
parent 4d343b1123
commit 4eeff8f0fa
16 changed files with 2350 additions and 179 deletions

View File

@@ -2,7 +2,7 @@
// @generated from protobuf file "google/api/field_behavior.proto" (package "google.api", syntax proto3)
// tslint:disable
//
// Copyright 2020 Google LLC
// 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.
@@ -73,5 +73,40 @@ export enum FieldBehavior {
*
* @generated from protobuf enum value: IMMUTABLE = 5;
*/
IMMUTABLE = 5
IMMUTABLE = 5,
/**
* Denotes that a (repeated) field is an unordered list.
* This indicates that the service may provide the elements of the list
* in any arbitrary order, rather than the order the user originally
* provided. Additionally, the list's order may or may not be stable.
*
* @generated from protobuf enum value: UNORDERED_LIST = 6;
*/
UNORDERED_LIST = 6,
/**
* Denotes that this field returns a non-empty default value if not set.
* This indicates that if the user provides the empty value in a request,
* a non-empty value will be returned. The user will not be aware of what
* non-empty value to expect.
*
* @generated from protobuf enum value: NON_EMPTY_DEFAULT = 7;
*/
NON_EMPTY_DEFAULT = 7,
/**
* Denotes that the field in a resource (a message annotated with
* google.api.resource) is used in the resource name to uniquely identify the
* resource. For AIP-compliant APIs, this should only be applied to the
* `name` field on the resource.
*
* This behavior should not be applied to references to other resources within
* the message.
*
* The identifier field of resources often have different field behavior
* depending on the request it is embedded in (e.g. for Create methods name
* is optional and unused, while for Update methods it is required). Instead
* of method-specific annotations, only `IDENTIFIER` is required.
*
* @generated from protobuf enum value: IDENTIFIER = 8;
*/
IDENTIFIER = 8
}