diff --git a/packages/google-cloud-aiplatform/protos/google/cloud/aiplatform/v1beta1/vertex_rag_data.proto b/packages/google-cloud-aiplatform/protos/google/cloud/aiplatform/v1beta1/vertex_rag_data.proto index 976f47fbf44..42aae758ee6 100644 --- a/packages/google-cloud-aiplatform/protos/google/cloud/aiplatform/v1beta1/vertex_rag_data.proto +++ b/packages/google-cloud-aiplatform/protos/google/cloud/aiplatform/v1beta1/vertex_rag_data.proto @@ -29,6 +29,48 @@ option java_package = "com.google.cloud.aiplatform.v1beta1"; option php_namespace = "Google\\Cloud\\AIPlatform\\V1beta1"; option ruby_package = "Google::Cloud::AIPlatform::V1beta1"; +// Config for the embedding model to use for RAG. +message RagEmbeddingModelConfig { + // Config representing a model hosted on Vertex Prediction Endpoint. + message VertexPredictionEndpoint { + // Required. The endpoint resource name. + // Format: + // `projects/{project}/locations/{location}/publishers/{publisher}/models/{model}` + // or + // `projects/{project}/locations/{location}/endpoints/{endpoint}` + string endpoint = 1 [ + (google.api.field_behavior) = REQUIRED, + (google.api.resource_reference) = { + type: "aiplatform.googleapis.com/Endpoint" + } + ]; + + // Output only. The resource name of the model that is deployed on the + // endpoint. Present only when the endpoint is not a publisher model. + // Pattern: + // `projects/{project}/locations/{location}/models/{model}` + string model = 2 [ + (google.api.field_behavior) = OUTPUT_ONLY, + (google.api.resource_reference) = { + type: "aiplatform.googleapis.com/Model" + } + ]; + + // Output only. Version ID of the model that is deployed on the endpoint. + // Present only when the endpoint is not a publisher model. + string model_version_id = 3 [(google.api.field_behavior) = OUTPUT_ONLY]; + } + + // The model config to use. + oneof model_config { + // The Vertex AI Prediction Endpoint that either refers to a publisher model + // or an endpoint that is hosting a 1P fine-tuned text embedding model. + // Endpoints hosting non-1P fine-tuned text embedding models are + // currently not supported. + VertexPredictionEndpoint vertex_prediction_endpoint = 1; + } +} + // A RagCorpus is a RagFile container and a project can have multiple // RagCorpora. message RagCorpus { @@ -50,6 +92,12 @@ message RagCorpus { // Optional. The description of the RagCorpus. string description = 3 [(google.api.field_behavior) = OPTIONAL]; + // Optional. Immutable. The embedding model config of the RagCorpus. + RagEmbeddingModelConfig rag_embedding_model_config = 6 [ + (google.api.field_behavior) = OPTIONAL, + (google.api.field_behavior) = IMMUTABLE + ]; + // Output only. Timestamp when this RagCorpus was created. google.protobuf.Timestamp create_time = 4 [(google.api.field_behavior) = OUTPUT_ONLY]; @@ -155,4 +203,12 @@ message ImportRagFilesConfig { // Specifies the size and overlap of chunks after importing RagFiles. RagFileChunkingConfig rag_file_chunking_config = 4; + + // Optional. The max number of queries per minute that this job is allowed to + // make to the embedding model specified on the corpus. This value is specific + // to this job and not shared across other import jobs. Consult the Quotas + // page on the project to set an appropriate value here. + // If unspecified, a default value of 1,000 QPM would be used. + int32 max_embedding_requests_per_min = 5 + [(google.api.field_behavior) = OPTIONAL]; } diff --git a/packages/google-cloud-aiplatform/protos/protos.d.ts b/packages/google-cloud-aiplatform/protos/protos.d.ts index 4223adec394..4617f76e351 100644 --- a/packages/google-cloud-aiplatform/protos/protos.d.ts +++ b/packages/google-cloud-aiplatform/protos/protos.d.ts @@ -237799,6 +237799,218 @@ export namespace google { public static getTypeUrl(typeUrlPrefix?: string): string; } + /** Properties of a RagEmbeddingModelConfig. */ + interface IRagEmbeddingModelConfig { + + /** RagEmbeddingModelConfig vertexPredictionEndpoint */ + vertexPredictionEndpoint?: (google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.IVertexPredictionEndpoint|null); + } + + /** Represents a RagEmbeddingModelConfig. */ + class RagEmbeddingModelConfig implements IRagEmbeddingModelConfig { + + /** + * Constructs a new RagEmbeddingModelConfig. + * @param [properties] Properties to set + */ + constructor(properties?: google.cloud.aiplatform.v1beta1.IRagEmbeddingModelConfig); + + /** RagEmbeddingModelConfig vertexPredictionEndpoint. */ + public vertexPredictionEndpoint?: (google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.IVertexPredictionEndpoint|null); + + /** RagEmbeddingModelConfig modelConfig. */ + public modelConfig?: "vertexPredictionEndpoint"; + + /** + * Creates a new RagEmbeddingModelConfig instance using the specified properties. + * @param [properties] Properties to set + * @returns RagEmbeddingModelConfig instance + */ + public static create(properties?: google.cloud.aiplatform.v1beta1.IRagEmbeddingModelConfig): google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig; + + /** + * Encodes the specified RagEmbeddingModelConfig message. Does not implicitly {@link google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.verify|verify} messages. + * @param message RagEmbeddingModelConfig message or plain object to encode + * @param [writer] Writer to encode to + * @returns Writer + */ + public static encode(message: google.cloud.aiplatform.v1beta1.IRagEmbeddingModelConfig, writer?: $protobuf.Writer): $protobuf.Writer; + + /** + * Encodes the specified RagEmbeddingModelConfig message, length delimited. Does not implicitly {@link google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.verify|verify} messages. + * @param message RagEmbeddingModelConfig message or plain object to encode + * @param [writer] Writer to encode to + * @returns Writer + */ + public static encodeDelimited(message: google.cloud.aiplatform.v1beta1.IRagEmbeddingModelConfig, writer?: $protobuf.Writer): $protobuf.Writer; + + /** + * Decodes a RagEmbeddingModelConfig message from the specified reader or buffer. + * @param reader Reader or buffer to decode from + * @param [length] Message length if known beforehand + * @returns RagEmbeddingModelConfig + * @throws {Error} If the payload is not a reader or valid buffer + * @throws {$protobuf.util.ProtocolError} If required fields are missing + */ + public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig; + + /** + * Decodes a RagEmbeddingModelConfig message from the specified reader or buffer, length delimited. + * @param reader Reader or buffer to decode from + * @returns RagEmbeddingModelConfig + * @throws {Error} If the payload is not a reader or valid buffer + * @throws {$protobuf.util.ProtocolError} If required fields are missing + */ + public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig; + + /** + * Verifies a RagEmbeddingModelConfig message. + * @param message Plain object to verify + * @returns `null` if valid, otherwise the reason why it is not + */ + public static verify(message: { [k: string]: any }): (string|null); + + /** + * Creates a RagEmbeddingModelConfig message from a plain object. Also converts values to their respective internal types. + * @param object Plain object + * @returns RagEmbeddingModelConfig + */ + public static fromObject(object: { [k: string]: any }): google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig; + + /** + * Creates a plain object from a RagEmbeddingModelConfig message. Also converts values to other types if specified. + * @param message RagEmbeddingModelConfig + * @param [options] Conversion options + * @returns Plain object + */ + public static toObject(message: google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig, options?: $protobuf.IConversionOptions): { [k: string]: any }; + + /** + * Converts this RagEmbeddingModelConfig to JSON. + * @returns JSON object + */ + public toJSON(): { [k: string]: any }; + + /** + * Gets the default type url for RagEmbeddingModelConfig + * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") + * @returns The default type url + */ + public static getTypeUrl(typeUrlPrefix?: string): string; + } + + namespace RagEmbeddingModelConfig { + + /** Properties of a VertexPredictionEndpoint. */ + interface IVertexPredictionEndpoint { + + /** VertexPredictionEndpoint endpoint */ + endpoint?: (string|null); + + /** VertexPredictionEndpoint model */ + model?: (string|null); + + /** VertexPredictionEndpoint modelVersionId */ + modelVersionId?: (string|null); + } + + /** Represents a VertexPredictionEndpoint. */ + class VertexPredictionEndpoint implements IVertexPredictionEndpoint { + + /** + * Constructs a new VertexPredictionEndpoint. + * @param [properties] Properties to set + */ + constructor(properties?: google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.IVertexPredictionEndpoint); + + /** VertexPredictionEndpoint endpoint. */ + public endpoint: string; + + /** VertexPredictionEndpoint model. */ + public model: string; + + /** VertexPredictionEndpoint modelVersionId. */ + public modelVersionId: string; + + /** + * Creates a new VertexPredictionEndpoint instance using the specified properties. + * @param [properties] Properties to set + * @returns VertexPredictionEndpoint instance + */ + public static create(properties?: google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.IVertexPredictionEndpoint): google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.VertexPredictionEndpoint; + + /** + * Encodes the specified VertexPredictionEndpoint message. Does not implicitly {@link google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.VertexPredictionEndpoint.verify|verify} messages. + * @param message VertexPredictionEndpoint message or plain object to encode + * @param [writer] Writer to encode to + * @returns Writer + */ + public static encode(message: google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.IVertexPredictionEndpoint, writer?: $protobuf.Writer): $protobuf.Writer; + + /** + * Encodes the specified VertexPredictionEndpoint message, length delimited. Does not implicitly {@link google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.VertexPredictionEndpoint.verify|verify} messages. + * @param message VertexPredictionEndpoint message or plain object to encode + * @param [writer] Writer to encode to + * @returns Writer + */ + public static encodeDelimited(message: google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.IVertexPredictionEndpoint, writer?: $protobuf.Writer): $protobuf.Writer; + + /** + * Decodes a VertexPredictionEndpoint message from the specified reader or buffer. + * @param reader Reader or buffer to decode from + * @param [length] Message length if known beforehand + * @returns VertexPredictionEndpoint + * @throws {Error} If the payload is not a reader or valid buffer + * @throws {$protobuf.util.ProtocolError} If required fields are missing + */ + public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.VertexPredictionEndpoint; + + /** + * Decodes a VertexPredictionEndpoint message from the specified reader or buffer, length delimited. + * @param reader Reader or buffer to decode from + * @returns VertexPredictionEndpoint + * @throws {Error} If the payload is not a reader or valid buffer + * @throws {$protobuf.util.ProtocolError} If required fields are missing + */ + public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.VertexPredictionEndpoint; + + /** + * Verifies a VertexPredictionEndpoint message. + * @param message Plain object to verify + * @returns `null` if valid, otherwise the reason why it is not + */ + public static verify(message: { [k: string]: any }): (string|null); + + /** + * Creates a VertexPredictionEndpoint message from a plain object. Also converts values to their respective internal types. + * @param object Plain object + * @returns VertexPredictionEndpoint + */ + public static fromObject(object: { [k: string]: any }): google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.VertexPredictionEndpoint; + + /** + * Creates a plain object from a VertexPredictionEndpoint message. Also converts values to other types if specified. + * @param message VertexPredictionEndpoint + * @param [options] Conversion options + * @returns Plain object + */ + public static toObject(message: google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.VertexPredictionEndpoint, options?: $protobuf.IConversionOptions): { [k: string]: any }; + + /** + * Converts this VertexPredictionEndpoint to JSON. + * @returns JSON object + */ + public toJSON(): { [k: string]: any }; + + /** + * Gets the default type url for VertexPredictionEndpoint + * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") + * @returns The default type url + */ + public static getTypeUrl(typeUrlPrefix?: string): string; + } + } + /** Properties of a RagCorpus. */ interface IRagCorpus { @@ -237811,6 +238023,9 @@ export namespace google { /** RagCorpus description */ description?: (string|null); + /** RagCorpus ragEmbeddingModelConfig */ + ragEmbeddingModelConfig?: (google.cloud.aiplatform.v1beta1.IRagEmbeddingModelConfig|null); + /** RagCorpus createTime */ createTime?: (google.protobuf.ITimestamp|null); @@ -237836,6 +238051,9 @@ export namespace google { /** RagCorpus description. */ public description: string; + /** RagCorpus ragEmbeddingModelConfig. */ + public ragEmbeddingModelConfig?: (google.cloud.aiplatform.v1beta1.IRagEmbeddingModelConfig|null); + /** RagCorpus createTime. */ public createTime?: (google.protobuf.ITimestamp|null); @@ -238295,6 +238513,9 @@ export namespace google { /** ImportRagFilesConfig ragFileChunkingConfig */ ragFileChunkingConfig?: (google.cloud.aiplatform.v1beta1.IRagFileChunkingConfig|null); + + /** ImportRagFilesConfig maxEmbeddingRequestsPerMin */ + maxEmbeddingRequestsPerMin?: (number|null); } /** Represents an ImportRagFilesConfig. */ @@ -238315,6 +238536,9 @@ export namespace google { /** ImportRagFilesConfig ragFileChunkingConfig. */ public ragFileChunkingConfig?: (google.cloud.aiplatform.v1beta1.IRagFileChunkingConfig|null); + /** ImportRagFilesConfig maxEmbeddingRequestsPerMin. */ + public maxEmbeddingRequestsPerMin: number; + /** ImportRagFilesConfig importSource. */ public importSource?: ("gcsSource"|"googleDriveSource"); diff --git a/packages/google-cloud-aiplatform/protos/protos.js b/packages/google-cloud-aiplatform/protos/protos.js index df57c36944f..4b50c000f0a 100644 --- a/packages/google-cloud-aiplatform/protos/protos.js +++ b/packages/google-cloud-aiplatform/protos/protos.js @@ -575482,6 +575482,483 @@ return UpdateTensorboardOperationMetadata; })(); + v1beta1.RagEmbeddingModelConfig = (function() { + + /** + * Properties of a RagEmbeddingModelConfig. + * @memberof google.cloud.aiplatform.v1beta1 + * @interface IRagEmbeddingModelConfig + * @property {google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.IVertexPredictionEndpoint|null} [vertexPredictionEndpoint] RagEmbeddingModelConfig vertexPredictionEndpoint + */ + + /** + * Constructs a new RagEmbeddingModelConfig. + * @memberof google.cloud.aiplatform.v1beta1 + * @classdesc Represents a RagEmbeddingModelConfig. + * @implements IRagEmbeddingModelConfig + * @constructor + * @param {google.cloud.aiplatform.v1beta1.IRagEmbeddingModelConfig=} [properties] Properties to set + */ + function RagEmbeddingModelConfig(properties) { + if (properties) + for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) + if (properties[keys[i]] != null) + this[keys[i]] = properties[keys[i]]; + } + + /** + * RagEmbeddingModelConfig vertexPredictionEndpoint. + * @member {google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.IVertexPredictionEndpoint|null|undefined} vertexPredictionEndpoint + * @memberof google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig + * @instance + */ + RagEmbeddingModelConfig.prototype.vertexPredictionEndpoint = null; + + // OneOf field names bound to virtual getters and setters + var $oneOfFields; + + /** + * RagEmbeddingModelConfig modelConfig. + * @member {"vertexPredictionEndpoint"|undefined} modelConfig + * @memberof google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig + * @instance + */ + Object.defineProperty(RagEmbeddingModelConfig.prototype, "modelConfig", { + get: $util.oneOfGetter($oneOfFields = ["vertexPredictionEndpoint"]), + set: $util.oneOfSetter($oneOfFields) + }); + + /** + * Creates a new RagEmbeddingModelConfig instance using the specified properties. + * @function create + * @memberof google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig + * @static + * @param {google.cloud.aiplatform.v1beta1.IRagEmbeddingModelConfig=} [properties] Properties to set + * @returns {google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig} RagEmbeddingModelConfig instance + */ + RagEmbeddingModelConfig.create = function create(properties) { + return new RagEmbeddingModelConfig(properties); + }; + + /** + * Encodes the specified RagEmbeddingModelConfig message. Does not implicitly {@link google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.verify|verify} messages. + * @function encode + * @memberof google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig + * @static + * @param {google.cloud.aiplatform.v1beta1.IRagEmbeddingModelConfig} message RagEmbeddingModelConfig message or plain object to encode + * @param {$protobuf.Writer} [writer] Writer to encode to + * @returns {$protobuf.Writer} Writer + */ + RagEmbeddingModelConfig.encode = function encode(message, writer) { + if (!writer) + writer = $Writer.create(); + if (message.vertexPredictionEndpoint != null && Object.hasOwnProperty.call(message, "vertexPredictionEndpoint")) + $root.google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.VertexPredictionEndpoint.encode(message.vertexPredictionEndpoint, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); + return writer; + }; + + /** + * Encodes the specified RagEmbeddingModelConfig message, length delimited. Does not implicitly {@link google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.verify|verify} messages. + * @function encodeDelimited + * @memberof google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig + * @static + * @param {google.cloud.aiplatform.v1beta1.IRagEmbeddingModelConfig} message RagEmbeddingModelConfig message or plain object to encode + * @param {$protobuf.Writer} [writer] Writer to encode to + * @returns {$protobuf.Writer} Writer + */ + RagEmbeddingModelConfig.encodeDelimited = function encodeDelimited(message, writer) { + return this.encode(message, writer).ldelim(); + }; + + /** + * Decodes a RagEmbeddingModelConfig message from the specified reader or buffer. + * @function decode + * @memberof google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig + * @static + * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from + * @param {number} [length] Message length if known beforehand + * @returns {google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig} RagEmbeddingModelConfig + * @throws {Error} If the payload is not a reader or valid buffer + * @throws {$protobuf.util.ProtocolError} If required fields are missing + */ + RagEmbeddingModelConfig.decode = function decode(reader, length) { + if (!(reader instanceof $Reader)) + reader = $Reader.create(reader); + var end = length === undefined ? reader.len : reader.pos + length, message = new $root.google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig(); + while (reader.pos < end) { + var tag = reader.uint32(); + switch (tag >>> 3) { + case 1: { + message.vertexPredictionEndpoint = $root.google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.VertexPredictionEndpoint.decode(reader, reader.uint32()); + break; + } + default: + reader.skipType(tag & 7); + break; + } + } + return message; + }; + + /** + * Decodes a RagEmbeddingModelConfig message from the specified reader or buffer, length delimited. + * @function decodeDelimited + * @memberof google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig + * @static + * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from + * @returns {google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig} RagEmbeddingModelConfig + * @throws {Error} If the payload is not a reader or valid buffer + * @throws {$protobuf.util.ProtocolError} If required fields are missing + */ + RagEmbeddingModelConfig.decodeDelimited = function decodeDelimited(reader) { + if (!(reader instanceof $Reader)) + reader = new $Reader(reader); + return this.decode(reader, reader.uint32()); + }; + + /** + * Verifies a RagEmbeddingModelConfig message. + * @function verify + * @memberof google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig + * @static + * @param {Object.} message Plain object to verify + * @returns {string|null} `null` if valid, otherwise the reason why it is not + */ + RagEmbeddingModelConfig.verify = function verify(message) { + if (typeof message !== "object" || message === null) + return "object expected"; + var properties = {}; + if (message.vertexPredictionEndpoint != null && message.hasOwnProperty("vertexPredictionEndpoint")) { + properties.modelConfig = 1; + { + var error = $root.google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.VertexPredictionEndpoint.verify(message.vertexPredictionEndpoint); + if (error) + return "vertexPredictionEndpoint." + error; + } + } + return null; + }; + + /** + * Creates a RagEmbeddingModelConfig message from a plain object. Also converts values to their respective internal types. + * @function fromObject + * @memberof google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig + * @static + * @param {Object.} object Plain object + * @returns {google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig} RagEmbeddingModelConfig + */ + RagEmbeddingModelConfig.fromObject = function fromObject(object) { + if (object instanceof $root.google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig) + return object; + var message = new $root.google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig(); + if (object.vertexPredictionEndpoint != null) { + if (typeof object.vertexPredictionEndpoint !== "object") + throw TypeError(".google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.vertexPredictionEndpoint: object expected"); + message.vertexPredictionEndpoint = $root.google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.VertexPredictionEndpoint.fromObject(object.vertexPredictionEndpoint); + } + return message; + }; + + /** + * Creates a plain object from a RagEmbeddingModelConfig message. Also converts values to other types if specified. + * @function toObject + * @memberof google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig + * @static + * @param {google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig} message RagEmbeddingModelConfig + * @param {$protobuf.IConversionOptions} [options] Conversion options + * @returns {Object.} Plain object + */ + RagEmbeddingModelConfig.toObject = function toObject(message, options) { + if (!options) + options = {}; + var object = {}; + if (message.vertexPredictionEndpoint != null && message.hasOwnProperty("vertexPredictionEndpoint")) { + object.vertexPredictionEndpoint = $root.google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.VertexPredictionEndpoint.toObject(message.vertexPredictionEndpoint, options); + if (options.oneofs) + object.modelConfig = "vertexPredictionEndpoint"; + } + return object; + }; + + /** + * Converts this RagEmbeddingModelConfig to JSON. + * @function toJSON + * @memberof google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig + * @instance + * @returns {Object.} JSON object + */ + RagEmbeddingModelConfig.prototype.toJSON = function toJSON() { + return this.constructor.toObject(this, $protobuf.util.toJSONOptions); + }; + + /** + * Gets the default type url for RagEmbeddingModelConfig + * @function getTypeUrl + * @memberof google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig + * @static + * @param {string} [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") + * @returns {string} The default type url + */ + RagEmbeddingModelConfig.getTypeUrl = function getTypeUrl(typeUrlPrefix) { + if (typeUrlPrefix === undefined) { + typeUrlPrefix = "type.googleapis.com"; + } + return typeUrlPrefix + "/google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig"; + }; + + RagEmbeddingModelConfig.VertexPredictionEndpoint = (function() { + + /** + * Properties of a VertexPredictionEndpoint. + * @memberof google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig + * @interface IVertexPredictionEndpoint + * @property {string|null} [endpoint] VertexPredictionEndpoint endpoint + * @property {string|null} [model] VertexPredictionEndpoint model + * @property {string|null} [modelVersionId] VertexPredictionEndpoint modelVersionId + */ + + /** + * Constructs a new VertexPredictionEndpoint. + * @memberof google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig + * @classdesc Represents a VertexPredictionEndpoint. + * @implements IVertexPredictionEndpoint + * @constructor + * @param {google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.IVertexPredictionEndpoint=} [properties] Properties to set + */ + function VertexPredictionEndpoint(properties) { + if (properties) + for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) + if (properties[keys[i]] != null) + this[keys[i]] = properties[keys[i]]; + } + + /** + * VertexPredictionEndpoint endpoint. + * @member {string} endpoint + * @memberof google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.VertexPredictionEndpoint + * @instance + */ + VertexPredictionEndpoint.prototype.endpoint = ""; + + /** + * VertexPredictionEndpoint model. + * @member {string} model + * @memberof google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.VertexPredictionEndpoint + * @instance + */ + VertexPredictionEndpoint.prototype.model = ""; + + /** + * VertexPredictionEndpoint modelVersionId. + * @member {string} modelVersionId + * @memberof google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.VertexPredictionEndpoint + * @instance + */ + VertexPredictionEndpoint.prototype.modelVersionId = ""; + + /** + * Creates a new VertexPredictionEndpoint instance using the specified properties. + * @function create + * @memberof google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.VertexPredictionEndpoint + * @static + * @param {google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.IVertexPredictionEndpoint=} [properties] Properties to set + * @returns {google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.VertexPredictionEndpoint} VertexPredictionEndpoint instance + */ + VertexPredictionEndpoint.create = function create(properties) { + return new VertexPredictionEndpoint(properties); + }; + + /** + * Encodes the specified VertexPredictionEndpoint message. Does not implicitly {@link google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.VertexPredictionEndpoint.verify|verify} messages. + * @function encode + * @memberof google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.VertexPredictionEndpoint + * @static + * @param {google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.IVertexPredictionEndpoint} message VertexPredictionEndpoint message or plain object to encode + * @param {$protobuf.Writer} [writer] Writer to encode to + * @returns {$protobuf.Writer} Writer + */ + VertexPredictionEndpoint.encode = function encode(message, writer) { + if (!writer) + writer = $Writer.create(); + if (message.endpoint != null && Object.hasOwnProperty.call(message, "endpoint")) + writer.uint32(/* id 1, wireType 2 =*/10).string(message.endpoint); + if (message.model != null && Object.hasOwnProperty.call(message, "model")) + writer.uint32(/* id 2, wireType 2 =*/18).string(message.model); + if (message.modelVersionId != null && Object.hasOwnProperty.call(message, "modelVersionId")) + writer.uint32(/* id 3, wireType 2 =*/26).string(message.modelVersionId); + return writer; + }; + + /** + * Encodes the specified VertexPredictionEndpoint message, length delimited. Does not implicitly {@link google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.VertexPredictionEndpoint.verify|verify} messages. + * @function encodeDelimited + * @memberof google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.VertexPredictionEndpoint + * @static + * @param {google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.IVertexPredictionEndpoint} message VertexPredictionEndpoint message or plain object to encode + * @param {$protobuf.Writer} [writer] Writer to encode to + * @returns {$protobuf.Writer} Writer + */ + VertexPredictionEndpoint.encodeDelimited = function encodeDelimited(message, writer) { + return this.encode(message, writer).ldelim(); + }; + + /** + * Decodes a VertexPredictionEndpoint message from the specified reader or buffer. + * @function decode + * @memberof google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.VertexPredictionEndpoint + * @static + * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from + * @param {number} [length] Message length if known beforehand + * @returns {google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.VertexPredictionEndpoint} VertexPredictionEndpoint + * @throws {Error} If the payload is not a reader or valid buffer + * @throws {$protobuf.util.ProtocolError} If required fields are missing + */ + VertexPredictionEndpoint.decode = function decode(reader, length) { + if (!(reader instanceof $Reader)) + reader = $Reader.create(reader); + var end = length === undefined ? reader.len : reader.pos + length, message = new $root.google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.VertexPredictionEndpoint(); + while (reader.pos < end) { + var tag = reader.uint32(); + switch (tag >>> 3) { + case 1: { + message.endpoint = reader.string(); + break; + } + case 2: { + message.model = reader.string(); + break; + } + case 3: { + message.modelVersionId = reader.string(); + break; + } + default: + reader.skipType(tag & 7); + break; + } + } + return message; + }; + + /** + * Decodes a VertexPredictionEndpoint message from the specified reader or buffer, length delimited. + * @function decodeDelimited + * @memberof google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.VertexPredictionEndpoint + * @static + * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from + * @returns {google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.VertexPredictionEndpoint} VertexPredictionEndpoint + * @throws {Error} If the payload is not a reader or valid buffer + * @throws {$protobuf.util.ProtocolError} If required fields are missing + */ + VertexPredictionEndpoint.decodeDelimited = function decodeDelimited(reader) { + if (!(reader instanceof $Reader)) + reader = new $Reader(reader); + return this.decode(reader, reader.uint32()); + }; + + /** + * Verifies a VertexPredictionEndpoint message. + * @function verify + * @memberof google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.VertexPredictionEndpoint + * @static + * @param {Object.} message Plain object to verify + * @returns {string|null} `null` if valid, otherwise the reason why it is not + */ + VertexPredictionEndpoint.verify = function verify(message) { + if (typeof message !== "object" || message === null) + return "object expected"; + if (message.endpoint != null && message.hasOwnProperty("endpoint")) + if (!$util.isString(message.endpoint)) + return "endpoint: string expected"; + if (message.model != null && message.hasOwnProperty("model")) + if (!$util.isString(message.model)) + return "model: string expected"; + if (message.modelVersionId != null && message.hasOwnProperty("modelVersionId")) + if (!$util.isString(message.modelVersionId)) + return "modelVersionId: string expected"; + return null; + }; + + /** + * Creates a VertexPredictionEndpoint message from a plain object. Also converts values to their respective internal types. + * @function fromObject + * @memberof google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.VertexPredictionEndpoint + * @static + * @param {Object.} object Plain object + * @returns {google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.VertexPredictionEndpoint} VertexPredictionEndpoint + */ + VertexPredictionEndpoint.fromObject = function fromObject(object) { + if (object instanceof $root.google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.VertexPredictionEndpoint) + return object; + var message = new $root.google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.VertexPredictionEndpoint(); + if (object.endpoint != null) + message.endpoint = String(object.endpoint); + if (object.model != null) + message.model = String(object.model); + if (object.modelVersionId != null) + message.modelVersionId = String(object.modelVersionId); + return message; + }; + + /** + * Creates a plain object from a VertexPredictionEndpoint message. Also converts values to other types if specified. + * @function toObject + * @memberof google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.VertexPredictionEndpoint + * @static + * @param {google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.VertexPredictionEndpoint} message VertexPredictionEndpoint + * @param {$protobuf.IConversionOptions} [options] Conversion options + * @returns {Object.} Plain object + */ + VertexPredictionEndpoint.toObject = function toObject(message, options) { + if (!options) + options = {}; + var object = {}; + if (options.defaults) { + object.endpoint = ""; + object.model = ""; + object.modelVersionId = ""; + } + if (message.endpoint != null && message.hasOwnProperty("endpoint")) + object.endpoint = message.endpoint; + if (message.model != null && message.hasOwnProperty("model")) + object.model = message.model; + if (message.modelVersionId != null && message.hasOwnProperty("modelVersionId")) + object.modelVersionId = message.modelVersionId; + return object; + }; + + /** + * Converts this VertexPredictionEndpoint to JSON. + * @function toJSON + * @memberof google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.VertexPredictionEndpoint + * @instance + * @returns {Object.} JSON object + */ + VertexPredictionEndpoint.prototype.toJSON = function toJSON() { + return this.constructor.toObject(this, $protobuf.util.toJSONOptions); + }; + + /** + * Gets the default type url for VertexPredictionEndpoint + * @function getTypeUrl + * @memberof google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.VertexPredictionEndpoint + * @static + * @param {string} [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") + * @returns {string} The default type url + */ + VertexPredictionEndpoint.getTypeUrl = function getTypeUrl(typeUrlPrefix) { + if (typeUrlPrefix === undefined) { + typeUrlPrefix = "type.googleapis.com"; + } + return typeUrlPrefix + "/google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.VertexPredictionEndpoint"; + }; + + return VertexPredictionEndpoint; + })(); + + return RagEmbeddingModelConfig; + })(); + v1beta1.RagCorpus = (function() { /** @@ -575491,6 +575968,7 @@ * @property {string|null} [name] RagCorpus name * @property {string|null} [displayName] RagCorpus displayName * @property {string|null} [description] RagCorpus description + * @property {google.cloud.aiplatform.v1beta1.IRagEmbeddingModelConfig|null} [ragEmbeddingModelConfig] RagCorpus ragEmbeddingModelConfig * @property {google.protobuf.ITimestamp|null} [createTime] RagCorpus createTime * @property {google.protobuf.ITimestamp|null} [updateTime] RagCorpus updateTime */ @@ -575534,6 +576012,14 @@ */ RagCorpus.prototype.description = ""; + /** + * RagCorpus ragEmbeddingModelConfig. + * @member {google.cloud.aiplatform.v1beta1.IRagEmbeddingModelConfig|null|undefined} ragEmbeddingModelConfig + * @memberof google.cloud.aiplatform.v1beta1.RagCorpus + * @instance + */ + RagCorpus.prototype.ragEmbeddingModelConfig = null; + /** * RagCorpus createTime. * @member {google.protobuf.ITimestamp|null|undefined} createTime @@ -575584,6 +576070,8 @@ $root.google.protobuf.Timestamp.encode(message.createTime, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); if (message.updateTime != null && Object.hasOwnProperty.call(message, "updateTime")) $root.google.protobuf.Timestamp.encode(message.updateTime, writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim(); + if (message.ragEmbeddingModelConfig != null && Object.hasOwnProperty.call(message, "ragEmbeddingModelConfig")) + $root.google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.encode(message.ragEmbeddingModelConfig, writer.uint32(/* id 6, wireType 2 =*/50).fork()).ldelim(); return writer; }; @@ -575630,6 +576118,10 @@ message.description = reader.string(); break; } + case 6: { + message.ragEmbeddingModelConfig = $root.google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.decode(reader, reader.uint32()); + break; + } case 4: { message.createTime = $root.google.protobuf.Timestamp.decode(reader, reader.uint32()); break; @@ -575682,6 +576174,11 @@ if (message.description != null && message.hasOwnProperty("description")) if (!$util.isString(message.description)) return "description: string expected"; + if (message.ragEmbeddingModelConfig != null && message.hasOwnProperty("ragEmbeddingModelConfig")) { + var error = $root.google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.verify(message.ragEmbeddingModelConfig); + if (error) + return "ragEmbeddingModelConfig." + error; + } if (message.createTime != null && message.hasOwnProperty("createTime")) { var error = $root.google.protobuf.Timestamp.verify(message.createTime); if (error) @@ -575713,6 +576210,11 @@ message.displayName = String(object.displayName); if (object.description != null) message.description = String(object.description); + if (object.ragEmbeddingModelConfig != null) { + if (typeof object.ragEmbeddingModelConfig !== "object") + throw TypeError(".google.cloud.aiplatform.v1beta1.RagCorpus.ragEmbeddingModelConfig: object expected"); + message.ragEmbeddingModelConfig = $root.google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.fromObject(object.ragEmbeddingModelConfig); + } if (object.createTime != null) { if (typeof object.createTime !== "object") throw TypeError(".google.cloud.aiplatform.v1beta1.RagCorpus.createTime: object expected"); @@ -575745,6 +576247,7 @@ object.description = ""; object.createTime = null; object.updateTime = null; + object.ragEmbeddingModelConfig = null; } if (message.name != null && message.hasOwnProperty("name")) object.name = message.name; @@ -575756,6 +576259,8 @@ object.createTime = $root.google.protobuf.Timestamp.toObject(message.createTime, options); if (message.updateTime != null && message.hasOwnProperty("updateTime")) object.updateTime = $root.google.protobuf.Timestamp.toObject(message.updateTime, options); + if (message.ragEmbeddingModelConfig != null && message.hasOwnProperty("ragEmbeddingModelConfig")) + object.ragEmbeddingModelConfig = $root.google.cloud.aiplatform.v1beta1.RagEmbeddingModelConfig.toObject(message.ragEmbeddingModelConfig, options); return object; }; @@ -576756,6 +577261,7 @@ * @property {google.cloud.aiplatform.v1beta1.IGcsSource|null} [gcsSource] ImportRagFilesConfig gcsSource * @property {google.cloud.aiplatform.v1beta1.IGoogleDriveSource|null} [googleDriveSource] ImportRagFilesConfig googleDriveSource * @property {google.cloud.aiplatform.v1beta1.IRagFileChunkingConfig|null} [ragFileChunkingConfig] ImportRagFilesConfig ragFileChunkingConfig + * @property {number|null} [maxEmbeddingRequestsPerMin] ImportRagFilesConfig maxEmbeddingRequestsPerMin */ /** @@ -576797,6 +577303,14 @@ */ ImportRagFilesConfig.prototype.ragFileChunkingConfig = null; + /** + * ImportRagFilesConfig maxEmbeddingRequestsPerMin. + * @member {number} maxEmbeddingRequestsPerMin + * @memberof google.cloud.aiplatform.v1beta1.ImportRagFilesConfig + * @instance + */ + ImportRagFilesConfig.prototype.maxEmbeddingRequestsPerMin = 0; + // OneOf field names bound to virtual getters and setters var $oneOfFields; @@ -576841,6 +577355,8 @@ $root.google.cloud.aiplatform.v1beta1.GoogleDriveSource.encode(message.googleDriveSource, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); if (message.ragFileChunkingConfig != null && Object.hasOwnProperty.call(message, "ragFileChunkingConfig")) $root.google.cloud.aiplatform.v1beta1.RagFileChunkingConfig.encode(message.ragFileChunkingConfig, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); + if (message.maxEmbeddingRequestsPerMin != null && Object.hasOwnProperty.call(message, "maxEmbeddingRequestsPerMin")) + writer.uint32(/* id 5, wireType 0 =*/40).int32(message.maxEmbeddingRequestsPerMin); return writer; }; @@ -576887,6 +577403,10 @@ message.ragFileChunkingConfig = $root.google.cloud.aiplatform.v1beta1.RagFileChunkingConfig.decode(reader, reader.uint32()); break; } + case 5: { + message.maxEmbeddingRequestsPerMin = reader.int32(); + break; + } default: reader.skipType(tag & 7); break; @@ -576946,6 +577466,9 @@ if (error) return "ragFileChunkingConfig." + error; } + if (message.maxEmbeddingRequestsPerMin != null && message.hasOwnProperty("maxEmbeddingRequestsPerMin")) + if (!$util.isInteger(message.maxEmbeddingRequestsPerMin)) + return "maxEmbeddingRequestsPerMin: integer expected"; return null; }; @@ -576976,6 +577499,8 @@ throw TypeError(".google.cloud.aiplatform.v1beta1.ImportRagFilesConfig.ragFileChunkingConfig: object expected"); message.ragFileChunkingConfig = $root.google.cloud.aiplatform.v1beta1.RagFileChunkingConfig.fromObject(object.ragFileChunkingConfig); } + if (object.maxEmbeddingRequestsPerMin != null) + message.maxEmbeddingRequestsPerMin = object.maxEmbeddingRequestsPerMin | 0; return message; }; @@ -576992,8 +577517,10 @@ if (!options) options = {}; var object = {}; - if (options.defaults) + if (options.defaults) { object.ragFileChunkingConfig = null; + object.maxEmbeddingRequestsPerMin = 0; + } if (message.gcsSource != null && message.hasOwnProperty("gcsSource")) { object.gcsSource = $root.google.cloud.aiplatform.v1beta1.GcsSource.toObject(message.gcsSource, options); if (options.oneofs) @@ -577006,6 +577533,8 @@ } if (message.ragFileChunkingConfig != null && message.hasOwnProperty("ragFileChunkingConfig")) object.ragFileChunkingConfig = $root.google.cloud.aiplatform.v1beta1.RagFileChunkingConfig.toObject(message.ragFileChunkingConfig, options); + if (message.maxEmbeddingRequestsPerMin != null && message.hasOwnProperty("maxEmbeddingRequestsPerMin")) + object.maxEmbeddingRequestsPerMin = message.maxEmbeddingRequestsPerMin; return object; }; diff --git a/packages/google-cloud-aiplatform/protos/protos.json b/packages/google-cloud-aiplatform/protos/protos.json index 4b7621f81f4..e3b271b3634 100644 --- a/packages/google-cloud-aiplatform/protos/protos.json +++ b/packages/google-cloud-aiplatform/protos/protos.json @@ -62000,6 +62000,50 @@ } } }, + "RagEmbeddingModelConfig": { + "oneofs": { + "modelConfig": { + "oneof": [ + "vertexPredictionEndpoint" + ] + } + }, + "fields": { + "vertexPredictionEndpoint": { + "type": "VertexPredictionEndpoint", + "id": 1 + } + }, + "nested": { + "VertexPredictionEndpoint": { + "fields": { + "endpoint": { + "type": "string", + "id": 1, + "options": { + "(google.api.field_behavior)": "REQUIRED", + "(google.api.resource_reference).type": "aiplatform.googleapis.com/Endpoint" + } + }, + "model": { + "type": "string", + "id": 2, + "options": { + "(google.api.field_behavior)": "OUTPUT_ONLY", + "(google.api.resource_reference).type": "aiplatform.googleapis.com/Model" + } + }, + "modelVersionId": { + "type": "string", + "id": 3, + "options": { + "(google.api.field_behavior)": "OUTPUT_ONLY" + } + } + } + } + } + }, "RagCorpus": { "options": { "(google.api.resource).type": "aiplatform.googleapis.com/RagCorpus", @@ -62029,6 +62073,13 @@ "(google.api.field_behavior)": "OPTIONAL" } }, + "ragEmbeddingModelConfig": { + "type": "RagEmbeddingModelConfig", + "id": 6, + "options": { + "(google.api.field_behavior)": "IMMUTABLE" + } + }, "createTime": { "type": "google.protobuf.Timestamp", "id": 4, @@ -62184,6 +62235,13 @@ "ragFileChunkingConfig": { "type": "RagFileChunkingConfig", "id": 4 + }, + "maxEmbeddingRequestsPerMin": { + "type": "int32", + "id": 5, + "options": { + "(google.api.field_behavior)": "OPTIONAL" + } } } }, diff --git a/packages/google-cloud-aiplatform/src/v1beta1/dataset_service_client.ts b/packages/google-cloud-aiplatform/src/v1beta1/dataset_service_client.ts index 2f0700b3a28..33c2ab93201 100644 --- a/packages/google-cloud-aiplatform/src/v1beta1/dataset_service_client.ts +++ b/packages/google-cloud-aiplatform/src/v1beta1/dataset_service_client.ts @@ -701,6 +701,15 @@ export class DatasetServiceClient { { post: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:cancel', }, + { + post: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:cancel', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:cancel', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:cancel', + }, { post: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}:cancel', }, @@ -827,6 +836,15 @@ export class DatasetServiceClient { { post: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:cancel', }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:cancel', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:cancel', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:cancel', + }, { post: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}:cancel', }, @@ -982,6 +1000,18 @@ export class DatasetServiceClient { delete: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { delete: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}', @@ -1167,6 +1197,18 @@ export class DatasetServiceClient { delete: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { delete: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}', @@ -1330,6 +1372,15 @@ export class DatasetServiceClient { { get: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + get: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { get: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}', }, @@ -1463,6 +1514,15 @@ export class DatasetServiceClient { { get: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { get: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}', }, @@ -1596,6 +1656,15 @@ export class DatasetServiceClient { { get: '/ui/{name=projects/*/locations/*/models/*/evaluations/*}/operations', }, + { + get: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*}/operations', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimes/*}/operations', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*}/operations', + }, {get: '/ui/{name=projects/*/locations/*/studies/*}/operations'}, { get: '/ui/{name=projects/*/locations/*/studies/*/trials/*}/operations', @@ -1725,6 +1794,15 @@ export class DatasetServiceClient { { get: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*}/operations', }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*}/operations', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*}/operations', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*}/operations', + }, { get: '/v1beta1/{name=projects/*/locations/*/persistentResources/*}/operations', }, @@ -1878,6 +1956,15 @@ export class DatasetServiceClient { { post: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:wait', }, + { + post: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:wait', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:wait', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:wait', + }, { post: '/ui/{name=projects/*/locations/*/studies/*/operations/*}:wait', }, @@ -2017,6 +2104,15 @@ export class DatasetServiceClient { { post: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:wait', }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:wait', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:wait', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:wait', + }, { post: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}:wait', }, diff --git a/packages/google-cloud-aiplatform/src/v1beta1/deployment_resource_pool_service_client.ts b/packages/google-cloud-aiplatform/src/v1beta1/deployment_resource_pool_service_client.ts index 33c3a455ee4..3dd23ab5b7a 100644 --- a/packages/google-cloud-aiplatform/src/v1beta1/deployment_resource_pool_service_client.ts +++ b/packages/google-cloud-aiplatform/src/v1beta1/deployment_resource_pool_service_client.ts @@ -685,6 +685,15 @@ export class DeploymentResourcePoolServiceClient { { post: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:cancel', }, + { + post: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:cancel', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:cancel', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:cancel', + }, { post: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}:cancel', }, @@ -811,6 +820,15 @@ export class DeploymentResourcePoolServiceClient { { post: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:cancel', }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:cancel', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:cancel', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:cancel', + }, { post: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}:cancel', }, @@ -966,6 +984,18 @@ export class DeploymentResourcePoolServiceClient { delete: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { delete: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}', @@ -1151,6 +1181,18 @@ export class DeploymentResourcePoolServiceClient { delete: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { delete: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}', @@ -1314,6 +1356,15 @@ export class DeploymentResourcePoolServiceClient { { get: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + get: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { get: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}', }, @@ -1447,6 +1498,15 @@ export class DeploymentResourcePoolServiceClient { { get: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { get: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}', }, @@ -1580,6 +1640,15 @@ export class DeploymentResourcePoolServiceClient { { get: '/ui/{name=projects/*/locations/*/models/*/evaluations/*}/operations', }, + { + get: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*}/operations', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimes/*}/operations', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*}/operations', + }, {get: '/ui/{name=projects/*/locations/*/studies/*}/operations'}, { get: '/ui/{name=projects/*/locations/*/studies/*/trials/*}/operations', @@ -1709,6 +1778,15 @@ export class DeploymentResourcePoolServiceClient { { get: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*}/operations', }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*}/operations', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*}/operations', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*}/operations', + }, { get: '/v1beta1/{name=projects/*/locations/*/persistentResources/*}/operations', }, @@ -1862,6 +1940,15 @@ export class DeploymentResourcePoolServiceClient { { post: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:wait', }, + { + post: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:wait', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:wait', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:wait', + }, { post: '/ui/{name=projects/*/locations/*/studies/*/operations/*}:wait', }, @@ -2001,6 +2088,15 @@ export class DeploymentResourcePoolServiceClient { { post: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:wait', }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:wait', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:wait', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:wait', + }, { post: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}:wait', }, diff --git a/packages/google-cloud-aiplatform/src/v1beta1/endpoint_service_client.ts b/packages/google-cloud-aiplatform/src/v1beta1/endpoint_service_client.ts index 9c32a4dd945..234e7bc499c 100644 --- a/packages/google-cloud-aiplatform/src/v1beta1/endpoint_service_client.ts +++ b/packages/google-cloud-aiplatform/src/v1beta1/endpoint_service_client.ts @@ -676,6 +676,15 @@ export class EndpointServiceClient { { post: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:cancel', }, + { + post: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:cancel', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:cancel', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:cancel', + }, { post: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}:cancel', }, @@ -802,6 +811,15 @@ export class EndpointServiceClient { { post: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:cancel', }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:cancel', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:cancel', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:cancel', + }, { post: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}:cancel', }, @@ -957,6 +975,18 @@ export class EndpointServiceClient { delete: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { delete: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}', @@ -1142,6 +1172,18 @@ export class EndpointServiceClient { delete: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { delete: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}', @@ -1305,6 +1347,15 @@ export class EndpointServiceClient { { get: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + get: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { get: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}', }, @@ -1438,6 +1489,15 @@ export class EndpointServiceClient { { get: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { get: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}', }, @@ -1571,6 +1631,15 @@ export class EndpointServiceClient { { get: '/ui/{name=projects/*/locations/*/models/*/evaluations/*}/operations', }, + { + get: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*}/operations', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimes/*}/operations', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*}/operations', + }, {get: '/ui/{name=projects/*/locations/*/studies/*}/operations'}, { get: '/ui/{name=projects/*/locations/*/studies/*/trials/*}/operations', @@ -1700,6 +1769,15 @@ export class EndpointServiceClient { { get: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*}/operations', }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*}/operations', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*}/operations', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*}/operations', + }, { get: '/v1beta1/{name=projects/*/locations/*/persistentResources/*}/operations', }, @@ -1853,6 +1931,15 @@ export class EndpointServiceClient { { post: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:wait', }, + { + post: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:wait', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:wait', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:wait', + }, { post: '/ui/{name=projects/*/locations/*/studies/*/operations/*}:wait', }, @@ -1992,6 +2079,15 @@ export class EndpointServiceClient { { post: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:wait', }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:wait', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:wait', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:wait', + }, { post: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}:wait', }, diff --git a/packages/google-cloud-aiplatform/src/v1beta1/extension_registry_service_client.ts b/packages/google-cloud-aiplatform/src/v1beta1/extension_registry_service_client.ts index 0018fdea9de..171b5f29285 100644 --- a/packages/google-cloud-aiplatform/src/v1beta1/extension_registry_service_client.ts +++ b/packages/google-cloud-aiplatform/src/v1beta1/extension_registry_service_client.ts @@ -677,6 +677,15 @@ export class ExtensionRegistryServiceClient { { post: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:cancel', }, + { + post: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:cancel', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:cancel', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:cancel', + }, { post: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}:cancel', }, @@ -803,6 +812,15 @@ export class ExtensionRegistryServiceClient { { post: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:cancel', }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:cancel', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:cancel', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:cancel', + }, { post: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}:cancel', }, @@ -958,6 +976,18 @@ export class ExtensionRegistryServiceClient { delete: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { delete: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}', @@ -1143,6 +1173,18 @@ export class ExtensionRegistryServiceClient { delete: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { delete: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}', @@ -1306,6 +1348,15 @@ export class ExtensionRegistryServiceClient { { get: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + get: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { get: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}', }, @@ -1439,6 +1490,15 @@ export class ExtensionRegistryServiceClient { { get: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { get: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}', }, @@ -1572,6 +1632,15 @@ export class ExtensionRegistryServiceClient { { get: '/ui/{name=projects/*/locations/*/models/*/evaluations/*}/operations', }, + { + get: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*}/operations', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimes/*}/operations', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*}/operations', + }, {get: '/ui/{name=projects/*/locations/*/studies/*}/operations'}, { get: '/ui/{name=projects/*/locations/*/studies/*/trials/*}/operations', @@ -1701,6 +1770,15 @@ export class ExtensionRegistryServiceClient { { get: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*}/operations', }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*}/operations', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*}/operations', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*}/operations', + }, { get: '/v1beta1/{name=projects/*/locations/*/persistentResources/*}/operations', }, @@ -1854,6 +1932,15 @@ export class ExtensionRegistryServiceClient { { post: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:wait', }, + { + post: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:wait', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:wait', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:wait', + }, { post: '/ui/{name=projects/*/locations/*/studies/*/operations/*}:wait', }, @@ -1993,6 +2080,15 @@ export class ExtensionRegistryServiceClient { { post: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:wait', }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:wait', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:wait', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:wait', + }, { post: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}:wait', }, diff --git a/packages/google-cloud-aiplatform/src/v1beta1/feature_online_store_admin_service_client.ts b/packages/google-cloud-aiplatform/src/v1beta1/feature_online_store_admin_service_client.ts index bdd1b4e3863..651a1e530e6 100644 --- a/packages/google-cloud-aiplatform/src/v1beta1/feature_online_store_admin_service_client.ts +++ b/packages/google-cloud-aiplatform/src/v1beta1/feature_online_store_admin_service_client.ts @@ -691,6 +691,15 @@ export class FeatureOnlineStoreAdminServiceClient { { post: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:cancel', }, + { + post: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:cancel', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:cancel', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:cancel', + }, { post: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}:cancel', }, @@ -817,6 +826,15 @@ export class FeatureOnlineStoreAdminServiceClient { { post: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:cancel', }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:cancel', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:cancel', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:cancel', + }, { post: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}:cancel', }, @@ -972,6 +990,18 @@ export class FeatureOnlineStoreAdminServiceClient { delete: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { delete: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}', @@ -1157,6 +1187,18 @@ export class FeatureOnlineStoreAdminServiceClient { delete: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { delete: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}', @@ -1320,6 +1362,15 @@ export class FeatureOnlineStoreAdminServiceClient { { get: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + get: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { get: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}', }, @@ -1453,6 +1504,15 @@ export class FeatureOnlineStoreAdminServiceClient { { get: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { get: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}', }, @@ -1586,6 +1646,15 @@ export class FeatureOnlineStoreAdminServiceClient { { get: '/ui/{name=projects/*/locations/*/models/*/evaluations/*}/operations', }, + { + get: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*}/operations', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimes/*}/operations', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*}/operations', + }, {get: '/ui/{name=projects/*/locations/*/studies/*}/operations'}, { get: '/ui/{name=projects/*/locations/*/studies/*/trials/*}/operations', @@ -1715,6 +1784,15 @@ export class FeatureOnlineStoreAdminServiceClient { { get: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*}/operations', }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*}/operations', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*}/operations', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*}/operations', + }, { get: '/v1beta1/{name=projects/*/locations/*/persistentResources/*}/operations', }, @@ -1868,6 +1946,15 @@ export class FeatureOnlineStoreAdminServiceClient { { post: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:wait', }, + { + post: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:wait', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:wait', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:wait', + }, { post: '/ui/{name=projects/*/locations/*/studies/*/operations/*}:wait', }, @@ -2007,6 +2094,15 @@ export class FeatureOnlineStoreAdminServiceClient { { post: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:wait', }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:wait', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:wait', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:wait', + }, { post: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}:wait', }, diff --git a/packages/google-cloud-aiplatform/src/v1beta1/feature_registry_service_client.ts b/packages/google-cloud-aiplatform/src/v1beta1/feature_registry_service_client.ts index 37199343d15..94c641fece9 100644 --- a/packages/google-cloud-aiplatform/src/v1beta1/feature_registry_service_client.ts +++ b/packages/google-cloud-aiplatform/src/v1beta1/feature_registry_service_client.ts @@ -686,6 +686,15 @@ export class FeatureRegistryServiceClient { { post: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:cancel', }, + { + post: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:cancel', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:cancel', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:cancel', + }, { post: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}:cancel', }, @@ -812,6 +821,15 @@ export class FeatureRegistryServiceClient { { post: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:cancel', }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:cancel', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:cancel', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:cancel', + }, { post: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}:cancel', }, @@ -967,6 +985,18 @@ export class FeatureRegistryServiceClient { delete: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { delete: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}', @@ -1152,6 +1182,18 @@ export class FeatureRegistryServiceClient { delete: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { delete: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}', @@ -1315,6 +1357,15 @@ export class FeatureRegistryServiceClient { { get: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + get: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { get: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}', }, @@ -1448,6 +1499,15 @@ export class FeatureRegistryServiceClient { { get: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { get: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}', }, @@ -1581,6 +1641,15 @@ export class FeatureRegistryServiceClient { { get: '/ui/{name=projects/*/locations/*/models/*/evaluations/*}/operations', }, + { + get: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*}/operations', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimes/*}/operations', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*}/operations', + }, {get: '/ui/{name=projects/*/locations/*/studies/*}/operations'}, { get: '/ui/{name=projects/*/locations/*/studies/*/trials/*}/operations', @@ -1710,6 +1779,15 @@ export class FeatureRegistryServiceClient { { get: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*}/operations', }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*}/operations', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*}/operations', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*}/operations', + }, { get: '/v1beta1/{name=projects/*/locations/*/persistentResources/*}/operations', }, @@ -1863,6 +1941,15 @@ export class FeatureRegistryServiceClient { { post: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:wait', }, + { + post: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:wait', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:wait', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:wait', + }, { post: '/ui/{name=projects/*/locations/*/studies/*/operations/*}:wait', }, @@ -2002,6 +2089,15 @@ export class FeatureRegistryServiceClient { { post: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:wait', }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:wait', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:wait', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:wait', + }, { post: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}:wait', }, diff --git a/packages/google-cloud-aiplatform/src/v1beta1/featurestore_service_client.ts b/packages/google-cloud-aiplatform/src/v1beta1/featurestore_service_client.ts index 6856c157a1f..c6e8f03f032 100644 --- a/packages/google-cloud-aiplatform/src/v1beta1/featurestore_service_client.ts +++ b/packages/google-cloud-aiplatform/src/v1beta1/featurestore_service_client.ts @@ -694,6 +694,15 @@ export class FeaturestoreServiceClient { { post: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:cancel', }, + { + post: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:cancel', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:cancel', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:cancel', + }, { post: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}:cancel', }, @@ -820,6 +829,15 @@ export class FeaturestoreServiceClient { { post: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:cancel', }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:cancel', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:cancel', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:cancel', + }, { post: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}:cancel', }, @@ -975,6 +993,18 @@ export class FeaturestoreServiceClient { delete: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { delete: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}', @@ -1160,6 +1190,18 @@ export class FeaturestoreServiceClient { delete: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { delete: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}', @@ -1323,6 +1365,15 @@ export class FeaturestoreServiceClient { { get: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + get: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { get: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}', }, @@ -1456,6 +1507,15 @@ export class FeaturestoreServiceClient { { get: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { get: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}', }, @@ -1589,6 +1649,15 @@ export class FeaturestoreServiceClient { { get: '/ui/{name=projects/*/locations/*/models/*/evaluations/*}/operations', }, + { + get: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*}/operations', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimes/*}/operations', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*}/operations', + }, {get: '/ui/{name=projects/*/locations/*/studies/*}/operations'}, { get: '/ui/{name=projects/*/locations/*/studies/*/trials/*}/operations', @@ -1718,6 +1787,15 @@ export class FeaturestoreServiceClient { { get: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*}/operations', }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*}/operations', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*}/operations', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*}/operations', + }, { get: '/v1beta1/{name=projects/*/locations/*/persistentResources/*}/operations', }, @@ -1871,6 +1949,15 @@ export class FeaturestoreServiceClient { { post: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:wait', }, + { + post: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:wait', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:wait', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:wait', + }, { post: '/ui/{name=projects/*/locations/*/studies/*/operations/*}:wait', }, @@ -2010,6 +2097,15 @@ export class FeaturestoreServiceClient { { post: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:wait', }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:wait', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:wait', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:wait', + }, { post: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}:wait', }, diff --git a/packages/google-cloud-aiplatform/src/v1beta1/index_endpoint_service_client.ts b/packages/google-cloud-aiplatform/src/v1beta1/index_endpoint_service_client.ts index d35d64723d3..ffe75481016 100644 --- a/packages/google-cloud-aiplatform/src/v1beta1/index_endpoint_service_client.ts +++ b/packages/google-cloud-aiplatform/src/v1beta1/index_endpoint_service_client.ts @@ -676,6 +676,15 @@ export class IndexEndpointServiceClient { { post: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:cancel', }, + { + post: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:cancel', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:cancel', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:cancel', + }, { post: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}:cancel', }, @@ -802,6 +811,15 @@ export class IndexEndpointServiceClient { { post: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:cancel', }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:cancel', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:cancel', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:cancel', + }, { post: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}:cancel', }, @@ -957,6 +975,18 @@ export class IndexEndpointServiceClient { delete: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { delete: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}', @@ -1142,6 +1172,18 @@ export class IndexEndpointServiceClient { delete: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { delete: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}', @@ -1305,6 +1347,15 @@ export class IndexEndpointServiceClient { { get: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + get: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { get: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}', }, @@ -1438,6 +1489,15 @@ export class IndexEndpointServiceClient { { get: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { get: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}', }, @@ -1571,6 +1631,15 @@ export class IndexEndpointServiceClient { { get: '/ui/{name=projects/*/locations/*/models/*/evaluations/*}/operations', }, + { + get: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*}/operations', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimes/*}/operations', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*}/operations', + }, {get: '/ui/{name=projects/*/locations/*/studies/*}/operations'}, { get: '/ui/{name=projects/*/locations/*/studies/*/trials/*}/operations', @@ -1700,6 +1769,15 @@ export class IndexEndpointServiceClient { { get: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*}/operations', }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*}/operations', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*}/operations', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*}/operations', + }, { get: '/v1beta1/{name=projects/*/locations/*/persistentResources/*}/operations', }, @@ -1853,6 +1931,15 @@ export class IndexEndpointServiceClient { { post: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:wait', }, + { + post: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:wait', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:wait', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:wait', + }, { post: '/ui/{name=projects/*/locations/*/studies/*/operations/*}:wait', }, @@ -1992,6 +2079,15 @@ export class IndexEndpointServiceClient { { post: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:wait', }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:wait', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:wait', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:wait', + }, { post: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}:wait', }, diff --git a/packages/google-cloud-aiplatform/src/v1beta1/index_service_client.ts b/packages/google-cloud-aiplatform/src/v1beta1/index_service_client.ts index d48df760769..ba626631a3b 100644 --- a/packages/google-cloud-aiplatform/src/v1beta1/index_service_client.ts +++ b/packages/google-cloud-aiplatform/src/v1beta1/index_service_client.ts @@ -676,6 +676,15 @@ export class IndexServiceClient { { post: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:cancel', }, + { + post: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:cancel', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:cancel', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:cancel', + }, { post: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}:cancel', }, @@ -802,6 +811,15 @@ export class IndexServiceClient { { post: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:cancel', }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:cancel', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:cancel', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:cancel', + }, { post: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}:cancel', }, @@ -957,6 +975,18 @@ export class IndexServiceClient { delete: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { delete: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}', @@ -1142,6 +1172,18 @@ export class IndexServiceClient { delete: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { delete: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}', @@ -1305,6 +1347,15 @@ export class IndexServiceClient { { get: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + get: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { get: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}', }, @@ -1438,6 +1489,15 @@ export class IndexServiceClient { { get: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { get: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}', }, @@ -1571,6 +1631,15 @@ export class IndexServiceClient { { get: '/ui/{name=projects/*/locations/*/models/*/evaluations/*}/operations', }, + { + get: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*}/operations', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimes/*}/operations', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*}/operations', + }, {get: '/ui/{name=projects/*/locations/*/studies/*}/operations'}, { get: '/ui/{name=projects/*/locations/*/studies/*/trials/*}/operations', @@ -1700,6 +1769,15 @@ export class IndexServiceClient { { get: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*}/operations', }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*}/operations', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*}/operations', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*}/operations', + }, { get: '/v1beta1/{name=projects/*/locations/*/persistentResources/*}/operations', }, @@ -1853,6 +1931,15 @@ export class IndexServiceClient { { post: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:wait', }, + { + post: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:wait', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:wait', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:wait', + }, { post: '/ui/{name=projects/*/locations/*/studies/*/operations/*}:wait', }, @@ -1992,6 +2079,15 @@ export class IndexServiceClient { { post: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:wait', }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:wait', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:wait', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:wait', + }, { post: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}:wait', }, diff --git a/packages/google-cloud-aiplatform/src/v1beta1/job_service_client.ts b/packages/google-cloud-aiplatform/src/v1beta1/job_service_client.ts index 532fbce24eb..0059af8b024 100644 --- a/packages/google-cloud-aiplatform/src/v1beta1/job_service_client.ts +++ b/packages/google-cloud-aiplatform/src/v1beta1/job_service_client.ts @@ -712,6 +712,15 @@ export class JobServiceClient { { post: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:cancel', }, + { + post: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:cancel', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:cancel', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:cancel', + }, { post: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}:cancel', }, @@ -838,6 +847,15 @@ export class JobServiceClient { { post: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:cancel', }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:cancel', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:cancel', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:cancel', + }, { post: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}:cancel', }, @@ -993,6 +1011,18 @@ export class JobServiceClient { delete: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { delete: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}', @@ -1178,6 +1208,18 @@ export class JobServiceClient { delete: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { delete: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}', @@ -1341,6 +1383,15 @@ export class JobServiceClient { { get: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + get: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { get: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}', }, @@ -1474,6 +1525,15 @@ export class JobServiceClient { { get: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { get: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}', }, @@ -1607,6 +1667,15 @@ export class JobServiceClient { { get: '/ui/{name=projects/*/locations/*/models/*/evaluations/*}/operations', }, + { + get: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*}/operations', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimes/*}/operations', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*}/operations', + }, {get: '/ui/{name=projects/*/locations/*/studies/*}/operations'}, { get: '/ui/{name=projects/*/locations/*/studies/*/trials/*}/operations', @@ -1736,6 +1805,15 @@ export class JobServiceClient { { get: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*}/operations', }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*}/operations', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*}/operations', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*}/operations', + }, { get: '/v1beta1/{name=projects/*/locations/*/persistentResources/*}/operations', }, @@ -1889,6 +1967,15 @@ export class JobServiceClient { { post: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:wait', }, + { + post: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:wait', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:wait', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:wait', + }, { post: '/ui/{name=projects/*/locations/*/studies/*/operations/*}:wait', }, @@ -2028,6 +2115,15 @@ export class JobServiceClient { { post: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:wait', }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:wait', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:wait', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:wait', + }, { post: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}:wait', }, diff --git a/packages/google-cloud-aiplatform/src/v1beta1/metadata_service_client.ts b/packages/google-cloud-aiplatform/src/v1beta1/metadata_service_client.ts index af525cbe6d6..253cabdd0b5 100644 --- a/packages/google-cloud-aiplatform/src/v1beta1/metadata_service_client.ts +++ b/packages/google-cloud-aiplatform/src/v1beta1/metadata_service_client.ts @@ -699,6 +699,15 @@ export class MetadataServiceClient { { post: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:cancel', }, + { + post: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:cancel', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:cancel', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:cancel', + }, { post: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}:cancel', }, @@ -825,6 +834,15 @@ export class MetadataServiceClient { { post: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:cancel', }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:cancel', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:cancel', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:cancel', + }, { post: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}:cancel', }, @@ -980,6 +998,18 @@ export class MetadataServiceClient { delete: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { delete: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}', @@ -1165,6 +1195,18 @@ export class MetadataServiceClient { delete: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { delete: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}', @@ -1328,6 +1370,15 @@ export class MetadataServiceClient { { get: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + get: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { get: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}', }, @@ -1461,6 +1512,15 @@ export class MetadataServiceClient { { get: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { get: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}', }, @@ -1594,6 +1654,15 @@ export class MetadataServiceClient { { get: '/ui/{name=projects/*/locations/*/models/*/evaluations/*}/operations', }, + { + get: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*}/operations', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimes/*}/operations', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*}/operations', + }, {get: '/ui/{name=projects/*/locations/*/studies/*}/operations'}, { get: '/ui/{name=projects/*/locations/*/studies/*/trials/*}/operations', @@ -1723,6 +1792,15 @@ export class MetadataServiceClient { { get: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*}/operations', }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*}/operations', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*}/operations', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*}/operations', + }, { get: '/v1beta1/{name=projects/*/locations/*/persistentResources/*}/operations', }, @@ -1876,6 +1954,15 @@ export class MetadataServiceClient { { post: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:wait', }, + { + post: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:wait', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:wait', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:wait', + }, { post: '/ui/{name=projects/*/locations/*/studies/*/operations/*}:wait', }, @@ -2015,6 +2102,15 @@ export class MetadataServiceClient { { post: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:wait', }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:wait', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:wait', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:wait', + }, { post: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}:wait', }, diff --git a/packages/google-cloud-aiplatform/src/v1beta1/migration_service_client.ts b/packages/google-cloud-aiplatform/src/v1beta1/migration_service_client.ts index 153d8e3a870..fc0a8cde92c 100644 --- a/packages/google-cloud-aiplatform/src/v1beta1/migration_service_client.ts +++ b/packages/google-cloud-aiplatform/src/v1beta1/migration_service_client.ts @@ -677,6 +677,15 @@ export class MigrationServiceClient { { post: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:cancel', }, + { + post: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:cancel', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:cancel', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:cancel', + }, { post: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}:cancel', }, @@ -803,6 +812,15 @@ export class MigrationServiceClient { { post: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:cancel', }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:cancel', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:cancel', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:cancel', + }, { post: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}:cancel', }, @@ -958,6 +976,18 @@ export class MigrationServiceClient { delete: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { delete: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}', @@ -1143,6 +1173,18 @@ export class MigrationServiceClient { delete: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { delete: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}', @@ -1306,6 +1348,15 @@ export class MigrationServiceClient { { get: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + get: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { get: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}', }, @@ -1439,6 +1490,15 @@ export class MigrationServiceClient { { get: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { get: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}', }, @@ -1572,6 +1632,15 @@ export class MigrationServiceClient { { get: '/ui/{name=projects/*/locations/*/models/*/evaluations/*}/operations', }, + { + get: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*}/operations', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimes/*}/operations', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*}/operations', + }, {get: '/ui/{name=projects/*/locations/*/studies/*}/operations'}, { get: '/ui/{name=projects/*/locations/*/studies/*/trials/*}/operations', @@ -1701,6 +1770,15 @@ export class MigrationServiceClient { { get: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*}/operations', }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*}/operations', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*}/operations', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*}/operations', + }, { get: '/v1beta1/{name=projects/*/locations/*/persistentResources/*}/operations', }, @@ -1854,6 +1932,15 @@ export class MigrationServiceClient { { post: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:wait', }, + { + post: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:wait', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:wait', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:wait', + }, { post: '/ui/{name=projects/*/locations/*/studies/*/operations/*}:wait', }, @@ -1993,6 +2080,15 @@ export class MigrationServiceClient { { post: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:wait', }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:wait', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:wait', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:wait', + }, { post: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}:wait', }, diff --git a/packages/google-cloud-aiplatform/src/v1beta1/model_monitoring_service_client.ts b/packages/google-cloud-aiplatform/src/v1beta1/model_monitoring_service_client.ts index a441c3695c2..6d49a0a3add 100644 --- a/packages/google-cloud-aiplatform/src/v1beta1/model_monitoring_service_client.ts +++ b/packages/google-cloud-aiplatform/src/v1beta1/model_monitoring_service_client.ts @@ -693,6 +693,15 @@ export class ModelMonitoringServiceClient { { post: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:cancel', }, + { + post: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:cancel', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:cancel', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:cancel', + }, { post: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}:cancel', }, @@ -819,6 +828,15 @@ export class ModelMonitoringServiceClient { { post: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:cancel', }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:cancel', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:cancel', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:cancel', + }, { post: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}:cancel', }, @@ -974,6 +992,18 @@ export class ModelMonitoringServiceClient { delete: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { delete: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}', @@ -1159,6 +1189,18 @@ export class ModelMonitoringServiceClient { delete: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { delete: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}', @@ -1322,6 +1364,15 @@ export class ModelMonitoringServiceClient { { get: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + get: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { get: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}', }, @@ -1455,6 +1506,15 @@ export class ModelMonitoringServiceClient { { get: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { get: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}', }, @@ -1588,6 +1648,15 @@ export class ModelMonitoringServiceClient { { get: '/ui/{name=projects/*/locations/*/models/*/evaluations/*}/operations', }, + { + get: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*}/operations', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimes/*}/operations', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*}/operations', + }, {get: '/ui/{name=projects/*/locations/*/studies/*}/operations'}, { get: '/ui/{name=projects/*/locations/*/studies/*/trials/*}/operations', @@ -1717,6 +1786,15 @@ export class ModelMonitoringServiceClient { { get: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*}/operations', }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*}/operations', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*}/operations', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*}/operations', + }, { get: '/v1beta1/{name=projects/*/locations/*/persistentResources/*}/operations', }, @@ -1870,6 +1948,15 @@ export class ModelMonitoringServiceClient { { post: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:wait', }, + { + post: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:wait', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:wait', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:wait', + }, { post: '/ui/{name=projects/*/locations/*/studies/*/operations/*}:wait', }, @@ -2009,6 +2096,15 @@ export class ModelMonitoringServiceClient { { post: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:wait', }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:wait', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:wait', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:wait', + }, { post: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}:wait', }, diff --git a/packages/google-cloud-aiplatform/src/v1beta1/model_service_client.ts b/packages/google-cloud-aiplatform/src/v1beta1/model_service_client.ts index 77a5d684cb2..f3e346e7ea4 100644 --- a/packages/google-cloud-aiplatform/src/v1beta1/model_service_client.ts +++ b/packages/google-cloud-aiplatform/src/v1beta1/model_service_client.ts @@ -691,6 +691,15 @@ export class ModelServiceClient { { post: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:cancel', }, + { + post: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:cancel', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:cancel', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:cancel', + }, { post: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}:cancel', }, @@ -817,6 +826,15 @@ export class ModelServiceClient { { post: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:cancel', }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:cancel', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:cancel', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:cancel', + }, { post: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}:cancel', }, @@ -972,6 +990,18 @@ export class ModelServiceClient { delete: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { delete: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}', @@ -1157,6 +1187,18 @@ export class ModelServiceClient { delete: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { delete: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}', @@ -1320,6 +1362,15 @@ export class ModelServiceClient { { get: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + get: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { get: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}', }, @@ -1453,6 +1504,15 @@ export class ModelServiceClient { { get: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { get: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}', }, @@ -1586,6 +1646,15 @@ export class ModelServiceClient { { get: '/ui/{name=projects/*/locations/*/models/*/evaluations/*}/operations', }, + { + get: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*}/operations', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimes/*}/operations', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*}/operations', + }, {get: '/ui/{name=projects/*/locations/*/studies/*}/operations'}, { get: '/ui/{name=projects/*/locations/*/studies/*/trials/*}/operations', @@ -1715,6 +1784,15 @@ export class ModelServiceClient { { get: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*}/operations', }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*}/operations', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*}/operations', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*}/operations', + }, { get: '/v1beta1/{name=projects/*/locations/*/persistentResources/*}/operations', }, @@ -1868,6 +1946,15 @@ export class ModelServiceClient { { post: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:wait', }, + { + post: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:wait', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:wait', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:wait', + }, { post: '/ui/{name=projects/*/locations/*/studies/*/operations/*}:wait', }, @@ -2007,6 +2094,15 @@ export class ModelServiceClient { { post: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:wait', }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:wait', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:wait', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:wait', + }, { post: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}:wait', }, diff --git a/packages/google-cloud-aiplatform/src/v1beta1/notebook_service_client.ts b/packages/google-cloud-aiplatform/src/v1beta1/notebook_service_client.ts index 496a4ccb947..5f5c6460cd1 100644 --- a/packages/google-cloud-aiplatform/src/v1beta1/notebook_service_client.ts +++ b/packages/google-cloud-aiplatform/src/v1beta1/notebook_service_client.ts @@ -686,6 +686,15 @@ export class NotebookServiceClient { { post: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:cancel', }, + { + post: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:cancel', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:cancel', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:cancel', + }, { post: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}:cancel', }, @@ -812,6 +821,15 @@ export class NotebookServiceClient { { post: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:cancel', }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:cancel', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:cancel', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:cancel', + }, { post: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}:cancel', }, @@ -967,6 +985,18 @@ export class NotebookServiceClient { delete: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { delete: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}', @@ -1152,6 +1182,18 @@ export class NotebookServiceClient { delete: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { delete: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}', @@ -1315,6 +1357,15 @@ export class NotebookServiceClient { { get: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + get: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { get: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}', }, @@ -1448,6 +1499,15 @@ export class NotebookServiceClient { { get: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { get: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}', }, @@ -1581,6 +1641,15 @@ export class NotebookServiceClient { { get: '/ui/{name=projects/*/locations/*/models/*/evaluations/*}/operations', }, + { + get: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*}/operations', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimes/*}/operations', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*}/operations', + }, {get: '/ui/{name=projects/*/locations/*/studies/*}/operations'}, { get: '/ui/{name=projects/*/locations/*/studies/*/trials/*}/operations', @@ -1710,6 +1779,15 @@ export class NotebookServiceClient { { get: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*}/operations', }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*}/operations', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*}/operations', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*}/operations', + }, { get: '/v1beta1/{name=projects/*/locations/*/persistentResources/*}/operations', }, @@ -1863,6 +1941,15 @@ export class NotebookServiceClient { { post: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:wait', }, + { + post: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:wait', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:wait', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:wait', + }, { post: '/ui/{name=projects/*/locations/*/studies/*/operations/*}:wait', }, @@ -2002,6 +2089,15 @@ export class NotebookServiceClient { { post: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:wait', }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:wait', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:wait', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:wait', + }, { post: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}:wait', }, diff --git a/packages/google-cloud-aiplatform/src/v1beta1/persistent_resource_service_client.ts b/packages/google-cloud-aiplatform/src/v1beta1/persistent_resource_service_client.ts index 02881b9b37c..09249640230 100644 --- a/packages/google-cloud-aiplatform/src/v1beta1/persistent_resource_service_client.ts +++ b/packages/google-cloud-aiplatform/src/v1beta1/persistent_resource_service_client.ts @@ -677,6 +677,15 @@ export class PersistentResourceServiceClient { { post: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:cancel', }, + { + post: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:cancel', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:cancel', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:cancel', + }, { post: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}:cancel', }, @@ -803,6 +812,15 @@ export class PersistentResourceServiceClient { { post: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:cancel', }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:cancel', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:cancel', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:cancel', + }, { post: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}:cancel', }, @@ -958,6 +976,18 @@ export class PersistentResourceServiceClient { delete: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { delete: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}', @@ -1143,6 +1173,18 @@ export class PersistentResourceServiceClient { delete: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { delete: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}', @@ -1306,6 +1348,15 @@ export class PersistentResourceServiceClient { { get: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + get: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { get: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}', }, @@ -1439,6 +1490,15 @@ export class PersistentResourceServiceClient { { get: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { get: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}', }, @@ -1572,6 +1632,15 @@ export class PersistentResourceServiceClient { { get: '/ui/{name=projects/*/locations/*/models/*/evaluations/*}/operations', }, + { + get: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*}/operations', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimes/*}/operations', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*}/operations', + }, {get: '/ui/{name=projects/*/locations/*/studies/*}/operations'}, { get: '/ui/{name=projects/*/locations/*/studies/*/trials/*}/operations', @@ -1701,6 +1770,15 @@ export class PersistentResourceServiceClient { { get: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*}/operations', }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*}/operations', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*}/operations', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*}/operations', + }, { get: '/v1beta1/{name=projects/*/locations/*/persistentResources/*}/operations', }, @@ -1854,6 +1932,15 @@ export class PersistentResourceServiceClient { { post: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:wait', }, + { + post: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:wait', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:wait', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:wait', + }, { post: '/ui/{name=projects/*/locations/*/studies/*/operations/*}:wait', }, @@ -1993,6 +2080,15 @@ export class PersistentResourceServiceClient { { post: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:wait', }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:wait', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:wait', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:wait', + }, { post: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}:wait', }, diff --git a/packages/google-cloud-aiplatform/src/v1beta1/pipeline_service_client.ts b/packages/google-cloud-aiplatform/src/v1beta1/pipeline_service_client.ts index 055cc9688c5..3ba2cc8a7f7 100644 --- a/packages/google-cloud-aiplatform/src/v1beta1/pipeline_service_client.ts +++ b/packages/google-cloud-aiplatform/src/v1beta1/pipeline_service_client.ts @@ -686,6 +686,15 @@ export class PipelineServiceClient { { post: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:cancel', }, + { + post: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:cancel', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:cancel', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:cancel', + }, { post: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}:cancel', }, @@ -812,6 +821,15 @@ export class PipelineServiceClient { { post: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:cancel', }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:cancel', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:cancel', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:cancel', + }, { post: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}:cancel', }, @@ -967,6 +985,18 @@ export class PipelineServiceClient { delete: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { delete: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}', @@ -1152,6 +1182,18 @@ export class PipelineServiceClient { delete: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { delete: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}', @@ -1315,6 +1357,15 @@ export class PipelineServiceClient { { get: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + get: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { get: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}', }, @@ -1448,6 +1499,15 @@ export class PipelineServiceClient { { get: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { get: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}', }, @@ -1581,6 +1641,15 @@ export class PipelineServiceClient { { get: '/ui/{name=projects/*/locations/*/models/*/evaluations/*}/operations', }, + { + get: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*}/operations', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimes/*}/operations', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*}/operations', + }, {get: '/ui/{name=projects/*/locations/*/studies/*}/operations'}, { get: '/ui/{name=projects/*/locations/*/studies/*/trials/*}/operations', @@ -1710,6 +1779,15 @@ export class PipelineServiceClient { { get: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*}/operations', }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*}/operations', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*}/operations', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*}/operations', + }, { get: '/v1beta1/{name=projects/*/locations/*/persistentResources/*}/operations', }, @@ -1863,6 +1941,15 @@ export class PipelineServiceClient { { post: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:wait', }, + { + post: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:wait', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:wait', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:wait', + }, { post: '/ui/{name=projects/*/locations/*/studies/*/operations/*}:wait', }, @@ -2002,6 +2089,15 @@ export class PipelineServiceClient { { post: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:wait', }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:wait', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:wait', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:wait', + }, { post: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}:wait', }, diff --git a/packages/google-cloud-aiplatform/src/v1beta1/reasoning_engine_service_client.ts b/packages/google-cloud-aiplatform/src/v1beta1/reasoning_engine_service_client.ts index 4a822da9f92..a4007df1148 100644 --- a/packages/google-cloud-aiplatform/src/v1beta1/reasoning_engine_service_client.ts +++ b/packages/google-cloud-aiplatform/src/v1beta1/reasoning_engine_service_client.ts @@ -677,6 +677,15 @@ export class ReasoningEngineServiceClient { { post: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:cancel', }, + { + post: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:cancel', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:cancel', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:cancel', + }, { post: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}:cancel', }, @@ -803,6 +812,15 @@ export class ReasoningEngineServiceClient { { post: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:cancel', }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:cancel', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:cancel', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:cancel', + }, { post: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}:cancel', }, @@ -958,6 +976,18 @@ export class ReasoningEngineServiceClient { delete: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { delete: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}', @@ -1143,6 +1173,18 @@ export class ReasoningEngineServiceClient { delete: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { delete: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}', @@ -1306,6 +1348,15 @@ export class ReasoningEngineServiceClient { { get: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + get: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { get: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}', }, @@ -1439,6 +1490,15 @@ export class ReasoningEngineServiceClient { { get: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { get: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}', }, @@ -1572,6 +1632,15 @@ export class ReasoningEngineServiceClient { { get: '/ui/{name=projects/*/locations/*/models/*/evaluations/*}/operations', }, + { + get: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*}/operations', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimes/*}/operations', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*}/operations', + }, {get: '/ui/{name=projects/*/locations/*/studies/*}/operations'}, { get: '/ui/{name=projects/*/locations/*/studies/*/trials/*}/operations', @@ -1701,6 +1770,15 @@ export class ReasoningEngineServiceClient { { get: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*}/operations', }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*}/operations', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*}/operations', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*}/operations', + }, { get: '/v1beta1/{name=projects/*/locations/*/persistentResources/*}/operations', }, @@ -1854,6 +1932,15 @@ export class ReasoningEngineServiceClient { { post: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:wait', }, + { + post: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:wait', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:wait', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:wait', + }, { post: '/ui/{name=projects/*/locations/*/studies/*/operations/*}:wait', }, @@ -1993,6 +2080,15 @@ export class ReasoningEngineServiceClient { { post: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:wait', }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:wait', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:wait', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:wait', + }, { post: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}:wait', }, diff --git a/packages/google-cloud-aiplatform/src/v1beta1/schedule_service_client.ts b/packages/google-cloud-aiplatform/src/v1beta1/schedule_service_client.ts index 058d2984643..b0f0be20f4a 100644 --- a/packages/google-cloud-aiplatform/src/v1beta1/schedule_service_client.ts +++ b/packages/google-cloud-aiplatform/src/v1beta1/schedule_service_client.ts @@ -677,6 +677,15 @@ export class ScheduleServiceClient { { post: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:cancel', }, + { + post: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:cancel', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:cancel', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:cancel', + }, { post: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}:cancel', }, @@ -803,6 +812,15 @@ export class ScheduleServiceClient { { post: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:cancel', }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:cancel', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:cancel', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:cancel', + }, { post: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}:cancel', }, @@ -958,6 +976,18 @@ export class ScheduleServiceClient { delete: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { delete: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}', @@ -1143,6 +1173,18 @@ export class ScheduleServiceClient { delete: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { delete: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}', @@ -1306,6 +1348,15 @@ export class ScheduleServiceClient { { get: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + get: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { get: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}', }, @@ -1439,6 +1490,15 @@ export class ScheduleServiceClient { { get: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { get: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}', }, @@ -1572,6 +1632,15 @@ export class ScheduleServiceClient { { get: '/ui/{name=projects/*/locations/*/models/*/evaluations/*}/operations', }, + { + get: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*}/operations', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimes/*}/operations', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*}/operations', + }, {get: '/ui/{name=projects/*/locations/*/studies/*}/operations'}, { get: '/ui/{name=projects/*/locations/*/studies/*/trials/*}/operations', @@ -1701,6 +1770,15 @@ export class ScheduleServiceClient { { get: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*}/operations', }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*}/operations', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*}/operations', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*}/operations', + }, { get: '/v1beta1/{name=projects/*/locations/*/persistentResources/*}/operations', }, @@ -1854,6 +1932,15 @@ export class ScheduleServiceClient { { post: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:wait', }, + { + post: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:wait', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:wait', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:wait', + }, { post: '/ui/{name=projects/*/locations/*/studies/*/operations/*}:wait', }, @@ -1993,6 +2080,15 @@ export class ScheduleServiceClient { { post: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:wait', }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:wait', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:wait', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:wait', + }, { post: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}:wait', }, diff --git a/packages/google-cloud-aiplatform/src/v1beta1/specialist_pool_service_client.ts b/packages/google-cloud-aiplatform/src/v1beta1/specialist_pool_service_client.ts index ab9dac1b66f..46349e90fd2 100644 --- a/packages/google-cloud-aiplatform/src/v1beta1/specialist_pool_service_client.ts +++ b/packages/google-cloud-aiplatform/src/v1beta1/specialist_pool_service_client.ts @@ -682,6 +682,15 @@ export class SpecialistPoolServiceClient { { post: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:cancel', }, + { + post: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:cancel', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:cancel', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:cancel', + }, { post: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}:cancel', }, @@ -808,6 +817,15 @@ export class SpecialistPoolServiceClient { { post: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:cancel', }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:cancel', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:cancel', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:cancel', + }, { post: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}:cancel', }, @@ -963,6 +981,18 @@ export class SpecialistPoolServiceClient { delete: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { delete: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}', @@ -1148,6 +1178,18 @@ export class SpecialistPoolServiceClient { delete: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { delete: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}', @@ -1311,6 +1353,15 @@ export class SpecialistPoolServiceClient { { get: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + get: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { get: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}', }, @@ -1444,6 +1495,15 @@ export class SpecialistPoolServiceClient { { get: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { get: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}', }, @@ -1577,6 +1637,15 @@ export class SpecialistPoolServiceClient { { get: '/ui/{name=projects/*/locations/*/models/*/evaluations/*}/operations', }, + { + get: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*}/operations', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimes/*}/operations', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*}/operations', + }, {get: '/ui/{name=projects/*/locations/*/studies/*}/operations'}, { get: '/ui/{name=projects/*/locations/*/studies/*/trials/*}/operations', @@ -1706,6 +1775,15 @@ export class SpecialistPoolServiceClient { { get: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*}/operations', }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*}/operations', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*}/operations', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*}/operations', + }, { get: '/v1beta1/{name=projects/*/locations/*/persistentResources/*}/operations', }, @@ -1859,6 +1937,15 @@ export class SpecialistPoolServiceClient { { post: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:wait', }, + { + post: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:wait', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:wait', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:wait', + }, { post: '/ui/{name=projects/*/locations/*/studies/*/operations/*}:wait', }, @@ -1998,6 +2085,15 @@ export class SpecialistPoolServiceClient { { post: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:wait', }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:wait', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:wait', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:wait', + }, { post: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}:wait', }, diff --git a/packages/google-cloud-aiplatform/src/v1beta1/tensorboard_service_client.ts b/packages/google-cloud-aiplatform/src/v1beta1/tensorboard_service_client.ts index 282638d1d37..ea81848df30 100644 --- a/packages/google-cloud-aiplatform/src/v1beta1/tensorboard_service_client.ts +++ b/packages/google-cloud-aiplatform/src/v1beta1/tensorboard_service_client.ts @@ -709,6 +709,15 @@ export class TensorboardServiceClient { { post: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:cancel', }, + { + post: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:cancel', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:cancel', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:cancel', + }, { post: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}:cancel', }, @@ -835,6 +844,15 @@ export class TensorboardServiceClient { { post: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:cancel', }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:cancel', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:cancel', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:cancel', + }, { post: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}:cancel', }, @@ -990,6 +1008,18 @@ export class TensorboardServiceClient { delete: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { delete: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}', @@ -1175,6 +1205,18 @@ export class TensorboardServiceClient { delete: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { delete: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}', @@ -1338,6 +1380,15 @@ export class TensorboardServiceClient { { get: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + get: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { get: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}', }, @@ -1471,6 +1522,15 @@ export class TensorboardServiceClient { { get: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { get: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}', }, @@ -1604,6 +1664,15 @@ export class TensorboardServiceClient { { get: '/ui/{name=projects/*/locations/*/models/*/evaluations/*}/operations', }, + { + get: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*}/operations', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimes/*}/operations', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*}/operations', + }, {get: '/ui/{name=projects/*/locations/*/studies/*}/operations'}, { get: '/ui/{name=projects/*/locations/*/studies/*/trials/*}/operations', @@ -1733,6 +1802,15 @@ export class TensorboardServiceClient { { get: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*}/operations', }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*}/operations', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*}/operations', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*}/operations', + }, { get: '/v1beta1/{name=projects/*/locations/*/persistentResources/*}/operations', }, @@ -1886,6 +1964,15 @@ export class TensorboardServiceClient { { post: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:wait', }, + { + post: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:wait', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:wait', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:wait', + }, { post: '/ui/{name=projects/*/locations/*/studies/*/operations/*}:wait', }, @@ -2025,6 +2112,15 @@ export class TensorboardServiceClient { { post: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:wait', }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:wait', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:wait', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:wait', + }, { post: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}:wait', }, diff --git a/packages/google-cloud-aiplatform/src/v1beta1/vertex_rag_data_service_client.ts b/packages/google-cloud-aiplatform/src/v1beta1/vertex_rag_data_service_client.ts index d612ff98463..21c352b7a5a 100644 --- a/packages/google-cloud-aiplatform/src/v1beta1/vertex_rag_data_service_client.ts +++ b/packages/google-cloud-aiplatform/src/v1beta1/vertex_rag_data_service_client.ts @@ -681,6 +681,15 @@ export class VertexRagDataServiceClient { { post: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:cancel', }, + { + post: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:cancel', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:cancel', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:cancel', + }, { post: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}:cancel', }, @@ -807,6 +816,15 @@ export class VertexRagDataServiceClient { { post: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:cancel', }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:cancel', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:cancel', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:cancel', + }, { post: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}:cancel', }, @@ -962,6 +980,18 @@ export class VertexRagDataServiceClient { delete: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { delete: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}', @@ -1147,6 +1177,18 @@ export class VertexRagDataServiceClient { delete: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { delete: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}', @@ -1310,6 +1352,15 @@ export class VertexRagDataServiceClient { { get: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + get: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { get: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}', }, @@ -1443,6 +1494,15 @@ export class VertexRagDataServiceClient { { get: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { get: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}', }, @@ -1576,6 +1636,15 @@ export class VertexRagDataServiceClient { { get: '/ui/{name=projects/*/locations/*/models/*/evaluations/*}/operations', }, + { + get: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*}/operations', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimes/*}/operations', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*}/operations', + }, {get: '/ui/{name=projects/*/locations/*/studies/*}/operations'}, { get: '/ui/{name=projects/*/locations/*/studies/*/trials/*}/operations', @@ -1705,6 +1774,15 @@ export class VertexRagDataServiceClient { { get: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*}/operations', }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*}/operations', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*}/operations', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*}/operations', + }, { get: '/v1beta1/{name=projects/*/locations/*/persistentResources/*}/operations', }, @@ -1858,6 +1936,15 @@ export class VertexRagDataServiceClient { { post: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:wait', }, + { + post: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:wait', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:wait', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:wait', + }, { post: '/ui/{name=projects/*/locations/*/studies/*/operations/*}:wait', }, @@ -1997,6 +2084,15 @@ export class VertexRagDataServiceClient { { post: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:wait', }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:wait', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:wait', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:wait', + }, { post: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}:wait', }, diff --git a/packages/google-cloud-aiplatform/src/v1beta1/vizier_service_client.ts b/packages/google-cloud-aiplatform/src/v1beta1/vizier_service_client.ts index 1650a4f2753..013437f27e1 100644 --- a/packages/google-cloud-aiplatform/src/v1beta1/vizier_service_client.ts +++ b/packages/google-cloud-aiplatform/src/v1beta1/vizier_service_client.ts @@ -685,6 +685,15 @@ export class VizierServiceClient { { post: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:cancel', }, + { + post: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:cancel', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:cancel', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:cancel', + }, { post: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}:cancel', }, @@ -811,6 +820,15 @@ export class VizierServiceClient { { post: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:cancel', }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:cancel', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:cancel', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:cancel', + }, { post: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}:cancel', }, @@ -966,6 +984,18 @@ export class VizierServiceClient { delete: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + delete: + '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { delete: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}', @@ -1151,6 +1181,18 @@ export class VizierServiceClient { delete: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + delete: + '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { delete: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}', @@ -1314,6 +1356,15 @@ export class VizierServiceClient { { get: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + get: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { get: '/ui/{name=projects/*/locations/*/persistentResources/*/operations/*}', }, @@ -1447,6 +1498,15 @@ export class VizierServiceClient { { get: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}', }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}', + }, { get: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}', }, @@ -1580,6 +1640,15 @@ export class VizierServiceClient { { get: '/ui/{name=projects/*/locations/*/models/*/evaluations/*}/operations', }, + { + get: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*}/operations', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimes/*}/operations', + }, + { + get: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*}/operations', + }, {get: '/ui/{name=projects/*/locations/*/studies/*}/operations'}, { get: '/ui/{name=projects/*/locations/*/studies/*/trials/*}/operations', @@ -1709,6 +1778,15 @@ export class VizierServiceClient { { get: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*}/operations', }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*}/operations', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*}/operations', + }, + { + get: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*}/operations', + }, { get: '/v1beta1/{name=projects/*/locations/*/persistentResources/*}/operations', }, @@ -1862,6 +1940,15 @@ export class VizierServiceClient { { post: '/ui/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:wait', }, + { + post: '/ui/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:wait', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:wait', + }, + { + post: '/ui/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:wait', + }, { post: '/ui/{name=projects/*/locations/*/studies/*/operations/*}:wait', }, @@ -2001,6 +2088,15 @@ export class VizierServiceClient { { post: '/v1beta1/{name=projects/*/locations/*/models/*/evaluations/*/operations/*}:wait', }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookExecutionJobs/*/operations/*}:wait', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimes/*/operations/*}:wait', + }, + { + post: '/v1beta1/{name=projects/*/locations/*/notebookRuntimeTemplates/*/operations/*}:wait', + }, { post: '/v1beta1/{name=projects/*/locations/*/persistentResources/*/operations/*}:wait', },