docs: updated documentation for message NetworkInterface

chore: published new fields in service YAML

PiperOrigin-RevId: 496547510
pull/763/head
Google APIs 2 years ago committed by Copybara-Service
parent 0871da7f91
commit de57a4d09e
  1. 7
      google/cloud/batch/v1/batch_v1.yaml
  2. 14
      google/cloud/batch/v1/job.proto

@ -107,3 +107,10 @@ authentication:
publishing:
organization: CLIENT_LIBRARY_ORGANIZATION_UNSPECIFIED
new_issue_uri: ''
documentation_uri: ''
api_short_name: ''
github_label: ''
doc_tag_prefix: ''
codeowner_github_teams:
library_settings:

@ -337,10 +337,20 @@ message AllocationPolicy {
// A network interface.
message NetworkInterface {
// The URL of the network resource.
// The URL of an existing network resource.
// You can specify the network as a full or partial URL.
// For example, the following are all valid URLs:
// https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}
// projects/{project}/global/networks/{network}
// global/networks/{network}
string network = 1;
// The URL of the Subnetwork resource.
// The URL of an existing subnetwork resource in the network.
// You can specify the subnetwork as a full or partial URL.
// For example, the following are all valid URLs:
// https://www.googleapis.com/compute/v1/projects/{project}/regions/{region}/subnetworks/{subnetwork}
// projects/{project}/regions/{region}/subnetworks/{subnetwork}
// regions/{region}/subnetworks/{subnetwork}
string subnetwork = 2;
// Default is false (with an external IP address). Required if

Loading…
Cancel
Save