com.google.cloud.notebooks.v2.NetworkInterfaceOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-notebooks-v2 Show documentation
Show all versions of proto-google-cloud-notebooks-v2 Show documentation
Proto library for google-cloud-notebooks
/*
* Copyright 2023 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/notebooks/v2/gce_setup.proto
package com.google.cloud.notebooks.v2;
public interface NetworkInterfaceOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.notebooks.v2.NetworkInterface)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Optional. The name of the VPC that this VM instance is in.
* Format:
* `projects/{project_id}/global/networks/{network_id}`
*
*
* string network = 1 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The network.
*/
java.lang.String getNetwork();
/**
*
*
*
* Optional. The name of the VPC that this VM instance is in.
* Format:
* `projects/{project_id}/global/networks/{network_id}`
*
*
* string network = 1 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The bytes for network.
*/
com.google.protobuf.ByteString getNetworkBytes();
/**
*
*
*
* Optional. The name of the subnet that this VM instance is in.
* Format:
* `projects/{project_id}/regions/{region}/subnetworks/{subnetwork_id}`
*
*
* string subnet = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The subnet.
*/
java.lang.String getSubnet();
/**
*
*
*
* Optional. The name of the subnet that this VM instance is in.
* Format:
* `projects/{project_id}/regions/{region}/subnetworks/{subnetwork_id}`
*
*
* string subnet = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The bytes for subnet.
*/
com.google.protobuf.ByteString getSubnetBytes();
/**
*
*
*
* Optional. The type of vNIC to be used on this interface. This may be gVNIC
* or VirtioNet.
*
*
*
* .google.cloud.notebooks.v2.NetworkInterface.NicType nic_type = 3 [(.google.api.field_behavior) = OPTIONAL];
*
*
* @return The enum numeric value on the wire for nicType.
*/
int getNicTypeValue();
/**
*
*
*
* Optional. The type of vNIC to be used on this interface. This may be gVNIC
* or VirtioNet.
*
*
*
* .google.cloud.notebooks.v2.NetworkInterface.NicType nic_type = 3 [(.google.api.field_behavior) = OPTIONAL];
*
*
* @return The nicType.
*/
com.google.cloud.notebooks.v2.NetworkInterface.NicType getNicType();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy