diff --git a/Compute/metadata/V1/Compute.php b/Compute/metadata/V1/Compute.php
index 27fc3398aa8e..6eb61b2d671d 100644
Binary files a/Compute/metadata/V1/Compute.php and b/Compute/metadata/V1/Compute.php differ
diff --git a/Compute/samples/V1/AdviceClient/calendar_mode.php b/Compute/samples/V1/AdviceClient/calendar_mode.php
new file mode 100644
index 000000000000..524d2d74621e
--- /dev/null
+++ b/Compute/samples/V1/AdviceClient/calendar_mode.php
@@ -0,0 +1,79 @@
+setCalendarModeAdviceRequestResource($calendarModeAdviceRequestResource)
+ ->setProject($project)
+ ->setRegion($region);
+
+ // Call the API and handle any network failures.
+ try {
+ /** @var CalendarModeAdviceResponse $response */
+ $response = $adviceClient->calendarMode($request);
+ printf('Response data: %s' . PHP_EOL, $response->serializeToJsonString());
+ } catch (ApiException $ex) {
+ printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
+ }
+}
+
+/**
+ * Helper to execute the sample.
+ *
+ * This sample has been automatically generated and should be regarded as a code
+ * template only. It will require modifications to work:
+ * - It may require correct/in-range values for request initialization.
+ * - It may require specifying regional endpoints when creating the service client,
+ * please see the apiEndpoint client configuration option for more details.
+ */
+function callSample(): void
+{
+ $project = '[PROJECT]';
+ $region = '[REGION]';
+
+ calendar_mode_sample($project, $region);
+}
+// [END compute_v1_generated_Advice_CalendarMode_sync]
diff --git a/Compute/src/V1/AcceleratorTopologiesInfoAcceleratorTopologyInfoInfoPerTopologyState/State.php b/Compute/src/V1/AcceleratorTopologiesInfoAcceleratorTopologyInfoInfoPerTopologyState/State.php
index 0ec28ba6be6b..5e466f0cd3ff 100644
--- a/Compute/src/V1/AcceleratorTopologiesInfoAcceleratorTopologyInfoInfoPerTopologyState/State.php
+++ b/Compute/src/V1/AcceleratorTopologiesInfoAcceleratorTopologyInfoInfoPerTopologyState/State.php
@@ -26,7 +26,15 @@ class State
*/
const AVAILABLE = 442079913;
/**
- * The accelerator topology is running.
+ * The accelerator topology is degraded. The underlying capacity is not in a
+ * healthy state and is not available.
+ *
+ * Generated from protobuf enum DEGRADED = 396890926;
+ */
+ const DEGRADED = 396890926;
+ /**
+ * The accelerator topology is running. If there are both running and
+ * degraded hosts within a topology, DEGRADED state will be returned.
*
* Generated from protobuf enum RUNNING = 121282975;
*/
@@ -38,7 +46,7 @@ class State
*/
const TOPOLOGY_STATE_UNSPECIFIED = 188327545;
/**
- * The accelerator topology is unhealthy.
+ * This value has been deprecated and is no longer used.
*
* Generated from protobuf enum UNHEALTHY = 462118084;
*/
@@ -47,6 +55,7 @@ class State
private static $valueToName = [
self::UNDEFINED_STATE => 'UNDEFINED_STATE',
self::AVAILABLE => 'AVAILABLE',
+ self::DEGRADED => 'DEGRADED',
self::RUNNING => 'RUNNING',
self::TOPOLOGY_STATE_UNSPECIFIED => 'TOPOLOGY_STATE_UNSPECIFIED',
self::UNHEALTHY => 'UNHEALTHY',
diff --git a/Compute/src/V1/AcceleratorType.php b/Compute/src/V1/AcceleratorType.php
index 3c42f4d65391..643b1c8a2ceb 100644
--- a/Compute/src/V1/AcceleratorType.php
+++ b/Compute/src/V1/AcceleratorType.php
@@ -44,7 +44,7 @@ class AcceleratorType extends \Google\Protobuf\Internal\Message
*/
protected $id = null;
/**
- * [Output Only] The type of the resource. Alwayscompute#acceleratorType for accelerator types.
+ * Output only. [Output Only] The type of the resource. Alwayscompute#acceleratorType for accelerator types.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -62,7 +62,7 @@ class AcceleratorType extends \Google\Protobuf\Internal\Message
*/
protected $name = null;
/**
- * [Output Only] Server-defined, fully qualified URL for this resource.
+ * Output only. [Output Only] Server-defined, fully qualified URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -93,13 +93,13 @@ class AcceleratorType extends \Google\Protobuf\Internal\Message
* [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type string $kind
- * [Output Only] The type of the resource. Alwayscompute#acceleratorType for accelerator types.
+ * Output only. [Output Only] The type of the resource. Alwayscompute#acceleratorType for accelerator types.
* @type int $maximum_cards_per_instance
* [Output Only] Maximum number of accelerator cards allowed per instance.
* @type string $name
* [Output Only] Name of the resource.
* @type string $self_link
- * [Output Only] Server-defined, fully qualified URL for this resource.
+ * Output only. [Output Only] Server-defined, fully qualified URL for this resource.
* @type string $zone
* [Output Only] The name of the zone where the accelerator type resides,
* such as us-central1-a.
@@ -259,7 +259,7 @@ public function setId($var)
}
/**
- * [Output Only] The type of the resource. Alwayscompute#acceleratorType for accelerator types.
+ * Output only. [Output Only] The type of the resource. Alwayscompute#acceleratorType for accelerator types.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -280,7 +280,7 @@ public function clearKind()
}
/**
- * [Output Only] The type of the resource. Alwayscompute#acceleratorType for accelerator types.
+ * Output only. [Output Only] The type of the resource. Alwayscompute#acceleratorType for accelerator types.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -367,7 +367,7 @@ public function setName($var)
}
/**
- * [Output Only] Server-defined, fully qualified URL for this resource.
+ * Output only. [Output Only] Server-defined, fully qualified URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -388,7 +388,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined, fully qualified URL for this resource.
+ * Output only. [Output Only] Server-defined, fully qualified URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/AcceleratorTypeAggregatedList.php b/Compute/src/V1/AcceleratorTypeAggregatedList.php
index 100071cb185e..b893ed511fef 100644
--- a/Compute/src/V1/AcceleratorTypeAggregatedList.php
+++ b/Compute/src/V1/AcceleratorTypeAggregatedList.php
@@ -27,7 +27,7 @@ class AcceleratorTypeAggregatedList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Alwayscompute#acceleratorTypeAggregatedList for aggregated lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#acceleratorTypeAggregatedList for aggregated lists of
* accelerator types.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -44,13 +44,13 @@ class AcceleratorTypeAggregatedList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
@@ -73,7 +73,7 @@ class AcceleratorTypeAggregatedList extends \Google\Protobuf\Internal\Message
* @type array|\Google\Protobuf\Internal\MapField $items
* A list of AcceleratorTypesScopedList resources.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#acceleratorTypeAggregatedList for aggregated lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#acceleratorTypeAggregatedList for aggregated lists of
* accelerator types.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -82,9 +82,9 @@ class AcceleratorTypeAggregatedList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -157,7 +157,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#acceleratorTypeAggregatedList for aggregated lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#acceleratorTypeAggregatedList for aggregated lists of
* accelerator types.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -179,7 +179,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#acceleratorTypeAggregatedList for aggregated lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#acceleratorTypeAggregatedList for aggregated lists of
* accelerator types.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -239,7 +239,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -260,7 +260,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -275,7 +275,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -286,7 +286,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/AcceleratorTypeList.php b/Compute/src/V1/AcceleratorTypeList.php
index 81d69b40d1f0..d28936125aad 100644
--- a/Compute/src/V1/AcceleratorTypeList.php
+++ b/Compute/src/V1/AcceleratorTypeList.php
@@ -28,7 +28,7 @@ class AcceleratorTypeList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Alwayscompute#acceleratorTypeList for lists of accelerator types.
+ * Output only. [Output Only] Type of resource. Alwayscompute#acceleratorTypeList for lists of accelerator types.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -44,7 +44,7 @@ class AcceleratorTypeList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -67,7 +67,7 @@ class AcceleratorTypeList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\AcceleratorType>|\Google\Protobuf\Internal\RepeatedField $items
* A list of AcceleratorType resources.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#acceleratorTypeList for lists of accelerator types.
+ * Output only. [Output Only] Type of resource. Alwayscompute#acceleratorTypeList for lists of accelerator types.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -75,7 +75,7 @@ class AcceleratorTypeList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -148,7 +148,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#acceleratorTypeList for lists of accelerator types.
+ * Output only. [Output Only] Type of resource. Alwayscompute#acceleratorTypeList for lists of accelerator types.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -169,7 +169,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#acceleratorTypeList for lists of accelerator types.
+ * Output only. [Output Only] Type of resource. Alwayscompute#acceleratorTypeList for lists of accelerator types.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -228,7 +228,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -249,7 +249,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/AccessConfig.php b/Compute/src/V1/AccessConfig.php
index 828aa073ba2d..1f80933e815b 100644
--- a/Compute/src/V1/AccessConfig.php
+++ b/Compute/src/V1/AccessConfig.php
@@ -35,7 +35,7 @@ class AccessConfig extends \Google\Protobuf\Internal\Message
*/
protected $external_ipv6_prefix_length = null;
/**
- * [Output Only] Type of the resource. Alwayscompute#accessConfig for access configs.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#accessConfig for access configs.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -123,7 +123,7 @@ class AccessConfig extends \Google\Protobuf\Internal\Message
* Applies to ipv6AccessConfigs only. The prefix length of the
* external IPv6 range.
* @type string $kind
- * [Output Only] Type of the resource. Alwayscompute#accessConfig for access configs.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#accessConfig for access configs.
* @type string $name
* The name of this access configuration. In accessConfigs
* (IPv4), the default and recommended name is External NAT, but
@@ -253,7 +253,7 @@ public function setExternalIpv6PrefixLength($var)
}
/**
- * [Output Only] Type of the resource. Alwayscompute#accessConfig for access configs.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#accessConfig for access configs.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -274,7 +274,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Alwayscompute#accessConfig for access configs.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#accessConfig for access configs.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
diff --git a/Compute/src/V1/Address.php b/Compute/src/V1/Address.php
index 1db363e3e57c..18baea1f3566 100644
--- a/Compute/src/V1/Address.php
+++ b/Compute/src/V1/Address.php
@@ -36,7 +36,7 @@ class Address extends \Google\Protobuf\Internal\Message
*/
protected $address_type = null;
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -50,12 +50,28 @@ class Address extends \Google\Protobuf\Internal\Message
*/
protected $description = null;
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
*/
protected $id = null;
+ /**
+ * Reference to the source of external IPv4 addresses,
+ * like a PublicDelegatedPrefix (PDP) for BYOIP.
+ * The PDP must support enhanced IPv4 allocations.
+ * Use one of the following formats to specify a PDP when reserving an
+ * external IPv4 address using BYOIP.
+ * -
+ * Full resource URL, as inhttps://www.googleapis.com/compute/v1/projects/projectId/regions/region/publicDelegatedPrefixes/pdp-name
+ * -
+ * Partial URL, as in
+ * - projects/projectId/regions/region/publicDelegatedPrefixes/pdp-name
+ * - regions/region/publicDelegatedPrefixes/pdp-name
+ *
+ * Generated from protobuf field optional string ip_collection = 176818358;
+ */
+ protected $ip_collection = null;
/**
* The IP version that will be used by this address. Valid options areIPV4 or IPV6.
* Check the IpVersion enum for the list of possible values.
@@ -73,7 +89,7 @@ class Address extends \Google\Protobuf\Internal\Message
*/
protected $ipv6_endpoint_type = null;
/**
- * [Output Only] Type of the resource. Always compute#address for
+ * Output only. [Output Only] Type of the resource. Always compute#address for
* addresses.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -163,7 +179,7 @@ class Address extends \Google\Protobuf\Internal\Message
*/
protected $purpose = null;
/**
- * [Output Only] The URL of the region where a regional address resides.
+ * Output only. [Output Only] The URL of the region where a regional address resides.
* For regional addresses, you must specify the region as a path parameter in
* the HTTP request URL. *This field is not applicable to global
* addresses.*
@@ -178,7 +194,7 @@ class Address extends \Google\Protobuf\Internal\Message
*/
protected $self_link = null;
/**
- * [Output Only] The status of the address, which can be one ofRESERVING, RESERVED, or IN_USE.
+ * Output only. [Output Only] The status of the address, which can be one ofRESERVING, RESERVED, or IN_USE.
* An address that is RESERVING is currently in the process of
* being reserved. A RESERVED address is currently reserved and
* available to use. An IN_USE address is currently being used
@@ -215,14 +231,26 @@ class Address extends \Google\Protobuf\Internal\Message
* The type of address to reserve, either INTERNAL orEXTERNAL. If unspecified, defaults to EXTERNAL.
* Check the AddressType enum for the list of possible values.
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $description
* An optional description of this resource. Provide this field when you
* create the resource.
* @type int|string $id
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
+ * @type string $ip_collection
+ * Reference to the source of external IPv4 addresses,
+ * like a PublicDelegatedPrefix (PDP) for BYOIP.
+ * The PDP must support enhanced IPv4 allocations.
+ * Use one of the following formats to specify a PDP when reserving an
+ * external IPv4 address using BYOIP.
+ * -
+ * Full resource URL, as inhttps://www.googleapis.com/compute/v1/projects/projectId/regions/region/publicDelegatedPrefixes/pdp-name
+ * -
+ * Partial URL, as in
+ * - projects/projectId/regions/region/publicDelegatedPrefixes/pdp-name
+ * - regions/region/publicDelegatedPrefixes/pdp-name
* @type string $ip_version
* The IP version that will be used by this address. Valid options areIPV4 or IPV6.
* Check the IpVersion enum for the list of possible values.
@@ -232,7 +260,7 @@ class Address extends \Google\Protobuf\Internal\Message
* this address can be used after the external IPv6 address reservation.
* Check the Ipv6EndpointType enum for the list of possible values.
* @type string $kind
- * [Output Only] Type of the resource. Always compute#address for
+ * Output only. [Output Only] Type of the resource. Always compute#address for
* addresses.
* @type string $label_fingerprint
* A fingerprint for the labels being applied to this Address, which is
@@ -290,14 +318,14 @@ class Address extends \Google\Protobuf\Internal\Message
* can use this purpose.
* Check the Purpose enum for the list of possible values.
* @type string $region
- * [Output Only] The URL of the region where a regional address resides.
+ * Output only. [Output Only] The URL of the region where a regional address resides.
* For regional addresses, you must specify the region as a path parameter in
* the HTTP request URL. *This field is not applicable to global
* addresses.*
* @type string $self_link
* [Output Only] Server-defined URL for the resource.
* @type string $status
- * [Output Only] The status of the address, which can be one ofRESERVING, RESERVED, or IN_USE.
+ * Output only. [Output Only] The status of the address, which can be one ofRESERVING, RESERVED, or IN_USE.
* An address that is RESERVING is currently in the process of
* being reserved. A RESERVED address is currently reserved and
* available to use. An IN_USE address is currently being used
@@ -391,7 +419,7 @@ public function setAddressType($var)
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -413,7 +441,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -467,7 +495,7 @@ public function setDescription($var)
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -489,7 +517,7 @@ public function clearId()
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -504,6 +532,62 @@ public function setId($var)
return $this;
}
+ /**
+ * Reference to the source of external IPv4 addresses,
+ * like a PublicDelegatedPrefix (PDP) for BYOIP.
+ * The PDP must support enhanced IPv4 allocations.
+ * Use one of the following formats to specify a PDP when reserving an
+ * external IPv4 address using BYOIP.
+ * -
+ * Full resource URL, as inhttps://www.googleapis.com/compute/v1/projects/projectId/regions/region/publicDelegatedPrefixes/pdp-name
+ * -
+ * Partial URL, as in
+ * - projects/projectId/regions/region/publicDelegatedPrefixes/pdp-name
+ * - regions/region/publicDelegatedPrefixes/pdp-name
+ *
+ * Generated from protobuf field optional string ip_collection = 176818358;
+ * @return string
+ */
+ public function getIpCollection()
+ {
+ return isset($this->ip_collection) ? $this->ip_collection : '';
+ }
+
+ public function hasIpCollection()
+ {
+ return isset($this->ip_collection);
+ }
+
+ public function clearIpCollection()
+ {
+ unset($this->ip_collection);
+ }
+
+ /**
+ * Reference to the source of external IPv4 addresses,
+ * like a PublicDelegatedPrefix (PDP) for BYOIP.
+ * The PDP must support enhanced IPv4 allocations.
+ * Use one of the following formats to specify a PDP when reserving an
+ * external IPv4 address using BYOIP.
+ * -
+ * Full resource URL, as inhttps://www.googleapis.com/compute/v1/projects/projectId/regions/region/publicDelegatedPrefixes/pdp-name
+ * -
+ * Partial URL, as in
+ * - projects/projectId/regions/region/publicDelegatedPrefixes/pdp-name
+ * - regions/region/publicDelegatedPrefixes/pdp-name
+ *
+ * Generated from protobuf field optional string ip_collection = 176818358;
+ * @param string $var
+ * @return $this
+ */
+ public function setIpCollection($var)
+ {
+ GPBUtil::checkString($var, True);
+ $this->ip_collection = $var;
+
+ return $this;
+ }
+
/**
* The IP version that will be used by this address. Valid options areIPV4 or IPV6.
* Check the IpVersion enum for the list of possible values.
@@ -585,7 +669,7 @@ public function setIpv6EndpointType($var)
}
/**
- * [Output Only] Type of the resource. Always compute#address for
+ * Output only. [Output Only] Type of the resource. Always compute#address for
* addresses.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -607,7 +691,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Always compute#address for
+ * Output only. [Output Only] Type of the resource. Always compute#address for
* addresses.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -947,7 +1031,7 @@ public function setPurpose($var)
}
/**
- * [Output Only] The URL of the region where a regional address resides.
+ * Output only. [Output Only] The URL of the region where a regional address resides.
* For regional addresses, you must specify the region as a path parameter in
* the HTTP request URL. *This field is not applicable to global
* addresses.*
@@ -971,7 +1055,7 @@ public function clearRegion()
}
/**
- * [Output Only] The URL of the region where a regional address resides.
+ * Output only. [Output Only] The URL of the region where a regional address resides.
* For regional addresses, you must specify the region as a path parameter in
* the HTTP request URL. *This field is not applicable to global
* addresses.*
@@ -1025,7 +1109,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] The status of the address, which can be one ofRESERVING, RESERVED, or IN_USE.
+ * Output only. [Output Only] The status of the address, which can be one ofRESERVING, RESERVED, or IN_USE.
* An address that is RESERVING is currently in the process of
* being reserved. A RESERVED address is currently reserved and
* available to use. An IN_USE address is currently being used
@@ -1051,7 +1135,7 @@ public function clearStatus()
}
/**
- * [Output Only] The status of the address, which can be one ofRESERVING, RESERVED, or IN_USE.
+ * Output only. [Output Only] The status of the address, which can be one ofRESERVING, RESERVED, or IN_USE.
* An address that is RESERVING is currently in the process of
* being reserved. A RESERVED address is currently reserved and
* available to use. An IN_USE address is currently being used
diff --git a/Compute/src/V1/Address/Status.php b/Compute/src/V1/Address/Status.php
index 63b7953dd09c..fcc16773769b 100644
--- a/Compute/src/V1/Address/Status.php
+++ b/Compute/src/V1/Address/Status.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] The status of the address, which can be one ofRESERVING, RESERVED, or IN_USE.
+ * Output only. [Output Only] The status of the address, which can be one ofRESERVING, RESERVED, or IN_USE.
* An address that is RESERVING is currently in the process of
* being reserved. A RESERVED address is currently reserved and
* available to use. An IN_USE address is currently being used
diff --git a/Compute/src/V1/AddressAggregatedList.php b/Compute/src/V1/AddressAggregatedList.php
index eb094fd2c861..b172a214bc8c 100644
--- a/Compute/src/V1/AddressAggregatedList.php
+++ b/Compute/src/V1/AddressAggregatedList.php
@@ -27,7 +27,7 @@ class AddressAggregatedList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Alwayscompute#addressAggregatedList for aggregated lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#addressAggregatedList for aggregated lists of
* addresses.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -44,13 +44,13 @@ class AddressAggregatedList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
@@ -73,7 +73,7 @@ class AddressAggregatedList extends \Google\Protobuf\Internal\Message
* @type array|\Google\Protobuf\Internal\MapField $items
* A list of AddressesScopedList resources.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#addressAggregatedList for aggregated lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#addressAggregatedList for aggregated lists of
* addresses.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -82,9 +82,9 @@ class AddressAggregatedList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -157,7 +157,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#addressAggregatedList for aggregated lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#addressAggregatedList for aggregated lists of
* addresses.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -179,7 +179,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#addressAggregatedList for aggregated lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#addressAggregatedList for aggregated lists of
* addresses.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -239,7 +239,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -260,7 +260,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -275,7 +275,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -286,7 +286,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/AddressList.php b/Compute/src/V1/AddressList.php
index eec11b6969e1..d514742356bd 100644
--- a/Compute/src/V1/AddressList.php
+++ b/Compute/src/V1/AddressList.php
@@ -28,7 +28,7 @@ class AddressList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Always compute#addressList for
+ * Output only. [Output Only] Type of resource. Always compute#addressList for
* lists of addresses.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -45,7 +45,7 @@ class AddressList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -68,7 +68,7 @@ class AddressList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\Address>|\Google\Protobuf\Internal\RepeatedField $items
* A list of Address resources.
* @type string $kind
- * [Output Only] Type of resource. Always compute#addressList for
+ * Output only. [Output Only] Type of resource. Always compute#addressList for
* lists of addresses.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -77,7 +77,7 @@ class AddressList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -150,7 +150,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Always compute#addressList for
+ * Output only. [Output Only] Type of resource. Always compute#addressList for
* lists of addresses.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -172,7 +172,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Always compute#addressList for
+ * Output only. [Output Only] Type of resource. Always compute#addressList for
* lists of addresses.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -232,7 +232,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -253,7 +253,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/AllocationAggregateReservation.php b/Compute/src/V1/AllocationAggregateReservation.php
index 98fc07f16269..adc0ec138247 100644
--- a/Compute/src/V1/AllocationAggregateReservation.php
+++ b/Compute/src/V1/AllocationAggregateReservation.php
@@ -18,7 +18,7 @@
class AllocationAggregateReservation extends \Google\Protobuf\Internal\Message
{
/**
- * [Output only] List of resources currently in use.
+ * Output only. [Output only] List of resources currently in use.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.AllocationAggregateReservationReservedResourceInfo in_use_resources = 409009107;
*/
@@ -52,7 +52,7 @@ class AllocationAggregateReservation extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type array<\Google\Cloud\Compute\V1\AllocationAggregateReservationReservedResourceInfo>|\Google\Protobuf\Internal\RepeatedField $in_use_resources
- * [Output only] List of resources currently in use.
+ * Output only. [Output only] List of resources currently in use.
* @type array<\Google\Cloud\Compute\V1\AllocationAggregateReservationReservedResourceInfo>|\Google\Protobuf\Internal\RepeatedField $reserved_resources
* List of reserved resources (CPUs, memory, accelerators).
* @type string $vm_family
@@ -70,7 +70,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output only] List of resources currently in use.
+ * Output only. [Output only] List of resources currently in use.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.AllocationAggregateReservationReservedResourceInfo in_use_resources = 409009107;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -81,7 +81,7 @@ public function getInUseResources()
}
/**
- * [Output only] List of resources currently in use.
+ * Output only. [Output only] List of resources currently in use.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.AllocationAggregateReservationReservedResourceInfo in_use_resources = 409009107;
* @param array<\Google\Cloud\Compute\V1\AllocationAggregateReservationReservedResourceInfo>|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/AllocationSpecificSKUReservation.php b/Compute/src/V1/AllocationSpecificSKUReservation.php
index 78539b26ec12..7f98dd32b81c 100644
--- a/Compute/src/V1/AllocationSpecificSKUReservation.php
+++ b/Compute/src/V1/AllocationSpecificSKUReservation.php
@@ -17,7 +17,7 @@
class AllocationSpecificSKUReservation extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Indicates how many instances are actually usable currently.
+ * Output only. [Output Only] Indicates how many instances are actually usable currently.
*
* Generated from protobuf field optional int64 assured_count = 281197645;
*/
@@ -29,7 +29,7 @@ class AllocationSpecificSKUReservation extends \Google\Protobuf\Internal\Message
*/
protected $count = null;
/**
- * [Output Only] Indicates how many instances are in use.
+ * Output only. [Output Only] Indicates how many instances are in use.
*
* Generated from protobuf field optional int64 in_use_count = 493458877;
*/
@@ -60,11 +60,11 @@ class AllocationSpecificSKUReservation extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type int|string $assured_count
- * [Output Only] Indicates how many instances are actually usable currently.
+ * Output only. [Output Only] Indicates how many instances are actually usable currently.
* @type int|string $count
* Specifies the number of resources that are allocated.
* @type int|string $in_use_count
- * [Output Only] Indicates how many instances are in use.
+ * Output only. [Output Only] Indicates how many instances are in use.
* @type \Google\Cloud\Compute\V1\AllocationSpecificSKUAllocationReservedInstanceProperties $instance_properties
* The instance properties for the reservation.
* @type string $source_instance_template
@@ -83,7 +83,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Indicates how many instances are actually usable currently.
+ * Output only. [Output Only] Indicates how many instances are actually usable currently.
*
* Generated from protobuf field optional int64 assured_count = 281197645;
* @return int|string
@@ -104,7 +104,7 @@ public function clearAssuredCount()
}
/**
- * [Output Only] Indicates how many instances are actually usable currently.
+ * Output only. [Output Only] Indicates how many instances are actually usable currently.
*
* Generated from protobuf field optional int64 assured_count = 281197645;
* @param int|string $var
@@ -155,7 +155,7 @@ public function setCount($var)
}
/**
- * [Output Only] Indicates how many instances are in use.
+ * Output only. [Output Only] Indicates how many instances are in use.
*
* Generated from protobuf field optional int64 in_use_count = 493458877;
* @return int|string
@@ -176,7 +176,7 @@ public function clearInUseCount()
}
/**
- * [Output Only] Indicates how many instances are in use.
+ * Output only. [Output Only] Indicates how many instances are in use.
*
* Generated from protobuf field optional int64 in_use_count = 493458877;
* @param int|string $var
diff --git a/Compute/src/V1/AttachedDisk.php b/Compute/src/V1/AttachedDisk.php
index 9f3686a0eb02..97123e14e46c 100644
--- a/Compute/src/V1/AttachedDisk.php
+++ b/Compute/src/V1/AttachedDisk.php
@@ -16,7 +16,7 @@
class AttachedDisk extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] The architecture of the attached disk. Valid values are ARM64
+ * Output only. [Output Only] The architecture of the attached disk. Valid values are ARM64
* or X86_64.
* Check the Architecture enum for the list of possible values.
*
@@ -97,7 +97,7 @@ class AttachedDisk extends \Google\Protobuf\Internal\Message
*/
private $guest_os_features;
/**
- * [Output Only] A zero-based index to this disk, where 0 is reserved for the
+ * Output only. [Output Only] A zero-based index to this disk, where 0 is reserved for the
* boot disk. If you have many disks attached to an instance, each
* disk would have a unique index number.
*
@@ -127,13 +127,13 @@ class AttachedDisk extends \Google\Protobuf\Internal\Message
*/
protected $interface = null;
/**
- * [Output Only] Type of the resource. Alwayscompute#attachedDisk for attached disks.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#attachedDisk for attached disks.
*
* Generated from protobuf field optional string kind = 3292052;
*/
protected $kind = null;
/**
- * [Output Only] Any valid publicly visible licenses.
+ * Output only. [Output Only] Any valid publicly visible licenses.
*
* Generated from protobuf field repeated string licenses = 337642578;
*/
@@ -147,7 +147,7 @@ class AttachedDisk extends \Google\Protobuf\Internal\Message
*/
protected $mode = null;
/**
- * For LocalSSD disks on VM Instances in STOPPED or SUSPENDED state, this
+ * Output only. For LocalSSD disks on VM Instances in STOPPED or SUSPENDED state, this
* field is set to PRESERVED if the LocalSSD data has been saved
* to a persistent location by customer request. (see the
* discard_local_ssd option on Stop/Suspend).
@@ -158,7 +158,7 @@ class AttachedDisk extends \Google\Protobuf\Internal\Message
*/
protected $saved_state = null;
/**
- * [Output Only] shielded vm initial state stored on disk
+ * Output only. [Output Only] shielded vm initial state stored on disk
*
* Generated from protobuf field optional .google.cloud.compute.v1.InitialStateConfig shielded_instance_initial_state = 192356867;
*/
@@ -190,7 +190,7 @@ class AttachedDisk extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $architecture
- * [Output Only] The architecture of the attached disk. Valid values are ARM64
+ * Output only. [Output Only] The architecture of the attached disk. Valid values are ARM64
* or X86_64.
* Check the Architecture enum for the list of possible values.
* @type bool $auto_delete
@@ -239,7 +239,7 @@ class AttachedDisk extends \Google\Protobuf\Internal\Message
* Enabling guest operating system features to see a list of available
* options.
* @type int $index
- * [Output Only] A zero-based index to this disk, where 0 is reserved for the
+ * Output only. [Output Only] A zero-based index to this disk, where 0 is reserved for the
* boot disk. If you have many disks attached to an instance, each
* disk would have a unique index number.
* @type \Google\Cloud\Compute\V1\AttachedDiskInitializeParams $initialize_params
@@ -257,22 +257,22 @@ class AttachedDisk extends \Google\Protobuf\Internal\Message
* persistent disks.
* Check the Interface enum for the list of possible values.
* @type string $kind
- * [Output Only] Type of the resource. Alwayscompute#attachedDisk for attached disks.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#attachedDisk for attached disks.
* @type array|\Google\Protobuf\Internal\RepeatedField $licenses
- * [Output Only] Any valid publicly visible licenses.
+ * Output only. [Output Only] Any valid publicly visible licenses.
* @type string $mode
* The mode in which to attach this disk, either READ_WRITE orREAD_ONLY. If not specified, the default is to attach the disk
* in READ_WRITE mode.
* Check the Mode enum for the list of possible values.
* @type string $saved_state
- * For LocalSSD disks on VM Instances in STOPPED or SUSPENDED state, this
+ * Output only. For LocalSSD disks on VM Instances in STOPPED or SUSPENDED state, this
* field is set to PRESERVED if the LocalSSD data has been saved
* to a persistent location by customer request. (see the
* discard_local_ssd option on Stop/Suspend).
* Read-only in the api.
* Check the SavedState enum for the list of possible values.
* @type \Google\Cloud\Compute\V1\InitialStateConfig $shielded_instance_initial_state
- * [Output Only] shielded vm initial state stored on disk
+ * Output only. [Output Only] shielded vm initial state stored on disk
* @type string $source
* Specifies a valid partial or full URL to an existing Persistent Disk
* resource. When creating a new instance boot disk, one ofinitializeParams.sourceImage orinitializeParams.sourceSnapshot or disks.source
@@ -292,7 +292,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] The architecture of the attached disk. Valid values are ARM64
+ * Output only. [Output Only] The architecture of the attached disk. Valid values are ARM64
* or X86_64.
* Check the Architecture enum for the list of possible values.
*
@@ -315,7 +315,7 @@ public function clearArchitecture()
}
/**
- * [Output Only] The architecture of the attached disk. Valid values are ARM64
+ * Output only. [Output Only] The architecture of the attached disk. Valid values are ARM64
* or X86_64.
* Check the Architecture enum for the list of possible values.
*
@@ -636,7 +636,7 @@ public function setGuestOsFeatures($var)
}
/**
- * [Output Only] A zero-based index to this disk, where 0 is reserved for the
+ * Output only. [Output Only] A zero-based index to this disk, where 0 is reserved for the
* boot disk. If you have many disks attached to an instance, each
* disk would have a unique index number.
*
@@ -659,7 +659,7 @@ public function clearIndex()
}
/**
- * [Output Only] A zero-based index to this disk, where 0 is reserved for the
+ * Output only. [Output Only] A zero-based index to this disk, where 0 is reserved for the
* boot disk. If you have many disks attached to an instance, each
* disk would have a unique index number.
*
@@ -768,7 +768,7 @@ public function setInterface($var)
}
/**
- * [Output Only] Type of the resource. Alwayscompute#attachedDisk for attached disks.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#attachedDisk for attached disks.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -789,7 +789,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Alwayscompute#attachedDisk for attached disks.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#attachedDisk for attached disks.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -804,7 +804,7 @@ public function setKind($var)
}
/**
- * [Output Only] Any valid publicly visible licenses.
+ * Output only. [Output Only] Any valid publicly visible licenses.
*
* Generated from protobuf field repeated string licenses = 337642578;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -815,7 +815,7 @@ public function getLicenses()
}
/**
- * [Output Only] Any valid publicly visible licenses.
+ * Output only. [Output Only] Any valid publicly visible licenses.
*
* Generated from protobuf field repeated string licenses = 337642578;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
@@ -870,7 +870,7 @@ public function setMode($var)
}
/**
- * For LocalSSD disks on VM Instances in STOPPED or SUSPENDED state, this
+ * Output only. For LocalSSD disks on VM Instances in STOPPED or SUSPENDED state, this
* field is set to PRESERVED if the LocalSSD data has been saved
* to a persistent location by customer request. (see the
* discard_local_ssd option on Stop/Suspend).
@@ -896,7 +896,7 @@ public function clearSavedState()
}
/**
- * For LocalSSD disks on VM Instances in STOPPED or SUSPENDED state, this
+ * Output only. For LocalSSD disks on VM Instances in STOPPED or SUSPENDED state, this
* field is set to PRESERVED if the LocalSSD data has been saved
* to a persistent location by customer request. (see the
* discard_local_ssd option on Stop/Suspend).
@@ -916,7 +916,7 @@ public function setSavedState($var)
}
/**
- * [Output Only] shielded vm initial state stored on disk
+ * Output only. [Output Only] shielded vm initial state stored on disk
*
* Generated from protobuf field optional .google.cloud.compute.v1.InitialStateConfig shielded_instance_initial_state = 192356867;
* @return \Google\Cloud\Compute\V1\InitialStateConfig|null
@@ -937,7 +937,7 @@ public function clearShieldedInstanceInitialState()
}
/**
- * [Output Only] shielded vm initial state stored on disk
+ * Output only. [Output Only] shielded vm initial state stored on disk
*
* Generated from protobuf field optional .google.cloud.compute.v1.InitialStateConfig shielded_instance_initial_state = 192356867;
* @param \Google\Cloud\Compute\V1\InitialStateConfig $var
diff --git a/Compute/src/V1/AttachedDisk/Architecture.php b/Compute/src/V1/AttachedDisk/Architecture.php
index fbec46be494b..60711f5ba698 100644
--- a/Compute/src/V1/AttachedDisk/Architecture.php
+++ b/Compute/src/V1/AttachedDisk/Architecture.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] The architecture of the attached disk. Valid values are ARM64
+ * Output only. [Output Only] The architecture of the attached disk. Valid values are ARM64
* or X86_64.
*
* Protobuf type google.cloud.compute.v1.AttachedDisk.Architecture
diff --git a/Compute/src/V1/AttachedDisk/SavedState.php b/Compute/src/V1/AttachedDisk/SavedState.php
index ad9fa61f4c87..4447388df0f0 100644
--- a/Compute/src/V1/AttachedDisk/SavedState.php
+++ b/Compute/src/V1/AttachedDisk/SavedState.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * For LocalSSD disks on VM Instances in STOPPED or SUSPENDED state, this
+ * Output only. For LocalSSD disks on VM Instances in STOPPED or SUSPENDED state, this
* field is set to PRESERVED if the LocalSSD data has been saved
* to a persistent location by customer request. (see the
* discard_local_ssd option on Stop/Suspend).
diff --git a/Compute/src/V1/AttachedDiskInitializeParams.php b/Compute/src/V1/AttachedDiskInitializeParams.php
index dcb8410931ae..9458bb029492 100644
--- a/Compute/src/V1/AttachedDiskInitializeParams.php
+++ b/Compute/src/V1/AttachedDiskInitializeParams.php
@@ -129,9 +129,11 @@ class AttachedDiskInitializeParams extends \Google\Protobuf\Internal\Message
/**
* Resource manager tags to be bound to the disk. Tag keys and values
* have the same definition as resource
- * manager tags. Keys must be in the format `tagKeys/{tag_key_id}`, and
- * values are in the format `tagValues/456`. The field is ignored (both PUT
- * & PATCH) when empty.
+ * manager tags. Keys and values can be either in numeric format,
+ * such as `tagKeys/{tag_key_id}` and `tagValues/456` or in namespaced
+ * format such as `{org_id|project_id}/{tag_key_short_name}` and
+ * `{tag_value_short_name}`. The field is ignored (both PUT & PATCH) when
+ * empty.
*
* Generated from protobuf field map resource_manager_tags = 377671164;
*/
@@ -277,9 +279,11 @@ class AttachedDiskInitializeParams extends \Google\Protobuf\Internal\Message
* @type array|\Google\Protobuf\Internal\MapField $resource_manager_tags
* Resource manager tags to be bound to the disk. Tag keys and values
* have the same definition as resource
- * manager tags. Keys must be in the format `tagKeys/{tag_key_id}`, and
- * values are in the format `tagValues/456`. The field is ignored (both PUT
- * & PATCH) when empty.
+ * manager tags. Keys and values can be either in numeric format,
+ * such as `tagKeys/{tag_key_id}` and `tagValues/456` or in namespaced
+ * format such as `{org_id|project_id}/{tag_key_short_name}` and
+ * `{tag_value_short_name}`. The field is ignored (both PUT & PATCH) when
+ * empty.
* @type array|\Google\Protobuf\Internal\RepeatedField $resource_policies
* Resource policies applied to this disk for automatic snapshot creations.
* Specified using the full or partial URL. For instance template, specify
@@ -808,9 +812,11 @@ public function setReplicaZones($var)
/**
* Resource manager tags to be bound to the disk. Tag keys and values
* have the same definition as resource
- * manager tags. Keys must be in the format `tagKeys/{tag_key_id}`, and
- * values are in the format `tagValues/456`. The field is ignored (both PUT
- * & PATCH) when empty.
+ * manager tags. Keys and values can be either in numeric format,
+ * such as `tagKeys/{tag_key_id}` and `tagValues/456` or in namespaced
+ * format such as `{org_id|project_id}/{tag_key_short_name}` and
+ * `{tag_value_short_name}`. The field is ignored (both PUT & PATCH) when
+ * empty.
*
* Generated from protobuf field map resource_manager_tags = 377671164;
* @return \Google\Protobuf\Internal\MapField
@@ -823,9 +829,11 @@ public function getResourceManagerTags()
/**
* Resource manager tags to be bound to the disk. Tag keys and values
* have the same definition as resource
- * manager tags. Keys must be in the format `tagKeys/{tag_key_id}`, and
- * values are in the format `tagValues/456`. The field is ignored (both PUT
- * & PATCH) when empty.
+ * manager tags. Keys and values can be either in numeric format,
+ * such as `tagKeys/{tag_key_id}` and `tagValues/456` or in namespaced
+ * format such as `{org_id|project_id}/{tag_key_short_name}` and
+ * `{tag_value_short_name}`. The field is ignored (both PUT & PATCH) when
+ * empty.
*
* Generated from protobuf field map resource_manager_tags = 377671164;
* @param array|\Google\Protobuf\Internal\MapField $var
diff --git a/Compute/src/V1/Autoscaler.php b/Compute/src/V1/Autoscaler.php
index 2e7e61f06994..90dcaea49d1d 100644
--- a/Compute/src/V1/Autoscaler.php
+++ b/Compute/src/V1/Autoscaler.php
@@ -33,7 +33,7 @@ class Autoscaler extends \Google\Protobuf\Internal\Message
*/
protected $autoscaling_policy = null;
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -47,14 +47,14 @@ class Autoscaler extends \Google\Protobuf\Internal\Message
*/
protected $description = null;
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
*/
protected $id = null;
/**
- * [Output Only] Type of the resource. Always compute#autoscaler
+ * Output only. [Output Only] Type of the resource. Always compute#autoscaler
* for autoscalers.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -73,7 +73,7 @@ class Autoscaler extends \Google\Protobuf\Internal\Message
*/
protected $name = null;
/**
- * [Output Only] Target recommended MIG size (number of instances) computed by
+ * Output only. [Output Only] Target recommended MIG size (number of instances) computed by
* autoscaler. Autoscaler calculates the recommended MIG size even when the
* autoscaling policy mode is different from ON. This field is empty when
* autoscaler is not connected to an existing managed instance group or
@@ -83,7 +83,7 @@ class Autoscaler extends \Google\Protobuf\Internal\Message
*/
protected $recommended_size = null;
/**
- * [Output Only] URL of theregion
+ * Output only. [Output Only] URL of theregion
* where the instance group resides (for autoscalers living in regional
* scope).
*
@@ -91,7 +91,7 @@ class Autoscaler extends \Google\Protobuf\Internal\Message
*/
protected $region = null;
/**
- * [Output Only] Status information of existing scaling schedules.
+ * Output only. [Output Only] Status information of existing scaling schedules.
*
* Generated from protobuf field map scaling_schedule_status = 465950178;
*/
@@ -138,7 +138,7 @@ class Autoscaler extends \Google\Protobuf\Internal\Message
*/
protected $target = null;
/**
- * [Output Only] URL of thezone
+ * Output only. [Output Only] URL of thezone
* where the instance group resides (for autoscalers living in zonal scope).
*
* Generated from protobuf field optional string zone = 3744684;
@@ -156,16 +156,16 @@ class Autoscaler extends \Google\Protobuf\Internal\Message
* one or more signals for an autoscaler: cpuUtilization,customMetricUtilizations, andloadBalancingUtilization.
* If none of these are specified, the default will be to autoscale based oncpuUtilization to 0.6 or 60%.
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $description
* An optional description of this resource. Provide this property when you
* create the resource.
* @type int|string $id
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type string $kind
- * [Output Only] Type of the resource. Always compute#autoscaler
+ * Output only. [Output Only] Type of the resource. Always compute#autoscaler
* for autoscalers.
* @type string $name
* Name of the resource. Provided by the client when the resource is created.
@@ -176,17 +176,17 @@ class Autoscaler extends \Google\Protobuf\Internal\Message
* be a dash, lowercase letter, or digit, except the last character, which
* cannot be a dash.
* @type int $recommended_size
- * [Output Only] Target recommended MIG size (number of instances) computed by
+ * Output only. [Output Only] Target recommended MIG size (number of instances) computed by
* autoscaler. Autoscaler calculates the recommended MIG size even when the
* autoscaling policy mode is different from ON. This field is empty when
* autoscaler is not connected to an existing managed instance group or
* autoscaler did not generate its prediction.
* @type string $region
- * [Output Only] URL of theregion
+ * Output only. [Output Only] URL of theregion
* where the instance group resides (for autoscalers living in regional
* scope).
* @type array|\Google\Protobuf\Internal\MapField $scaling_schedule_status
- * [Output Only] Status information of existing scaling schedules.
+ * Output only. [Output Only] Status information of existing scaling schedules.
* @type string $self_link
* [Output Only] Server-defined URL for the resource.
* @type string $status
@@ -213,7 +213,7 @@ class Autoscaler extends \Google\Protobuf\Internal\Message
* URL of the managed instance group that this autoscaler will scale. This
* field is required when creating an autoscaler.
* @type string $zone
- * [Output Only] URL of thezone
+ * Output only. [Output Only] URL of thezone
* where the instance group resides (for autoscalers living in zonal scope).
* }
*/
@@ -263,7 +263,7 @@ public function setAutoscalingPolicy($var)
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -285,7 +285,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -339,7 +339,7 @@ public function setDescription($var)
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -361,7 +361,7 @@ public function clearId()
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -377,7 +377,7 @@ public function setId($var)
}
/**
- * [Output Only] Type of the resource. Always compute#autoscaler
+ * Output only. [Output Only] Type of the resource. Always compute#autoscaler
* for autoscalers.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -399,7 +399,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Always compute#autoscaler
+ * Output only. [Output Only] Type of the resource. Always compute#autoscaler
* for autoscalers.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -463,7 +463,7 @@ public function setName($var)
}
/**
- * [Output Only] Target recommended MIG size (number of instances) computed by
+ * Output only. [Output Only] Target recommended MIG size (number of instances) computed by
* autoscaler. Autoscaler calculates the recommended MIG size even when the
* autoscaling policy mode is different from ON. This field is empty when
* autoscaler is not connected to an existing managed instance group or
@@ -488,7 +488,7 @@ public function clearRecommendedSize()
}
/**
- * [Output Only] Target recommended MIG size (number of instances) computed by
+ * Output only. [Output Only] Target recommended MIG size (number of instances) computed by
* autoscaler. Autoscaler calculates the recommended MIG size even when the
* autoscaling policy mode is different from ON. This field is empty when
* autoscaler is not connected to an existing managed instance group or
@@ -507,7 +507,7 @@ public function setRecommendedSize($var)
}
/**
- * [Output Only] URL of theregion
+ * Output only. [Output Only] URL of theregion
* where the instance group resides (for autoscalers living in regional
* scope).
*
@@ -530,7 +530,7 @@ public function clearRegion()
}
/**
- * [Output Only] URL of theregion
+ * Output only. [Output Only] URL of theregion
* where the instance group resides (for autoscalers living in regional
* scope).
*
@@ -547,7 +547,7 @@ public function setRegion($var)
}
/**
- * [Output Only] Status information of existing scaling schedules.
+ * Output only. [Output Only] Status information of existing scaling schedules.
*
* Generated from protobuf field map scaling_schedule_status = 465950178;
* @return \Google\Protobuf\Internal\MapField
@@ -558,7 +558,7 @@ public function getScalingScheduleStatus()
}
/**
- * [Output Only] Status information of existing scaling schedules.
+ * Output only. [Output Only] Status information of existing scaling schedules.
*
* Generated from protobuf field map scaling_schedule_status = 465950178;
* @param array|\Google\Protobuf\Internal\MapField $var
@@ -741,7 +741,7 @@ public function setTarget($var)
}
/**
- * [Output Only] URL of thezone
+ * Output only. [Output Only] URL of thezone
* where the instance group resides (for autoscalers living in zonal scope).
*
* Generated from protobuf field optional string zone = 3744684;
@@ -763,7 +763,7 @@ public function clearZone()
}
/**
- * [Output Only] URL of thezone
+ * Output only. [Output Only] URL of thezone
* where the instance group resides (for autoscalers living in zonal scope).
*
* Generated from protobuf field optional string zone = 3744684;
diff --git a/Compute/src/V1/AutoscalerAggregatedList.php b/Compute/src/V1/AutoscalerAggregatedList.php
index 640e2ff093ba..7c3a78713ea8 100644
--- a/Compute/src/V1/AutoscalerAggregatedList.php
+++ b/Compute/src/V1/AutoscalerAggregatedList.php
@@ -27,7 +27,7 @@ class AutoscalerAggregatedList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Alwayscompute#autoscalerAggregatedList for aggregated lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#autoscalerAggregatedList for aggregated lists of
* autoscalers.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -44,13 +44,13 @@ class AutoscalerAggregatedList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* end_interface: MixerListResponseWithEtagBuilder
*
* Generated from protobuf field repeated string unreachables = 243372063;
@@ -74,7 +74,7 @@ class AutoscalerAggregatedList extends \Google\Protobuf\Internal\Message
* @type array|\Google\Protobuf\Internal\MapField $items
* A list of AutoscalersScopedList resources.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#autoscalerAggregatedList for aggregated lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#autoscalerAggregatedList for aggregated lists of
* autoscalers.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -83,9 +83,9 @@ class AutoscalerAggregatedList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* end_interface: MixerListResponseWithEtagBuilder
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
@@ -159,7 +159,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#autoscalerAggregatedList for aggregated lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#autoscalerAggregatedList for aggregated lists of
* autoscalers.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -181,7 +181,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#autoscalerAggregatedList for aggregated lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#autoscalerAggregatedList for aggregated lists of
* autoscalers.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -241,7 +241,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -262,7 +262,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -277,7 +277,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* end_interface: MixerListResponseWithEtagBuilder
*
* Generated from protobuf field repeated string unreachables = 243372063;
@@ -289,7 +289,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* end_interface: MixerListResponseWithEtagBuilder
*
* Generated from protobuf field repeated string unreachables = 243372063;
diff --git a/Compute/src/V1/AutoscalerList.php b/Compute/src/V1/AutoscalerList.php
index 92c8e33052a5..ff0cfc4b8543 100644
--- a/Compute/src/V1/AutoscalerList.php
+++ b/Compute/src/V1/AutoscalerList.php
@@ -28,7 +28,7 @@ class AutoscalerList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Always compute#autoscalerList
+ * Output only. [Output Only] Type of resource. Always compute#autoscalerList
* for lists of autoscalers.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -45,7 +45,7 @@ class AutoscalerList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -68,7 +68,7 @@ class AutoscalerList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\Autoscaler>|\Google\Protobuf\Internal\RepeatedField $items
* A list of Autoscaler resources.
* @type string $kind
- * [Output Only] Type of resource. Always compute#autoscalerList
+ * Output only. [Output Only] Type of resource. Always compute#autoscalerList
* for lists of autoscalers.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -77,7 +77,7 @@ class AutoscalerList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -150,7 +150,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Always compute#autoscalerList
+ * Output only. [Output Only] Type of resource. Always compute#autoscalerList
* for lists of autoscalers.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -172,7 +172,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Always compute#autoscalerList
+ * Output only. [Output Only] Type of resource. Always compute#autoscalerList
* for lists of autoscalers.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -232,7 +232,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -253,7 +253,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/BackendBucket.php b/Compute/src/V1/BackendBucket.php
index f3a1ea73188b..bb9f490d8e81 100644
--- a/Compute/src/V1/BackendBucket.php
+++ b/Compute/src/V1/BackendBucket.php
@@ -77,7 +77,7 @@ class BackendBucket extends \Google\Protobuf\Internal\Message
*/
protected $id = null;
/**
- * Type of the resource.
+ * Output only. Type of the resource.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -119,7 +119,7 @@ class BackendBucket extends \Google\Protobuf\Internal\Message
*/
protected $self_link = null;
/**
- * [Output Only] List of resources referencing that backend bucket.
+ * Output only. [Output Only] List of resources referencing that backend bucket.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.BackendBucketUsedBy used_by = 389320729;
*/
@@ -155,7 +155,7 @@ class BackendBucket extends \Google\Protobuf\Internal\Message
* @type int|string $id
* [Output Only] Unique identifier for the resource; defined by the server.
* @type string $kind
- * Type of the resource.
+ * Output only. Type of the resource.
* @type string $load_balancing_scheme
* The value can only be INTERNAL_MANAGED for cross-region internal layer 7
* load balancer.
@@ -177,7 +177,7 @@ class BackendBucket extends \Google\Protobuf\Internal\Message
* @type string $self_link
* [Output Only] Server-defined URL for the resource.
* @type array<\Google\Cloud\Compute\V1\BackendBucketUsedBy>|\Google\Protobuf\Internal\RepeatedField $used_by
- * [Output Only] List of resources referencing that backend bucket.
+ * Output only. [Output Only] List of resources referencing that backend bucket.
* }
*/
public function __construct($data = NULL) {
@@ -510,7 +510,7 @@ public function setId($var)
}
/**
- * Type of the resource.
+ * Output only. Type of the resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -531,7 +531,7 @@ public function clearKind()
}
/**
- * Type of the resource.
+ * Output only. Type of the resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -714,7 +714,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] List of resources referencing that backend bucket.
+ * Output only. [Output Only] List of resources referencing that backend bucket.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.BackendBucketUsedBy used_by = 389320729;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -725,7 +725,7 @@ public function getUsedBy()
}
/**
- * [Output Only] List of resources referencing that backend bucket.
+ * Output only. [Output Only] List of resources referencing that backend bucket.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.BackendBucketUsedBy used_by = 389320729;
* @param array<\Google\Cloud\Compute\V1\BackendBucketUsedBy>|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/BackendBucketList.php b/Compute/src/V1/BackendBucketList.php
index 9a26d99fac24..312738f81cc8 100644
--- a/Compute/src/V1/BackendBucketList.php
+++ b/Compute/src/V1/BackendBucketList.php
@@ -28,7 +28,7 @@ class BackendBucketList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -44,7 +44,7 @@ class BackendBucketList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -67,7 +67,7 @@ class BackendBucketList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\BackendBucket>|\Google\Protobuf\Internal\RepeatedField $items
* A list of BackendBucket resources.
* @type string $kind
- * Type of resource.
+ * Output only. Type of resource.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -75,7 +75,7 @@ class BackendBucketList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -148,7 +148,7 @@ public function setItems($var)
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -169,7 +169,7 @@ public function clearKind()
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -228,7 +228,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -249,7 +249,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/BackendBucketUsedBy.php b/Compute/src/V1/BackendBucketUsedBy.php
index 6d587cfd9385..19bc5c80c78c 100644
--- a/Compute/src/V1/BackendBucketUsedBy.php
+++ b/Compute/src/V1/BackendBucketUsedBy.php
@@ -15,7 +15,7 @@
class BackendBucketUsedBy extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Server-defined URL for UrlMaps referencing that
+ * Output only. [Output Only] Server-defined URL for UrlMaps referencing that
* BackendBucket.
*
* Generated from protobuf field optional string reference = 148586315;
@@ -29,7 +29,7 @@ class BackendBucketUsedBy extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $reference
- * [Output Only] Server-defined URL for UrlMaps referencing that
+ * Output only. [Output Only] Server-defined URL for UrlMaps referencing that
* BackendBucket.
* }
*/
@@ -39,7 +39,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Server-defined URL for UrlMaps referencing that
+ * Output only. [Output Only] Server-defined URL for UrlMaps referencing that
* BackendBucket.
*
* Generated from protobuf field optional string reference = 148586315;
@@ -61,7 +61,7 @@ public function clearReference()
}
/**
- * [Output Only] Server-defined URL for UrlMaps referencing that
+ * Output only. [Output Only] Server-defined URL for UrlMaps referencing that
* BackendBucket.
*
* Generated from protobuf field optional string reference = 148586315;
diff --git a/Compute/src/V1/BackendService.php b/Compute/src/V1/BackendService.php
index c4a0197a94ee..0dd5390c22fd 100644
--- a/Compute/src/V1/BackendService.php
+++ b/Compute/src/V1/BackendService.php
@@ -99,7 +99,7 @@ class BackendService extends \Google\Protobuf\Internal\Message
*/
protected $consistent_hash = null;
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -295,7 +295,7 @@ class BackendService extends \Google\Protobuf\Internal\Message
*/
protected $ip_address_selection_policy = null;
/**
- * [Output Only] Type of resource. Always compute#backendService
+ * Output only. [Output Only] Type of resource. Always compute#backendService
* for backend services.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -506,7 +506,7 @@ class BackendService extends \Google\Protobuf\Internal\Message
*/
protected $protocol = null;
/**
- * [Output Only] URL of the region where the regional backend service
+ * Output only. [Output Only] URL of the region where the regional backend service
* resides. This field is not applicable to global backend services.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
@@ -602,7 +602,7 @@ class BackendService extends \Google\Protobuf\Internal\Message
*/
protected $tls_settings = null;
/**
- * [Output Only] List of resources referencing given backend service.
+ * Output only. [Output Only] List of resources referencing given backend service.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.BackendServiceUsedBy used_by = 389320729;
*/
@@ -654,7 +654,7 @@ class BackendService extends \Google\Protobuf\Internal\Message
* - A global backend service with the
* load_balancing_scheme set to INTERNAL_SELF_MANAGED.
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type array<\Google\Cloud\Compute\V1\BackendServiceCustomMetric>|\Google\Protobuf\Internal\RepeatedField $custom_metrics
* List of custom metrics that are used for theWEIGHTED_ROUND_ROBIN locality_lb_policy.
@@ -786,7 +786,7 @@ class BackendService extends \Google\Protobuf\Internal\Message
* INTERNAL_SELF_MANAGED).
* Check the IpAddressSelectionPolicy enum for the list of possible values.
* @type string $kind
- * [Output Only] Type of resource. Always compute#backendService
+ * Output only. [Output Only] Type of resource. Always compute#backendService
* for backend services.
* @type string $load_balancing_scheme
* Specifies the load balancer type. A backend service
@@ -941,7 +941,7 @@ class BackendService extends \Google\Protobuf\Internal\Message
* that is bound to target gRPC proxy.
* Check the Protocol enum for the list of possible values.
* @type string $region
- * [Output Only] URL of the region where the regional backend service
+ * Output only. [Output Only] URL of the region where the regional backend service
* resides. This field is not applicable to global backend services.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
@@ -993,7 +993,7 @@ class BackendService extends \Google\Protobuf\Internal\Message
* Configuration for Backend Authenticated TLS and mTLS. May only be specified
* when the backend protocol is SSL, HTTPS or HTTP2.
* @type array<\Google\Cloud\Compute\V1\BackendServiceUsedBy>|\Google\Protobuf\Internal\RepeatedField $used_by
- * [Output Only] List of resources referencing given backend service.
+ * Output only. [Output Only] List of resources referencing given backend service.
* }
*/
public function __construct($data = NULL) {
@@ -1324,7 +1324,7 @@ public function setConsistentHash($var)
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -1346,7 +1346,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -2060,7 +2060,7 @@ public function setIpAddressSelectionPolicy($var)
}
/**
- * [Output Only] Type of resource. Always compute#backendService
+ * Output only. [Output Only] Type of resource. Always compute#backendService
* for backend services.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -2082,7 +2082,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Always compute#backendService
+ * Output only. [Output Only] Type of resource. Always compute#backendService
* for backend services.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -2798,7 +2798,7 @@ public function setProtocol($var)
}
/**
- * [Output Only] URL of the region where the regional backend service
+ * Output only. [Output Only] URL of the region where the regional backend service
* resides. This field is not applicable to global backend services.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
@@ -2822,7 +2822,7 @@ public function clearRegion()
}
/**
- * [Output Only] URL of the region where the regional backend service
+ * Output only. [Output Only] URL of the region where the regional backend service
* resides. This field is not applicable to global backend services.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
@@ -3244,7 +3244,7 @@ public function setTlsSettings($var)
}
/**
- * [Output Only] List of resources referencing given backend service.
+ * Output only. [Output Only] List of resources referencing given backend service.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.BackendServiceUsedBy used_by = 389320729;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -3255,7 +3255,7 @@ public function getUsedBy()
}
/**
- * [Output Only] List of resources referencing given backend service.
+ * Output only. [Output Only] List of resources referencing given backend service.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.BackendServiceUsedBy used_by = 389320729;
* @param array<\Google\Cloud\Compute\V1\BackendServiceUsedBy>|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/BackendServiceAggregatedList.php b/Compute/src/V1/BackendServiceAggregatedList.php
index c2645daa47a1..a352ed4d6268 100644
--- a/Compute/src/V1/BackendServiceAggregatedList.php
+++ b/Compute/src/V1/BackendServiceAggregatedList.php
@@ -28,7 +28,7 @@ class BackendServiceAggregatedList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -44,13 +44,13 @@ class BackendServiceAggregatedList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
@@ -73,7 +73,7 @@ class BackendServiceAggregatedList extends \Google\Protobuf\Internal\Message
* @type array|\Google\Protobuf\Internal\MapField $items
* A list of BackendServicesScopedList resources.
* @type string $kind
- * Type of resource.
+ * Output only. Type of resource.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -81,9 +81,9 @@ class BackendServiceAggregatedList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -156,7 +156,7 @@ public function setItems($var)
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -177,7 +177,7 @@ public function clearKind()
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -236,7 +236,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -257,7 +257,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -272,7 +272,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -283,7 +283,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/BackendServiceGroupHealth.php b/Compute/src/V1/BackendServiceGroupHealth.php
index a1c2340893d9..3599c0f2e8ca 100644
--- a/Compute/src/V1/BackendServiceGroupHealth.php
+++ b/Compute/src/V1/BackendServiceGroupHealth.php
@@ -28,7 +28,7 @@ class BackendServiceGroupHealth extends \Google\Protobuf\Internal\Message
*/
private $health_status;
/**
- * [Output Only] Type of resource. Alwayscompute#backendServiceGroupHealth for the health of backend
+ * Output only. [Output Only] Type of resource. Alwayscompute#backendServiceGroupHealth for the health of backend
* services.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -47,7 +47,7 @@ class BackendServiceGroupHealth extends \Google\Protobuf\Internal\Message
* Health state of the backend instances or endpoints in requested instance or
* network endpoint group, determined based on configured health checks.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#backendServiceGroupHealth for the health of backend
+ * Output only. [Output Only] Type of resource. Alwayscompute#backendServiceGroupHealth for the health of backend
* services.
* }
*/
@@ -111,7 +111,7 @@ public function setHealthStatus($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#backendServiceGroupHealth for the health of backend
+ * Output only. [Output Only] Type of resource. Alwayscompute#backendServiceGroupHealth for the health of backend
* services.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -133,7 +133,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#backendServiceGroupHealth for the health of backend
+ * Output only. [Output Only] Type of resource. Alwayscompute#backendServiceGroupHealth for the health of backend
* services.
*
* Generated from protobuf field optional string kind = 3292052;
diff --git a/Compute/src/V1/BackendServiceIAP.php b/Compute/src/V1/BackendServiceIAP.php
index 8acba5a9dfe2..6a39e6415f46 100644
--- a/Compute/src/V1/BackendServiceIAP.php
+++ b/Compute/src/V1/BackendServiceIAP.php
@@ -39,7 +39,7 @@ class BackendServiceIAP extends \Google\Protobuf\Internal\Message
*/
protected $oauth2_client_secret = null;
/**
- * [Output Only] SHA256 hash value for the field oauth2_client_secret above.
+ * Output only. [Output Only] SHA256 hash value for the field oauth2_client_secret above.
*
* Generated from protobuf field optional string oauth2_client_secret_sha256 = 112903782;
*/
@@ -63,7 +63,7 @@ class BackendServiceIAP extends \Google\Protobuf\Internal\Message
* oauth2ClientSecretSha256 field.
* @InputOnly
* @type string $oauth2_client_secret_sha256
- * [Output Only] SHA256 hash value for the field oauth2_client_secret above.
+ * Output only. [Output Only] SHA256 hash value for the field oauth2_client_secret above.
* }
*/
public function __construct($data = NULL) {
@@ -190,7 +190,7 @@ public function setOauth2ClientSecret($var)
}
/**
- * [Output Only] SHA256 hash value for the field oauth2_client_secret above.
+ * Output only. [Output Only] SHA256 hash value for the field oauth2_client_secret above.
*
* Generated from protobuf field optional string oauth2_client_secret_sha256 = 112903782;
* @return string
@@ -211,7 +211,7 @@ public function clearOauth2ClientSecretSha256()
}
/**
- * [Output Only] SHA256 hash value for the field oauth2_client_secret above.
+ * Output only. [Output Only] SHA256 hash value for the field oauth2_client_secret above.
*
* Generated from protobuf field optional string oauth2_client_secret_sha256 = 112903782;
* @param string $var
diff --git a/Compute/src/V1/BackendServiceList.php b/Compute/src/V1/BackendServiceList.php
index 85728c6425dd..534cca42b980 100644
--- a/Compute/src/V1/BackendServiceList.php
+++ b/Compute/src/V1/BackendServiceList.php
@@ -28,7 +28,7 @@ class BackendServiceList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Alwayscompute#backendServiceList for lists of backend services.
+ * Output only. [Output Only] Type of resource. Alwayscompute#backendServiceList for lists of backend services.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -44,7 +44,7 @@ class BackendServiceList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -67,7 +67,7 @@ class BackendServiceList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\BackendService>|\Google\Protobuf\Internal\RepeatedField $items
* A list of BackendService resources.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#backendServiceList for lists of backend services.
+ * Output only. [Output Only] Type of resource. Alwayscompute#backendServiceList for lists of backend services.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -75,7 +75,7 @@ class BackendServiceList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -148,7 +148,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#backendServiceList for lists of backend services.
+ * Output only. [Output Only] Type of resource. Alwayscompute#backendServiceList for lists of backend services.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -169,7 +169,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#backendServiceList for lists of backend services.
+ * Output only. [Output Only] Type of resource. Alwayscompute#backendServiceList for lists of backend services.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -228,7 +228,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -249,7 +249,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/BackendServiceListUsable.php b/Compute/src/V1/BackendServiceListUsable.php
index f3be79125e9b..e56bdfa3b682 100644
--- a/Compute/src/V1/BackendServiceListUsable.php
+++ b/Compute/src/V1/BackendServiceListUsable.php
@@ -28,7 +28,7 @@ class BackendServiceListUsable extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Alwayscompute#usableBackendServiceList for lists of usable backend
+ * Output only. [Output Only] Type of resource. Alwayscompute#usableBackendServiceList for lists of usable backend
* services.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -45,7 +45,7 @@ class BackendServiceListUsable extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -68,7 +68,7 @@ class BackendServiceListUsable extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\BackendService>|\Google\Protobuf\Internal\RepeatedField $items
* A list of BackendService resources.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#usableBackendServiceList for lists of usable backend
+ * Output only. [Output Only] Type of resource. Alwayscompute#usableBackendServiceList for lists of usable backend
* services.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -77,7 +77,7 @@ class BackendServiceListUsable extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -150,7 +150,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#usableBackendServiceList for lists of usable backend
+ * Output only. [Output Only] Type of resource. Alwayscompute#usableBackendServiceList for lists of usable backend
* services.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -172,7 +172,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#usableBackendServiceList for lists of usable backend
+ * Output only. [Output Only] Type of resource. Alwayscompute#usableBackendServiceList for lists of usable backend
* services.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -232,7 +232,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -253,7 +253,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/BackendServiceUsedBy.php b/Compute/src/V1/BackendServiceUsedBy.php
index 2bba1703953d..92a06472d1bb 100644
--- a/Compute/src/V1/BackendServiceUsedBy.php
+++ b/Compute/src/V1/BackendServiceUsedBy.php
@@ -15,7 +15,7 @@
class BackendServiceUsedBy extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Server-defined URL for resources referencing given
+ * Output only. [Output Only] Server-defined URL for resources referencing given
* BackendService like UrlMaps, TargetTcpProxies, TargetSslProxies
* and ForwardingRule.
*
@@ -30,7 +30,7 @@ class BackendServiceUsedBy extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $reference
- * [Output Only] Server-defined URL for resources referencing given
+ * Output only. [Output Only] Server-defined URL for resources referencing given
* BackendService like UrlMaps, TargetTcpProxies, TargetSslProxies
* and ForwardingRule.
* }
@@ -41,7 +41,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Server-defined URL for resources referencing given
+ * Output only. [Output Only] Server-defined URL for resources referencing given
* BackendService like UrlMaps, TargetTcpProxies, TargetSslProxies
* and ForwardingRule.
*
@@ -64,7 +64,7 @@ public function clearReference()
}
/**
- * [Output Only] Server-defined URL for resources referencing given
+ * Output only. [Output Only] Server-defined URL for resources referencing given
* BackendService like UrlMaps, TargetTcpProxies, TargetSslProxies
* and ForwardingRule.
*
diff --git a/Compute/src/V1/BgpRoute.php b/Compute/src/V1/BgpRoute.php
index d01d45ee217e..60c0d3a33755 100644
--- a/Compute/src/V1/BgpRoute.php
+++ b/Compute/src/V1/BgpRoute.php
@@ -15,32 +15,32 @@
class BgpRoute extends \Google\Protobuf\Internal\Message
{
/**
- * [Output only] AS-PATH for the route
+ * Output only. [Output only] AS-PATH for the route
*
* Generated from protobuf field repeated .google.cloud.compute.v1.BgpRouteAsPath as_paths = 137568929;
*/
private $as_paths;
/**
- * [Output only] BGP communities in human-readable A:B format.
+ * Output only. [Output only] BGP communities in human-readable A:B format.
*
* Generated from protobuf field repeated string communities = 188262983;
*/
private $communities;
/**
- * [Output only] Destination IP range for the route, in human-readable CIDR
+ * Output only. [Output only] Destination IP range for the route, in human-readable CIDR
* format
*
* Generated from protobuf field optional .google.cloud.compute.v1.BgpRouteNetworkLayerReachabilityInformation destination = 180765710;
*/
protected $destination = null;
/**
- * [Output only] BGP multi-exit discriminator
+ * Output only. [Output only] BGP multi-exit discriminator
*
* Generated from protobuf field optional uint32 med = 107980;
*/
protected $med = null;
/**
- * [Output only] BGP origin (EGP, IGP or INCOMPLETE)
+ * Output only. [Output only] BGP origin (EGP, IGP or INCOMPLETE)
* Check the Origin enum for the list of possible values.
*
* Generated from protobuf field optional string origin = 65122086;
@@ -54,16 +54,16 @@ class BgpRoute extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type array<\Google\Cloud\Compute\V1\BgpRouteAsPath>|\Google\Protobuf\Internal\RepeatedField $as_paths
- * [Output only] AS-PATH for the route
+ * Output only. [Output only] AS-PATH for the route
* @type array|\Google\Protobuf\Internal\RepeatedField $communities
- * [Output only] BGP communities in human-readable A:B format.
+ * Output only. [Output only] BGP communities in human-readable A:B format.
* @type \Google\Cloud\Compute\V1\BgpRouteNetworkLayerReachabilityInformation $destination
- * [Output only] Destination IP range for the route, in human-readable CIDR
+ * Output only. [Output only] Destination IP range for the route, in human-readable CIDR
* format
* @type int $med
- * [Output only] BGP multi-exit discriminator
+ * Output only. [Output only] BGP multi-exit discriminator
* @type string $origin
- * [Output only] BGP origin (EGP, IGP or INCOMPLETE)
+ * Output only. [Output only] BGP origin (EGP, IGP or INCOMPLETE)
* Check the Origin enum for the list of possible values.
* }
*/
@@ -73,7 +73,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output only] AS-PATH for the route
+ * Output only. [Output only] AS-PATH for the route
*
* Generated from protobuf field repeated .google.cloud.compute.v1.BgpRouteAsPath as_paths = 137568929;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -84,7 +84,7 @@ public function getAsPaths()
}
/**
- * [Output only] AS-PATH for the route
+ * Output only. [Output only] AS-PATH for the route
*
* Generated from protobuf field repeated .google.cloud.compute.v1.BgpRouteAsPath as_paths = 137568929;
* @param array<\Google\Cloud\Compute\V1\BgpRouteAsPath>|\Google\Protobuf\Internal\RepeatedField $var
@@ -99,7 +99,7 @@ public function setAsPaths($var)
}
/**
- * [Output only] BGP communities in human-readable A:B format.
+ * Output only. [Output only] BGP communities in human-readable A:B format.
*
* Generated from protobuf field repeated string communities = 188262983;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -110,7 +110,7 @@ public function getCommunities()
}
/**
- * [Output only] BGP communities in human-readable A:B format.
+ * Output only. [Output only] BGP communities in human-readable A:B format.
*
* Generated from protobuf field repeated string communities = 188262983;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
@@ -125,7 +125,7 @@ public function setCommunities($var)
}
/**
- * [Output only] Destination IP range for the route, in human-readable CIDR
+ * Output only. [Output only] Destination IP range for the route, in human-readable CIDR
* format
*
* Generated from protobuf field optional .google.cloud.compute.v1.BgpRouteNetworkLayerReachabilityInformation destination = 180765710;
@@ -147,7 +147,7 @@ public function clearDestination()
}
/**
- * [Output only] Destination IP range for the route, in human-readable CIDR
+ * Output only. [Output only] Destination IP range for the route, in human-readable CIDR
* format
*
* Generated from protobuf field optional .google.cloud.compute.v1.BgpRouteNetworkLayerReachabilityInformation destination = 180765710;
@@ -163,7 +163,7 @@ public function setDestination($var)
}
/**
- * [Output only] BGP multi-exit discriminator
+ * Output only. [Output only] BGP multi-exit discriminator
*
* Generated from protobuf field optional uint32 med = 107980;
* @return int
@@ -184,7 +184,7 @@ public function clearMed()
}
/**
- * [Output only] BGP multi-exit discriminator
+ * Output only. [Output only] BGP multi-exit discriminator
*
* Generated from protobuf field optional uint32 med = 107980;
* @param int $var
@@ -199,7 +199,7 @@ public function setMed($var)
}
/**
- * [Output only] BGP origin (EGP, IGP or INCOMPLETE)
+ * Output only. [Output only] BGP origin (EGP, IGP or INCOMPLETE)
* Check the Origin enum for the list of possible values.
*
* Generated from protobuf field optional string origin = 65122086;
@@ -221,7 +221,7 @@ public function clearOrigin()
}
/**
- * [Output only] BGP origin (EGP, IGP or INCOMPLETE)
+ * Output only. [Output only] BGP origin (EGP, IGP or INCOMPLETE)
* Check the Origin enum for the list of possible values.
*
* Generated from protobuf field optional string origin = 65122086;
diff --git a/Compute/src/V1/BgpRoute/Origin.php b/Compute/src/V1/BgpRoute/Origin.php
index bf29af45f8c5..32f5a175f3d9 100644
--- a/Compute/src/V1/BgpRoute/Origin.php
+++ b/Compute/src/V1/BgpRoute/Origin.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output only] BGP origin (EGP, IGP or INCOMPLETE)
+ * Output only. [Output only] BGP origin (EGP, IGP or INCOMPLETE)
*
* Protobuf type google.cloud.compute.v1.BgpRoute.Origin
*/
diff --git a/Compute/src/V1/BgpRouteAsPath.php b/Compute/src/V1/BgpRouteAsPath.php
index 7e5a75a6411d..5a6531462709 100644
--- a/Compute/src/V1/BgpRouteAsPath.php
+++ b/Compute/src/V1/BgpRouteAsPath.php
@@ -15,14 +15,14 @@
class BgpRouteAsPath extends \Google\Protobuf\Internal\Message
{
/**
- * [Output only] ASNs in the path segment. When type is SEQUENCE, these are
+ * Output only. [Output only] ASNs in the path segment. When type is SEQUENCE, these are
* ordered.
*
* Generated from protobuf field repeated int32 asns = 3003767;
*/
private $asns;
/**
- * [Output only] ASNs in the path segment. This field is for better
+ * Output only. [Output only] ASNs in the path segment. This field is for better
* support of 32 bit ASNs as the other asns field suffers from overflow when
* the ASN is larger. When type is SEQUENCE, these are ordered.
*
@@ -30,7 +30,7 @@ class BgpRouteAsPath extends \Google\Protobuf\Internal\Message
*/
private $asns32;
/**
- * [Output only] Type of AS-PATH segment (SEQUENCE or SET)
+ * Output only. [Output only] Type of AS-PATH segment (SEQUENCE or SET)
* Check the Type enum for the list of possible values.
*
* Generated from protobuf field optional string type = 3575610;
@@ -44,14 +44,14 @@ class BgpRouteAsPath extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type array|\Google\Protobuf\Internal\RepeatedField $asns
- * [Output only] ASNs in the path segment. When type is SEQUENCE, these are
+ * Output only. [Output only] ASNs in the path segment. When type is SEQUENCE, these are
* ordered.
* @type array|\Google\Protobuf\Internal\RepeatedField $asns32
- * [Output only] ASNs in the path segment. This field is for better
+ * Output only. [Output only] ASNs in the path segment. This field is for better
* support of 32 bit ASNs as the other asns field suffers from overflow when
* the ASN is larger. When type is SEQUENCE, these are ordered.
* @type string $type
- * [Output only] Type of AS-PATH segment (SEQUENCE or SET)
+ * Output only. [Output only] Type of AS-PATH segment (SEQUENCE or SET)
* Check the Type enum for the list of possible values.
* }
*/
@@ -61,7 +61,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output only] ASNs in the path segment. When type is SEQUENCE, these are
+ * Output only. [Output only] ASNs in the path segment. When type is SEQUENCE, these are
* ordered.
*
* Generated from protobuf field repeated int32 asns = 3003767;
@@ -73,7 +73,7 @@ public function getAsns()
}
/**
- * [Output only] ASNs in the path segment. When type is SEQUENCE, these are
+ * Output only. [Output only] ASNs in the path segment. When type is SEQUENCE, these are
* ordered.
*
* Generated from protobuf field repeated int32 asns = 3003767;
@@ -89,7 +89,7 @@ public function setAsns($var)
}
/**
- * [Output only] ASNs in the path segment. This field is for better
+ * Output only. [Output only] ASNs in the path segment. This field is for better
* support of 32 bit ASNs as the other asns field suffers from overflow when
* the ASN is larger. When type is SEQUENCE, these are ordered.
*
@@ -102,7 +102,7 @@ public function getAsns32()
}
/**
- * [Output only] ASNs in the path segment. This field is for better
+ * Output only. [Output only] ASNs in the path segment. This field is for better
* support of 32 bit ASNs as the other asns field suffers from overflow when
* the ASN is larger. When type is SEQUENCE, these are ordered.
*
@@ -119,7 +119,7 @@ public function setAsns32($var)
}
/**
- * [Output only] Type of AS-PATH segment (SEQUENCE or SET)
+ * Output only. [Output only] Type of AS-PATH segment (SEQUENCE or SET)
* Check the Type enum for the list of possible values.
*
* Generated from protobuf field optional string type = 3575610;
@@ -141,7 +141,7 @@ public function clearType()
}
/**
- * [Output only] Type of AS-PATH segment (SEQUENCE or SET)
+ * Output only. [Output only] Type of AS-PATH segment (SEQUENCE or SET)
* Check the Type enum for the list of possible values.
*
* Generated from protobuf field optional string type = 3575610;
diff --git a/Compute/src/V1/BgpRouteAsPath/Type.php b/Compute/src/V1/BgpRouteAsPath/Type.php
index 633af8992c77..57c2d18c268c 100644
--- a/Compute/src/V1/BgpRouteAsPath/Type.php
+++ b/Compute/src/V1/BgpRouteAsPath/Type.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output only] Type of AS-PATH segment (SEQUENCE or SET)
+ * Output only. [Output only] Type of AS-PATH segment (SEQUENCE or SET)
*
* Protobuf type google.cloud.compute.v1.BgpRouteAsPath.Type
*/
diff --git a/Compute/src/V1/BulkInsertInstanceResourcePerInstanceProperties.php b/Compute/src/V1/BulkInsertInstanceResourcePerInstanceProperties.php
index 0ba1bb4efd46..9a359e4b55c2 100644
--- a/Compute/src/V1/BulkInsertInstanceResourcePerInstanceProperties.php
+++ b/Compute/src/V1/BulkInsertInstanceResourcePerInstanceProperties.php
@@ -24,7 +24,7 @@ class BulkInsertInstanceResourcePerInstanceProperties extends \Google\Protobuf\I
*/
protected $hostname = null;
/**
- * This field is only temporary. It will be removed. Do not use it.
+ * Output only. This field is only temporary. It will be removed. Do not use it.
*
* Generated from protobuf field optional string name = 3373707;
*/
@@ -40,7 +40,7 @@ class BulkInsertInstanceResourcePerInstanceProperties extends \Google\Protobuf\I
* Specifies the hostname of the instance. More details in:
* https://cloud.google.com/compute/docs/instances/custom-hostname-vm#naming_convention
* @type string $name
- * This field is only temporary. It will be removed. Do not use it.
+ * Output only. This field is only temporary. It will be removed. Do not use it.
* }
*/
public function __construct($data = NULL) {
@@ -87,7 +87,7 @@ public function setHostname($var)
}
/**
- * This field is only temporary. It will be removed. Do not use it.
+ * Output only. This field is only temporary. It will be removed. Do not use it.
*
* Generated from protobuf field optional string name = 3373707;
* @return string
@@ -108,7 +108,7 @@ public function clearName()
}
/**
- * This field is only temporary. It will be removed. Do not use it.
+ * Output only. This field is only temporary. It will be removed. Do not use it.
*
* Generated from protobuf field optional string name = 3373707;
* @param string $var
diff --git a/Compute/src/V1/CalendarModeAdviceRequest.php b/Compute/src/V1/CalendarModeAdviceRequest.php
new file mode 100644
index 000000000000..a25d249ded67
--- /dev/null
+++ b/Compute/src/V1/CalendarModeAdviceRequest.php
@@ -0,0 +1,80 @@
+google.cloud.compute.v1.CalendarModeAdviceRequest
+ */
+class CalendarModeAdviceRequest extends \Google\Protobuf\Internal\Message
+{
+ /**
+ * Specification of resources to create in the future.
+ * The key of the map is an arbitrary string specified by the caller.
+ * Value of the map is a specification of required resources and their
+ * constraints. Currently only one value is allowed in this map.
+ *
+ * Generated from protobuf field map future_resources_specs = 255012610;
+ */
+ private $future_resources_specs;
+
+ /**
+ * Constructor.
+ *
+ * @param array $data {
+ * Optional. Data for populating the Message object.
+ *
+ * @type array|\Google\Protobuf\Internal\MapField $future_resources_specs
+ * Specification of resources to create in the future.
+ * The key of the map is an arbitrary string specified by the caller.
+ * Value of the map is a specification of required resources and their
+ * constraints. Currently only one value is allowed in this map.
+ * }
+ */
+ public function __construct($data = NULL) {
+ \GPBMetadata\Google\Cloud\Compute\V1\Compute::initOnce();
+ parent::__construct($data);
+ }
+
+ /**
+ * Specification of resources to create in the future.
+ * The key of the map is an arbitrary string specified by the caller.
+ * Value of the map is a specification of required resources and their
+ * constraints. Currently only one value is allowed in this map.
+ *
+ * Generated from protobuf field map future_resources_specs = 255012610;
+ * @return \Google\Protobuf\Internal\MapField
+ */
+ public function getFutureResourcesSpecs()
+ {
+ return $this->future_resources_specs;
+ }
+
+ /**
+ * Specification of resources to create in the future.
+ * The key of the map is an arbitrary string specified by the caller.
+ * Value of the map is a specification of required resources and their
+ * constraints. Currently only one value is allowed in this map.
+ *
+ * Generated from protobuf field map future_resources_specs = 255012610;
+ * @param array|\Google\Protobuf\Internal\MapField $var
+ * @return $this
+ */
+ public function setFutureResourcesSpecs($var)
+ {
+ $arr = GPBUtil::checkMapField($var, \Google\Protobuf\Internal\GPBType::STRING, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Compute\V1\FutureResourcesSpec::class);
+ $this->future_resources_specs = $arr;
+
+ return $this;
+ }
+
+}
+
diff --git a/Compute/src/V1/CalendarModeAdviceResponse.php b/Compute/src/V1/CalendarModeAdviceResponse.php
new file mode 100644
index 000000000000..a8c2ff70bcd8
--- /dev/null
+++ b/Compute/src/V1/CalendarModeAdviceResponse.php
@@ -0,0 +1,73 @@
+google.cloud.compute.v1.CalendarModeAdviceResponse
+ */
+class CalendarModeAdviceResponse extends \Google\Protobuf\Internal\Message
+{
+ /**
+ * Recommendations where, how and when to create the requested resources
+ * in order to maximize their obtainability and minimize cost.
+ *
+ * Generated from protobuf field repeated .google.cloud.compute.v1.CalendarModeRecommendation recommendations = 324515802;
+ */
+ private $recommendations;
+
+ /**
+ * Constructor.
+ *
+ * @param array $data {
+ * Optional. Data for populating the Message object.
+ *
+ * @type array<\Google\Cloud\Compute\V1\CalendarModeRecommendation>|\Google\Protobuf\Internal\RepeatedField $recommendations
+ * Recommendations where, how and when to create the requested resources
+ * in order to maximize their obtainability and minimize cost.
+ * }
+ */
+ public function __construct($data = NULL) {
+ \GPBMetadata\Google\Cloud\Compute\V1\Compute::initOnce();
+ parent::__construct($data);
+ }
+
+ /**
+ * Recommendations where, how and when to create the requested resources
+ * in order to maximize their obtainability and minimize cost.
+ *
+ * Generated from protobuf field repeated .google.cloud.compute.v1.CalendarModeRecommendation recommendations = 324515802;
+ * @return \Google\Protobuf\Internal\RepeatedField
+ */
+ public function getRecommendations()
+ {
+ return $this->recommendations;
+ }
+
+ /**
+ * Recommendations where, how and when to create the requested resources
+ * in order to maximize their obtainability and minimize cost.
+ *
+ * Generated from protobuf field repeated .google.cloud.compute.v1.CalendarModeRecommendation recommendations = 324515802;
+ * @param array<\Google\Cloud\Compute\V1\CalendarModeRecommendation>|\Google\Protobuf\Internal\RepeatedField $var
+ * @return $this
+ */
+ public function setRecommendations($var)
+ {
+ $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Compute\V1\CalendarModeRecommendation::class);
+ $this->recommendations = $arr;
+
+ return $this;
+ }
+
+}
+
diff --git a/Compute/src/V1/CalendarModeAdviceRpcRequest.php b/Compute/src/V1/CalendarModeAdviceRpcRequest.php
new file mode 100644
index 000000000000..b5820f157ab5
--- /dev/null
+++ b/Compute/src/V1/CalendarModeAdviceRpcRequest.php
@@ -0,0 +1,162 @@
+google.cloud.compute.v1.CalendarModeAdviceRpcRequest
+ */
+class CalendarModeAdviceRpcRequest extends \Google\Protobuf\Internal\Message
+{
+ /**
+ * The body resource for this request
+ *
+ * Generated from protobuf field .google.cloud.compute.v1.CalendarModeAdviceRequest calendar_mode_advice_request_resource = 162098922 [(.google.api.field_behavior) = REQUIRED];
+ */
+ protected $calendar_mode_advice_request_resource = null;
+ /**
+ * Project ID for this request.
+ *
+ * Generated from protobuf field string project = 227560217 [(.google.api.field_behavior) = REQUIRED];
+ */
+ protected $project = '';
+ /**
+ * Name of the region for this request.
+ *
+ * Generated from protobuf field string region = 138946292 [(.google.api.field_behavior) = REQUIRED];
+ */
+ protected $region = '';
+
+ /**
+ * @param string $project Project ID for this request.
+ * @param string $region Name of the region for this request.
+ * @param \Google\Cloud\Compute\V1\CalendarModeAdviceRequest $calendarModeAdviceRequestResource The body resource for this request
+ *
+ * @return \Google\Cloud\Compute\V1\CalendarModeAdviceRpcRequest
+ *
+ * @experimental
+ */
+ public static function build(string $project, string $region, \Google\Cloud\Compute\V1\CalendarModeAdviceRequest $calendarModeAdviceRequestResource): self
+ {
+ return (new self())
+ ->setProject($project)
+ ->setRegion($region)
+ ->setCalendarModeAdviceRequestResource($calendarModeAdviceRequestResource);
+ }
+
+ /**
+ * Constructor.
+ *
+ * @param array $data {
+ * Optional. Data for populating the Message object.
+ *
+ * @type \Google\Cloud\Compute\V1\CalendarModeAdviceRequest $calendar_mode_advice_request_resource
+ * The body resource for this request
+ * @type string $project
+ * Project ID for this request.
+ * @type string $region
+ * Name of the region for this request.
+ * }
+ */
+ public function __construct($data = NULL) {
+ \GPBMetadata\Google\Cloud\Compute\V1\Compute::initOnce();
+ parent::__construct($data);
+ }
+
+ /**
+ * The body resource for this request
+ *
+ * Generated from protobuf field .google.cloud.compute.v1.CalendarModeAdviceRequest calendar_mode_advice_request_resource = 162098922 [(.google.api.field_behavior) = REQUIRED];
+ * @return \Google\Cloud\Compute\V1\CalendarModeAdviceRequest|null
+ */
+ public function getCalendarModeAdviceRequestResource()
+ {
+ return $this->calendar_mode_advice_request_resource;
+ }
+
+ public function hasCalendarModeAdviceRequestResource()
+ {
+ return isset($this->calendar_mode_advice_request_resource);
+ }
+
+ public function clearCalendarModeAdviceRequestResource()
+ {
+ unset($this->calendar_mode_advice_request_resource);
+ }
+
+ /**
+ * The body resource for this request
+ *
+ * Generated from protobuf field .google.cloud.compute.v1.CalendarModeAdviceRequest calendar_mode_advice_request_resource = 162098922 [(.google.api.field_behavior) = REQUIRED];
+ * @param \Google\Cloud\Compute\V1\CalendarModeAdviceRequest $var
+ * @return $this
+ */
+ public function setCalendarModeAdviceRequestResource($var)
+ {
+ GPBUtil::checkMessage($var, \Google\Cloud\Compute\V1\CalendarModeAdviceRequest::class);
+ $this->calendar_mode_advice_request_resource = $var;
+
+ return $this;
+ }
+
+ /**
+ * Project ID for this request.
+ *
+ * Generated from protobuf field string project = 227560217 [(.google.api.field_behavior) = REQUIRED];
+ * @return string
+ */
+ public function getProject()
+ {
+ return $this->project;
+ }
+
+ /**
+ * Project ID for this request.
+ *
+ * Generated from protobuf field string project = 227560217 [(.google.api.field_behavior) = REQUIRED];
+ * @param string $var
+ * @return $this
+ */
+ public function setProject($var)
+ {
+ GPBUtil::checkString($var, True);
+ $this->project = $var;
+
+ return $this;
+ }
+
+ /**
+ * Name of the region for this request.
+ *
+ * Generated from protobuf field string region = 138946292 [(.google.api.field_behavior) = REQUIRED];
+ * @return string
+ */
+ public function getRegion()
+ {
+ return $this->region;
+ }
+
+ /**
+ * Name of the region for this request.
+ *
+ * Generated from protobuf field string region = 138946292 [(.google.api.field_behavior) = REQUIRED];
+ * @param string $var
+ * @return $this
+ */
+ public function setRegion($var)
+ {
+ GPBUtil::checkString($var, True);
+ $this->region = $var;
+
+ return $this;
+ }
+
+}
+
diff --git a/Compute/src/V1/CalendarModeRecommendation.php b/Compute/src/V1/CalendarModeRecommendation.php
new file mode 100644
index 000000000000..14906ebd3b3d
--- /dev/null
+++ b/Compute/src/V1/CalendarModeRecommendation.php
@@ -0,0 +1,77 @@
+google.cloud.compute.v1.CalendarModeRecommendation
+ */
+class CalendarModeRecommendation extends \Google\Protobuf\Internal\Message
+{
+ /**
+ * Recommendations for every future resource specification passed in
+ * CalendarModeAdviceRequest. Keys of the map correspond to keys
+ * specified in the request.
+ *
+ * Generated from protobuf field map recommendations_per_spec = 61331554;
+ */
+ private $recommendations_per_spec;
+
+ /**
+ * Constructor.
+ *
+ * @param array $data {
+ * Optional. Data for populating the Message object.
+ *
+ * @type array|\Google\Protobuf\Internal\MapField $recommendations_per_spec
+ * Recommendations for every future resource specification passed in
+ * CalendarModeAdviceRequest. Keys of the map correspond to keys
+ * specified in the request.
+ * }
+ */
+ public function __construct($data = NULL) {
+ \GPBMetadata\Google\Cloud\Compute\V1\Compute::initOnce();
+ parent::__construct($data);
+ }
+
+ /**
+ * Recommendations for every future resource specification passed in
+ * CalendarModeAdviceRequest. Keys of the map correspond to keys
+ * specified in the request.
+ *
+ * Generated from protobuf field map recommendations_per_spec = 61331554;
+ * @return \Google\Protobuf\Internal\MapField
+ */
+ public function getRecommendationsPerSpec()
+ {
+ return $this->recommendations_per_spec;
+ }
+
+ /**
+ * Recommendations for every future resource specification passed in
+ * CalendarModeAdviceRequest. Keys of the map correspond to keys
+ * specified in the request.
+ *
+ * Generated from protobuf field map recommendations_per_spec = 61331554;
+ * @param array|\Google\Protobuf\Internal\MapField $var
+ * @return $this
+ */
+ public function setRecommendationsPerSpec($var)
+ {
+ $arr = GPBUtil::checkMapField($var, \Google\Protobuf\Internal\GPBType::STRING, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Compute\V1\FutureResourcesRecommendation::class);
+ $this->recommendations_per_spec = $arr;
+
+ return $this;
+ }
+
+}
+
diff --git a/Compute/src/V1/Client/AdviceClient.php b/Compute/src/V1/Client/AdviceClient.php
new file mode 100644
index 000000000000..bb79aaac78f2
--- /dev/null
+++ b/Compute/src/V1/Client/AdviceClient.php
@@ -0,0 +1,220 @@
+ calendarModeAsync(CalendarModeAdviceRpcRequest $request, array $optionalArgs = [])
+ */
+final class AdviceClient
+{
+ use GapicClientTrait;
+
+ /** The name of the service. */
+ private const SERVICE_NAME = 'google.cloud.compute.v1.Advice';
+
+ /**
+ * The default address of the service.
+ *
+ * @deprecated SERVICE_ADDRESS_TEMPLATE should be used instead.
+ */
+ private const SERVICE_ADDRESS = 'compute.googleapis.com';
+
+ /** The address template of the service. */
+ private const SERVICE_ADDRESS_TEMPLATE = 'compute.UNIVERSE_DOMAIN';
+
+ /** The default port of the service. */
+ private const DEFAULT_SERVICE_PORT = 443;
+
+ /** The name of the code generator, to be included in the agent header. */
+ private const CODEGEN_NAME = 'gapic';
+
+ /** The default scopes required by the service. */
+ public static $serviceScopes = [
+ 'https://www.googleapis.com/auth/compute',
+ 'https://www.googleapis.com/auth/cloud-platform',
+ ];
+
+ private static function getClientDefaults()
+ {
+ return [
+ 'serviceName' => self::SERVICE_NAME,
+ 'apiEndpoint' => self::SERVICE_ADDRESS . ':' . self::DEFAULT_SERVICE_PORT,
+ 'clientConfig' => __DIR__ . '/../resources/advice_client_config.json',
+ 'descriptorsConfigPath' => __DIR__ . '/../resources/advice_descriptor_config.php',
+ 'credentialsConfig' => [
+ 'defaultScopes' => self::$serviceScopes,
+ 'useJwtAccessWithScope' => false,
+ ],
+ 'transportConfig' => [
+ 'rest' => [
+ 'restClientConfigPath' => __DIR__ . '/../resources/advice_rest_client_config.php',
+ ],
+ ],
+ ];
+ }
+
+ /** Implements GapicClientTrait::defaultTransport. */
+ private static function defaultTransport()
+ {
+ return 'rest';
+ }
+
+ /** Implements ClientOptionsTrait::supportedTransports. */
+ private static function supportedTransports()
+ {
+ return ['rest'];
+ }
+
+ /**
+ * Constructor.
+ *
+ * @param array|ClientOptions $options {
+ * Optional. Options for configuring the service API wrapper.
+ *
+ * @type string $apiEndpoint
+ * The address of the API remote host. May optionally include the port, formatted
+ * as ":". Default 'compute.googleapis.com:443'.
+ * @type FetchAuthTokenInterface|CredentialsWrapper $credentials
+ * This option should only be used with a pre-constructed
+ * {@see FetchAuthTokenInterface} or {@see CredentialsWrapper} object. Note that
+ * when one of these objects are provided, any settings in $credentialsConfig will
+ * be ignored.
+ * **Important**: If you are providing a path to a credentials file, or a decoded
+ * credentials file as a PHP array, this usage is now DEPRECATED. Providing an
+ * unvalidated credential configuration to Google APIs can compromise the security
+ * of your systems and data. It is recommended to create the credentials explicitly
+ * ```
+ * use Google\Auth\Credentials\ServiceAccountCredentials;
+ * use Google\Cloud\Compute\V1\AdviceClient;
+ * $creds = new ServiceAccountCredentials($scopes, $json);
+ * $options = new AdviceClient(['credentials' => $creds]);
+ * ```
+ * {@see
+ * https://cloud.google.com/docs/authentication/external/externally-sourced-credentials}
+ * @type array $credentialsConfig
+ * Options used to configure credentials, including auth token caching, for the
+ * client. For a full list of supporting configuration options, see
+ * {@see \Google\ApiCore\CredentialsWrapper::build()} .
+ * @type bool $disableRetries
+ * Determines whether or not retries defined by the client configuration should be
+ * disabled. Defaults to `false`.
+ * @type string|array $clientConfig
+ * Client method configuration, including retry settings. This option can be either
+ * a path to a JSON file, or a PHP array containing the decoded JSON data. By
+ * default this settings points to the default client config file, which is
+ * provided in the resources folder.
+ * @type string|TransportInterface $transport
+ * The transport used for executing network requests. At the moment, supports only
+ * `rest`. *Advanced usage*: Additionally, it is possible to pass in an already
+ * instantiated {@see \Google\ApiCore\Transport\TransportInterface} object. Note
+ * that when this object is provided, any settings in $transportConfig, and any
+ * $apiEndpoint setting, will be ignored.
+ * @type array $transportConfig
+ * Configuration options that will be used to construct the transport. Options for
+ * each supported transport type should be passed in a key for that transport. For
+ * example:
+ * $transportConfig = [
+ * 'rest' => [...],
+ * ];
+ * See the {@see \Google\ApiCore\Transport\RestTransport::build()} method for the
+ * supported options.
+ * @type callable $clientCertSource
+ * A callable which returns the client cert as a string. This can be used to
+ * provide a certificate and private key to the transport layer for mTLS.
+ * @type false|LoggerInterface $logger
+ * A PSR-3 compliant logger. If set to false, logging is disabled, ignoring the
+ * 'GOOGLE_SDK_PHP_LOGGING' environment flag
+ * @type string $universeDomain
+ * The service domain for the client. Defaults to 'googleapis.com'.
+ * }
+ *
+ * @throws ValidationException
+ */
+ public function __construct(array|ClientOptions $options = [])
+ {
+ $clientOptions = $this->buildClientOptions($options);
+ $this->setClientOptions($clientOptions);
+ }
+
+ /** Handles execution of the async variants for each documented method. */
+ public function __call($method, $args)
+ {
+ if (substr($method, -5) !== 'Async') {
+ trigger_error('Call to undefined method ' . __CLASS__ . "::$method()", E_USER_ERROR);
+ }
+
+ array_unshift($args, substr($method, 0, -5));
+ return call_user_func_array([$this, 'startAsyncCall'], $args);
+ }
+
+ /**
+ * Advise how, where and when to create the requested amount of instances
+ * with specified accelerators, within the specified time and location limits.
+ * The method recommends creating future reservations for the requested
+ * resources.
+ *
+ * The async variant is {@see AdviceClient::calendarModeAsync()} .
+ *
+ * @example samples/V1/AdviceClient/calendar_mode.php
+ *
+ * @param CalendarModeAdviceRpcRequest $request A request to house fields associated with the call.
+ * @param array $callOptions {
+ * Optional.
+ *
+ * @type RetrySettings|array $retrySettings
+ * Retry settings to use for this call. Can be a {@see RetrySettings} object, or an
+ * associative array of retry settings parameters. See the documentation on
+ * {@see RetrySettings} for example usage.
+ * }
+ *
+ * @return CalendarModeAdviceResponse
+ *
+ * @throws ApiException Thrown if the API call fails.
+ */
+ public function calendarMode(
+ CalendarModeAdviceRpcRequest $request,
+ array $callOptions = []
+ ): CalendarModeAdviceResponse {
+ return $this->startApiCall('CalendarMode', $request, $callOptions)->wait();
+ }
+}
diff --git a/Compute/src/V1/Commitment.php b/Compute/src/V1/Commitment.php
index 91a4cec065ba..17a7b62af85a 100644
--- a/Compute/src/V1/Commitment.php
+++ b/Compute/src/V1/Commitment.php
@@ -47,7 +47,7 @@ class Commitment extends \Google\Protobuf\Internal\Message
*/
protected $category = null;
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -68,7 +68,7 @@ class Commitment extends \Google\Protobuf\Internal\Message
*/
protected $description = null;
/**
- * [Output Only] Commitment end time inRFC3339
+ * Output only. [Output Only] Commitment end time inRFC3339
* text format.
*
* Generated from protobuf field optional string end_timestamp = 468096690;
@@ -79,14 +79,14 @@ class Commitment extends \Google\Protobuf\Internal\Message
*/
private $existing_reservations;
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
*/
protected $id = null;
/**
- * [Output Only] Type of the resource. Always compute#commitment
+ * Output only. [Output Only] Type of the resource. Always compute#commitment
* for commitments.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -131,7 +131,7 @@ class Commitment extends \Google\Protobuf\Internal\Message
*/
protected $plan = null;
/**
- * [Output Only] URL of the region where the commitment and committed
+ * Output only. [Output Only] URL of the region where the commitment and committed
* resources are located.
*
* Generated from protobuf field optional string region = 138946292;
@@ -150,7 +150,7 @@ class Commitment extends \Google\Protobuf\Internal\Message
*/
private $reservations;
/**
- * [Output Only] Status information for Commitment resource.
+ * Output only. [Output Only] Status information for Commitment resource.
*
* Generated from protobuf field optional .google.cloud.compute.v1.CommitmentResourceStatus resource_status = 249429315;
*/
@@ -164,7 +164,7 @@ class Commitment extends \Google\Protobuf\Internal\Message
*/
private $resources;
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -178,14 +178,14 @@ class Commitment extends \Google\Protobuf\Internal\Message
*/
protected $split_source_commitment = null;
/**
- * [Output Only] Commitment start time inRFC3339
+ * Output only. [Output Only] Commitment start time inRFC3339
* text format.
*
* Generated from protobuf field optional string start_timestamp = 83645817;
*/
protected $start_timestamp = null;
/**
- * [Output Only] Status of the commitment with regards to eventual expiration
+ * Output only. [Output Only] Status of the commitment with regards to eventual expiration
* (each commitment has an end date defined). Status can be one of the
* following values: NOT_YET_ACTIVE, ACTIVE, orEXPIRED.
* Check the Status enum for the list of possible values.
@@ -194,7 +194,7 @@ class Commitment extends \Google\Protobuf\Internal\Message
*/
protected $status = null;
/**
- * [Output Only] An optional, human-readable explanation of the status.
+ * Output only. [Output Only] An optional, human-readable explanation of the status.
*
* Generated from protobuf field optional string status_message = 297428154;
*/
@@ -205,12 +205,11 @@ class Commitment extends \Google\Protobuf\Internal\Message
* The choice of machine series affects the discount rate and the eligible
* resource types.
* The type must be one of the following:ACCELERATOR_OPTIMIZED, ACCELERATOR_OPTIMIZED_A3,ACCELERATOR_OPTIMIZED_A3_MEGA,COMPUTE_OPTIMIZED, COMPUTE_OPTIMIZED_C2D,
- * COMPUTE_OPTIMIZED_C3, COMPUTE_OPTIMIZED_C3D,COMPUTE_OPTIMIZED_H3, GENERAL_PURPOSE,GENERAL_PURPOSE_C4, GENERAL_PURPOSE_E2,GENERAL_PURPOSE_N2, GENERAL_PURPOSE_N2D,GENERAL_PURPOSE_N4, GENERAL_PURPOSE_T2D,GRAPHICS_OPTIMIZED, MEMORY_OPTIMIZED,MEMORY_OPTIMIZED_M3, MEMORY_OPTIMIZED_X4,STORAGE_OPTIMIZED_Z3.
- * For example, type MEMORY_OPTIMIZED specifies a commitment
- * that applies only to eligible resources of memory optimized M1 and M2
- * machine series. Type GENERAL_PURPOSE specifies a commitment
- * that applies only to eligible resources of general purpose N1 machine
- * series.
+ * COMPUTE_OPTIMIZED_C3, COMPUTE_OPTIMIZED_C3D,COMPUTE_OPTIMIZED_H3, GENERAL_PURPOSE,GENERAL_PURPOSE_C4, GENERAL_PURPOSE_E2,GENERAL_PURPOSE_N2, GENERAL_PURPOSE_N2D,GENERAL_PURPOSE_N4, GENERAL_PURPOSE_T2D,GRAPHICS_OPTIMIZED, GRAPHICS_OPTIMIZED_G4,MEMORY_OPTIMIZED, MEMORY_OPTIMIZED_M3,MEMORY_OPTIMIZED_X4, STORAGE_OPTIMIZED_Z3. For
+ * example, type MEMORY_OPTIMIZED specifies a commitment that
+ * applies only to eligible resources of memory optimized M1 and M2 machine
+ * series. Type GENERAL_PURPOSE specifies a commitment that
+ * applies only to eligible resources of general purpose N1 machine series.
* Check the Type enum for the list of possible values.
*
* Generated from protobuf field optional string type = 3575610;
@@ -242,7 +241,7 @@ class Commitment extends \Google\Protobuf\Internal\Message
* hardware resource that you are committing to.
* Check the Category enum for the list of possible values.
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $custom_end_timestamp
* [Input Only] Optional, specifies the requested commitment end time inRFC3339 text format. Use this option when the desired
@@ -251,14 +250,14 @@ class Commitment extends \Google\Protobuf\Internal\Message
* An optional description of the commitment. You can provide this property
* when you create the resource.
* @type string $end_timestamp
- * [Output Only] Commitment end time inRFC3339
+ * Output only. [Output Only] Commitment end time inRFC3339
* text format.
* @type array|\Google\Protobuf\Internal\RepeatedField $existing_reservations
* @type int|string $id
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type string $kind
- * [Output Only] Type of the resource. Always compute#commitment
+ * Output only. [Output Only] Type of the resource. Always compute#commitment
* for commitments.
* @type \Google\Cloud\Compute\V1\LicenseResourceCommitment $license_resource
* The license specification required as part of a license commitment.
@@ -283,7 +282,7 @@ class Commitment extends \Google\Protobuf\Internal\Message
* field are TWELVE_MONTH (1 year), andTHIRTY_SIX_MONTH (3 years).
* Check the Plan enum for the list of possible values.
* @type string $region
- * [Output Only] URL of the region where the commitment and committed
+ * Output only. [Output Only] URL of the region where the commitment and committed
* resources are located.
* @type array<\Google\Cloud\Compute\V1\Reservation>|\Google\Protobuf\Internal\RepeatedField $reservations
* The list of new reservations that you want to create and attach to this
@@ -294,39 +293,38 @@ class Commitment extends \Google\Protobuf\Internal\Message
* Specify this property only if you want to create new
* reservations to attach. To attach existing reservations, specify theexistingReservations property instead.
* @type \Google\Cloud\Compute\V1\CommitmentResourceStatus $resource_status
- * [Output Only] Status information for Commitment resource.
+ * Output only. [Output Only] Status information for Commitment resource.
* @type array<\Google\Cloud\Compute\V1\ResourceCommitment>|\Google\Protobuf\Internal\RepeatedField $resources
* The list of all the hardware resources, with their types and amounts, that
* you want to commit to. Specify as a separate entry in the list for each
* individual resource type.
* @type string $self_link
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
* @type string $split_source_commitment
* The source commitment from which you are transferring resources to create
* the new split commitment. For more information, see
* Split commitments.
* @type string $start_timestamp
- * [Output Only] Commitment start time inRFC3339
+ * Output only. [Output Only] Commitment start time inRFC3339
* text format.
* @type string $status
- * [Output Only] Status of the commitment with regards to eventual expiration
+ * Output only. [Output Only] Status of the commitment with regards to eventual expiration
* (each commitment has an end date defined). Status can be one of the
* following values: NOT_YET_ACTIVE, ACTIVE, orEXPIRED.
* Check the Status enum for the list of possible values.
* @type string $status_message
- * [Output Only] An optional, human-readable explanation of the status.
+ * Output only. [Output Only] An optional, human-readable explanation of the status.
* @type string $type
* The type of commitment; specifies the
* machine series for which you want to commit to purchasing resources.
* The choice of machine series affects the discount rate and the eligible
* resource types.
* The type must be one of the following:ACCELERATOR_OPTIMIZED, ACCELERATOR_OPTIMIZED_A3,ACCELERATOR_OPTIMIZED_A3_MEGA,COMPUTE_OPTIMIZED, COMPUTE_OPTIMIZED_C2D,
- * COMPUTE_OPTIMIZED_C3, COMPUTE_OPTIMIZED_C3D,COMPUTE_OPTIMIZED_H3, GENERAL_PURPOSE,GENERAL_PURPOSE_C4, GENERAL_PURPOSE_E2,GENERAL_PURPOSE_N2, GENERAL_PURPOSE_N2D,GENERAL_PURPOSE_N4, GENERAL_PURPOSE_T2D,GRAPHICS_OPTIMIZED, MEMORY_OPTIMIZED,MEMORY_OPTIMIZED_M3, MEMORY_OPTIMIZED_X4,STORAGE_OPTIMIZED_Z3.
- * For example, type MEMORY_OPTIMIZED specifies a commitment
- * that applies only to eligible resources of memory optimized M1 and M2
- * machine series. Type GENERAL_PURPOSE specifies a commitment
- * that applies only to eligible resources of general purpose N1 machine
- * series.
+ * COMPUTE_OPTIMIZED_C3, COMPUTE_OPTIMIZED_C3D,COMPUTE_OPTIMIZED_H3, GENERAL_PURPOSE,GENERAL_PURPOSE_C4, GENERAL_PURPOSE_E2,GENERAL_PURPOSE_N2, GENERAL_PURPOSE_N2D,GENERAL_PURPOSE_N4, GENERAL_PURPOSE_T2D,GRAPHICS_OPTIMIZED, GRAPHICS_OPTIMIZED_G4,MEMORY_OPTIMIZED, MEMORY_OPTIMIZED_M3,MEMORY_OPTIMIZED_X4, STORAGE_OPTIMIZED_Z3. For
+ * example, type MEMORY_OPTIMIZED specifies a commitment that
+ * applies only to eligible resources of memory optimized M1 and M2 machine
+ * series. Type GENERAL_PURPOSE specifies a commitment that
+ * applies only to eligible resources of general purpose N1 machine series.
* Check the Type enum for the list of possible values.
* }
*/
@@ -436,7 +434,7 @@ public function setCategory($var)
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -458,7 +456,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -550,7 +548,7 @@ public function setDescription($var)
}
/**
- * [Output Only] Commitment end time inRFC3339
+ * Output only. [Output Only] Commitment end time inRFC3339
* text format.
*
* Generated from protobuf field optional string end_timestamp = 468096690;
@@ -572,7 +570,7 @@ public function clearEndTimestamp()
}
/**
- * [Output Only] Commitment end time inRFC3339
+ * Output only. [Output Only] Commitment end time inRFC3339
* text format.
*
* Generated from protobuf field optional string end_timestamp = 468096690;
@@ -610,7 +608,7 @@ public function setExistingReservations($var)
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -632,7 +630,7 @@ public function clearId()
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -648,7 +646,7 @@ public function setId($var)
}
/**
- * [Output Only] Type of the resource. Always compute#commitment
+ * Output only. [Output Only] Type of the resource. Always compute#commitment
* for commitments.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -670,7 +668,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Always compute#commitment
+ * Output only. [Output Only] Type of the resource. Always compute#commitment
* for commitments.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -848,7 +846,7 @@ public function setPlan($var)
}
/**
- * [Output Only] URL of the region where the commitment and committed
+ * Output only. [Output Only] URL of the region where the commitment and committed
* resources are located.
*
* Generated from protobuf field optional string region = 138946292;
@@ -870,7 +868,7 @@ public function clearRegion()
}
/**
- * [Output Only] URL of the region where the commitment and committed
+ * Output only. [Output Only] URL of the region where the commitment and committed
* resources are located.
*
* Generated from protobuf field optional string region = 138946292;
@@ -924,7 +922,7 @@ public function setReservations($var)
}
/**
- * [Output Only] Status information for Commitment resource.
+ * Output only. [Output Only] Status information for Commitment resource.
*
* Generated from protobuf field optional .google.cloud.compute.v1.CommitmentResourceStatus resource_status = 249429315;
* @return \Google\Cloud\Compute\V1\CommitmentResourceStatus|null
@@ -945,7 +943,7 @@ public function clearResourceStatus()
}
/**
- * [Output Only] Status information for Commitment resource.
+ * Output only. [Output Only] Status information for Commitment resource.
*
* Generated from protobuf field optional .google.cloud.compute.v1.CommitmentResourceStatus resource_status = 249429315;
* @param \Google\Cloud\Compute\V1\CommitmentResourceStatus $var
@@ -990,7 +988,7 @@ public function setResources($var)
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -1011,7 +1009,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -1066,7 +1064,7 @@ public function setSplitSourceCommitment($var)
}
/**
- * [Output Only] Commitment start time inRFC3339
+ * Output only. [Output Only] Commitment start time inRFC3339
* text format.
*
* Generated from protobuf field optional string start_timestamp = 83645817;
@@ -1088,7 +1086,7 @@ public function clearStartTimestamp()
}
/**
- * [Output Only] Commitment start time inRFC3339
+ * Output only. [Output Only] Commitment start time inRFC3339
* text format.
*
* Generated from protobuf field optional string start_timestamp = 83645817;
@@ -1104,7 +1102,7 @@ public function setStartTimestamp($var)
}
/**
- * [Output Only] Status of the commitment with regards to eventual expiration
+ * Output only. [Output Only] Status of the commitment with regards to eventual expiration
* (each commitment has an end date defined). Status can be one of the
* following values: NOT_YET_ACTIVE, ACTIVE, orEXPIRED.
* Check the Status enum for the list of possible values.
@@ -1128,7 +1126,7 @@ public function clearStatus()
}
/**
- * [Output Only] Status of the commitment with regards to eventual expiration
+ * Output only. [Output Only] Status of the commitment with regards to eventual expiration
* (each commitment has an end date defined). Status can be one of the
* following values: NOT_YET_ACTIVE, ACTIVE, orEXPIRED.
* Check the Status enum for the list of possible values.
@@ -1146,7 +1144,7 @@ public function setStatus($var)
}
/**
- * [Output Only] An optional, human-readable explanation of the status.
+ * Output only. [Output Only] An optional, human-readable explanation of the status.
*
* Generated from protobuf field optional string status_message = 297428154;
* @return string
@@ -1167,7 +1165,7 @@ public function clearStatusMessage()
}
/**
- * [Output Only] An optional, human-readable explanation of the status.
+ * Output only. [Output Only] An optional, human-readable explanation of the status.
*
* Generated from protobuf field optional string status_message = 297428154;
* @param string $var
@@ -1187,12 +1185,11 @@ public function setStatusMessage($var)
* The choice of machine series affects the discount rate and the eligible
* resource types.
* The type must be one of the following:ACCELERATOR_OPTIMIZED, ACCELERATOR_OPTIMIZED_A3,ACCELERATOR_OPTIMIZED_A3_MEGA,COMPUTE_OPTIMIZED, COMPUTE_OPTIMIZED_C2D,
- * COMPUTE_OPTIMIZED_C3, COMPUTE_OPTIMIZED_C3D,COMPUTE_OPTIMIZED_H3, GENERAL_PURPOSE,GENERAL_PURPOSE_C4, GENERAL_PURPOSE_E2,GENERAL_PURPOSE_N2, GENERAL_PURPOSE_N2D,GENERAL_PURPOSE_N4, GENERAL_PURPOSE_T2D,GRAPHICS_OPTIMIZED, MEMORY_OPTIMIZED,MEMORY_OPTIMIZED_M3, MEMORY_OPTIMIZED_X4,STORAGE_OPTIMIZED_Z3.
- * For example, type MEMORY_OPTIMIZED specifies a commitment
- * that applies only to eligible resources of memory optimized M1 and M2
- * machine series. Type GENERAL_PURPOSE specifies a commitment
- * that applies only to eligible resources of general purpose N1 machine
- * series.
+ * COMPUTE_OPTIMIZED_C3, COMPUTE_OPTIMIZED_C3D,COMPUTE_OPTIMIZED_H3, GENERAL_PURPOSE,GENERAL_PURPOSE_C4, GENERAL_PURPOSE_E2,GENERAL_PURPOSE_N2, GENERAL_PURPOSE_N2D,GENERAL_PURPOSE_N4, GENERAL_PURPOSE_T2D,GRAPHICS_OPTIMIZED, GRAPHICS_OPTIMIZED_G4,MEMORY_OPTIMIZED, MEMORY_OPTIMIZED_M3,MEMORY_OPTIMIZED_X4, STORAGE_OPTIMIZED_Z3. For
+ * example, type MEMORY_OPTIMIZED specifies a commitment that
+ * applies only to eligible resources of memory optimized M1 and M2 machine
+ * series. Type GENERAL_PURPOSE specifies a commitment that
+ * applies only to eligible resources of general purpose N1 machine series.
* Check the Type enum for the list of possible values.
*
* Generated from protobuf field optional string type = 3575610;
@@ -1219,12 +1216,11 @@ public function clearType()
* The choice of machine series affects the discount rate and the eligible
* resource types.
* The type must be one of the following:ACCELERATOR_OPTIMIZED, ACCELERATOR_OPTIMIZED_A3,ACCELERATOR_OPTIMIZED_A3_MEGA,COMPUTE_OPTIMIZED, COMPUTE_OPTIMIZED_C2D,
- * COMPUTE_OPTIMIZED_C3, COMPUTE_OPTIMIZED_C3D,COMPUTE_OPTIMIZED_H3, GENERAL_PURPOSE,GENERAL_PURPOSE_C4, GENERAL_PURPOSE_E2,GENERAL_PURPOSE_N2, GENERAL_PURPOSE_N2D,GENERAL_PURPOSE_N4, GENERAL_PURPOSE_T2D,GRAPHICS_OPTIMIZED, MEMORY_OPTIMIZED,MEMORY_OPTIMIZED_M3, MEMORY_OPTIMIZED_X4,STORAGE_OPTIMIZED_Z3.
- * For example, type MEMORY_OPTIMIZED specifies a commitment
- * that applies only to eligible resources of memory optimized M1 and M2
- * machine series. Type GENERAL_PURPOSE specifies a commitment
- * that applies only to eligible resources of general purpose N1 machine
- * series.
+ * COMPUTE_OPTIMIZED_C3, COMPUTE_OPTIMIZED_C3D,COMPUTE_OPTIMIZED_H3, GENERAL_PURPOSE,GENERAL_PURPOSE_C4, GENERAL_PURPOSE_E2,GENERAL_PURPOSE_N2, GENERAL_PURPOSE_N2D,GENERAL_PURPOSE_N4, GENERAL_PURPOSE_T2D,GRAPHICS_OPTIMIZED, GRAPHICS_OPTIMIZED_G4,MEMORY_OPTIMIZED, MEMORY_OPTIMIZED_M3,MEMORY_OPTIMIZED_X4, STORAGE_OPTIMIZED_Z3. For
+ * example, type MEMORY_OPTIMIZED specifies a commitment that
+ * applies only to eligible resources of memory optimized M1 and M2 machine
+ * series. Type GENERAL_PURPOSE specifies a commitment that
+ * applies only to eligible resources of general purpose N1 machine series.
* Check the Type enum for the list of possible values.
*
* Generated from protobuf field optional string type = 3575610;
diff --git a/Compute/src/V1/Commitment/Status.php b/Compute/src/V1/Commitment/Status.php
index 28a10f7a9ddd..7be6b7ed7467 100644
--- a/Compute/src/V1/Commitment/Status.php
+++ b/Compute/src/V1/Commitment/Status.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] Status of the commitment with regards to eventual expiration
+ * Output only. [Output Only] Status of the commitment with regards to eventual expiration
* (each commitment has an end date defined). Status can be one of the
* following values: NOT_YET_ACTIVE, ACTIVE, orEXPIRED.
*
diff --git a/Compute/src/V1/Commitment/Type.php b/Compute/src/V1/Commitment/Type.php
index c4028d6fcd4b..2e1cc1676a64 100644
--- a/Compute/src/V1/Commitment/Type.php
+++ b/Compute/src/V1/Commitment/Type.php
@@ -12,12 +12,11 @@
* The choice of machine series affects the discount rate and the eligible
* resource types.
* The type must be one of the following:ACCELERATOR_OPTIMIZED, ACCELERATOR_OPTIMIZED_A3,ACCELERATOR_OPTIMIZED_A3_MEGA,COMPUTE_OPTIMIZED, COMPUTE_OPTIMIZED_C2D,
- * COMPUTE_OPTIMIZED_C3, COMPUTE_OPTIMIZED_C3D,COMPUTE_OPTIMIZED_H3, GENERAL_PURPOSE,GENERAL_PURPOSE_C4, GENERAL_PURPOSE_E2,GENERAL_PURPOSE_N2, GENERAL_PURPOSE_N2D,GENERAL_PURPOSE_N4, GENERAL_PURPOSE_T2D,GRAPHICS_OPTIMIZED, MEMORY_OPTIMIZED,MEMORY_OPTIMIZED_M3, MEMORY_OPTIMIZED_X4,STORAGE_OPTIMIZED_Z3.
- * For example, type MEMORY_OPTIMIZED specifies a commitment
- * that applies only to eligible resources of memory optimized M1 and M2
- * machine series. Type GENERAL_PURPOSE specifies a commitment
- * that applies only to eligible resources of general purpose N1 machine
- * series.
+ * COMPUTE_OPTIMIZED_C3, COMPUTE_OPTIMIZED_C3D,COMPUTE_OPTIMIZED_H3, GENERAL_PURPOSE,GENERAL_PURPOSE_C4, GENERAL_PURPOSE_E2,GENERAL_PURPOSE_N2, GENERAL_PURPOSE_N2D,GENERAL_PURPOSE_N4, GENERAL_PURPOSE_T2D,GRAPHICS_OPTIMIZED, GRAPHICS_OPTIMIZED_G4,MEMORY_OPTIMIZED, MEMORY_OPTIMIZED_M3,MEMORY_OPTIMIZED_X4, STORAGE_OPTIMIZED_Z3. For
+ * example, type MEMORY_OPTIMIZED specifies a commitment that
+ * applies only to eligible resources of memory optimized M1 and M2 machine
+ * series. Type GENERAL_PURPOSE specifies a commitment that
+ * applies only to eligible resources of general purpose N1 machine series.
*
* Protobuf type google.cloud.compute.v1.Commitment.Type
*/
@@ -117,6 +116,10 @@ class Type
* Generated from protobuf enum GRAPHICS_OPTIMIZED = 68500563;
*/
const GRAPHICS_OPTIMIZED = 68500563;
+ /**
+ * Generated from protobuf enum GRAPHICS_OPTIMIZED_G4 = 54029369;
+ */
+ const GRAPHICS_OPTIMIZED_G4 = 54029369;
/**
* Generated from protobuf enum MEMORY_OPTIMIZED = 281753417;
*/
@@ -182,6 +185,7 @@ class Type
self::GENERAL_PURPOSE_N4D => 'GENERAL_PURPOSE_N4D',
self::GENERAL_PURPOSE_T2D => 'GENERAL_PURPOSE_T2D',
self::GRAPHICS_OPTIMIZED => 'GRAPHICS_OPTIMIZED',
+ self::GRAPHICS_OPTIMIZED_G4 => 'GRAPHICS_OPTIMIZED_G4',
self::MEMORY_OPTIMIZED => 'MEMORY_OPTIMIZED',
self::MEMORY_OPTIMIZED_M3 => 'MEMORY_OPTIMIZED_M3',
self::MEMORY_OPTIMIZED_M4 => 'MEMORY_OPTIMIZED_M4',
diff --git a/Compute/src/V1/CommitmentAggregatedList.php b/Compute/src/V1/CommitmentAggregatedList.php
index 7ec02e8732d9..c53e476e2989 100644
--- a/Compute/src/V1/CommitmentAggregatedList.php
+++ b/Compute/src/V1/CommitmentAggregatedList.php
@@ -27,7 +27,7 @@ class CommitmentAggregatedList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Alwayscompute#commitmentAggregatedList for aggregated lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#commitmentAggregatedList for aggregated lists of
* commitments.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -44,13 +44,13 @@ class CommitmentAggregatedList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
@@ -73,7 +73,7 @@ class CommitmentAggregatedList extends \Google\Protobuf\Internal\Message
* @type array|\Google\Protobuf\Internal\MapField $items
* A list of CommitmentsScopedList resources.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#commitmentAggregatedList for aggregated lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#commitmentAggregatedList for aggregated lists of
* commitments.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -82,9 +82,9 @@ class CommitmentAggregatedList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -157,7 +157,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#commitmentAggregatedList for aggregated lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#commitmentAggregatedList for aggregated lists of
* commitments.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -179,7 +179,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#commitmentAggregatedList for aggregated lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#commitmentAggregatedList for aggregated lists of
* commitments.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -239,7 +239,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -260,7 +260,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -275,7 +275,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -286,7 +286,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/CommitmentList.php b/Compute/src/V1/CommitmentList.php
index 11be8e9f9858..bd80a5516e94 100644
--- a/Compute/src/V1/CommitmentList.php
+++ b/Compute/src/V1/CommitmentList.php
@@ -28,7 +28,7 @@ class CommitmentList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Always compute#commitmentList
+ * Output only. [Output Only] Type of resource. Always compute#commitmentList
* for lists of commitments.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -45,7 +45,7 @@ class CommitmentList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -68,7 +68,7 @@ class CommitmentList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\Commitment>|\Google\Protobuf\Internal\RepeatedField $items
* A list of Commitment resources.
* @type string $kind
- * [Output Only] Type of resource. Always compute#commitmentList
+ * Output only. [Output Only] Type of resource. Always compute#commitmentList
* for lists of commitments.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -77,7 +77,7 @@ class CommitmentList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -150,7 +150,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Always compute#commitmentList
+ * Output only. [Output Only] Type of resource. Always compute#commitmentList
* for lists of commitments.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -172,7 +172,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Always compute#commitmentList
+ * Output only. [Output Only] Type of resource. Always compute#commitmentList
* for lists of commitments.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -232,7 +232,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -253,7 +253,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/CommitmentResourceStatus.php b/Compute/src/V1/CommitmentResourceStatus.php
index 39be8e2a92ac..8b2847f692c3 100644
--- a/Compute/src/V1/CommitmentResourceStatus.php
+++ b/Compute/src/V1/CommitmentResourceStatus.php
@@ -16,7 +16,7 @@
class CommitmentResourceStatus extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Indicates the end time of customer's eligibility to send
+ * Output only. [Output Only] Indicates the end time of customer's eligibility to send
* custom term requests in RFC3339 text format. Term extension requests that
* (not the end time in the request) after this time will be rejected.
*
@@ -31,7 +31,7 @@ class CommitmentResourceStatus extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $custom_term_eligibility_end_timestamp
- * [Output Only] Indicates the end time of customer's eligibility to send
+ * Output only. [Output Only] Indicates the end time of customer's eligibility to send
* custom term requests in RFC3339 text format. Term extension requests that
* (not the end time in the request) after this time will be rejected.
* }
@@ -42,7 +42,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Indicates the end time of customer's eligibility to send
+ * Output only. [Output Only] Indicates the end time of customer's eligibility to send
* custom term requests in RFC3339 text format. Term extension requests that
* (not the end time in the request) after this time will be rejected.
*
@@ -65,7 +65,7 @@ public function clearCustomTermEligibilityEndTimestamp()
}
/**
- * [Output Only] Indicates the end time of customer's eligibility to send
+ * Output only. [Output Only] Indicates the end time of customer's eligibility to send
* custom term requests in RFC3339 text format. Term extension requests that
* (not the end time in the request) after this time will be rejected.
*
diff --git a/Compute/src/V1/CrossSiteNetwork.php b/Compute/src/V1/CrossSiteNetwork.php
index ae32e1713bd7..601568dc225d 100644
--- a/Compute/src/V1/CrossSiteNetwork.php
+++ b/Compute/src/V1/CrossSiteNetwork.php
@@ -18,7 +18,7 @@
class CrossSiteNetwork extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -31,14 +31,14 @@ class CrossSiteNetwork extends \Google\Protobuf\Internal\Message
*/
protected $description = null;
/**
- * [Output Only] The unique identifier for the resource type. The server
+ * Output only. [Output Only] The unique identifier for the resource type. The server
* generates this identifier.
*
* Generated from protobuf field optional uint64 id = 3355;
*/
protected $id = null;
/**
- * [Output Only] Type of the resource. Alwayscompute#crossSiteNetwork for cross-site networks.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#crossSiteNetwork for cross-site networks.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -56,7 +56,7 @@ class CrossSiteNetwork extends \Google\Protobuf\Internal\Message
*/
protected $name = null;
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -69,15 +69,15 @@ class CrossSiteNetwork extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $description
* An optional description of the cross-site network.
* @type int|string $id
- * [Output Only] The unique identifier for the resource type. The server
+ * Output only. [Output Only] The unique identifier for the resource type. The server
* generates this identifier.
* @type string $kind
- * [Output Only] Type of the resource. Alwayscompute#crossSiteNetwork for cross-site networks.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#crossSiteNetwork for cross-site networks.
* @type string $name
* Name of the resource. Provided by the client when the resource is created.
* The name must be 1-63 characters long, and comply withRFC1035.
@@ -87,7 +87,7 @@ class CrossSiteNetwork extends \Google\Protobuf\Internal\Message
* be a dash, lowercase letter, or digit, except the last character, which
* cannot be a dash.
* @type string $self_link
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
* }
*/
public function __construct($data = NULL) {
@@ -96,7 +96,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -118,7 +118,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -170,7 +170,7 @@ public function setDescription($var)
}
/**
- * [Output Only] The unique identifier for the resource type. The server
+ * Output only. [Output Only] The unique identifier for the resource type. The server
* generates this identifier.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -192,7 +192,7 @@ public function clearId()
}
/**
- * [Output Only] The unique identifier for the resource type. The server
+ * Output only. [Output Only] The unique identifier for the resource type. The server
* generates this identifier.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -208,7 +208,7 @@ public function setId($var)
}
/**
- * [Output Only] Type of the resource. Alwayscompute#crossSiteNetwork for cross-site networks.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#crossSiteNetwork for cross-site networks.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -229,7 +229,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Alwayscompute#crossSiteNetwork for cross-site networks.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#crossSiteNetwork for cross-site networks.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -292,7 +292,7 @@ public function setName($var)
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -313,7 +313,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/CrossSiteNetworkList.php b/Compute/src/V1/CrossSiteNetworkList.php
index 70d1d27a77de..5a7f049a655e 100644
--- a/Compute/src/V1/CrossSiteNetworkList.php
+++ b/Compute/src/V1/CrossSiteNetworkList.php
@@ -32,7 +32,7 @@ class CrossSiteNetworkList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of the resource. Alwayscompute#crossSiteNetwork for cross-site networks.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#crossSiteNetwork for cross-site networks.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -54,7 +54,7 @@ class CrossSiteNetworkList extends \Google\Protobuf\Internal\Message
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* end_interface: MixerListResponseWithEtagBuilder
*
* Generated from protobuf field repeated string unreachables = 243372063;
@@ -79,7 +79,7 @@ class CrossSiteNetworkList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\CrossSiteNetwork>|\Google\Protobuf\Internal\RepeatedField $items
* A list of CrossSiteNetwork resources.
* @type string $kind
- * [Output Only] Type of the resource. Alwayscompute#crossSiteNetwork for cross-site networks.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#crossSiteNetwork for cross-site networks.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -89,7 +89,7 @@ class CrossSiteNetworkList extends \Google\Protobuf\Internal\Message
* @type string $self_link
* [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* end_interface: MixerListResponseWithEtagBuilder
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
@@ -195,7 +195,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of the resource. Alwayscompute#crossSiteNetwork for cross-site networks.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#crossSiteNetwork for cross-site networks.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -216,7 +216,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Alwayscompute#crossSiteNetwork for cross-site networks.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#crossSiteNetwork for cross-site networks.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -311,7 +311,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* end_interface: MixerListResponseWithEtagBuilder
*
* Generated from protobuf field repeated string unreachables = 243372063;
@@ -323,7 +323,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* end_interface: MixerListResponseWithEtagBuilder
*
* Generated from protobuf field repeated string unreachables = 243372063;
diff --git a/Compute/src/V1/Disk.php b/Compute/src/V1/Disk.php
index 0d33ac366a5c..524ac238d050 100644
--- a/Compute/src/V1/Disk.php
+++ b/Compute/src/V1/Disk.php
@@ -56,13 +56,13 @@ class Disk extends \Google\Protobuf\Internal\Message
*/
protected $async_primary_disk = null;
/**
- * [Output Only] A list of disks this disk is asynchronously replicated to.
+ * Output only. [Output Only] A list of disks this disk is asynchronously replicated to.
*
* Generated from protobuf field map async_secondary_disks = 322925608;
*/
private $async_secondary_disks;
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -115,14 +115,14 @@ class Disk extends \Google\Protobuf\Internal\Message
*/
private $guest_os_features;
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
*/
protected $id = null;
/**
- * [Output Only] Type of the resource. Always compute#disk for
+ * Output only. [Output Only] Type of the resource. Always compute#disk for
* disks.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -149,14 +149,14 @@ class Disk extends \Google\Protobuf\Internal\Message
*/
private $labels;
/**
- * [Output Only] Last attach timestamp inRFC3339
+ * Output only. [Output Only] Last attach timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string last_attach_timestamp = 42159653;
*/
protected $last_attach_timestamp = null;
/**
- * [Output Only] Last detach timestamp inRFC3339
+ * Output only. [Output Only] Last detach timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string last_detach_timestamp = 56471027;
@@ -235,7 +235,7 @@ class Disk extends \Google\Protobuf\Internal\Message
*/
protected $provisioned_throughput = null;
/**
- * [Output Only] URL of the region where the disk resides. Only applicable for
+ * Output only. [Output Only] URL of the region where the disk resides. Only applicable for
* regional resources.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
@@ -257,7 +257,7 @@ class Disk extends \Google\Protobuf\Internal\Message
*/
private $resource_policies;
/**
- * [Output Only] Status information for the disk resource.
+ * Output only. [Output Only] Status information for the disk resource.
*
* Generated from protobuf field optional .google.cloud.compute.v1.DiskResourceStatus resource_status = 249429315;
*/
@@ -269,13 +269,13 @@ class Disk extends \Google\Protobuf\Internal\Message
*/
protected $satisfies_pzi = null;
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool satisfies_pzs = 480964267;
*/
protected $satisfies_pzs = null;
/**
- * [Output Only] Server-defined fully-qualified URL for this resource.
+ * Output only. [Output Only] Server-defined fully-qualified URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -292,14 +292,14 @@ class Disk extends \Google\Protobuf\Internal\Message
*/
protected $size_gb = null;
/**
- * [Output Only] URL of the DiskConsistencyGroupPolicy for a secondary disk
+ * Output only. [Output Only] URL of the DiskConsistencyGroupPolicy for a secondary disk
* that was created using a consistency group.
*
* Generated from protobuf field optional string source_consistency_group_policy = 19616093;
*/
protected $source_consistency_group_policy = null;
/**
- * [Output Only] ID of the DiskConsistencyGroupPolicy for a secondary disk
+ * Output only. [Output Only] ID of the DiskConsistencyGroupPolicy for a secondary disk
* that was created using a consistency group.
*
* Generated from protobuf field optional string source_consistency_group_policy_id = 267568957;
@@ -326,7 +326,7 @@ class Disk extends \Google\Protobuf\Internal\Message
*/
protected $source_disk = null;
/**
- * [Output Only] The unique ID of the disk used to create this disk. This
+ * Output only. [Output Only] The unique ID of the disk used to create this disk. This
* value identifies the exact disk that was used to create this persistent
* disk. For example, if you created the persistent disk from a disk that
* was later deleted and recreated under the same name, the source disk ID
@@ -363,7 +363,7 @@ class Disk extends \Google\Protobuf\Internal\Message
*/
protected $source_image_encryption_key = null;
/**
- * [Output Only] The ID value of the image used to create this disk. This
+ * Output only. [Output Only] The ID value of the image used to create this disk. This
* value identifies the exact image that was used to create this persistent
* disk. For example, if you created the persistent disk from an image that
* was later deleted and recreated under the same name, the source image ID
@@ -384,7 +384,7 @@ class Disk extends \Google\Protobuf\Internal\Message
*/
protected $source_instant_snapshot = null;
/**
- * [Output Only] The unique ID of the instant snapshot used to create this
+ * Output only. [Output Only] The unique ID of the instant snapshot used to create this
* disk. This value identifies the exact instant snapshot that was used to
* create this persistent disk. For example, if you created the persistent
* disk from an instant snapshot that was later deleted and recreated under
@@ -414,7 +414,7 @@ class Disk extends \Google\Protobuf\Internal\Message
*/
protected $source_snapshot_encryption_key = null;
/**
- * [Output Only] The unique ID of the snapshot used to create this disk. This
+ * Output only. [Output Only] The unique ID of the snapshot used to create this disk. This
* value identifies the exact snapshot that was used to create this persistent
* disk. For example, if you created the persistent disk from a snapshot that
* was later deleted and recreated under the same name, the source snapshot ID
@@ -436,7 +436,7 @@ class Disk extends \Google\Protobuf\Internal\Message
*/
protected $source_storage_object = null;
/**
- * [Output Only] The status of disk creation.
+ * Output only. [Output Only] The status of disk creation.
* - CREATING: Disk is provisioning.
* - RESTORING: Source data is being copied into the
* disk.
@@ -468,14 +468,14 @@ class Disk extends \Google\Protobuf\Internal\Message
*/
protected $type = null;
/**
- * [Output Only] Links to the users of the disk (attached instances)
+ * Output only. [Output Only] Links to the users of the disk (attached instances)
* in form:projects/project/zones/zone/instances/instance
*
* Generated from protobuf field repeated string users = 111578632;
*/
private $users;
/**
- * [Output Only] URL of the zone where the disk resides.
+ * Output only. [Output Only] URL of the zone where the disk resides.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
*
@@ -506,9 +506,9 @@ class Disk extends \Google\Protobuf\Internal\Message
* @type \Google\Cloud\Compute\V1\DiskAsyncReplication $async_primary_disk
* Disk asynchronously replicated into this disk.
* @type array|\Google\Protobuf\Internal\MapField $async_secondary_disks
- * [Output Only] A list of disks this disk is asynchronously replicated to.
+ * Output only. [Output Only] A list of disks this disk is asynchronously replicated to.
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $description
* An optional description of this resource. Provide this property when you
@@ -541,10 +541,10 @@ class Disk extends \Google\Protobuf\Internal\Message
* Enabling guest operating system features to see a list of available
* options.
* @type int|string $id
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type string $kind
- * [Output Only] Type of the resource. Always compute#disk for
+ * Output only. [Output Only] Type of the resource. Always compute#disk for
* disks.
* @type string $label_fingerprint
* A fingerprint for the labels being applied to this disk, which is
@@ -559,10 +559,10 @@ class Disk extends \Google\Protobuf\Internal\Message
* Labels to apply to this disk. These can be later modified by
* the setLabels method.
* @type string $last_attach_timestamp
- * [Output Only] Last attach timestamp inRFC3339
+ * Output only. [Output Only] Last attach timestamp inRFC3339
* text format.
* @type string $last_detach_timestamp
- * [Output Only] Last detach timestamp inRFC3339
+ * Output only. [Output Only] Last detach timestamp inRFC3339
* text format.
* @type array|array|\Google\Protobuf\Internal\RepeatedField $license_codes
* Integer license codes indicating which licenses are attached to this disk.
@@ -601,7 +601,7 @@ class Disk extends \Google\Protobuf\Internal\Message
* number of throughput mb per second that the disk can handle. Values must be
* greater than or equal to 1.
* @type string $region
- * [Output Only] URL of the region where the disk resides. Only applicable for
+ * Output only. [Output Only] URL of the region where the disk resides. Only applicable for
* regional resources.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
@@ -611,13 +611,13 @@ class Disk extends \Google\Protobuf\Internal\Message
* @type array|\Google\Protobuf\Internal\RepeatedField $resource_policies
* Resource policies applied to this disk for automatic snapshot creations.
* @type \Google\Cloud\Compute\V1\DiskResourceStatus $resource_status
- * [Output Only] Status information for the disk resource.
+ * Output only. [Output Only] Status information for the disk resource.
* @type bool $satisfies_pzi
* Output only. Reserved for future use.
* @type bool $satisfies_pzs
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
* @type string $self_link
- * [Output Only] Server-defined fully-qualified URL for this resource.
+ * Output only. [Output Only] Server-defined fully-qualified URL for this resource.
* @type int|string $size_gb
* Size, in GB, of the persistent disk. You can specify
* this field when creating a persistent disk using thesourceImage, sourceSnapshot, orsourceDisk parameter, or specify it alone to create an empty
@@ -626,10 +626,10 @@ class Disk extends \Google\Protobuf\Internal\Message
* source.
* Acceptable values are greater than 0.
* @type string $source_consistency_group_policy
- * [Output Only] URL of the DiskConsistencyGroupPolicy for a secondary disk
+ * Output only. [Output Only] URL of the DiskConsistencyGroupPolicy for a secondary disk
* that was created using a consistency group.
* @type string $source_consistency_group_policy_id
- * [Output Only] ID of the DiskConsistencyGroupPolicy for a secondary disk
+ * Output only. [Output Only] ID of the DiskConsistencyGroupPolicy for a secondary disk
* that was created using a consistency group.
* @type string $source_disk
* The source disk used to create this disk. You can provide this as a
@@ -648,7 +648,7 @@ class Disk extends \Google\Protobuf\Internal\Message
* -
* regions/region/disks/disk
* @type string $source_disk_id
- * [Output Only] The unique ID of the disk used to create this disk. This
+ * Output only. [Output Only] The unique ID of the disk used to create this disk. This
* value identifies the exact disk that was used to create this persistent
* disk. For example, if you created the persistent disk from a disk that
* was later deleted and recreated under the same name, the source disk ID
@@ -673,7 +673,7 @@ class Disk extends \Google\Protobuf\Internal\Message
* encryption key of the source image. Required if the source image is
* protected by a customer-supplied encryption key.
* @type string $source_image_id
- * [Output Only] The ID value of the image used to create this disk. This
+ * Output only. [Output Only] The ID value of the image used to create this disk. This
* value identifies the exact image that was used to create this persistent
* disk. For example, if you created the persistent disk from an image that
* was later deleted and recreated under the same name, the source image ID
@@ -686,7 +686,7 @@ class Disk extends \Google\Protobuf\Internal\Message
* - projects/project/zones/zone/instantSnapshots/instantSnapshot
* - zones/zone/instantSnapshots/instantSnapshot
* @type string $source_instant_snapshot_id
- * [Output Only] The unique ID of the instant snapshot used to create this
+ * Output only. [Output Only] The unique ID of the instant snapshot used to create this
* disk. This value identifies the exact instant snapshot that was used to
* create this persistent disk. For example, if you created the persistent
* disk from an instant snapshot that was later deleted and recreated under
@@ -704,7 +704,7 @@ class Disk extends \Google\Protobuf\Internal\Message
* encryption key of the source snapshot. Required if the source snapshot
* is protected by a customer-supplied encryption key.
* @type string $source_snapshot_id
- * [Output Only] The unique ID of the snapshot used to create this disk. This
+ * Output only. [Output Only] The unique ID of the snapshot used to create this disk. This
* value identifies the exact snapshot that was used to create this persistent
* disk. For example, if you created the persistent disk from a snapshot that
* was later deleted and recreated under the same name, the source snapshot ID
@@ -718,7 +718,7 @@ class Disk extends \Google\Protobuf\Internal\Message
* source storage object, use gcloud compute images
* import instead.
* @type string $status
- * [Output Only] The status of disk creation.
+ * Output only. [Output Only] The status of disk creation.
* - CREATING: Disk is provisioning.
* - RESTORING: Source data is being copied into the
* disk.
@@ -738,10 +738,10 @@ class Disk extends \Google\Protobuf\Internal\Message
* the disk. Provide this when creating the disk. For example:projects/project/zones/zone/diskTypes/pd-ssd. See Persistent disk
* types.
* @type array|\Google\Protobuf\Internal\RepeatedField $users
- * [Output Only] Links to the users of the disk (attached instances)
+ * Output only. [Output Only] Links to the users of the disk (attached instances)
* in form:projects/project/zones/zone/instances/instance
* @type string $zone
- * [Output Only] URL of the zone where the disk resides.
+ * Output only. [Output Only] URL of the zone where the disk resides.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
* }
@@ -880,7 +880,7 @@ public function setAsyncPrimaryDisk($var)
}
/**
- * [Output Only] A list of disks this disk is asynchronously replicated to.
+ * Output only. [Output Only] A list of disks this disk is asynchronously replicated to.
*
* Generated from protobuf field map async_secondary_disks = 322925608;
* @return \Google\Protobuf\Internal\MapField
@@ -891,7 +891,7 @@ public function getAsyncSecondaryDisks()
}
/**
- * [Output Only] A list of disks this disk is asynchronously replicated to.
+ * Output only. [Output Only] A list of disks this disk is asynchronously replicated to.
*
* Generated from protobuf field map async_secondary_disks = 322925608;
* @param array|\Google\Protobuf\Internal\MapField $var
@@ -906,7 +906,7 @@ public function setAsyncSecondaryDisks($var)
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -928,7 +928,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -1122,7 +1122,7 @@ public function setGuestOsFeatures($var)
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -1144,7 +1144,7 @@ public function clearId()
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -1160,7 +1160,7 @@ public function setId($var)
}
/**
- * [Output Only] Type of the resource. Always compute#disk for
+ * Output only. [Output Only] Type of the resource. Always compute#disk for
* disks.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -1182,7 +1182,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Always compute#disk for
+ * Output only. [Output Only] Type of the resource. Always compute#disk for
* disks.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -1276,7 +1276,7 @@ public function setLabels($var)
}
/**
- * [Output Only] Last attach timestamp inRFC3339
+ * Output only. [Output Only] Last attach timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string last_attach_timestamp = 42159653;
@@ -1298,7 +1298,7 @@ public function clearLastAttachTimestamp()
}
/**
- * [Output Only] Last attach timestamp inRFC3339
+ * Output only. [Output Only] Last attach timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string last_attach_timestamp = 42159653;
@@ -1314,7 +1314,7 @@ public function setLastAttachTimestamp($var)
}
/**
- * [Output Only] Last detach timestamp inRFC3339
+ * Output only. [Output Only] Last detach timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string last_detach_timestamp = 56471027;
@@ -1336,7 +1336,7 @@ public function clearLastDetachTimestamp()
}
/**
- * [Output Only] Last detach timestamp inRFC3339
+ * Output only. [Output Only] Last detach timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string last_detach_timestamp = 56471027;
@@ -1692,7 +1692,7 @@ public function setProvisionedThroughput($var)
}
/**
- * [Output Only] URL of the region where the disk resides. Only applicable for
+ * Output only. [Output Only] URL of the region where the disk resides. Only applicable for
* regional resources.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
@@ -1716,7 +1716,7 @@ public function clearRegion()
}
/**
- * [Output Only] URL of the region where the disk resides. Only applicable for
+ * Output only. [Output Only] URL of the region where the disk resides. Only applicable for
* regional resources.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
@@ -1788,7 +1788,7 @@ public function setResourcePolicies($var)
}
/**
- * [Output Only] Status information for the disk resource.
+ * Output only. [Output Only] Status information for the disk resource.
*
* Generated from protobuf field optional .google.cloud.compute.v1.DiskResourceStatus resource_status = 249429315;
* @return \Google\Cloud\Compute\V1\DiskResourceStatus|null
@@ -1809,7 +1809,7 @@ public function clearResourceStatus()
}
/**
- * [Output Only] Status information for the disk resource.
+ * Output only. [Output Only] Status information for the disk resource.
*
* Generated from protobuf field optional .google.cloud.compute.v1.DiskResourceStatus resource_status = 249429315;
* @param \Google\Cloud\Compute\V1\DiskResourceStatus $var
@@ -1860,7 +1860,7 @@ public function setSatisfiesPzi($var)
}
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool satisfies_pzs = 480964267;
* @return bool
@@ -1881,7 +1881,7 @@ public function clearSatisfiesPzs()
}
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool satisfies_pzs = 480964267;
* @param bool $var
@@ -1896,7 +1896,7 @@ public function setSatisfiesPzs($var)
}
/**
- * [Output Only] Server-defined fully-qualified URL for this resource.
+ * Output only. [Output Only] Server-defined fully-qualified URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -1917,7 +1917,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined fully-qualified URL for this resource.
+ * Output only. [Output Only] Server-defined fully-qualified URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -1978,7 +1978,7 @@ public function setSizeGb($var)
}
/**
- * [Output Only] URL of the DiskConsistencyGroupPolicy for a secondary disk
+ * Output only. [Output Only] URL of the DiskConsistencyGroupPolicy for a secondary disk
* that was created using a consistency group.
*
* Generated from protobuf field optional string source_consistency_group_policy = 19616093;
@@ -2000,7 +2000,7 @@ public function clearSourceConsistencyGroupPolicy()
}
/**
- * [Output Only] URL of the DiskConsistencyGroupPolicy for a secondary disk
+ * Output only. [Output Only] URL of the DiskConsistencyGroupPolicy for a secondary disk
* that was created using a consistency group.
*
* Generated from protobuf field optional string source_consistency_group_policy = 19616093;
@@ -2016,7 +2016,7 @@ public function setSourceConsistencyGroupPolicy($var)
}
/**
- * [Output Only] ID of the DiskConsistencyGroupPolicy for a secondary disk
+ * Output only. [Output Only] ID of the DiskConsistencyGroupPolicy for a secondary disk
* that was created using a consistency group.
*
* Generated from protobuf field optional string source_consistency_group_policy_id = 267568957;
@@ -2038,7 +2038,7 @@ public function clearSourceConsistencyGroupPolicyId()
}
/**
- * [Output Only] ID of the DiskConsistencyGroupPolicy for a secondary disk
+ * Output only. [Output Only] ID of the DiskConsistencyGroupPolicy for a secondary disk
* that was created using a consistency group.
*
* Generated from protobuf field optional string source_consistency_group_policy_id = 267568957;
@@ -2118,7 +2118,7 @@ public function setSourceDisk($var)
}
/**
- * [Output Only] The unique ID of the disk used to create this disk. This
+ * Output only. [Output Only] The unique ID of the disk used to create this disk. This
* value identifies the exact disk that was used to create this persistent
* disk. For example, if you created the persistent disk from a disk that
* was later deleted and recreated under the same name, the source disk ID
@@ -2143,7 +2143,7 @@ public function clearSourceDiskId()
}
/**
- * [Output Only] The unique ID of the disk used to create this disk. This
+ * Output only. [Output Only] The unique ID of the disk used to create this disk. This
* value identifies the exact disk that was used to create this persistent
* disk. For example, if you created the persistent disk from a disk that
* was later deleted and recreated under the same name, the source disk ID
@@ -2264,7 +2264,7 @@ public function setSourceImageEncryptionKey($var)
}
/**
- * [Output Only] The ID value of the image used to create this disk. This
+ * Output only. [Output Only] The ID value of the image used to create this disk. This
* value identifies the exact image that was used to create this persistent
* disk. For example, if you created the persistent disk from an image that
* was later deleted and recreated under the same name, the source image ID
@@ -2289,7 +2289,7 @@ public function clearSourceImageId()
}
/**
- * [Output Only] The ID value of the image used to create this disk. This
+ * Output only. [Output Only] The ID value of the image used to create this disk. This
* value identifies the exact image that was used to create this persistent
* disk. For example, if you created the persistent disk from an image that
* was later deleted and recreated under the same name, the source image ID
@@ -2354,7 +2354,7 @@ public function setSourceInstantSnapshot($var)
}
/**
- * [Output Only] The unique ID of the instant snapshot used to create this
+ * Output only. [Output Only] The unique ID of the instant snapshot used to create this
* disk. This value identifies the exact instant snapshot that was used to
* create this persistent disk. For example, if you created the persistent
* disk from an instant snapshot that was later deleted and recreated under
@@ -2380,7 +2380,7 @@ public function clearSourceInstantSnapshotId()
}
/**
- * [Output Only] The unique ID of the instant snapshot used to create this
+ * Output only. [Output Only] The unique ID of the instant snapshot used to create this
* disk. This value identifies the exact instant snapshot that was used to
* create this persistent disk. For example, if you created the persistent
* disk from an instant snapshot that was later deleted and recreated under
@@ -2486,7 +2486,7 @@ public function setSourceSnapshotEncryptionKey($var)
}
/**
- * [Output Only] The unique ID of the snapshot used to create this disk. This
+ * Output only. [Output Only] The unique ID of the snapshot used to create this disk. This
* value identifies the exact snapshot that was used to create this persistent
* disk. For example, if you created the persistent disk from a snapshot that
* was later deleted and recreated under the same name, the source snapshot ID
@@ -2511,7 +2511,7 @@ public function clearSourceSnapshotId()
}
/**
- * [Output Only] The unique ID of the snapshot used to create this disk. This
+ * Output only. [Output Only] The unique ID of the snapshot used to create this disk. This
* value identifies the exact snapshot that was used to create this persistent
* disk. For example, if you created the persistent disk from a snapshot that
* was later deleted and recreated under the same name, the source snapshot ID
@@ -2578,7 +2578,7 @@ public function setSourceStorageObject($var)
}
/**
- * [Output Only] The status of disk creation.
+ * Output only. [Output Only] The status of disk creation.
* - CREATING: Disk is provisioning.
* - RESTORING: Source data is being copied into the
* disk.
@@ -2606,7 +2606,7 @@ public function clearStatus()
}
/**
- * [Output Only] The status of disk creation.
+ * Output only. [Output Only] The status of disk creation.
* - CREATING: Disk is provisioning.
* - RESTORING: Source data is being copied into the
* disk.
@@ -2714,7 +2714,7 @@ public function setType($var)
}
/**
- * [Output Only] Links to the users of the disk (attached instances)
+ * Output only. [Output Only] Links to the users of the disk (attached instances)
* in form:projects/project/zones/zone/instances/instance
*
* Generated from protobuf field repeated string users = 111578632;
@@ -2726,7 +2726,7 @@ public function getUsers()
}
/**
- * [Output Only] Links to the users of the disk (attached instances)
+ * Output only. [Output Only] Links to the users of the disk (attached instances)
* in form:projects/project/zones/zone/instances/instance
*
* Generated from protobuf field repeated string users = 111578632;
@@ -2742,7 +2742,7 @@ public function setUsers($var)
}
/**
- * [Output Only] URL of the zone where the disk resides.
+ * Output only. [Output Only] URL of the zone where the disk resides.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
*
@@ -2765,7 +2765,7 @@ public function clearZone()
}
/**
- * [Output Only] URL of the zone where the disk resides.
+ * Output only. [Output Only] URL of the zone where the disk resides.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
*
diff --git a/Compute/src/V1/Disk/Status.php b/Compute/src/V1/Disk/Status.php
index f2f1587d158f..5f88e821a3d2 100644
--- a/Compute/src/V1/Disk/Status.php
+++ b/Compute/src/V1/Disk/Status.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] The status of disk creation.
+ * Output only. [Output Only] The status of disk creation.
* - CREATING: Disk is provisioning.
* - RESTORING: Source data is being copied into the
* disk.
diff --git a/Compute/src/V1/DiskAggregatedList.php b/Compute/src/V1/DiskAggregatedList.php
index 0cadd949a729..4c200c193f55 100644
--- a/Compute/src/V1/DiskAggregatedList.php
+++ b/Compute/src/V1/DiskAggregatedList.php
@@ -27,7 +27,7 @@ class DiskAggregatedList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Alwayscompute#diskAggregatedList for aggregated lists of persistent
+ * Output only. [Output Only] Type of resource. Alwayscompute#diskAggregatedList for aggregated lists of persistent
* disks.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -44,13 +44,13 @@ class DiskAggregatedList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
@@ -73,7 +73,7 @@ class DiskAggregatedList extends \Google\Protobuf\Internal\Message
* @type array|\Google\Protobuf\Internal\MapField $items
* A list of DisksScopedList resources.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#diskAggregatedList for aggregated lists of persistent
+ * Output only. [Output Only] Type of resource. Alwayscompute#diskAggregatedList for aggregated lists of persistent
* disks.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -82,9 +82,9 @@ class DiskAggregatedList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -157,7 +157,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#diskAggregatedList for aggregated lists of persistent
+ * Output only. [Output Only] Type of resource. Alwayscompute#diskAggregatedList for aggregated lists of persistent
* disks.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -179,7 +179,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#diskAggregatedList for aggregated lists of persistent
+ * Output only. [Output Only] Type of resource. Alwayscompute#diskAggregatedList for aggregated lists of persistent
* disks.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -239,7 +239,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -260,7 +260,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -275,7 +275,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -286,7 +286,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/DiskAsyncReplication.php b/Compute/src/V1/DiskAsyncReplication.php
index e3e68e63befa..29c1991e75d2 100644
--- a/Compute/src/V1/DiskAsyncReplication.php
+++ b/Compute/src/V1/DiskAsyncReplication.php
@@ -15,14 +15,14 @@
class DiskAsyncReplication extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] URL of the DiskConsistencyGroupPolicy if replication was
+ * Output only. [Output Only] URL of the DiskConsistencyGroupPolicy if replication was
* started on the disk as a member of a group.
*
* Generated from protobuf field optional string consistency_group_policy = 1991097;
*/
protected $consistency_group_policy = null;
/**
- * [Output Only] ID of the DiskConsistencyGroupPolicy if replication was
+ * Output only. [Output Only] ID of the DiskConsistencyGroupPolicy if replication was
* started on the disk as a member of a group.
*
* Generated from protobuf field optional string consistency_group_policy_id = 261065057;
@@ -40,7 +40,7 @@ class DiskAsyncReplication extends \Google\Protobuf\Internal\Message
*/
protected $disk = null;
/**
- * [Output Only] The unique ID of the other disk asynchronously replicated
+ * Output only. [Output Only] The unique ID of the other disk asynchronously replicated
* to or from the current disk. This value identifies the exact disk that
* was used to create this replication. For example, if you started
* replicating the persistent disk from a disk that was later deleted and
@@ -58,10 +58,10 @@ class DiskAsyncReplication extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $consistency_group_policy
- * [Output Only] URL of the DiskConsistencyGroupPolicy if replication was
+ * Output only. [Output Only] URL of the DiskConsistencyGroupPolicy if replication was
* started on the disk as a member of a group.
* @type string $consistency_group_policy_id
- * [Output Only] ID of the DiskConsistencyGroupPolicy if replication was
+ * Output only. [Output Only] ID of the DiskConsistencyGroupPolicy if replication was
* started on the disk as a member of a group.
* @type string $disk
* The other disk asynchronously replicated to or from the current disk.
@@ -71,7 +71,7 @@ class DiskAsyncReplication extends \Google\Protobuf\Internal\Message
* - projects/project/zones/zone/disks/disk
* - zones/zone/disks/disk
* @type string $disk_id
- * [Output Only] The unique ID of the other disk asynchronously replicated
+ * Output only. [Output Only] The unique ID of the other disk asynchronously replicated
* to or from the current disk. This value identifies the exact disk that
* was used to create this replication. For example, if you started
* replicating the persistent disk from a disk that was later deleted and
@@ -85,7 +85,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] URL of the DiskConsistencyGroupPolicy if replication was
+ * Output only. [Output Only] URL of the DiskConsistencyGroupPolicy if replication was
* started on the disk as a member of a group.
*
* Generated from protobuf field optional string consistency_group_policy = 1991097;
@@ -107,7 +107,7 @@ public function clearConsistencyGroupPolicy()
}
/**
- * [Output Only] URL of the DiskConsistencyGroupPolicy if replication was
+ * Output only. [Output Only] URL of the DiskConsistencyGroupPolicy if replication was
* started on the disk as a member of a group.
*
* Generated from protobuf field optional string consistency_group_policy = 1991097;
@@ -123,7 +123,7 @@ public function setConsistencyGroupPolicy($var)
}
/**
- * [Output Only] ID of the DiskConsistencyGroupPolicy if replication was
+ * Output only. [Output Only] ID of the DiskConsistencyGroupPolicy if replication was
* started on the disk as a member of a group.
*
* Generated from protobuf field optional string consistency_group_policy_id = 261065057;
@@ -145,7 +145,7 @@ public function clearConsistencyGroupPolicyId()
}
/**
- * [Output Only] ID of the DiskConsistencyGroupPolicy if replication was
+ * Output only. [Output Only] ID of the DiskConsistencyGroupPolicy if replication was
* started on the disk as a member of a group.
*
* Generated from protobuf field optional string consistency_group_policy_id = 261065057;
@@ -207,7 +207,7 @@ public function setDisk($var)
}
/**
- * [Output Only] The unique ID of the other disk asynchronously replicated
+ * Output only. [Output Only] The unique ID of the other disk asynchronously replicated
* to or from the current disk. This value identifies the exact disk that
* was used to create this replication. For example, if you started
* replicating the persistent disk from a disk that was later deleted and
@@ -233,7 +233,7 @@ public function clearDiskId()
}
/**
- * [Output Only] The unique ID of the other disk asynchronously replicated
+ * Output only. [Output Only] The unique ID of the other disk asynchronously replicated
* to or from the current disk. This value identifies the exact disk that
* was used to create this replication. For example, if you started
* replicating the persistent disk from a disk that was later deleted and
diff --git a/Compute/src/V1/DiskList.php b/Compute/src/V1/DiskList.php
index 32bda87cda1b..2b031d1c086b 100644
--- a/Compute/src/V1/DiskList.php
+++ b/Compute/src/V1/DiskList.php
@@ -28,7 +28,7 @@ class DiskList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Always compute#diskList for
+ * Output only. [Output Only] Type of resource. Always compute#diskList for
* lists of disks.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -45,7 +45,7 @@ class DiskList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -68,7 +68,7 @@ class DiskList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\Disk>|\Google\Protobuf\Internal\RepeatedField $items
* A list of Disk resources.
* @type string $kind
- * [Output Only] Type of resource. Always compute#diskList for
+ * Output only. [Output Only] Type of resource. Always compute#diskList for
* lists of disks.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -77,7 +77,7 @@ class DiskList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -150,7 +150,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Always compute#diskList for
+ * Output only. [Output Only] Type of resource. Always compute#diskList for
* lists of disks.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -172,7 +172,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Always compute#diskList for
+ * Output only. [Output Only] Type of resource. Always compute#diskList for
* lists of disks.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -232,7 +232,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -253,7 +253,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/DiskParams.php b/Compute/src/V1/DiskParams.php
index 3a1c19bb2916..9bf89626677c 100644
--- a/Compute/src/V1/DiskParams.php
+++ b/Compute/src/V1/DiskParams.php
@@ -18,8 +18,10 @@ class DiskParams extends \Google\Protobuf\Internal\Message
/**
* Resource manager tags to be bound to the disk. Tag keys and values
* have the same definition as resource
- * manager tags. Keys must be in the format `tagKeys/{tag_key_id}`, and
- * values are in the format `tagValues/456`. The field is ignored (both PUT &
+ * manager tags. Keys and values can be either in numeric format,
+ * such as `tagKeys/{tag_key_id}` and `tagValues/456` or in namespaced
+ * format such as `{org_id|project_id}/{tag_key_short_name}` and
+ * `{tag_value_short_name}`. The field is ignored (both PUT &
* PATCH) when empty.
*
* Generated from protobuf field map resource_manager_tags = 377671164;
@@ -35,8 +37,10 @@ class DiskParams extends \Google\Protobuf\Internal\Message
* @type array|\Google\Protobuf\Internal\MapField $resource_manager_tags
* Resource manager tags to be bound to the disk. Tag keys and values
* have the same definition as resource
- * manager tags. Keys must be in the format `tagKeys/{tag_key_id}`, and
- * values are in the format `tagValues/456`. The field is ignored (both PUT &
+ * manager tags. Keys and values can be either in numeric format,
+ * such as `tagKeys/{tag_key_id}` and `tagValues/456` or in namespaced
+ * format such as `{org_id|project_id}/{tag_key_short_name}` and
+ * `{tag_value_short_name}`. The field is ignored (both PUT &
* PATCH) when empty.
* }
*/
@@ -48,8 +52,10 @@ public function __construct($data = NULL) {
/**
* Resource manager tags to be bound to the disk. Tag keys and values
* have the same definition as resource
- * manager tags. Keys must be in the format `tagKeys/{tag_key_id}`, and
- * values are in the format `tagValues/456`. The field is ignored (both PUT &
+ * manager tags. Keys and values can be either in numeric format,
+ * such as `tagKeys/{tag_key_id}` and `tagValues/456` or in namespaced
+ * format such as `{org_id|project_id}/{tag_key_short_name}` and
+ * `{tag_value_short_name}`. The field is ignored (both PUT &
* PATCH) when empty.
*
* Generated from protobuf field map resource_manager_tags = 377671164;
@@ -63,8 +69,10 @@ public function getResourceManagerTags()
/**
* Resource manager tags to be bound to the disk. Tag keys and values
* have the same definition as resource
- * manager tags. Keys must be in the format `tagKeys/{tag_key_id}`, and
- * values are in the format `tagValues/456`. The field is ignored (both PUT &
+ * manager tags. Keys and values can be either in numeric format,
+ * such as `tagKeys/{tag_key_id}` and `tagValues/456` or in namespaced
+ * format such as `{org_id|project_id}/{tag_key_short_name}` and
+ * `{tag_value_short_name}`. The field is ignored (both PUT &
* PATCH) when empty.
*
* Generated from protobuf field map resource_manager_tags = 377671164;
diff --git a/Compute/src/V1/DiskType.php b/Compute/src/V1/DiskType.php
index eb6d9a206832..9e427ad4f085 100644
--- a/Compute/src/V1/DiskType.php
+++ b/Compute/src/V1/DiskType.php
@@ -58,7 +58,7 @@ class DiskType extends \Google\Protobuf\Internal\Message
*/
protected $id = null;
/**
- * [Output Only] Type of the resource. Always compute#diskType
+ * Output only. [Output Only] Type of the resource. Always compute#diskType
* for disk types.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -120,7 +120,7 @@ class DiskType extends \Google\Protobuf\Internal\Message
* [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type string $kind
- * [Output Only] Type of the resource. Always compute#diskType
+ * Output only. [Output Only] Type of the resource. Always compute#diskType
* for disk types.
* @type string $name
* [Output Only] Name of the resource.
@@ -330,7 +330,7 @@ public function setId($var)
}
/**
- * [Output Only] Type of the resource. Always compute#diskType
+ * Output only. [Output Only] Type of the resource. Always compute#diskType
* for disk types.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -352,7 +352,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Always compute#diskType
+ * Output only. [Output Only] Type of the resource. Always compute#diskType
* for disk types.
*
* Generated from protobuf field optional string kind = 3292052;
diff --git a/Compute/src/V1/DiskTypeAggregatedList.php b/Compute/src/V1/DiskTypeAggregatedList.php
index 47d0769c3207..3f0c4bdc53c5 100644
--- a/Compute/src/V1/DiskTypeAggregatedList.php
+++ b/Compute/src/V1/DiskTypeAggregatedList.php
@@ -27,7 +27,7 @@ class DiskTypeAggregatedList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Alwayscompute#diskTypeAggregatedList.
+ * Output only. [Output Only] Type of resource. Alwayscompute#diskTypeAggregatedList.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -43,13 +43,13 @@ class DiskTypeAggregatedList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
@@ -72,7 +72,7 @@ class DiskTypeAggregatedList extends \Google\Protobuf\Internal\Message
* @type array|\Google\Protobuf\Internal\MapField $items
* A list of DiskTypesScopedList resources.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#diskTypeAggregatedList.
+ * Output only. [Output Only] Type of resource. Alwayscompute#diskTypeAggregatedList.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -80,9 +80,9 @@ class DiskTypeAggregatedList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -155,7 +155,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#diskTypeAggregatedList.
+ * Output only. [Output Only] Type of resource. Alwayscompute#diskTypeAggregatedList.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -176,7 +176,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#diskTypeAggregatedList.
+ * Output only. [Output Only] Type of resource. Alwayscompute#diskTypeAggregatedList.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -235,7 +235,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -256,7 +256,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -271,7 +271,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -282,7 +282,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/DiskTypeList.php b/Compute/src/V1/DiskTypeList.php
index 719c88d15c4f..2323ef933693 100644
--- a/Compute/src/V1/DiskTypeList.php
+++ b/Compute/src/V1/DiskTypeList.php
@@ -28,7 +28,7 @@ class DiskTypeList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Always compute#diskTypeList
+ * Output only. [Output Only] Type of resource. Always compute#diskTypeList
* for disk types.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -45,7 +45,7 @@ class DiskTypeList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -68,7 +68,7 @@ class DiskTypeList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\DiskType>|\Google\Protobuf\Internal\RepeatedField $items
* A list of DiskType resources.
* @type string $kind
- * [Output Only] Type of resource. Always compute#diskTypeList
+ * Output only. [Output Only] Type of resource. Always compute#diskTypeList
* for disk types.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -77,7 +77,7 @@ class DiskTypeList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -150,7 +150,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Always compute#diskTypeList
+ * Output only. [Output Only] Type of resource. Always compute#diskTypeList
* for disk types.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -172,7 +172,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Always compute#diskTypeList
+ * Output only. [Output Only] Type of resource. Always compute#diskTypeList
* for disk types.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -232,7 +232,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -253,7 +253,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/Error.php b/Compute/src/V1/Error.php
index bc43372c5677..4b9840dd956e 100644
--- a/Compute/src/V1/Error.php
+++ b/Compute/src/V1/Error.php
@@ -9,7 +9,7 @@
use Google\Protobuf\Internal\GPBUtil;
/**
- * Errors that prevented the ResizeRequest to be fulfilled.
+ * Output only. Errors that prevented the ResizeRequest to be fulfilled.
*
* Generated from protobuf message google.cloud.compute.v1.Error
*/
diff --git a/Compute/src/V1/ExchangedPeeringRoutesList.php b/Compute/src/V1/ExchangedPeeringRoutesList.php
index b7b3731e8544..4b3372e05fa6 100644
--- a/Compute/src/V1/ExchangedPeeringRoutesList.php
+++ b/Compute/src/V1/ExchangedPeeringRoutesList.php
@@ -27,7 +27,7 @@ class ExchangedPeeringRoutesList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Alwayscompute#exchangedPeeringRoutesList for exchanged peering
+ * Output only. [Output Only] Type of resource. Alwayscompute#exchangedPeeringRoutesList for exchanged peering
* routes lists.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -44,7 +44,7 @@ class ExchangedPeeringRoutesList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -67,7 +67,7 @@ class ExchangedPeeringRoutesList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\ExchangedPeeringRoute>|\Google\Protobuf\Internal\RepeatedField $items
* A list of ExchangedPeeringRoute resources.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#exchangedPeeringRoutesList for exchanged peering
+ * Output only. [Output Only] Type of resource. Alwayscompute#exchangedPeeringRoutesList for exchanged peering
* routes lists.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -76,7 +76,7 @@ class ExchangedPeeringRoutesList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -149,7 +149,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#exchangedPeeringRoutesList for exchanged peering
+ * Output only. [Output Only] Type of resource. Alwayscompute#exchangedPeeringRoutesList for exchanged peering
* routes lists.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -171,7 +171,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#exchangedPeeringRoutesList for exchanged peering
+ * Output only. [Output Only] Type of resource. Alwayscompute#exchangedPeeringRoutesList for exchanged peering
* routes lists.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -231,7 +231,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -252,7 +252,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/ExternalVpnGateway.php b/Compute/src/V1/ExternalVpnGateway.php
index c5970dad6230..b2a617308add 100644
--- a/Compute/src/V1/ExternalVpnGateway.php
+++ b/Compute/src/V1/ExternalVpnGateway.php
@@ -23,7 +23,7 @@
class ExternalVpnGateway extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -37,7 +37,7 @@ class ExternalVpnGateway extends \Google\Protobuf\Internal\Message
*/
protected $description = null;
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -54,7 +54,7 @@ class ExternalVpnGateway extends \Google\Protobuf\Internal\Message
*/
private $interfaces;
/**
- * [Output Only] Type of the resource. Alwayscompute#externalVpnGateway for externalVpnGateways.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#externalVpnGateway for externalVpnGateways.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -99,7 +99,7 @@ class ExternalVpnGateway extends \Google\Protobuf\Internal\Message
*/
protected $redundancy_type = null;
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -112,13 +112,13 @@ class ExternalVpnGateway extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $description
* An optional description of this resource. Provide this property when you
* create the resource.
* @type int|string $id
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type array<\Google\Cloud\Compute\V1\ExternalVpnGatewayInterface>|\Google\Protobuf\Internal\RepeatedField $interfaces
* A list of interfaces for this external VPN gateway.
@@ -127,7 +127,7 @@ class ExternalVpnGateway extends \Google\Protobuf\Internal\Message
* VPN gateway. If your peer side is an AWS virtual private gateway, four
* interfaces should be provided for an external VPN gateway.
* @type string $kind
- * [Output Only] Type of the resource. Alwayscompute#externalVpnGateway for externalVpnGateways.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#externalVpnGateway for externalVpnGateways.
* @type string $label_fingerprint
* A fingerprint for the labels being applied to this ExternalVpnGateway,
* which is essentially a hash of the labels set used for optimistic locking.
@@ -152,7 +152,7 @@ class ExternalVpnGateway extends \Google\Protobuf\Internal\Message
* Indicates the user-supplied redundancy type of this external VPN gateway.
* Check the RedundancyType enum for the list of possible values.
* @type string $self_link
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
* }
*/
public function __construct($data = NULL) {
@@ -161,7 +161,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -183,7 +183,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -237,7 +237,7 @@ public function setDescription($var)
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -259,7 +259,7 @@ public function clearId()
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -309,7 +309,7 @@ public function setInterfaces($var)
}
/**
- * [Output Only] Type of the resource. Alwayscompute#externalVpnGateway for externalVpnGateways.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#externalVpnGateway for externalVpnGateways.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -330,7 +330,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Alwayscompute#externalVpnGateway for externalVpnGateways.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#externalVpnGateway for externalVpnGateways.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -509,7 +509,7 @@ public function setRedundancyType($var)
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -530,7 +530,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/ExternalVpnGatewayList.php b/Compute/src/V1/ExternalVpnGatewayList.php
index a2fe7ecc0bfc..98c16674be45 100644
--- a/Compute/src/V1/ExternalVpnGatewayList.php
+++ b/Compute/src/V1/ExternalVpnGatewayList.php
@@ -32,7 +32,7 @@ class ExternalVpnGatewayList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Always compute#externalVpnGatewayList for lists of externalVpnGateways.
+ * Output only. [Output Only] Type of resource. Always compute#externalVpnGatewayList for lists of externalVpnGateways.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -48,7 +48,7 @@ class ExternalVpnGatewayList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -72,7 +72,7 @@ class ExternalVpnGatewayList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\ExternalVpnGateway>|\Google\Protobuf\Internal\RepeatedField $items
* A list of ExternalVpnGateway resources.
* @type string $kind
- * [Output Only] Type of resource. Always compute#externalVpnGatewayList for lists of externalVpnGateways.
+ * Output only. [Output Only] Type of resource. Always compute#externalVpnGatewayList for lists of externalVpnGateways.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -80,7 +80,7 @@ class ExternalVpnGatewayList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -185,7 +185,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Always compute#externalVpnGatewayList for lists of externalVpnGateways.
+ * Output only. [Output Only] Type of resource. Always compute#externalVpnGatewayList for lists of externalVpnGateways.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -206,7 +206,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Always compute#externalVpnGatewayList for lists of externalVpnGateways.
+ * Output only. [Output Only] Type of resource. Always compute#externalVpnGatewayList for lists of externalVpnGateways.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -265,7 +265,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -286,7 +286,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/Firewall.php b/Compute/src/V1/Firewall.php
index 7eaf423fa442..6227c821c83a 100644
--- a/Compute/src/V1/Firewall.php
+++ b/Compute/src/V1/Firewall.php
@@ -25,7 +25,7 @@ class Firewall extends \Google\Protobuf\Internal\Message
*/
private $allowed;
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -71,14 +71,14 @@ class Firewall extends \Google\Protobuf\Internal\Message
*/
protected $disabled = null;
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
*/
protected $id = null;
/**
- * [Output Only] Type of the resource. Always compute#firewall
+ * Output only. [Output Only] Type of the resource. Always compute#firewall
* for firewall rules.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -222,7 +222,7 @@ class Firewall extends \Google\Protobuf\Internal\Message
* The list of ALLOW rules specified by this firewall. Each rule specifies a
* protocol and port-range tuple that describes a permitted connection.
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type array<\Google\Cloud\Compute\V1\Denied>|\Google\Protobuf\Internal\RepeatedField $denied
* The list of DENY rules specified by this firewall. Each rule specifies a
@@ -244,10 +244,10 @@ class Firewall extends \Google\Protobuf\Internal\Message
* firewall rule is not enforced and the network behaves as if it did not
* exist. If this is unspecified, the firewall rule will be enabled.
* @type int|string $id
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type string $kind
- * [Output Only] Type of the resource. Always compute#firewall
+ * Output only. [Output Only] Type of the resource. Always compute#firewall
* for firewall rules.
* @type \Google\Cloud\Compute\V1\FirewallLogConfig $log_config
* This field denotes the logging options for a particular firewall rule. If
@@ -368,7 +368,7 @@ public function setAllowed($var)
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -390,7 +390,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -584,7 +584,7 @@ public function setDisabled($var)
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -606,7 +606,7 @@ public function clearId()
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -622,7 +622,7 @@ public function setId($var)
}
/**
- * [Output Only] Type of the resource. Always compute#firewall
+ * Output only. [Output Only] Type of the resource. Always compute#firewall
* for firewall rules.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -644,7 +644,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Always compute#firewall
+ * Output only. [Output Only] Type of the resource. Always compute#firewall
* for firewall rules.
*
* Generated from protobuf field optional string kind = 3292052;
diff --git a/Compute/src/V1/FirewallList.php b/Compute/src/V1/FirewallList.php
index 617e343c165d..3ad10df373cb 100644
--- a/Compute/src/V1/FirewallList.php
+++ b/Compute/src/V1/FirewallList.php
@@ -28,7 +28,7 @@ class FirewallList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Always compute#firewallList
+ * Output only. [Output Only] Type of resource. Always compute#firewallList
* for lists of firewalls.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -45,7 +45,7 @@ class FirewallList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -68,7 +68,7 @@ class FirewallList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\Firewall>|\Google\Protobuf\Internal\RepeatedField $items
* A list of Firewall resources.
* @type string $kind
- * [Output Only] Type of resource. Always compute#firewallList
+ * Output only. [Output Only] Type of resource. Always compute#firewallList
* for lists of firewalls.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -77,7 +77,7 @@ class FirewallList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -150,7 +150,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Always compute#firewallList
+ * Output only. [Output Only] Type of resource. Always compute#firewallList
* for lists of firewalls.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -172,7 +172,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Always compute#firewallList
+ * Output only. [Output Only] Type of resource. Always compute#firewallList
* for lists of firewalls.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -232,7 +232,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -253,7 +253,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/FirewallPoliciesListAssociationsResponse.php b/Compute/src/V1/FirewallPoliciesListAssociationsResponse.php
index fa162a7bc8a1..891a29c15fc9 100644
--- a/Compute/src/V1/FirewallPoliciesListAssociationsResponse.php
+++ b/Compute/src/V1/FirewallPoliciesListAssociationsResponse.php
@@ -21,7 +21,7 @@ class FirewallPoliciesListAssociationsResponse extends \Google\Protobuf\Internal
*/
private $associations;
/**
- * [Output Only] Type of firewallPolicy associations. Alwayscompute#FirewallPoliciesListAssociations for lists of
+ * Output only. [Output Only] Type of firewallPolicy associations. Alwayscompute#FirewallPoliciesListAssociations for lists of
* firewallPolicy associations.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -37,7 +37,7 @@ class FirewallPoliciesListAssociationsResponse extends \Google\Protobuf\Internal
* @type array<\Google\Cloud\Compute\V1\FirewallPolicyAssociation>|\Google\Protobuf\Internal\RepeatedField $associations
* A list of associations.
* @type string $kind
- * [Output Only] Type of firewallPolicy associations. Alwayscompute#FirewallPoliciesListAssociations for lists of
+ * Output only. [Output Only] Type of firewallPolicy associations. Alwayscompute#FirewallPoliciesListAssociations for lists of
* firewallPolicy associations.
* }
*/
@@ -73,7 +73,7 @@ public function setAssociations($var)
}
/**
- * [Output Only] Type of firewallPolicy associations. Alwayscompute#FirewallPoliciesListAssociations for lists of
+ * Output only. [Output Only] Type of firewallPolicy associations. Alwayscompute#FirewallPoliciesListAssociations for lists of
* firewallPolicy associations.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -95,7 +95,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of firewallPolicy associations. Alwayscompute#FirewallPoliciesListAssociations for lists of
+ * Output only. [Output Only] Type of firewallPolicy associations. Alwayscompute#FirewallPoliciesListAssociations for lists of
* firewallPolicy associations.
*
* Generated from protobuf field optional string kind = 3292052;
diff --git a/Compute/src/V1/FirewallPolicy.php b/Compute/src/V1/FirewallPolicy.php
index 9e994b7e58f6..884759dd9359 100644
--- a/Compute/src/V1/FirewallPolicy.php
+++ b/Compute/src/V1/FirewallPolicy.php
@@ -22,7 +22,7 @@ class FirewallPolicy extends \Google\Protobuf\Internal\Message
*/
private $associations;
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -72,7 +72,7 @@ class FirewallPolicy extends \Google\Protobuf\Internal\Message
*/
protected $id = null;
/**
- * [Output only] Type of the resource. Alwayscompute#firewallPolicyfor firewall policies
+ * Output only. [Output only] Type of the resource. Alwayscompute#firewallPolicyfor firewall policies
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -92,7 +92,7 @@ class FirewallPolicy extends \Google\Protobuf\Internal\Message
*/
private $packet_mirroring_rules;
/**
- * [Output Only] The parent of the firewall policy.
+ * Output only. [Output Only] The parent of the firewall policy.
* This field is not applicable to network firewall policies.
*
* Generated from protobuf field optional string parent = 78317738;
@@ -107,7 +107,7 @@ class FirewallPolicy extends \Google\Protobuf\Internal\Message
*/
protected $policy_type = null;
/**
- * [Output Only] URL of the region where the regional firewall policy resides.
+ * Output only. [Output Only] URL of the region where the regional firewall policy resides.
* This field is not applicable to global firewall policies.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
@@ -116,7 +116,7 @@ class FirewallPolicy extends \Google\Protobuf\Internal\Message
*/
protected $region = null;
/**
- * [Output Only] Total count of all firewall policy rule tuples. A firewall
+ * Output only. [Output Only] Total count of all firewall policy rule tuples. A firewall
* policy can not exceed a set number of tuples.
*
* Generated from protobuf field optional int32 rule_tuple_count = 388342037;
@@ -138,7 +138,7 @@ class FirewallPolicy extends \Google\Protobuf\Internal\Message
*/
protected $self_link = null;
/**
- * [Output Only] Server-defined URL for this resource with the resource id.
+ * Output only. [Output Only] Server-defined URL for this resource with the resource id.
*
* Generated from protobuf field optional string self_link_with_id = 44520962;
*/
@@ -168,7 +168,7 @@ class FirewallPolicy extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\FirewallPolicyAssociation>|\Google\Protobuf\Internal\RepeatedField $associations
* A list of associations that belong to this firewall policy.
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $description
* An optional description of this resource. Provide this property when you
@@ -198,7 +198,7 @@ class FirewallPolicy extends \Google\Protobuf\Internal\Message
* [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type string $kind
- * [Output only] Type of the resource. Alwayscompute#firewallPolicyfor firewall policies
+ * Output only. [Output only] Type of the resource. Alwayscompute#firewallPolicyfor firewall policies
* @type string $name
* Name of the resource. For Organization Firewall Policies it's a
* [Output Only] numeric ID allocated by Google Cloud which uniquely
@@ -206,19 +206,19 @@ class FirewallPolicy extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\FirewallPolicyRule>|\Google\Protobuf\Internal\RepeatedField $packet_mirroring_rules
* A list of packet mirroring rules that belong to this policy.
* @type string $parent
- * [Output Only] The parent of the firewall policy.
+ * Output only. [Output Only] The parent of the firewall policy.
* This field is not applicable to network firewall policies.
* @type string $policy_type
* The type of the firewall policy. This field can be eitherVPC_POLICY or RDMA_ROCE_POLICY.
* Note: if not specified then VPC_POLICY will be used.
* Check the PolicyType enum for the list of possible values.
* @type string $region
- * [Output Only] URL of the region where the regional firewall policy resides.
+ * Output only. [Output Only] URL of the region where the regional firewall policy resides.
* This field is not applicable to global firewall policies.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
* @type int $rule_tuple_count
- * [Output Only] Total count of all firewall policy rule tuples. A firewall
+ * Output only. [Output Only] Total count of all firewall policy rule tuples. A firewall
* policy can not exceed a set number of tuples.
* @type array<\Google\Cloud\Compute\V1\FirewallPolicyRule>|\Google\Protobuf\Internal\RepeatedField $rules
* A list of rules that belong to this policy.
@@ -228,7 +228,7 @@ class FirewallPolicy extends \Google\Protobuf\Internal\Message
* @type string $self_link
* [Output Only] Server-defined URL for the resource.
* @type string $self_link_with_id
- * [Output Only] Server-defined URL for this resource with the resource id.
+ * Output only. [Output Only] Server-defined URL for this resource with the resource id.
* @type string $short_name
* User-provided name of the Organization firewall policy. The name should be
* unique in the organization in which the firewall policy is created.
@@ -274,7 +274,7 @@ public function setAssociations($var)
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -296,7 +296,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -494,7 +494,7 @@ public function setId($var)
}
/**
- * [Output only] Type of the resource. Alwayscompute#firewallPolicyfor firewall policies
+ * Output only. [Output only] Type of the resource. Alwayscompute#firewallPolicyfor firewall policies
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -515,7 +515,7 @@ public function clearKind()
}
/**
- * [Output only] Type of the resource. Alwayscompute#firewallPolicyfor firewall policies
+ * Output only. [Output only] Type of the resource. Alwayscompute#firewallPolicyfor firewall policies
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -596,7 +596,7 @@ public function setPacketMirroringRules($var)
}
/**
- * [Output Only] The parent of the firewall policy.
+ * Output only. [Output Only] The parent of the firewall policy.
* This field is not applicable to network firewall policies.
*
* Generated from protobuf field optional string parent = 78317738;
@@ -618,7 +618,7 @@ public function clearParent()
}
/**
- * [Output Only] The parent of the firewall policy.
+ * Output only. [Output Only] The parent of the firewall policy.
* This field is not applicable to network firewall policies.
*
* Generated from protobuf field optional string parent = 78317738;
@@ -674,7 +674,7 @@ public function setPolicyType($var)
}
/**
- * [Output Only] URL of the region where the regional firewall policy resides.
+ * Output only. [Output Only] URL of the region where the regional firewall policy resides.
* This field is not applicable to global firewall policies.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
@@ -698,7 +698,7 @@ public function clearRegion()
}
/**
- * [Output Only] URL of the region where the regional firewall policy resides.
+ * Output only. [Output Only] URL of the region where the regional firewall policy resides.
* This field is not applicable to global firewall policies.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
@@ -716,7 +716,7 @@ public function setRegion($var)
}
/**
- * [Output Only] Total count of all firewall policy rule tuples. A firewall
+ * Output only. [Output Only] Total count of all firewall policy rule tuples. A firewall
* policy can not exceed a set number of tuples.
*
* Generated from protobuf field optional int32 rule_tuple_count = 388342037;
@@ -738,7 +738,7 @@ public function clearRuleTupleCount()
}
/**
- * [Output Only] Total count of all firewall policy rule tuples. A firewall
+ * Output only. [Output Only] Total count of all firewall policy rule tuples. A firewall
* policy can not exceed a set number of tuples.
*
* Generated from protobuf field optional int32 rule_tuple_count = 388342037;
@@ -822,7 +822,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Server-defined URL for this resource with the resource id.
+ * Output only. [Output Only] Server-defined URL for this resource with the resource id.
*
* Generated from protobuf field optional string self_link_with_id = 44520962;
* @return string
@@ -843,7 +843,7 @@ public function clearSelfLinkWithId()
}
/**
- * [Output Only] Server-defined URL for this resource with the resource id.
+ * Output only. [Output Only] Server-defined URL for this resource with the resource id.
*
* Generated from protobuf field optional string self_link_with_id = 44520962;
* @param string $var
diff --git a/Compute/src/V1/FirewallPolicyAssociation.php b/Compute/src/V1/FirewallPolicyAssociation.php
index db48850a8189..e80f2112aa27 100644
--- a/Compute/src/V1/FirewallPolicyAssociation.php
+++ b/Compute/src/V1/FirewallPolicyAssociation.php
@@ -28,7 +28,7 @@ class FirewallPolicyAssociation extends \Google\Protobuf\Internal\Message
*/
protected $display_name = null;
/**
- * [Output Only] The firewall policy ID of the association.
+ * Output only. [Output Only] The firewall policy ID of the association.
*
* Generated from protobuf field optional string firewall_policy_id = 357211849;
*/
@@ -40,7 +40,7 @@ class FirewallPolicyAssociation extends \Google\Protobuf\Internal\Message
*/
protected $name = null;
/**
- * [Output Only] The short name of the firewall policy of the association.
+ * Output only. [Output Only] The short name of the firewall policy of the association.
*
* Generated from protobuf field optional string short_name = 492051566;
*/
@@ -58,11 +58,11 @@ class FirewallPolicyAssociation extends \Google\Protobuf\Internal\Message
* [Output Only] Deprecated, please use short name instead. The display name
* of the firewall policy of the association.
* @type string $firewall_policy_id
- * [Output Only] The firewall policy ID of the association.
+ * Output only. [Output Only] The firewall policy ID of the association.
* @type string $name
* The name for an association.
* @type string $short_name
- * [Output Only] The short name of the firewall policy of the association.
+ * Output only. [Output Only] The short name of the firewall policy of the association.
* }
*/
public function __construct($data = NULL) {
@@ -145,7 +145,7 @@ public function setDisplayName($var)
}
/**
- * [Output Only] The firewall policy ID of the association.
+ * Output only. [Output Only] The firewall policy ID of the association.
*
* Generated from protobuf field optional string firewall_policy_id = 357211849;
* @return string
@@ -166,7 +166,7 @@ public function clearFirewallPolicyId()
}
/**
- * [Output Only] The firewall policy ID of the association.
+ * Output only. [Output Only] The firewall policy ID of the association.
*
* Generated from protobuf field optional string firewall_policy_id = 357211849;
* @param string $var
@@ -217,7 +217,7 @@ public function setName($var)
}
/**
- * [Output Only] The short name of the firewall policy of the association.
+ * Output only. [Output Only] The short name of the firewall policy of the association.
*
* Generated from protobuf field optional string short_name = 492051566;
* @return string
@@ -238,7 +238,7 @@ public function clearShortName()
}
/**
- * [Output Only] The short name of the firewall policy of the association.
+ * Output only. [Output Only] The short name of the firewall policy of the association.
*
* Generated from protobuf field optional string short_name = 492051566;
* @param string $var
diff --git a/Compute/src/V1/FirewallPolicyList.php b/Compute/src/V1/FirewallPolicyList.php
index 342d06106ebe..aab1818db285 100644
--- a/Compute/src/V1/FirewallPolicyList.php
+++ b/Compute/src/V1/FirewallPolicyList.php
@@ -27,7 +27,7 @@ class FirewallPolicyList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Alwayscompute#firewallPolicyList for listsof FirewallPolicies
+ * Output only. [Output Only] Type of resource. Alwayscompute#firewallPolicyList for listsof FirewallPolicies
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -60,7 +60,7 @@ class FirewallPolicyList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\FirewallPolicy>|\Google\Protobuf\Internal\RepeatedField $items
* A list of FirewallPolicy resources.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#firewallPolicyList for listsof FirewallPolicies
+ * Output only. [Output Only] Type of resource. Alwayscompute#firewallPolicyList for listsof FirewallPolicies
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -139,7 +139,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#firewallPolicyList for listsof FirewallPolicies
+ * Output only. [Output Only] Type of resource. Alwayscompute#firewallPolicyList for listsof FirewallPolicies
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -160,7 +160,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#firewallPolicyList for listsof FirewallPolicies
+ * Output only. [Output Only] Type of resource. Alwayscompute#firewallPolicyList for listsof FirewallPolicies
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
diff --git a/Compute/src/V1/FirewallPolicyRule.php b/Compute/src/V1/FirewallPolicyRule.php
index d4109f061ed9..781fa566f5ef 100644
--- a/Compute/src/V1/FirewallPolicyRule.php
+++ b/Compute/src/V1/FirewallPolicyRule.php
@@ -58,7 +58,7 @@ class FirewallPolicyRule extends \Google\Protobuf\Internal\Message
*/
protected $enable_logging = null;
/**
- * [Output only] Type of the resource. Returnscompute#firewallPolicyRule for firewall rules andcompute#packetMirroringRule for packet mirroring rules.
+ * Output only. [Output only] Type of the resource. Returnscompute#firewallPolicyRule for firewall rules andcompute#packetMirroringRule for packet mirroring rules.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -87,7 +87,7 @@ class FirewallPolicyRule extends \Google\Protobuf\Internal\Message
*/
protected $rule_name = null;
/**
- * [Output Only] Calculation of the complexity of a single firewall policy
+ * Output only. [Output Only] Calculation of the complexity of a single firewall policy
* rule.
*
* Generated from protobuf field optional int32 rule_tuple_count = 388342037;
@@ -168,7 +168,7 @@ class FirewallPolicyRule extends \Google\Protobuf\Internal\Message
* Stackdriver. Logs may be exported to BigQuery or Pub/Sub. Note: you
* cannot enable logging on "goto_next" rules.
* @type string $kind
- * [Output only] Type of the resource. Returnscompute#firewallPolicyRule for firewall rules andcompute#packetMirroringRule for packet mirroring rules.
+ * Output only. [Output only] Type of the resource. Returnscompute#firewallPolicyRule for firewall rules andcompute#packetMirroringRule for packet mirroring rules.
* @type \Google\Cloud\Compute\V1\FirewallPolicyRuleMatcher $match
* A match condition that incoming traffic is evaluated against.
* If it evaluates to true, the corresponding 'action' is enforced.
@@ -181,7 +181,7 @@ class FirewallPolicyRule extends \Google\Protobuf\Internal\Message
* An optional name for the rule. This field is not a unique identifier
* and can be updated.
* @type int $rule_tuple_count
- * [Output Only] Calculation of the complexity of a single firewall policy
+ * Output only. [Output Only] Calculation of the complexity of a single firewall policy
* rule.
* @type string $security_profile_group
* A fully-qualified URL of a SecurityProfile resource instance.
@@ -419,7 +419,7 @@ public function setEnableLogging($var)
}
/**
- * [Output only] Type of the resource. Returnscompute#firewallPolicyRule for firewall rules andcompute#packetMirroringRule for packet mirroring rules.
+ * Output only. [Output only] Type of the resource. Returnscompute#firewallPolicyRule for firewall rules andcompute#packetMirroringRule for packet mirroring rules.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -440,7 +440,7 @@ public function clearKind()
}
/**
- * [Output only] Type of the resource. Returnscompute#firewallPolicyRule for firewall rules andcompute#packetMirroringRule for packet mirroring rules.
+ * Output only. [Output only] Type of the resource. Returnscompute#firewallPolicyRule for firewall rules andcompute#packetMirroringRule for packet mirroring rules.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -573,7 +573,7 @@ public function setRuleName($var)
}
/**
- * [Output Only] Calculation of the complexity of a single firewall policy
+ * Output only. [Output Only] Calculation of the complexity of a single firewall policy
* rule.
*
* Generated from protobuf field optional int32 rule_tuple_count = 388342037;
@@ -595,7 +595,7 @@ public function clearRuleTupleCount()
}
/**
- * [Output Only] Calculation of the complexity of a single firewall policy
+ * Output only. [Output Only] Calculation of the complexity of a single firewall policy
* rule.
*
* Generated from protobuf field optional int32 rule_tuple_count = 388342037;
diff --git a/Compute/src/V1/FirewallPolicyRuleSecureTag.php b/Compute/src/V1/FirewallPolicyRuleSecureTag.php
index b5f8248e0205..989c462763d0 100644
--- a/Compute/src/V1/FirewallPolicyRuleSecureTag.php
+++ b/Compute/src/V1/FirewallPolicyRuleSecureTag.php
@@ -21,7 +21,7 @@ class FirewallPolicyRuleSecureTag extends \Google\Protobuf\Internal\Message
*/
protected $name = null;
/**
- * [Output Only] State of the secure tag, either `EFFECTIVE` or
+ * Output only. [Output Only] State of the secure tag, either `EFFECTIVE` or
* `INEFFECTIVE`. A secure tag is `INEFFECTIVE` when it is deleted
* or its network is deleted.
* Check the State enum for the list of possible values.
@@ -39,7 +39,7 @@ class FirewallPolicyRuleSecureTag extends \Google\Protobuf\Internal\Message
* @type string $name
* Name of the secure tag, created with TagManager's TagValue API.
* @type string $state
- * [Output Only] State of the secure tag, either `EFFECTIVE` or
+ * Output only. [Output Only] State of the secure tag, either `EFFECTIVE` or
* `INEFFECTIVE`. A secure tag is `INEFFECTIVE` when it is deleted
* or its network is deleted.
* Check the State enum for the list of possible values.
@@ -87,7 +87,7 @@ public function setName($var)
}
/**
- * [Output Only] State of the secure tag, either `EFFECTIVE` or
+ * Output only. [Output Only] State of the secure tag, either `EFFECTIVE` or
* `INEFFECTIVE`. A secure tag is `INEFFECTIVE` when it is deleted
* or its network is deleted.
* Check the State enum for the list of possible values.
@@ -111,7 +111,7 @@ public function clearState()
}
/**
- * [Output Only] State of the secure tag, either `EFFECTIVE` or
+ * Output only. [Output Only] State of the secure tag, either `EFFECTIVE` or
* `INEFFECTIVE`. A secure tag is `INEFFECTIVE` when it is deleted
* or its network is deleted.
* Check the State enum for the list of possible values.
diff --git a/Compute/src/V1/FirewallPolicyRuleSecureTag/State.php b/Compute/src/V1/FirewallPolicyRuleSecureTag/State.php
index 9f0627877ed5..792719c807ce 100644
--- a/Compute/src/V1/FirewallPolicyRuleSecureTag/State.php
+++ b/Compute/src/V1/FirewallPolicyRuleSecureTag/State.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] State of the secure tag, either `EFFECTIVE` or
+ * Output only. [Output Only] State of the secure tag, either `EFFECTIVE` or
* `INEFFECTIVE`. A secure tag is `INEFFECTIVE` when it is deleted
* or its network is deleted.
*
diff --git a/Compute/src/V1/FixedOrPercent.php b/Compute/src/V1/FixedOrPercent.php
index e27c0b675c71..de2b58aedc95 100644
--- a/Compute/src/V1/FixedOrPercent.php
+++ b/Compute/src/V1/FixedOrPercent.php
@@ -16,7 +16,7 @@
class FixedOrPercent extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Absolute value of VM instances calculated based on the
+ * Output only. [Output Only] Absolute value of VM instances calculated based on the
* specific mode.
* - If the value is fixed, then the calculated
* value is equal to the fixed value.
@@ -51,7 +51,7 @@ class FixedOrPercent extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type int $calculated
- * [Output Only] Absolute value of VM instances calculated based on the
+ * Output only. [Output Only] Absolute value of VM instances calculated based on the
* specific mode.
* - If the value is fixed, then the calculated
* value is equal to the fixed value.
@@ -74,7 +74,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Absolute value of VM instances calculated based on the
+ * Output only. [Output Only] Absolute value of VM instances calculated based on the
* specific mode.
* - If the value is fixed, then the calculated
* value is equal to the fixed value.
@@ -104,7 +104,7 @@ public function clearCalculated()
}
/**
- * [Output Only] Absolute value of VM instances calculated based on the
+ * Output only. [Output Only] Absolute value of VM instances calculated based on the
* specific mode.
* - If the value is fixed, then the calculated
* value is equal to the fixed value.
diff --git a/Compute/src/V1/FlexibleTimeRange.php b/Compute/src/V1/FlexibleTimeRange.php
new file mode 100644
index 000000000000..2abca18e3a3b
--- /dev/null
+++ b/Compute/src/V1/FlexibleTimeRange.php
@@ -0,0 +1,185 @@
+google.cloud.compute.v1.FlexibleTimeRange
+ */
+class FlexibleTimeRange extends \Google\Protobuf\Internal\Message
+{
+ /**
+ * Generated from protobuf field optional string max_duration = 39954959;
+ */
+ protected $max_duration = null;
+ /**
+ * Generated from protobuf field optional string min_duration = 514381025;
+ */
+ protected $min_duration = null;
+ /**
+ * Generated from protobuf field optional string start_time_not_earlier_than = 490386497;
+ */
+ protected $start_time_not_earlier_than = null;
+ /**
+ * Generated from protobuf field optional string start_time_not_later_than = 212764853;
+ */
+ protected $start_time_not_later_than = null;
+
+ /**
+ * Constructor.
+ *
+ * @param array $data {
+ * Optional. Data for populating the Message object.
+ *
+ * @type string $max_duration
+ * @type string $min_duration
+ * @type string $start_time_not_earlier_than
+ * @type string $start_time_not_later_than
+ * }
+ */
+ public function __construct($data = NULL) {
+ \GPBMetadata\Google\Cloud\Compute\V1\Compute::initOnce();
+ parent::__construct($data);
+ }
+
+ /**
+ * Generated from protobuf field optional string max_duration = 39954959;
+ * @return string
+ */
+ public function getMaxDuration()
+ {
+ return isset($this->max_duration) ? $this->max_duration : '';
+ }
+
+ public function hasMaxDuration()
+ {
+ return isset($this->max_duration);
+ }
+
+ public function clearMaxDuration()
+ {
+ unset($this->max_duration);
+ }
+
+ /**
+ * Generated from protobuf field optional string max_duration = 39954959;
+ * @param string $var
+ * @return $this
+ */
+ public function setMaxDuration($var)
+ {
+ GPBUtil::checkString($var, True);
+ $this->max_duration = $var;
+
+ return $this;
+ }
+
+ /**
+ * Generated from protobuf field optional string min_duration = 514381025;
+ * @return string
+ */
+ public function getMinDuration()
+ {
+ return isset($this->min_duration) ? $this->min_duration : '';
+ }
+
+ public function hasMinDuration()
+ {
+ return isset($this->min_duration);
+ }
+
+ public function clearMinDuration()
+ {
+ unset($this->min_duration);
+ }
+
+ /**
+ * Generated from protobuf field optional string min_duration = 514381025;
+ * @param string $var
+ * @return $this
+ */
+ public function setMinDuration($var)
+ {
+ GPBUtil::checkString($var, True);
+ $this->min_duration = $var;
+
+ return $this;
+ }
+
+ /**
+ * Generated from protobuf field optional string start_time_not_earlier_than = 490386497;
+ * @return string
+ */
+ public function getStartTimeNotEarlierThan()
+ {
+ return isset($this->start_time_not_earlier_than) ? $this->start_time_not_earlier_than : '';
+ }
+
+ public function hasStartTimeNotEarlierThan()
+ {
+ return isset($this->start_time_not_earlier_than);
+ }
+
+ public function clearStartTimeNotEarlierThan()
+ {
+ unset($this->start_time_not_earlier_than);
+ }
+
+ /**
+ * Generated from protobuf field optional string start_time_not_earlier_than = 490386497;
+ * @param string $var
+ * @return $this
+ */
+ public function setStartTimeNotEarlierThan($var)
+ {
+ GPBUtil::checkString($var, True);
+ $this->start_time_not_earlier_than = $var;
+
+ return $this;
+ }
+
+ /**
+ * Generated from protobuf field optional string start_time_not_later_than = 212764853;
+ * @return string
+ */
+ public function getStartTimeNotLaterThan()
+ {
+ return isset($this->start_time_not_later_than) ? $this->start_time_not_later_than : '';
+ }
+
+ public function hasStartTimeNotLaterThan()
+ {
+ return isset($this->start_time_not_later_than);
+ }
+
+ public function clearStartTimeNotLaterThan()
+ {
+ unset($this->start_time_not_later_than);
+ }
+
+ /**
+ * Generated from protobuf field optional string start_time_not_later_than = 212764853;
+ * @param string $var
+ * @return $this
+ */
+ public function setStartTimeNotLaterThan($var)
+ {
+ GPBUtil::checkString($var, True);
+ $this->start_time_not_later_than = $var;
+
+ return $this;
+ }
+
+}
+
diff --git a/Compute/src/V1/ForwardingRule.php b/Compute/src/V1/ForwardingRule.php
index bccb877ae246..8f59ac14933b 100644
--- a/Compute/src/V1/ForwardingRule.php
+++ b/Compute/src/V1/ForwardingRule.php
@@ -117,7 +117,7 @@ class ForwardingRule extends \Google\Protobuf\Internal\Message
*/
protected $backend_service = null;
/**
- * [Output Only] The URL for the corresponding base forwarding rule. By base
+ * Output only. [Output Only] The URL for the corresponding base forwarding rule. By base
* forwarding rule, we mean the forwarding rule that has the same IP address,
* protocol, and port settings with the current forwarding rule, but without
* sourceIPRanges specified.
@@ -128,7 +128,7 @@ class ForwardingRule extends \Google\Protobuf\Internal\Message
*/
protected $base_forwarding_rule = null;
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -222,7 +222,7 @@ class ForwardingRule extends \Google\Protobuf\Internal\Message
*/
protected $is_mirroring_collector = null;
/**
- * [Output Only] Type of the resource. Alwayscompute#forwardingRule for forwarding rule resources.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#forwardingRule for forwarding rule resources.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -389,7 +389,7 @@ class ForwardingRule extends \Google\Protobuf\Internal\Message
*/
protected $psc_connection_status = null;
/**
- * [Output Only] URL of the region where the regional forwarding rule resides.
+ * Output only. [Output Only] URL of the region where the regional forwarding rule resides.
* This field is not applicable to global forwarding rules.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
@@ -404,7 +404,7 @@ class ForwardingRule extends \Google\Protobuf\Internal\Message
*/
protected $self_link = null;
/**
- * [Output Only] Server-defined URL for this resource with the resource id.
+ * Output only. [Output Only] Server-defined URL for this resource with the resource id.
*
* Generated from protobuf field optional string self_link_with_id = 44520962;
*/
@@ -550,14 +550,14 @@ class ForwardingRule extends \Google\Protobuf\Internal\Message
* Required for internal and external passthrough Network Load Balancers;
* must be omitted for all other load balancer types.
* @type string $base_forwarding_rule
- * [Output Only] The URL for the corresponding base forwarding rule. By base
+ * Output only. [Output Only] The URL for the corresponding base forwarding rule. By base
* forwarding rule, we mean the forwarding rule that has the same IP address,
* protocol, and port settings with the current forwarding rule, but without
* sourceIPRanges specified.
* Always empty if the current forwarding rule does not have sourceIPRanges
* specified.
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $description
* An optional description of this resource. Provide this property when you
@@ -615,7 +615,7 @@ class ForwardingRule extends \Google\Protobuf\Internal\Message
* load balancer will not have their traffic mirrored even if aPacketMirroring rule applies to them.
* This can only be set to true for load balancers that have theirloadBalancingScheme set to INTERNAL.
* @type string $kind
- * [Output Only] Type of the resource. Alwayscompute#forwardingRule for forwarding rule resources.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#forwardingRule for forwarding rule resources.
* @type string $label_fingerprint
* A fingerprint for the labels being applied to this resource, which is
* essentially a hash of the labels set used for optimistic locking. The
@@ -730,14 +730,14 @@ class ForwardingRule extends \Google\Protobuf\Internal\Message
*
* Check the PscConnectionStatus enum for the list of possible values.
* @type string $region
- * [Output Only] URL of the region where the regional forwarding rule resides.
+ * Output only. [Output Only] URL of the region where the regional forwarding rule resides.
* This field is not applicable to global forwarding rules.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
* @type string $self_link
* [Output Only] Server-defined URL for the resource.
* @type string $self_link_with_id
- * [Output Only] Server-defined URL for this resource with the resource id.
+ * Output only. [Output Only] Server-defined URL for this resource with the resource id.
* @type array<\Google\Cloud\Compute\V1\ForwardingRuleServiceDirectoryRegistration>|\Google\Protobuf\Internal\RepeatedField $service_directory_registrations
* Service Directory resources to register this forwarding rule with.
* Currently, only supports a single Service Directory resource.
@@ -1113,7 +1113,7 @@ public function setBackendService($var)
}
/**
- * [Output Only] The URL for the corresponding base forwarding rule. By base
+ * Output only. [Output Only] The URL for the corresponding base forwarding rule. By base
* forwarding rule, we mean the forwarding rule that has the same IP address,
* protocol, and port settings with the current forwarding rule, but without
* sourceIPRanges specified.
@@ -1139,7 +1139,7 @@ public function clearBaseForwardingRule()
}
/**
- * [Output Only] The URL for the corresponding base forwarding rule. By base
+ * Output only. [Output Only] The URL for the corresponding base forwarding rule. By base
* forwarding rule, we mean the forwarding rule that has the same IP address,
* protocol, and port settings with the current forwarding rule, but without
* sourceIPRanges specified.
@@ -1159,7 +1159,7 @@ public function setBaseForwardingRule($var)
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -1181,7 +1181,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -1563,7 +1563,7 @@ public function setIsMirroringCollector($var)
}
/**
- * [Output Only] Type of the resource. Alwayscompute#forwardingRule for forwarding rule resources.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#forwardingRule for forwarding rule resources.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -1584,7 +1584,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Alwayscompute#forwardingRule for forwarding rule resources.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#forwardingRule for forwarding rule resources.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -2179,7 +2179,7 @@ public function setPscConnectionStatus($var)
}
/**
- * [Output Only] URL of the region where the regional forwarding rule resides.
+ * Output only. [Output Only] URL of the region where the regional forwarding rule resides.
* This field is not applicable to global forwarding rules.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
@@ -2203,7 +2203,7 @@ public function clearRegion()
}
/**
- * [Output Only] URL of the region where the regional forwarding rule resides.
+ * Output only. [Output Only] URL of the region where the regional forwarding rule resides.
* This field is not applicable to global forwarding rules.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
@@ -2257,7 +2257,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Server-defined URL for this resource with the resource id.
+ * Output only. [Output Only] Server-defined URL for this resource with the resource id.
*
* Generated from protobuf field optional string self_link_with_id = 44520962;
* @return string
@@ -2278,7 +2278,7 @@ public function clearSelfLinkWithId()
}
/**
- * [Output Only] Server-defined URL for this resource with the resource id.
+ * Output only. [Output Only] Server-defined URL for this resource with the resource id.
*
* Generated from protobuf field optional string self_link_with_id = 44520962;
* @param string $var
diff --git a/Compute/src/V1/ForwardingRuleAggregatedList.php b/Compute/src/V1/ForwardingRuleAggregatedList.php
index 2067ddfd094f..6c3ff063dd55 100644
--- a/Compute/src/V1/ForwardingRuleAggregatedList.php
+++ b/Compute/src/V1/ForwardingRuleAggregatedList.php
@@ -27,7 +27,7 @@ class ForwardingRuleAggregatedList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Alwayscompute#forwardingRuleAggregatedList for lists of forwarding rules.
+ * Output only. [Output Only] Type of resource. Alwayscompute#forwardingRuleAggregatedList for lists of forwarding rules.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -43,13 +43,13 @@ class ForwardingRuleAggregatedList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
@@ -72,7 +72,7 @@ class ForwardingRuleAggregatedList extends \Google\Protobuf\Internal\Message
* @type array|\Google\Protobuf\Internal\MapField $items
* A list of ForwardingRulesScopedList resources.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#forwardingRuleAggregatedList for lists of forwarding rules.
+ * Output only. [Output Only] Type of resource. Alwayscompute#forwardingRuleAggregatedList for lists of forwarding rules.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -80,9 +80,9 @@ class ForwardingRuleAggregatedList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -155,7 +155,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#forwardingRuleAggregatedList for lists of forwarding rules.
+ * Output only. [Output Only] Type of resource. Alwayscompute#forwardingRuleAggregatedList for lists of forwarding rules.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -176,7 +176,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#forwardingRuleAggregatedList for lists of forwarding rules.
+ * Output only. [Output Only] Type of resource. Alwayscompute#forwardingRuleAggregatedList for lists of forwarding rules.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -235,7 +235,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -256,7 +256,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -271,7 +271,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -282,7 +282,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/ForwardingRuleList.php b/Compute/src/V1/ForwardingRuleList.php
index 6201bd2a4652..619ef7604849 100644
--- a/Compute/src/V1/ForwardingRuleList.php
+++ b/Compute/src/V1/ForwardingRuleList.php
@@ -28,7 +28,7 @@ class ForwardingRuleList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -44,7 +44,7 @@ class ForwardingRuleList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -67,7 +67,7 @@ class ForwardingRuleList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\ForwardingRule>|\Google\Protobuf\Internal\RepeatedField $items
* A list of ForwardingRule resources.
* @type string $kind
- * Type of resource.
+ * Output only. Type of resource.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -75,7 +75,7 @@ class ForwardingRuleList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -148,7 +148,7 @@ public function setItems($var)
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -169,7 +169,7 @@ public function clearKind()
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -228,7 +228,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -249,7 +249,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/FutureReservation.php b/Compute/src/V1/FutureReservation.php
index 5c7ebfc263a1..0145daef6384 100644
--- a/Compute/src/V1/FutureReservation.php
+++ b/Compute/src/V1/FutureReservation.php
@@ -59,7 +59,7 @@ class FutureReservation extends \Google\Protobuf\Internal\Message
*/
protected $commitment_info = null;
/**
- * [Output Only] The creation timestamp for this future reservation inRFC3339
+ * Output only. [Output Only] The creation timestamp for this future reservation inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -86,14 +86,14 @@ class FutureReservation extends \Google\Protobuf\Internal\Message
*/
protected $enable_emergent_maintenance = null;
/**
- * [Output Only] A unique identifier for this future reservation. The server
+ * Output only. [Output Only] A unique identifier for this future reservation. The server
* defines this identifier.
*
* Generated from protobuf field optional uint64 id = 3355;
*/
protected $id = null;
/**
- * [Output Only] Type of the resource. Alwayscompute#futureReservation for future reservations.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#futureReservation for future reservations.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -153,13 +153,13 @@ class FutureReservation extends \Google\Protobuf\Internal\Message
*/
protected $scheduling_type = null;
/**
- * [Output Only] Server-defined fully-qualified URL for this resource.
+ * Output only. [Output Only] Server-defined fully-qualified URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Server-defined URL for this resource with the resource id.
+ * Output only. [Output Only] Server-defined URL for this resource with the resource id.
*
* Generated from protobuf field optional string self_link_with_id = 44520962;
*/
@@ -186,7 +186,7 @@ class FutureReservation extends \Google\Protobuf\Internal\Message
*/
protected $specific_sku_properties = null;
/**
- * [Output only] Status of the Future Reservation
+ * Output only. [Output only] Status of the Future Reservation
*
* Generated from protobuf field optional .google.cloud.compute.v1.FutureReservationStatus status = 181260274;
*/
@@ -198,7 +198,7 @@ class FutureReservation extends \Google\Protobuf\Internal\Message
*/
protected $time_window = null;
/**
- * [Output Only] URL of the Zone where this future reservation resides.
+ * Output only. [Output Only] URL of the Zone where this future reservation resides.
*
* Generated from protobuf field optional string zone = 3744684;
*/
@@ -235,7 +235,7 @@ class FutureReservation extends \Google\Protobuf\Internal\Message
* If not present, then FR will not deliver a new commitment or update an
* existing commitment.
* @type string $creation_timestamp
- * [Output Only] The creation timestamp for this future reservation inRFC3339
+ * Output only. [Output Only] The creation timestamp for this future reservation inRFC3339
* text format.
* @type string $deployment_type
* Type of the deployment requested as part of future reservation.
@@ -246,10 +246,10 @@ class FutureReservation extends \Google\Protobuf\Internal\Message
* @type bool $enable_emergent_maintenance
* Indicates if this group of VMs have emergent maintenance enabled.
* @type int|string $id
- * [Output Only] A unique identifier for this future reservation. The server
+ * Output only. [Output Only] A unique identifier for this future reservation. The server
* defines this identifier.
* @type string $kind
- * [Output Only] Type of the resource. Alwayscompute#futureReservation for future reservations.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#futureReservation for future reservations.
* @type string $name
* The name of the resource, provided by the client when initially creating
* the resource. The resource name must be 1-63 characters long, and comply
@@ -281,9 +281,9 @@ class FutureReservation extends \Google\Protobuf\Internal\Message
* Maintenance information for this reservation
* Check the SchedulingType enum for the list of possible values.
* @type string $self_link
- * [Output Only] Server-defined fully-qualified URL for this resource.
+ * Output only. [Output Only] Server-defined fully-qualified URL for this resource.
* @type string $self_link_with_id
- * [Output Only] Server-defined URL for this resource with the resource id.
+ * Output only. [Output Only] Server-defined URL for this resource with the resource id.
* @type \Google\Cloud\Compute\V1\ShareSettings $share_settings
* List of Projects/Folders to share with.
* @type bool $specific_reservation_required
@@ -294,11 +294,11 @@ class FutureReservation extends \Google\Protobuf\Internal\Message
* Future Reservation configuration to indicate instance properties and
* total count.
* @type \Google\Cloud\Compute\V1\FutureReservationStatus $status
- * [Output only] Status of the Future Reservation
+ * Output only. [Output only] Status of the Future Reservation
* @type \Google\Cloud\Compute\V1\FutureReservationTimeWindow $time_window
* Time window for this Future Reservation.
* @type string $zone
- * [Output Only] URL of the Zone where this future reservation resides.
+ * Output only. [Output Only] URL of the Zone where this future reservation resides.
* }
*/
public function __construct($data = NULL) {
@@ -515,7 +515,7 @@ public function setCommitmentInfo($var)
}
/**
- * [Output Only] The creation timestamp for this future reservation inRFC3339
+ * Output only. [Output Only] The creation timestamp for this future reservation inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -537,7 +537,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] The creation timestamp for this future reservation inRFC3339
+ * Output only. [Output Only] The creation timestamp for this future reservation inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -665,7 +665,7 @@ public function setEnableEmergentMaintenance($var)
}
/**
- * [Output Only] A unique identifier for this future reservation. The server
+ * Output only. [Output Only] A unique identifier for this future reservation. The server
* defines this identifier.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -687,7 +687,7 @@ public function clearId()
}
/**
- * [Output Only] A unique identifier for this future reservation. The server
+ * Output only. [Output Only] A unique identifier for this future reservation. The server
* defines this identifier.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -703,7 +703,7 @@ public function setId($var)
}
/**
- * [Output Only] Type of the resource. Alwayscompute#futureReservation for future reservations.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#futureReservation for future reservations.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -724,7 +724,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Alwayscompute#futureReservation for future reservations.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#futureReservation for future reservations.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -991,7 +991,7 @@ public function setSchedulingType($var)
}
/**
- * [Output Only] Server-defined fully-qualified URL for this resource.
+ * Output only. [Output Only] Server-defined fully-qualified URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -1012,7 +1012,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined fully-qualified URL for this resource.
+ * Output only. [Output Only] Server-defined fully-qualified URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -1027,7 +1027,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Server-defined URL for this resource with the resource id.
+ * Output only. [Output Only] Server-defined URL for this resource with the resource id.
*
* Generated from protobuf field optional string self_link_with_id = 44520962;
* @return string
@@ -1048,7 +1048,7 @@ public function clearSelfLinkWithId()
}
/**
- * [Output Only] Server-defined URL for this resource with the resource id.
+ * Output only. [Output Only] Server-defined URL for this resource with the resource id.
*
* Generated from protobuf field optional string self_link_with_id = 44520962;
* @param string $var
@@ -1177,7 +1177,7 @@ public function setSpecificSkuProperties($var)
}
/**
- * [Output only] Status of the Future Reservation
+ * Output only. [Output only] Status of the Future Reservation
*
* Generated from protobuf field optional .google.cloud.compute.v1.FutureReservationStatus status = 181260274;
* @return \Google\Cloud\Compute\V1\FutureReservationStatus|null
@@ -1198,7 +1198,7 @@ public function clearStatus()
}
/**
- * [Output only] Status of the Future Reservation
+ * Output only. [Output only] Status of the Future Reservation
*
* Generated from protobuf field optional .google.cloud.compute.v1.FutureReservationStatus status = 181260274;
* @param \Google\Cloud\Compute\V1\FutureReservationStatus $var
@@ -1249,7 +1249,7 @@ public function setTimeWindow($var)
}
/**
- * [Output Only] URL of the Zone where this future reservation resides.
+ * Output only. [Output Only] URL of the Zone where this future reservation resides.
*
* Generated from protobuf field optional string zone = 3744684;
* @return string
@@ -1270,7 +1270,7 @@ public function clearZone()
}
/**
- * [Output Only] URL of the Zone where this future reservation resides.
+ * Output only. [Output Only] URL of the Zone where this future reservation resides.
*
* Generated from protobuf field optional string zone = 3744684;
* @param string $var
diff --git a/Compute/src/V1/FutureReservationStatus.php b/Compute/src/V1/FutureReservationStatus.php
index 61515ed3e0c3..2016d007beef 100644
--- a/Compute/src/V1/FutureReservationStatus.php
+++ b/Compute/src/V1/FutureReservationStatus.php
@@ -16,28 +16,28 @@
class FutureReservationStatus extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] The current status of the requested amendment.
+ * Output only. [Output Only] The current status of the requested amendment.
* Check the AmendmentStatus enum for the list of possible values.
*
* Generated from protobuf field optional string amendment_status = 250270052;
*/
protected $amendment_status = null;
/**
- * Fully qualified urls of the automatically created reservations at
+ * Output only. Fully qualified urls of the automatically created reservations at
* start_time.
*
* Generated from protobuf field repeated string auto_created_reservations = 140217006;
*/
private $auto_created_reservations;
/**
- * [Output Only] Represents the existing matching usage for the future
+ * Output only. [Output Only] Represents the existing matching usage for the future
* reservation.
*
* Generated from protobuf field optional .google.cloud.compute.v1.FutureReservationStatusExistingMatchingUsageInfo existing_matching_usage_info = 509920602;
*/
protected $existing_matching_usage_info = null;
/**
- * This count indicates the fulfilled capacity so far. This is set during
+ * Output only. This count indicates the fulfilled capacity so far. This is set during
* "PROVISIONING" state. This count also includes capacity delivered as part
* of existing matching reservations.
*
@@ -45,7 +45,7 @@ class FutureReservationStatus extends \Google\Protobuf\Internal\Message
*/
protected $fulfilled_count = null;
/**
- * [Output Only] This field represents the future reservation before an
+ * Output only. [Output Only] This field represents the future reservation before an
* amendment was requested. If the amendment is declined, the Future
* Reservation will be reverted to the last known good state. The last known
* good state is not set when updating a future reservation whose
@@ -55,7 +55,7 @@ class FutureReservationStatus extends \Google\Protobuf\Internal\Message
*/
protected $last_known_good_state = null;
/**
- * Time when Future Reservation would become LOCKED, after which no
+ * Output only. Time when Future Reservation would become LOCKED, after which no
* modifications to Future Reservation will be allowed. Applicable only
* after the Future Reservation is in the APPROVED state. The lock_time is
* an RFC3339 string. The procurement_status will transition to PROCURING
@@ -65,7 +65,7 @@ class FutureReservationStatus extends \Google\Protobuf\Internal\Message
*/
protected $lock_time = null;
/**
- * Current state of this Future Reservation
+ * Output only. Current state of this Future Reservation
* Check the ProcurementStatus enum for the list of possible values.
*
* Generated from protobuf field optional string procurement_status = 224718945;
@@ -83,32 +83,32 @@ class FutureReservationStatus extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $amendment_status
- * [Output Only] The current status of the requested amendment.
+ * Output only. [Output Only] The current status of the requested amendment.
* Check the AmendmentStatus enum for the list of possible values.
* @type array|\Google\Protobuf\Internal\RepeatedField $auto_created_reservations
- * Fully qualified urls of the automatically created reservations at
+ * Output only. Fully qualified urls of the automatically created reservations at
* start_time.
* @type \Google\Cloud\Compute\V1\FutureReservationStatusExistingMatchingUsageInfo $existing_matching_usage_info
- * [Output Only] Represents the existing matching usage for the future
+ * Output only. [Output Only] Represents the existing matching usage for the future
* reservation.
* @type int|string $fulfilled_count
- * This count indicates the fulfilled capacity so far. This is set during
+ * Output only. This count indicates the fulfilled capacity so far. This is set during
* "PROVISIONING" state. This count also includes capacity delivered as part
* of existing matching reservations.
* @type \Google\Cloud\Compute\V1\FutureReservationStatusLastKnownGoodState $last_known_good_state
- * [Output Only] This field represents the future reservation before an
+ * Output only. [Output Only] This field represents the future reservation before an
* amendment was requested. If the amendment is declined, the Future
* Reservation will be reverted to the last known good state. The last known
* good state is not set when updating a future reservation whose
* Procurement Status is DRAFTING.
* @type string $lock_time
- * Time when Future Reservation would become LOCKED, after which no
+ * Output only. Time when Future Reservation would become LOCKED, after which no
* modifications to Future Reservation will be allowed. Applicable only
* after the Future Reservation is in the APPROVED state. The lock_time is
* an RFC3339 string. The procurement_status will transition to PROCURING
* state at this time.
* @type string $procurement_status
- * Current state of this Future Reservation
+ * Output only. Current state of this Future Reservation
* Check the ProcurementStatus enum for the list of possible values.
* @type \Google\Cloud\Compute\V1\FutureReservationStatusSpecificSKUProperties $specific_sku_properties
* }
@@ -119,7 +119,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] The current status of the requested amendment.
+ * Output only. [Output Only] The current status of the requested amendment.
* Check the AmendmentStatus enum for the list of possible values.
*
* Generated from protobuf field optional string amendment_status = 250270052;
@@ -141,7 +141,7 @@ public function clearAmendmentStatus()
}
/**
- * [Output Only] The current status of the requested amendment.
+ * Output only. [Output Only] The current status of the requested amendment.
* Check the AmendmentStatus enum for the list of possible values.
*
* Generated from protobuf field optional string amendment_status = 250270052;
@@ -157,7 +157,7 @@ public function setAmendmentStatus($var)
}
/**
- * Fully qualified urls of the automatically created reservations at
+ * Output only. Fully qualified urls of the automatically created reservations at
* start_time.
*
* Generated from protobuf field repeated string auto_created_reservations = 140217006;
@@ -169,7 +169,7 @@ public function getAutoCreatedReservations()
}
/**
- * Fully qualified urls of the automatically created reservations at
+ * Output only. Fully qualified urls of the automatically created reservations at
* start_time.
*
* Generated from protobuf field repeated string auto_created_reservations = 140217006;
@@ -185,7 +185,7 @@ public function setAutoCreatedReservations($var)
}
/**
- * [Output Only] Represents the existing matching usage for the future
+ * Output only. [Output Only] Represents the existing matching usage for the future
* reservation.
*
* Generated from protobuf field optional .google.cloud.compute.v1.FutureReservationStatusExistingMatchingUsageInfo existing_matching_usage_info = 509920602;
@@ -207,7 +207,7 @@ public function clearExistingMatchingUsageInfo()
}
/**
- * [Output Only] Represents the existing matching usage for the future
+ * Output only. [Output Only] Represents the existing matching usage for the future
* reservation.
*
* Generated from protobuf field optional .google.cloud.compute.v1.FutureReservationStatusExistingMatchingUsageInfo existing_matching_usage_info = 509920602;
@@ -223,7 +223,7 @@ public function setExistingMatchingUsageInfo($var)
}
/**
- * This count indicates the fulfilled capacity so far. This is set during
+ * Output only. This count indicates the fulfilled capacity so far. This is set during
* "PROVISIONING" state. This count also includes capacity delivered as part
* of existing matching reservations.
*
@@ -246,7 +246,7 @@ public function clearFulfilledCount()
}
/**
- * This count indicates the fulfilled capacity so far. This is set during
+ * Output only. This count indicates the fulfilled capacity so far. This is set during
* "PROVISIONING" state. This count also includes capacity delivered as part
* of existing matching reservations.
*
@@ -263,7 +263,7 @@ public function setFulfilledCount($var)
}
/**
- * [Output Only] This field represents the future reservation before an
+ * Output only. [Output Only] This field represents the future reservation before an
* amendment was requested. If the amendment is declined, the Future
* Reservation will be reverted to the last known good state. The last known
* good state is not set when updating a future reservation whose
@@ -288,7 +288,7 @@ public function clearLastKnownGoodState()
}
/**
- * [Output Only] This field represents the future reservation before an
+ * Output only. [Output Only] This field represents the future reservation before an
* amendment was requested. If the amendment is declined, the Future
* Reservation will be reverted to the last known good state. The last known
* good state is not set when updating a future reservation whose
@@ -307,7 +307,7 @@ public function setLastKnownGoodState($var)
}
/**
- * Time when Future Reservation would become LOCKED, after which no
+ * Output only. Time when Future Reservation would become LOCKED, after which no
* modifications to Future Reservation will be allowed. Applicable only
* after the Future Reservation is in the APPROVED state. The lock_time is
* an RFC3339 string. The procurement_status will transition to PROCURING
@@ -332,7 +332,7 @@ public function clearLockTime()
}
/**
- * Time when Future Reservation would become LOCKED, after which no
+ * Output only. Time when Future Reservation would become LOCKED, after which no
* modifications to Future Reservation will be allowed. Applicable only
* after the Future Reservation is in the APPROVED state. The lock_time is
* an RFC3339 string. The procurement_status will transition to PROCURING
@@ -351,7 +351,7 @@ public function setLockTime($var)
}
/**
- * Current state of this Future Reservation
+ * Output only. Current state of this Future Reservation
* Check the ProcurementStatus enum for the list of possible values.
*
* Generated from protobuf field optional string procurement_status = 224718945;
@@ -373,7 +373,7 @@ public function clearProcurementStatus()
}
/**
- * Current state of this Future Reservation
+ * Output only. Current state of this Future Reservation
* Check the ProcurementStatus enum for the list of possible values.
*
* Generated from protobuf field optional string procurement_status = 224718945;
diff --git a/Compute/src/V1/FutureReservationStatus/AmendmentStatus.php b/Compute/src/V1/FutureReservationStatus/AmendmentStatus.php
index 9934b4848e07..8710a38a172b 100644
--- a/Compute/src/V1/FutureReservationStatus/AmendmentStatus.php
+++ b/Compute/src/V1/FutureReservationStatus/AmendmentStatus.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] The current status of the requested amendment.
+ * Output only. [Output Only] The current status of the requested amendment.
*
* Protobuf type google.cloud.compute.v1.FutureReservationStatus.AmendmentStatus
*/
diff --git a/Compute/src/V1/FutureReservationStatus/ProcurementStatus.php b/Compute/src/V1/FutureReservationStatus/ProcurementStatus.php
index a1dd62ed02f8..61e82d66083e 100644
--- a/Compute/src/V1/FutureReservationStatus/ProcurementStatus.php
+++ b/Compute/src/V1/FutureReservationStatus/ProcurementStatus.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * Current state of this Future Reservation
+ * Output only. Current state of this Future Reservation
*
* Protobuf type google.cloud.compute.v1.FutureReservationStatus.ProcurementStatus
*/
diff --git a/Compute/src/V1/FutureReservationStatusExistingMatchingUsageInfo.php b/Compute/src/V1/FutureReservationStatusExistingMatchingUsageInfo.php
index ccc89bd49e54..02059e82a1ee 100644
--- a/Compute/src/V1/FutureReservationStatusExistingMatchingUsageInfo.php
+++ b/Compute/src/V1/FutureReservationStatusExistingMatchingUsageInfo.php
@@ -17,14 +17,14 @@
class FutureReservationStatusExistingMatchingUsageInfo extends \Google\Protobuf\Internal\Message
{
/**
- * Count to represent min(FR total_count,
+ * Output only. Count to represent min(FR total_count,
* matching_reserved_capacity+matching_unreserved_instances)
*
* Generated from protobuf field optional int64 count = 94851343;
*/
protected $count = null;
/**
- * Timestamp when the matching usage was calculated
+ * Output only. Timestamp when the matching usage was calculated
*
* Generated from protobuf field optional string timestamp = 55126294;
*/
@@ -37,10 +37,10 @@ class FutureReservationStatusExistingMatchingUsageInfo extends \Google\Protobuf\
* Optional. Data for populating the Message object.
*
* @type int|string $count
- * Count to represent min(FR total_count,
+ * Output only. Count to represent min(FR total_count,
* matching_reserved_capacity+matching_unreserved_instances)
* @type string $timestamp
- * Timestamp when the matching usage was calculated
+ * Output only. Timestamp when the matching usage was calculated
* }
*/
public function __construct($data = NULL) {
@@ -49,7 +49,7 @@ public function __construct($data = NULL) {
}
/**
- * Count to represent min(FR total_count,
+ * Output only. Count to represent min(FR total_count,
* matching_reserved_capacity+matching_unreserved_instances)
*
* Generated from protobuf field optional int64 count = 94851343;
@@ -71,7 +71,7 @@ public function clearCount()
}
/**
- * Count to represent min(FR total_count,
+ * Output only. Count to represent min(FR total_count,
* matching_reserved_capacity+matching_unreserved_instances)
*
* Generated from protobuf field optional int64 count = 94851343;
@@ -87,7 +87,7 @@ public function setCount($var)
}
/**
- * Timestamp when the matching usage was calculated
+ * Output only. Timestamp when the matching usage was calculated
*
* Generated from protobuf field optional string timestamp = 55126294;
* @return string
@@ -108,7 +108,7 @@ public function clearTimestamp()
}
/**
- * Timestamp when the matching usage was calculated
+ * Output only. Timestamp when the matching usage was calculated
*
* Generated from protobuf field optional string timestamp = 55126294;
* @param string $var
diff --git a/Compute/src/V1/FutureReservationStatusLastKnownGoodState.php b/Compute/src/V1/FutureReservationStatusLastKnownGoodState.php
index c3b0b67e13e6..f179fed5bb89 100644
--- a/Compute/src/V1/FutureReservationStatusLastKnownGoodState.php
+++ b/Compute/src/V1/FutureReservationStatusLastKnownGoodState.php
@@ -17,14 +17,14 @@
class FutureReservationStatusLastKnownGoodState extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] The description of the FutureReservation before an
+ * Output only. [Output Only] The description of the FutureReservation before an
* amendment was requested.
*
* Generated from protobuf field optional string description = 422937596;
*/
protected $description = null;
/**
- * [Output Only] Represents the matching usage for the future
+ * Output only. [Output Only] Represents the matching usage for the future
* reservation before an amendment was requested.
*
* Generated from protobuf field optional .google.cloud.compute.v1.FutureReservationStatusExistingMatchingUsageInfo existing_matching_usage_info = 509920602;
@@ -35,21 +35,21 @@ class FutureReservationStatusLastKnownGoodState extends \Google\Protobuf\Interna
*/
protected $future_reservation_specs = null;
/**
- * [Output Only] The lock time of the FutureReservation before an
+ * Output only. [Output Only] The lock time of the FutureReservation before an
* amendment was requested.
*
* Generated from protobuf field optional string lock_time = 143772001;
*/
protected $lock_time = null;
/**
- * [Output Only] The name prefix of the Future Reservation before an
+ * Output only. [Output Only] The name prefix of the Future Reservation before an
* amendment was requested.
*
* Generated from protobuf field optional string name_prefix = 236409542;
*/
protected $name_prefix = null;
/**
- * [Output Only] The status of the last known good state for the Future
+ * Output only. [Output Only] The status of the last known good state for the Future
* Reservation.
* Check the ProcurementStatus enum for the list of possible values.
*
@@ -64,20 +64,20 @@ class FutureReservationStatusLastKnownGoodState extends \Google\Protobuf\Interna
* Optional. Data for populating the Message object.
*
* @type string $description
- * [Output Only] The description of the FutureReservation before an
+ * Output only. [Output Only] The description of the FutureReservation before an
* amendment was requested.
* @type \Google\Cloud\Compute\V1\FutureReservationStatusExistingMatchingUsageInfo $existing_matching_usage_info
- * [Output Only] Represents the matching usage for the future
+ * Output only. [Output Only] Represents the matching usage for the future
* reservation before an amendment was requested.
* @type \Google\Cloud\Compute\V1\FutureReservationStatusLastKnownGoodStateFutureReservationSpecs $future_reservation_specs
* @type string $lock_time
- * [Output Only] The lock time of the FutureReservation before an
+ * Output only. [Output Only] The lock time of the FutureReservation before an
* amendment was requested.
* @type string $name_prefix
- * [Output Only] The name prefix of the Future Reservation before an
+ * Output only. [Output Only] The name prefix of the Future Reservation before an
* amendment was requested.
* @type string $procurement_status
- * [Output Only] The status of the last known good state for the Future
+ * Output only. [Output Only] The status of the last known good state for the Future
* Reservation.
* Check the ProcurementStatus enum for the list of possible values.
* }
@@ -88,7 +88,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] The description of the FutureReservation before an
+ * Output only. [Output Only] The description of the FutureReservation before an
* amendment was requested.
*
* Generated from protobuf field optional string description = 422937596;
@@ -110,7 +110,7 @@ public function clearDescription()
}
/**
- * [Output Only] The description of the FutureReservation before an
+ * Output only. [Output Only] The description of the FutureReservation before an
* amendment was requested.
*
* Generated from protobuf field optional string description = 422937596;
@@ -126,7 +126,7 @@ public function setDescription($var)
}
/**
- * [Output Only] Represents the matching usage for the future
+ * Output only. [Output Only] Represents the matching usage for the future
* reservation before an amendment was requested.
*
* Generated from protobuf field optional .google.cloud.compute.v1.FutureReservationStatusExistingMatchingUsageInfo existing_matching_usage_info = 509920602;
@@ -148,7 +148,7 @@ public function clearExistingMatchingUsageInfo()
}
/**
- * [Output Only] Represents the matching usage for the future
+ * Output only. [Output Only] Represents the matching usage for the future
* reservation before an amendment was requested.
*
* Generated from protobuf field optional .google.cloud.compute.v1.FutureReservationStatusExistingMatchingUsageInfo existing_matching_usage_info = 509920602;
@@ -196,7 +196,7 @@ public function setFutureReservationSpecs($var)
}
/**
- * [Output Only] The lock time of the FutureReservation before an
+ * Output only. [Output Only] The lock time of the FutureReservation before an
* amendment was requested.
*
* Generated from protobuf field optional string lock_time = 143772001;
@@ -218,7 +218,7 @@ public function clearLockTime()
}
/**
- * [Output Only] The lock time of the FutureReservation before an
+ * Output only. [Output Only] The lock time of the FutureReservation before an
* amendment was requested.
*
* Generated from protobuf field optional string lock_time = 143772001;
@@ -234,7 +234,7 @@ public function setLockTime($var)
}
/**
- * [Output Only] The name prefix of the Future Reservation before an
+ * Output only. [Output Only] The name prefix of the Future Reservation before an
* amendment was requested.
*
* Generated from protobuf field optional string name_prefix = 236409542;
@@ -256,7 +256,7 @@ public function clearNamePrefix()
}
/**
- * [Output Only] The name prefix of the Future Reservation before an
+ * Output only. [Output Only] The name prefix of the Future Reservation before an
* amendment was requested.
*
* Generated from protobuf field optional string name_prefix = 236409542;
@@ -272,7 +272,7 @@ public function setNamePrefix($var)
}
/**
- * [Output Only] The status of the last known good state for the Future
+ * Output only. [Output Only] The status of the last known good state for the Future
* Reservation.
* Check the ProcurementStatus enum for the list of possible values.
*
@@ -295,7 +295,7 @@ public function clearProcurementStatus()
}
/**
- * [Output Only] The status of the last known good state for the Future
+ * Output only. [Output Only] The status of the last known good state for the Future
* Reservation.
* Check the ProcurementStatus enum for the list of possible values.
*
diff --git a/Compute/src/V1/FutureReservationStatusLastKnownGoodState/ProcurementStatus.php b/Compute/src/V1/FutureReservationStatusLastKnownGoodState/ProcurementStatus.php
index 4e9d05728b8b..9e7c3efd36c6 100644
--- a/Compute/src/V1/FutureReservationStatusLastKnownGoodState/ProcurementStatus.php
+++ b/Compute/src/V1/FutureReservationStatusLastKnownGoodState/ProcurementStatus.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] The status of the last known good state for the Future
+ * Output only. [Output Only] The status of the last known good state for the Future
* Reservation.
*
* Protobuf type google.cloud.compute.v1.FutureReservationStatusLastKnownGoodState.ProcurementStatus
diff --git a/Compute/src/V1/FutureReservationStatusLastKnownGoodStateFutureReservationSpecs.php b/Compute/src/V1/FutureReservationStatusLastKnownGoodStateFutureReservationSpecs.php
index f613c0d18c9b..5c41db13ebf5 100644
--- a/Compute/src/V1/FutureReservationStatusLastKnownGoodStateFutureReservationSpecs.php
+++ b/Compute/src/V1/FutureReservationStatusLastKnownGoodStateFutureReservationSpecs.php
@@ -16,20 +16,20 @@
class FutureReservationStatusLastKnownGoodStateFutureReservationSpecs extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] The previous share settings of the Future Reservation.
+ * Output only. [Output Only] The previous share settings of the Future Reservation.
*
* Generated from protobuf field optional .google.cloud.compute.v1.ShareSettings share_settings = 266668163;
*/
protected $share_settings = null;
/**
- * [Output Only] The previous instance related properties of the
+ * Output only. [Output Only] The previous instance related properties of the
* Future Reservation.
*
* Generated from protobuf field optional .google.cloud.compute.v1.FutureReservationSpecificSKUProperties specific_sku_properties = 108887106;
*/
protected $specific_sku_properties = null;
/**
- * [Output Only] The previous time window of the Future Reservation.
+ * Output only. [Output Only] The previous time window of the Future Reservation.
*
* Generated from protobuf field optional .google.cloud.compute.v1.FutureReservationTimeWindow time_window = 422983074;
*/
@@ -42,12 +42,12 @@ class FutureReservationStatusLastKnownGoodStateFutureReservationSpecs extends \G
* Optional. Data for populating the Message object.
*
* @type \Google\Cloud\Compute\V1\ShareSettings $share_settings
- * [Output Only] The previous share settings of the Future Reservation.
+ * Output only. [Output Only] The previous share settings of the Future Reservation.
* @type \Google\Cloud\Compute\V1\FutureReservationSpecificSKUProperties $specific_sku_properties
- * [Output Only] The previous instance related properties of the
+ * Output only. [Output Only] The previous instance related properties of the
* Future Reservation.
* @type \Google\Cloud\Compute\V1\FutureReservationTimeWindow $time_window
- * [Output Only] The previous time window of the Future Reservation.
+ * Output only. [Output Only] The previous time window of the Future Reservation.
* }
*/
public function __construct($data = NULL) {
@@ -56,7 +56,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] The previous share settings of the Future Reservation.
+ * Output only. [Output Only] The previous share settings of the Future Reservation.
*
* Generated from protobuf field optional .google.cloud.compute.v1.ShareSettings share_settings = 266668163;
* @return \Google\Cloud\Compute\V1\ShareSettings|null
@@ -77,7 +77,7 @@ public function clearShareSettings()
}
/**
- * [Output Only] The previous share settings of the Future Reservation.
+ * Output only. [Output Only] The previous share settings of the Future Reservation.
*
* Generated from protobuf field optional .google.cloud.compute.v1.ShareSettings share_settings = 266668163;
* @param \Google\Cloud\Compute\V1\ShareSettings $var
@@ -92,7 +92,7 @@ public function setShareSettings($var)
}
/**
- * [Output Only] The previous instance related properties of the
+ * Output only. [Output Only] The previous instance related properties of the
* Future Reservation.
*
* Generated from protobuf field optional .google.cloud.compute.v1.FutureReservationSpecificSKUProperties specific_sku_properties = 108887106;
@@ -114,7 +114,7 @@ public function clearSpecificSkuProperties()
}
/**
- * [Output Only] The previous instance related properties of the
+ * Output only. [Output Only] The previous instance related properties of the
* Future Reservation.
*
* Generated from protobuf field optional .google.cloud.compute.v1.FutureReservationSpecificSKUProperties specific_sku_properties = 108887106;
@@ -130,7 +130,7 @@ public function setSpecificSkuProperties($var)
}
/**
- * [Output Only] The previous time window of the Future Reservation.
+ * Output only. [Output Only] The previous time window of the Future Reservation.
*
* Generated from protobuf field optional .google.cloud.compute.v1.FutureReservationTimeWindow time_window = 422983074;
* @return \Google\Cloud\Compute\V1\FutureReservationTimeWindow|null
@@ -151,7 +151,7 @@ public function clearTimeWindow()
}
/**
- * [Output Only] The previous time window of the Future Reservation.
+ * Output only. [Output Only] The previous time window of the Future Reservation.
*
* Generated from protobuf field optional .google.cloud.compute.v1.FutureReservationTimeWindow time_window = 422983074;
* @param \Google\Cloud\Compute\V1\FutureReservationTimeWindow $var
diff --git a/Compute/src/V1/FutureReservationsAggregatedListResponse.php b/Compute/src/V1/FutureReservationsAggregatedListResponse.php
index 808cdae683fd..f7a8655af222 100644
--- a/Compute/src/V1/FutureReservationsAggregatedListResponse.php
+++ b/Compute/src/V1/FutureReservationsAggregatedListResponse.php
@@ -32,7 +32,7 @@ class FutureReservationsAggregatedListResponse extends \Google\Protobuf\Internal
*/
private $items;
/**
- * [Output Only] Type of resource. Alwayscompute#futureReservationsAggregatedListResponse for future
+ * Output only. [Output Only] Type of resource. Alwayscompute#futureReservationsAggregatedListResponse for future
* resevation aggregated list response.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -49,13 +49,13 @@ class FutureReservationsAggregatedListResponse extends \Google\Protobuf\Internal
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
@@ -79,7 +79,7 @@ class FutureReservationsAggregatedListResponse extends \Google\Protobuf\Internal
* @type array|\Google\Protobuf\Internal\MapField $items
* A list of Future reservation resources.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#futureReservationsAggregatedListResponse for future
+ * Output only. [Output Only] Type of resource. Alwayscompute#futureReservationsAggregatedListResponse for future
* resevation aggregated list response.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -88,9 +88,9 @@ class FutureReservationsAggregatedListResponse extends \Google\Protobuf\Internal
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -195,7 +195,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#futureReservationsAggregatedListResponse for future
+ * Output only. [Output Only] Type of resource. Alwayscompute#futureReservationsAggregatedListResponse for future
* resevation aggregated list response.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -217,7 +217,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#futureReservationsAggregatedListResponse for future
+ * Output only. [Output Only] Type of resource. Alwayscompute#futureReservationsAggregatedListResponse for future
* resevation aggregated list response.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -277,7 +277,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -298,7 +298,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -313,7 +313,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -324,7 +324,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/FutureReservationsListResponse.php b/Compute/src/V1/FutureReservationsListResponse.php
index 182795a600f4..f97b7c2b29b2 100644
--- a/Compute/src/V1/FutureReservationsListResponse.php
+++ b/Compute/src/V1/FutureReservationsListResponse.php
@@ -32,7 +32,7 @@ class FutureReservationsListResponse extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource.Alwayscompute#FutureReservationsListResponse for lists of
+ * Output only. [Output Only] Type of resource.Alwayscompute#FutureReservationsListResponse for lists of
* reservations
*
* Generated from protobuf field optional string kind = 3292052;
@@ -49,13 +49,13 @@ class FutureReservationsListResponse extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
@@ -80,7 +80,7 @@ class FutureReservationsListResponse extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\FutureReservation>|\Google\Protobuf\Internal\RepeatedField $items
* [Output Only] A list of future reservation resources.
* @type string $kind
- * [Output Only] Type of resource.Alwayscompute#FutureReservationsListResponse for lists of
+ * Output only. [Output Only] Type of resource.Alwayscompute#FutureReservationsListResponse for lists of
* reservations
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -89,9 +89,9 @@ class FutureReservationsListResponse extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -198,7 +198,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource.Alwayscompute#FutureReservationsListResponse for lists of
+ * Output only. [Output Only] Type of resource.Alwayscompute#FutureReservationsListResponse for lists of
* reservations
*
* Generated from protobuf field optional string kind = 3292052;
@@ -220,7 +220,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource.Alwayscompute#FutureReservationsListResponse for lists of
+ * Output only. [Output Only] Type of resource.Alwayscompute#FutureReservationsListResponse for lists of
* reservations
*
* Generated from protobuf field optional string kind = 3292052;
@@ -280,7 +280,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -301,7 +301,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -316,7 +316,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -327,7 +327,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/FutureResourcesRecommendation.php b/Compute/src/V1/FutureResourcesRecommendation.php
new file mode 100644
index 000000000000..5f5dfc4e8fef
--- /dev/null
+++ b/Compute/src/V1/FutureResourcesRecommendation.php
@@ -0,0 +1,298 @@
+google.cloud.compute.v1.FutureResourcesRecommendation
+ */
+class FutureResourcesRecommendation extends \Google\Protobuf\Internal\Message
+{
+ /**
+ * Generated from protobuf field optional string end_time = 114938801;
+ */
+ protected $end_time = null;
+ /**
+ * The advised location for resource usage. When a zone, in format
+ * 'zones/'.
+ * If not set, it means that no location is recommended - see
+ * other_locations for details.
+ *
+ * Generated from protobuf field optional string location = 290430901;
+ */
+ protected $location = null;
+ /**
+ * List of locations in the request scope that were not
+ * recommended. Keys of the map are zones, in format 'zones/'.
+ * The values are status information indicating the recommendation status.
+ *
+ * Generated from protobuf field map other_locations = 179322095;
+ */
+ private $other_locations;
+ /**
+ * Unique id of the recommendation, a UUID string generated by the API.
+ *
+ * Generated from protobuf field optional string recommendation_id = 474540897;
+ */
+ protected $recommendation_id = null;
+ /**
+ * Type of recommendation. Currently only FUTURE_RESERVATION is supported.
+ * Check the RecommendationType enum for the list of possible values.
+ *
+ * Generated from protobuf field optional string recommendation_type = 230749184;
+ */
+ protected $recommendation_type = null;
+ /**
+ * Generated from protobuf field optional string start_time = 37467274;
+ */
+ protected $start_time = null;
+
+ /**
+ * Constructor.
+ *
+ * @param array $data {
+ * Optional. Data for populating the Message object.
+ *
+ * @type string $end_time
+ * @type string $location
+ * The advised location for resource usage. When a zone, in format
+ * 'zones/'.
+ * If not set, it means that no location is recommended - see
+ * other_locations for details.
+ * @type array|\Google\Protobuf\Internal\MapField $other_locations
+ * List of locations in the request scope that were not
+ * recommended. Keys of the map are zones, in format 'zones/'.
+ * The values are status information indicating the recommendation status.
+ * @type string $recommendation_id
+ * Unique id of the recommendation, a UUID string generated by the API.
+ * @type string $recommendation_type
+ * Type of recommendation. Currently only FUTURE_RESERVATION is supported.
+ * Check the RecommendationType enum for the list of possible values.
+ * @type string $start_time
+ * }
+ */
+ public function __construct($data = NULL) {
+ \GPBMetadata\Google\Cloud\Compute\V1\Compute::initOnce();
+ parent::__construct($data);
+ }
+
+ /**
+ * Generated from protobuf field optional string end_time = 114938801;
+ * @return string
+ */
+ public function getEndTime()
+ {
+ return isset($this->end_time) ? $this->end_time : '';
+ }
+
+ public function hasEndTime()
+ {
+ return isset($this->end_time);
+ }
+
+ public function clearEndTime()
+ {
+ unset($this->end_time);
+ }
+
+ /**
+ * Generated from protobuf field optional string end_time = 114938801;
+ * @param string $var
+ * @return $this
+ */
+ public function setEndTime($var)
+ {
+ GPBUtil::checkString($var, True);
+ $this->end_time = $var;
+
+ return $this;
+ }
+
+ /**
+ * The advised location for resource usage. When a zone, in format
+ * 'zones/'.
+ * If not set, it means that no location is recommended - see
+ * other_locations for details.
+ *
+ * Generated from protobuf field optional string location = 290430901;
+ * @return string
+ */
+ public function getLocation()
+ {
+ return isset($this->location) ? $this->location : '';
+ }
+
+ public function hasLocation()
+ {
+ return isset($this->location);
+ }
+
+ public function clearLocation()
+ {
+ unset($this->location);
+ }
+
+ /**
+ * The advised location for resource usage. When a zone, in format
+ * 'zones/'.
+ * If not set, it means that no location is recommended - see
+ * other_locations for details.
+ *
+ * Generated from protobuf field optional string location = 290430901;
+ * @param string $var
+ * @return $this
+ */
+ public function setLocation($var)
+ {
+ GPBUtil::checkString($var, True);
+ $this->location = $var;
+
+ return $this;
+ }
+
+ /**
+ * List of locations in the request scope that were not
+ * recommended. Keys of the map are zones, in format 'zones/'.
+ * The values are status information indicating the recommendation status.
+ *
+ * Generated from protobuf field map other_locations = 179322095;
+ * @return \Google\Protobuf\Internal\MapField
+ */
+ public function getOtherLocations()
+ {
+ return $this->other_locations;
+ }
+
+ /**
+ * List of locations in the request scope that were not
+ * recommended. Keys of the map are zones, in format 'zones/'.
+ * The values are status information indicating the recommendation status.
+ *
+ * Generated from protobuf field map other_locations = 179322095;
+ * @param array|\Google\Protobuf\Internal\MapField $var
+ * @return $this
+ */
+ public function setOtherLocations($var)
+ {
+ $arr = GPBUtil::checkMapField($var, \Google\Protobuf\Internal\GPBType::STRING, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Compute\V1\FutureResourcesRecommendationOtherLocation::class);
+ $this->other_locations = $arr;
+
+ return $this;
+ }
+
+ /**
+ * Unique id of the recommendation, a UUID string generated by the API.
+ *
+ * Generated from protobuf field optional string recommendation_id = 474540897;
+ * @return string
+ */
+ public function getRecommendationId()
+ {
+ return isset($this->recommendation_id) ? $this->recommendation_id : '';
+ }
+
+ public function hasRecommendationId()
+ {
+ return isset($this->recommendation_id);
+ }
+
+ public function clearRecommendationId()
+ {
+ unset($this->recommendation_id);
+ }
+
+ /**
+ * Unique id of the recommendation, a UUID string generated by the API.
+ *
+ * Generated from protobuf field optional string recommendation_id = 474540897;
+ * @param string $var
+ * @return $this
+ */
+ public function setRecommendationId($var)
+ {
+ GPBUtil::checkString($var, True);
+ $this->recommendation_id = $var;
+
+ return $this;
+ }
+
+ /**
+ * Type of recommendation. Currently only FUTURE_RESERVATION is supported.
+ * Check the RecommendationType enum for the list of possible values.
+ *
+ * Generated from protobuf field optional string recommendation_type = 230749184;
+ * @return string
+ */
+ public function getRecommendationType()
+ {
+ return isset($this->recommendation_type) ? $this->recommendation_type : '';
+ }
+
+ public function hasRecommendationType()
+ {
+ return isset($this->recommendation_type);
+ }
+
+ public function clearRecommendationType()
+ {
+ unset($this->recommendation_type);
+ }
+
+ /**
+ * Type of recommendation. Currently only FUTURE_RESERVATION is supported.
+ * Check the RecommendationType enum for the list of possible values.
+ *
+ * Generated from protobuf field optional string recommendation_type = 230749184;
+ * @param string $var
+ * @return $this
+ */
+ public function setRecommendationType($var)
+ {
+ GPBUtil::checkString($var, True);
+ $this->recommendation_type = $var;
+
+ return $this;
+ }
+
+ /**
+ * Generated from protobuf field optional string start_time = 37467274;
+ * @return string
+ */
+ public function getStartTime()
+ {
+ return isset($this->start_time) ? $this->start_time : '';
+ }
+
+ public function hasStartTime()
+ {
+ return isset($this->start_time);
+ }
+
+ public function clearStartTime()
+ {
+ unset($this->start_time);
+ }
+
+ /**
+ * Generated from protobuf field optional string start_time = 37467274;
+ * @param string $var
+ * @return $this
+ */
+ public function setStartTime($var)
+ {
+ GPBUtil::checkString($var, True);
+ $this->start_time = $var;
+
+ return $this;
+ }
+
+}
+
diff --git a/Compute/src/V1/FutureResourcesRecommendation/RecommendationType.php b/Compute/src/V1/FutureResourcesRecommendation/RecommendationType.php
new file mode 100644
index 000000000000..f03e9ccaa6ef
--- /dev/null
+++ b/Compute/src/V1/FutureResourcesRecommendation/RecommendationType.php
@@ -0,0 +1,62 @@
+google.cloud.compute.v1.FutureResourcesRecommendation.RecommendationType
+ */
+class RecommendationType
+{
+ /**
+ * A value indicating that the enum field is not set.
+ *
+ * Generated from protobuf enum UNDEFINED_RECOMMENDATION_TYPE = 0;
+ */
+ const UNDEFINED_RECOMMENDATION_TYPE = 0;
+ /**
+ * A Future Reservation is recommended.
+ *
+ * Generated from protobuf enum FUTURE_RESERVATION = 41036592;
+ */
+ const FUTURE_RESERVATION = 41036592;
+ /**
+ * Default value, unused.
+ *
+ * Generated from protobuf enum RECOMMENDATION_TYPE_UNSPECIFIED = 140641624;
+ */
+ const RECOMMENDATION_TYPE_UNSPECIFIED = 140641624;
+
+ private static $valueToName = [
+ self::UNDEFINED_RECOMMENDATION_TYPE => 'UNDEFINED_RECOMMENDATION_TYPE',
+ self::FUTURE_RESERVATION => 'FUTURE_RESERVATION',
+ self::RECOMMENDATION_TYPE_UNSPECIFIED => 'RECOMMENDATION_TYPE_UNSPECIFIED',
+ ];
+
+ public static function name($value)
+ {
+ if (!isset(self::$valueToName[$value])) {
+ throw new UnexpectedValueException(sprintf(
+ 'Enum %s has no name defined for value %s', __CLASS__, $value));
+ }
+ return self::$valueToName[$value];
+ }
+
+
+ public static function value($name)
+ {
+ $const = __CLASS__ . '::' . strtoupper($name);
+ if (!defined($const)) {
+ throw new UnexpectedValueException(sprintf(
+ 'Enum %s has no value defined for name %s', __CLASS__, $name));
+ }
+ return constant($const);
+ }
+}
+
+
diff --git a/Compute/src/V1/FutureResourcesRecommendationOtherLocation.php b/Compute/src/V1/FutureResourcesRecommendationOtherLocation.php
new file mode 100644
index 000000000000..82a42bc2388f
--- /dev/null
+++ b/Compute/src/V1/FutureResourcesRecommendationOtherLocation.php
@@ -0,0 +1,138 @@
+google.cloud.compute.v1.FutureResourcesRecommendationOtherLocation
+ */
+class FutureResourcesRecommendationOtherLocation extends \Google\Protobuf\Internal\Message
+{
+ /**
+ * Details (human readable) describing the situation.
+ * For example, if status is CONDITION_NOT_MET, then
+ * details contain information about the parameters of the time window
+ * that did not meet the required conditions.
+ *
+ * Generated from protobuf field optional string details = 483979842;
+ */
+ protected $details = null;
+ /**
+ * Status of recommendation in this location.
+ * Check the Status enum for the list of possible values.
+ *
+ * Generated from protobuf field optional string status = 181260274;
+ */
+ protected $status = null;
+
+ /**
+ * Constructor.
+ *
+ * @param array $data {
+ * Optional. Data for populating the Message object.
+ *
+ * @type string $details
+ * Details (human readable) describing the situation.
+ * For example, if status is CONDITION_NOT_MET, then
+ * details contain information about the parameters of the time window
+ * that did not meet the required conditions.
+ * @type string $status
+ * Status of recommendation in this location.
+ * Check the Status enum for the list of possible values.
+ * }
+ */
+ public function __construct($data = NULL) {
+ \GPBMetadata\Google\Cloud\Compute\V1\Compute::initOnce();
+ parent::__construct($data);
+ }
+
+ /**
+ * Details (human readable) describing the situation.
+ * For example, if status is CONDITION_NOT_MET, then
+ * details contain information about the parameters of the time window
+ * that did not meet the required conditions.
+ *
+ * Generated from protobuf field optional string details = 483979842;
+ * @return string
+ */
+ public function getDetails()
+ {
+ return isset($this->details) ? $this->details : '';
+ }
+
+ public function hasDetails()
+ {
+ return isset($this->details);
+ }
+
+ public function clearDetails()
+ {
+ unset($this->details);
+ }
+
+ /**
+ * Details (human readable) describing the situation.
+ * For example, if status is CONDITION_NOT_MET, then
+ * details contain information about the parameters of the time window
+ * that did not meet the required conditions.
+ *
+ * Generated from protobuf field optional string details = 483979842;
+ * @param string $var
+ * @return $this
+ */
+ public function setDetails($var)
+ {
+ GPBUtil::checkString($var, True);
+ $this->details = $var;
+
+ return $this;
+ }
+
+ /**
+ * Status of recommendation in this location.
+ * Check the Status enum for the list of possible values.
+ *
+ * Generated from protobuf field optional string status = 181260274;
+ * @return string
+ */
+ public function getStatus()
+ {
+ return isset($this->status) ? $this->status : '';
+ }
+
+ public function hasStatus()
+ {
+ return isset($this->status);
+ }
+
+ public function clearStatus()
+ {
+ unset($this->status);
+ }
+
+ /**
+ * Status of recommendation in this location.
+ * Check the Status enum for the list of possible values.
+ *
+ * Generated from protobuf field optional string status = 181260274;
+ * @param string $var
+ * @return $this
+ */
+ public function setStatus($var)
+ {
+ GPBUtil::checkString($var, True);
+ $this->status = $var;
+
+ return $this;
+ }
+
+}
+
diff --git a/Compute/src/V1/FutureResourcesRecommendationOtherLocation/Status.php b/Compute/src/V1/FutureResourcesRecommendationOtherLocation/Status.php
new file mode 100644
index 000000000000..40ca8db32c64
--- /dev/null
+++ b/Compute/src/V1/FutureResourcesRecommendationOtherLocation/Status.php
@@ -0,0 +1,89 @@
+google.cloud.compute.v1.FutureResourcesRecommendationOtherLocation.Status
+ */
+class Status
+{
+ /**
+ * A value indicating that the enum field is not set.
+ *
+ * Generated from protobuf enum UNDEFINED_STATUS = 0;
+ */
+ const UNDEFINED_STATUS = 0;
+ /**
+ * The requested resources are offered in this location
+ * but the requested time window is does not meet the required conditions.
+ *
+ * Generated from protobuf enum CONDITIONS_NOT_MET = 363628457;
+ */
+ const CONDITIONS_NOT_MET = 363628457;
+ /**
+ * The requested resources are not offered in this location.
+ * Retrying the request will not change this status.
+ *
+ * Generated from protobuf enum NOT_SUPPORTED = 317950466;
+ */
+ const NOT_SUPPORTED = 317950466;
+ /**
+ * The requested resources are offered in this location
+ * and the requested time window is accepted
+ * but there is no capacity within the requested time window.
+ *
+ * Generated from protobuf enum NO_CAPACITY = 274240888;
+ */
+ const NO_CAPACITY = 274240888;
+ /**
+ * Default value, unused.
+ *
+ * Generated from protobuf enum OTHER_LOCATION_STATUS_UNDEFINED = 222662622;
+ */
+ const OTHER_LOCATION_STATUS_UNDEFINED = 222662622;
+ /**
+ * The requested resources are offered in this location
+ * and it is possible to request them. However, another location
+ * was better and was recommended.
+ *
+ * Generated from protobuf enum RECOMMENDED = 369652283;
+ */
+ const RECOMMENDED = 369652283;
+
+ private static $valueToName = [
+ self::UNDEFINED_STATUS => 'UNDEFINED_STATUS',
+ self::CONDITIONS_NOT_MET => 'CONDITIONS_NOT_MET',
+ self::NOT_SUPPORTED => 'NOT_SUPPORTED',
+ self::NO_CAPACITY => 'NO_CAPACITY',
+ self::OTHER_LOCATION_STATUS_UNDEFINED => 'OTHER_LOCATION_STATUS_UNDEFINED',
+ self::RECOMMENDED => 'RECOMMENDED',
+ ];
+
+ public static function name($value)
+ {
+ if (!isset(self::$valueToName[$value])) {
+ throw new UnexpectedValueException(sprintf(
+ 'Enum %s has no name defined for value %s', __CLASS__, $value));
+ }
+ return self::$valueToName[$value];
+ }
+
+
+ public static function value($name)
+ {
+ $const = __CLASS__ . '::' . strtoupper($name);
+ if (!defined($const)) {
+ throw new UnexpectedValueException(sprintf(
+ 'Enum %s has no value defined for name %s', __CLASS__, $name));
+ }
+ return constant($const);
+ }
+}
+
+
diff --git a/Compute/src/V1/FutureResourcesSpec.php b/Compute/src/V1/FutureResourcesSpec.php
new file mode 100644
index 000000000000..8a20295773fa
--- /dev/null
+++ b/Compute/src/V1/FutureResourcesSpec.php
@@ -0,0 +1,230 @@
+google.cloud.compute.v1.FutureResourcesSpec
+ */
+class FutureResourcesSpec extends \Google\Protobuf\Internal\Message
+{
+ /**
+ * Indicates if the reservation allocation strategy is static (DENSE) or
+ * dynamic (STANDARD). Defaults to DENSE.
+ * Check the DeploymentType enum for the list of possible values.
+ *
+ * Generated from protobuf field optional string deployment_type = 396722292;
+ */
+ protected $deployment_type = null;
+ /**
+ * Optional location policy allowing to exclude some zone(s) in which
+ * the resources must not be created.
+ *
+ * Generated from protobuf field optional .google.cloud.compute.v1.FutureResourcesSpecLocationPolicy location_policy = 465689852;
+ */
+ protected $location_policy = null;
+ /**
+ * Specification of the reserved resources.
+ *
+ * Generated from protobuf field optional .google.cloud.compute.v1.FutureResourcesSpecTargetResources target_resources = 528230647;
+ */
+ protected $target_resources = null;
+ /**
+ * Specification of a time range in which the resources may be created.
+ * The time range specifies start of resource use and planned end of resource
+ * use.
+ *
+ * Generated from protobuf field optional .google.cloud.compute.v1.FlexibleTimeRange time_range_spec = 116516399;
+ */
+ protected $time_range_spec = null;
+
+ /**
+ * Constructor.
+ *
+ * @param array $data {
+ * Optional. Data for populating the Message object.
+ *
+ * @type string $deployment_type
+ * Indicates if the reservation allocation strategy is static (DENSE) or
+ * dynamic (STANDARD). Defaults to DENSE.
+ * Check the DeploymentType enum for the list of possible values.
+ * @type \Google\Cloud\Compute\V1\FutureResourcesSpecLocationPolicy $location_policy
+ * Optional location policy allowing to exclude some zone(s) in which
+ * the resources must not be created.
+ * @type \Google\Cloud\Compute\V1\FutureResourcesSpecTargetResources $target_resources
+ * Specification of the reserved resources.
+ * @type \Google\Cloud\Compute\V1\FlexibleTimeRange $time_range_spec
+ * Specification of a time range in which the resources may be created.
+ * The time range specifies start of resource use and planned end of resource
+ * use.
+ * }
+ */
+ public function __construct($data = NULL) {
+ \GPBMetadata\Google\Cloud\Compute\V1\Compute::initOnce();
+ parent::__construct($data);
+ }
+
+ /**
+ * Indicates if the reservation allocation strategy is static (DENSE) or
+ * dynamic (STANDARD). Defaults to DENSE.
+ * Check the DeploymentType enum for the list of possible values.
+ *
+ * Generated from protobuf field optional string deployment_type = 396722292;
+ * @return string
+ */
+ public function getDeploymentType()
+ {
+ return isset($this->deployment_type) ? $this->deployment_type : '';
+ }
+
+ public function hasDeploymentType()
+ {
+ return isset($this->deployment_type);
+ }
+
+ public function clearDeploymentType()
+ {
+ unset($this->deployment_type);
+ }
+
+ /**
+ * Indicates if the reservation allocation strategy is static (DENSE) or
+ * dynamic (STANDARD). Defaults to DENSE.
+ * Check the DeploymentType enum for the list of possible values.
+ *
+ * Generated from protobuf field optional string deployment_type = 396722292;
+ * @param string $var
+ * @return $this
+ */
+ public function setDeploymentType($var)
+ {
+ GPBUtil::checkString($var, True);
+ $this->deployment_type = $var;
+
+ return $this;
+ }
+
+ /**
+ * Optional location policy allowing to exclude some zone(s) in which
+ * the resources must not be created.
+ *
+ * Generated from protobuf field optional .google.cloud.compute.v1.FutureResourcesSpecLocationPolicy location_policy = 465689852;
+ * @return \Google\Cloud\Compute\V1\FutureResourcesSpecLocationPolicy|null
+ */
+ public function getLocationPolicy()
+ {
+ return $this->location_policy;
+ }
+
+ public function hasLocationPolicy()
+ {
+ return isset($this->location_policy);
+ }
+
+ public function clearLocationPolicy()
+ {
+ unset($this->location_policy);
+ }
+
+ /**
+ * Optional location policy allowing to exclude some zone(s) in which
+ * the resources must not be created.
+ *
+ * Generated from protobuf field optional .google.cloud.compute.v1.FutureResourcesSpecLocationPolicy location_policy = 465689852;
+ * @param \Google\Cloud\Compute\V1\FutureResourcesSpecLocationPolicy $var
+ * @return $this
+ */
+ public function setLocationPolicy($var)
+ {
+ GPBUtil::checkMessage($var, \Google\Cloud\Compute\V1\FutureResourcesSpecLocationPolicy::class);
+ $this->location_policy = $var;
+
+ return $this;
+ }
+
+ /**
+ * Specification of the reserved resources.
+ *
+ * Generated from protobuf field optional .google.cloud.compute.v1.FutureResourcesSpecTargetResources target_resources = 528230647;
+ * @return \Google\Cloud\Compute\V1\FutureResourcesSpecTargetResources|null
+ */
+ public function getTargetResources()
+ {
+ return $this->target_resources;
+ }
+
+ public function hasTargetResources()
+ {
+ return isset($this->target_resources);
+ }
+
+ public function clearTargetResources()
+ {
+ unset($this->target_resources);
+ }
+
+ /**
+ * Specification of the reserved resources.
+ *
+ * Generated from protobuf field optional .google.cloud.compute.v1.FutureResourcesSpecTargetResources target_resources = 528230647;
+ * @param \Google\Cloud\Compute\V1\FutureResourcesSpecTargetResources $var
+ * @return $this
+ */
+ public function setTargetResources($var)
+ {
+ GPBUtil::checkMessage($var, \Google\Cloud\Compute\V1\FutureResourcesSpecTargetResources::class);
+ $this->target_resources = $var;
+
+ return $this;
+ }
+
+ /**
+ * Specification of a time range in which the resources may be created.
+ * The time range specifies start of resource use and planned end of resource
+ * use.
+ *
+ * Generated from protobuf field optional .google.cloud.compute.v1.FlexibleTimeRange time_range_spec = 116516399;
+ * @return \Google\Cloud\Compute\V1\FlexibleTimeRange|null
+ */
+ public function getTimeRangeSpec()
+ {
+ return $this->time_range_spec;
+ }
+
+ public function hasTimeRangeSpec()
+ {
+ return isset($this->time_range_spec);
+ }
+
+ public function clearTimeRangeSpec()
+ {
+ unset($this->time_range_spec);
+ }
+
+ /**
+ * Specification of a time range in which the resources may be created.
+ * The time range specifies start of resource use and planned end of resource
+ * use.
+ *
+ * Generated from protobuf field optional .google.cloud.compute.v1.FlexibleTimeRange time_range_spec = 116516399;
+ * @param \Google\Cloud\Compute\V1\FlexibleTimeRange $var
+ * @return $this
+ */
+ public function setTimeRangeSpec($var)
+ {
+ GPBUtil::checkMessage($var, \Google\Cloud\Compute\V1\FlexibleTimeRange::class);
+ $this->time_range_spec = $var;
+
+ return $this;
+ }
+
+}
+
diff --git a/Compute/src/V1/FutureResourcesSpec/DeploymentType.php b/Compute/src/V1/FutureResourcesSpec/DeploymentType.php
new file mode 100644
index 000000000000..5e0e04de4c49
--- /dev/null
+++ b/Compute/src/V1/FutureResourcesSpec/DeploymentType.php
@@ -0,0 +1,61 @@
+google.cloud.compute.v1.FutureResourcesSpec.DeploymentType
+ */
+class DeploymentType
+{
+ /**
+ * A value indicating that the enum field is not set.
+ *
+ * Generated from protobuf enum UNDEFINED_DEPLOYMENT_TYPE = 0;
+ */
+ const UNDEFINED_DEPLOYMENT_TYPE = 0;
+ /**
+ * The reserved capacity is made up of densely deployed reservation blocks.
+ *
+ * Generated from protobuf enum DENSE = 64932607;
+ */
+ const DENSE = 64932607;
+ /**
+ * Generated from protobuf enum DEPLOYMENT_TYPE_UNSPECIFIED = 234847180;
+ */
+ const DEPLOYMENT_TYPE_UNSPECIFIED = 234847180;
+
+ private static $valueToName = [
+ self::UNDEFINED_DEPLOYMENT_TYPE => 'UNDEFINED_DEPLOYMENT_TYPE',
+ self::DENSE => 'DENSE',
+ self::DEPLOYMENT_TYPE_UNSPECIFIED => 'DEPLOYMENT_TYPE_UNSPECIFIED',
+ ];
+
+ public static function name($value)
+ {
+ if (!isset(self::$valueToName[$value])) {
+ throw new UnexpectedValueException(sprintf(
+ 'Enum %s has no name defined for value %s', __CLASS__, $value));
+ }
+ return self::$valueToName[$value];
+ }
+
+
+ public static function value($name)
+ {
+ $const = __CLASS__ . '::' . strtoupper($name);
+ if (!defined($const)) {
+ throw new UnexpectedValueException(sprintf(
+ 'Enum %s has no value defined for name %s', __CLASS__, $name));
+ }
+ return constant($const);
+ }
+}
+
+
diff --git a/Compute/src/V1/FutureResourcesSpecAggregateResources.php b/Compute/src/V1/FutureResourcesSpecAggregateResources.php
new file mode 100644
index 000000000000..fcc4377e8386
--- /dev/null
+++ b/Compute/src/V1/FutureResourcesSpecAggregateResources.php
@@ -0,0 +1,176 @@
+google.cloud.compute.v1.FutureResourcesSpecAggregateResources
+ */
+class FutureResourcesSpecAggregateResources extends \Google\Protobuf\Internal\Message
+{
+ /**
+ * Size of the request, in accelerator (chip) count.
+ *
+ * Generated from protobuf field optional int64 accelerator_count = 504879675;
+ */
+ protected $accelerator_count = null;
+ /**
+ * The VM family that all instances scheduled against this reservation
+ * must belong to. Use for TPU reservations.
+ * Check the VmFamily enum for the list of possible values.
+ *
+ * Generated from protobuf field optional string vm_family = 125017580;
+ */
+ protected $vm_family = null;
+ /**
+ * Workload type. Use for TPU reservations.
+ * Check the WorkloadType enum for the list of possible values.
+ *
+ * Generated from protobuf field optional string workload_type = 273432322;
+ */
+ protected $workload_type = null;
+
+ /**
+ * Constructor.
+ *
+ * @param array $data {
+ * Optional. Data for populating the Message object.
+ *
+ * @type int|string $accelerator_count
+ * Size of the request, in accelerator (chip) count.
+ * @type string $vm_family
+ * The VM family that all instances scheduled against this reservation
+ * must belong to. Use for TPU reservations.
+ * Check the VmFamily enum for the list of possible values.
+ * @type string $workload_type
+ * Workload type. Use for TPU reservations.
+ * Check the WorkloadType enum for the list of possible values.
+ * }
+ */
+ public function __construct($data = NULL) {
+ \GPBMetadata\Google\Cloud\Compute\V1\Compute::initOnce();
+ parent::__construct($data);
+ }
+
+ /**
+ * Size of the request, in accelerator (chip) count.
+ *
+ * Generated from protobuf field optional int64 accelerator_count = 504879675;
+ * @return int|string
+ */
+ public function getAcceleratorCount()
+ {
+ return isset($this->accelerator_count) ? $this->accelerator_count : 0;
+ }
+
+ public function hasAcceleratorCount()
+ {
+ return isset($this->accelerator_count);
+ }
+
+ public function clearAcceleratorCount()
+ {
+ unset($this->accelerator_count);
+ }
+
+ /**
+ * Size of the request, in accelerator (chip) count.
+ *
+ * Generated from protobuf field optional int64 accelerator_count = 504879675;
+ * @param int|string $var
+ * @return $this
+ */
+ public function setAcceleratorCount($var)
+ {
+ GPBUtil::checkInt64($var);
+ $this->accelerator_count = $var;
+
+ return $this;
+ }
+
+ /**
+ * The VM family that all instances scheduled against this reservation
+ * must belong to. Use for TPU reservations.
+ * Check the VmFamily enum for the list of possible values.
+ *
+ * Generated from protobuf field optional string vm_family = 125017580;
+ * @return string
+ */
+ public function getVmFamily()
+ {
+ return isset($this->vm_family) ? $this->vm_family : '';
+ }
+
+ public function hasVmFamily()
+ {
+ return isset($this->vm_family);
+ }
+
+ public function clearVmFamily()
+ {
+ unset($this->vm_family);
+ }
+
+ /**
+ * The VM family that all instances scheduled against this reservation
+ * must belong to. Use for TPU reservations.
+ * Check the VmFamily enum for the list of possible values.
+ *
+ * Generated from protobuf field optional string vm_family = 125017580;
+ * @param string $var
+ * @return $this
+ */
+ public function setVmFamily($var)
+ {
+ GPBUtil::checkString($var, True);
+ $this->vm_family = $var;
+
+ return $this;
+ }
+
+ /**
+ * Workload type. Use for TPU reservations.
+ * Check the WorkloadType enum for the list of possible values.
+ *
+ * Generated from protobuf field optional string workload_type = 273432322;
+ * @return string
+ */
+ public function getWorkloadType()
+ {
+ return isset($this->workload_type) ? $this->workload_type : '';
+ }
+
+ public function hasWorkloadType()
+ {
+ return isset($this->workload_type);
+ }
+
+ public function clearWorkloadType()
+ {
+ unset($this->workload_type);
+ }
+
+ /**
+ * Workload type. Use for TPU reservations.
+ * Check the WorkloadType enum for the list of possible values.
+ *
+ * Generated from protobuf field optional string workload_type = 273432322;
+ * @param string $var
+ * @return $this
+ */
+ public function setWorkloadType($var)
+ {
+ GPBUtil::checkString($var, True);
+ $this->workload_type = $var;
+
+ return $this;
+ }
+
+}
+
diff --git a/Compute/src/V1/FutureResourcesSpecAggregateResources/VmFamily.php b/Compute/src/V1/FutureResourcesSpecAggregateResources/VmFamily.php
new file mode 100644
index 000000000000..ca8f909fdcb9
--- /dev/null
+++ b/Compute/src/V1/FutureResourcesSpecAggregateResources/VmFamily.php
@@ -0,0 +1,89 @@
+google.cloud.compute.v1.FutureResourcesSpecAggregateResources.VmFamily
+ */
+class VmFamily
+{
+ /**
+ * A value indicating that the enum field is not set.
+ *
+ * Generated from protobuf enum UNDEFINED_VM_FAMILY = 0;
+ */
+ const UNDEFINED_VM_FAMILY = 0;
+ /**
+ * Generated from protobuf enum VM_FAMILY_CLOUD_TPU_DEVICE_CT3 = 42845948;
+ */
+ const VM_FAMILY_CLOUD_TPU_DEVICE_CT3 = 42845948;
+ /**
+ * Generated from protobuf enum VM_FAMILY_CLOUD_TPU_LITE_DEVICE_CT5L = 108020067;
+ */
+ const VM_FAMILY_CLOUD_TPU_LITE_DEVICE_CT5L = 108020067;
+ /**
+ * Generated from protobuf enum VM_FAMILY_CLOUD_TPU_LITE_POD_SLICE_CT5LP = 18705267;
+ */
+ const VM_FAMILY_CLOUD_TPU_LITE_POD_SLICE_CT5LP = 18705267;
+ /**
+ * Generated from protobuf enum VM_FAMILY_CLOUD_TPU_LITE_POD_SLICE_CT6E = 398926997;
+ */
+ const VM_FAMILY_CLOUD_TPU_LITE_POD_SLICE_CT6E = 398926997;
+ /**
+ * Generated from protobuf enum VM_FAMILY_CLOUD_TPU_POD_SLICE_CT3P = 517384376;
+ */
+ const VM_FAMILY_CLOUD_TPU_POD_SLICE_CT3P = 517384376;
+ /**
+ * Generated from protobuf enum VM_FAMILY_CLOUD_TPU_POD_SLICE_CT4P = 517384407;
+ */
+ const VM_FAMILY_CLOUD_TPU_POD_SLICE_CT4P = 517384407;
+ /**
+ * Generated from protobuf enum VM_FAMILY_CLOUD_TPU_POD_SLICE_CT5P = 517384438;
+ */
+ const VM_FAMILY_CLOUD_TPU_POD_SLICE_CT5P = 517384438;
+ /**
+ * Generated from protobuf enum VM_FAMILY_CLOUD_TPU_POD_SLICE_TPU7X = 485271888;
+ */
+ const VM_FAMILY_CLOUD_TPU_POD_SLICE_TPU7X = 485271888;
+
+ private static $valueToName = [
+ self::UNDEFINED_VM_FAMILY => 'UNDEFINED_VM_FAMILY',
+ self::VM_FAMILY_CLOUD_TPU_DEVICE_CT3 => 'VM_FAMILY_CLOUD_TPU_DEVICE_CT3',
+ self::VM_FAMILY_CLOUD_TPU_LITE_DEVICE_CT5L => 'VM_FAMILY_CLOUD_TPU_LITE_DEVICE_CT5L',
+ self::VM_FAMILY_CLOUD_TPU_LITE_POD_SLICE_CT5LP => 'VM_FAMILY_CLOUD_TPU_LITE_POD_SLICE_CT5LP',
+ self::VM_FAMILY_CLOUD_TPU_LITE_POD_SLICE_CT6E => 'VM_FAMILY_CLOUD_TPU_LITE_POD_SLICE_CT6E',
+ self::VM_FAMILY_CLOUD_TPU_POD_SLICE_CT3P => 'VM_FAMILY_CLOUD_TPU_POD_SLICE_CT3P',
+ self::VM_FAMILY_CLOUD_TPU_POD_SLICE_CT4P => 'VM_FAMILY_CLOUD_TPU_POD_SLICE_CT4P',
+ self::VM_FAMILY_CLOUD_TPU_POD_SLICE_CT5P => 'VM_FAMILY_CLOUD_TPU_POD_SLICE_CT5P',
+ self::VM_FAMILY_CLOUD_TPU_POD_SLICE_TPU7X => 'VM_FAMILY_CLOUD_TPU_POD_SLICE_TPU7X',
+ ];
+
+ public static function name($value)
+ {
+ if (!isset(self::$valueToName[$value])) {
+ throw new UnexpectedValueException(sprintf(
+ 'Enum %s has no name defined for value %s', __CLASS__, $value));
+ }
+ return self::$valueToName[$value];
+ }
+
+
+ public static function value($name)
+ {
+ $const = __CLASS__ . '::' . strtoupper($name);
+ if (!defined($const)) {
+ throw new UnexpectedValueException(sprintf(
+ 'Enum %s has no value defined for name %s', __CLASS__, $name));
+ }
+ return constant($const);
+ }
+}
+
+
diff --git a/Compute/src/V1/FutureResourcesSpecAggregateResources/WorkloadType.php b/Compute/src/V1/FutureResourcesSpecAggregateResources/WorkloadType.php
new file mode 100644
index 000000000000..d8ff9a642eae
--- /dev/null
+++ b/Compute/src/V1/FutureResourcesSpecAggregateResources/WorkloadType.php
@@ -0,0 +1,69 @@
+google.cloud.compute.v1.FutureResourcesSpecAggregateResources.WorkloadType
+ */
+class WorkloadType
+{
+ /**
+ * A value indicating that the enum field is not set.
+ *
+ * Generated from protobuf enum UNDEFINED_WORKLOAD_TYPE = 0;
+ */
+ const UNDEFINED_WORKLOAD_TYPE = 0;
+ /**
+ * Reserved resources will be optimized for BATCH workloads, such as ML
+ * training.
+ *
+ * Generated from protobuf enum BATCH = 62971674;
+ */
+ const BATCH = 62971674;
+ /**
+ * Reserved resources will be optimized for SERVING workloads, such as ML
+ * inference.
+ *
+ * Generated from protobuf enum SERVING = 17781740;
+ */
+ const SERVING = 17781740;
+ /**
+ * Generated from protobuf enum UNSPECIFIED = 526786327;
+ */
+ const UNSPECIFIED = 526786327;
+
+ private static $valueToName = [
+ self::UNDEFINED_WORKLOAD_TYPE => 'UNDEFINED_WORKLOAD_TYPE',
+ self::BATCH => 'BATCH',
+ self::SERVING => 'SERVING',
+ self::UNSPECIFIED => 'UNSPECIFIED',
+ ];
+
+ public static function name($value)
+ {
+ if (!isset(self::$valueToName[$value])) {
+ throw new UnexpectedValueException(sprintf(
+ 'Enum %s has no name defined for value %s', __CLASS__, $value));
+ }
+ return self::$valueToName[$value];
+ }
+
+
+ public static function value($name)
+ {
+ $const = __CLASS__ . '::' . strtoupper($name);
+ if (!defined($const)) {
+ throw new UnexpectedValueException(sprintf(
+ 'Enum %s has no value defined for name %s', __CLASS__, $name));
+ }
+ return constant($const);
+ }
+}
+
+
diff --git a/Compute/src/V1/FutureResourcesSpecLocalSsdPartition.php b/Compute/src/V1/FutureResourcesSpecLocalSsdPartition.php
new file mode 100644
index 000000000000..e99a897d95ed
--- /dev/null
+++ b/Compute/src/V1/FutureResourcesSpecLocalSsdPartition.php
@@ -0,0 +1,124 @@
+google.cloud.compute.v1.FutureResourcesSpecLocalSsdPartition
+ */
+class FutureResourcesSpecLocalSsdPartition extends \Google\Protobuf\Internal\Message
+{
+ /**
+ * Disk interface. Defaults to SCSI.
+ * Check the DiskInterface enum for the list of possible values.
+ *
+ * Generated from protobuf field optional string disk_interface = 66770199;
+ */
+ protected $disk_interface = null;
+ /**
+ * The size of the disk in GB.
+ *
+ * Generated from protobuf field optional int64 disk_size_gb = 316263735;
+ */
+ protected $disk_size_gb = null;
+
+ /**
+ * Constructor.
+ *
+ * @param array $data {
+ * Optional. Data for populating the Message object.
+ *
+ * @type string $disk_interface
+ * Disk interface. Defaults to SCSI.
+ * Check the DiskInterface enum for the list of possible values.
+ * @type int|string $disk_size_gb
+ * The size of the disk in GB.
+ * }
+ */
+ public function __construct($data = NULL) {
+ \GPBMetadata\Google\Cloud\Compute\V1\Compute::initOnce();
+ parent::__construct($data);
+ }
+
+ /**
+ * Disk interface. Defaults to SCSI.
+ * Check the DiskInterface enum for the list of possible values.
+ *
+ * Generated from protobuf field optional string disk_interface = 66770199;
+ * @return string
+ */
+ public function getDiskInterface()
+ {
+ return isset($this->disk_interface) ? $this->disk_interface : '';
+ }
+
+ public function hasDiskInterface()
+ {
+ return isset($this->disk_interface);
+ }
+
+ public function clearDiskInterface()
+ {
+ unset($this->disk_interface);
+ }
+
+ /**
+ * Disk interface. Defaults to SCSI.
+ * Check the DiskInterface enum for the list of possible values.
+ *
+ * Generated from protobuf field optional string disk_interface = 66770199;
+ * @param string $var
+ * @return $this
+ */
+ public function setDiskInterface($var)
+ {
+ GPBUtil::checkString($var, True);
+ $this->disk_interface = $var;
+
+ return $this;
+ }
+
+ /**
+ * The size of the disk in GB.
+ *
+ * Generated from protobuf field optional int64 disk_size_gb = 316263735;
+ * @return int|string
+ */
+ public function getDiskSizeGb()
+ {
+ return isset($this->disk_size_gb) ? $this->disk_size_gb : 0;
+ }
+
+ public function hasDiskSizeGb()
+ {
+ return isset($this->disk_size_gb);
+ }
+
+ public function clearDiskSizeGb()
+ {
+ unset($this->disk_size_gb);
+ }
+
+ /**
+ * The size of the disk in GB.
+ *
+ * Generated from protobuf field optional int64 disk_size_gb = 316263735;
+ * @param int|string $var
+ * @return $this
+ */
+ public function setDiskSizeGb($var)
+ {
+ GPBUtil::checkInt64($var);
+ $this->disk_size_gb = $var;
+
+ return $this;
+ }
+
+}
+
diff --git a/Compute/src/V1/FutureResourcesSpecLocalSsdPartition/DiskInterface.php b/Compute/src/V1/FutureResourcesSpecLocalSsdPartition/DiskInterface.php
new file mode 100644
index 000000000000..30480191bb2d
--- /dev/null
+++ b/Compute/src/V1/FutureResourcesSpecLocalSsdPartition/DiskInterface.php
@@ -0,0 +1,58 @@
+google.cloud.compute.v1.FutureResourcesSpecLocalSsdPartition.DiskInterface
+ */
+class DiskInterface
+{
+ /**
+ * A value indicating that the enum field is not set.
+ *
+ * Generated from protobuf enum UNDEFINED_DISK_INTERFACE = 0;
+ */
+ const UNDEFINED_DISK_INTERFACE = 0;
+ /**
+ * Generated from protobuf enum NVME = 2408800;
+ */
+ const NVME = 2408800;
+ /**
+ * Generated from protobuf enum SCSI = 2539686;
+ */
+ const SCSI = 2539686;
+
+ private static $valueToName = [
+ self::UNDEFINED_DISK_INTERFACE => 'UNDEFINED_DISK_INTERFACE',
+ self::NVME => 'NVME',
+ self::SCSI => 'SCSI',
+ ];
+
+ public static function name($value)
+ {
+ if (!isset(self::$valueToName[$value])) {
+ throw new UnexpectedValueException(sprintf(
+ 'Enum %s has no name defined for value %s', __CLASS__, $value));
+ }
+ return self::$valueToName[$value];
+ }
+
+
+ public static function value($name)
+ {
+ $const = __CLASS__ . '::' . strtoupper($name);
+ if (!defined($const)) {
+ throw new UnexpectedValueException(sprintf(
+ 'Enum %s has no value defined for name %s', __CLASS__, $name));
+ }
+ return constant($const);
+ }
+}
+
+
diff --git a/Compute/src/V1/FutureResourcesSpecLocationPolicy.php b/Compute/src/V1/FutureResourcesSpecLocationPolicy.php
new file mode 100644
index 000000000000..5ceab0f0fae8
--- /dev/null
+++ b/Compute/src/V1/FutureResourcesSpecLocationPolicy.php
@@ -0,0 +1,79 @@
+google.cloud.compute.v1.FutureResourcesSpecLocationPolicy
+ */
+class FutureResourcesSpecLocationPolicy extends \Google\Protobuf\Internal\Message
+{
+ /**
+ * Preferences for specified locations.
+ * Keys of the map are locations - zones, in format of 'zones/'.
+ * Values are preferences for the zones.
+ * If a zone is not specified in this map, it is ALLOWed.
+ *
+ * Generated from protobuf field map locations = 413423454;
+ */
+ private $locations;
+
+ /**
+ * Constructor.
+ *
+ * @param array $data {
+ * Optional. Data for populating the Message object.
+ *
+ * @type array|\Google\Protobuf\Internal\MapField $locations
+ * Preferences for specified locations.
+ * Keys of the map are locations - zones, in format of 'zones/'.
+ * Values are preferences for the zones.
+ * If a zone is not specified in this map, it is ALLOWed.
+ * }
+ */
+ public function __construct($data = NULL) {
+ \GPBMetadata\Google\Cloud\Compute\V1\Compute::initOnce();
+ parent::__construct($data);
+ }
+
+ /**
+ * Preferences for specified locations.
+ * Keys of the map are locations - zones, in format of 'zones/'.
+ * Values are preferences for the zones.
+ * If a zone is not specified in this map, it is ALLOWed.
+ *
+ * Generated from protobuf field map locations = 413423454;
+ * @return \Google\Protobuf\Internal\MapField
+ */
+ public function getLocations()
+ {
+ return $this->locations;
+ }
+
+ /**
+ * Preferences for specified locations.
+ * Keys of the map are locations - zones, in format of 'zones/'.
+ * Values are preferences for the zones.
+ * If a zone is not specified in this map, it is ALLOWed.
+ *
+ * Generated from protobuf field map locations = 413423454;
+ * @param array|\Google\Protobuf\Internal\MapField $var
+ * @return $this
+ */
+ public function setLocations($var)
+ {
+ $arr = GPBUtil::checkMapField($var, \Google\Protobuf\Internal\GPBType::STRING, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Compute\V1\FutureResourcesSpecLocationPolicyLocation::class);
+ $this->locations = $arr;
+
+ return $this;
+ }
+
+}
+
diff --git a/Compute/src/V1/FutureResourcesSpecLocationPolicyLocation.php b/Compute/src/V1/FutureResourcesSpecLocationPolicyLocation.php
new file mode 100644
index 000000000000..79d6b7ff8354
--- /dev/null
+++ b/Compute/src/V1/FutureResourcesSpecLocationPolicyLocation.php
@@ -0,0 +1,81 @@
+google.cloud.compute.v1.FutureResourcesSpecLocationPolicyLocation
+ */
+class FutureResourcesSpecLocationPolicyLocation extends \Google\Protobuf\Internal\Message
+{
+ /**
+ * Preference for this location.
+ * Check the Preference enum for the list of possible values.
+ *
+ * Generated from protobuf field optional string preference = 150781147;
+ */
+ protected $preference = null;
+
+ /**
+ * Constructor.
+ *
+ * @param array $data {
+ * Optional. Data for populating the Message object.
+ *
+ * @type string $preference
+ * Preference for this location.
+ * Check the Preference enum for the list of possible values.
+ * }
+ */
+ public function __construct($data = NULL) {
+ \GPBMetadata\Google\Cloud\Compute\V1\Compute::initOnce();
+ parent::__construct($data);
+ }
+
+ /**
+ * Preference for this location.
+ * Check the Preference enum for the list of possible values.
+ *
+ * Generated from protobuf field optional string preference = 150781147;
+ * @return string
+ */
+ public function getPreference()
+ {
+ return isset($this->preference) ? $this->preference : '';
+ }
+
+ public function hasPreference()
+ {
+ return isset($this->preference);
+ }
+
+ public function clearPreference()
+ {
+ unset($this->preference);
+ }
+
+ /**
+ * Preference for this location.
+ * Check the Preference enum for the list of possible values.
+ *
+ * Generated from protobuf field optional string preference = 150781147;
+ * @param string $var
+ * @return $this
+ */
+ public function setPreference($var)
+ {
+ GPBUtil::checkString($var, True);
+ $this->preference = $var;
+
+ return $this;
+ }
+
+}
+
diff --git a/Compute/src/V1/FutureResourcesSpecLocationPolicyLocation/Preference.php b/Compute/src/V1/FutureResourcesSpecLocationPolicyLocation/Preference.php
new file mode 100644
index 000000000000..3423202dc585
--- /dev/null
+++ b/Compute/src/V1/FutureResourcesSpecLocationPolicyLocation/Preference.php
@@ -0,0 +1,69 @@
+google.cloud.compute.v1.FutureResourcesSpecLocationPolicyLocation.Preference
+ */
+class Preference
+{
+ /**
+ * A value indicating that the enum field is not set.
+ *
+ * Generated from protobuf enum UNDEFINED_PREFERENCE = 0;
+ */
+ const UNDEFINED_PREFERENCE = 0;
+ /**
+ * Location is allowed for use.
+ *
+ * Generated from protobuf enum ALLOW = 62368553;
+ */
+ const ALLOW = 62368553;
+ /**
+ * Location is prohibited.
+ *
+ * Generated from protobuf enum DENY = 2094604;
+ */
+ const DENY = 2094604;
+ /**
+ * Default value, unused.
+ *
+ * Generated from protobuf enum PREFERENCE_UNSPECIFIED = 496219571;
+ */
+ const PREFERENCE_UNSPECIFIED = 496219571;
+
+ private static $valueToName = [
+ self::UNDEFINED_PREFERENCE => 'UNDEFINED_PREFERENCE',
+ self::ALLOW => 'ALLOW',
+ self::DENY => 'DENY',
+ self::PREFERENCE_UNSPECIFIED => 'PREFERENCE_UNSPECIFIED',
+ ];
+
+ public static function name($value)
+ {
+ if (!isset(self::$valueToName[$value])) {
+ throw new UnexpectedValueException(sprintf(
+ 'Enum %s has no name defined for value %s', __CLASS__, $value));
+ }
+ return self::$valueToName[$value];
+ }
+
+
+ public static function value($name)
+ {
+ $const = __CLASS__ . '::' . strtoupper($name);
+ if (!defined($const)) {
+ throw new UnexpectedValueException(sprintf(
+ 'Enum %s has no value defined for name %s', __CLASS__, $name));
+ }
+ return constant($const);
+ }
+}
+
+
diff --git a/Compute/src/V1/FutureResourcesSpecSpecificSKUResources.php b/Compute/src/V1/FutureResourcesSpecSpecificSKUResources.php
new file mode 100644
index 000000000000..68192a9fd882
--- /dev/null
+++ b/Compute/src/V1/FutureResourcesSpecSpecificSKUResources.php
@@ -0,0 +1,174 @@
+google.cloud.compute.v1.FutureResourcesSpecSpecificSKUResources
+ */
+class FutureResourcesSpecSpecificSKUResources extends \Google\Protobuf\Internal\Message
+{
+ /**
+ * Size of the request, in instance count.
+ *
+ * Generated from protobuf field optional int64 instance_count = 77317349;
+ */
+ protected $instance_count = null;
+ /**
+ * Local SSD partitions. You do not have to include SSD partitions that
+ * are built in the machine type.
+ *
+ * Generated from protobuf field repeated .google.cloud.compute.v1.FutureResourcesSpecLocalSsdPartition local_ssd_partitions = 470688568;
+ */
+ private $local_ssd_partitions;
+ /**
+ * The machine type to use for instances that will use the reservation.
+ * This field only accepts machine type names. e.g. n2-standard-4
+ * and does not accept machine type full or partial url. e.g.
+ * projects/my-l7ilb-project/zones/us-central1-a/machineTypes/n2-standard-4.
+ * Use for GPU reservations.
+ *
+ * Generated from protobuf field optional string machine_type = 227711026;
+ */
+ protected $machine_type = null;
+
+ /**
+ * Constructor.
+ *
+ * @param array $data {
+ * Optional. Data for populating the Message object.
+ *
+ * @type int|string $instance_count
+ * Size of the request, in instance count.
+ * @type array<\Google\Cloud\Compute\V1\FutureResourcesSpecLocalSsdPartition>|\Google\Protobuf\Internal\RepeatedField $local_ssd_partitions
+ * Local SSD partitions. You do not have to include SSD partitions that
+ * are built in the machine type.
+ * @type string $machine_type
+ * The machine type to use for instances that will use the reservation.
+ * This field only accepts machine type names. e.g. n2-standard-4
+ * and does not accept machine type full or partial url. e.g.
+ * projects/my-l7ilb-project/zones/us-central1-a/machineTypes/n2-standard-4.
+ * Use for GPU reservations.
+ * }
+ */
+ public function __construct($data = NULL) {
+ \GPBMetadata\Google\Cloud\Compute\V1\Compute::initOnce();
+ parent::__construct($data);
+ }
+
+ /**
+ * Size of the request, in instance count.
+ *
+ * Generated from protobuf field optional int64 instance_count = 77317349;
+ * @return int|string
+ */
+ public function getInstanceCount()
+ {
+ return isset($this->instance_count) ? $this->instance_count : 0;
+ }
+
+ public function hasInstanceCount()
+ {
+ return isset($this->instance_count);
+ }
+
+ public function clearInstanceCount()
+ {
+ unset($this->instance_count);
+ }
+
+ /**
+ * Size of the request, in instance count.
+ *
+ * Generated from protobuf field optional int64 instance_count = 77317349;
+ * @param int|string $var
+ * @return $this
+ */
+ public function setInstanceCount($var)
+ {
+ GPBUtil::checkInt64($var);
+ $this->instance_count = $var;
+
+ return $this;
+ }
+
+ /**
+ * Local SSD partitions. You do not have to include SSD partitions that
+ * are built in the machine type.
+ *
+ * Generated from protobuf field repeated .google.cloud.compute.v1.FutureResourcesSpecLocalSsdPartition local_ssd_partitions = 470688568;
+ * @return \Google\Protobuf\Internal\RepeatedField
+ */
+ public function getLocalSsdPartitions()
+ {
+ return $this->local_ssd_partitions;
+ }
+
+ /**
+ * Local SSD partitions. You do not have to include SSD partitions that
+ * are built in the machine type.
+ *
+ * Generated from protobuf field repeated .google.cloud.compute.v1.FutureResourcesSpecLocalSsdPartition local_ssd_partitions = 470688568;
+ * @param array<\Google\Cloud\Compute\V1\FutureResourcesSpecLocalSsdPartition>|\Google\Protobuf\Internal\RepeatedField $var
+ * @return $this
+ */
+ public function setLocalSsdPartitions($var)
+ {
+ $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Compute\V1\FutureResourcesSpecLocalSsdPartition::class);
+ $this->local_ssd_partitions = $arr;
+
+ return $this;
+ }
+
+ /**
+ * The machine type to use for instances that will use the reservation.
+ * This field only accepts machine type names. e.g. n2-standard-4
+ * and does not accept machine type full or partial url. e.g.
+ * projects/my-l7ilb-project/zones/us-central1-a/machineTypes/n2-standard-4.
+ * Use for GPU reservations.
+ *
+ * Generated from protobuf field optional string machine_type = 227711026;
+ * @return string
+ */
+ public function getMachineType()
+ {
+ return isset($this->machine_type) ? $this->machine_type : '';
+ }
+
+ public function hasMachineType()
+ {
+ return isset($this->machine_type);
+ }
+
+ public function clearMachineType()
+ {
+ unset($this->machine_type);
+ }
+
+ /**
+ * The machine type to use for instances that will use the reservation.
+ * This field only accepts machine type names. e.g. n2-standard-4
+ * and does not accept machine type full or partial url. e.g.
+ * projects/my-l7ilb-project/zones/us-central1-a/machineTypes/n2-standard-4.
+ * Use for GPU reservations.
+ *
+ * Generated from protobuf field optional string machine_type = 227711026;
+ * @param string $var
+ * @return $this
+ */
+ public function setMachineType($var)
+ {
+ GPBUtil::checkString($var, True);
+ $this->machine_type = $var;
+
+ return $this;
+ }
+
+}
+
diff --git a/Compute/src/V1/FutureResourcesSpecTargetResources.php b/Compute/src/V1/FutureResourcesSpecTargetResources.php
new file mode 100644
index 000000000000..ae836dc14bf8
--- /dev/null
+++ b/Compute/src/V1/FutureResourcesSpecTargetResources.php
@@ -0,0 +1,107 @@
+google.cloud.compute.v1.FutureResourcesSpecTargetResources
+ */
+class FutureResourcesSpecTargetResources extends \Google\Protobuf\Internal\Message
+{
+ /**
+ * Generated from protobuf field optional .google.cloud.compute.v1.FutureResourcesSpecAggregateResources aggregate_resources = 180868005;
+ */
+ protected $aggregate_resources = null;
+ /**
+ * Generated from protobuf field optional .google.cloud.compute.v1.FutureResourcesSpecSpecificSKUResources specific_sku_resources = 267071798;
+ */
+ protected $specific_sku_resources = null;
+
+ /**
+ * Constructor.
+ *
+ * @param array $data {
+ * Optional. Data for populating the Message object.
+ *
+ * @type \Google\Cloud\Compute\V1\FutureResourcesSpecAggregateResources $aggregate_resources
+ * @type \Google\Cloud\Compute\V1\FutureResourcesSpecSpecificSKUResources $specific_sku_resources
+ * }
+ */
+ public function __construct($data = NULL) {
+ \GPBMetadata\Google\Cloud\Compute\V1\Compute::initOnce();
+ parent::__construct($data);
+ }
+
+ /**
+ * Generated from protobuf field optional .google.cloud.compute.v1.FutureResourcesSpecAggregateResources aggregate_resources = 180868005;
+ * @return \Google\Cloud\Compute\V1\FutureResourcesSpecAggregateResources|null
+ */
+ public function getAggregateResources()
+ {
+ return $this->aggregate_resources;
+ }
+
+ public function hasAggregateResources()
+ {
+ return isset($this->aggregate_resources);
+ }
+
+ public function clearAggregateResources()
+ {
+ unset($this->aggregate_resources);
+ }
+
+ /**
+ * Generated from protobuf field optional .google.cloud.compute.v1.FutureResourcesSpecAggregateResources aggregate_resources = 180868005;
+ * @param \Google\Cloud\Compute\V1\FutureResourcesSpecAggregateResources $var
+ * @return $this
+ */
+ public function setAggregateResources($var)
+ {
+ GPBUtil::checkMessage($var, \Google\Cloud\Compute\V1\FutureResourcesSpecAggregateResources::class);
+ $this->aggregate_resources = $var;
+
+ return $this;
+ }
+
+ /**
+ * Generated from protobuf field optional .google.cloud.compute.v1.FutureResourcesSpecSpecificSKUResources specific_sku_resources = 267071798;
+ * @return \Google\Cloud\Compute\V1\FutureResourcesSpecSpecificSKUResources|null
+ */
+ public function getSpecificSkuResources()
+ {
+ return $this->specific_sku_resources;
+ }
+
+ public function hasSpecificSkuResources()
+ {
+ return isset($this->specific_sku_resources);
+ }
+
+ public function clearSpecificSkuResources()
+ {
+ unset($this->specific_sku_resources);
+ }
+
+ /**
+ * Generated from protobuf field optional .google.cloud.compute.v1.FutureResourcesSpecSpecificSKUResources specific_sku_resources = 267071798;
+ * @param \Google\Cloud\Compute\V1\FutureResourcesSpecSpecificSKUResources $var
+ * @return $this
+ */
+ public function setSpecificSkuResources($var)
+ {
+ GPBUtil::checkMessage($var, \Google\Cloud\Compute\V1\FutureResourcesSpecSpecificSKUResources::class);
+ $this->specific_sku_resources = $var;
+
+ return $this;
+ }
+
+}
+
diff --git a/Compute/src/V1/GuestAttributes.php b/Compute/src/V1/GuestAttributes.php
index 9795391f91e2..d48378560ac3 100644
--- a/Compute/src/V1/GuestAttributes.php
+++ b/Compute/src/V1/GuestAttributes.php
@@ -16,7 +16,7 @@
class GuestAttributes extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Type of the resource. Alwayscompute#guestAttributes for guest attributes entry.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#guestAttributes for guest attributes entry.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -30,13 +30,13 @@ class GuestAttributes extends \Google\Protobuf\Internal\Message
*/
protected $query_path = null;
/**
- * [Output Only] The value of the requested queried path.
+ * Output only. [Output Only] The value of the requested queried path.
*
* Generated from protobuf field optional .google.cloud.compute.v1.GuestAttributesValue query_value = 157570874;
*/
protected $query_value = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -48,7 +48,7 @@ class GuestAttributes extends \Google\Protobuf\Internal\Message
*/
protected $variable_key = null;
/**
- * [Output Only] The value found for the requested key.
+ * Output only. [Output Only] The value found for the requested key.
*
* Generated from protobuf field optional string variable_value = 124582382;
*/
@@ -61,19 +61,19 @@ class GuestAttributes extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $kind
- * [Output Only] Type of the resource. Alwayscompute#guestAttributes for guest attributes entry.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#guestAttributes for guest attributes entry.
* @type string $query_path
* The path to be queried. This can be the default namespace ('') or a
* nested namespace ('\/') or a specified key
* ('\/\').
* @type \Google\Cloud\Compute\V1\GuestAttributesValue $query_value
- * [Output Only] The value of the requested queried path.
+ * Output only. [Output Only] The value of the requested queried path.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type string $variable_key
* The key to search for.
* @type string $variable_value
- * [Output Only] The value found for the requested key.
+ * Output only. [Output Only] The value found for the requested key.
* }
*/
public function __construct($data = NULL) {
@@ -82,7 +82,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Type of the resource. Alwayscompute#guestAttributes for guest attributes entry.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#guestAttributes for guest attributes entry.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -103,7 +103,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Alwayscompute#guestAttributes for guest attributes entry.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#guestAttributes for guest attributes entry.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -158,7 +158,7 @@ public function setQueryPath($var)
}
/**
- * [Output Only] The value of the requested queried path.
+ * Output only. [Output Only] The value of the requested queried path.
*
* Generated from protobuf field optional .google.cloud.compute.v1.GuestAttributesValue query_value = 157570874;
* @return \Google\Cloud\Compute\V1\GuestAttributesValue|null
@@ -179,7 +179,7 @@ public function clearQueryValue()
}
/**
- * [Output Only] The value of the requested queried path.
+ * Output only. [Output Only] The value of the requested queried path.
*
* Generated from protobuf field optional .google.cloud.compute.v1.GuestAttributesValue query_value = 157570874;
* @param \Google\Cloud\Compute\V1\GuestAttributesValue $var
@@ -194,7 +194,7 @@ public function setQueryValue($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -215,7 +215,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -266,7 +266,7 @@ public function setVariableKey($var)
}
/**
- * [Output Only] The value found for the requested key.
+ * Output only. [Output Only] The value found for the requested key.
*
* Generated from protobuf field optional string variable_value = 124582382;
* @return string
@@ -287,7 +287,7 @@ public function clearVariableValue()
}
/**
- * [Output Only] The value found for the requested key.
+ * Output only. [Output Only] The value found for the requested key.
*
* Generated from protobuf field optional string variable_value = 124582382;
* @param string $var
diff --git a/Compute/src/V1/HealthCheck.php b/Compute/src/V1/HealthCheck.php
index 3ac770093e64..a6b9b4bf0595 100644
--- a/Compute/src/V1/HealthCheck.php
+++ b/Compute/src/V1/HealthCheck.php
@@ -40,7 +40,7 @@ class HealthCheck extends \Google\Protobuf\Internal\Message
*/
protected $check_interval_sec = null;
/**
- * [Output Only] Creation timestamp in3339
+ * Output only. [Output Only] Creation timestamp in3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -88,7 +88,7 @@ class HealthCheck extends \Google\Protobuf\Internal\Message
*/
protected $id = null;
/**
- * Type of the resource.
+ * Output only. Type of the resource.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -112,7 +112,7 @@ class HealthCheck extends \Google\Protobuf\Internal\Message
*/
protected $name = null;
/**
- * [Output Only] Region where the health check resides. Not applicable to
+ * Output only. [Output Only] Region where the health check resides. Not applicable to
* global health checks.
*
* Generated from protobuf field optional string region = 138946292;
@@ -185,7 +185,7 @@ class HealthCheck extends \Google\Protobuf\Internal\Message
* How often (in seconds) to send a health check. The default value is 5
* seconds.
* @type string $creation_timestamp
- * [Output Only] Creation timestamp in3339
+ * Output only. [Output Only] Creation timestamp in3339
* text format.
* @type string $description
* An optional description of this resource. Provide this property when you
@@ -202,7 +202,7 @@ class HealthCheck extends \Google\Protobuf\Internal\Message
* [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type string $kind
- * Type of the resource.
+ * Output only. Type of the resource.
* @type \Google\Cloud\Compute\V1\HealthCheckLogConfig $log_config
* Configure logging on this health check.
* @type string $name
@@ -214,7 +214,7 @@ class HealthCheck extends \Google\Protobuf\Internal\Message
* character is a lowercase letter, and all following characters are a dash,
* lowercase letter, or digit, except the last character, which isn't a dash.
* @type string $region
- * [Output Only] Region where the health check resides. Not applicable to
+ * Output only. [Output Only] Region where the health check resides. Not applicable to
* global health checks.
* @type string $self_link
* [Output Only] Server-defined URL for the resource.
@@ -292,7 +292,7 @@ public function setCheckIntervalSec($var)
}
/**
- * [Output Only] Creation timestamp in3339
+ * Output only. [Output Only] Creation timestamp in3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -314,7 +314,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp in3339
+ * Output only. [Output Only] Creation timestamp in3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -604,7 +604,7 @@ public function setId($var)
}
/**
- * Type of the resource.
+ * Output only. Type of the resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -625,7 +625,7 @@ public function clearKind()
}
/**
- * Type of the resource.
+ * Output only. Type of the resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -724,7 +724,7 @@ public function setName($var)
}
/**
- * [Output Only] Region where the health check resides. Not applicable to
+ * Output only. [Output Only] Region where the health check resides. Not applicable to
* global health checks.
*
* Generated from protobuf field optional string region = 138946292;
@@ -746,7 +746,7 @@ public function clearRegion()
}
/**
- * [Output Only] Region where the health check resides. Not applicable to
+ * Output only. [Output Only] Region where the health check resides. Not applicable to
* global health checks.
*
* Generated from protobuf field optional string region = 138946292;
diff --git a/Compute/src/V1/HealthCheckList.php b/Compute/src/V1/HealthCheckList.php
index 87c83eadcdb8..6d7ae3242dae 100644
--- a/Compute/src/V1/HealthCheckList.php
+++ b/Compute/src/V1/HealthCheckList.php
@@ -28,7 +28,7 @@ class HealthCheckList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -44,7 +44,7 @@ class HealthCheckList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -67,7 +67,7 @@ class HealthCheckList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\HealthCheck>|\Google\Protobuf\Internal\RepeatedField $items
* A list of HealthCheck resources.
* @type string $kind
- * Type of resource.
+ * Output only. Type of resource.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -75,7 +75,7 @@ class HealthCheckList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -148,7 +148,7 @@ public function setItems($var)
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -169,7 +169,7 @@ public function clearKind()
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -228,7 +228,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -249,7 +249,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/HealthCheckService.php b/Compute/src/V1/HealthCheckService.php
index c7950fb9a6e2..34b2401b86b1 100644
--- a/Compute/src/V1/HealthCheckService.php
+++ b/Compute/src/V1/HealthCheckService.php
@@ -16,7 +16,7 @@
class HealthCheckService extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -69,14 +69,14 @@ class HealthCheckService extends \Google\Protobuf\Internal\Message
*/
protected $health_status_aggregation_policy = null;
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
*/
protected $id = null;
/**
- * [Output only] Type of the resource. Alwayscompute#healthCheckServicefor health check services.
+ * Output only. [Output only] Type of the resource. Alwayscompute#healthCheckServicefor health check services.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -112,7 +112,7 @@ class HealthCheckService extends \Google\Protobuf\Internal\Message
*/
private $notification_endpoints;
/**
- * [Output Only] URL of the region where the health check service
+ * Output only. [Output Only] URL of the region where the health check service
* resides. This field is not applicable to global health check services.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
@@ -121,7 +121,7 @@ class HealthCheckService extends \Google\Protobuf\Internal\Message
*/
protected $region = null;
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -134,7 +134,7 @@ class HealthCheckService extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $description
* An optional description of this resource. Provide this property when you
@@ -167,10 +167,10 @@ class HealthCheckService extends \Google\Protobuf\Internal\Message
* This is only allowed with regional HealthCheckService.
* Check the HealthStatusAggregationPolicy enum for the list of possible values.
* @type int|string $id
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type string $kind
- * [Output only] Type of the resource. Alwayscompute#healthCheckServicefor health check services.
+ * Output only. [Output only] Type of the resource. Alwayscompute#healthCheckServicefor health check services.
* @type string $name
* Name of the resource. The name must be 1-63 characters long, and comply
* with RFC1035. Specifically, the name must be 1-63 characters
@@ -190,12 +190,12 @@ class HealthCheckService extends \Google\Protobuf\Internal\Message
* receiving notifications of change in health status. For regionalHealthCheckService,NotificationEndpoint must be regional and in the
* same region. For global HealthCheckService,NotificationEndpoint must be global.
* @type string $region
- * [Output Only] URL of the region where the health check service
+ * Output only. [Output Only] URL of the region where the health check service
* resides. This field is not applicable to global health check services.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
* @type string $self_link
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
* }
*/
public function __construct($data = NULL) {
@@ -204,7 +204,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -226,7 +226,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -420,7 +420,7 @@ public function setHealthStatusAggregationPolicy($var)
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -442,7 +442,7 @@ public function clearId()
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -458,7 +458,7 @@ public function setId($var)
}
/**
- * [Output only] Type of the resource. Alwayscompute#healthCheckServicefor health check services.
+ * Output only. [Output only] Type of the resource. Alwayscompute#healthCheckServicefor health check services.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -479,7 +479,7 @@ public function clearKind()
}
/**
- * [Output only] Type of the resource. Alwayscompute#healthCheckServicefor health check services.
+ * Output only. [Output only] Type of the resource. Alwayscompute#healthCheckServicefor health check services.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -606,7 +606,7 @@ public function setNotificationEndpoints($var)
}
/**
- * [Output Only] URL of the region where the health check service
+ * Output only. [Output Only] URL of the region where the health check service
* resides. This field is not applicable to global health check services.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
@@ -630,7 +630,7 @@ public function clearRegion()
}
/**
- * [Output Only] URL of the region where the health check service
+ * Output only. [Output Only] URL of the region where the health check service
* resides. This field is not applicable to global health check services.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
@@ -648,7 +648,7 @@ public function setRegion($var)
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -669,7 +669,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/HealthCheckServicesList.php b/Compute/src/V1/HealthCheckServicesList.php
index 2126828f0b0f..24e358804704 100644
--- a/Compute/src/V1/HealthCheckServicesList.php
+++ b/Compute/src/V1/HealthCheckServicesList.php
@@ -15,26 +15,26 @@
class HealthCheckServicesList extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
*
* Generated from protobuf field optional string id = 3355;
*/
protected $id = null;
/**
- * A list of HealthCheckService resources.
+ * Output only. A list of HealthCheckService resources.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.HealthCheckService items = 100526016;
*/
private $items;
/**
- * [Output Only] Type of the resource. Alwayscompute#healthCheckServicesList for lists of
+ * Output only. [Output Only] Type of the resource. Alwayscompute#healthCheckServicesList for lists of
* HealthCheckServices.
*
* Generated from protobuf field optional string kind = 3292052;
*/
protected $kind = null;
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -44,7 +44,7 @@ class HealthCheckServicesList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -63,20 +63,20 @@ class HealthCheckServicesList extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $id
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
* @type array<\Google\Cloud\Compute\V1\HealthCheckService>|\Google\Protobuf\Internal\RepeatedField $items
- * A list of HealthCheckService resources.
+ * Output only. A list of HealthCheckService resources.
* @type string $kind
- * [Output Only] Type of the resource. Alwayscompute#healthCheckServicesList for lists of
+ * Output only. [Output Only] Type of the resource. Alwayscompute#healthCheckServicesList for lists of
* HealthCheckServices.
* @type string $next_page_token
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -87,7 +87,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
*
* Generated from protobuf field optional string id = 3355;
* @return string
@@ -108,7 +108,7 @@ public function clearId()
}
/**
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
*
* Generated from protobuf field optional string id = 3355;
* @param string $var
@@ -123,7 +123,7 @@ public function setId($var)
}
/**
- * A list of HealthCheckService resources.
+ * Output only. A list of HealthCheckService resources.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.HealthCheckService items = 100526016;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -134,7 +134,7 @@ public function getItems()
}
/**
- * A list of HealthCheckService resources.
+ * Output only. A list of HealthCheckService resources.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.HealthCheckService items = 100526016;
* @param array<\Google\Cloud\Compute\V1\HealthCheckService>|\Google\Protobuf\Internal\RepeatedField $var
@@ -149,7 +149,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of the resource. Alwayscompute#healthCheckServicesList for lists of
+ * Output only. [Output Only] Type of the resource. Alwayscompute#healthCheckServicesList for lists of
* HealthCheckServices.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -171,7 +171,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Alwayscompute#healthCheckServicesList for lists of
+ * Output only. [Output Only] Type of the resource. Alwayscompute#healthCheckServicesList for lists of
* HealthCheckServices.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -187,7 +187,7 @@ public function setKind($var)
}
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -212,7 +212,7 @@ public function clearNextPageToken()
}
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -231,7 +231,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -252,7 +252,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/HealthChecksAggregatedList.php b/Compute/src/V1/HealthChecksAggregatedList.php
index c2cd1ef14405..2c8eefcc271b 100644
--- a/Compute/src/V1/HealthChecksAggregatedList.php
+++ b/Compute/src/V1/HealthChecksAggregatedList.php
@@ -27,7 +27,7 @@ class HealthChecksAggregatedList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -43,13 +43,13 @@ class HealthChecksAggregatedList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
@@ -72,7 +72,7 @@ class HealthChecksAggregatedList extends \Google\Protobuf\Internal\Message
* @type array|\Google\Protobuf\Internal\MapField $items
* A list of HealthChecksScopedList resources.
* @type string $kind
- * Type of resource.
+ * Output only. Type of resource.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -80,9 +80,9 @@ class HealthChecksAggregatedList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -155,7 +155,7 @@ public function setItems($var)
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -176,7 +176,7 @@ public function clearKind()
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -235,7 +235,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -256,7 +256,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -271,7 +271,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -282,7 +282,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/HttpHeaderMatch.php b/Compute/src/V1/HttpHeaderMatch.php
index db3d1e7cba91..1a56b0788deb 100644
--- a/Compute/src/V1/HttpHeaderMatch.php
+++ b/Compute/src/V1/HttpHeaderMatch.php
@@ -90,7 +90,8 @@ class HttpHeaderMatch extends \Google\Protobuf\Internal\Message
* satisfies the RFC2616 Host header's port specifier.
* Only one of exactMatch, prefixMatch,suffixMatch, regexMatch,presentMatch or rangeMatch must be set.
* Regular expressions can only be used when the loadBalancingScheme is
- * set to INTERNAL_SELF_MANAGED, EXTERNAL_MANAGED orINTERNAL_MANAGED.
+ * set to INTERNAL_SELF_MANAGED, EXTERNAL_MANAGED
+ * (regional scope) or INTERNAL_MANAGED.
*
* Generated from protobuf field optional string regex_match = 107387853;
*/
@@ -160,7 +161,8 @@ class HttpHeaderMatch extends \Google\Protobuf\Internal\Message
* satisfies the RFC2616 Host header's port specifier.
* Only one of exactMatch, prefixMatch,suffixMatch, regexMatch,presentMatch or rangeMatch must be set.
* Regular expressions can only be used when the loadBalancingScheme is
- * set to INTERNAL_SELF_MANAGED, EXTERNAL_MANAGED orINTERNAL_MANAGED.
+ * set to INTERNAL_SELF_MANAGED, EXTERNAL_MANAGED
+ * (regional scope) or INTERNAL_MANAGED.
* @type string $suffix_match
* The value of the header must end with the contents ofsuffixMatch.
* Only one of exactMatch, prefixMatch,suffixMatch, regexMatch,presentMatch or rangeMatch must be set.
@@ -457,7 +459,8 @@ public function setRangeMatch($var)
* satisfies the RFC2616 Host header's port specifier.
* Only one of exactMatch, prefixMatch,suffixMatch, regexMatch,presentMatch or rangeMatch must be set.
* Regular expressions can only be used when the loadBalancingScheme is
- * set to INTERNAL_SELF_MANAGED, EXTERNAL_MANAGED orINTERNAL_MANAGED.
+ * set to INTERNAL_SELF_MANAGED, EXTERNAL_MANAGED
+ * (regional scope) or INTERNAL_MANAGED.
*
* Generated from protobuf field optional string regex_match = 107387853;
* @return string
@@ -485,7 +488,8 @@ public function clearRegexMatch()
* satisfies the RFC2616 Host header's port specifier.
* Only one of exactMatch, prefixMatch,suffixMatch, regexMatch,presentMatch or rangeMatch must be set.
* Regular expressions can only be used when the loadBalancingScheme is
- * set to INTERNAL_SELF_MANAGED, EXTERNAL_MANAGED orINTERNAL_MANAGED.
+ * set to INTERNAL_SELF_MANAGED, EXTERNAL_MANAGED
+ * (regional scope) or INTERNAL_MANAGED.
*
* Generated from protobuf field optional string regex_match = 107387853;
* @param string $var
diff --git a/Compute/src/V1/HttpQueryParameterMatch.php b/Compute/src/V1/HttpQueryParameterMatch.php
index 16ee4dc245a6..2e8aa0690f6f 100644
--- a/Compute/src/V1/HttpQueryParameterMatch.php
+++ b/Compute/src/V1/HttpQueryParameterMatch.php
@@ -45,7 +45,8 @@ class HttpQueryParameterMatch extends \Google\Protobuf\Internal\Message
* more information about regular expression syntax, see Syntax.
* Only one of presentMatch, exactMatch, orregexMatch must be set.
* Regular expressions can only be used when the loadBalancingScheme is
- * set to INTERNAL_SELF_MANAGED, EXTERNAL_MANAGED orINTERNAL_MANAGED.
+ * set to INTERNAL_SELF_MANAGED, EXTERNAL_MANAGED
+ * (regional scope) or INTERNAL_MANAGED.
*
* Generated from protobuf field optional string regex_match = 107387853;
*/
@@ -75,7 +76,8 @@ class HttpQueryParameterMatch extends \Google\Protobuf\Internal\Message
* more information about regular expression syntax, see Syntax.
* Only one of presentMatch, exactMatch, orregexMatch must be set.
* Regular expressions can only be used when the loadBalancingScheme is
- * set to INTERNAL_SELF_MANAGED, EXTERNAL_MANAGED orINTERNAL_MANAGED.
+ * set to INTERNAL_SELF_MANAGED, EXTERNAL_MANAGED
+ * (regional scope) or INTERNAL_MANAGED.
* }
*/
public function __construct($data = NULL) {
@@ -209,7 +211,8 @@ public function setPresentMatch($var)
* more information about regular expression syntax, see Syntax.
* Only one of presentMatch, exactMatch, orregexMatch must be set.
* Regular expressions can only be used when the loadBalancingScheme is
- * set to INTERNAL_SELF_MANAGED, EXTERNAL_MANAGED orINTERNAL_MANAGED.
+ * set to INTERNAL_SELF_MANAGED, EXTERNAL_MANAGED
+ * (regional scope) or INTERNAL_MANAGED.
*
* Generated from protobuf field optional string regex_match = 107387853;
* @return string
@@ -235,7 +238,8 @@ public function clearRegexMatch()
* more information about regular expression syntax, see Syntax.
* Only one of presentMatch, exactMatch, orregexMatch must be set.
* Regular expressions can only be used when the loadBalancingScheme is
- * set to INTERNAL_SELF_MANAGED, EXTERNAL_MANAGED orINTERNAL_MANAGED.
+ * set to INTERNAL_SELF_MANAGED, EXTERNAL_MANAGED
+ * (regional scope) or INTERNAL_MANAGED.
*
* Generated from protobuf field optional string regex_match = 107387853;
* @param string $var
diff --git a/Compute/src/V1/HttpRouteRuleMatch.php b/Compute/src/V1/HttpRouteRuleMatch.php
index 5e502426edc7..66a0d0ba4cae 100644
--- a/Compute/src/V1/HttpRouteRuleMatch.php
+++ b/Compute/src/V1/HttpRouteRuleMatch.php
@@ -68,13 +68,18 @@ class HttpRouteRuleMatch extends \Google\Protobuf\Internal\Message
*/
private $metadata_filters;
/**
- * If specified, the route is a pattern match expression that must match the
- * :path header once the query string is removed.
- * A pattern match allows you to match
- * - The value must be between 1 and 1024 characters
- * - The pattern must start with a leading slash ("/")
- * - There may be no more than 5 operators in pattern
- * Precisely one ofprefix_match, full_path_match,regex_match or path_template_match must be set.
+ * If specified, this field defines a path template pattern that must match
+ * the :path header after the query string is removed.
+ * A path template pattern can include variables and wildcards.
+ * Variables are enclosed in curly braces, for example{variable_name}. Wildcards include * that
+ * matches a single path segment, and ** that matches zero or
+ * more path segments. The pattern must follow these rules:
+ * - The value must be between 1 and 1024 characters.
+ * - The pattern must start with a leading slash ("/").
+ * - No more than 5 operators (variables or wildcards) may appear in
+ * the pattern.
+ * Precisely one ofprefixMatch, fullPathMatch,regexMatch, or pathTemplateMatch must be
+ * set.
*
* Generated from protobuf field optional string path_template_match = 292348186;
*/
@@ -83,9 +88,10 @@ class HttpRouteRuleMatch extends \Google\Protobuf\Internal\Message
* For satisfying the matchRule condition, the request's
* path must begin with the specified prefixMatch.prefixMatch must begin with a /.
* The value must be from 1 to 1024 characters.
- * Only one of prefixMatch, fullPathMatch,regexMatch or path_template_match must be
- * specified.
- * specified.
+ * The * character inside a prefix match is
+ * treated as a literal character, not as a wildcard.
+ * Only one of prefixMatch, fullPathMatch,regexMatch or path_template_match can be
+ * used within a matchRule.
*
* Generated from protobuf field optional string prefix_match = 257898968;
*/
@@ -106,7 +112,8 @@ class HttpRouteRuleMatch extends \Google\Protobuf\Internal\Message
* Only one of prefixMatch, fullPathMatch,regexMatch or path_template_match must be
* specified.
* Regular expressions can only be used when the loadBalancingScheme is
- * set to INTERNAL_SELF_MANAGED, EXTERNAL_MANAGED orINTERNAL_MANAGED.
+ * set to INTERNAL_SELF_MANAGED, EXTERNAL_MANAGED
+ * (regional scope) or INTERNAL_MANAGED.
*
* Generated from protobuf field optional string regex_match = 107387853;
*/
@@ -153,20 +160,26 @@ class HttpRouteRuleMatch extends \Google\Protobuf\Internal\Message
* Not supported when the URL map is bound to a target gRPC proxy that
* has validateForProxyless field set to true.
* @type string $path_template_match
- * If specified, the route is a pattern match expression that must match the
- * :path header once the query string is removed.
- * A pattern match allows you to match
- * - The value must be between 1 and 1024 characters
- * - The pattern must start with a leading slash ("/")
- * - There may be no more than 5 operators in pattern
- * Precisely one ofprefix_match, full_path_match,regex_match or path_template_match must be set.
+ * If specified, this field defines a path template pattern that must match
+ * the :path header after the query string is removed.
+ * A path template pattern can include variables and wildcards.
+ * Variables are enclosed in curly braces, for example{variable_name}. Wildcards include * that
+ * matches a single path segment, and ** that matches zero or
+ * more path segments. The pattern must follow these rules:
+ * - The value must be between 1 and 1024 characters.
+ * - The pattern must start with a leading slash ("/").
+ * - No more than 5 operators (variables or wildcards) may appear in
+ * the pattern.
+ * Precisely one ofprefixMatch, fullPathMatch,regexMatch, or pathTemplateMatch must be
+ * set.
* @type string $prefix_match
* For satisfying the matchRule condition, the request's
* path must begin with the specified prefixMatch.prefixMatch must begin with a /.
* The value must be from 1 to 1024 characters.
- * Only one of prefixMatch, fullPathMatch,regexMatch or path_template_match must be
- * specified.
- * specified.
+ * The * character inside a prefix match is
+ * treated as a literal character, not as a wildcard.
+ * Only one of prefixMatch, fullPathMatch,regexMatch or path_template_match can be
+ * used within a matchRule.
* @type array<\Google\Cloud\Compute\V1\HttpQueryParameterMatch>|\Google\Protobuf\Internal\RepeatedField $query_parameter_matches
* Specifies a list of query parameter match criteria, all of which must
* match corresponding query parameters in the request.
@@ -179,7 +192,8 @@ class HttpRouteRuleMatch extends \Google\Protobuf\Internal\Message
* Only one of prefixMatch, fullPathMatch,regexMatch or path_template_match must be
* specified.
* Regular expressions can only be used when the loadBalancingScheme is
- * set to INTERNAL_SELF_MANAGED, EXTERNAL_MANAGED orINTERNAL_MANAGED.
+ * set to INTERNAL_SELF_MANAGED, EXTERNAL_MANAGED
+ * (regional scope) or INTERNAL_MANAGED.
* }
*/
public function __construct($data = NULL) {
@@ -364,13 +378,18 @@ public function setMetadataFilters($var)
}
/**
- * If specified, the route is a pattern match expression that must match the
- * :path header once the query string is removed.
- * A pattern match allows you to match
- * - The value must be between 1 and 1024 characters
- * - The pattern must start with a leading slash ("/")
- * - There may be no more than 5 operators in pattern
- * Precisely one ofprefix_match, full_path_match,regex_match or path_template_match must be set.
+ * If specified, this field defines a path template pattern that must match
+ * the :path header after the query string is removed.
+ * A path template pattern can include variables and wildcards.
+ * Variables are enclosed in curly braces, for example{variable_name}. Wildcards include * that
+ * matches a single path segment, and ** that matches zero or
+ * more path segments. The pattern must follow these rules:
+ * - The value must be between 1 and 1024 characters.
+ * - The pattern must start with a leading slash ("/").
+ * - No more than 5 operators (variables or wildcards) may appear in
+ * the pattern.
+ * Precisely one ofprefixMatch, fullPathMatch,regexMatch, or pathTemplateMatch must be
+ * set.
*
* Generated from protobuf field optional string path_template_match = 292348186;
* @return string
@@ -391,13 +410,18 @@ public function clearPathTemplateMatch()
}
/**
- * If specified, the route is a pattern match expression that must match the
- * :path header once the query string is removed.
- * A pattern match allows you to match
- * - The value must be between 1 and 1024 characters
- * - The pattern must start with a leading slash ("/")
- * - There may be no more than 5 operators in pattern
- * Precisely one ofprefix_match, full_path_match,regex_match or path_template_match must be set.
+ * If specified, this field defines a path template pattern that must match
+ * the :path header after the query string is removed.
+ * A path template pattern can include variables and wildcards.
+ * Variables are enclosed in curly braces, for example{variable_name}. Wildcards include * that
+ * matches a single path segment, and ** that matches zero or
+ * more path segments. The pattern must follow these rules:
+ * - The value must be between 1 and 1024 characters.
+ * - The pattern must start with a leading slash ("/").
+ * - No more than 5 operators (variables or wildcards) may appear in
+ * the pattern.
+ * Precisely one ofprefixMatch, fullPathMatch,regexMatch, or pathTemplateMatch must be
+ * set.
*
* Generated from protobuf field optional string path_template_match = 292348186;
* @param string $var
@@ -415,9 +439,10 @@ public function setPathTemplateMatch($var)
* For satisfying the matchRule condition, the request's
* path must begin with the specified prefixMatch.prefixMatch must begin with a /.
* The value must be from 1 to 1024 characters.
- * Only one of prefixMatch, fullPathMatch,regexMatch or path_template_match must be
- * specified.
- * specified.
+ * The * character inside a prefix match is
+ * treated as a literal character, not as a wildcard.
+ * Only one of prefixMatch, fullPathMatch,regexMatch or path_template_match can be
+ * used within a matchRule.
*
* Generated from protobuf field optional string prefix_match = 257898968;
* @return string
@@ -441,9 +466,10 @@ public function clearPrefixMatch()
* For satisfying the matchRule condition, the request's
* path must begin with the specified prefixMatch.prefixMatch must begin with a /.
* The value must be from 1 to 1024 characters.
- * Only one of prefixMatch, fullPathMatch,regexMatch or path_template_match must be
- * specified.
- * specified.
+ * The * character inside a prefix match is
+ * treated as a literal character, not as a wildcard.
+ * Only one of prefixMatch, fullPathMatch,regexMatch or path_template_match can be
+ * used within a matchRule.
*
* Generated from protobuf field optional string prefix_match = 257898968;
* @param string $var
@@ -495,7 +521,8 @@ public function setQueryParameterMatches($var)
* Only one of prefixMatch, fullPathMatch,regexMatch or path_template_match must be
* specified.
* Regular expressions can only be used when the loadBalancingScheme is
- * set to INTERNAL_SELF_MANAGED, EXTERNAL_MANAGED orINTERNAL_MANAGED.
+ * set to INTERNAL_SELF_MANAGED, EXTERNAL_MANAGED
+ * (regional scope) or INTERNAL_MANAGED.
*
* Generated from protobuf field optional string regex_match = 107387853;
* @return string
@@ -523,7 +550,8 @@ public function clearRegexMatch()
* Only one of prefixMatch, fullPathMatch,regexMatch or path_template_match must be
* specified.
* Regular expressions can only be used when the loadBalancingScheme is
- * set to INTERNAL_SELF_MANAGED, EXTERNAL_MANAGED orINTERNAL_MANAGED.
+ * set to INTERNAL_SELF_MANAGED, EXTERNAL_MANAGED
+ * (regional scope) or INTERNAL_MANAGED.
*
* Generated from protobuf field optional string regex_match = 107387853;
* @param string $var
diff --git a/Compute/src/V1/Image.php b/Compute/src/V1/Image.php
index 9849a6b99dbf..dca72f35aa05 100644
--- a/Compute/src/V1/Image.php
+++ b/Compute/src/V1/Image.php
@@ -33,14 +33,14 @@ class Image extends \Google\Protobuf\Internal\Message
*/
protected $archive_size_bytes = null;
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
*/
protected $creation_timestamp = null;
/**
- * The deprecation status associated with this image.
+ * Output only. The deprecation status associated with this image.
*
* Generated from protobuf field optional .google.cloud.compute.v1.DeprecationStatus deprecated = 515138995;
*/
@@ -59,7 +59,7 @@ class Image extends \Google\Protobuf\Internal\Message
*/
protected $disk_size_gb = null;
/**
- * Whether this image is created from a confidential compute mode disk.
+ * Output only. Whether this image is created from a confidential compute mode disk.
* [Output Only]: This field is not set by user, but from source disk.
*
* Generated from protobuf field optional bool enable_confidential_compute = 102135228;
@@ -86,7 +86,7 @@ class Image extends \Google\Protobuf\Internal\Message
*/
private $guest_os_features;
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -108,7 +108,7 @@ class Image extends \Google\Protobuf\Internal\Message
*/
protected $image_encryption_key = null;
/**
- * [Output Only] Type of the resource. Always compute#image for
+ * Output only. [Output Only] Type of the resource. Always compute#image for
* images.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -178,13 +178,13 @@ class Image extends \Google\Protobuf\Internal\Message
*/
protected $satisfies_pzi = null;
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool satisfies_pzs = 480964267;
*/
protected $satisfies_pzs = null;
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -220,7 +220,7 @@ class Image extends \Google\Protobuf\Internal\Message
*/
protected $source_disk_encryption_key = null;
/**
- * [Output Only]
+ * Output only. [Output Only]
* The ID value of the disk used to create this image. This value may be used
* to determine whether the image was taken from the current or a previous
* instance of a given disk name.
@@ -252,7 +252,7 @@ class Image extends \Google\Protobuf\Internal\Message
*/
protected $source_image_encryption_key = null;
/**
- * [Output Only]
+ * Output only. [Output Only]
* The ID value of the image used to create this image. This value may be used
* to determine whether the image was taken from the current or a previous
* instance of a given image name.
@@ -284,7 +284,7 @@ class Image extends \Google\Protobuf\Internal\Message
*/
protected $source_snapshot_encryption_key = null;
/**
- * [Output Only]
+ * Output only. [Output Only]
* The ID value of the snapshot used to create this image. This value may be
* used to determine whether the snapshot was taken from the current or a
* previous instance of a given snapshot name.
@@ -301,7 +301,7 @@ class Image extends \Google\Protobuf\Internal\Message
*/
protected $source_type = null;
/**
- * [Output Only] The status of the image. An image can be used to create other
+ * Output only. [Output Only] The status of the image. An image can be used to create other
* resources, such as instances, only after the image has been successfully
* created and the status is set to READY. Possible
* values are FAILED, PENDING, orREADY.
@@ -332,17 +332,17 @@ class Image extends \Google\Protobuf\Internal\Message
* Size of the image tar.gz archive stored in Google Cloud
* Storage (in bytes).
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type \Google\Cloud\Compute\V1\DeprecationStatus $deprecated
- * The deprecation status associated with this image.
+ * Output only. The deprecation status associated with this image.
* @type string $description
* An optional description of this resource. Provide this property when you
* create the resource.
* @type int|string $disk_size_gb
* Size of the image when restored onto a persistent disk (in GB).
* @type bool $enable_confidential_compute
- * Whether this image is created from a confidential compute mode disk.
+ * Output only. Whether this image is created from a confidential compute mode disk.
* [Output Only]: This field is not set by user, but from source disk.
* @type string $family
* The name of the image family to which this image belongs. The image
@@ -357,7 +357,7 @@ class Image extends \Google\Protobuf\Internal\Message
* A list of features to enable on the guest operating system. Applicable
* only for bootable images. To see a list of available options, see theguestOSfeatures[].type parameter.
* @type int|string $id
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type \Google\Cloud\Compute\V1\CustomerEncryptionKey $image_encryption_key
* Encrypts the image using acustomer-supplied
@@ -371,7 +371,7 @@ class Image extends \Google\Protobuf\Internal\Message
* disk will be encrypted using an automatically generated key and you do not
* need to provide a key to use the image later.
* @type string $kind
- * [Output Only] Type of the resource. Always compute#image for
+ * Output only. [Output Only] Type of the resource. Always compute#image for
* images.
* @type string $label_fingerprint
* A fingerprint for the labels being applied to this image, which is
@@ -405,9 +405,9 @@ class Image extends \Google\Protobuf\Internal\Message
* @type bool $satisfies_pzi
* Output only. Reserved for future use.
* @type bool $satisfies_pzs
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
* @type string $self_link
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
* @type \Google\Cloud\Compute\V1\InitialStateConfig $shielded_instance_initial_state
* Set the secure boot keys of shielded instance.
* @type string $source_disk
@@ -427,7 +427,7 @@ class Image extends \Google\Protobuf\Internal\Message
* encryption key of the source disk. Required if the source disk is
* protected by a customer-supplied encryption key.
* @type string $source_disk_id
- * [Output Only]
+ * Output only. [Output Only]
* The ID value of the disk used to create this image. This value may be used
* to determine whether the image was taken from the current or a previous
* instance of a given disk name.
@@ -447,7 +447,7 @@ class Image extends \Google\Protobuf\Internal\Message
* The customer-supplied encryption key of the source image. Required if the
* source image is protected by a customer-supplied encryption key.
* @type string $source_image_id
- * [Output Only]
+ * Output only. [Output Only]
* The ID value of the image used to create this image. This value may be used
* to determine whether the image was taken from the current or a previous
* instance of a given image name.
@@ -467,7 +467,7 @@ class Image extends \Google\Protobuf\Internal\Message
* The customer-supplied encryption key of the source snapshot. Required if
* the source snapshot is protected by a customer-supplied encryption key.
* @type string $source_snapshot_id
- * [Output Only]
+ * Output only. [Output Only]
* The ID value of the snapshot used to create this image. This value may be
* used to determine whether the snapshot was taken from the current or a
* previous instance of a given snapshot name.
@@ -476,7 +476,7 @@ class Image extends \Google\Protobuf\Internal\Message
* default and only valid value is RAW.
* Check the SourceType enum for the list of possible values.
* @type string $status
- * [Output Only] The status of the image. An image can be used to create other
+ * Output only. [Output Only] The status of the image. An image can be used to create other
* resources, such as instances, only after the image has been successfully
* created and the status is set to READY. Possible
* values are FAILED, PENDING, orREADY.
@@ -570,7 +570,7 @@ public function setArchiveSizeBytes($var)
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -592,7 +592,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -608,7 +608,7 @@ public function setCreationTimestamp($var)
}
/**
- * The deprecation status associated with this image.
+ * Output only. The deprecation status associated with this image.
*
* Generated from protobuf field optional .google.cloud.compute.v1.DeprecationStatus deprecated = 515138995;
* @return \Google\Cloud\Compute\V1\DeprecationStatus|null
@@ -629,7 +629,7 @@ public function clearDeprecated()
}
/**
- * The deprecation status associated with this image.
+ * Output only. The deprecation status associated with this image.
*
* Generated from protobuf field optional .google.cloud.compute.v1.DeprecationStatus deprecated = 515138995;
* @param \Google\Cloud\Compute\V1\DeprecationStatus $var
@@ -718,7 +718,7 @@ public function setDiskSizeGb($var)
}
/**
- * Whether this image is created from a confidential compute mode disk.
+ * Output only. Whether this image is created from a confidential compute mode disk.
* [Output Only]: This field is not set by user, but from source disk.
*
* Generated from protobuf field optional bool enable_confidential_compute = 102135228;
@@ -740,7 +740,7 @@ public function clearEnableConfidentialCompute()
}
/**
- * Whether this image is created from a confidential compute mode disk.
+ * Output only. Whether this image is created from a confidential compute mode disk.
* [Output Only]: This field is not set by user, but from source disk.
*
* Generated from protobuf field optional bool enable_confidential_compute = 102135228;
@@ -834,7 +834,7 @@ public function setGuestOsFeatures($var)
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -856,7 +856,7 @@ public function clearId()
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -926,7 +926,7 @@ public function setImageEncryptionKey($var)
}
/**
- * [Output Only] Type of the resource. Always compute#image for
+ * Output only. [Output Only] Type of the resource. Always compute#image for
* images.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -948,7 +948,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Always compute#image for
+ * Output only. [Output Only] Type of the resource. Always compute#image for
* images.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -1252,7 +1252,7 @@ public function setSatisfiesPzi($var)
}
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool satisfies_pzs = 480964267;
* @return bool
@@ -1273,7 +1273,7 @@ public function clearSatisfiesPzs()
}
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool satisfies_pzs = 480964267;
* @param bool $var
@@ -1288,7 +1288,7 @@ public function setSatisfiesPzs($var)
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -1309,7 +1309,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -1456,7 +1456,7 @@ public function setSourceDiskEncryptionKey($var)
}
/**
- * [Output Only]
+ * Output only. [Output Only]
* The ID value of the disk used to create this image. This value may be used
* to determine whether the image was taken from the current or a previous
* instance of a given disk name.
@@ -1480,7 +1480,7 @@ public function clearSourceDiskId()
}
/**
- * [Output Only]
+ * Output only. [Output Only]
* The ID value of the disk used to create this image. This value may be used
* to determine whether the image was taken from the current or a previous
* instance of a given disk name.
@@ -1592,7 +1592,7 @@ public function setSourceImageEncryptionKey($var)
}
/**
- * [Output Only]
+ * Output only. [Output Only]
* The ID value of the image used to create this image. This value may be used
* to determine whether the image was taken from the current or a previous
* instance of a given image name.
@@ -1616,7 +1616,7 @@ public function clearSourceImageId()
}
/**
- * [Output Only]
+ * Output only. [Output Only]
* The ID value of the image used to create this image. This value may be used
* to determine whether the image was taken from the current or a previous
* instance of a given image name.
@@ -1728,7 +1728,7 @@ public function setSourceSnapshotEncryptionKey($var)
}
/**
- * [Output Only]
+ * Output only. [Output Only]
* The ID value of the snapshot used to create this image. This value may be
* used to determine whether the snapshot was taken from the current or a
* previous instance of a given snapshot name.
@@ -1752,7 +1752,7 @@ public function clearSourceSnapshotId()
}
/**
- * [Output Only]
+ * Output only. [Output Only]
* The ID value of the snapshot used to create this image. This value may be
* used to determine whether the snapshot was taken from the current or a
* previous instance of a given snapshot name.
@@ -1810,7 +1810,7 @@ public function setSourceType($var)
}
/**
- * [Output Only] The status of the image. An image can be used to create other
+ * Output only. [Output Only] The status of the image. An image can be used to create other
* resources, such as instances, only after the image has been successfully
* created and the status is set to READY. Possible
* values are FAILED, PENDING, orREADY.
@@ -1835,7 +1835,7 @@ public function clearStatus()
}
/**
- * [Output Only] The status of the image. An image can be used to create other
+ * Output only. [Output Only] The status of the image. An image can be used to create other
* resources, such as instances, only after the image has been successfully
* created and the status is set to READY. Possible
* values are FAILED, PENDING, orREADY.
diff --git a/Compute/src/V1/Image/Status.php b/Compute/src/V1/Image/Status.php
index 08c0c9b6a393..ccdeeb95f0b8 100644
--- a/Compute/src/V1/Image/Status.php
+++ b/Compute/src/V1/Image/Status.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] The status of the image. An image can be used to create other
+ * Output only. [Output Only] The status of the image. An image can be used to create other
* resources, such as instances, only after the image has been successfully
* created and the status is set to READY. Possible
* values are FAILED, PENDING, orREADY.
diff --git a/Compute/src/V1/ImageList.php b/Compute/src/V1/ImageList.php
index 7156a74513a0..9f35ed571cda 100644
--- a/Compute/src/V1/ImageList.php
+++ b/Compute/src/V1/ImageList.php
@@ -28,7 +28,7 @@ class ImageList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -44,7 +44,7 @@ class ImageList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -67,7 +67,7 @@ class ImageList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\Image>|\Google\Protobuf\Internal\RepeatedField $items
* A list of Image resources.
* @type string $kind
- * Type of resource.
+ * Output only. Type of resource.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -75,7 +75,7 @@ class ImageList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -148,7 +148,7 @@ public function setItems($var)
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -169,7 +169,7 @@ public function clearKind()
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -228,7 +228,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -249,7 +249,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/ImageParams.php b/Compute/src/V1/ImageParams.php
index 7c5ddb77d742..ec324b7f019d 100644
--- a/Compute/src/V1/ImageParams.php
+++ b/Compute/src/V1/ImageParams.php
@@ -18,8 +18,10 @@ class ImageParams extends \Google\Protobuf\Internal\Message
/**
* Resource manager tags to be bound to the image. Tag keys and values have
* the same definition as resource
- * manager tags. Keys must be in the format `tagKeys/{tag_key_id}`, and
- * values are in the format `tagValues/456`. The field is ignored (both PUT &
+ * manager tags. Keys and values can be either in numeric format,
+ * such as `tagKeys/{tag_key_id}` and `tagValues/456` or in namespaced
+ * format such as `{org_id|project_id}/{tag_key_short_name}` and
+ * `{tag_value_short_name}`. The field is ignored (both PUT &
* PATCH) when empty.
*
* Generated from protobuf field map resource_manager_tags = 377671164;
@@ -35,8 +37,10 @@ class ImageParams extends \Google\Protobuf\Internal\Message
* @type array|\Google\Protobuf\Internal\MapField $resource_manager_tags
* Resource manager tags to be bound to the image. Tag keys and values have
* the same definition as resource
- * manager tags. Keys must be in the format `tagKeys/{tag_key_id}`, and
- * values are in the format `tagValues/456`. The field is ignored (both PUT &
+ * manager tags. Keys and values can be either in numeric format,
+ * such as `tagKeys/{tag_key_id}` and `tagValues/456` or in namespaced
+ * format such as `{org_id|project_id}/{tag_key_short_name}` and
+ * `{tag_value_short_name}`. The field is ignored (both PUT &
* PATCH) when empty.
* }
*/
@@ -48,8 +52,10 @@ public function __construct($data = NULL) {
/**
* Resource manager tags to be bound to the image. Tag keys and values have
* the same definition as resource
- * manager tags. Keys must be in the format `tagKeys/{tag_key_id}`, and
- * values are in the format `tagValues/456`. The field is ignored (both PUT &
+ * manager tags. Keys and values can be either in numeric format,
+ * such as `tagKeys/{tag_key_id}` and `tagValues/456` or in namespaced
+ * format such as `{org_id|project_id}/{tag_key_short_name}` and
+ * `{tag_value_short_name}`. The field is ignored (both PUT &
* PATCH) when empty.
*
* Generated from protobuf field map resource_manager_tags = 377671164;
@@ -63,8 +69,10 @@ public function getResourceManagerTags()
/**
* Resource manager tags to be bound to the image. Tag keys and values have
* the same definition as resource
- * manager tags. Keys must be in the format `tagKeys/{tag_key_id}`, and
- * values are in the format `tagValues/456`. The field is ignored (both PUT &
+ * manager tags. Keys and values can be either in numeric format,
+ * such as `tagKeys/{tag_key_id}` and `tagValues/456` or in namespaced
+ * format such as `{org_id|project_id}/{tag_key_short_name}` and
+ * `{tag_value_short_name}`. The field is ignored (both PUT &
* PATCH) when empty.
*
* Generated from protobuf field map resource_manager_tags = 377671164;
diff --git a/Compute/src/V1/Instance.php b/Compute/src/V1/Instance.php
index 0a3d4b718237..8b8aaf78da4e 100644
--- a/Compute/src/V1/Instance.php
+++ b/Compute/src/V1/Instance.php
@@ -36,13 +36,13 @@ class Instance extends \Google\Protobuf\Internal\Message
*/
protected $confidential_instance_config = null;
/**
- * [Output Only] The CPU platform used by this instance.
+ * Output only. [Output Only] The CPU platform used by this instance.
*
* Generated from protobuf field optional string cpu_platform = 410285354;
*/
protected $cpu_platform = null;
/**
- * [Output Only] Creation timestamp inRFC3339 text format.
+ * Output only. [Output Only] Creation timestamp inRFC3339 text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
*/
@@ -101,7 +101,7 @@ class Instance extends \Google\Protobuf\Internal\Message
*/
protected $hostname = null;
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -128,7 +128,7 @@ class Instance extends \Google\Protobuf\Internal\Message
*/
protected $key_revocation_action_type = null;
/**
- * [Output Only] Type of the resource. Always compute#instance
+ * Output only. [Output Only] Type of the resource. Always compute#instance
* for instances.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -154,19 +154,19 @@ class Instance extends \Google\Protobuf\Internal\Message
*/
private $labels;
/**
- * [Output Only] Last start timestamp inRFC3339 text format.
+ * Output only. [Output Only] Last start timestamp inRFC3339 text format.
*
* Generated from protobuf field optional string last_start_timestamp = 443830736;
*/
protected $last_start_timestamp = null;
/**
- * [Output Only] Last stop timestamp inRFC3339 text format.
+ * Output only. [Output Only] Last stop timestamp inRFC3339 text format.
*
* Generated from protobuf field optional string last_stop_timestamp = 412823010;
*/
protected $last_stop_timestamp = null;
/**
- * [Output Only] Last suspended timestamp inRFC3339 text format.
+ * Output only. [Output Only] Last suspended timestamp inRFC3339 text format.
*
* Generated from protobuf field optional string last_suspended_timestamp = 356275337;
*/
@@ -264,7 +264,7 @@ class Instance extends \Google\Protobuf\Internal\Message
*/
private $resource_policies;
/**
- * [Output Only] Specifies values set for instance attributes as
+ * Output only. [Output Only] Specifies values set for instance attributes as
* compared to the values requested by user in the corresponding input only
* field.
*
@@ -272,13 +272,13 @@ class Instance extends \Google\Protobuf\Internal\Message
*/
protected $resource_status = null;
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool satisfies_pzi = 480964257;
*/
protected $satisfies_pzi = null;
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool satisfies_pzs = 480964267;
*/
@@ -290,7 +290,7 @@ class Instance extends \Google\Protobuf\Internal\Message
*/
protected $scheduling = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -328,14 +328,14 @@ class Instance extends \Google\Protobuf\Internal\Message
*/
protected $source_machine_image_encryption_key = null;
/**
- * [Output Only] Whether a VM has been restricted for start because Compute
+ * Output only. [Output Only] Whether a VM has been restricted for start because Compute
* Engine has detected suspicious activity.
*
* Generated from protobuf field optional bool start_restricted = 123693144;
*/
protected $start_restricted = null;
/**
- * [Output Only] The status of the instance. One of the
+ * Output only. [Output Only] The status of the instance. One of the
* following values: PROVISIONING, STAGING,RUNNING, STOPPING, SUSPENDING,SUSPENDED, REPAIRING, andTERMINATED. For more information about the status of the
* instance, see
* Instance life cycle.
@@ -345,7 +345,7 @@ class Instance extends \Google\Protobuf\Internal\Message
*/
protected $status = null;
/**
- * [Output Only] An optional, human-readable explanation of the status.
+ * Output only. [Output Only] An optional, human-readable explanation of the status.
*
* Generated from protobuf field optional string status_message = 297428154;
*/
@@ -361,7 +361,7 @@ class Instance extends \Google\Protobuf\Internal\Message
*/
protected $tags = null;
/**
- * [Output Only] URL of the zone where the instance resides.
+ * Output only. [Output Only] URL of the zone where the instance resides.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
*
@@ -383,9 +383,9 @@ class Instance extends \Google\Protobuf\Internal\Message
* instance to forward routes. For more information, seeEnabling IP Forwarding.
* @type \Google\Cloud\Compute\V1\ConfidentialInstanceConfig $confidential_instance_config
* @type string $cpu_platform
- * [Output Only] The CPU platform used by this instance.
+ * Output only. [Output Only] The CPU platform used by this instance.
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339 text format.
+ * Output only. [Output Only] Creation timestamp inRFC3339 text format.
* @type bool $deletion_protection
* Whether the resource should be protected against deletion.
* @type string $description
@@ -412,7 +412,7 @@ class Instance extends \Google\Protobuf\Internal\Message
* [INSTANCE_NAME].c.[PROJECT_ID].internal when using the global DNS, and
* [INSTANCE_NAME].[ZONE].c.[PROJECT_ID].internal when using zonal DNS.
* @type int|string $id
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type \Google\Cloud\Compute\V1\CustomerEncryptionKey $instance_encryption_key
* Encrypts suspended data for an instance with acustomer-managed
@@ -427,7 +427,7 @@ class Instance extends \Google\Protobuf\Internal\Message
* "NONE". The default value is "NONE" if it is not specified.
* Check the KeyRevocationActionType enum for the list of possible values.
* @type string $kind
- * [Output Only] Type of the resource. Always compute#instance
+ * Output only. [Output Only] Type of the resource. Always compute#instance
* for instances.
* @type string $label_fingerprint
* A fingerprint for this request, which is essentially a hash of
@@ -441,11 +441,11 @@ class Instance extends \Google\Protobuf\Internal\Message
* Labels to apply to this instance. These can be later modified by
* the setLabels method.
* @type string $last_start_timestamp
- * [Output Only] Last start timestamp inRFC3339 text format.
+ * Output only. [Output Only] Last start timestamp inRFC3339 text format.
* @type string $last_stop_timestamp
- * [Output Only] Last stop timestamp inRFC3339 text format.
+ * Output only. [Output Only] Last stop timestamp inRFC3339 text format.
* @type string $last_suspended_timestamp
- * [Output Only] Last suspended timestamp inRFC3339 text format.
+ * Output only. [Output Only] Last suspended timestamp inRFC3339 text format.
* @type string $machine_type
* Full or partial URL of the machine type resource to use for this instance,
* in the format:zones/zone/machineTypes/machine-type. This is provided by the client
@@ -500,17 +500,17 @@ class Instance extends \Google\Protobuf\Internal\Message
* @type array|\Google\Protobuf\Internal\RepeatedField $resource_policies
* Resource policies applied to this instance.
* @type \Google\Cloud\Compute\V1\ResourceStatus $resource_status
- * [Output Only] Specifies values set for instance attributes as
+ * Output only. [Output Only] Specifies values set for instance attributes as
* compared to the values requested by user in the corresponding input only
* field.
* @type bool $satisfies_pzi
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
* @type bool $satisfies_pzs
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
* @type \Google\Cloud\Compute\V1\Scheduling $scheduling
* Sets the scheduling options for this instance.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array<\Google\Cloud\Compute\V1\ServiceAccount>|\Google\Protobuf\Internal\RepeatedField $service_accounts
* A list of service accounts, with their specified scopes, authorized for
* this instance. Only one service account per VM instance is supported.
@@ -526,16 +526,16 @@ class Instance extends \Google\Protobuf\Internal\Message
* Source machine image encryption key when creating an instance from a
* machine image.
* @type bool $start_restricted
- * [Output Only] Whether a VM has been restricted for start because Compute
+ * Output only. [Output Only] Whether a VM has been restricted for start because Compute
* Engine has detected suspicious activity.
* @type string $status
- * [Output Only] The status of the instance. One of the
+ * Output only. [Output Only] The status of the instance. One of the
* following values: PROVISIONING, STAGING,RUNNING, STOPPING, SUSPENDING,SUSPENDED, REPAIRING, andTERMINATED. For more information about the status of the
* instance, see
* Instance life cycle.
* Check the Status enum for the list of possible values.
* @type string $status_message
- * [Output Only] An optional, human-readable explanation of the status.
+ * Output only. [Output Only] An optional, human-readable explanation of the status.
* @type \Google\Cloud\Compute\V1\Tags $tags
* Tags to apply to this instance. Tags are used to identify valid
* sources or targets for network firewalls and are specified by the client
@@ -543,7 +543,7 @@ class Instance extends \Google\Protobuf\Internal\Message
* method. Each tag within the list must comply withRFC1035.
* Multiple tags can be specified via the 'tags.items' field.
* @type string $zone
- * [Output Only] URL of the zone where the instance resides.
+ * Output only. [Output Only] URL of the zone where the instance resides.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
* }
@@ -662,7 +662,7 @@ public function setConfidentialInstanceConfig($var)
}
/**
- * [Output Only] The CPU platform used by this instance.
+ * Output only. [Output Only] The CPU platform used by this instance.
*
* Generated from protobuf field optional string cpu_platform = 410285354;
* @return string
@@ -683,7 +683,7 @@ public function clearCpuPlatform()
}
/**
- * [Output Only] The CPU platform used by this instance.
+ * Output only. [Output Only] The CPU platform used by this instance.
*
* Generated from protobuf field optional string cpu_platform = 410285354;
* @param string $var
@@ -698,7 +698,7 @@ public function setCpuPlatform($var)
}
/**
- * [Output Only] Creation timestamp inRFC3339 text format.
+ * Output only. [Output Only] Creation timestamp inRFC3339 text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
* @return string
@@ -719,7 +719,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339 text format.
+ * Output only. [Output Only] Creation timestamp inRFC3339 text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
* @param string $var
@@ -988,7 +988,7 @@ public function setHostname($var)
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -1010,7 +1010,7 @@ public function clearId()
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -1114,7 +1114,7 @@ public function setKeyRevocationActionType($var)
}
/**
- * [Output Only] Type of the resource. Always compute#instance
+ * Output only. [Output Only] Type of the resource. Always compute#instance
* for instances.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -1136,7 +1136,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Always compute#instance
+ * Output only. [Output Only] Type of the resource. Always compute#instance
* for instances.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -1228,7 +1228,7 @@ public function setLabels($var)
}
/**
- * [Output Only] Last start timestamp inRFC3339 text format.
+ * Output only. [Output Only] Last start timestamp inRFC3339 text format.
*
* Generated from protobuf field optional string last_start_timestamp = 443830736;
* @return string
@@ -1249,7 +1249,7 @@ public function clearLastStartTimestamp()
}
/**
- * [Output Only] Last start timestamp inRFC3339 text format.
+ * Output only. [Output Only] Last start timestamp inRFC3339 text format.
*
* Generated from protobuf field optional string last_start_timestamp = 443830736;
* @param string $var
@@ -1264,7 +1264,7 @@ public function setLastStartTimestamp($var)
}
/**
- * [Output Only] Last stop timestamp inRFC3339 text format.
+ * Output only. [Output Only] Last stop timestamp inRFC3339 text format.
*
* Generated from protobuf field optional string last_stop_timestamp = 412823010;
* @return string
@@ -1285,7 +1285,7 @@ public function clearLastStopTimestamp()
}
/**
- * [Output Only] Last stop timestamp inRFC3339 text format.
+ * Output only. [Output Only] Last stop timestamp inRFC3339 text format.
*
* Generated from protobuf field optional string last_stop_timestamp = 412823010;
* @param string $var
@@ -1300,7 +1300,7 @@ public function setLastStopTimestamp($var)
}
/**
- * [Output Only] Last suspended timestamp inRFC3339 text format.
+ * Output only. [Output Only] Last suspended timestamp inRFC3339 text format.
*
* Generated from protobuf field optional string last_suspended_timestamp = 356275337;
* @return string
@@ -1321,7 +1321,7 @@ public function clearLastSuspendedTimestamp()
}
/**
- * [Output Only] Last suspended timestamp inRFC3339 text format.
+ * Output only. [Output Only] Last suspended timestamp inRFC3339 text format.
*
* Generated from protobuf field optional string last_suspended_timestamp = 356275337;
* @param string $var
@@ -1740,7 +1740,7 @@ public function setResourcePolicies($var)
}
/**
- * [Output Only] Specifies values set for instance attributes as
+ * Output only. [Output Only] Specifies values set for instance attributes as
* compared to the values requested by user in the corresponding input only
* field.
*
@@ -1763,7 +1763,7 @@ public function clearResourceStatus()
}
/**
- * [Output Only] Specifies values set for instance attributes as
+ * Output only. [Output Only] Specifies values set for instance attributes as
* compared to the values requested by user in the corresponding input only
* field.
*
@@ -1780,7 +1780,7 @@ public function setResourceStatus($var)
}
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool satisfies_pzi = 480964257;
* @return bool
@@ -1801,7 +1801,7 @@ public function clearSatisfiesPzi()
}
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool satisfies_pzi = 480964257;
* @param bool $var
@@ -1816,7 +1816,7 @@ public function setSatisfiesPzi($var)
}
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool satisfies_pzs = 480964267;
* @return bool
@@ -1837,7 +1837,7 @@ public function clearSatisfiesPzs()
}
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool satisfies_pzs = 480964267;
* @param bool $var
@@ -1888,7 +1888,7 @@ public function setScheduling($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -1909,7 +1909,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -2098,7 +2098,7 @@ public function setSourceMachineImageEncryptionKey($var)
}
/**
- * [Output Only] Whether a VM has been restricted for start because Compute
+ * Output only. [Output Only] Whether a VM has been restricted for start because Compute
* Engine has detected suspicious activity.
*
* Generated from protobuf field optional bool start_restricted = 123693144;
@@ -2120,7 +2120,7 @@ public function clearStartRestricted()
}
/**
- * [Output Only] Whether a VM has been restricted for start because Compute
+ * Output only. [Output Only] Whether a VM has been restricted for start because Compute
* Engine has detected suspicious activity.
*
* Generated from protobuf field optional bool start_restricted = 123693144;
@@ -2136,7 +2136,7 @@ public function setStartRestricted($var)
}
/**
- * [Output Only] The status of the instance. One of the
+ * Output only. [Output Only] The status of the instance. One of the
* following values: PROVISIONING, STAGING,RUNNING, STOPPING, SUSPENDING,SUSPENDED, REPAIRING, andTERMINATED. For more information about the status of the
* instance, see
* Instance life cycle.
@@ -2161,7 +2161,7 @@ public function clearStatus()
}
/**
- * [Output Only] The status of the instance. One of the
+ * Output only. [Output Only] The status of the instance. One of the
* following values: PROVISIONING, STAGING,RUNNING, STOPPING, SUSPENDING,SUSPENDED, REPAIRING, andTERMINATED. For more information about the status of the
* instance, see
* Instance life cycle.
@@ -2180,7 +2180,7 @@ public function setStatus($var)
}
/**
- * [Output Only] An optional, human-readable explanation of the status.
+ * Output only. [Output Only] An optional, human-readable explanation of the status.
*
* Generated from protobuf field optional string status_message = 297428154;
* @return string
@@ -2201,7 +2201,7 @@ public function clearStatusMessage()
}
/**
- * [Output Only] An optional, human-readable explanation of the status.
+ * Output only. [Output Only] An optional, human-readable explanation of the status.
*
* Generated from protobuf field optional string status_message = 297428154;
* @param string $var
@@ -2260,7 +2260,7 @@ public function setTags($var)
}
/**
- * [Output Only] URL of the zone where the instance resides.
+ * Output only. [Output Only] URL of the zone where the instance resides.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
*
@@ -2283,7 +2283,7 @@ public function clearZone()
}
/**
- * [Output Only] URL of the zone where the instance resides.
+ * Output only. [Output Only] URL of the zone where the instance resides.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
*
diff --git a/Compute/src/V1/Instance/Status.php b/Compute/src/V1/Instance/Status.php
index b679b2e5516d..5a4b8d97f902 100644
--- a/Compute/src/V1/Instance/Status.php
+++ b/Compute/src/V1/Instance/Status.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] The status of the instance. One of the
+ * Output only. [Output Only] The status of the instance. One of the
* following values: PROVISIONING, STAGING,RUNNING, STOPPING, SUSPENDING,SUSPENDED, REPAIRING, andTERMINATED. For more information about the status of the
* instance, see
* Instance life cycle.
diff --git a/Compute/src/V1/InstanceAggregatedList.php b/Compute/src/V1/InstanceAggregatedList.php
index ccd1576f9a2a..eb3775e5d885 100644
--- a/Compute/src/V1/InstanceAggregatedList.php
+++ b/Compute/src/V1/InstanceAggregatedList.php
@@ -27,7 +27,7 @@ class InstanceAggregatedList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Alwayscompute#instanceAggregatedList for aggregated lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#instanceAggregatedList for aggregated lists of
* Instance resources.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -44,13 +44,13 @@ class InstanceAggregatedList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
@@ -73,7 +73,7 @@ class InstanceAggregatedList extends \Google\Protobuf\Internal\Message
* @type array|\Google\Protobuf\Internal\MapField $items
* An object that contains a list of instances scoped by zone.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#instanceAggregatedList for aggregated lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#instanceAggregatedList for aggregated lists of
* Instance resources.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -82,9 +82,9 @@ class InstanceAggregatedList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -157,7 +157,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#instanceAggregatedList for aggregated lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#instanceAggregatedList for aggregated lists of
* Instance resources.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -179,7 +179,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#instanceAggregatedList for aggregated lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#instanceAggregatedList for aggregated lists of
* Instance resources.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -239,7 +239,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -260,7 +260,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -275,7 +275,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -286,7 +286,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/InstanceConsumptionData.php b/Compute/src/V1/InstanceConsumptionData.php
index 5d908d8d2ec5..68702431ea0a 100644
--- a/Compute/src/V1/InstanceConsumptionData.php
+++ b/Compute/src/V1/InstanceConsumptionData.php
@@ -15,13 +15,13 @@
class InstanceConsumptionData extends \Google\Protobuf\Internal\Message
{
/**
- * Resources consumed by the instance.
+ * Output only. Resources consumed by the instance.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InstanceConsumptionInfo consumption_info = 146354898;
*/
protected $consumption_info = null;
/**
- * Server-defined URL for the instance.
+ * Output only. Server-defined URL for the instance.
*
* Generated from protobuf field optional string instance = 18257045;
*/
@@ -34,9 +34,9 @@ class InstanceConsumptionData extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type \Google\Cloud\Compute\V1\InstanceConsumptionInfo $consumption_info
- * Resources consumed by the instance.
+ * Output only. Resources consumed by the instance.
* @type string $instance
- * Server-defined URL for the instance.
+ * Output only. Server-defined URL for the instance.
* }
*/
public function __construct($data = NULL) {
@@ -45,7 +45,7 @@ public function __construct($data = NULL) {
}
/**
- * Resources consumed by the instance.
+ * Output only. Resources consumed by the instance.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InstanceConsumptionInfo consumption_info = 146354898;
* @return \Google\Cloud\Compute\V1\InstanceConsumptionInfo|null
@@ -66,7 +66,7 @@ public function clearConsumptionInfo()
}
/**
- * Resources consumed by the instance.
+ * Output only. Resources consumed by the instance.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InstanceConsumptionInfo consumption_info = 146354898;
* @param \Google\Cloud\Compute\V1\InstanceConsumptionInfo $var
@@ -81,7 +81,7 @@ public function setConsumptionInfo($var)
}
/**
- * Server-defined URL for the instance.
+ * Output only. Server-defined URL for the instance.
*
* Generated from protobuf field optional string instance = 18257045;
* @return string
@@ -102,7 +102,7 @@ public function clearInstance()
}
/**
- * Server-defined URL for the instance.
+ * Output only. Server-defined URL for the instance.
*
* Generated from protobuf field optional string instance = 18257045;
* @param string $var
diff --git a/Compute/src/V1/InstanceConsumptionInfo.php b/Compute/src/V1/InstanceConsumptionInfo.php
index b60a7accf8b8..da54f0cc961b 100644
--- a/Compute/src/V1/InstanceConsumptionInfo.php
+++ b/Compute/src/V1/InstanceConsumptionInfo.php
@@ -15,27 +15,27 @@
class InstanceConsumptionInfo extends \Google\Protobuf\Internal\Message
{
/**
- * The number of virtual CPUs that are available to the instance.
+ * Output only. The number of virtual CPUs that are available to the instance.
*
* Generated from protobuf field optional int32 guest_cpus = 393356754;
*/
protected $guest_cpus = null;
/**
- * The amount of local SSD storage available to the instance,
+ * Output only. The amount of local SSD storage available to the instance,
* defined in GiB.
*
* Generated from protobuf field optional int32 local_ssd_gb = 329237578;
*/
protected $local_ssd_gb = null;
/**
- * The amount of physical memory available to the instance,
+ * Output only. The amount of physical memory available to the instance,
* defined in MiB.
*
* Generated from protobuf field optional int32 memory_mb = 116001171;
*/
protected $memory_mb = null;
/**
- * The minimal guaranteed number of virtual CPUs that are reserved.
+ * Output only. The minimal guaranteed number of virtual CPUs that are reserved.
*
* Generated from protobuf field optional int32 min_node_cpus = 317231675;
*/
@@ -48,15 +48,15 @@ class InstanceConsumptionInfo extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type int $guest_cpus
- * The number of virtual CPUs that are available to the instance.
+ * Output only. The number of virtual CPUs that are available to the instance.
* @type int $local_ssd_gb
- * The amount of local SSD storage available to the instance,
+ * Output only. The amount of local SSD storage available to the instance,
* defined in GiB.
* @type int $memory_mb
- * The amount of physical memory available to the instance,
+ * Output only. The amount of physical memory available to the instance,
* defined in MiB.
* @type int $min_node_cpus
- * The minimal guaranteed number of virtual CPUs that are reserved.
+ * Output only. The minimal guaranteed number of virtual CPUs that are reserved.
* }
*/
public function __construct($data = NULL) {
@@ -65,7 +65,7 @@ public function __construct($data = NULL) {
}
/**
- * The number of virtual CPUs that are available to the instance.
+ * Output only. The number of virtual CPUs that are available to the instance.
*
* Generated from protobuf field optional int32 guest_cpus = 393356754;
* @return int
@@ -86,7 +86,7 @@ public function clearGuestCpus()
}
/**
- * The number of virtual CPUs that are available to the instance.
+ * Output only. The number of virtual CPUs that are available to the instance.
*
* Generated from protobuf field optional int32 guest_cpus = 393356754;
* @param int $var
@@ -101,7 +101,7 @@ public function setGuestCpus($var)
}
/**
- * The amount of local SSD storage available to the instance,
+ * Output only. The amount of local SSD storage available to the instance,
* defined in GiB.
*
* Generated from protobuf field optional int32 local_ssd_gb = 329237578;
@@ -123,7 +123,7 @@ public function clearLocalSsdGb()
}
/**
- * The amount of local SSD storage available to the instance,
+ * Output only. The amount of local SSD storage available to the instance,
* defined in GiB.
*
* Generated from protobuf field optional int32 local_ssd_gb = 329237578;
@@ -139,7 +139,7 @@ public function setLocalSsdGb($var)
}
/**
- * The amount of physical memory available to the instance,
+ * Output only. The amount of physical memory available to the instance,
* defined in MiB.
*
* Generated from protobuf field optional int32 memory_mb = 116001171;
@@ -161,7 +161,7 @@ public function clearMemoryMb()
}
/**
- * The amount of physical memory available to the instance,
+ * Output only. The amount of physical memory available to the instance,
* defined in MiB.
*
* Generated from protobuf field optional int32 memory_mb = 116001171;
@@ -177,7 +177,7 @@ public function setMemoryMb($var)
}
/**
- * The minimal guaranteed number of virtual CPUs that are reserved.
+ * Output only. The minimal guaranteed number of virtual CPUs that are reserved.
*
* Generated from protobuf field optional int32 min_node_cpus = 317231675;
* @return int
@@ -198,7 +198,7 @@ public function clearMinNodeCpus()
}
/**
- * The minimal guaranteed number of virtual CPUs that are reserved.
+ * Output only. The minimal guaranteed number of virtual CPUs that are reserved.
*
* Generated from protobuf field optional int32 min_node_cpus = 317231675;
* @param int $var
diff --git a/Compute/src/V1/InstanceGroup.php b/Compute/src/V1/InstanceGroup.php
index 0d33b53d8d6f..ac99a8037eb9 100644
--- a/Compute/src/V1/InstanceGroup.php
+++ b/Compute/src/V1/InstanceGroup.php
@@ -26,7 +26,7 @@
class InstanceGroup extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] The creation timestamp for this instance group inRFC3339
+ * Output only. [Output Only] The creation timestamp for this instance group inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -40,7 +40,7 @@ class InstanceGroup extends \Google\Protobuf\Internal\Message
*/
protected $description = null;
/**
- * [Output Only] The fingerprint of the named ports. The system
+ * Output only. [Output Only] The fingerprint of the named ports. The system
* uses this fingerprint to detect conflicts when multiple users change the
* named ports concurrently.
*
@@ -48,14 +48,14 @@ class InstanceGroup extends \Google\Protobuf\Internal\Message
*/
protected $fingerprint = null;
/**
- * [Output Only] A unique identifier for this instance group, generated
+ * Output only. [Output Only] A unique identifier for this instance group, generated
* by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
*/
protected $id = null;
/**
- * [Output Only] The resource type, which is alwayscompute#instanceGroup for instance groups.
+ * Output only. [Output Only] The resource type, which is alwayscompute#instanceGroup for instance groups.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -89,27 +89,27 @@ class InstanceGroup extends \Google\Protobuf\Internal\Message
*/
protected $network = null;
/**
- * [Output Only] The URL of theregion
+ * Output only. [Output Only] The URL of theregion
* where the instance group is located (for regional resources).
*
* Generated from protobuf field optional string region = 138946292;
*/
protected $region = null;
/**
- * [Output Only] The URL for this instance group. The server generates
+ * Output only. [Output Only] The URL for this instance group. The server generates
* this URL.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] The total number of instances in the instance group.
+ * Output only. [Output Only] The total number of instances in the instance group.
*
* Generated from protobuf field optional int32 size = 3530753;
*/
protected $size = null;
/**
- * [Output Only] The URL of the subnetwork to which all instances in the
+ * Output only. [Output Only] The URL of the subnetwork to which all instances in the
* instance group belong. If your instance has multiple network interfaces,
* then the network and subnetwork fields only refer to the
* network and subnet used by your primary interface (nic0).
@@ -118,7 +118,7 @@ class InstanceGroup extends \Google\Protobuf\Internal\Message
*/
protected $subnetwork = null;
/**
- * [Output Only] The URL of thezone
+ * Output only. [Output Only] The URL of thezone
* where the instance group is located (for zonal resources).
*
* Generated from protobuf field optional string zone = 3744684;
@@ -132,20 +132,20 @@ class InstanceGroup extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $creation_timestamp
- * [Output Only] The creation timestamp for this instance group inRFC3339
+ * Output only. [Output Only] The creation timestamp for this instance group inRFC3339
* text format.
* @type string $description
* An optional description of this resource. Provide this property when you
* create the resource.
* @type string $fingerprint
- * [Output Only] The fingerprint of the named ports. The system
+ * Output only. [Output Only] The fingerprint of the named ports. The system
* uses this fingerprint to detect conflicts when multiple users change the
* named ports concurrently.
* @type int|string $id
- * [Output Only] A unique identifier for this instance group, generated
+ * Output only. [Output Only] A unique identifier for this instance group, generated
* by the server.
* @type string $kind
- * [Output Only] The resource type, which is alwayscompute#instanceGroup for instance groups.
+ * Output only. [Output Only] The resource type, which is alwayscompute#instanceGroup for instance groups.
* @type string $name
* The name of the instance group. The name must be 1-63 characters
* long, and comply withRFC1035.
@@ -163,20 +163,20 @@ class InstanceGroup extends \Google\Protobuf\Internal\Message
* then the network and subnetwork fields only refer to the
* network and subnet used by your primary interface (nic0).
* @type string $region
- * [Output Only] The URL of theregion
+ * Output only. [Output Only] The URL of theregion
* where the instance group is located (for regional resources).
* @type string $self_link
- * [Output Only] The URL for this instance group. The server generates
+ * Output only. [Output Only] The URL for this instance group. The server generates
* this URL.
* @type int $size
- * [Output Only] The total number of instances in the instance group.
+ * Output only. [Output Only] The total number of instances in the instance group.
* @type string $subnetwork
- * [Output Only] The URL of the subnetwork to which all instances in the
+ * Output only. [Output Only] The URL of the subnetwork to which all instances in the
* instance group belong. If your instance has multiple network interfaces,
* then the network and subnetwork fields only refer to the
* network and subnet used by your primary interface (nic0).
* @type string $zone
- * [Output Only] The URL of thezone
+ * Output only. [Output Only] The URL of thezone
* where the instance group is located (for zonal resources).
* }
*/
@@ -186,7 +186,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] The creation timestamp for this instance group inRFC3339
+ * Output only. [Output Only] The creation timestamp for this instance group inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -208,7 +208,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] The creation timestamp for this instance group inRFC3339
+ * Output only. [Output Only] The creation timestamp for this instance group inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -262,7 +262,7 @@ public function setDescription($var)
}
/**
- * [Output Only] The fingerprint of the named ports. The system
+ * Output only. [Output Only] The fingerprint of the named ports. The system
* uses this fingerprint to detect conflicts when multiple users change the
* named ports concurrently.
*
@@ -285,7 +285,7 @@ public function clearFingerprint()
}
/**
- * [Output Only] The fingerprint of the named ports. The system
+ * Output only. [Output Only] The fingerprint of the named ports. The system
* uses this fingerprint to detect conflicts when multiple users change the
* named ports concurrently.
*
@@ -302,7 +302,7 @@ public function setFingerprint($var)
}
/**
- * [Output Only] A unique identifier for this instance group, generated
+ * Output only. [Output Only] A unique identifier for this instance group, generated
* by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -324,7 +324,7 @@ public function clearId()
}
/**
- * [Output Only] A unique identifier for this instance group, generated
+ * Output only. [Output Only] A unique identifier for this instance group, generated
* by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -340,7 +340,7 @@ public function setId($var)
}
/**
- * [Output Only] The resource type, which is alwayscompute#instanceGroup for instance groups.
+ * Output only. [Output Only] The resource type, which is alwayscompute#instanceGroup for instance groups.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -361,7 +361,7 @@ public function clearKind()
}
/**
- * [Output Only] The resource type, which is alwayscompute#instanceGroup for instance groups.
+ * Output only. [Output Only] The resource type, which is alwayscompute#instanceGroup for instance groups.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -494,7 +494,7 @@ public function setNetwork($var)
}
/**
- * [Output Only] The URL of theregion
+ * Output only. [Output Only] The URL of theregion
* where the instance group is located (for regional resources).
*
* Generated from protobuf field optional string region = 138946292;
@@ -516,7 +516,7 @@ public function clearRegion()
}
/**
- * [Output Only] The URL of theregion
+ * Output only. [Output Only] The URL of theregion
* where the instance group is located (for regional resources).
*
* Generated from protobuf field optional string region = 138946292;
@@ -532,7 +532,7 @@ public function setRegion($var)
}
/**
- * [Output Only] The URL for this instance group. The server generates
+ * Output only. [Output Only] The URL for this instance group. The server generates
* this URL.
*
* Generated from protobuf field optional string self_link = 456214797;
@@ -554,7 +554,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] The URL for this instance group. The server generates
+ * Output only. [Output Only] The URL for this instance group. The server generates
* this URL.
*
* Generated from protobuf field optional string self_link = 456214797;
@@ -570,7 +570,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] The total number of instances in the instance group.
+ * Output only. [Output Only] The total number of instances in the instance group.
*
* Generated from protobuf field optional int32 size = 3530753;
* @return int
@@ -591,7 +591,7 @@ public function clearSize()
}
/**
- * [Output Only] The total number of instances in the instance group.
+ * Output only. [Output Only] The total number of instances in the instance group.
*
* Generated from protobuf field optional int32 size = 3530753;
* @param int $var
@@ -606,7 +606,7 @@ public function setSize($var)
}
/**
- * [Output Only] The URL of the subnetwork to which all instances in the
+ * Output only. [Output Only] The URL of the subnetwork to which all instances in the
* instance group belong. If your instance has multiple network interfaces,
* then the network and subnetwork fields only refer to the
* network and subnet used by your primary interface (nic0).
@@ -630,7 +630,7 @@ public function clearSubnetwork()
}
/**
- * [Output Only] The URL of the subnetwork to which all instances in the
+ * Output only. [Output Only] The URL of the subnetwork to which all instances in the
* instance group belong. If your instance has multiple network interfaces,
* then the network and subnetwork fields only refer to the
* network and subnet used by your primary interface (nic0).
@@ -648,7 +648,7 @@ public function setSubnetwork($var)
}
/**
- * [Output Only] The URL of thezone
+ * Output only. [Output Only] The URL of thezone
* where the instance group is located (for zonal resources).
*
* Generated from protobuf field optional string zone = 3744684;
@@ -670,7 +670,7 @@ public function clearZone()
}
/**
- * [Output Only] The URL of thezone
+ * Output only. [Output Only] The URL of thezone
* where the instance group is located (for zonal resources).
*
* Generated from protobuf field optional string zone = 3744684;
diff --git a/Compute/src/V1/InstanceGroupAggregatedList.php b/Compute/src/V1/InstanceGroupAggregatedList.php
index 217abcba390f..67be5714eeac 100644
--- a/Compute/src/V1/InstanceGroupAggregatedList.php
+++ b/Compute/src/V1/InstanceGroupAggregatedList.php
@@ -15,7 +15,7 @@
class InstanceGroupAggregatedList extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
*
* Generated from protobuf field optional string id = 3355;
*/
@@ -27,14 +27,14 @@ class InstanceGroupAggregatedList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] The resource type, which is alwayscompute#instanceGroupAggregatedList for aggregated lists of
+ * Output only. [Output Only] The resource type, which is alwayscompute#instanceGroupAggregatedList for aggregated lists of
* instance groups.
*
* Generated from protobuf field optional string kind = 3292052;
*/
protected $kind = null;
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -44,19 +44,19 @@ class InstanceGroupAggregatedList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
private $unreachables;
/**
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
*/
@@ -69,24 +69,24 @@ class InstanceGroupAggregatedList extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $id
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
* @type array|\Google\Protobuf\Internal\MapField $items
* A list of InstanceGroupsScopedList resources.
* @type string $kind
- * [Output Only] The resource type, which is alwayscompute#instanceGroupAggregatedList for aggregated lists of
+ * Output only. [Output Only] The resource type, which is alwayscompute#instanceGroupAggregatedList for aggregated lists of
* instance groups.
* @type string $next_page_token
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* @type \Google\Cloud\Compute\V1\Warning $warning
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
* }
*/
public function __construct($data = NULL) {
@@ -95,7 +95,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
*
* Generated from protobuf field optional string id = 3355;
* @return string
@@ -116,7 +116,7 @@ public function clearId()
}
/**
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
*
* Generated from protobuf field optional string id = 3355;
* @param string $var
@@ -157,7 +157,7 @@ public function setItems($var)
}
/**
- * [Output Only] The resource type, which is alwayscompute#instanceGroupAggregatedList for aggregated lists of
+ * Output only. [Output Only] The resource type, which is alwayscompute#instanceGroupAggregatedList for aggregated lists of
* instance groups.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -179,7 +179,7 @@ public function clearKind()
}
/**
- * [Output Only] The resource type, which is alwayscompute#instanceGroupAggregatedList for aggregated lists of
+ * Output only. [Output Only] The resource type, which is alwayscompute#instanceGroupAggregatedList for aggregated lists of
* instance groups.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -195,7 +195,7 @@ public function setKind($var)
}
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -220,7 +220,7 @@ public function clearNextPageToken()
}
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -239,7 +239,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -260,7 +260,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -275,7 +275,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -286,7 +286,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
@@ -301,7 +301,7 @@ public function setUnreachables($var)
}
/**
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
* @return \Google\Cloud\Compute\V1\Warning|null
@@ -322,7 +322,7 @@ public function clearWarning()
}
/**
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
* @param \Google\Cloud\Compute\V1\Warning $var
diff --git a/Compute/src/V1/InstanceGroupList.php b/Compute/src/V1/InstanceGroupList.php
index ee51e2a31542..f1d08ddf15ad 100644
--- a/Compute/src/V1/InstanceGroupList.php
+++ b/Compute/src/V1/InstanceGroupList.php
@@ -16,7 +16,7 @@
class InstanceGroupList extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
*
* Generated from protobuf field optional string id = 3355;
*/
@@ -28,13 +28,13 @@ class InstanceGroupList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] The resource type, which is alwayscompute#instanceGroupList for instance group lists.
+ * Output only. [Output Only] The resource type, which is alwayscompute#instanceGroupList for instance group lists.
*
* Generated from protobuf field optional string kind = 3292052;
*/
protected $kind = null;
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -44,13 +44,13 @@ class InstanceGroupList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
*/
@@ -63,21 +63,21 @@ class InstanceGroupList extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $id
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
* @type array<\Google\Cloud\Compute\V1\InstanceGroup>|\Google\Protobuf\Internal\RepeatedField $items
* A list of InstanceGroup resources.
* @type string $kind
- * [Output Only] The resource type, which is alwayscompute#instanceGroupList for instance group lists.
+ * Output only. [Output Only] The resource type, which is alwayscompute#instanceGroupList for instance group lists.
* @type string $next_page_token
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
* }
*/
public function __construct($data = NULL) {
@@ -86,7 +86,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
*
* Generated from protobuf field optional string id = 3355;
* @return string
@@ -107,7 +107,7 @@ public function clearId()
}
/**
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
*
* Generated from protobuf field optional string id = 3355;
* @param string $var
@@ -148,7 +148,7 @@ public function setItems($var)
}
/**
- * [Output Only] The resource type, which is alwayscompute#instanceGroupList for instance group lists.
+ * Output only. [Output Only] The resource type, which is alwayscompute#instanceGroupList for instance group lists.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -169,7 +169,7 @@ public function clearKind()
}
/**
- * [Output Only] The resource type, which is alwayscompute#instanceGroupList for instance group lists.
+ * Output only. [Output Only] The resource type, which is alwayscompute#instanceGroupList for instance group lists.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -184,7 +184,7 @@ public function setKind($var)
}
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -209,7 +209,7 @@ public function clearNextPageToken()
}
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -228,7 +228,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -249,7 +249,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -264,7 +264,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
* @return \Google\Cloud\Compute\V1\Warning|null
@@ -285,7 +285,7 @@ public function clearWarning()
}
/**
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
* @param \Google\Cloud\Compute\V1\Warning $var
diff --git a/Compute/src/V1/InstanceGroupManager.php b/Compute/src/V1/InstanceGroupManager.php
index 587281c00656..f85acff7da2d 100644
--- a/Compute/src/V1/InstanceGroupManager.php
+++ b/Compute/src/V1/InstanceGroupManager.php
@@ -51,14 +51,14 @@ class InstanceGroupManager extends \Google\Protobuf\Internal\Message
*/
protected $base_instance_name = null;
/**
- * [Output Only] The creation timestamp for this managed instance group inRFC3339
+ * Output only. [Output Only] The creation timestamp for this managed instance group inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
*/
protected $creation_timestamp = null;
/**
- * [Output Only] The list of instance actions and the number of instances
+ * Output only. [Output Only] The list of instance actions and the number of instances
* in this managed instance group that are scheduled for each of those
* actions.
*
@@ -90,7 +90,7 @@ class InstanceGroupManager extends \Google\Protobuf\Internal\Message
*/
protected $fingerprint = null;
/**
- * [Output Only] A unique identifier for this resource type. The server
+ * Output only. [Output Only] A unique identifier for this resource type. The server
* generates this identifier.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -106,7 +106,7 @@ class InstanceGroupManager extends \Google\Protobuf\Internal\Message
*/
protected $instance_flexibility_policy = null;
/**
- * [Output Only] The URL of the Instance Group resource.
+ * Output only. [Output Only] The URL of the Instance Group resource.
*
* Generated from protobuf field optional string instance_group = 81095253;
*/
@@ -127,7 +127,7 @@ class InstanceGroupManager extends \Google\Protobuf\Internal\Message
*/
protected $instance_template = null;
/**
- * [Output Only] The resource type, which is alwayscompute#instanceGroupManager for managed instance groups.
+ * Output only. [Output Only] The resource type, which is alwayscompute#instanceGroupManager for managed instance groups.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -155,7 +155,7 @@ class InstanceGroupManager extends \Google\Protobuf\Internal\Message
*/
private $named_ports;
/**
- * [Output Only] The URL of theregion
+ * Output only. [Output Only] The URL of theregion
* where the managed instance group resides (for regional resources).
*
* Generated from protobuf field optional string region = 138946292;
@@ -168,19 +168,19 @@ class InstanceGroupManager extends \Google\Protobuf\Internal\Message
*/
protected $resource_policies = null;
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool satisfies_pzi = 480964257;
*/
protected $satisfies_pzi = null;
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool satisfies_pzs = 480964267;
*/
protected $satisfies_pzs = null;
/**
- * [Output Only] The URL for this managed instance group. The server defines
+ * Output only. [Output Only] The URL for this managed instance group. The server defines
* this URL.
*
* Generated from protobuf field optional string self_link = 456214797;
@@ -199,7 +199,7 @@ class InstanceGroupManager extends \Google\Protobuf\Internal\Message
*/
protected $stateful_policy = null;
/**
- * [Output Only] The status of this managed instance group.
+ * Output only. [Output Only] The status of this managed instance group.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InstanceGroupManagerStatus status = 181260274;
*/
@@ -264,7 +264,7 @@ class InstanceGroupManager extends \Google\Protobuf\Internal\Message
*/
private $versions;
/**
- * [Output Only] The URL of azone
+ * Output only. [Output Only] The URL of azone
* where the managed instance group is located (for zonal resources).
*
* Generated from protobuf field optional string zone = 3744684;
@@ -296,10 +296,10 @@ class InstanceGroupManager extends \Google\Protobuf\Internal\Message
* @pattern
* [a-z](([-a-z0-9]{0,57})|([-a-z0-9]{0,51}-#{1,10}(\\[[0-9]{1,10}\\])?))
* @type string $creation_timestamp
- * [Output Only] The creation timestamp for this managed instance group inRFC3339
+ * Output only. [Output Only] The creation timestamp for this managed instance group inRFC3339
* text format.
* @type \Google\Cloud\Compute\V1\InstanceGroupManagerActionsSummary $current_actions
- * [Output Only] The list of instance actions and the number of instances
+ * Output only. [Output Only] The list of instance actions and the number of instances
* in this managed instance group that are scheduled for each of those
* actions.
* @type string $description
@@ -315,7 +315,7 @@ class InstanceGroupManager extends \Google\Protobuf\Internal\Message
* To see the latest fingerprint, make a get() request to
* retrieve an InstanceGroupManager.
* @type int|string $id
- * [Output Only] A unique identifier for this resource type. The server
+ * Output only. [Output Only] A unique identifier for this resource type. The server
* generates this identifier.
* @type \Google\Cloud\Compute\V1\InstanceGroupManagerInstanceFlexibilityPolicy $instance_flexibility_policy
* Instance flexibility allowing MIG to create VMs from multiple
@@ -323,7 +323,7 @@ class InstanceGroupManager extends \Google\Protobuf\Internal\Message
* Instance flexibility configuration on MIG overrides instance
* template configuration.
* @type string $instance_group
- * [Output Only] The URL of the Instance Group resource.
+ * Output only. [Output Only] The URL of the Instance Group resource.
* @type \Google\Cloud\Compute\V1\InstanceGroupManagerInstanceLifecyclePolicy $instance_lifecycle_policy
* The repair policy for this managed instance group.
* @type string $instance_template
@@ -332,7 +332,7 @@ class InstanceGroupManager extends \Google\Protobuf\Internal\Message
* in the managed instance group. The templates for existing instances in the
* group do not change unless you run recreateInstances, runapplyUpdatesToInstances, or set the group'supdatePolicy.type to PROACTIVE.
* @type string $kind
- * [Output Only] The resource type, which is alwayscompute#instanceGroupManager for managed instance groups.
+ * Output only. [Output Only] The resource type, which is alwayscompute#instanceGroupManager for managed instance groups.
* @type string $list_managed_instances_results
* Pagination behavior of the listManagedInstances API method for
* this managed instance group.
@@ -344,23 +344,23 @@ class InstanceGroupManager extends \Google\Protobuf\Internal\Message
* [Output Only] Named ports configured on the Instance Groups complementary
* to this Instance Group Manager.
* @type string $region
- * [Output Only] The URL of theregion
+ * Output only. [Output Only] The URL of theregion
* where the managed instance group resides (for regional resources).
* @type \Google\Cloud\Compute\V1\InstanceGroupManagerResourcePolicies $resource_policies
* Resource policies for this managed instance group.
* @type bool $satisfies_pzi
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
* @type bool $satisfies_pzs
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
* @type string $self_link
- * [Output Only] The URL for this managed instance group. The server defines
+ * Output only. [Output Only] The URL for this managed instance group. The server defines
* this URL.
* @type \Google\Cloud\Compute\V1\InstanceGroupManagerStandbyPolicy $standby_policy
* Standby policy for stopped and suspended instances.
* @type \Google\Cloud\Compute\V1\StatefulPolicy $stateful_policy
* Stateful configuration for this Instanced Group Manager
* @type \Google\Cloud\Compute\V1\InstanceGroupManagerStatus $status
- * [Output Only] The status of this managed instance group.
+ * Output only. [Output Only] The status of this managed instance group.
* @type array|\Google\Protobuf\Internal\RepeatedField $target_pools
* The URLs for all TargetPool resources to which instances in theinstanceGroup field are added. The target pools automatically
* apply to all of the instances in the managed instance group.
@@ -397,7 +397,7 @@ class InstanceGroupManager extends \Google\Protobuf\Internal\Message
* remaining instances. For more information, read aboutcanary
* updates.
* @type string $zone
- * [Output Only] The URL of azone
+ * Output only. [Output Only] The URL of azone
* where the managed instance group is located (for zonal resources).
* }
*/
@@ -529,7 +529,7 @@ public function setBaseInstanceName($var)
}
/**
- * [Output Only] The creation timestamp for this managed instance group inRFC3339
+ * Output only. [Output Only] The creation timestamp for this managed instance group inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -551,7 +551,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] The creation timestamp for this managed instance group inRFC3339
+ * Output only. [Output Only] The creation timestamp for this managed instance group inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -567,7 +567,7 @@ public function setCreationTimestamp($var)
}
/**
- * [Output Only] The list of instance actions and the number of instances
+ * Output only. [Output Only] The list of instance actions and the number of instances
* in this managed instance group that are scheduled for each of those
* actions.
*
@@ -590,7 +590,7 @@ public function clearCurrentActions()
}
/**
- * [Output Only] The list of instance actions and the number of instances
+ * Output only. [Output Only] The list of instance actions and the number of instances
* in this managed instance group that are scheduled for each of those
* actions.
*
@@ -727,7 +727,7 @@ public function setFingerprint($var)
}
/**
- * [Output Only] A unique identifier for this resource type. The server
+ * Output only. [Output Only] A unique identifier for this resource type. The server
* generates this identifier.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -749,7 +749,7 @@ public function clearId()
}
/**
- * [Output Only] A unique identifier for this resource type. The server
+ * Output only. [Output Only] A unique identifier for this resource type. The server
* generates this identifier.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -807,7 +807,7 @@ public function setInstanceFlexibilityPolicy($var)
}
/**
- * [Output Only] The URL of the Instance Group resource.
+ * Output only. [Output Only] The URL of the Instance Group resource.
*
* Generated from protobuf field optional string instance_group = 81095253;
* @return string
@@ -828,7 +828,7 @@ public function clearInstanceGroup()
}
/**
- * [Output Only] The URL of the Instance Group resource.
+ * Output only. [Output Only] The URL of the Instance Group resource.
*
* Generated from protobuf field optional string instance_group = 81095253;
* @param string $var
@@ -921,7 +921,7 @@ public function setInstanceTemplate($var)
}
/**
- * [Output Only] The resource type, which is alwayscompute#instanceGroupManager for managed instance groups.
+ * Output only. [Output Only] The resource type, which is alwayscompute#instanceGroupManager for managed instance groups.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -942,7 +942,7 @@ public function clearKind()
}
/**
- * [Output Only] The resource type, which is alwayscompute#instanceGroupManager for managed instance groups.
+ * Output only. [Output Only] The resource type, which is alwayscompute#instanceGroupManager for managed instance groups.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -1063,7 +1063,7 @@ public function setNamedPorts($var)
}
/**
- * [Output Only] The URL of theregion
+ * Output only. [Output Only] The URL of theregion
* where the managed instance group resides (for regional resources).
*
* Generated from protobuf field optional string region = 138946292;
@@ -1085,7 +1085,7 @@ public function clearRegion()
}
/**
- * [Output Only] The URL of theregion
+ * Output only. [Output Only] The URL of theregion
* where the managed instance group resides (for regional resources).
*
* Generated from protobuf field optional string region = 138946292;
@@ -1137,7 +1137,7 @@ public function setResourcePolicies($var)
}
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool satisfies_pzi = 480964257;
* @return bool
@@ -1158,7 +1158,7 @@ public function clearSatisfiesPzi()
}
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool satisfies_pzi = 480964257;
* @param bool $var
@@ -1173,7 +1173,7 @@ public function setSatisfiesPzi($var)
}
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool satisfies_pzs = 480964267;
* @return bool
@@ -1194,7 +1194,7 @@ public function clearSatisfiesPzs()
}
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool satisfies_pzs = 480964267;
* @param bool $var
@@ -1209,7 +1209,7 @@ public function setSatisfiesPzs($var)
}
/**
- * [Output Only] The URL for this managed instance group. The server defines
+ * Output only. [Output Only] The URL for this managed instance group. The server defines
* this URL.
*
* Generated from protobuf field optional string self_link = 456214797;
@@ -1231,7 +1231,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] The URL for this managed instance group. The server defines
+ * Output only. [Output Only] The URL for this managed instance group. The server defines
* this URL.
*
* Generated from protobuf field optional string self_link = 456214797;
@@ -1319,7 +1319,7 @@ public function setStatefulPolicy($var)
}
/**
- * [Output Only] The status of this managed instance group.
+ * Output only. [Output Only] The status of this managed instance group.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InstanceGroupManagerStatus status = 181260274;
* @return \Google\Cloud\Compute\V1\InstanceGroupManagerStatus|null
@@ -1340,7 +1340,7 @@ public function clearStatus()
}
/**
- * [Output Only] The status of this managed instance group.
+ * Output only. [Output Only] The status of this managed instance group.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InstanceGroupManagerStatus status = 181260274;
* @param \Google\Cloud\Compute\V1\InstanceGroupManagerStatus $var
@@ -1597,7 +1597,7 @@ public function setVersions($var)
}
/**
- * [Output Only] The URL of azone
+ * Output only. [Output Only] The URL of azone
* where the managed instance group is located (for zonal resources).
*
* Generated from protobuf field optional string zone = 3744684;
@@ -1619,7 +1619,7 @@ public function clearZone()
}
/**
- * [Output Only] The URL of azone
+ * Output only. [Output Only] The URL of azone
* where the managed instance group is located (for zonal resources).
*
* Generated from protobuf field optional string zone = 3744684;
diff --git a/Compute/src/V1/InstanceGroupManagerActionsSummary.php b/Compute/src/V1/InstanceGroupManagerActionsSummary.php
index 94918063b19d..5aa6626ff0ed 100644
--- a/Compute/src/V1/InstanceGroupManagerActionsSummary.php
+++ b/Compute/src/V1/InstanceGroupManagerActionsSummary.php
@@ -15,7 +15,7 @@
class InstanceGroupManagerActionsSummary extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] The total number of instances in the managed instance group
+ * Output only. [Output Only] The total number of instances in the managed instance group
* that are scheduled to be abandoned. Abandoning an instance removes it
* from the managed instance group without deleting it.
*
@@ -23,7 +23,7 @@ class InstanceGroupManagerActionsSummary extends \Google\Protobuf\Internal\Messa
*/
protected $abandoning = null;
/**
- * [Output Only] The number of instances in the managed instance group that
+ * Output only. [Output Only] The number of instances in the managed instance group that
* are scheduled to be created or are currently being created. If the group
* fails to create any of these instances, it tries again until it creates
* the instance successfully.
@@ -34,7 +34,7 @@ class InstanceGroupManagerActionsSummary extends \Google\Protobuf\Internal\Messa
*/
protected $creating = null;
/**
- * [Output Only] The number of instances that the managed instance group
+ * Output only. [Output Only] The number of instances that the managed instance group
* will attempt to create. The group attempts to create each instance
* only once. If the group fails to create any of these instances, it
* decreases the group's targetSize value accordingly.
@@ -43,21 +43,21 @@ class InstanceGroupManagerActionsSummary extends \Google\Protobuf\Internal\Messa
*/
protected $creating_without_retries = null;
/**
- * [Output Only] The number of instances in the managed instance group that
+ * Output only. [Output Only] The number of instances in the managed instance group that
* are scheduled to be deleted or are currently being deleted.
*
* Generated from protobuf field optional int32 deleting = 282846120;
*/
protected $deleting = null;
/**
- * [Output Only] The number of instances in the managed instance group that
+ * Output only. [Output Only] The number of instances in the managed instance group that
* are running and have no scheduled actions.
*
* Generated from protobuf field optional int32 none = 3387192;
*/
protected $none = null;
/**
- * [Output Only] The number of instances in the managed instance group that
+ * Output only. [Output Only] The number of instances in the managed instance group that
* are scheduled to be recreated or are currently being being recreated.
* Recreating an instance deletes the existing root persistent disk
* and creates a new disk from the image that is defined in the
@@ -67,7 +67,7 @@ class InstanceGroupManagerActionsSummary extends \Google\Protobuf\Internal\Messa
*/
protected $recreating = null;
/**
- * [Output Only] The number of instances in the managed instance group that
+ * Output only. [Output Only] The number of instances in the managed instance group that
* are being reconfigured with properties that do not require a restart
* or a recreate action. For example, setting or removing target
* pools for the instance.
@@ -76,42 +76,42 @@ class InstanceGroupManagerActionsSummary extends \Google\Protobuf\Internal\Messa
*/
protected $refreshing = null;
/**
- * [Output Only] The number of instances in the managed instance group that
+ * Output only. [Output Only] The number of instances in the managed instance group that
* are scheduled to be restarted or are currently being restarted.
*
* Generated from protobuf field optional int32 restarting = 372312947;
*/
protected $restarting = null;
/**
- * [Output Only] The number of instances in the managed instance group that
+ * Output only. [Output Only] The number of instances in the managed instance group that
* are scheduled to be resumed or are currently being resumed.
*
* Generated from protobuf field optional int32 resuming = 201100714;
*/
protected $resuming = null;
/**
- * [Output Only] The number of instances in the managed instance group that
+ * Output only. [Output Only] The number of instances in the managed instance group that
* are scheduled to be started or are currently being started.
*
* Generated from protobuf field optional int32 starting = 243064896;
*/
protected $starting = null;
/**
- * [Output Only] The number of instances in the managed instance group that
+ * Output only. [Output Only] The number of instances in the managed instance group that
* are scheduled to be stopped or are currently being stopped.
*
* Generated from protobuf field optional int32 stopping = 105035892;
*/
protected $stopping = null;
/**
- * [Output Only] The number of instances in the managed instance group that
+ * Output only. [Output Only] The number of instances in the managed instance group that
* are scheduled to be suspended or are currently being suspended.
*
* Generated from protobuf field optional int32 suspending = 29113894;
*/
protected $suspending = null;
/**
- * [Output Only] The number of instances in the managed instance group that
+ * Output only. [Output Only] The number of instances in the managed instance group that
* are being verified. See the managedInstances[].currentAction
* property in the listManagedInstances method documentation.
*
@@ -126,55 +126,55 @@ class InstanceGroupManagerActionsSummary extends \Google\Protobuf\Internal\Messa
* Optional. Data for populating the Message object.
*
* @type int $abandoning
- * [Output Only] The total number of instances in the managed instance group
+ * Output only. [Output Only] The total number of instances in the managed instance group
* that are scheduled to be abandoned. Abandoning an instance removes it
* from the managed instance group without deleting it.
* @type int $creating
- * [Output Only] The number of instances in the managed instance group that
+ * Output only. [Output Only] The number of instances in the managed instance group that
* are scheduled to be created or are currently being created. If the group
* fails to create any of these instances, it tries again until it creates
* the instance successfully.
* If you have disabled creation retries, this field will not be populated;
* instead, the creatingWithoutRetries field will be populated.
* @type int $creating_without_retries
- * [Output Only] The number of instances that the managed instance group
+ * Output only. [Output Only] The number of instances that the managed instance group
* will attempt to create. The group attempts to create each instance
* only once. If the group fails to create any of these instances, it
* decreases the group's targetSize value accordingly.
* @type int $deleting
- * [Output Only] The number of instances in the managed instance group that
+ * Output only. [Output Only] The number of instances in the managed instance group that
* are scheduled to be deleted or are currently being deleted.
* @type int $none
- * [Output Only] The number of instances in the managed instance group that
+ * Output only. [Output Only] The number of instances in the managed instance group that
* are running and have no scheduled actions.
* @type int $recreating
- * [Output Only] The number of instances in the managed instance group that
+ * Output only. [Output Only] The number of instances in the managed instance group that
* are scheduled to be recreated or are currently being being recreated.
* Recreating an instance deletes the existing root persistent disk
* and creates a new disk from the image that is defined in the
* instance template.
* @type int $refreshing
- * [Output Only] The number of instances in the managed instance group that
+ * Output only. [Output Only] The number of instances in the managed instance group that
* are being reconfigured with properties that do not require a restart
* or a recreate action. For example, setting or removing target
* pools for the instance.
* @type int $restarting
- * [Output Only] The number of instances in the managed instance group that
+ * Output only. [Output Only] The number of instances in the managed instance group that
* are scheduled to be restarted or are currently being restarted.
* @type int $resuming
- * [Output Only] The number of instances in the managed instance group that
+ * Output only. [Output Only] The number of instances in the managed instance group that
* are scheduled to be resumed or are currently being resumed.
* @type int $starting
- * [Output Only] The number of instances in the managed instance group that
+ * Output only. [Output Only] The number of instances in the managed instance group that
* are scheduled to be started or are currently being started.
* @type int $stopping
- * [Output Only] The number of instances in the managed instance group that
+ * Output only. [Output Only] The number of instances in the managed instance group that
* are scheduled to be stopped or are currently being stopped.
* @type int $suspending
- * [Output Only] The number of instances in the managed instance group that
+ * Output only. [Output Only] The number of instances in the managed instance group that
* are scheduled to be suspended or are currently being suspended.
* @type int $verifying
- * [Output Only] The number of instances in the managed instance group that
+ * Output only. [Output Only] The number of instances in the managed instance group that
* are being verified. See the managedInstances[].currentAction
* property in the listManagedInstances method documentation.
* }
@@ -185,7 +185,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] The total number of instances in the managed instance group
+ * Output only. [Output Only] The total number of instances in the managed instance group
* that are scheduled to be abandoned. Abandoning an instance removes it
* from the managed instance group without deleting it.
*
@@ -208,7 +208,7 @@ public function clearAbandoning()
}
/**
- * [Output Only] The total number of instances in the managed instance group
+ * Output only. [Output Only] The total number of instances in the managed instance group
* that are scheduled to be abandoned. Abandoning an instance removes it
* from the managed instance group without deleting it.
*
@@ -225,7 +225,7 @@ public function setAbandoning($var)
}
/**
- * [Output Only] The number of instances in the managed instance group that
+ * Output only. [Output Only] The number of instances in the managed instance group that
* are scheduled to be created or are currently being created. If the group
* fails to create any of these instances, it tries again until it creates
* the instance successfully.
@@ -251,7 +251,7 @@ public function clearCreating()
}
/**
- * [Output Only] The number of instances in the managed instance group that
+ * Output only. [Output Only] The number of instances in the managed instance group that
* are scheduled to be created or are currently being created. If the group
* fails to create any of these instances, it tries again until it creates
* the instance successfully.
@@ -271,7 +271,7 @@ public function setCreating($var)
}
/**
- * [Output Only] The number of instances that the managed instance group
+ * Output only. [Output Only] The number of instances that the managed instance group
* will attempt to create. The group attempts to create each instance
* only once. If the group fails to create any of these instances, it
* decreases the group's targetSize value accordingly.
@@ -295,7 +295,7 @@ public function clearCreatingWithoutRetries()
}
/**
- * [Output Only] The number of instances that the managed instance group
+ * Output only. [Output Only] The number of instances that the managed instance group
* will attempt to create. The group attempts to create each instance
* only once. If the group fails to create any of these instances, it
* decreases the group's targetSize value accordingly.
@@ -313,7 +313,7 @@ public function setCreatingWithoutRetries($var)
}
/**
- * [Output Only] The number of instances in the managed instance group that
+ * Output only. [Output Only] The number of instances in the managed instance group that
* are scheduled to be deleted or are currently being deleted.
*
* Generated from protobuf field optional int32 deleting = 282846120;
@@ -335,7 +335,7 @@ public function clearDeleting()
}
/**
- * [Output Only] The number of instances in the managed instance group that
+ * Output only. [Output Only] The number of instances in the managed instance group that
* are scheduled to be deleted or are currently being deleted.
*
* Generated from protobuf field optional int32 deleting = 282846120;
@@ -351,7 +351,7 @@ public function setDeleting($var)
}
/**
- * [Output Only] The number of instances in the managed instance group that
+ * Output only. [Output Only] The number of instances in the managed instance group that
* are running and have no scheduled actions.
*
* Generated from protobuf field optional int32 none = 3387192;
@@ -373,7 +373,7 @@ public function clearNone()
}
/**
- * [Output Only] The number of instances in the managed instance group that
+ * Output only. [Output Only] The number of instances in the managed instance group that
* are running and have no scheduled actions.
*
* Generated from protobuf field optional int32 none = 3387192;
@@ -389,7 +389,7 @@ public function setNone($var)
}
/**
- * [Output Only] The number of instances in the managed instance group that
+ * Output only. [Output Only] The number of instances in the managed instance group that
* are scheduled to be recreated or are currently being being recreated.
* Recreating an instance deletes the existing root persistent disk
* and creates a new disk from the image that is defined in the
@@ -414,7 +414,7 @@ public function clearRecreating()
}
/**
- * [Output Only] The number of instances in the managed instance group that
+ * Output only. [Output Only] The number of instances in the managed instance group that
* are scheduled to be recreated or are currently being being recreated.
* Recreating an instance deletes the existing root persistent disk
* and creates a new disk from the image that is defined in the
@@ -433,7 +433,7 @@ public function setRecreating($var)
}
/**
- * [Output Only] The number of instances in the managed instance group that
+ * Output only. [Output Only] The number of instances in the managed instance group that
* are being reconfigured with properties that do not require a restart
* or a recreate action. For example, setting or removing target
* pools for the instance.
@@ -457,7 +457,7 @@ public function clearRefreshing()
}
/**
- * [Output Only] The number of instances in the managed instance group that
+ * Output only. [Output Only] The number of instances in the managed instance group that
* are being reconfigured with properties that do not require a restart
* or a recreate action. For example, setting or removing target
* pools for the instance.
@@ -475,7 +475,7 @@ public function setRefreshing($var)
}
/**
- * [Output Only] The number of instances in the managed instance group that
+ * Output only. [Output Only] The number of instances in the managed instance group that
* are scheduled to be restarted or are currently being restarted.
*
* Generated from protobuf field optional int32 restarting = 372312947;
@@ -497,7 +497,7 @@ public function clearRestarting()
}
/**
- * [Output Only] The number of instances in the managed instance group that
+ * Output only. [Output Only] The number of instances in the managed instance group that
* are scheduled to be restarted or are currently being restarted.
*
* Generated from protobuf field optional int32 restarting = 372312947;
@@ -513,7 +513,7 @@ public function setRestarting($var)
}
/**
- * [Output Only] The number of instances in the managed instance group that
+ * Output only. [Output Only] The number of instances in the managed instance group that
* are scheduled to be resumed or are currently being resumed.
*
* Generated from protobuf field optional int32 resuming = 201100714;
@@ -535,7 +535,7 @@ public function clearResuming()
}
/**
- * [Output Only] The number of instances in the managed instance group that
+ * Output only. [Output Only] The number of instances in the managed instance group that
* are scheduled to be resumed or are currently being resumed.
*
* Generated from protobuf field optional int32 resuming = 201100714;
@@ -551,7 +551,7 @@ public function setResuming($var)
}
/**
- * [Output Only] The number of instances in the managed instance group that
+ * Output only. [Output Only] The number of instances in the managed instance group that
* are scheduled to be started or are currently being started.
*
* Generated from protobuf field optional int32 starting = 243064896;
@@ -573,7 +573,7 @@ public function clearStarting()
}
/**
- * [Output Only] The number of instances in the managed instance group that
+ * Output only. [Output Only] The number of instances in the managed instance group that
* are scheduled to be started or are currently being started.
*
* Generated from protobuf field optional int32 starting = 243064896;
@@ -589,7 +589,7 @@ public function setStarting($var)
}
/**
- * [Output Only] The number of instances in the managed instance group that
+ * Output only. [Output Only] The number of instances in the managed instance group that
* are scheduled to be stopped or are currently being stopped.
*
* Generated from protobuf field optional int32 stopping = 105035892;
@@ -611,7 +611,7 @@ public function clearStopping()
}
/**
- * [Output Only] The number of instances in the managed instance group that
+ * Output only. [Output Only] The number of instances in the managed instance group that
* are scheduled to be stopped or are currently being stopped.
*
* Generated from protobuf field optional int32 stopping = 105035892;
@@ -627,7 +627,7 @@ public function setStopping($var)
}
/**
- * [Output Only] The number of instances in the managed instance group that
+ * Output only. [Output Only] The number of instances in the managed instance group that
* are scheduled to be suspended or are currently being suspended.
*
* Generated from protobuf field optional int32 suspending = 29113894;
@@ -649,7 +649,7 @@ public function clearSuspending()
}
/**
- * [Output Only] The number of instances in the managed instance group that
+ * Output only. [Output Only] The number of instances in the managed instance group that
* are scheduled to be suspended or are currently being suspended.
*
* Generated from protobuf field optional int32 suspending = 29113894;
@@ -665,7 +665,7 @@ public function setSuspending($var)
}
/**
- * [Output Only] The number of instances in the managed instance group that
+ * Output only. [Output Only] The number of instances in the managed instance group that
* are being verified. See the managedInstances[].currentAction
* property in the listManagedInstances method documentation.
*
@@ -688,7 +688,7 @@ public function clearVerifying()
}
/**
- * [Output Only] The number of instances in the managed instance group that
+ * Output only. [Output Only] The number of instances in the managed instance group that
* are being verified. See the managedInstances[].currentAction
* property in the listManagedInstances method documentation.
*
diff --git a/Compute/src/V1/InstanceGroupManagerAggregatedList.php b/Compute/src/V1/InstanceGroupManagerAggregatedList.php
index 4232f50ca66d..86d61fd9e5be 100644
--- a/Compute/src/V1/InstanceGroupManagerAggregatedList.php
+++ b/Compute/src/V1/InstanceGroupManagerAggregatedList.php
@@ -15,7 +15,7 @@
class InstanceGroupManagerAggregatedList extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
*
* Generated from protobuf field optional string id = 3355;
*/
@@ -27,14 +27,14 @@ class InstanceGroupManagerAggregatedList extends \Google\Protobuf\Internal\Messa
*/
private $items;
/**
- * [Output Only] The resource type, which is alwayscompute#instanceGroupManagerAggregatedList for an aggregated
+ * Output only. [Output Only] The resource type, which is alwayscompute#instanceGroupManagerAggregatedList for an aggregated
* list of managed instance groups.
*
* Generated from protobuf field optional string kind = 3292052;
*/
protected $kind = null;
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -44,19 +44,19 @@ class InstanceGroupManagerAggregatedList extends \Google\Protobuf\Internal\Messa
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
private $unreachables;
/**
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
*/
@@ -69,24 +69,24 @@ class InstanceGroupManagerAggregatedList extends \Google\Protobuf\Internal\Messa
* Optional. Data for populating the Message object.
*
* @type string $id
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
* @type array|\Google\Protobuf\Internal\MapField $items
* A list of InstanceGroupManagersScopedList resources.
* @type string $kind
- * [Output Only] The resource type, which is alwayscompute#instanceGroupManagerAggregatedList for an aggregated
+ * Output only. [Output Only] The resource type, which is alwayscompute#instanceGroupManagerAggregatedList for an aggregated
* list of managed instance groups.
* @type string $next_page_token
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* @type \Google\Cloud\Compute\V1\Warning $warning
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
* }
*/
public function __construct($data = NULL) {
@@ -95,7 +95,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
*
* Generated from protobuf field optional string id = 3355;
* @return string
@@ -116,7 +116,7 @@ public function clearId()
}
/**
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
*
* Generated from protobuf field optional string id = 3355;
* @param string $var
@@ -157,7 +157,7 @@ public function setItems($var)
}
/**
- * [Output Only] The resource type, which is alwayscompute#instanceGroupManagerAggregatedList for an aggregated
+ * Output only. [Output Only] The resource type, which is alwayscompute#instanceGroupManagerAggregatedList for an aggregated
* list of managed instance groups.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -179,7 +179,7 @@ public function clearKind()
}
/**
- * [Output Only] The resource type, which is alwayscompute#instanceGroupManagerAggregatedList for an aggregated
+ * Output only. [Output Only] The resource type, which is alwayscompute#instanceGroupManagerAggregatedList for an aggregated
* list of managed instance groups.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -195,7 +195,7 @@ public function setKind($var)
}
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -220,7 +220,7 @@ public function clearNextPageToken()
}
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -239,7 +239,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -260,7 +260,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -275,7 +275,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -286,7 +286,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
@@ -301,7 +301,7 @@ public function setUnreachables($var)
}
/**
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
* @return \Google\Cloud\Compute\V1\Warning|null
@@ -322,7 +322,7 @@ public function clearWarning()
}
/**
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
* @param \Google\Cloud\Compute\V1\Warning $var
diff --git a/Compute/src/V1/InstanceGroupManagerList.php b/Compute/src/V1/InstanceGroupManagerList.php
index efa432998d3a..9366a22a696b 100644
--- a/Compute/src/V1/InstanceGroupManagerList.php
+++ b/Compute/src/V1/InstanceGroupManagerList.php
@@ -16,7 +16,7 @@
class InstanceGroupManagerList extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
*
* Generated from protobuf field optional string id = 3355;
*/
@@ -28,14 +28,14 @@ class InstanceGroupManagerList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] The resource type, which is always
+ * Output only. [Output Only] The resource type, which is always
* compute#instanceGroupManagerList for a list of managed instance groups.
*
* Generated from protobuf field optional string kind = 3292052;
*/
protected $kind = null;
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -45,13 +45,13 @@ class InstanceGroupManagerList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
*/
@@ -64,22 +64,22 @@ class InstanceGroupManagerList extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $id
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
* @type array<\Google\Cloud\Compute\V1\InstanceGroupManager>|\Google\Protobuf\Internal\RepeatedField $items
* A list of InstanceGroupManager resources.
* @type string $kind
- * [Output Only] The resource type, which is always
+ * Output only. [Output Only] The resource type, which is always
* compute#instanceGroupManagerList for a list of managed instance groups.
* @type string $next_page_token
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
* }
*/
public function __construct($data = NULL) {
@@ -88,7 +88,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
*
* Generated from protobuf field optional string id = 3355;
* @return string
@@ -109,7 +109,7 @@ public function clearId()
}
/**
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
*
* Generated from protobuf field optional string id = 3355;
* @param string $var
@@ -150,7 +150,7 @@ public function setItems($var)
}
/**
- * [Output Only] The resource type, which is always
+ * Output only. [Output Only] The resource type, which is always
* compute#instanceGroupManagerList for a list of managed instance groups.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -172,7 +172,7 @@ public function clearKind()
}
/**
- * [Output Only] The resource type, which is always
+ * Output only. [Output Only] The resource type, which is always
* compute#instanceGroupManagerList for a list of managed instance groups.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -188,7 +188,7 @@ public function setKind($var)
}
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -213,7 +213,7 @@ public function clearNextPageToken()
}
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -232,7 +232,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -253,7 +253,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -268,7 +268,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
* @return \Google\Cloud\Compute\V1\Warning|null
@@ -289,7 +289,7 @@ public function clearWarning()
}
/**
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
* @param \Google\Cloud\Compute\V1\Warning $var
diff --git a/Compute/src/V1/InstanceGroupManagerResizeRequest.php b/Compute/src/V1/InstanceGroupManagerResizeRequest.php
index 8be058234f70..600eb81f0a1f 100644
--- a/Compute/src/V1/InstanceGroupManagerResizeRequest.php
+++ b/Compute/src/V1/InstanceGroupManagerResizeRequest.php
@@ -20,7 +20,7 @@
class InstanceGroupManagerResizeRequest extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] The creation timestamp for this resize request inRFC3339
+ * Output only. [Output Only] The creation timestamp for this resize request inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -33,14 +33,14 @@ class InstanceGroupManagerResizeRequest extends \Google\Protobuf\Internal\Messag
*/
protected $description = null;
/**
- * [Output Only] A unique identifier for this resource type. The server
+ * Output only. [Output Only] A unique identifier for this resource type. The server
* generates this identifier.
*
* Generated from protobuf field optional uint64 id = 3355;
*/
protected $id = null;
/**
- * [Output Only] The resource type, which is alwayscompute#instanceGroupManagerResizeRequest for
+ * Output only. [Output Only] The resource type, which is alwayscompute#instanceGroupManagerResizeRequest for
* resize requests.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -69,33 +69,33 @@ class InstanceGroupManagerResizeRequest extends \Google\Protobuf\Internal\Messag
*/
protected $resize_by = null;
/**
- * [Output Only] The URL for this resize request. The server defines
+ * Output only. [Output Only] The URL for this resize request. The server defines
* this URL.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Server-defined URL for this resource with the resource id.
+ * Output only. [Output Only] Server-defined URL for this resource with the resource id.
*
* Generated from protobuf field optional string self_link_with_id = 44520962;
*/
protected $self_link_with_id = null;
/**
- * [Output only] Current state of the request.
+ * Output only. [Output only] Current state of the request.
* Check the State enum for the list of possible values.
*
* Generated from protobuf field optional string state = 109757585;
*/
protected $state = null;
/**
- * [Output only] Status of the request.
+ * Output only. [Output only] Status of the request.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InstanceGroupManagerResizeRequestStatus status = 181260274;
*/
protected $status = null;
/**
- * [Output Only] The URL of azone
+ * Output only. [Output Only] The URL of azone
* where the resize request is located. Populated only for zonal resize
* requests.
*
@@ -110,15 +110,15 @@ class InstanceGroupManagerResizeRequest extends \Google\Protobuf\Internal\Messag
* Optional. Data for populating the Message object.
*
* @type string $creation_timestamp
- * [Output Only] The creation timestamp for this resize request inRFC3339
+ * Output only. [Output Only] The creation timestamp for this resize request inRFC3339
* text format.
* @type string $description
* An optional description of this resource.
* @type int|string $id
- * [Output Only] A unique identifier for this resource type. The server
+ * Output only. [Output Only] A unique identifier for this resource type. The server
* generates this identifier.
* @type string $kind
- * [Output Only] The resource type, which is alwayscompute#instanceGroupManagerResizeRequest for
+ * Output only. [Output Only] The resource type, which is alwayscompute#instanceGroupManagerResizeRequest for
* resize requests.
* @type string $name
* The name of this resize request. The name must be 1-63 characters
@@ -131,17 +131,17 @@ class InstanceGroupManagerResizeRequest extends \Google\Protobuf\Internal\Messag
* target size will be increased by this number. This field cannot be used
* together with 'instances'.
* @type string $self_link
- * [Output Only] The URL for this resize request. The server defines
+ * Output only. [Output Only] The URL for this resize request. The server defines
* this URL.
* @type string $self_link_with_id
- * [Output Only] Server-defined URL for this resource with the resource id.
+ * Output only. [Output Only] Server-defined URL for this resource with the resource id.
* @type string $state
- * [Output only] Current state of the request.
+ * Output only. [Output only] Current state of the request.
* Check the State enum for the list of possible values.
* @type \Google\Cloud\Compute\V1\InstanceGroupManagerResizeRequestStatus $status
- * [Output only] Status of the request.
+ * Output only. [Output only] Status of the request.
* @type string $zone
- * [Output Only] The URL of azone
+ * Output only. [Output Only] The URL of azone
* where the resize request is located. Populated only for zonal resize
* requests.
* }
@@ -152,7 +152,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] The creation timestamp for this resize request inRFC3339
+ * Output only. [Output Only] The creation timestamp for this resize request inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -174,7 +174,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] The creation timestamp for this resize request inRFC3339
+ * Output only. [Output Only] The creation timestamp for this resize request inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -226,7 +226,7 @@ public function setDescription($var)
}
/**
- * [Output Only] A unique identifier for this resource type. The server
+ * Output only. [Output Only] A unique identifier for this resource type. The server
* generates this identifier.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -248,7 +248,7 @@ public function clearId()
}
/**
- * [Output Only] A unique identifier for this resource type. The server
+ * Output only. [Output Only] A unique identifier for this resource type. The server
* generates this identifier.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -264,7 +264,7 @@ public function setId($var)
}
/**
- * [Output Only] The resource type, which is alwayscompute#instanceGroupManagerResizeRequest for
+ * Output only. [Output Only] The resource type, which is alwayscompute#instanceGroupManagerResizeRequest for
* resize requests.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -286,7 +286,7 @@ public function clearKind()
}
/**
- * [Output Only] The resource type, which is alwayscompute#instanceGroupManagerResizeRequest for
+ * Output only. [Output Only] The resource type, which is alwayscompute#instanceGroupManagerResizeRequest for
* resize requests.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -418,7 +418,7 @@ public function setResizeBy($var)
}
/**
- * [Output Only] The URL for this resize request. The server defines
+ * Output only. [Output Only] The URL for this resize request. The server defines
* this URL.
*
* Generated from protobuf field optional string self_link = 456214797;
@@ -440,7 +440,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] The URL for this resize request. The server defines
+ * Output only. [Output Only] The URL for this resize request. The server defines
* this URL.
*
* Generated from protobuf field optional string self_link = 456214797;
@@ -456,7 +456,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Server-defined URL for this resource with the resource id.
+ * Output only. [Output Only] Server-defined URL for this resource with the resource id.
*
* Generated from protobuf field optional string self_link_with_id = 44520962;
* @return string
@@ -477,7 +477,7 @@ public function clearSelfLinkWithId()
}
/**
- * [Output Only] Server-defined URL for this resource with the resource id.
+ * Output only. [Output Only] Server-defined URL for this resource with the resource id.
*
* Generated from protobuf field optional string self_link_with_id = 44520962;
* @param string $var
@@ -492,7 +492,7 @@ public function setSelfLinkWithId($var)
}
/**
- * [Output only] Current state of the request.
+ * Output only. [Output only] Current state of the request.
* Check the State enum for the list of possible values.
*
* Generated from protobuf field optional string state = 109757585;
@@ -514,7 +514,7 @@ public function clearState()
}
/**
- * [Output only] Current state of the request.
+ * Output only. [Output only] Current state of the request.
* Check the State enum for the list of possible values.
*
* Generated from protobuf field optional string state = 109757585;
@@ -530,7 +530,7 @@ public function setState($var)
}
/**
- * [Output only] Status of the request.
+ * Output only. [Output only] Status of the request.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InstanceGroupManagerResizeRequestStatus status = 181260274;
* @return \Google\Cloud\Compute\V1\InstanceGroupManagerResizeRequestStatus|null
@@ -551,7 +551,7 @@ public function clearStatus()
}
/**
- * [Output only] Status of the request.
+ * Output only. [Output only] Status of the request.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InstanceGroupManagerResizeRequestStatus status = 181260274;
* @param \Google\Cloud\Compute\V1\InstanceGroupManagerResizeRequestStatus $var
@@ -566,7 +566,7 @@ public function setStatus($var)
}
/**
- * [Output Only] The URL of azone
+ * Output only. [Output Only] The URL of azone
* where the resize request is located. Populated only for zonal resize
* requests.
*
@@ -589,7 +589,7 @@ public function clearZone()
}
/**
- * [Output Only] The URL of azone
+ * Output only. [Output Only] The URL of azone
* where the resize request is located. Populated only for zonal resize
* requests.
*
diff --git a/Compute/src/V1/InstanceGroupManagerResizeRequest/State.php b/Compute/src/V1/InstanceGroupManagerResizeRequest/State.php
index 8d05828555fe..b97e9ae79295 100644
--- a/Compute/src/V1/InstanceGroupManagerResizeRequest/State.php
+++ b/Compute/src/V1/InstanceGroupManagerResizeRequest/State.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output only] Current state of the request.
+ * Output only. [Output only] Current state of the request.
*
* Protobuf type google.cloud.compute.v1.InstanceGroupManagerResizeRequest.State
*/
diff --git a/Compute/src/V1/InstanceGroupManagerResizeRequestStatus.php b/Compute/src/V1/InstanceGroupManagerResizeRequestStatus.php
index eb6f05020e77..787958b1a673 100644
--- a/Compute/src/V1/InstanceGroupManagerResizeRequestStatus.php
+++ b/Compute/src/V1/InstanceGroupManagerResizeRequestStatus.php
@@ -15,7 +15,7 @@
class InstanceGroupManagerResizeRequestStatus extends \Google\Protobuf\Internal\Message
{
/**
- * [Output only] Fatal errors encountered during the queueing or
+ * Output only. [Output only] Fatal errors encountered during the queueing or
* provisioning phases of the ResizeRequest that caused the transition to
* the FAILED state. Contrary to the last_attempt errors, this field is
* final and errors are never removed from here, as the ResizeRequest is not
@@ -25,7 +25,7 @@ class InstanceGroupManagerResizeRequestStatus extends \Google\Protobuf\Internal\
*/
protected $error = null;
/**
- * [Output only] Information about the last attempt to fulfill the request.
+ * Output only. [Output only] Information about the last attempt to fulfill the request.
* The value is temporary since the ResizeRequest can retry, as long as it's
* still active and the last attempt value can either be cleared or replaced
* with a different error. Since ResizeRequest retries infrequently, the
@@ -45,13 +45,13 @@ class InstanceGroupManagerResizeRequestStatus extends \Google\Protobuf\Internal\
* Optional. Data for populating the Message object.
*
* @type \Google\Cloud\Compute\V1\Error $error
- * [Output only] Fatal errors encountered during the queueing or
+ * Output only. [Output only] Fatal errors encountered during the queueing or
* provisioning phases of the ResizeRequest that caused the transition to
* the FAILED state. Contrary to the last_attempt errors, this field is
* final and errors are never removed from here, as the ResizeRequest is not
* going to retry.
* @type \Google\Cloud\Compute\V1\InstanceGroupManagerResizeRequestStatusLastAttempt $last_attempt
- * [Output only] Information about the last attempt to fulfill the request.
+ * Output only. [Output only] Information about the last attempt to fulfill the request.
* The value is temporary since the ResizeRequest can retry, as long as it's
* still active and the last attempt value can either be cleared or replaced
* with a different error. Since ResizeRequest retries infrequently, the
@@ -67,7 +67,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output only] Fatal errors encountered during the queueing or
+ * Output only. [Output only] Fatal errors encountered during the queueing or
* provisioning phases of the ResizeRequest that caused the transition to
* the FAILED state. Contrary to the last_attempt errors, this field is
* final and errors are never removed from here, as the ResizeRequest is not
@@ -92,7 +92,7 @@ public function clearError()
}
/**
- * [Output only] Fatal errors encountered during the queueing or
+ * Output only. [Output only] Fatal errors encountered during the queueing or
* provisioning phases of the ResizeRequest that caused the transition to
* the FAILED state. Contrary to the last_attempt errors, this field is
* final and errors are never removed from here, as the ResizeRequest is not
@@ -111,7 +111,7 @@ public function setError($var)
}
/**
- * [Output only] Information about the last attempt to fulfill the request.
+ * Output only. [Output only] Information about the last attempt to fulfill the request.
* The value is temporary since the ResizeRequest can retry, as long as it's
* still active and the last attempt value can either be cleared or replaced
* with a different error. Since ResizeRequest retries infrequently, the
@@ -139,7 +139,7 @@ public function clearLastAttempt()
}
/**
- * [Output only] Information about the last attempt to fulfill the request.
+ * Output only. [Output only] Information about the last attempt to fulfill the request.
* The value is temporary since the ResizeRequest can retry, as long as it's
* still active and the last attempt value can either be cleared or replaced
* with a different error. Since ResizeRequest retries infrequently, the
diff --git a/Compute/src/V1/InstanceGroupManagerResizeRequestStatusLastAttempt.php b/Compute/src/V1/InstanceGroupManagerResizeRequestStatusLastAttempt.php
index ad551432886f..dd5ea88975e0 100644
--- a/Compute/src/V1/InstanceGroupManagerResizeRequestStatusLastAttempt.php
+++ b/Compute/src/V1/InstanceGroupManagerResizeRequestStatusLastAttempt.php
@@ -15,7 +15,7 @@
class InstanceGroupManagerResizeRequestStatusLastAttempt extends \Google\Protobuf\Internal\Message
{
/**
- * Errors that prevented the ResizeRequest to be fulfilled.
+ * Output only. Errors that prevented the ResizeRequest to be fulfilled.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Error error = 96784904;
*/
@@ -28,7 +28,7 @@ class InstanceGroupManagerResizeRequestStatusLastAttempt extends \Google\Protobu
* Optional. Data for populating the Message object.
*
* @type \Google\Cloud\Compute\V1\Error $error
- * Errors that prevented the ResizeRequest to be fulfilled.
+ * Output only. Errors that prevented the ResizeRequest to be fulfilled.
* }
*/
public function __construct($data = NULL) {
@@ -37,7 +37,7 @@ public function __construct($data = NULL) {
}
/**
- * Errors that prevented the ResizeRequest to be fulfilled.
+ * Output only. Errors that prevented the ResizeRequest to be fulfilled.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Error error = 96784904;
* @return \Google\Cloud\Compute\V1\Error|null
@@ -58,7 +58,7 @@ public function clearError()
}
/**
- * Errors that prevented the ResizeRequest to be fulfilled.
+ * Output only. Errors that prevented the ResizeRequest to be fulfilled.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Error error = 96784904;
* @param \Google\Cloud\Compute\V1\Error $var
diff --git a/Compute/src/V1/InstanceGroupManagerResizeRequestsListResponse.php b/Compute/src/V1/InstanceGroupManagerResizeRequestsListResponse.php
index f9ac658bca02..2a927088abae 100644
--- a/Compute/src/V1/InstanceGroupManagerResizeRequestsListResponse.php
+++ b/Compute/src/V1/InstanceGroupManagerResizeRequestsListResponse.php
@@ -16,7 +16,7 @@
class InstanceGroupManagerResizeRequestsListResponse extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
*
* Generated from protobuf field optional string id = 3355;
*/
@@ -28,14 +28,14 @@ class InstanceGroupManagerResizeRequestsListResponse extends \Google\Protobuf\In
*/
private $items;
/**
- * [Output Only] Type of the resource. Alwayscompute#instanceGroupManagerResizeRequestList for
+ * Output only. [Output Only] Type of the resource. Alwayscompute#instanceGroupManagerResizeRequestList for
* a list of resize requests.
*
* Generated from protobuf field optional string kind = 3292052;
*/
protected $kind = null;
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -45,13 +45,13 @@ class InstanceGroupManagerResizeRequestsListResponse extends \Google\Protobuf\In
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
*/
@@ -64,22 +64,22 @@ class InstanceGroupManagerResizeRequestsListResponse extends \Google\Protobuf\In
* Optional. Data for populating the Message object.
*
* @type string $id
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
* @type array<\Google\Cloud\Compute\V1\InstanceGroupManagerResizeRequest>|\Google\Protobuf\Internal\RepeatedField $items
* A list of resize request resources.
* @type string $kind
- * [Output Only] Type of the resource. Alwayscompute#instanceGroupManagerResizeRequestList for
+ * Output only. [Output Only] Type of the resource. Alwayscompute#instanceGroupManagerResizeRequestList for
* a list of resize requests.
* @type string $next_page_token
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
* }
*/
public function __construct($data = NULL) {
@@ -88,7 +88,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
*
* Generated from protobuf field optional string id = 3355;
* @return string
@@ -109,7 +109,7 @@ public function clearId()
}
/**
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
*
* Generated from protobuf field optional string id = 3355;
* @param string $var
@@ -150,7 +150,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of the resource. Alwayscompute#instanceGroupManagerResizeRequestList for
+ * Output only. [Output Only] Type of the resource. Alwayscompute#instanceGroupManagerResizeRequestList for
* a list of resize requests.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -172,7 +172,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Alwayscompute#instanceGroupManagerResizeRequestList for
+ * Output only. [Output Only] Type of the resource. Alwayscompute#instanceGroupManagerResizeRequestList for
* a list of resize requests.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -188,7 +188,7 @@ public function setKind($var)
}
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -213,7 +213,7 @@ public function clearNextPageToken()
}
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -232,7 +232,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -253,7 +253,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -268,7 +268,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
* @return \Google\Cloud\Compute\V1\Warning|null
@@ -289,7 +289,7 @@ public function clearWarning()
}
/**
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
* @param \Google\Cloud\Compute\V1\Warning $var
diff --git a/Compute/src/V1/InstanceGroupManagerStatus.php b/Compute/src/V1/InstanceGroupManagerStatus.php
index 49d6cdbba799..3721f4b1ff06 100644
--- a/Compute/src/V1/InstanceGroupManagerStatus.php
+++ b/Compute/src/V1/InstanceGroupManagerStatus.php
@@ -15,20 +15,20 @@
class InstanceGroupManagerStatus extends \Google\Protobuf\Internal\Message
{
/**
- * [Output only] Status of all-instances configuration on the group.
+ * Output only. [Output only] Status of all-instances configuration on the group.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InstanceGroupManagerStatusAllInstancesConfig all_instances_config = 112596737;
*/
protected $all_instances_config = null;
/**
- * [Output Only] The URL of theAutoscaler
+ * Output only. [Output Only] The URL of theAutoscaler
* that targets this instance group manager.
*
* Generated from protobuf field optional string autoscaler = 517258967;
*/
protected $autoscaler = null;
/**
- * [Output Only] A bit indicating whether the managed instance group is in a
+ * Output only. [Output Only] A bit indicating whether the managed instance group is in a
* stable state. A stable state means that: none of the instances in the
* managed instance group is currently undergoing any type of change (for
* example, creation, restart, or deletion); no future changes are scheduled
@@ -39,13 +39,13 @@ class InstanceGroupManagerStatus extends \Google\Protobuf\Internal\Message
*/
protected $is_stable = null;
/**
- * [Output Only] Stateful status of the given Instance Group Manager.
+ * Output only. [Output Only] Stateful status of the given Instance Group Manager.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InstanceGroupManagerStatusStateful stateful = 244462412;
*/
protected $stateful = null;
/**
- * [Output Only] A status of consistency of Instances' versions with their
+ * Output only. [Output Only] A status of consistency of Instances' versions with their
* target version specified by version field on Instance Group
* Manager.
*
@@ -60,21 +60,21 @@ class InstanceGroupManagerStatus extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type \Google\Cloud\Compute\V1\InstanceGroupManagerStatusAllInstancesConfig $all_instances_config
- * [Output only] Status of all-instances configuration on the group.
+ * Output only. [Output only] Status of all-instances configuration on the group.
* @type string $autoscaler
- * [Output Only] The URL of theAutoscaler
+ * Output only. [Output Only] The URL of theAutoscaler
* that targets this instance group manager.
* @type bool $is_stable
- * [Output Only] A bit indicating whether the managed instance group is in a
+ * Output only. [Output Only] A bit indicating whether the managed instance group is in a
* stable state. A stable state means that: none of the instances in the
* managed instance group is currently undergoing any type of change (for
* example, creation, restart, or deletion); no future changes are scheduled
* for instances in the managed instance group; and the managed instance
* group itself is not being modified.
* @type \Google\Cloud\Compute\V1\InstanceGroupManagerStatusStateful $stateful
- * [Output Only] Stateful status of the given Instance Group Manager.
+ * Output only. [Output Only] Stateful status of the given Instance Group Manager.
* @type \Google\Cloud\Compute\V1\InstanceGroupManagerStatusVersionTarget $version_target
- * [Output Only] A status of consistency of Instances' versions with their
+ * Output only. [Output Only] A status of consistency of Instances' versions with their
* target version specified by version field on Instance Group
* Manager.
* }
@@ -85,7 +85,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output only] Status of all-instances configuration on the group.
+ * Output only. [Output only] Status of all-instances configuration on the group.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InstanceGroupManagerStatusAllInstancesConfig all_instances_config = 112596737;
* @return \Google\Cloud\Compute\V1\InstanceGroupManagerStatusAllInstancesConfig|null
@@ -106,7 +106,7 @@ public function clearAllInstancesConfig()
}
/**
- * [Output only] Status of all-instances configuration on the group.
+ * Output only. [Output only] Status of all-instances configuration on the group.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InstanceGroupManagerStatusAllInstancesConfig all_instances_config = 112596737;
* @param \Google\Cloud\Compute\V1\InstanceGroupManagerStatusAllInstancesConfig $var
@@ -121,7 +121,7 @@ public function setAllInstancesConfig($var)
}
/**
- * [Output Only] The URL of theAutoscaler
+ * Output only. [Output Only] The URL of theAutoscaler
* that targets this instance group manager.
*
* Generated from protobuf field optional string autoscaler = 517258967;
@@ -143,7 +143,7 @@ public function clearAutoscaler()
}
/**
- * [Output Only] The URL of theAutoscaler
+ * Output only. [Output Only] The URL of theAutoscaler
* that targets this instance group manager.
*
* Generated from protobuf field optional string autoscaler = 517258967;
@@ -159,7 +159,7 @@ public function setAutoscaler($var)
}
/**
- * [Output Only] A bit indicating whether the managed instance group is in a
+ * Output only. [Output Only] A bit indicating whether the managed instance group is in a
* stable state. A stable state means that: none of the instances in the
* managed instance group is currently undergoing any type of change (for
* example, creation, restart, or deletion); no future changes are scheduled
@@ -185,7 +185,7 @@ public function clearIsStable()
}
/**
- * [Output Only] A bit indicating whether the managed instance group is in a
+ * Output only. [Output Only] A bit indicating whether the managed instance group is in a
* stable state. A stable state means that: none of the instances in the
* managed instance group is currently undergoing any type of change (for
* example, creation, restart, or deletion); no future changes are scheduled
@@ -205,7 +205,7 @@ public function setIsStable($var)
}
/**
- * [Output Only] Stateful status of the given Instance Group Manager.
+ * Output only. [Output Only] Stateful status of the given Instance Group Manager.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InstanceGroupManagerStatusStateful stateful = 244462412;
* @return \Google\Cloud\Compute\V1\InstanceGroupManagerStatusStateful|null
@@ -226,7 +226,7 @@ public function clearStateful()
}
/**
- * [Output Only] Stateful status of the given Instance Group Manager.
+ * Output only. [Output Only] Stateful status of the given Instance Group Manager.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InstanceGroupManagerStatusStateful stateful = 244462412;
* @param \Google\Cloud\Compute\V1\InstanceGroupManagerStatusStateful $var
@@ -241,7 +241,7 @@ public function setStateful($var)
}
/**
- * [Output Only] A status of consistency of Instances' versions with their
+ * Output only. [Output Only] A status of consistency of Instances' versions with their
* target version specified by version field on Instance Group
* Manager.
*
@@ -264,7 +264,7 @@ public function clearVersionTarget()
}
/**
- * [Output Only] A status of consistency of Instances' versions with their
+ * Output only. [Output Only] A status of consistency of Instances' versions with their
* target version specified by version field on Instance Group
* Manager.
*
diff --git a/Compute/src/V1/InstanceGroupManagerStatusAllInstancesConfig.php b/Compute/src/V1/InstanceGroupManagerStatusAllInstancesConfig.php
index 79b8d5d6b6bd..cb9e051f7bab 100644
--- a/Compute/src/V1/InstanceGroupManagerStatusAllInstancesConfig.php
+++ b/Compute/src/V1/InstanceGroupManagerStatusAllInstancesConfig.php
@@ -15,14 +15,14 @@
class InstanceGroupManagerStatusAllInstancesConfig extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Current all-instances configuration revision.
+ * Output only. [Output Only] Current all-instances configuration revision.
* This value is in RFC3339 text format.
*
* Generated from protobuf field optional string current_revision = 38355937;
*/
protected $current_revision = null;
/**
- * [Output Only] A bit indicating whether this configuration has
+ * Output only. [Output Only] A bit indicating whether this configuration has
* been applied to all managed instances in the group.
*
* Generated from protobuf field optional bool effective = 141961639;
@@ -36,10 +36,10 @@ class InstanceGroupManagerStatusAllInstancesConfig extends \Google\Protobuf\Inte
* Optional. Data for populating the Message object.
*
* @type string $current_revision
- * [Output Only] Current all-instances configuration revision.
+ * Output only. [Output Only] Current all-instances configuration revision.
* This value is in RFC3339 text format.
* @type bool $effective
- * [Output Only] A bit indicating whether this configuration has
+ * Output only. [Output Only] A bit indicating whether this configuration has
* been applied to all managed instances in the group.
* }
*/
@@ -49,7 +49,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Current all-instances configuration revision.
+ * Output only. [Output Only] Current all-instances configuration revision.
* This value is in RFC3339 text format.
*
* Generated from protobuf field optional string current_revision = 38355937;
@@ -71,7 +71,7 @@ public function clearCurrentRevision()
}
/**
- * [Output Only] Current all-instances configuration revision.
+ * Output only. [Output Only] Current all-instances configuration revision.
* This value is in RFC3339 text format.
*
* Generated from protobuf field optional string current_revision = 38355937;
@@ -87,7 +87,7 @@ public function setCurrentRevision($var)
}
/**
- * [Output Only] A bit indicating whether this configuration has
+ * Output only. [Output Only] A bit indicating whether this configuration has
* been applied to all managed instances in the group.
*
* Generated from protobuf field optional bool effective = 141961639;
@@ -109,7 +109,7 @@ public function clearEffective()
}
/**
- * [Output Only] A bit indicating whether this configuration has
+ * Output only. [Output Only] A bit indicating whether this configuration has
* been applied to all managed instances in the group.
*
* Generated from protobuf field optional bool effective = 141961639;
diff --git a/Compute/src/V1/InstanceGroupManagerStatusStateful.php b/Compute/src/V1/InstanceGroupManagerStatusStateful.php
index 61be323f9545..50b9552d29de 100644
--- a/Compute/src/V1/InstanceGroupManagerStatusStateful.php
+++ b/Compute/src/V1/InstanceGroupManagerStatusStateful.php
@@ -15,7 +15,7 @@
class InstanceGroupManagerStatusStateful extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] A bit indicating whether the managed instance group
+ * Output only. [Output Only] A bit indicating whether the managed instance group
* has stateful configuration, that is, if you have configured any items
* in a stateful policy or in per-instance configs.
* The group might report that it has no stateful configuration even when
@@ -26,7 +26,7 @@ class InstanceGroupManagerStatusStateful extends \Google\Protobuf\Internal\Messa
*/
protected $has_stateful_config = null;
/**
- * [Output Only] Status of per-instance configurations on the instances.
+ * Output only. [Output Only] Status of per-instance configurations on the instances.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InstanceGroupManagerStatusStatefulPerInstanceConfigs per_instance_configs = 526265001;
*/
@@ -39,14 +39,14 @@ class InstanceGroupManagerStatusStateful extends \Google\Protobuf\Internal\Messa
* Optional. Data for populating the Message object.
*
* @type bool $has_stateful_config
- * [Output Only] A bit indicating whether the managed instance group
+ * Output only. [Output Only] A bit indicating whether the managed instance group
* has stateful configuration, that is, if you have configured any items
* in a stateful policy or in per-instance configs.
* The group might report that it has no stateful configuration even when
* there is still some preserved state on a managed instance, for example,
* if you have deleted all PICs but not yet applied those deletions.
* @type \Google\Cloud\Compute\V1\InstanceGroupManagerStatusStatefulPerInstanceConfigs $per_instance_configs
- * [Output Only] Status of per-instance configurations on the instances.
+ * Output only. [Output Only] Status of per-instance configurations on the instances.
* }
*/
public function __construct($data = NULL) {
@@ -55,7 +55,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] A bit indicating whether the managed instance group
+ * Output only. [Output Only] A bit indicating whether the managed instance group
* has stateful configuration, that is, if you have configured any items
* in a stateful policy or in per-instance configs.
* The group might report that it has no stateful configuration even when
@@ -81,7 +81,7 @@ public function clearHasStatefulConfig()
}
/**
- * [Output Only] A bit indicating whether the managed instance group
+ * Output only. [Output Only] A bit indicating whether the managed instance group
* has stateful configuration, that is, if you have configured any items
* in a stateful policy or in per-instance configs.
* The group might report that it has no stateful configuration even when
@@ -101,7 +101,7 @@ public function setHasStatefulConfig($var)
}
/**
- * [Output Only] Status of per-instance configurations on the instances.
+ * Output only. [Output Only] Status of per-instance configurations on the instances.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InstanceGroupManagerStatusStatefulPerInstanceConfigs per_instance_configs = 526265001;
* @return \Google\Cloud\Compute\V1\InstanceGroupManagerStatusStatefulPerInstanceConfigs|null
@@ -122,7 +122,7 @@ public function clearPerInstanceConfigs()
}
/**
- * [Output Only] Status of per-instance configurations on the instances.
+ * Output only. [Output Only] Status of per-instance configurations on the instances.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InstanceGroupManagerStatusStatefulPerInstanceConfigs per_instance_configs = 526265001;
* @param \Google\Cloud\Compute\V1\InstanceGroupManagerStatusStatefulPerInstanceConfigs $var
diff --git a/Compute/src/V1/InstanceGroupManagerStatusStatefulPerInstanceConfigs.php b/Compute/src/V1/InstanceGroupManagerStatusStatefulPerInstanceConfigs.php
index 0523850d4600..ae20af31db02 100644
--- a/Compute/src/V1/InstanceGroupManagerStatusStatefulPerInstanceConfigs.php
+++ b/Compute/src/V1/InstanceGroupManagerStatusStatefulPerInstanceConfigs.php
@@ -15,7 +15,7 @@
class InstanceGroupManagerStatusStatefulPerInstanceConfigs extends \Google\Protobuf\Internal\Message
{
/**
- * A bit indicating if all of the group's per-instance configurations
+ * Output only. A bit indicating if all of the group's per-instance configurations
* (listed in the output of a listPerInstanceConfigs API call) have
* status EFFECTIVE or there are no per-instance-configs.
*
@@ -30,7 +30,7 @@ class InstanceGroupManagerStatusStatefulPerInstanceConfigs extends \Google\Proto
* Optional. Data for populating the Message object.
*
* @type bool $all_effective
- * A bit indicating if all of the group's per-instance configurations
+ * Output only. A bit indicating if all of the group's per-instance configurations
* (listed in the output of a listPerInstanceConfigs API call) have
* status EFFECTIVE or there are no per-instance-configs.
* }
@@ -41,7 +41,7 @@ public function __construct($data = NULL) {
}
/**
- * A bit indicating if all of the group's per-instance configurations
+ * Output only. A bit indicating if all of the group's per-instance configurations
* (listed in the output of a listPerInstanceConfigs API call) have
* status EFFECTIVE or there are no per-instance-configs.
*
@@ -64,7 +64,7 @@ public function clearAllEffective()
}
/**
- * A bit indicating if all of the group's per-instance configurations
+ * Output only. A bit indicating if all of the group's per-instance configurations
* (listed in the output of a listPerInstanceConfigs API call) have
* status EFFECTIVE or there are no per-instance-configs.
*
diff --git a/Compute/src/V1/InstanceGroupManagerStatusVersionTarget.php b/Compute/src/V1/InstanceGroupManagerStatusVersionTarget.php
index 88f9dd9d0423..76aca5941a31 100644
--- a/Compute/src/V1/InstanceGroupManagerStatusVersionTarget.php
+++ b/Compute/src/V1/InstanceGroupManagerStatusVersionTarget.php
@@ -15,7 +15,7 @@
class InstanceGroupManagerStatusVersionTarget extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] A bit indicating whether version target has been reached
+ * Output only. [Output Only] A bit indicating whether version target has been reached
* in this managed instance group, i.e. all instances are in their target
* version. Instances' target version are specified byversion field on Instance Group Manager.
*
@@ -30,7 +30,7 @@ class InstanceGroupManagerStatusVersionTarget extends \Google\Protobuf\Internal\
* Optional. Data for populating the Message object.
*
* @type bool $is_reached
- * [Output Only] A bit indicating whether version target has been reached
+ * Output only. [Output Only] A bit indicating whether version target has been reached
* in this managed instance group, i.e. all instances are in their target
* version. Instances' target version are specified byversion field on Instance Group Manager.
* }
@@ -41,7 +41,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] A bit indicating whether version target has been reached
+ * Output only. [Output Only] A bit indicating whether version target has been reached
* in this managed instance group, i.e. all instances are in their target
* version. Instances' target version are specified byversion field on Instance Group Manager.
*
@@ -64,7 +64,7 @@ public function clearIsReached()
}
/**
- * [Output Only] A bit indicating whether version target has been reached
+ * Output only. [Output Only] A bit indicating whether version target has been reached
* in this managed instance group, i.e. all instances are in their target
* version. Instances' target version are specified byversion field on Instance Group Manager.
*
diff --git a/Compute/src/V1/InstanceGroupManagersListErrorsResponse.php b/Compute/src/V1/InstanceGroupManagersListErrorsResponse.php
index fe5cb1ad5106..f6dd8bda88c9 100644
--- a/Compute/src/V1/InstanceGroupManagersListErrorsResponse.php
+++ b/Compute/src/V1/InstanceGroupManagersListErrorsResponse.php
@@ -15,13 +15,13 @@
class InstanceGroupManagersListErrorsResponse extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] The list of errors of the managed instance group.
+ * Output only. [Output Only] The list of errors of the managed instance group.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.InstanceManagedByIgmError items = 100526016;
*/
private $items;
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -38,9 +38,9 @@ class InstanceGroupManagersListErrorsResponse extends \Google\Protobuf\Internal\
* Optional. Data for populating the Message object.
*
* @type array<\Google\Cloud\Compute\V1\InstanceManagedByIgmError>|\Google\Protobuf\Internal\RepeatedField $items
- * [Output Only] The list of errors of the managed instance group.
+ * Output only. [Output Only] The list of errors of the managed instance group.
* @type string $next_page_token
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -53,7 +53,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] The list of errors of the managed instance group.
+ * Output only. [Output Only] The list of errors of the managed instance group.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.InstanceManagedByIgmError items = 100526016;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -64,7 +64,7 @@ public function getItems()
}
/**
- * [Output Only] The list of errors of the managed instance group.
+ * Output only. [Output Only] The list of errors of the managed instance group.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.InstanceManagedByIgmError items = 100526016;
* @param array<\Google\Cloud\Compute\V1\InstanceManagedByIgmError>|\Google\Protobuf\Internal\RepeatedField $var
@@ -79,7 +79,7 @@ public function setItems($var)
}
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -104,7 +104,7 @@ public function clearNextPageToken()
}
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
diff --git a/Compute/src/V1/InstanceGroupManagersListManagedInstancesResponse.php b/Compute/src/V1/InstanceGroupManagersListManagedInstancesResponse.php
index a11bfe0c30ee..858b63b1e6e6 100644
--- a/Compute/src/V1/InstanceGroupManagersListManagedInstancesResponse.php
+++ b/Compute/src/V1/InstanceGroupManagersListManagedInstancesResponse.php
@@ -15,13 +15,13 @@
class InstanceGroupManagersListManagedInstancesResponse extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] The list of instances in the managed instance group.
+ * Output only. [Output Only] The list of instances in the managed instance group.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.ManagedInstance managed_instances = 336219614;
*/
private $managed_instances;
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -38,9 +38,9 @@ class InstanceGroupManagersListManagedInstancesResponse extends \Google\Protobuf
* Optional. Data for populating the Message object.
*
* @type array<\Google\Cloud\Compute\V1\ManagedInstance>|\Google\Protobuf\Internal\RepeatedField $managed_instances
- * [Output Only] The list of instances in the managed instance group.
+ * Output only. [Output Only] The list of instances in the managed instance group.
* @type string $next_page_token
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -53,7 +53,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] The list of instances in the managed instance group.
+ * Output only. [Output Only] The list of instances in the managed instance group.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.ManagedInstance managed_instances = 336219614;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -64,7 +64,7 @@ public function getManagedInstances()
}
/**
- * [Output Only] The list of instances in the managed instance group.
+ * Output only. [Output Only] The list of instances in the managed instance group.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.ManagedInstance managed_instances = 336219614;
* @param array<\Google\Cloud\Compute\V1\ManagedInstance>|\Google\Protobuf\Internal\RepeatedField $var
@@ -79,7 +79,7 @@ public function setManagedInstances($var)
}
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -104,7 +104,7 @@ public function clearNextPageToken()
}
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
diff --git a/Compute/src/V1/InstanceGroupManagersListPerInstanceConfigsResp.php b/Compute/src/V1/InstanceGroupManagersListPerInstanceConfigsResp.php
index e2e22b03b935..66f3431e5ec9 100644
--- a/Compute/src/V1/InstanceGroupManagersListPerInstanceConfigsResp.php
+++ b/Compute/src/V1/InstanceGroupManagersListPerInstanceConfigsResp.php
@@ -15,13 +15,13 @@
class InstanceGroupManagersListPerInstanceConfigsResp extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] The list of PerInstanceConfig.
+ * Output only. [Output Only] The list of PerInstanceConfig.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.PerInstanceConfig items = 100526016;
*/
private $items;
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -31,7 +31,7 @@ class InstanceGroupManagersListPerInstanceConfigsResp extends \Google\Protobuf\I
*/
protected $next_page_token = null;
/**
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
*/
@@ -44,15 +44,15 @@ class InstanceGroupManagersListPerInstanceConfigsResp extends \Google\Protobuf\I
* Optional. Data for populating the Message object.
*
* @type array<\Google\Cloud\Compute\V1\PerInstanceConfig>|\Google\Protobuf\Internal\RepeatedField $items
- * [Output Only] The list of PerInstanceConfig.
+ * Output only. [Output Only] The list of PerInstanceConfig.
* @type string $next_page_token
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type \Google\Cloud\Compute\V1\Warning $warning
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
* }
*/
public function __construct($data = NULL) {
@@ -61,7 +61,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] The list of PerInstanceConfig.
+ * Output only. [Output Only] The list of PerInstanceConfig.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.PerInstanceConfig items = 100526016;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -72,7 +72,7 @@ public function getItems()
}
/**
- * [Output Only] The list of PerInstanceConfig.
+ * Output only. [Output Only] The list of PerInstanceConfig.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.PerInstanceConfig items = 100526016;
* @param array<\Google\Cloud\Compute\V1\PerInstanceConfig>|\Google\Protobuf\Internal\RepeatedField $var
@@ -87,7 +87,7 @@ public function setItems($var)
}
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -112,7 +112,7 @@ public function clearNextPageToken()
}
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -131,7 +131,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
* @return \Google\Cloud\Compute\V1\Warning|null
@@ -152,7 +152,7 @@ public function clearWarning()
}
/**
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
* @param \Google\Cloud\Compute\V1\Warning $var
diff --git a/Compute/src/V1/InstanceGroupManagersScopedList.php b/Compute/src/V1/InstanceGroupManagersScopedList.php
index 6f3fa032e2e2..d073c45b4612 100644
--- a/Compute/src/V1/InstanceGroupManagersScopedList.php
+++ b/Compute/src/V1/InstanceGroupManagersScopedList.php
@@ -15,14 +15,14 @@
class InstanceGroupManagersScopedList extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] The list of managed instance groups that are contained in
+ * Output only. [Output Only] The list of managed instance groups that are contained in
* the specified project and zone.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.InstanceGroupManager instance_group_managers = 214072592;
*/
private $instance_group_managers;
/**
- * [Output Only] The warning that replaces the list of managed instance
+ * Output only. [Output Only] The warning that replaces the list of managed instance
* groups when the list is empty.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
@@ -36,10 +36,10 @@ class InstanceGroupManagersScopedList extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type array<\Google\Cloud\Compute\V1\InstanceGroupManager>|\Google\Protobuf\Internal\RepeatedField $instance_group_managers
- * [Output Only] The list of managed instance groups that are contained in
+ * Output only. [Output Only] The list of managed instance groups that are contained in
* the specified project and zone.
* @type \Google\Cloud\Compute\V1\Warning $warning
- * [Output Only] The warning that replaces the list of managed instance
+ * Output only. [Output Only] The warning that replaces the list of managed instance
* groups when the list is empty.
* }
*/
@@ -49,7 +49,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] The list of managed instance groups that are contained in
+ * Output only. [Output Only] The list of managed instance groups that are contained in
* the specified project and zone.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.InstanceGroupManager instance_group_managers = 214072592;
@@ -61,7 +61,7 @@ public function getInstanceGroupManagers()
}
/**
- * [Output Only] The list of managed instance groups that are contained in
+ * Output only. [Output Only] The list of managed instance groups that are contained in
* the specified project and zone.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.InstanceGroupManager instance_group_managers = 214072592;
@@ -77,7 +77,7 @@ public function setInstanceGroupManagers($var)
}
/**
- * [Output Only] The warning that replaces the list of managed instance
+ * Output only. [Output Only] The warning that replaces the list of managed instance
* groups when the list is empty.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
@@ -99,7 +99,7 @@ public function clearWarning()
}
/**
- * [Output Only] The warning that replaces the list of managed instance
+ * Output only. [Output Only] The warning that replaces the list of managed instance
* groups when the list is empty.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
diff --git a/Compute/src/V1/InstanceGroupsListInstances.php b/Compute/src/V1/InstanceGroupsListInstances.php
index 0c135b20e7a4..4240282528f9 100644
--- a/Compute/src/V1/InstanceGroupsListInstances.php
+++ b/Compute/src/V1/InstanceGroupsListInstances.php
@@ -15,7 +15,7 @@
class InstanceGroupsListInstances extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
*
* Generated from protobuf field optional string id = 3355;
*/
@@ -27,14 +27,14 @@ class InstanceGroupsListInstances extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] The resource type, which is alwayscompute#instanceGroupsListInstances for the list of instances
+ * Output only. [Output Only] The resource type, which is alwayscompute#instanceGroupsListInstances for the list of instances
* in the specified instance group.
*
* Generated from protobuf field optional string kind = 3292052;
*/
protected $kind = null;
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -44,13 +44,13 @@ class InstanceGroupsListInstances extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
*/
@@ -63,22 +63,22 @@ class InstanceGroupsListInstances extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $id
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
* @type array<\Google\Cloud\Compute\V1\InstanceWithNamedPorts>|\Google\Protobuf\Internal\RepeatedField $items
* A list of InstanceWithNamedPorts resources.
* @type string $kind
- * [Output Only] The resource type, which is alwayscompute#instanceGroupsListInstances for the list of instances
+ * Output only. [Output Only] The resource type, which is alwayscompute#instanceGroupsListInstances for the list of instances
* in the specified instance group.
* @type string $next_page_token
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
* }
*/
public function __construct($data = NULL) {
@@ -87,7 +87,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
*
* Generated from protobuf field optional string id = 3355;
* @return string
@@ -108,7 +108,7 @@ public function clearId()
}
/**
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
*
* Generated from protobuf field optional string id = 3355;
* @param string $var
@@ -149,7 +149,7 @@ public function setItems($var)
}
/**
- * [Output Only] The resource type, which is alwayscompute#instanceGroupsListInstances for the list of instances
+ * Output only. [Output Only] The resource type, which is alwayscompute#instanceGroupsListInstances for the list of instances
* in the specified instance group.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -171,7 +171,7 @@ public function clearKind()
}
/**
- * [Output Only] The resource type, which is alwayscompute#instanceGroupsListInstances for the list of instances
+ * Output only. [Output Only] The resource type, which is alwayscompute#instanceGroupsListInstances for the list of instances
* in the specified instance group.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -187,7 +187,7 @@ public function setKind($var)
}
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -212,7 +212,7 @@ public function clearNextPageToken()
}
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -231,7 +231,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -252,7 +252,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -267,7 +267,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
* @return \Google\Cloud\Compute\V1\Warning|null
@@ -288,7 +288,7 @@ public function clearWarning()
}
/**
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
* @param \Google\Cloud\Compute\V1\Warning $var
diff --git a/Compute/src/V1/InstanceGroupsScopedList.php b/Compute/src/V1/InstanceGroupsScopedList.php
index d17627a1cf31..1a065776bdad 100644
--- a/Compute/src/V1/InstanceGroupsScopedList.php
+++ b/Compute/src/V1/InstanceGroupsScopedList.php
@@ -15,14 +15,14 @@
class InstanceGroupsScopedList extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] The list ofinstance
+ * Output only. [Output Only] The list ofinstance
* groups that are contained in this scope.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.InstanceGroup instance_groups = 366469310;
*/
private $instance_groups;
/**
- * [Output Only] An informational warning that replaces the list of
+ * Output only. [Output Only] An informational warning that replaces the list of
* instance groups when the list is empty.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
@@ -36,10 +36,10 @@ class InstanceGroupsScopedList extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type array<\Google\Cloud\Compute\V1\InstanceGroup>|\Google\Protobuf\Internal\RepeatedField $instance_groups
- * [Output Only] The list ofinstance
+ * Output only. [Output Only] The list ofinstance
* groups that are contained in this scope.
* @type \Google\Cloud\Compute\V1\Warning $warning
- * [Output Only] An informational warning that replaces the list of
+ * Output only. [Output Only] An informational warning that replaces the list of
* instance groups when the list is empty.
* }
*/
@@ -49,7 +49,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] The list ofinstance
+ * Output only. [Output Only] The list ofinstance
* groups that are contained in this scope.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.InstanceGroup instance_groups = 366469310;
@@ -61,7 +61,7 @@ public function getInstanceGroups()
}
/**
- * [Output Only] The list ofinstance
+ * Output only. [Output Only] The list ofinstance
* groups that are contained in this scope.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.InstanceGroup instance_groups = 366469310;
@@ -77,7 +77,7 @@ public function setInstanceGroups($var)
}
/**
- * [Output Only] An informational warning that replaces the list of
+ * Output only. [Output Only] An informational warning that replaces the list of
* instance groups when the list is empty.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
@@ -99,7 +99,7 @@ public function clearWarning()
}
/**
- * [Output Only] An informational warning that replaces the list of
+ * Output only. [Output Only] An informational warning that replaces the list of
* instance groups when the list is empty.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
diff --git a/Compute/src/V1/InstanceList.php b/Compute/src/V1/InstanceList.php
index 92efd85ead83..3d6b0d7d7d5c 100644
--- a/Compute/src/V1/InstanceList.php
+++ b/Compute/src/V1/InstanceList.php
@@ -28,7 +28,7 @@ class InstanceList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Always compute#instanceList
+ * Output only. [Output Only] Type of resource. Always compute#instanceList
* for lists of Instance resources.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -45,7 +45,7 @@ class InstanceList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -68,7 +68,7 @@ class InstanceList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\Instance>|\Google\Protobuf\Internal\RepeatedField $items
* A list of Instance resources.
* @type string $kind
- * [Output Only] Type of resource. Always compute#instanceList
+ * Output only. [Output Only] Type of resource. Always compute#instanceList
* for lists of Instance resources.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -77,7 +77,7 @@ class InstanceList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -150,7 +150,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Always compute#instanceList
+ * Output only. [Output Only] Type of resource. Always compute#instanceList
* for lists of Instance resources.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -172,7 +172,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Always compute#instanceList
+ * Output only. [Output Only] Type of resource. Always compute#instanceList
* for lists of Instance resources.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -232,7 +232,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -253,7 +253,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/InstanceListReferrers.php b/Compute/src/V1/InstanceListReferrers.php
index 1be8321f5232..9f10499dac28 100644
--- a/Compute/src/V1/InstanceListReferrers.php
+++ b/Compute/src/V1/InstanceListReferrers.php
@@ -28,7 +28,7 @@ class InstanceListReferrers extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Alwayscompute#instanceListReferrers for lists of Instance referrers.
+ * Output only. [Output Only] Type of resource. Alwayscompute#instanceListReferrers for lists of Instance referrers.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -44,7 +44,7 @@ class InstanceListReferrers extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -67,7 +67,7 @@ class InstanceListReferrers extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\Reference>|\Google\Protobuf\Internal\RepeatedField $items
* A list of Reference resources.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#instanceListReferrers for lists of Instance referrers.
+ * Output only. [Output Only] Type of resource. Alwayscompute#instanceListReferrers for lists of Instance referrers.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -75,7 +75,7 @@ class InstanceListReferrers extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -148,7 +148,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#instanceListReferrers for lists of Instance referrers.
+ * Output only. [Output Only] Type of resource. Alwayscompute#instanceListReferrers for lists of Instance referrers.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -169,7 +169,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#instanceListReferrers for lists of Instance referrers.
+ * Output only. [Output Only] Type of resource. Alwayscompute#instanceListReferrers for lists of Instance referrers.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -228,7 +228,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -249,7 +249,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/InstanceManagedByIgmError.php b/Compute/src/V1/InstanceManagedByIgmError.php
index 0e23f52c1f08..d94d30daadfd 100644
--- a/Compute/src/V1/InstanceManagedByIgmError.php
+++ b/Compute/src/V1/InstanceManagedByIgmError.php
@@ -15,13 +15,13 @@
class InstanceManagedByIgmError extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Contents of the error.
+ * Output only. [Output Only] Contents of the error.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InstanceManagedByIgmErrorManagedInstanceError error = 96784904;
*/
protected $error = null;
/**
- * [Output Only] Details of the instance action that triggered this error.
+ * Output only. [Output Only] Details of the instance action that triggered this error.
* May be null, if the error was not caused by an action on an instance.
* This field is optional.
*
@@ -29,7 +29,7 @@ class InstanceManagedByIgmError extends \Google\Protobuf\Internal\Message
*/
protected $instance_action_details = null;
/**
- * [Output Only] The time that this error occurred.
+ * Output only. [Output Only] The time that this error occurred.
* This value is in RFC3339 text format.
*
* Generated from protobuf field optional string timestamp = 55126294;
@@ -43,13 +43,13 @@ class InstanceManagedByIgmError extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type \Google\Cloud\Compute\V1\InstanceManagedByIgmErrorManagedInstanceError $error
- * [Output Only] Contents of the error.
+ * Output only. [Output Only] Contents of the error.
* @type \Google\Cloud\Compute\V1\InstanceManagedByIgmErrorInstanceActionDetails $instance_action_details
- * [Output Only] Details of the instance action that triggered this error.
+ * Output only. [Output Only] Details of the instance action that triggered this error.
* May be null, if the error was not caused by an action on an instance.
* This field is optional.
* @type string $timestamp
- * [Output Only] The time that this error occurred.
+ * Output only. [Output Only] The time that this error occurred.
* This value is in RFC3339 text format.
* }
*/
@@ -59,7 +59,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Contents of the error.
+ * Output only. [Output Only] Contents of the error.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InstanceManagedByIgmErrorManagedInstanceError error = 96784904;
* @return \Google\Cloud\Compute\V1\InstanceManagedByIgmErrorManagedInstanceError|null
@@ -80,7 +80,7 @@ public function clearError()
}
/**
- * [Output Only] Contents of the error.
+ * Output only. [Output Only] Contents of the error.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InstanceManagedByIgmErrorManagedInstanceError error = 96784904;
* @param \Google\Cloud\Compute\V1\InstanceManagedByIgmErrorManagedInstanceError $var
@@ -95,7 +95,7 @@ public function setError($var)
}
/**
- * [Output Only] Details of the instance action that triggered this error.
+ * Output only. [Output Only] Details of the instance action that triggered this error.
* May be null, if the error was not caused by an action on an instance.
* This field is optional.
*
@@ -118,7 +118,7 @@ public function clearInstanceActionDetails()
}
/**
- * [Output Only] Details of the instance action that triggered this error.
+ * Output only. [Output Only] Details of the instance action that triggered this error.
* May be null, if the error was not caused by an action on an instance.
* This field is optional.
*
@@ -135,7 +135,7 @@ public function setInstanceActionDetails($var)
}
/**
- * [Output Only] The time that this error occurred.
+ * Output only. [Output Only] The time that this error occurred.
* This value is in RFC3339 text format.
*
* Generated from protobuf field optional string timestamp = 55126294;
@@ -157,7 +157,7 @@ public function clearTimestamp()
}
/**
- * [Output Only] The time that this error occurred.
+ * Output only. [Output Only] The time that this error occurred.
* This value is in RFC3339 text format.
*
* Generated from protobuf field optional string timestamp = 55126294;
diff --git a/Compute/src/V1/InstanceManagedByIgmErrorInstanceActionDetails.php b/Compute/src/V1/InstanceManagedByIgmErrorInstanceActionDetails.php
index 25b7fa03de5c..28b70f58a2a5 100644
--- a/Compute/src/V1/InstanceManagedByIgmErrorInstanceActionDetails.php
+++ b/Compute/src/V1/InstanceManagedByIgmErrorInstanceActionDetails.php
@@ -15,7 +15,7 @@
class InstanceManagedByIgmErrorInstanceActionDetails extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Action that managed instance group was executing on
+ * Output only. [Output Only] Action that managed instance group was executing on
* the instance when the error occurred. Possible values:
* Check the Action enum for the list of possible values.
*
@@ -23,14 +23,14 @@ class InstanceManagedByIgmErrorInstanceActionDetails extends \Google\Protobuf\In
*/
protected $action = null;
/**
- * [Output Only] The URL of the instance.
+ * Output only. [Output Only] The URL of the instance.
* The URL can be set even if the instance has not yet been created.
*
* Generated from protobuf field optional string instance = 18257045;
*/
protected $instance = null;
/**
- * [Output Only] Version this instance was created from, or was being
+ * Output only. [Output Only] Version this instance was created from, or was being
* created from, but the creation failed. Corresponds to one of the versions
* that were set on the Instance Group Manager resource at the time this
* instance was being created.
@@ -46,14 +46,14 @@ class InstanceManagedByIgmErrorInstanceActionDetails extends \Google\Protobuf\In
* Optional. Data for populating the Message object.
*
* @type string $action
- * [Output Only] Action that managed instance group was executing on
+ * Output only. [Output Only] Action that managed instance group was executing on
* the instance when the error occurred. Possible values:
* Check the Action enum for the list of possible values.
* @type string $instance
- * [Output Only] The URL of the instance.
+ * Output only. [Output Only] The URL of the instance.
* The URL can be set even if the instance has not yet been created.
* @type \Google\Cloud\Compute\V1\ManagedInstanceVersion $version
- * [Output Only] Version this instance was created from, or was being
+ * Output only. [Output Only] Version this instance was created from, or was being
* created from, but the creation failed. Corresponds to one of the versions
* that were set on the Instance Group Manager resource at the time this
* instance was being created.
@@ -65,7 +65,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Action that managed instance group was executing on
+ * Output only. [Output Only] Action that managed instance group was executing on
* the instance when the error occurred. Possible values:
* Check the Action enum for the list of possible values.
*
@@ -88,7 +88,7 @@ public function clearAction()
}
/**
- * [Output Only] Action that managed instance group was executing on
+ * Output only. [Output Only] Action that managed instance group was executing on
* the instance when the error occurred. Possible values:
* Check the Action enum for the list of possible values.
*
@@ -105,7 +105,7 @@ public function setAction($var)
}
/**
- * [Output Only] The URL of the instance.
+ * Output only. [Output Only] The URL of the instance.
* The URL can be set even if the instance has not yet been created.
*
* Generated from protobuf field optional string instance = 18257045;
@@ -127,7 +127,7 @@ public function clearInstance()
}
/**
- * [Output Only] The URL of the instance.
+ * Output only. [Output Only] The URL of the instance.
* The URL can be set even if the instance has not yet been created.
*
* Generated from protobuf field optional string instance = 18257045;
@@ -143,7 +143,7 @@ public function setInstance($var)
}
/**
- * [Output Only] Version this instance was created from, or was being
+ * Output only. [Output Only] Version this instance was created from, or was being
* created from, but the creation failed. Corresponds to one of the versions
* that were set on the Instance Group Manager resource at the time this
* instance was being created.
@@ -167,7 +167,7 @@ public function clearVersion()
}
/**
- * [Output Only] Version this instance was created from, or was being
+ * Output only. [Output Only] Version this instance was created from, or was being
* created from, but the creation failed. Corresponds to one of the versions
* that were set on the Instance Group Manager resource at the time this
* instance was being created.
diff --git a/Compute/src/V1/InstanceManagedByIgmErrorInstanceActionDetails/Action.php b/Compute/src/V1/InstanceManagedByIgmErrorInstanceActionDetails/Action.php
index d3c4956ce90f..3a2a86b301f5 100644
--- a/Compute/src/V1/InstanceManagedByIgmErrorInstanceActionDetails/Action.php
+++ b/Compute/src/V1/InstanceManagedByIgmErrorInstanceActionDetails/Action.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] Action that managed instance group was executing on
+ * Output only. [Output Only] Action that managed instance group was executing on
* the instance when the error occurred. Possible values:
*
* Protobuf type google.cloud.compute.v1.InstanceManagedByIgmErrorInstanceActionDetails.Action
diff --git a/Compute/src/V1/InstanceManagedByIgmErrorManagedInstanceError.php b/Compute/src/V1/InstanceManagedByIgmErrorManagedInstanceError.php
index 8eef6d1f8a67..7c6585b25b67 100644
--- a/Compute/src/V1/InstanceManagedByIgmErrorManagedInstanceError.php
+++ b/Compute/src/V1/InstanceManagedByIgmErrorManagedInstanceError.php
@@ -15,13 +15,13 @@
class InstanceManagedByIgmErrorManagedInstanceError extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Error code.
+ * Output only. [Output Only] Error code.
*
* Generated from protobuf field optional string code = 3059181;
*/
protected $code = null;
/**
- * [Output Only] Error message.
+ * Output only. [Output Only] Error message.
*
* Generated from protobuf field optional string message = 418054151;
*/
@@ -34,9 +34,9 @@ class InstanceManagedByIgmErrorManagedInstanceError extends \Google\Protobuf\Int
* Optional. Data for populating the Message object.
*
* @type string $code
- * [Output Only] Error code.
+ * Output only. [Output Only] Error code.
* @type string $message
- * [Output Only] Error message.
+ * Output only. [Output Only] Error message.
* }
*/
public function __construct($data = NULL) {
@@ -45,7 +45,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Error code.
+ * Output only. [Output Only] Error code.
*
* Generated from protobuf field optional string code = 3059181;
* @return string
@@ -66,7 +66,7 @@ public function clearCode()
}
/**
- * [Output Only] Error code.
+ * Output only. [Output Only] Error code.
*
* Generated from protobuf field optional string code = 3059181;
* @param string $var
@@ -81,7 +81,7 @@ public function setCode($var)
}
/**
- * [Output Only] Error message.
+ * Output only. [Output Only] Error message.
*
* Generated from protobuf field optional string message = 418054151;
* @return string
@@ -102,7 +102,7 @@ public function clearMessage()
}
/**
- * [Output Only] Error message.
+ * Output only. [Output Only] Error message.
*
* Generated from protobuf field optional string message = 418054151;
* @param string $var
diff --git a/Compute/src/V1/InstanceParams.php b/Compute/src/V1/InstanceParams.php
index 568012b2626c..24350499339e 100644
--- a/Compute/src/V1/InstanceParams.php
+++ b/Compute/src/V1/InstanceParams.php
@@ -25,8 +25,10 @@ class InstanceParams extends \Google\Protobuf\Internal\Message
/**
* Resource manager tags to be bound to the instance. Tag keys and values
* have the same definition as resource
- * manager tags. Keys must be in the format `tagKeys/{tag_key_id}`, and
- * values are in the format `tagValues/456`. The field is ignored (both PUT &
+ * manager tags. Keys and values can be either in numeric format,
+ * such as `tagKeys/{tag_key_id}` and `tagValues/456` or in namespaced
+ * format such as `{org_id|project_id}/{tag_key_short_name}` and
+ * `{tag_value_short_name}`. The field is ignored (both PUT &
* PATCH) when empty.
*
* Generated from protobuf field map resource_manager_tags = 377671164;
@@ -45,8 +47,10 @@ class InstanceParams extends \Google\Protobuf\Internal\Message
* @type array|\Google\Protobuf\Internal\MapField $resource_manager_tags
* Resource manager tags to be bound to the instance. Tag keys and values
* have the same definition as resource
- * manager tags. Keys must be in the format `tagKeys/{tag_key_id}`, and
- * values are in the format `tagValues/456`. The field is ignored (both PUT &
+ * manager tags. Keys and values can be either in numeric format,
+ * such as `tagKeys/{tag_key_id}` and `tagValues/456` or in namespaced
+ * format such as `{org_id|project_id}/{tag_key_short_name}` and
+ * `{tag_value_short_name}`. The field is ignored (both PUT &
* PATCH) when empty.
* }
*/
@@ -96,8 +100,10 @@ public function setRequestValidForDuration($var)
/**
* Resource manager tags to be bound to the instance. Tag keys and values
* have the same definition as resource
- * manager tags. Keys must be in the format `tagKeys/{tag_key_id}`, and
- * values are in the format `tagValues/456`. The field is ignored (both PUT &
+ * manager tags. Keys and values can be either in numeric format,
+ * such as `tagKeys/{tag_key_id}` and `tagValues/456` or in namespaced
+ * format such as `{org_id|project_id}/{tag_key_short_name}` and
+ * `{tag_value_short_name}`. The field is ignored (both PUT &
* PATCH) when empty.
*
* Generated from protobuf field map resource_manager_tags = 377671164;
@@ -111,8 +117,10 @@ public function getResourceManagerTags()
/**
* Resource manager tags to be bound to the instance. Tag keys and values
* have the same definition as resource
- * manager tags. Keys must be in the format `tagKeys/{tag_key_id}`, and
- * values are in the format `tagValues/456`. The field is ignored (both PUT &
+ * manager tags. Keys and values can be either in numeric format,
+ * such as `tagKeys/{tag_key_id}` and `tagValues/456` or in namespaced
+ * format such as `{org_id|project_id}/{tag_key_short_name}` and
+ * `{tag_value_short_name}`. The field is ignored (both PUT &
* PATCH) when empty.
*
* Generated from protobuf field map resource_manager_tags = 377671164;
diff --git a/Compute/src/V1/InstanceSettings.php b/Compute/src/V1/InstanceSettings.php
index 3568c4a8c112..24f5c80d78e6 100644
--- a/Compute/src/V1/InstanceSettings.php
+++ b/Compute/src/V1/InstanceSettings.php
@@ -32,7 +32,7 @@ class InstanceSettings extends \Google\Protobuf\Internal\Message
*/
protected $fingerprint = null;
/**
- * [Output Only] Type of the resource. Alwayscompute#instance_settings for instance settings.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#instance_settings for instance settings.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -45,7 +45,7 @@ class InstanceSettings extends \Google\Protobuf\Internal\Message
*/
protected $metadata = null;
/**
- * [Output Only] URL of the zone where the resource resides
+ * Output only. [Output Only] URL of the zone where the resource resides
* You must specify this field as part of the HTTP request URL. It is not
* settable as a field in the request body.
*
@@ -70,12 +70,12 @@ class InstanceSettings extends \Google\Protobuf\Internal\Message
* To see the latest fingerprint, make a get() request to
* retrieve the resource.
* @type string $kind
- * [Output Only] Type of the resource. Alwayscompute#instance_settings for instance settings.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#instance_settings for instance settings.
* @type \Google\Cloud\Compute\V1\InstanceSettingsMetadata $metadata
* The metadata key/value pairs assigned to all the instances in the
* corresponding scope.
* @type string $zone
- * [Output Only] URL of the zone where the resource resides
+ * Output only. [Output Only] URL of the zone where the resource resides
* You must specify this field as part of the HTTP request URL. It is not
* settable as a field in the request body.
* }
@@ -138,7 +138,7 @@ public function setFingerprint($var)
}
/**
- * [Output Only] Type of the resource. Alwayscompute#instance_settings for instance settings.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#instance_settings for instance settings.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -159,7 +159,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Alwayscompute#instance_settings for instance settings.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#instance_settings for instance settings.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -212,7 +212,7 @@ public function setMetadata($var)
}
/**
- * [Output Only] URL of the zone where the resource resides
+ * Output only. [Output Only] URL of the zone where the resource resides
* You must specify this field as part of the HTTP request URL. It is not
* settable as a field in the request body.
*
@@ -235,7 +235,7 @@ public function clearZone()
}
/**
- * [Output Only] URL of the zone where the resource resides
+ * Output only. [Output Only] URL of the zone where the resource resides
* You must specify this field as part of the HTTP request URL. It is not
* settable as a field in the request body.
*
diff --git a/Compute/src/V1/InstanceSettingsMetadata.php b/Compute/src/V1/InstanceSettingsMetadata.php
index fa7383e8151a..230d6ac231e0 100644
--- a/Compute/src/V1/InstanceSettingsMetadata.php
+++ b/Compute/src/V1/InstanceSettingsMetadata.php
@@ -22,7 +22,7 @@ class InstanceSettingsMetadata extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of the resource. Always compute#metadata
+ * Output only. [Output Only] Type of the resource. Always compute#metadata
* for metadata.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -39,7 +39,7 @@ class InstanceSettingsMetadata extends \Google\Protobuf\Internal\Message
* A metadata key/value items map.
* The total size of all keys and values must be less than 512KB.
* @type string $kind
- * [Output Only] Type of the resource. Always compute#metadata
+ * Output only. [Output Only] Type of the resource. Always compute#metadata
* for metadata.
* }
*/
@@ -77,7 +77,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of the resource. Always compute#metadata
+ * Output only. [Output Only] Type of the resource. Always compute#metadata
* for metadata.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -99,7 +99,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Always compute#metadata
+ * Output only. [Output Only] Type of the resource. Always compute#metadata
* for metadata.
*
* Generated from protobuf field optional string kind = 3292052;
diff --git a/Compute/src/V1/InstanceTemplate.php b/Compute/src/V1/InstanceTemplate.php
index d6a7b62382e5..c819fa68418e 100644
--- a/Compute/src/V1/InstanceTemplate.php
+++ b/Compute/src/V1/InstanceTemplate.php
@@ -26,7 +26,7 @@
class InstanceTemplate extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] The creation timestamp for this instance template inRFC3339
+ * Output only. [Output Only] The creation timestamp for this instance template inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -40,14 +40,14 @@ class InstanceTemplate extends \Google\Protobuf\Internal\Message
*/
protected $description = null;
/**
- * [Output Only] A unique identifier for this instance template. The server
+ * Output only. [Output Only] A unique identifier for this instance template. The server
* defines this identifier.
*
* Generated from protobuf field optional uint64 id = 3355;
*/
protected $id = null;
/**
- * [Output Only] The resource type, which is alwayscompute#instanceTemplate for instance templates.
+ * Output only. [Output Only] The resource type, which is alwayscompute#instanceTemplate for instance templates.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -71,14 +71,14 @@ class InstanceTemplate extends \Google\Protobuf\Internal\Message
*/
protected $properties = null;
/**
- * [Output Only] URL of the region where the instance template resides. Only
+ * Output only. [Output Only] URL of the region where the instance template resides. Only
* applicable for regional resources.
*
* Generated from protobuf field optional string region = 138946292;
*/
protected $region = null;
/**
- * [Output Only] The URL for this instance template. The server defines this
+ * Output only. [Output Only] The URL for this instance template. The server defines this
* URL.
*
* Generated from protobuf field optional string self_link = 456214797;
@@ -108,16 +108,16 @@ class InstanceTemplate extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $creation_timestamp
- * [Output Only] The creation timestamp for this instance template inRFC3339
+ * Output only. [Output Only] The creation timestamp for this instance template inRFC3339
* text format.
* @type string $description
* An optional description of this resource. Provide this property when you
* create the resource.
* @type int|string $id
- * [Output Only] A unique identifier for this instance template. The server
+ * Output only. [Output Only] A unique identifier for this instance template. The server
* defines this identifier.
* @type string $kind
- * [Output Only] The resource type, which is alwayscompute#instanceTemplate for instance templates.
+ * Output only. [Output Only] The resource type, which is alwayscompute#instanceTemplate for instance templates.
* @type string $name
* Name of the resource; provided by the client when the resource is created.
* The name must be 1-63 characters long, and comply withRFC1035.
@@ -129,10 +129,10 @@ class InstanceTemplate extends \Google\Protobuf\Internal\Message
* @type \Google\Cloud\Compute\V1\InstanceProperties $properties
* The instance properties for this instance template.
* @type string $region
- * [Output Only] URL of the region where the instance template resides. Only
+ * Output only. [Output Only] URL of the region where the instance template resides. Only
* applicable for regional resources.
* @type string $self_link
- * [Output Only] The URL for this instance template. The server defines this
+ * Output only. [Output Only] The URL for this instance template. The server defines this
* URL.
* @type string $source_instance
* The source instance used to create the template. You can provide this as a
@@ -150,7 +150,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] The creation timestamp for this instance template inRFC3339
+ * Output only. [Output Only] The creation timestamp for this instance template inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -172,7 +172,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] The creation timestamp for this instance template inRFC3339
+ * Output only. [Output Only] The creation timestamp for this instance template inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -226,7 +226,7 @@ public function setDescription($var)
}
/**
- * [Output Only] A unique identifier for this instance template. The server
+ * Output only. [Output Only] A unique identifier for this instance template. The server
* defines this identifier.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -248,7 +248,7 @@ public function clearId()
}
/**
- * [Output Only] A unique identifier for this instance template. The server
+ * Output only. [Output Only] A unique identifier for this instance template. The server
* defines this identifier.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -264,7 +264,7 @@ public function setId($var)
}
/**
- * [Output Only] The resource type, which is alwayscompute#instanceTemplate for instance templates.
+ * Output only. [Output Only] The resource type, which is alwayscompute#instanceTemplate for instance templates.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -285,7 +285,7 @@ public function clearKind()
}
/**
- * [Output Only] The resource type, which is alwayscompute#instanceTemplate for instance templates.
+ * Output only. [Output Only] The resource type, which is alwayscompute#instanceTemplate for instance templates.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -384,7 +384,7 @@ public function setProperties($var)
}
/**
- * [Output Only] URL of the region where the instance template resides. Only
+ * Output only. [Output Only] URL of the region where the instance template resides. Only
* applicable for regional resources.
*
* Generated from protobuf field optional string region = 138946292;
@@ -406,7 +406,7 @@ public function clearRegion()
}
/**
- * [Output Only] URL of the region where the instance template resides. Only
+ * Output only. [Output Only] URL of the region where the instance template resides. Only
* applicable for regional resources.
*
* Generated from protobuf field optional string region = 138946292;
@@ -422,7 +422,7 @@ public function setRegion($var)
}
/**
- * [Output Only] The URL for this instance template. The server defines this
+ * Output only. [Output Only] The URL for this instance template. The server defines this
* URL.
*
* Generated from protobuf field optional string self_link = 456214797;
@@ -444,7 +444,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] The URL for this instance template. The server defines this
+ * Output only. [Output Only] The URL for this instance template. The server defines this
* URL.
*
* Generated from protobuf field optional string self_link = 456214797;
diff --git a/Compute/src/V1/InstanceTemplateAggregatedList.php b/Compute/src/V1/InstanceTemplateAggregatedList.php
index 83ef27a8db06..11374f42430b 100644
--- a/Compute/src/V1/InstanceTemplateAggregatedList.php
+++ b/Compute/src/V1/InstanceTemplateAggregatedList.php
@@ -28,7 +28,7 @@ class InstanceTemplateAggregatedList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -44,7 +44,7 @@ class InstanceTemplateAggregatedList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -67,7 +67,7 @@ class InstanceTemplateAggregatedList extends \Google\Protobuf\Internal\Message
* @type array|\Google\Protobuf\Internal\MapField $items
* A list of InstanceTemplatesScopedList resources.
* @type string $kind
- * Type of resource.
+ * Output only. Type of resource.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -75,7 +75,7 @@ class InstanceTemplateAggregatedList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -148,7 +148,7 @@ public function setItems($var)
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -169,7 +169,7 @@ public function clearKind()
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -228,7 +228,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -249,7 +249,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/InstanceTemplateList.php b/Compute/src/V1/InstanceTemplateList.php
index 2bb9c8b16773..e8652db9b56e 100644
--- a/Compute/src/V1/InstanceTemplateList.php
+++ b/Compute/src/V1/InstanceTemplateList.php
@@ -28,7 +28,7 @@ class InstanceTemplateList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] The resource type, which is alwayscompute#instanceTemplatesListResponse for instance template
+ * Output only. [Output Only] The resource type, which is alwayscompute#instanceTemplatesListResponse for instance template
* lists.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -45,7 +45,7 @@ class InstanceTemplateList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -68,7 +68,7 @@ class InstanceTemplateList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\InstanceTemplate>|\Google\Protobuf\Internal\RepeatedField $items
* A list of InstanceTemplate resources.
* @type string $kind
- * [Output Only] The resource type, which is alwayscompute#instanceTemplatesListResponse for instance template
+ * Output only. [Output Only] The resource type, which is alwayscompute#instanceTemplatesListResponse for instance template
* lists.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -77,7 +77,7 @@ class InstanceTemplateList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -150,7 +150,7 @@ public function setItems($var)
}
/**
- * [Output Only] The resource type, which is alwayscompute#instanceTemplatesListResponse for instance template
+ * Output only. [Output Only] The resource type, which is alwayscompute#instanceTemplatesListResponse for instance template
* lists.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -172,7 +172,7 @@ public function clearKind()
}
/**
- * [Output Only] The resource type, which is alwayscompute#instanceTemplatesListResponse for instance template
+ * Output only. [Output Only] The resource type, which is alwayscompute#instanceTemplatesListResponse for instance template
* lists.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -232,7 +232,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -253,7 +253,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/InstanceWithNamedPorts.php b/Compute/src/V1/InstanceWithNamedPorts.php
index 11f0b3b92626..3bea6ac67e76 100644
--- a/Compute/src/V1/InstanceWithNamedPorts.php
+++ b/Compute/src/V1/InstanceWithNamedPorts.php
@@ -15,19 +15,19 @@
class InstanceWithNamedPorts extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] The URL of the instance.
+ * Output only. [Output Only] The URL of the instance.
*
* Generated from protobuf field optional string instance = 18257045;
*/
protected $instance = null;
/**
- * [Output Only] The named ports that belong to this instance group.
+ * Output only. [Output Only] The named ports that belong to this instance group.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.NamedPort named_ports = 427598732;
*/
private $named_ports;
/**
- * [Output Only] The status of the instance.
+ * Output only. [Output Only] The status of the instance.
* Check the Status enum for the list of possible values.
*
* Generated from protobuf field optional string status = 181260274;
@@ -41,11 +41,11 @@ class InstanceWithNamedPorts extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $instance
- * [Output Only] The URL of the instance.
+ * Output only. [Output Only] The URL of the instance.
* @type array<\Google\Cloud\Compute\V1\NamedPort>|\Google\Protobuf\Internal\RepeatedField $named_ports
- * [Output Only] The named ports that belong to this instance group.
+ * Output only. [Output Only] The named ports that belong to this instance group.
* @type string $status
- * [Output Only] The status of the instance.
+ * Output only. [Output Only] The status of the instance.
* Check the Status enum for the list of possible values.
* }
*/
@@ -55,7 +55,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] The URL of the instance.
+ * Output only. [Output Only] The URL of the instance.
*
* Generated from protobuf field optional string instance = 18257045;
* @return string
@@ -76,7 +76,7 @@ public function clearInstance()
}
/**
- * [Output Only] The URL of the instance.
+ * Output only. [Output Only] The URL of the instance.
*
* Generated from protobuf field optional string instance = 18257045;
* @param string $var
@@ -91,7 +91,7 @@ public function setInstance($var)
}
/**
- * [Output Only] The named ports that belong to this instance group.
+ * Output only. [Output Only] The named ports that belong to this instance group.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.NamedPort named_ports = 427598732;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -102,7 +102,7 @@ public function getNamedPorts()
}
/**
- * [Output Only] The named ports that belong to this instance group.
+ * Output only. [Output Only] The named ports that belong to this instance group.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.NamedPort named_ports = 427598732;
* @param array<\Google\Cloud\Compute\V1\NamedPort>|\Google\Protobuf\Internal\RepeatedField $var
@@ -117,7 +117,7 @@ public function setNamedPorts($var)
}
/**
- * [Output Only] The status of the instance.
+ * Output only. [Output Only] The status of the instance.
* Check the Status enum for the list of possible values.
*
* Generated from protobuf field optional string status = 181260274;
@@ -139,7 +139,7 @@ public function clearStatus()
}
/**
- * [Output Only] The status of the instance.
+ * Output only. [Output Only] The status of the instance.
* Check the Status enum for the list of possible values.
*
* Generated from protobuf field optional string status = 181260274;
diff --git a/Compute/src/V1/InstanceWithNamedPorts/Status.php b/Compute/src/V1/InstanceWithNamedPorts/Status.php
index 07014c34561f..5e8a59a983dc 100644
--- a/Compute/src/V1/InstanceWithNamedPorts/Status.php
+++ b/Compute/src/V1/InstanceWithNamedPorts/Status.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] The status of the instance.
+ * Output only. [Output Only] The status of the instance.
*
* Protobuf type google.cloud.compute.v1.InstanceWithNamedPorts.Status
*/
diff --git a/Compute/src/V1/InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy.php b/Compute/src/V1/InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy.php
index bdead291996b..43c73b9c9a9c 100644
--- a/Compute/src/V1/InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy.php
+++ b/Compute/src/V1/InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy.php
@@ -15,26 +15,26 @@
class InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Deprecated, please use short name instead. The display name
+ * Output only. [Output Only] Deprecated, please use short name instead. The display name
* of the firewall policy.
*
* Generated from protobuf field optional string display_name = 4473832;
*/
protected $display_name = null;
/**
- * [Output Only] The name of the firewall policy.
+ * Output only. [Output Only] The name of the firewall policy.
*
* Generated from protobuf field optional string name = 3373707;
*/
protected $name = null;
/**
- * [Output Only] The packet mirroring rules that apply to the instance.
+ * Output only. [Output Only] The packet mirroring rules that apply to the instance.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.FirewallPolicyRule packet_mirroring_rules = 531644356;
*/
private $packet_mirroring_rules;
/**
- * [Output only] Priority of firewall policy association. Not applicable for
+ * Output only. [Output only] Priority of firewall policy association. Not applicable for
* type=HIERARCHY.
*
* Generated from protobuf field optional int32 priority = 445151652;
@@ -49,13 +49,13 @@ class InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy extends \Goo
*/
private $rules;
/**
- * [Output Only] The short name of the firewall policy.
+ * Output only. [Output Only] The short name of the firewall policy.
*
* Generated from protobuf field optional string short_name = 492051566;
*/
protected $short_name = null;
/**
- * [Output Only] The type of the firewall policy. Can be one of HIERARCHY,
+ * Output only. [Output Only] The type of the firewall policy. Can be one of HIERARCHY,
* NETWORK, NETWORK_REGIONAL, SYSTEM_GLOBAL, SYSTEM_REGIONAL.
* Check the Type enum for the list of possible values.
*
@@ -70,23 +70,23 @@ class InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy extends \Goo
* Optional. Data for populating the Message object.
*
* @type string $display_name
- * [Output Only] Deprecated, please use short name instead. The display name
+ * Output only. [Output Only] Deprecated, please use short name instead. The display name
* of the firewall policy.
* @type string $name
- * [Output Only] The name of the firewall policy.
+ * Output only. [Output Only] The name of the firewall policy.
* @type array<\Google\Cloud\Compute\V1\FirewallPolicyRule>|\Google\Protobuf\Internal\RepeatedField $packet_mirroring_rules
- * [Output Only] The packet mirroring rules that apply to the instance.
+ * Output only. [Output Only] The packet mirroring rules that apply to the instance.
* @type int $priority
- * [Output only] Priority of firewall policy association. Not applicable for
+ * Output only. [Output only] Priority of firewall policy association. Not applicable for
* type=HIERARCHY.
* @type array<\Google\Cloud\Compute\V1\FirewallPolicyRule>|\Google\Protobuf\Internal\RepeatedField $rules
* [Output Only] The rules that apply to the instance. Only rules that
* target the specific VM instance are returned if target service accounts
* or target secure tags are specified in the rules.
* @type string $short_name
- * [Output Only] The short name of the firewall policy.
+ * Output only. [Output Only] The short name of the firewall policy.
* @type string $type
- * [Output Only] The type of the firewall policy. Can be one of HIERARCHY,
+ * Output only. [Output Only] The type of the firewall policy. Can be one of HIERARCHY,
* NETWORK, NETWORK_REGIONAL, SYSTEM_GLOBAL, SYSTEM_REGIONAL.
* Check the Type enum for the list of possible values.
* }
@@ -97,7 +97,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Deprecated, please use short name instead. The display name
+ * Output only. [Output Only] Deprecated, please use short name instead. The display name
* of the firewall policy.
*
* Generated from protobuf field optional string display_name = 4473832;
@@ -119,7 +119,7 @@ public function clearDisplayName()
}
/**
- * [Output Only] Deprecated, please use short name instead. The display name
+ * Output only. [Output Only] Deprecated, please use short name instead. The display name
* of the firewall policy.
*
* Generated from protobuf field optional string display_name = 4473832;
@@ -135,7 +135,7 @@ public function setDisplayName($var)
}
/**
- * [Output Only] The name of the firewall policy.
+ * Output only. [Output Only] The name of the firewall policy.
*
* Generated from protobuf field optional string name = 3373707;
* @return string
@@ -156,7 +156,7 @@ public function clearName()
}
/**
- * [Output Only] The name of the firewall policy.
+ * Output only. [Output Only] The name of the firewall policy.
*
* Generated from protobuf field optional string name = 3373707;
* @param string $var
@@ -171,7 +171,7 @@ public function setName($var)
}
/**
- * [Output Only] The packet mirroring rules that apply to the instance.
+ * Output only. [Output Only] The packet mirroring rules that apply to the instance.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.FirewallPolicyRule packet_mirroring_rules = 531644356;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -182,7 +182,7 @@ public function getPacketMirroringRules()
}
/**
- * [Output Only] The packet mirroring rules that apply to the instance.
+ * Output only. [Output Only] The packet mirroring rules that apply to the instance.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.FirewallPolicyRule packet_mirroring_rules = 531644356;
* @param array<\Google\Cloud\Compute\V1\FirewallPolicyRule>|\Google\Protobuf\Internal\RepeatedField $var
@@ -197,7 +197,7 @@ public function setPacketMirroringRules($var)
}
/**
- * [Output only] Priority of firewall policy association. Not applicable for
+ * Output only. [Output only] Priority of firewall policy association. Not applicable for
* type=HIERARCHY.
*
* Generated from protobuf field optional int32 priority = 445151652;
@@ -219,7 +219,7 @@ public function clearPriority()
}
/**
- * [Output only] Priority of firewall policy association. Not applicable for
+ * Output only. [Output only] Priority of firewall policy association. Not applicable for
* type=HIERARCHY.
*
* Generated from protobuf field optional int32 priority = 445151652;
@@ -265,7 +265,7 @@ public function setRules($var)
}
/**
- * [Output Only] The short name of the firewall policy.
+ * Output only. [Output Only] The short name of the firewall policy.
*
* Generated from protobuf field optional string short_name = 492051566;
* @return string
@@ -286,7 +286,7 @@ public function clearShortName()
}
/**
- * [Output Only] The short name of the firewall policy.
+ * Output only. [Output Only] The short name of the firewall policy.
*
* Generated from protobuf field optional string short_name = 492051566;
* @param string $var
@@ -301,7 +301,7 @@ public function setShortName($var)
}
/**
- * [Output Only] The type of the firewall policy. Can be one of HIERARCHY,
+ * Output only. [Output Only] The type of the firewall policy. Can be one of HIERARCHY,
* NETWORK, NETWORK_REGIONAL, SYSTEM_GLOBAL, SYSTEM_REGIONAL.
* Check the Type enum for the list of possible values.
*
@@ -324,7 +324,7 @@ public function clearType()
}
/**
- * [Output Only] The type of the firewall policy. Can be one of HIERARCHY,
+ * Output only. [Output Only] The type of the firewall policy. Can be one of HIERARCHY,
* NETWORK, NETWORK_REGIONAL, SYSTEM_GLOBAL, SYSTEM_REGIONAL.
* Check the Type enum for the list of possible values.
*
diff --git a/Compute/src/V1/InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy/Type.php b/Compute/src/V1/InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy/Type.php
index fe08b17c8cb8..11b822c93e67 100644
--- a/Compute/src/V1/InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy/Type.php
+++ b/Compute/src/V1/InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy/Type.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] The type of the firewall policy. Can be one of HIERARCHY,
+ * Output only. [Output Only] The type of the firewall policy. Can be one of HIERARCHY,
* NETWORK, NETWORK_REGIONAL, SYSTEM_GLOBAL, SYSTEM_REGIONAL.
*
* Protobuf type google.cloud.compute.v1.InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy.Type
diff --git a/Compute/src/V1/InstantSnapshot.php b/Compute/src/V1/InstantSnapshot.php
index 95d81265fe1c..2736d65e23d9 100644
--- a/Compute/src/V1/InstantSnapshot.php
+++ b/Compute/src/V1/InstantSnapshot.php
@@ -17,7 +17,7 @@
class InstantSnapshot extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] The architecture of the instant snapshot. Valid values are
+ * Output only. [Output Only] The architecture of the instant snapshot. Valid values are
* ARM64 or X86_64.
* Check the Architecture enum for the list of possible values.
*
@@ -25,7 +25,7 @@ class InstantSnapshot extends \Google\Protobuf\Internal\Message
*/
protected $architecture = null;
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -39,20 +39,20 @@ class InstantSnapshot extends \Google\Protobuf\Internal\Message
*/
protected $description = null;
/**
- * [Output Only] Size of the source disk, specified in GB.
+ * Output only. [Output Only] Size of the source disk, specified in GB.
*
* Generated from protobuf field optional int64 disk_size_gb = 316263735;
*/
protected $disk_size_gb = null;
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
*/
protected $id = null;
/**
- * [Output Only] Type of the resource. Alwayscompute#instantSnapshot for InstantSnapshot resources.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#instantSnapshot for InstantSnapshot resources.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -91,7 +91,7 @@ class InstantSnapshot extends \Google\Protobuf\Internal\Message
*/
protected $name = null;
/**
- * [Output Only] URL of the region where the instant snapshot resides.
+ * Output only. [Output Only] URL of the region where the instant snapshot resides.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
*
@@ -99,7 +99,7 @@ class InstantSnapshot extends \Google\Protobuf\Internal\Message
*/
protected $region = null;
/**
- * [Output Only] Status information for the instant snapshot resource.
+ * Output only. [Output Only] Status information for the instant snapshot resource.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InstantSnapshotResourceStatus resource_status = 249429315;
*/
@@ -111,19 +111,19 @@ class InstantSnapshot extends \Google\Protobuf\Internal\Message
*/
protected $satisfies_pzi = null;
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool satisfies_pzs = 480964267;
*/
protected $satisfies_pzs = null;
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Server-defined URL for this resource's resource id.
+ * Output only. [Output Only] Server-defined URL for this resource's resource id.
*
* Generated from protobuf field optional string self_link_with_id = 44520962;
*/
@@ -150,7 +150,7 @@ class InstantSnapshot extends \Google\Protobuf\Internal\Message
*/
protected $source_disk = null;
/**
- * [Output Only] The ID value of the disk used to create this InstantSnapshot.
+ * Output only. [Output Only] The ID value of the disk used to create this InstantSnapshot.
* This value may be used to determine whether the InstantSnapshot
* was taken from the current or a previous instance of a given disk name.
*
@@ -158,14 +158,14 @@ class InstantSnapshot extends \Google\Protobuf\Internal\Message
*/
protected $source_disk_id = null;
/**
- * [Output Only] The status of the instantSnapshot. This can beCREATING, DELETING, FAILED, orREADY.
+ * Output only. [Output Only] The status of the instantSnapshot. This can beCREATING, DELETING, FAILED, orREADY.
* Check the Status enum for the list of possible values.
*
* Generated from protobuf field optional string status = 181260274;
*/
protected $status = null;
/**
- * [Output Only] URL of the zone where the instant snapshot resides.
+ * Output only. [Output Only] URL of the zone where the instant snapshot resides.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
*
@@ -180,22 +180,22 @@ class InstantSnapshot extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $architecture
- * [Output Only] The architecture of the instant snapshot. Valid values are
+ * Output only. [Output Only] The architecture of the instant snapshot. Valid values are
* ARM64 or X86_64.
* Check the Architecture enum for the list of possible values.
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $description
* An optional description of this resource. Provide this property when you
* create the resource.
* @type int|string $disk_size_gb
- * [Output Only] Size of the source disk, specified in GB.
+ * Output only. [Output Only] Size of the source disk, specified in GB.
* @type int|string $id
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type string $kind
- * [Output Only] Type of the resource. Alwayscompute#instantSnapshot for InstantSnapshot resources.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#instantSnapshot for InstantSnapshot resources.
* @type string $label_fingerprint
* A fingerprint for the labels being applied to this InstantSnapshot, which
* is essentially a hash of the labels set used for optimistic locking. The
@@ -218,19 +218,19 @@ class InstantSnapshot extends \Google\Protobuf\Internal\Message
* a dash, lowercase letter, or digit, except the last character, which cannot
* be a dash.
* @type string $region
- * [Output Only] URL of the region where the instant snapshot resides.
+ * Output only. [Output Only] URL of the region where the instant snapshot resides.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
* @type \Google\Cloud\Compute\V1\InstantSnapshotResourceStatus $resource_status
- * [Output Only] Status information for the instant snapshot resource.
+ * Output only. [Output Only] Status information for the instant snapshot resource.
* @type bool $satisfies_pzi
* Output only. Reserved for future use.
* @type bool $satisfies_pzs
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
* @type string $self_link
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
* @type string $self_link_with_id
- * [Output Only] Server-defined URL for this resource's resource id.
+ * Output only. [Output Only] Server-defined URL for this resource's resource id.
* @type string $source_disk
* URL of the source disk used to create this instant snapshot.
* Note that the source disk must be in the same zone/region as the
@@ -249,14 +249,14 @@ class InstantSnapshot extends \Google\Protobuf\Internal\Message
* -
* regions/region/disks/disk
* @type string $source_disk_id
- * [Output Only] The ID value of the disk used to create this InstantSnapshot.
+ * Output only. [Output Only] The ID value of the disk used to create this InstantSnapshot.
* This value may be used to determine whether the InstantSnapshot
* was taken from the current or a previous instance of a given disk name.
* @type string $status
- * [Output Only] The status of the instantSnapshot. This can beCREATING, DELETING, FAILED, orREADY.
+ * Output only. [Output Only] The status of the instantSnapshot. This can beCREATING, DELETING, FAILED, orREADY.
* Check the Status enum for the list of possible values.
* @type string $zone
- * [Output Only] URL of the zone where the instant snapshot resides.
+ * Output only. [Output Only] URL of the zone where the instant snapshot resides.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
* }
@@ -267,7 +267,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] The architecture of the instant snapshot. Valid values are
+ * Output only. [Output Only] The architecture of the instant snapshot. Valid values are
* ARM64 or X86_64.
* Check the Architecture enum for the list of possible values.
*
@@ -290,7 +290,7 @@ public function clearArchitecture()
}
/**
- * [Output Only] The architecture of the instant snapshot. Valid values are
+ * Output only. [Output Only] The architecture of the instant snapshot. Valid values are
* ARM64 or X86_64.
* Check the Architecture enum for the list of possible values.
*
@@ -307,7 +307,7 @@ public function setArchitecture($var)
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -329,7 +329,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -383,7 +383,7 @@ public function setDescription($var)
}
/**
- * [Output Only] Size of the source disk, specified in GB.
+ * Output only. [Output Only] Size of the source disk, specified in GB.
*
* Generated from protobuf field optional int64 disk_size_gb = 316263735;
* @return int|string
@@ -404,7 +404,7 @@ public function clearDiskSizeGb()
}
/**
- * [Output Only] Size of the source disk, specified in GB.
+ * Output only. [Output Only] Size of the source disk, specified in GB.
*
* Generated from protobuf field optional int64 disk_size_gb = 316263735;
* @param int|string $var
@@ -419,7 +419,7 @@ public function setDiskSizeGb($var)
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -441,7 +441,7 @@ public function clearId()
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -457,7 +457,7 @@ public function setId($var)
}
/**
- * [Output Only] Type of the resource. Alwayscompute#instantSnapshot for InstantSnapshot resources.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#instantSnapshot for InstantSnapshot resources.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -478,7 +478,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Alwayscompute#instantSnapshot for InstantSnapshot resources.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#instantSnapshot for InstantSnapshot resources.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -621,7 +621,7 @@ public function setName($var)
}
/**
- * [Output Only] URL of the region where the instant snapshot resides.
+ * Output only. [Output Only] URL of the region where the instant snapshot resides.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
*
@@ -644,7 +644,7 @@ public function clearRegion()
}
/**
- * [Output Only] URL of the region where the instant snapshot resides.
+ * Output only. [Output Only] URL of the region where the instant snapshot resides.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
*
@@ -661,7 +661,7 @@ public function setRegion($var)
}
/**
- * [Output Only] Status information for the instant snapshot resource.
+ * Output only. [Output Only] Status information for the instant snapshot resource.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InstantSnapshotResourceStatus resource_status = 249429315;
* @return \Google\Cloud\Compute\V1\InstantSnapshotResourceStatus|null
@@ -682,7 +682,7 @@ public function clearResourceStatus()
}
/**
- * [Output Only] Status information for the instant snapshot resource.
+ * Output only. [Output Only] Status information for the instant snapshot resource.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InstantSnapshotResourceStatus resource_status = 249429315;
* @param \Google\Cloud\Compute\V1\InstantSnapshotResourceStatus $var
@@ -733,7 +733,7 @@ public function setSatisfiesPzi($var)
}
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool satisfies_pzs = 480964267;
* @return bool
@@ -754,7 +754,7 @@ public function clearSatisfiesPzs()
}
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool satisfies_pzs = 480964267;
* @param bool $var
@@ -769,7 +769,7 @@ public function setSatisfiesPzs($var)
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -790,7 +790,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -805,7 +805,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Server-defined URL for this resource's resource id.
+ * Output only. [Output Only] Server-defined URL for this resource's resource id.
*
* Generated from protobuf field optional string self_link_with_id = 44520962;
* @return string
@@ -826,7 +826,7 @@ public function clearSelfLinkWithId()
}
/**
- * [Output Only] Server-defined URL for this resource's resource id.
+ * Output only. [Output Only] Server-defined URL for this resource's resource id.
*
* Generated from protobuf field optional string self_link_with_id = 44520962;
* @param string $var
@@ -907,7 +907,7 @@ public function setSourceDisk($var)
}
/**
- * [Output Only] The ID value of the disk used to create this InstantSnapshot.
+ * Output only. [Output Only] The ID value of the disk used to create this InstantSnapshot.
* This value may be used to determine whether the InstantSnapshot
* was taken from the current or a previous instance of a given disk name.
*
@@ -930,7 +930,7 @@ public function clearSourceDiskId()
}
/**
- * [Output Only] The ID value of the disk used to create this InstantSnapshot.
+ * Output only. [Output Only] The ID value of the disk used to create this InstantSnapshot.
* This value may be used to determine whether the InstantSnapshot
* was taken from the current or a previous instance of a given disk name.
*
@@ -947,7 +947,7 @@ public function setSourceDiskId($var)
}
/**
- * [Output Only] The status of the instantSnapshot. This can beCREATING, DELETING, FAILED, orREADY.
+ * Output only. [Output Only] The status of the instantSnapshot. This can beCREATING, DELETING, FAILED, orREADY.
* Check the Status enum for the list of possible values.
*
* Generated from protobuf field optional string status = 181260274;
@@ -969,7 +969,7 @@ public function clearStatus()
}
/**
- * [Output Only] The status of the instantSnapshot. This can beCREATING, DELETING, FAILED, orREADY.
+ * Output only. [Output Only] The status of the instantSnapshot. This can beCREATING, DELETING, FAILED, orREADY.
* Check the Status enum for the list of possible values.
*
* Generated from protobuf field optional string status = 181260274;
@@ -985,7 +985,7 @@ public function setStatus($var)
}
/**
- * [Output Only] URL of the zone where the instant snapshot resides.
+ * Output only. [Output Only] URL of the zone where the instant snapshot resides.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
*
@@ -1008,7 +1008,7 @@ public function clearZone()
}
/**
- * [Output Only] URL of the zone where the instant snapshot resides.
+ * Output only. [Output Only] URL of the zone where the instant snapshot resides.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
*
diff --git a/Compute/src/V1/InstantSnapshot/Architecture.php b/Compute/src/V1/InstantSnapshot/Architecture.php
index c68829b9c43d..16ad232172bc 100644
--- a/Compute/src/V1/InstantSnapshot/Architecture.php
+++ b/Compute/src/V1/InstantSnapshot/Architecture.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] The architecture of the instant snapshot. Valid values are
+ * Output only. [Output Only] The architecture of the instant snapshot. Valid values are
* ARM64 or X86_64.
*
* Protobuf type google.cloud.compute.v1.InstantSnapshot.Architecture
diff --git a/Compute/src/V1/InstantSnapshot/Status.php b/Compute/src/V1/InstantSnapshot/Status.php
index de1adc5b3078..827026c787a1 100644
--- a/Compute/src/V1/InstantSnapshot/Status.php
+++ b/Compute/src/V1/InstantSnapshot/Status.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] The status of the instantSnapshot. This can beCREATING, DELETING, FAILED, orREADY.
+ * Output only. [Output Only] The status of the instantSnapshot. This can beCREATING, DELETING, FAILED, orREADY.
*
* Protobuf type google.cloud.compute.v1.InstantSnapshot.Status
*/
diff --git a/Compute/src/V1/InstantSnapshotAggregatedList.php b/Compute/src/V1/InstantSnapshotAggregatedList.php
index a4f52a7f64ba..b7f5ce737af1 100644
--- a/Compute/src/V1/InstantSnapshotAggregatedList.php
+++ b/Compute/src/V1/InstantSnapshotAggregatedList.php
@@ -27,7 +27,7 @@ class InstantSnapshotAggregatedList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Alwayscompute#instantSnapshotAggregatedList for aggregated lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#instantSnapshotAggregatedList for aggregated lists of
* instantSnapshots.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -44,13 +44,13 @@ class InstantSnapshotAggregatedList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
@@ -73,7 +73,7 @@ class InstantSnapshotAggregatedList extends \Google\Protobuf\Internal\Message
* @type array|\Google\Protobuf\Internal\MapField $items
* A list of InstantSnapshotsScopedList resources.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#instantSnapshotAggregatedList for aggregated lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#instantSnapshotAggregatedList for aggregated lists of
* instantSnapshots.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -82,9 +82,9 @@ class InstantSnapshotAggregatedList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -157,7 +157,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#instantSnapshotAggregatedList for aggregated lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#instantSnapshotAggregatedList for aggregated lists of
* instantSnapshots.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -179,7 +179,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#instantSnapshotAggregatedList for aggregated lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#instantSnapshotAggregatedList for aggregated lists of
* instantSnapshots.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -239,7 +239,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -260,7 +260,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -275,7 +275,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -286,7 +286,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/InstantSnapshotList.php b/Compute/src/V1/InstantSnapshotList.php
index 8508bfdf5ebf..377c49519ca1 100644
--- a/Compute/src/V1/InstantSnapshotList.php
+++ b/Compute/src/V1/InstantSnapshotList.php
@@ -28,7 +28,7 @@ class InstantSnapshotList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -44,7 +44,7 @@ class InstantSnapshotList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -67,7 +67,7 @@ class InstantSnapshotList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\InstantSnapshot>|\Google\Protobuf\Internal\RepeatedField $items
* A list of InstantSnapshot resources.
* @type string $kind
- * Type of resource.
+ * Output only. Type of resource.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -75,7 +75,7 @@ class InstantSnapshotList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -148,7 +148,7 @@ public function setItems($var)
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -169,7 +169,7 @@ public function clearKind()
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -228,7 +228,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -249,7 +249,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/Interconnect.php b/Compute/src/V1/Interconnect.php
index 902733b53c6b..0be0ba68a206 100644
--- a/Compute/src/V1/Interconnect.php
+++ b/Compute/src/V1/Interconnect.php
@@ -59,14 +59,14 @@ class Interconnect extends \Google\Protobuf\Internal\Message
*/
private $available_features;
/**
- * [Output Only] A list of CircuitInfo objects, that describe the individual
+ * Output only. [Output Only] A list of CircuitInfo objects, that describe the individual
* circuits in this LAG.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.InterconnectCircuitInfo circuit_infos = 164839855;
*/
private $circuit_infos;
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -87,41 +87,41 @@ class Interconnect extends \Google\Protobuf\Internal\Message
*/
protected $description = null;
/**
- * [Output Only] A list of outages expected for this Interconnect.
+ * Output only. [Output Only] A list of outages expected for this Interconnect.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.InterconnectOutageNotification expected_outages = 264484123;
*/
private $expected_outages;
/**
- * [Output Only] IP address configured on the Google side of the Interconnect
+ * Output only. [Output Only] IP address configured on the Google side of the Interconnect
* link. This can be used only for ping tests.
*
* Generated from protobuf field optional string google_ip_address = 443105954;
*/
protected $google_ip_address = null;
/**
- * [Output Only] Google reference ID to be used when raising support tickets
+ * Output only. [Output Only] Google reference ID to be used when raising support tickets
* with Google or otherwise to debug backend connectivity issues.
*
* Generated from protobuf field optional string google_reference_id = 534944469;
*/
protected $google_reference_id = null;
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
*/
protected $id = null;
/**
- * [Output Only] A list of the URLs of all InterconnectAttachments configured
+ * Output only. [Output Only] A list of the URLs of all InterconnectAttachments configured
* to use this Interconnect.
*
* Generated from protobuf field repeated string interconnect_attachments = 425388415;
*/
private $interconnect_attachments;
/**
- * [Output Only] URLs of InterconnectGroups that include this Interconnect.
+ * Output only. [Output Only] URLs of InterconnectGroups that include this Interconnect.
* Order is arbitrary and items are unique.
*
* Generated from protobuf field repeated string interconnect_groups = 237049509;
@@ -140,7 +140,7 @@ class Interconnect extends \Google\Protobuf\Internal\Message
*/
protected $interconnect_type = null;
/**
- * [Output Only] Type of the resource. Alwayscompute#interconnect for interconnects.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#interconnect for interconnects.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -222,7 +222,7 @@ class Interconnect extends \Google\Protobuf\Internal\Message
*/
protected $noc_contact_email = null;
/**
- * [Output Only] The current status of this Interconnect's functionality,
+ * Output only. [Output Only] The current status of this Interconnect's functionality,
* which can take one of the following values:
* - OS_ACTIVE: A valid Interconnect, which is turned up and is ready to
* use. Attachments may be provisioned on this Interconnect.
@@ -244,7 +244,7 @@ class Interconnect extends \Google\Protobuf\Internal\Message
*/
protected $params = null;
/**
- * [Output Only] IP address configured on the customer side of the
+ * Output only. [Output Only] IP address configured on the customer side of the
* Interconnect link. The customer should configure this IP address during
* turnup when prompted by Google NOC. This can be used only for ping tests.
*
@@ -252,7 +252,7 @@ class Interconnect extends \Google\Protobuf\Internal\Message
*/
protected $peer_ip_address = null;
/**
- * [Output Only] Number of links actually provisioned in this interconnect.
+ * Output only. [Output Only] Number of links actually provisioned in this interconnect.
*
* Generated from protobuf field optional int32 provisioned_link_count = 410888565;
*/
@@ -287,19 +287,19 @@ class Interconnect extends \Google\Protobuf\Internal\Message
*/
protected $requested_link_count = null;
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool satisfies_pzs = 480964267;
*/
protected $satisfies_pzs = null;
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] The current state of Interconnect functionality, which can
+ * Output only. [Output Only] The current state of Interconnect functionality, which can
* take one of the following values:
* - ACTIVE: The Interconnect is valid, turned up and ready to use.
* Attachments may be provisioned on this Interconnect.
@@ -322,7 +322,7 @@ class Interconnect extends \Google\Protobuf\Internal\Message
*/
protected $subzone = null;
/**
- * [Output Only] A list of the URLs of all CrossSiteNetwork WireGroups
+ * Output only. [Output Only] A list of the URLs of all CrossSiteNetwork WireGroups
* configured to use this Interconnect. The Interconnect cannot be deleted if
* this list is non-empty.
*
@@ -361,10 +361,10 @@ class Interconnect extends \Google\Protobuf\Internal\Message
* it for Cross-Site Networking will fail.
* Check the AvailableFeatures enum for the list of possible values.
* @type array<\Google\Cloud\Compute\V1\InterconnectCircuitInfo>|\Google\Protobuf\Internal\RepeatedField $circuit_infos
- * [Output Only] A list of CircuitInfo objects, that describe the individual
+ * Output only. [Output Only] A list of CircuitInfo objects, that describe the individual
* circuits in this LAG.
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $customer_name
* Customer name, to put in the Letter of Authorization as the party
@@ -373,21 +373,21 @@ class Interconnect extends \Google\Protobuf\Internal\Message
* An optional description of this resource. Provide this property when you
* create the resource.
* @type array<\Google\Cloud\Compute\V1\InterconnectOutageNotification>|\Google\Protobuf\Internal\RepeatedField $expected_outages
- * [Output Only] A list of outages expected for this Interconnect.
+ * Output only. [Output Only] A list of outages expected for this Interconnect.
* @type string $google_ip_address
- * [Output Only] IP address configured on the Google side of the Interconnect
+ * Output only. [Output Only] IP address configured on the Google side of the Interconnect
* link. This can be used only for ping tests.
* @type string $google_reference_id
- * [Output Only] Google reference ID to be used when raising support tickets
+ * Output only. [Output Only] Google reference ID to be used when raising support tickets
* with Google or otherwise to debug backend connectivity issues.
* @type int|string $id
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type array|\Google\Protobuf\Internal\RepeatedField $interconnect_attachments
- * [Output Only] A list of the URLs of all InterconnectAttachments configured
+ * Output only. [Output Only] A list of the URLs of all InterconnectAttachments configured
* to use this Interconnect.
* @type array|\Google\Protobuf\Internal\RepeatedField $interconnect_groups
- * [Output Only] URLs of InterconnectGroups that include this Interconnect.
+ * Output only. [Output Only] URLs of InterconnectGroups that include this Interconnect.
* Order is arbitrary and items are unique.
* @type string $interconnect_type
* Type of interconnect, which can take one of the following values:
@@ -398,7 +398,7 @@ class Interconnect extends \Google\Protobuf\Internal\Message
* Note that a value IT_PRIVATE has been deprecated in favor of DEDICATED.
* Check the InterconnectType enum for the list of possible values.
* @type string $kind
- * [Output Only] Type of the resource. Alwayscompute#interconnect for interconnects.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#interconnect for interconnects.
* @type string $label_fingerprint
* A fingerprint for the labels being applied to this Interconnect, which
* is essentially a hash of the labels set used for optimistic locking. The
@@ -444,7 +444,7 @@ class Interconnect extends \Google\Protobuf\Internal\Message
* required for users who sign up for Cloud Interconnect using
* workforce identity federation.
* @type string $operational_status
- * [Output Only] The current status of this Interconnect's functionality,
+ * Output only. [Output Only] The current status of this Interconnect's functionality,
* which can take one of the following values:
* - OS_ACTIVE: A valid Interconnect, which is turned up and is ready to
* use. Attachments may be provisioned on this Interconnect.
@@ -458,11 +458,11 @@ class Interconnect extends \Google\Protobuf\Internal\Message
* Input only. [Input Only] Additional params passed with the request, but not persisted
* as part of resource payload.
* @type string $peer_ip_address
- * [Output Only] IP address configured on the customer side of the
+ * Output only. [Output Only] IP address configured on the customer side of the
* Interconnect link. The customer should configure this IP address during
* turnup when prompted by Google NOC. This can be used only for ping tests.
* @type int $provisioned_link_count
- * [Output Only] Number of links actually provisioned in this interconnect.
+ * Output only. [Output Only] Number of links actually provisioned in this interconnect.
* @type string $remote_location
* Indicates that this is a Cross-Cloud Interconnect. This field specifies the
* location outside of Google's network that the interconnect is connected to.
@@ -481,11 +481,11 @@ class Interconnect extends \Google\Protobuf\Internal\Message
* Target number of physical links in the link bundle, as requested by the
* customer.
* @type bool $satisfies_pzs
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
* @type string $self_link
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
* @type string $state
- * [Output Only] The current state of Interconnect functionality, which can
+ * Output only. [Output Only] The current state of Interconnect functionality, which can
* take one of the following values:
* - ACTIVE: The Interconnect is valid, turned up and ready to use.
* Attachments may be provisioned on this Interconnect.
@@ -500,7 +500,7 @@ class Interconnect extends \Google\Protobuf\Internal\Message
* this connection is to be provisioned.
* Check the Subzone enum for the list of possible values.
* @type array|\Google\Protobuf\Internal\RepeatedField $wire_groups
- * [Output Only] A list of the URLs of all CrossSiteNetwork WireGroups
+ * Output only. [Output Only] A list of the URLs of all CrossSiteNetwork WireGroups
* configured to use this Interconnect. The Interconnect cannot be deleted if
* this list is non-empty.
* }
@@ -677,7 +677,7 @@ public function setAvailableFeatures($var)
}
/**
- * [Output Only] A list of CircuitInfo objects, that describe the individual
+ * Output only. [Output Only] A list of CircuitInfo objects, that describe the individual
* circuits in this LAG.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.InterconnectCircuitInfo circuit_infos = 164839855;
@@ -689,7 +689,7 @@ public function getCircuitInfos()
}
/**
- * [Output Only] A list of CircuitInfo objects, that describe the individual
+ * Output only. [Output Only] A list of CircuitInfo objects, that describe the individual
* circuits in this LAG.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.InterconnectCircuitInfo circuit_infos = 164839855;
@@ -705,7 +705,7 @@ public function setCircuitInfos($var)
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -727,7 +727,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -819,7 +819,7 @@ public function setDescription($var)
}
/**
- * [Output Only] A list of outages expected for this Interconnect.
+ * Output only. [Output Only] A list of outages expected for this Interconnect.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.InterconnectOutageNotification expected_outages = 264484123;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -830,7 +830,7 @@ public function getExpectedOutages()
}
/**
- * [Output Only] A list of outages expected for this Interconnect.
+ * Output only. [Output Only] A list of outages expected for this Interconnect.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.InterconnectOutageNotification expected_outages = 264484123;
* @param array<\Google\Cloud\Compute\V1\InterconnectOutageNotification>|\Google\Protobuf\Internal\RepeatedField $var
@@ -845,7 +845,7 @@ public function setExpectedOutages($var)
}
/**
- * [Output Only] IP address configured on the Google side of the Interconnect
+ * Output only. [Output Only] IP address configured on the Google side of the Interconnect
* link. This can be used only for ping tests.
*
* Generated from protobuf field optional string google_ip_address = 443105954;
@@ -867,7 +867,7 @@ public function clearGoogleIpAddress()
}
/**
- * [Output Only] IP address configured on the Google side of the Interconnect
+ * Output only. [Output Only] IP address configured on the Google side of the Interconnect
* link. This can be used only for ping tests.
*
* Generated from protobuf field optional string google_ip_address = 443105954;
@@ -883,7 +883,7 @@ public function setGoogleIpAddress($var)
}
/**
- * [Output Only] Google reference ID to be used when raising support tickets
+ * Output only. [Output Only] Google reference ID to be used when raising support tickets
* with Google or otherwise to debug backend connectivity issues.
*
* Generated from protobuf field optional string google_reference_id = 534944469;
@@ -905,7 +905,7 @@ public function clearGoogleReferenceId()
}
/**
- * [Output Only] Google reference ID to be used when raising support tickets
+ * Output only. [Output Only] Google reference ID to be used when raising support tickets
* with Google or otherwise to debug backend connectivity issues.
*
* Generated from protobuf field optional string google_reference_id = 534944469;
@@ -921,7 +921,7 @@ public function setGoogleReferenceId($var)
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -943,7 +943,7 @@ public function clearId()
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -959,7 +959,7 @@ public function setId($var)
}
/**
- * [Output Only] A list of the URLs of all InterconnectAttachments configured
+ * Output only. [Output Only] A list of the URLs of all InterconnectAttachments configured
* to use this Interconnect.
*
* Generated from protobuf field repeated string interconnect_attachments = 425388415;
@@ -971,7 +971,7 @@ public function getInterconnectAttachments()
}
/**
- * [Output Only] A list of the URLs of all InterconnectAttachments configured
+ * Output only. [Output Only] A list of the URLs of all InterconnectAttachments configured
* to use this Interconnect.
*
* Generated from protobuf field repeated string interconnect_attachments = 425388415;
@@ -987,7 +987,7 @@ public function setInterconnectAttachments($var)
}
/**
- * [Output Only] URLs of InterconnectGroups that include this Interconnect.
+ * Output only. [Output Only] URLs of InterconnectGroups that include this Interconnect.
* Order is arbitrary and items are unique.
*
* Generated from protobuf field repeated string interconnect_groups = 237049509;
@@ -999,7 +999,7 @@ public function getInterconnectGroups()
}
/**
- * [Output Only] URLs of InterconnectGroups that include this Interconnect.
+ * Output only. [Output Only] URLs of InterconnectGroups that include this Interconnect.
* Order is arbitrary and items are unique.
*
* Generated from protobuf field repeated string interconnect_groups = 237049509;
@@ -1063,7 +1063,7 @@ public function setInterconnectType($var)
}
/**
- * [Output Only] Type of the resource. Alwayscompute#interconnect for interconnects.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#interconnect for interconnects.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -1084,7 +1084,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Alwayscompute#interconnect for interconnects.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#interconnect for interconnects.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -1433,7 +1433,7 @@ public function setNocContactEmail($var)
}
/**
- * [Output Only] The current status of this Interconnect's functionality,
+ * Output only. [Output Only] The current status of this Interconnect's functionality,
* which can take one of the following values:
* - OS_ACTIVE: A valid Interconnect, which is turned up and is ready to
* use. Attachments may be provisioned on this Interconnect.
@@ -1463,7 +1463,7 @@ public function clearOperationalStatus()
}
/**
- * [Output Only] The current status of this Interconnect's functionality,
+ * Output only. [Output Only] The current status of this Interconnect's functionality,
* which can take one of the following values:
* - OS_ACTIVE: A valid Interconnect, which is turned up and is ready to
* use. Attachments may be provisioned on this Interconnect.
@@ -1525,7 +1525,7 @@ public function setParams($var)
}
/**
- * [Output Only] IP address configured on the customer side of the
+ * Output only. [Output Only] IP address configured on the customer side of the
* Interconnect link. The customer should configure this IP address during
* turnup when prompted by Google NOC. This can be used only for ping tests.
*
@@ -1548,7 +1548,7 @@ public function clearPeerIpAddress()
}
/**
- * [Output Only] IP address configured on the customer side of the
+ * Output only. [Output Only] IP address configured on the customer side of the
* Interconnect link. The customer should configure this IP address during
* turnup when prompted by Google NOC. This can be used only for ping tests.
*
@@ -1565,7 +1565,7 @@ public function setPeerIpAddress($var)
}
/**
- * [Output Only] Number of links actually provisioned in this interconnect.
+ * Output only. [Output Only] Number of links actually provisioned in this interconnect.
*
* Generated from protobuf field optional int32 provisioned_link_count = 410888565;
* @return int
@@ -1586,7 +1586,7 @@ public function clearProvisionedLinkCount()
}
/**
- * [Output Only] Number of links actually provisioned in this interconnect.
+ * Output only. [Output Only] Number of links actually provisioned in this interconnect.
*
* Generated from protobuf field optional int32 provisioned_link_count = 410888565;
* @param int $var
@@ -1721,7 +1721,7 @@ public function setRequestedLinkCount($var)
}
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool satisfies_pzs = 480964267;
* @return bool
@@ -1742,7 +1742,7 @@ public function clearSatisfiesPzs()
}
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool satisfies_pzs = 480964267;
* @param bool $var
@@ -1757,7 +1757,7 @@ public function setSatisfiesPzs($var)
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -1778,7 +1778,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -1793,7 +1793,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] The current state of Interconnect functionality, which can
+ * Output only. [Output Only] The current state of Interconnect functionality, which can
* take one of the following values:
* - ACTIVE: The Interconnect is valid, turned up and ready to use.
* Attachments may be provisioned on this Interconnect.
@@ -1823,7 +1823,7 @@ public function clearState()
}
/**
- * [Output Only] The current state of Interconnect functionality, which can
+ * Output only. [Output Only] The current state of Interconnect functionality, which can
* take one of the following values:
* - ACTIVE: The Interconnect is valid, turned up and ready to use.
* Attachments may be provisioned on this Interconnect.
@@ -1887,7 +1887,7 @@ public function setSubzone($var)
}
/**
- * [Output Only] A list of the URLs of all CrossSiteNetwork WireGroups
+ * Output only. [Output Only] A list of the URLs of all CrossSiteNetwork WireGroups
* configured to use this Interconnect. The Interconnect cannot be deleted if
* this list is non-empty.
*
@@ -1900,7 +1900,7 @@ public function getWireGroups()
}
/**
- * [Output Only] A list of the URLs of all CrossSiteNetwork WireGroups
+ * Output only. [Output Only] A list of the URLs of all CrossSiteNetwork WireGroups
* configured to use this Interconnect. The Interconnect cannot be deleted if
* this list is non-empty.
*
diff --git a/Compute/src/V1/Interconnect/OperationalStatus.php b/Compute/src/V1/Interconnect/OperationalStatus.php
index 43be0eada491..f712198fec38 100644
--- a/Compute/src/V1/Interconnect/OperationalStatus.php
+++ b/Compute/src/V1/Interconnect/OperationalStatus.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] The current status of this Interconnect's functionality,
+ * Output only. [Output Only] The current status of this Interconnect's functionality,
* which can take one of the following values:
* - OS_ACTIVE: A valid Interconnect, which is turned up and is ready to
* use. Attachments may be provisioned on this Interconnect.
diff --git a/Compute/src/V1/Interconnect/State.php b/Compute/src/V1/Interconnect/State.php
index f8d69a001a3c..576b32d324cb 100644
--- a/Compute/src/V1/Interconnect/State.php
+++ b/Compute/src/V1/Interconnect/State.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] The current state of Interconnect functionality, which can
+ * Output only. [Output Only] The current state of Interconnect functionality, which can
* take one of the following values:
* - ACTIVE: The Interconnect is valid, turned up and ready to use.
* Attachments may be provisioned on this Interconnect.
diff --git a/Compute/src/V1/InterconnectAttachment.php b/Compute/src/V1/InterconnectAttachment.php
index be47b999b3eb..d8edb3720a70 100644
--- a/Compute/src/V1/InterconnectAttachment.php
+++ b/Compute/src/V1/InterconnectAttachment.php
@@ -27,7 +27,7 @@ class InterconnectAttachment extends \Google\Protobuf\Internal\Message
*/
protected $admin_enabled = null;
/**
- * [Output Only] URL of the AttachmentGroup that includes this Attachment.
+ * Output only. [Output Only] URL of the AttachmentGroup that includes this Attachment.
*
* Generated from protobuf field optional string attachment_group = 63442019;
*/
@@ -57,6 +57,46 @@ class InterconnectAttachment extends \Google\Protobuf\Internal\Message
* Generated from protobuf field optional string bandwidth = 181715121;
*/
protected $bandwidth = null;
+ /**
+ * Single IPv4 address + prefix length to be configured on the cloud router
+ * interface for this interconnect attachment.
+ * - Both candidate_cloud_router_ip_address and
+ * candidate_customer_router_ip_address fields must be set or both must be
+ * unset.
+ * - Prefix length of both candidate_cloud_router_ip_address and
+ * candidate_customer_router_ip_address must be the same.
+ * - Max prefix length is 31.
+ *
+ * Generated from protobuf field optional string candidate_cloud_router_ip_address = 311379276;
+ */
+ protected $candidate_cloud_router_ip_address = null;
+ /**
+ * Single IPv6 address + prefix length to be configured on the cloud router
+ * interface for this interconnect attachment.
+ * - Both candidate_cloud_router_ipv6_address and
+ * candidate_customer_router_ipv6_address fields must be set or both must be
+ * unset.
+ * - Prefix length of both candidate_cloud_router_ipv6_address and
+ * candidate_customer_router_ipv6_address must be the same.
+ * - Max prefix length is 126.
+ *
+ * Generated from protobuf field optional string candidate_cloud_router_ipv6_address = 417499660;
+ */
+ protected $candidate_cloud_router_ipv6_address = null;
+ /**
+ * Single IPv4 address + prefix length to be configured on the customer router
+ * interface for this interconnect attachment.
+ *
+ * Generated from protobuf field optional string candidate_customer_router_ip_address = 339113389;
+ */
+ protected $candidate_customer_router_ip_address = null;
+ /**
+ * Single IPv6 address + prefix length to be configured on the customer router
+ * interface for this interconnect attachment.
+ *
+ * Generated from protobuf field optional string candidate_customer_router_ipv6_address = 226436653;
+ */
+ protected $candidate_customer_router_ipv6_address = null;
/**
* This field is not available.
*
@@ -76,14 +116,14 @@ class InterconnectAttachment extends \Google\Protobuf\Internal\Message
*/
private $candidate_subnets;
/**
- * [Output Only] IPv4 address + prefix length to be configured on Cloud Router
+ * Output only. [Output Only] IPv4 address + prefix length to be configured on Cloud Router
* Interface for this interconnect attachment.
*
* Generated from protobuf field optional string cloud_router_ip_address = 287392776;
*/
protected $cloud_router_ip_address = null;
/**
- * [Output Only] IPv6 address + prefix length to be configured on Cloud
+ * Output only. [Output Only] IPv6 address + prefix length to be configured on Cloud
* Router Interface for this interconnect attachment.
*
* Generated from protobuf field optional string cloud_router_ipv6_address = 451922376;
@@ -96,28 +136,28 @@ class InterconnectAttachment extends \Google\Protobuf\Internal\Message
*/
protected $cloud_router_ipv6_interface_id = null;
/**
- * [Output Only] Constraints for this attachment, if any. The attachment does
+ * Output only. [Output Only] Constraints for this attachment, if any. The attachment does
* not work if these constraints are not met.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InterconnectAttachmentConfigurationConstraints configuration_constraints = 179681389;
*/
protected $configuration_constraints = null;
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
*/
protected $creation_timestamp = null;
/**
- * [Output Only] IPv4 address + prefix length to be configured on the customer
+ * Output only. [Output Only] IPv4 address + prefix length to be configured on the customer
* router subinterface for this interconnect attachment.
*
* Generated from protobuf field optional string customer_router_ip_address = 332475761;
*/
protected $customer_router_ip_address = null;
/**
- * [Output Only] IPv6 address + prefix length to be configured on the
+ * Output only. [Output Only] IPv6 address + prefix length to be configured on the
* customer router subinterface for this interconnect attachment.
*
* Generated from protobuf field optional string customer_router_ipv6_address = 290127089;
@@ -130,7 +170,7 @@ class InterconnectAttachment extends \Google\Protobuf\Internal\Message
*/
protected $customer_router_ipv6_interface_id = null;
/**
- * [Output Only] Dataplane version for this InterconnectAttachment. This
+ * Output only. [Output Only] Dataplane version for this InterconnectAttachment. This
* field is only present for Dataplane version 2 and higher. Absence of this
* field in the API output indicates that the Dataplane is version 1.
*
@@ -179,7 +219,7 @@ class InterconnectAttachment extends \Google\Protobuf\Internal\Message
*/
protected $encryption = null;
/**
- * [Output Only] Google reference ID, to be used when raising support tickets
+ * Output only. [Output Only] Google reference ID, to be used when raising support tickets
* with Google or otherwise to debug backend connectivity issues.
* [Deprecated] This field is not used.
*
@@ -187,7 +227,7 @@ class InterconnectAttachment extends \Google\Protobuf\Internal\Message
*/
protected $google_reference_id = null;
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -220,7 +260,7 @@ class InterconnectAttachment extends \Google\Protobuf\Internal\Message
*/
private $ipsec_internal_addresses;
/**
- * [Output Only] Type of the resource. Alwayscompute#interconnectAttachment for interconnect attachments.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#interconnectAttachment for interconnect attachments.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -278,7 +318,7 @@ class InterconnectAttachment extends \Google\Protobuf\Internal\Message
*/
protected $name = null;
/**
- * [Output Only] The current status of whether or not this interconnect
+ * Output only. [Output Only] The current status of whether or not this interconnect
* attachment is functional, which can take one of the following values:
* - OS_ACTIVE: The attachment has been turned up and is ready to
* use.
@@ -325,7 +365,7 @@ class InterconnectAttachment extends \Google\Protobuf\Internal\Message
*/
protected $partner_metadata = null;
/**
- * [Output Only] Information specific to an InterconnectAttachment.
+ * Output only. [Output Only] Information specific to an InterconnectAttachment.
* This property is populated if the interconnect that
* this is attached to is of type DEDICATED.
*
@@ -333,7 +373,7 @@ class InterconnectAttachment extends \Google\Protobuf\Internal\Message
*/
protected $private_interconnect_info = null;
/**
- * [Output Only] URL of the region where the regional interconnect attachment
+ * Output only. [Output Only] URL of the region where the regional interconnect attachment
* resides.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
@@ -342,7 +382,7 @@ class InterconnectAttachment extends \Google\Protobuf\Internal\Message
*/
protected $region = null;
/**
- * [Output Only]
+ * Output only. [Output Only]
* If the attachment is on a Cross-Cloud Interconnect connection, this field
* contains the interconnect's remote location service provider. Example
* values: "Amazon Web Services" "Microsoft Azure".
@@ -363,13 +403,13 @@ class InterconnectAttachment extends \Google\Protobuf\Internal\Message
*/
protected $router = null;
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool satisfies_pzs = 480964267;
*/
protected $satisfies_pzs = null;
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -386,7 +426,7 @@ class InterconnectAttachment extends \Google\Protobuf\Internal\Message
*/
protected $stack_type = null;
/**
- * [Output Only] The current state of this attachment's functionality.
+ * Output only. [Output Only] The current state of this attachment's functionality.
* Enum values ACTIVE and UNPROVISIONED are shared by DEDICATED/PRIVATE,
* PARTNER, and PARTNER_PROVIDER interconnect attachments, while enum values
* PENDING_PARTNER, PARTNER_REQUEST_RECEIVED, and PENDING_CUSTOMER are used
@@ -460,7 +500,7 @@ class InterconnectAttachment extends \Google\Protobuf\Internal\Message
* Determines whether this Attachment will carry packets.
* Not present for PARTNER_PROVIDER.
* @type string $attachment_group
- * [Output Only] URL of the AttachmentGroup that includes this Attachment.
+ * Output only. [Output Only] URL of the AttachmentGroup that includes this Attachment.
* @type string $bandwidth
* Provisioned bandwidth capacity for the interconnect attachment. For
* attachments of type DEDICATED, the user can set the bandwidth.
@@ -482,6 +522,30 @@ class InterconnectAttachment extends \Google\Protobuf\Internal\Message
* - BPS_50G: 50 Gbit/s
* - BPS_100G: 100 Gbit/s
* Check the Bandwidth enum for the list of possible values.
+ * @type string $candidate_cloud_router_ip_address
+ * Single IPv4 address + prefix length to be configured on the cloud router
+ * interface for this interconnect attachment.
+ * - Both candidate_cloud_router_ip_address and
+ * candidate_customer_router_ip_address fields must be set or both must be
+ * unset.
+ * - Prefix length of both candidate_cloud_router_ip_address and
+ * candidate_customer_router_ip_address must be the same.
+ * - Max prefix length is 31.
+ * @type string $candidate_cloud_router_ipv6_address
+ * Single IPv6 address + prefix length to be configured on the cloud router
+ * interface for this interconnect attachment.
+ * - Both candidate_cloud_router_ipv6_address and
+ * candidate_customer_router_ipv6_address fields must be set or both must be
+ * unset.
+ * - Prefix length of both candidate_cloud_router_ipv6_address and
+ * candidate_customer_router_ipv6_address must be the same.
+ * - Max prefix length is 126.
+ * @type string $candidate_customer_router_ip_address
+ * Single IPv4 address + prefix length to be configured on the customer router
+ * interface for this interconnect attachment.
+ * @type string $candidate_customer_router_ipv6_address
+ * Single IPv6 address + prefix length to be configured on the customer router
+ * interface for this interconnect attachment.
* @type array|\Google\Protobuf\Internal\RepeatedField $candidate_ipv6_subnets
* This field is not available.
* @type array|\Google\Protobuf\Internal\RepeatedField $candidate_subnets
@@ -493,29 +557,29 @@ class InterconnectAttachment extends \Google\Protobuf\Internal\Message
* all possible /29s are in use on Google's edge. If not supplied, Google will
* randomly select an unused /29 from all of link-local space.
* @type string $cloud_router_ip_address
- * [Output Only] IPv4 address + prefix length to be configured on Cloud Router
+ * Output only. [Output Only] IPv4 address + prefix length to be configured on Cloud Router
* Interface for this interconnect attachment.
* @type string $cloud_router_ipv6_address
- * [Output Only] IPv6 address + prefix length to be configured on Cloud
+ * Output only. [Output Only] IPv6 address + prefix length to be configured on Cloud
* Router Interface for this interconnect attachment.
* @type string $cloud_router_ipv6_interface_id
* This field is not available.
* @type \Google\Cloud\Compute\V1\InterconnectAttachmentConfigurationConstraints $configuration_constraints
- * [Output Only] Constraints for this attachment, if any. The attachment does
+ * Output only. [Output Only] Constraints for this attachment, if any. The attachment does
* not work if these constraints are not met.
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $customer_router_ip_address
- * [Output Only] IPv4 address + prefix length to be configured on the customer
+ * Output only. [Output Only] IPv4 address + prefix length to be configured on the customer
* router subinterface for this interconnect attachment.
* @type string $customer_router_ipv6_address
- * [Output Only] IPv6 address + prefix length to be configured on the
+ * Output only. [Output Only] IPv6 address + prefix length to be configured on the
* customer router subinterface for this interconnect attachment.
* @type string $customer_router_ipv6_interface_id
* This field is not available.
* @type int $dataplane_version
- * [Output Only] Dataplane version for this InterconnectAttachment. This
+ * Output only. [Output Only] Dataplane version for this InterconnectAttachment. This
* field is only present for Dataplane version 2 and higher. Absence of this
* field in the API output indicates that the Dataplane is version 1.
* @type string $description
@@ -548,11 +612,11 @@ class InterconnectAttachment extends \Google\Protobuf\Internal\Message
* option.
* Check the Encryption enum for the list of possible values.
* @type string $google_reference_id
- * [Output Only] Google reference ID, to be used when raising support tickets
+ * Output only. [Output Only] Google reference ID, to be used when raising support tickets
* with Google or otherwise to debug backend connectivity issues.
* [Deprecated] This field is not used.
* @type int|string $id
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type string $interconnect
* URL of the underlying Interconnect object that this attachment's traffic
@@ -573,7 +637,7 @@ class InterconnectAttachment extends \Google\Protobuf\Internal\Message
* VPN gateway's IP address is allocated from the regional external IP address
* pool.
* @type string $kind
- * [Output Only] Type of the resource. Alwayscompute#interconnectAttachment for interconnect attachments.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#interconnectAttachment for interconnect attachments.
* @type \Google\Cloud\Compute\V1\InterconnectAttachmentL2Forwarding $l2_forwarding
* L2 Interconnect Attachment related config. This field is required if the
* type is L2_DEDICATED.
@@ -607,7 +671,7 @@ class InterconnectAttachment extends \Google\Protobuf\Internal\Message
* be a dash, lowercase letter, or digit, except the last character, which
* cannot be a dash.
* @type string $operational_status
- * [Output Only] The current status of whether or not this interconnect
+ * Output only. [Output Only] The current status of whether or not this interconnect
* attachment is functional, which can take one of the following values:
* - OS_ACTIVE: The attachment has been turned up and is ready to
* use.
@@ -634,16 +698,16 @@ class InterconnectAttachment extends \Google\Protobuf\Internal\Message
* Output only for PARTNER type, mutable for PARTNER_PROVIDER, not
* available for DEDICATED.
* @type \Google\Cloud\Compute\V1\InterconnectAttachmentPrivateInfo $private_interconnect_info
- * [Output Only] Information specific to an InterconnectAttachment.
+ * Output only. [Output Only] Information specific to an InterconnectAttachment.
* This property is populated if the interconnect that
* this is attached to is of type DEDICATED.
* @type string $region
- * [Output Only] URL of the region where the regional interconnect attachment
+ * Output only. [Output Only] URL of the region where the regional interconnect attachment
* resides.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
* @type string $remote_service
- * [Output Only]
+ * Output only. [Output Only]
* If the attachment is on a Cross-Cloud Interconnect connection, this field
* contains the interconnect's remote location service provider. Example
* values: "Amazon Web Services" "Microsoft Azure".
@@ -656,9 +720,9 @@ class InterconnectAttachment extends \Google\Protobuf\Internal\Message
* InterconnectAttachment will automatically connect the Interconnect to the
* network & region within which the Cloud Router is configured.
* @type bool $satisfies_pzs
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
* @type string $self_link
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
* @type string $stack_type
* The stack type for this interconnect attachment to identify whether the
* IPv6 feature is enabled or not. If not specified, IPV4_ONLY
@@ -667,7 +731,7 @@ class InterconnectAttachment extends \Google\Protobuf\Internal\Message
* update interconnect attachment operations.
* Check the StackType enum for the list of possible values.
* @type string $state
- * [Output Only] The current state of this attachment's functionality.
+ * Output only. [Output Only] The current state of this attachment's functionality.
* Enum values ACTIVE and UNPROVISIONED are shared by DEDICATED/PRIVATE,
* PARTNER, and PARTNER_PROVIDER interconnect attachments, while enum values
* PENDING_PARTNER, PARTNER_REQUEST_RECEIVED, and PENDING_CUSTOMER are used
@@ -760,7 +824,7 @@ public function setAdminEnabled($var)
}
/**
- * [Output Only] URL of the AttachmentGroup that includes this Attachment.
+ * Output only. [Output Only] URL of the AttachmentGroup that includes this Attachment.
*
* Generated from protobuf field optional string attachment_group = 63442019;
* @return string
@@ -781,7 +845,7 @@ public function clearAttachmentGroup()
}
/**
- * [Output Only] URL of the AttachmentGroup that includes this Attachment.
+ * Output only. [Output Only] URL of the AttachmentGroup that includes this Attachment.
*
* Generated from protobuf field optional string attachment_group = 63442019;
* @param string $var
@@ -869,6 +933,182 @@ public function setBandwidth($var)
return $this;
}
+ /**
+ * Single IPv4 address + prefix length to be configured on the cloud router
+ * interface for this interconnect attachment.
+ * - Both candidate_cloud_router_ip_address and
+ * candidate_customer_router_ip_address fields must be set or both must be
+ * unset.
+ * - Prefix length of both candidate_cloud_router_ip_address and
+ * candidate_customer_router_ip_address must be the same.
+ * - Max prefix length is 31.
+ *
+ * Generated from protobuf field optional string candidate_cloud_router_ip_address = 311379276;
+ * @return string
+ */
+ public function getCandidateCloudRouterIpAddress()
+ {
+ return isset($this->candidate_cloud_router_ip_address) ? $this->candidate_cloud_router_ip_address : '';
+ }
+
+ public function hasCandidateCloudRouterIpAddress()
+ {
+ return isset($this->candidate_cloud_router_ip_address);
+ }
+
+ public function clearCandidateCloudRouterIpAddress()
+ {
+ unset($this->candidate_cloud_router_ip_address);
+ }
+
+ /**
+ * Single IPv4 address + prefix length to be configured on the cloud router
+ * interface for this interconnect attachment.
+ * - Both candidate_cloud_router_ip_address and
+ * candidate_customer_router_ip_address fields must be set or both must be
+ * unset.
+ * - Prefix length of both candidate_cloud_router_ip_address and
+ * candidate_customer_router_ip_address must be the same.
+ * - Max prefix length is 31.
+ *
+ * Generated from protobuf field optional string candidate_cloud_router_ip_address = 311379276;
+ * @param string $var
+ * @return $this
+ */
+ public function setCandidateCloudRouterIpAddress($var)
+ {
+ GPBUtil::checkString($var, True);
+ $this->candidate_cloud_router_ip_address = $var;
+
+ return $this;
+ }
+
+ /**
+ * Single IPv6 address + prefix length to be configured on the cloud router
+ * interface for this interconnect attachment.
+ * - Both candidate_cloud_router_ipv6_address and
+ * candidate_customer_router_ipv6_address fields must be set or both must be
+ * unset.
+ * - Prefix length of both candidate_cloud_router_ipv6_address and
+ * candidate_customer_router_ipv6_address must be the same.
+ * - Max prefix length is 126.
+ *
+ * Generated from protobuf field optional string candidate_cloud_router_ipv6_address = 417499660;
+ * @return string
+ */
+ public function getCandidateCloudRouterIpv6Address()
+ {
+ return isset($this->candidate_cloud_router_ipv6_address) ? $this->candidate_cloud_router_ipv6_address : '';
+ }
+
+ public function hasCandidateCloudRouterIpv6Address()
+ {
+ return isset($this->candidate_cloud_router_ipv6_address);
+ }
+
+ public function clearCandidateCloudRouterIpv6Address()
+ {
+ unset($this->candidate_cloud_router_ipv6_address);
+ }
+
+ /**
+ * Single IPv6 address + prefix length to be configured on the cloud router
+ * interface for this interconnect attachment.
+ * - Both candidate_cloud_router_ipv6_address and
+ * candidate_customer_router_ipv6_address fields must be set or both must be
+ * unset.
+ * - Prefix length of both candidate_cloud_router_ipv6_address and
+ * candidate_customer_router_ipv6_address must be the same.
+ * - Max prefix length is 126.
+ *
+ * Generated from protobuf field optional string candidate_cloud_router_ipv6_address = 417499660;
+ * @param string $var
+ * @return $this
+ */
+ public function setCandidateCloudRouterIpv6Address($var)
+ {
+ GPBUtil::checkString($var, True);
+ $this->candidate_cloud_router_ipv6_address = $var;
+
+ return $this;
+ }
+
+ /**
+ * Single IPv4 address + prefix length to be configured on the customer router
+ * interface for this interconnect attachment.
+ *
+ * Generated from protobuf field optional string candidate_customer_router_ip_address = 339113389;
+ * @return string
+ */
+ public function getCandidateCustomerRouterIpAddress()
+ {
+ return isset($this->candidate_customer_router_ip_address) ? $this->candidate_customer_router_ip_address : '';
+ }
+
+ public function hasCandidateCustomerRouterIpAddress()
+ {
+ return isset($this->candidate_customer_router_ip_address);
+ }
+
+ public function clearCandidateCustomerRouterIpAddress()
+ {
+ unset($this->candidate_customer_router_ip_address);
+ }
+
+ /**
+ * Single IPv4 address + prefix length to be configured on the customer router
+ * interface for this interconnect attachment.
+ *
+ * Generated from protobuf field optional string candidate_customer_router_ip_address = 339113389;
+ * @param string $var
+ * @return $this
+ */
+ public function setCandidateCustomerRouterIpAddress($var)
+ {
+ GPBUtil::checkString($var, True);
+ $this->candidate_customer_router_ip_address = $var;
+
+ return $this;
+ }
+
+ /**
+ * Single IPv6 address + prefix length to be configured on the customer router
+ * interface for this interconnect attachment.
+ *
+ * Generated from protobuf field optional string candidate_customer_router_ipv6_address = 226436653;
+ * @return string
+ */
+ public function getCandidateCustomerRouterIpv6Address()
+ {
+ return isset($this->candidate_customer_router_ipv6_address) ? $this->candidate_customer_router_ipv6_address : '';
+ }
+
+ public function hasCandidateCustomerRouterIpv6Address()
+ {
+ return isset($this->candidate_customer_router_ipv6_address);
+ }
+
+ public function clearCandidateCustomerRouterIpv6Address()
+ {
+ unset($this->candidate_customer_router_ipv6_address);
+ }
+
+ /**
+ * Single IPv6 address + prefix length to be configured on the customer router
+ * interface for this interconnect attachment.
+ *
+ * Generated from protobuf field optional string candidate_customer_router_ipv6_address = 226436653;
+ * @param string $var
+ * @return $this
+ */
+ public function setCandidateCustomerRouterIpv6Address($var)
+ {
+ GPBUtil::checkString($var, True);
+ $this->candidate_customer_router_ipv6_address = $var;
+
+ return $this;
+ }
+
/**
* This field is not available.
*
@@ -934,7 +1174,7 @@ public function setCandidateSubnets($var)
}
/**
- * [Output Only] IPv4 address + prefix length to be configured on Cloud Router
+ * Output only. [Output Only] IPv4 address + prefix length to be configured on Cloud Router
* Interface for this interconnect attachment.
*
* Generated from protobuf field optional string cloud_router_ip_address = 287392776;
@@ -956,7 +1196,7 @@ public function clearCloudRouterIpAddress()
}
/**
- * [Output Only] IPv4 address + prefix length to be configured on Cloud Router
+ * Output only. [Output Only] IPv4 address + prefix length to be configured on Cloud Router
* Interface for this interconnect attachment.
*
* Generated from protobuf field optional string cloud_router_ip_address = 287392776;
@@ -972,7 +1212,7 @@ public function setCloudRouterIpAddress($var)
}
/**
- * [Output Only] IPv6 address + prefix length to be configured on Cloud
+ * Output only. [Output Only] IPv6 address + prefix length to be configured on Cloud
* Router Interface for this interconnect attachment.
*
* Generated from protobuf field optional string cloud_router_ipv6_address = 451922376;
@@ -994,7 +1234,7 @@ public function clearCloudRouterIpv6Address()
}
/**
- * [Output Only] IPv6 address + prefix length to be configured on Cloud
+ * Output only. [Output Only] IPv6 address + prefix length to be configured on Cloud
* Router Interface for this interconnect attachment.
*
* Generated from protobuf field optional string cloud_router_ipv6_address = 451922376;
@@ -1046,7 +1286,7 @@ public function setCloudRouterIpv6InterfaceId($var)
}
/**
- * [Output Only] Constraints for this attachment, if any. The attachment does
+ * Output only. [Output Only] Constraints for this attachment, if any. The attachment does
* not work if these constraints are not met.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InterconnectAttachmentConfigurationConstraints configuration_constraints = 179681389;
@@ -1068,7 +1308,7 @@ public function clearConfigurationConstraints()
}
/**
- * [Output Only] Constraints for this attachment, if any. The attachment does
+ * Output only. [Output Only] Constraints for this attachment, if any. The attachment does
* not work if these constraints are not met.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InterconnectAttachmentConfigurationConstraints configuration_constraints = 179681389;
@@ -1084,7 +1324,7 @@ public function setConfigurationConstraints($var)
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -1106,7 +1346,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -1122,7 +1362,7 @@ public function setCreationTimestamp($var)
}
/**
- * [Output Only] IPv4 address + prefix length to be configured on the customer
+ * Output only. [Output Only] IPv4 address + prefix length to be configured on the customer
* router subinterface for this interconnect attachment.
*
* Generated from protobuf field optional string customer_router_ip_address = 332475761;
@@ -1144,7 +1384,7 @@ public function clearCustomerRouterIpAddress()
}
/**
- * [Output Only] IPv4 address + prefix length to be configured on the customer
+ * Output only. [Output Only] IPv4 address + prefix length to be configured on the customer
* router subinterface for this interconnect attachment.
*
* Generated from protobuf field optional string customer_router_ip_address = 332475761;
@@ -1160,7 +1400,7 @@ public function setCustomerRouterIpAddress($var)
}
/**
- * [Output Only] IPv6 address + prefix length to be configured on the
+ * Output only. [Output Only] IPv6 address + prefix length to be configured on the
* customer router subinterface for this interconnect attachment.
*
* Generated from protobuf field optional string customer_router_ipv6_address = 290127089;
@@ -1182,7 +1422,7 @@ public function clearCustomerRouterIpv6Address()
}
/**
- * [Output Only] IPv6 address + prefix length to be configured on the
+ * Output only. [Output Only] IPv6 address + prefix length to be configured on the
* customer router subinterface for this interconnect attachment.
*
* Generated from protobuf field optional string customer_router_ipv6_address = 290127089;
@@ -1234,7 +1474,7 @@ public function setCustomerRouterIpv6InterfaceId($var)
}
/**
- * [Output Only] Dataplane version for this InterconnectAttachment. This
+ * Output only. [Output Only] Dataplane version for this InterconnectAttachment. This
* field is only present for Dataplane version 2 and higher. Absence of this
* field in the API output indicates that the Dataplane is version 1.
*
@@ -1257,7 +1497,7 @@ public function clearDataplaneVersion()
}
/**
- * [Output Only] Dataplane version for this InterconnectAttachment. This
+ * Output only. [Output Only] Dataplane version for this InterconnectAttachment. This
* field is only present for Dataplane version 2 and higher. Absence of this
* field in the API output indicates that the Dataplane is version 1.
*
@@ -1428,7 +1668,7 @@ public function setEncryption($var)
}
/**
- * [Output Only] Google reference ID, to be used when raising support tickets
+ * Output only. [Output Only] Google reference ID, to be used when raising support tickets
* with Google or otherwise to debug backend connectivity issues.
* [Deprecated] This field is not used.
*
@@ -1451,7 +1691,7 @@ public function clearGoogleReferenceId()
}
/**
- * [Output Only] Google reference ID, to be used when raising support tickets
+ * Output only. [Output Only] Google reference ID, to be used when raising support tickets
* with Google or otherwise to debug backend connectivity issues.
* [Deprecated] This field is not used.
*
@@ -1468,7 +1708,7 @@ public function setGoogleReferenceId($var)
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -1490,7 +1730,7 @@ public function clearId()
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -1596,7 +1836,7 @@ public function setIpsecInternalAddresses($var)
}
/**
- * [Output Only] Type of the resource. Alwayscompute#interconnectAttachment for interconnect attachments.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#interconnectAttachment for interconnect attachments.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -1617,7 +1857,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Alwayscompute#interconnectAttachment for interconnect attachments.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#interconnectAttachment for interconnect attachments.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -1846,7 +2086,7 @@ public function setName($var)
}
/**
- * [Output Only] The current status of whether or not this interconnect
+ * Output only. [Output Only] The current status of whether or not this interconnect
* attachment is functional, which can take one of the following values:
* - OS_ACTIVE: The attachment has been turned up and is ready to
* use.
@@ -1873,7 +2113,7 @@ public function clearOperationalStatus()
}
/**
- * [Output Only] The current status of whether or not this interconnect
+ * Output only. [Output Only] The current status of whether or not this interconnect
* attachment is functional, which can take one of the following values:
* - OS_ACTIVE: The attachment has been turned up and is ready to
* use.
@@ -2060,7 +2300,7 @@ public function setPartnerMetadata($var)
}
/**
- * [Output Only] Information specific to an InterconnectAttachment.
+ * Output only. [Output Only] Information specific to an InterconnectAttachment.
* This property is populated if the interconnect that
* this is attached to is of type DEDICATED.
*
@@ -2083,7 +2323,7 @@ public function clearPrivateInterconnectInfo()
}
/**
- * [Output Only] Information specific to an InterconnectAttachment.
+ * Output only. [Output Only] Information specific to an InterconnectAttachment.
* This property is populated if the interconnect that
* this is attached to is of type DEDICATED.
*
@@ -2100,7 +2340,7 @@ public function setPrivateInterconnectInfo($var)
}
/**
- * [Output Only] URL of the region where the regional interconnect attachment
+ * Output only. [Output Only] URL of the region where the regional interconnect attachment
* resides.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
@@ -2124,7 +2364,7 @@ public function clearRegion()
}
/**
- * [Output Only] URL of the region where the regional interconnect attachment
+ * Output only. [Output Only] URL of the region where the regional interconnect attachment
* resides.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
@@ -2142,7 +2382,7 @@ public function setRegion($var)
}
/**
- * [Output Only]
+ * Output only. [Output Only]
* If the attachment is on a Cross-Cloud Interconnect connection, this field
* contains the interconnect's remote location service provider. Example
* values: "Amazon Web Services" "Microsoft Azure".
@@ -2169,7 +2409,7 @@ public function clearRemoteService()
}
/**
- * [Output Only]
+ * Output only. [Output Only]
* If the attachment is on a Cross-Cloud Interconnect connection, this field
* contains the interconnect's remote location service provider. Example
* values: "Amazon Web Services" "Microsoft Azure".
@@ -2232,7 +2472,7 @@ public function setRouter($var)
}
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool satisfies_pzs = 480964267;
* @return bool
@@ -2253,7 +2493,7 @@ public function clearSatisfiesPzs()
}
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool satisfies_pzs = 480964267;
* @param bool $var
@@ -2268,7 +2508,7 @@ public function setSatisfiesPzs($var)
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -2289,7 +2529,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -2350,7 +2590,7 @@ public function setStackType($var)
}
/**
- * [Output Only] The current state of this attachment's functionality.
+ * Output only. [Output Only] The current state of this attachment's functionality.
* Enum values ACTIVE and UNPROVISIONED are shared by DEDICATED/PRIVATE,
* PARTNER, and PARTNER_PROVIDER interconnect attachments, while enum values
* PENDING_PARTNER, PARTNER_REQUEST_RECEIVED, and PENDING_CUSTOMER are used
@@ -2391,7 +2631,7 @@ public function clearState()
}
/**
- * [Output Only] The current state of this attachment's functionality.
+ * Output only. [Output Only] The current state of this attachment's functionality.
* Enum values ACTIVE and UNPROVISIONED are shared by DEDICATED/PRIVATE,
* PARTNER, and PARTNER_PROVIDER interconnect attachments, while enum values
* PENDING_PARTNER, PARTNER_REQUEST_RECEIVED, and PENDING_CUSTOMER are used
diff --git a/Compute/src/V1/InterconnectAttachment/OperationalStatus.php b/Compute/src/V1/InterconnectAttachment/OperationalStatus.php
index 8f2da34a52e7..b74fba2c466e 100644
--- a/Compute/src/V1/InterconnectAttachment/OperationalStatus.php
+++ b/Compute/src/V1/InterconnectAttachment/OperationalStatus.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] The current status of whether or not this interconnect
+ * Output only. [Output Only] The current status of whether or not this interconnect
* attachment is functional, which can take one of the following values:
* - OS_ACTIVE: The attachment has been turned up and is ready to
* use.
diff --git a/Compute/src/V1/InterconnectAttachment/State.php b/Compute/src/V1/InterconnectAttachment/State.php
index 4b7de27d52f5..4264301983ec 100644
--- a/Compute/src/V1/InterconnectAttachment/State.php
+++ b/Compute/src/V1/InterconnectAttachment/State.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] The current state of this attachment's functionality.
+ * Output only. [Output Only] The current state of this attachment's functionality.
* Enum values ACTIVE and UNPROVISIONED are shared by DEDICATED/PRIVATE,
* PARTNER, and PARTNER_PROVIDER interconnect attachments, while enum values
* PENDING_PARTNER, PARTNER_REQUEST_RECEIVED, and PENDING_CUSTOMER are used
diff --git a/Compute/src/V1/InterconnectAttachmentAggregatedList.php b/Compute/src/V1/InterconnectAttachmentAggregatedList.php
index 011b64a42ea1..dd596171c3d6 100644
--- a/Compute/src/V1/InterconnectAttachmentAggregatedList.php
+++ b/Compute/src/V1/InterconnectAttachmentAggregatedList.php
@@ -27,7 +27,7 @@ class InterconnectAttachmentAggregatedList extends \Google\Protobuf\Internal\Mes
*/
private $items;
/**
- * [Output Only] Type of resource. Alwayscompute#interconnectAttachmentAggregatedList for aggregated
+ * Output only. [Output Only] Type of resource. Alwayscompute#interconnectAttachmentAggregatedList for aggregated
* lists of interconnect attachments.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -44,13 +44,13 @@ class InterconnectAttachmentAggregatedList extends \Google\Protobuf\Internal\Mes
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
@@ -73,7 +73,7 @@ class InterconnectAttachmentAggregatedList extends \Google\Protobuf\Internal\Mes
* @type array|\Google\Protobuf\Internal\MapField $items
* A list of InterconnectAttachmentsScopedList resources.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#interconnectAttachmentAggregatedList for aggregated
+ * Output only. [Output Only] Type of resource. Alwayscompute#interconnectAttachmentAggregatedList for aggregated
* lists of interconnect attachments.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -82,9 +82,9 @@ class InterconnectAttachmentAggregatedList extends \Google\Protobuf\Internal\Mes
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -157,7 +157,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#interconnectAttachmentAggregatedList for aggregated
+ * Output only. [Output Only] Type of resource. Alwayscompute#interconnectAttachmentAggregatedList for aggregated
* lists of interconnect attachments.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -179,7 +179,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#interconnectAttachmentAggregatedList for aggregated
+ * Output only. [Output Only] Type of resource. Alwayscompute#interconnectAttachmentAggregatedList for aggregated
* lists of interconnect attachments.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -239,7 +239,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -260,7 +260,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -275,7 +275,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -286,7 +286,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/InterconnectAttachmentConfigurationConstraints.php b/Compute/src/V1/InterconnectAttachmentConfigurationConstraints.php
index d34ea6c13960..e7ee9c862065 100644
--- a/Compute/src/V1/InterconnectAttachmentConfigurationConstraints.php
+++ b/Compute/src/V1/InterconnectAttachmentConfigurationConstraints.php
@@ -15,7 +15,7 @@
class InterconnectAttachmentConfigurationConstraints extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Whether the attachment's BGP session
+ * Output only. [Output Only] Whether the attachment's BGP session
* requires/allows/disallows BGP MD5 authentication. This can take one of
* the following values: MD5_OPTIONAL, MD5_REQUIRED, MD5_UNSUPPORTED.
* For example, a Cross-Cloud Interconnect connection to a remote cloud
@@ -30,7 +30,7 @@ class InterconnectAttachmentConfigurationConstraints extends \Google\Protobuf\In
*/
protected $bgp_md5 = null;
/**
- * [Output Only] List of ASN ranges that the remote location is known to
+ * Output only. [Output Only] List of ASN ranges that the remote location is known to
* support. Formatted as an array of inclusive ranges {min: min-value, max:
* max-value}. For example, [{min: 123, max: 123}, {min: 64512, max: 65534}]
* allows the peer ASN to be 123 or anything in the range 64512-65534.
@@ -48,7 +48,7 @@ class InterconnectAttachmentConfigurationConstraints extends \Google\Protobuf\In
* Optional. Data for populating the Message object.
*
* @type string $bgp_md5
- * [Output Only] Whether the attachment's BGP session
+ * Output only. [Output Only] Whether the attachment's BGP session
* requires/allows/disallows BGP MD5 authentication. This can take one of
* the following values: MD5_OPTIONAL, MD5_REQUIRED, MD5_UNSUPPORTED.
* For example, a Cross-Cloud Interconnect connection to a remote cloud
@@ -59,7 +59,7 @@ class InterconnectAttachmentConfigurationConstraints extends \Google\Protobuf\In
* returned if MD5 is requested.
* Check the BgpMd5 enum for the list of possible values.
* @type array<\Google\Cloud\Compute\V1\InterconnectAttachmentConfigurationConstraintsBgpPeerASNRange>|\Google\Protobuf\Internal\RepeatedField $bgp_peer_asn_ranges
- * [Output Only] List of ASN ranges that the remote location is known to
+ * Output only. [Output Only] List of ASN ranges that the remote location is known to
* support. Formatted as an array of inclusive ranges {min: min-value, max:
* max-value}. For example, [{min: 123, max: 123}, {min: 64512, max: 65534}]
* allows the peer ASN to be 123 or anything in the range 64512-65534.
@@ -73,7 +73,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Whether the attachment's BGP session
+ * Output only. [Output Only] Whether the attachment's BGP session
* requires/allows/disallows BGP MD5 authentication. This can take one of
* the following values: MD5_OPTIONAL, MD5_REQUIRED, MD5_UNSUPPORTED.
* For example, a Cross-Cloud Interconnect connection to a remote cloud
@@ -103,7 +103,7 @@ public function clearBgpMd5()
}
/**
- * [Output Only] Whether the attachment's BGP session
+ * Output only. [Output Only] Whether the attachment's BGP session
* requires/allows/disallows BGP MD5 authentication. This can take one of
* the following values: MD5_OPTIONAL, MD5_REQUIRED, MD5_UNSUPPORTED.
* For example, a Cross-Cloud Interconnect connection to a remote cloud
@@ -127,7 +127,7 @@ public function setBgpMd5($var)
}
/**
- * [Output Only] List of ASN ranges that the remote location is known to
+ * Output only. [Output Only] List of ASN ranges that the remote location is known to
* support. Formatted as an array of inclusive ranges {min: min-value, max:
* max-value}. For example, [{min: 123, max: 123}, {min: 64512, max: 65534}]
* allows the peer ASN to be 123 or anything in the range 64512-65534.
@@ -143,7 +143,7 @@ public function getBgpPeerAsnRanges()
}
/**
- * [Output Only] List of ASN ranges that the remote location is known to
+ * Output only. [Output Only] List of ASN ranges that the remote location is known to
* support. Formatted as an array of inclusive ranges {min: min-value, max:
* max-value}. For example, [{min: 123, max: 123}, {min: 64512, max: 65534}]
* allows the peer ASN to be 123 or anything in the range 64512-65534.
diff --git a/Compute/src/V1/InterconnectAttachmentConfigurationConstraints/BgpMd5.php b/Compute/src/V1/InterconnectAttachmentConfigurationConstraints/BgpMd5.php
index 1b5bae557a3f..4484899ffae9 100644
--- a/Compute/src/V1/InterconnectAttachmentConfigurationConstraints/BgpMd5.php
+++ b/Compute/src/V1/InterconnectAttachmentConfigurationConstraints/BgpMd5.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] Whether the attachment's BGP session
+ * Output only. [Output Only] Whether the attachment's BGP session
* requires/allows/disallows BGP MD5 authentication. This can take one of
* the following values: MD5_OPTIONAL, MD5_REQUIRED, MD5_UNSUPPORTED.
* For example, a Cross-Cloud Interconnect connection to a remote cloud
diff --git a/Compute/src/V1/InterconnectAttachmentGroup.php b/Compute/src/V1/InterconnectAttachmentGroup.php
index 4895c79e656b..483b833893ac 100644
--- a/Compute/src/V1/InterconnectAttachmentGroup.php
+++ b/Compute/src/V1/InterconnectAttachmentGroup.php
@@ -31,7 +31,7 @@ class InterconnectAttachmentGroup extends \Google\Protobuf\Internal\Message
*/
protected $configured = null;
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -55,7 +55,7 @@ class InterconnectAttachmentGroup extends \Google\Protobuf\Internal\Message
*/
protected $etag = null;
/**
- * [Output Only] The unique identifier for the resource type. The server
+ * Output only. [Output Only] The unique identifier for the resource type. The server
* generates this identifier.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -74,7 +74,7 @@ class InterconnectAttachmentGroup extends \Google\Protobuf\Internal\Message
*/
protected $interconnect_group = null;
/**
- * [Output Only] Type of the resource. Always
+ * Output only. [Output Only] Type of the resource. Always
* compute#interconnectAttachmentGroup.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -97,7 +97,7 @@ class InterconnectAttachmentGroup extends \Google\Protobuf\Internal\Message
*/
protected $name = null;
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -117,7 +117,7 @@ class InterconnectAttachmentGroup extends \Google\Protobuf\Internal\Message
* The size of this map is limited by an "Attachments per group" quota.
* @type \Google\Cloud\Compute\V1\InterconnectAttachmentGroupConfigured $configured
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $description
* An optional description of this resource. Provide this property when you
@@ -129,7 +129,7 @@ class InterconnectAttachmentGroup extends \Google\Protobuf\Internal\Message
* a reliable means of doing read-modify-write (optimistic locking) as
* described byAIP 154.
* @type int|string $id
- * [Output Only] The unique identifier for the resource type. The server
+ * Output only. [Output Only] The unique identifier for the resource type. The server
* generates this identifier.
* @type \Google\Cloud\Compute\V1\InterconnectAttachmentGroupIntent $intent
* @type string $interconnect_group
@@ -137,7 +137,7 @@ class InterconnectAttachmentGroup extends \Google\Protobuf\Internal\Message
* Interconnects. Customers do not need to set this unless directed by
* Google Support.
* @type string $kind
- * [Output Only] Type of the resource. Always
+ * Output only. [Output Only] Type of the resource. Always
* compute#interconnectAttachmentGroup.
* @type \Google\Cloud\Compute\V1\InterconnectAttachmentGroupLogicalStructure $logical_structure
* @type string $name
@@ -149,7 +149,7 @@ class InterconnectAttachmentGroup extends \Google\Protobuf\Internal\Message
* be a dash, lowercase letter, or digit, except the last character, which
* cannot be a dash.
* @type string $self_link
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
* }
*/
public function __construct($data = NULL) {
@@ -224,7 +224,7 @@ public function setConfigured($var)
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -246,7 +246,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -344,7 +344,7 @@ public function setEtag($var)
}
/**
- * [Output Only] The unique identifier for the resource type. The server
+ * Output only. [Output Only] The unique identifier for the resource type. The server
* generates this identifier.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -366,7 +366,7 @@ public function clearId()
}
/**
- * [Output Only] The unique identifier for the resource type. The server
+ * Output only. [Output Only] The unique identifier for the resource type. The server
* generates this identifier.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -454,7 +454,7 @@ public function setInterconnectGroup($var)
}
/**
- * [Output Only] Type of the resource. Always
+ * Output only. [Output Only] Type of the resource. Always
* compute#interconnectAttachmentGroup.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -476,7 +476,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Always
+ * Output only. [Output Only] Type of the resource. Always
* compute#interconnectAttachmentGroup.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -572,7 +572,7 @@ public function setName($var)
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -593,7 +593,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/InterconnectAttachmentGroupConfiguredAvailabilitySLAIntendedSlaBlockers.php b/Compute/src/V1/InterconnectAttachmentGroupConfiguredAvailabilitySLAIntendedSlaBlockers.php
index 5d42f775371f..6462d0cc2702 100644
--- a/Compute/src/V1/InterconnectAttachmentGroupConfiguredAvailabilitySLAIntendedSlaBlockers.php
+++ b/Compute/src/V1/InterconnectAttachmentGroupConfiguredAvailabilitySLAIntendedSlaBlockers.php
@@ -18,7 +18,7 @@
class InterconnectAttachmentGroupConfiguredAvailabilitySLAIntendedSlaBlockers extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] URLs of any particular Attachments to explain this
+ * Output only. [Output Only] URLs of any particular Attachments to explain this
* blocker in more detail.
*
* Generated from protobuf field repeated string attachments = 334744496;
@@ -32,21 +32,21 @@ class InterconnectAttachmentGroupConfiguredAvailabilitySLAIntendedSlaBlockers ex
*/
protected $blocker_type = null;
/**
- * [Output Only] The url of Google Cloud public documentation explaining
+ * Output only. [Output Only] The url of Google Cloud public documentation explaining
* this requirement. This is set for every type of requirement.
*
* Generated from protobuf field optional string documentation_link = 93465183;
*/
protected $documentation_link = null;
/**
- * [Output Only] A human-readable explanation of this requirement and
+ * Output only. [Output Only] A human-readable explanation of this requirement and
* why it's not met. This is set for every type of requirement.
*
* Generated from protobuf field optional string explanation = 504745497;
*/
protected $explanation = null;
/**
- * [Output Only] Metros used to explain this blocker in more detail.
+ * Output only. [Output Only] Metros used to explain this blocker in more detail.
* These are three-letter lowercase strings like "iad". This will be set
* for some blockers (like NO_ATTACHMENTS_IN_METRO_AND_ZONE) but does
* not apply to others.
@@ -55,7 +55,7 @@ class InterconnectAttachmentGroupConfiguredAvailabilitySLAIntendedSlaBlockers ex
*/
private $metros;
/**
- * [Output Only] Regions used to explain this blocker in more
+ * Output only. [Output Only] Regions used to explain this blocker in more
* detail. These are region names formatted like "us-central1". This
* will be set for some blockers (like INCOMPATIBLE_REGIONS) but does
* not apply to others.
@@ -64,7 +64,7 @@ class InterconnectAttachmentGroupConfiguredAvailabilitySLAIntendedSlaBlockers ex
*/
private $regions;
/**
- * [Output Only] Zones used to explain this blocker in more detail.
+ * Output only. [Output Only] Zones used to explain this blocker in more detail.
* Format is "zone1" and/or "zone2". This will be set for some blockers
* (like MISSING_ZONE) but does not apply to others.
*
@@ -79,29 +79,29 @@ class InterconnectAttachmentGroupConfiguredAvailabilitySLAIntendedSlaBlockers ex
* Optional. Data for populating the Message object.
*
* @type array|\Google\Protobuf\Internal\RepeatedField $attachments
- * [Output Only] URLs of any particular Attachments to explain this
+ * Output only. [Output Only] URLs of any particular Attachments to explain this
* blocker in more detail.
* @type string $blocker_type
*
* Check the BlockerType enum for the list of possible values.
* @type string $documentation_link
- * [Output Only] The url of Google Cloud public documentation explaining
+ * Output only. [Output Only] The url of Google Cloud public documentation explaining
* this requirement. This is set for every type of requirement.
* @type string $explanation
- * [Output Only] A human-readable explanation of this requirement and
+ * Output only. [Output Only] A human-readable explanation of this requirement and
* why it's not met. This is set for every type of requirement.
* @type array|\Google\Protobuf\Internal\RepeatedField $metros
- * [Output Only] Metros used to explain this blocker in more detail.
+ * Output only. [Output Only] Metros used to explain this blocker in more detail.
* These are three-letter lowercase strings like "iad". This will be set
* for some blockers (like NO_ATTACHMENTS_IN_METRO_AND_ZONE) but does
* not apply to others.
* @type array|\Google\Protobuf\Internal\RepeatedField $regions
- * [Output Only] Regions used to explain this blocker in more
+ * Output only. [Output Only] Regions used to explain this blocker in more
* detail. These are region names formatted like "us-central1". This
* will be set for some blockers (like INCOMPATIBLE_REGIONS) but does
* not apply to others.
* @type array|\Google\Protobuf\Internal\RepeatedField $zones
- * [Output Only] Zones used to explain this blocker in more detail.
+ * Output only. [Output Only] Zones used to explain this blocker in more detail.
* Format is "zone1" and/or "zone2". This will be set for some blockers
* (like MISSING_ZONE) but does not apply to others.
* }
@@ -112,7 +112,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] URLs of any particular Attachments to explain this
+ * Output only. [Output Only] URLs of any particular Attachments to explain this
* blocker in more detail.
*
* Generated from protobuf field repeated string attachments = 334744496;
@@ -124,7 +124,7 @@ public function getAttachments()
}
/**
- * [Output Only] URLs of any particular Attachments to explain this
+ * Output only. [Output Only] URLs of any particular Attachments to explain this
* blocker in more detail.
*
* Generated from protobuf field repeated string attachments = 334744496;
@@ -178,7 +178,7 @@ public function setBlockerType($var)
}
/**
- * [Output Only] The url of Google Cloud public documentation explaining
+ * Output only. [Output Only] The url of Google Cloud public documentation explaining
* this requirement. This is set for every type of requirement.
*
* Generated from protobuf field optional string documentation_link = 93465183;
@@ -200,7 +200,7 @@ public function clearDocumentationLink()
}
/**
- * [Output Only] The url of Google Cloud public documentation explaining
+ * Output only. [Output Only] The url of Google Cloud public documentation explaining
* this requirement. This is set for every type of requirement.
*
* Generated from protobuf field optional string documentation_link = 93465183;
@@ -216,7 +216,7 @@ public function setDocumentationLink($var)
}
/**
- * [Output Only] A human-readable explanation of this requirement and
+ * Output only. [Output Only] A human-readable explanation of this requirement and
* why it's not met. This is set for every type of requirement.
*
* Generated from protobuf field optional string explanation = 504745497;
@@ -238,7 +238,7 @@ public function clearExplanation()
}
/**
- * [Output Only] A human-readable explanation of this requirement and
+ * Output only. [Output Only] A human-readable explanation of this requirement and
* why it's not met. This is set for every type of requirement.
*
* Generated from protobuf field optional string explanation = 504745497;
@@ -254,7 +254,7 @@ public function setExplanation($var)
}
/**
- * [Output Only] Metros used to explain this blocker in more detail.
+ * Output only. [Output Only] Metros used to explain this blocker in more detail.
* These are three-letter lowercase strings like "iad". This will be set
* for some blockers (like NO_ATTACHMENTS_IN_METRO_AND_ZONE) but does
* not apply to others.
@@ -268,7 +268,7 @@ public function getMetros()
}
/**
- * [Output Only] Metros used to explain this blocker in more detail.
+ * Output only. [Output Only] Metros used to explain this blocker in more detail.
* These are three-letter lowercase strings like "iad". This will be set
* for some blockers (like NO_ATTACHMENTS_IN_METRO_AND_ZONE) but does
* not apply to others.
@@ -286,7 +286,7 @@ public function setMetros($var)
}
/**
- * [Output Only] Regions used to explain this blocker in more
+ * Output only. [Output Only] Regions used to explain this blocker in more
* detail. These are region names formatted like "us-central1". This
* will be set for some blockers (like INCOMPATIBLE_REGIONS) but does
* not apply to others.
@@ -300,7 +300,7 @@ public function getRegions()
}
/**
- * [Output Only] Regions used to explain this blocker in more
+ * Output only. [Output Only] Regions used to explain this blocker in more
* detail. These are region names formatted like "us-central1". This
* will be set for some blockers (like INCOMPATIBLE_REGIONS) but does
* not apply to others.
@@ -318,7 +318,7 @@ public function setRegions($var)
}
/**
- * [Output Only] Zones used to explain this blocker in more detail.
+ * Output only. [Output Only] Zones used to explain this blocker in more detail.
* Format is "zone1" and/or "zone2". This will be set for some blockers
* (like MISSING_ZONE) but does not apply to others.
*
@@ -331,7 +331,7 @@ public function getZones()
}
/**
- * [Output Only] Zones used to explain this blocker in more detail.
+ * Output only. [Output Only] Zones used to explain this blocker in more detail.
* Format is "zone1" and/or "zone2". This will be set for some blockers
* (like MISSING_ZONE) but does not apply to others.
*
diff --git a/Compute/src/V1/InterconnectAttachmentGroupLogicalStructureRegion.php b/Compute/src/V1/InterconnectAttachmentGroupLogicalStructureRegion.php
index 07a155a4ccd9..18d676e4a8fd 100644
--- a/Compute/src/V1/InterconnectAttachmentGroupLogicalStructureRegion.php
+++ b/Compute/src/V1/InterconnectAttachmentGroupLogicalStructureRegion.php
@@ -20,7 +20,7 @@ class InterconnectAttachmentGroupLogicalStructureRegion extends \Google\Protobuf
*/
private $metros;
/**
- * [Output Only] The name of a region, like "us-central1".
+ * Output only. [Output Only] The name of a region, like "us-central1".
*
* Generated from protobuf field optional string region = 138946292;
*/
@@ -34,7 +34,7 @@ class InterconnectAttachmentGroupLogicalStructureRegion extends \Google\Protobuf
*
* @type array<\Google\Cloud\Compute\V1\InterconnectAttachmentGroupLogicalStructureRegionMetro>|\Google\Protobuf\Internal\RepeatedField $metros
* @type string $region
- * [Output Only] The name of a region, like "us-central1".
+ * Output only. [Output Only] The name of a region, like "us-central1".
* }
*/
public function __construct($data = NULL) {
@@ -65,7 +65,7 @@ public function setMetros($var)
}
/**
- * [Output Only] The name of a region, like "us-central1".
+ * Output only. [Output Only] The name of a region, like "us-central1".
*
* Generated from protobuf field optional string region = 138946292;
* @return string
@@ -86,7 +86,7 @@ public function clearRegion()
}
/**
- * [Output Only] The name of a region, like "us-central1".
+ * Output only. [Output Only] The name of a region, like "us-central1".
*
* Generated from protobuf field optional string region = 138946292;
* @param string $var
diff --git a/Compute/src/V1/InterconnectAttachmentGroupLogicalStructureRegionMetro.php b/Compute/src/V1/InterconnectAttachmentGroupLogicalStructureRegionMetro.php
index 307c9cc957c0..6cb1f53d859e 100644
--- a/Compute/src/V1/InterconnectAttachmentGroupLogicalStructureRegionMetro.php
+++ b/Compute/src/V1/InterconnectAttachmentGroupLogicalStructureRegionMetro.php
@@ -20,7 +20,7 @@ class InterconnectAttachmentGroupLogicalStructureRegionMetro extends \Google\Pro
*/
private $facilities;
/**
- * [Output Only] The name of the metro, as a three-letter lowercase
+ * Output only. [Output Only] The name of the metro, as a three-letter lowercase
* string like "iad". This is the first component of the location of an
* Interconnect.
*
@@ -36,7 +36,7 @@ class InterconnectAttachmentGroupLogicalStructureRegionMetro extends \Google\Pro
*
* @type array<\Google\Cloud\Compute\V1\InterconnectAttachmentGroupLogicalStructureRegionMetroFacility>|\Google\Protobuf\Internal\RepeatedField $facilities
* @type string $metro
- * [Output Only] The name of the metro, as a three-letter lowercase
+ * Output only. [Output Only] The name of the metro, as a three-letter lowercase
* string like "iad". This is the first component of the location of an
* Interconnect.
* }
@@ -69,7 +69,7 @@ public function setFacilities($var)
}
/**
- * [Output Only] The name of the metro, as a three-letter lowercase
+ * Output only. [Output Only] The name of the metro, as a three-letter lowercase
* string like "iad". This is the first component of the location of an
* Interconnect.
*
@@ -92,7 +92,7 @@ public function clearMetro()
}
/**
- * [Output Only] The name of the metro, as a three-letter lowercase
+ * Output only. [Output Only] The name of the metro, as a three-letter lowercase
* string like "iad". This is the first component of the location of an
* Interconnect.
*
diff --git a/Compute/src/V1/InterconnectAttachmentGroupLogicalStructureRegionMetroFacility.php b/Compute/src/V1/InterconnectAttachmentGroupLogicalStructureRegionMetroFacility.php
index 5822a3ec6d9a..ead70643e871 100644
--- a/Compute/src/V1/InterconnectAttachmentGroupLogicalStructureRegionMetroFacility.php
+++ b/Compute/src/V1/InterconnectAttachmentGroupLogicalStructureRegionMetroFacility.php
@@ -17,7 +17,7 @@
class InterconnectAttachmentGroupLogicalStructureRegionMetroFacility extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] The name of a facility, like "iad-1234".
+ * Output only. [Output Only] The name of a facility, like "iad-1234".
*
* Generated from protobuf field optional string facility = 501116579;
*/
@@ -34,7 +34,7 @@ class InterconnectAttachmentGroupLogicalStructureRegionMetroFacility extends \Go
* Optional. Data for populating the Message object.
*
* @type string $facility
- * [Output Only] The name of a facility, like "iad-1234".
+ * Output only. [Output Only] The name of a facility, like "iad-1234".
* @type array<\Google\Cloud\Compute\V1\InterconnectAttachmentGroupLogicalStructureRegionMetroFacilityZone>|\Google\Protobuf\Internal\RepeatedField $zones
* }
*/
@@ -44,7 +44,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] The name of a facility, like "iad-1234".
+ * Output only. [Output Only] The name of a facility, like "iad-1234".
*
* Generated from protobuf field optional string facility = 501116579;
* @return string
@@ -65,7 +65,7 @@ public function clearFacility()
}
/**
- * [Output Only] The name of a facility, like "iad-1234".
+ * Output only. [Output Only] The name of a facility, like "iad-1234".
*
* Generated from protobuf field optional string facility = 501116579;
* @param string $var
diff --git a/Compute/src/V1/InterconnectAttachmentGroupLogicalStructureRegionMetroFacilityZone.php b/Compute/src/V1/InterconnectAttachmentGroupLogicalStructureRegionMetroFacilityZone.php
index 2194396689ca..93a019e19b89 100644
--- a/Compute/src/V1/InterconnectAttachmentGroupLogicalStructureRegionMetroFacilityZone.php
+++ b/Compute/src/V1/InterconnectAttachmentGroupLogicalStructureRegionMetroFacilityZone.php
@@ -18,7 +18,7 @@
class InterconnectAttachmentGroupLogicalStructureRegionMetroFacilityZone extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] URLs of Attachments in the given zone, to the given
+ * Output only. [Output Only] URLs of Attachments in the given zone, to the given
* region, on Interconnects in the given facility and metro. Every
* Attachment in the AG has such an entry.
*
@@ -26,7 +26,7 @@ class InterconnectAttachmentGroupLogicalStructureRegionMetroFacilityZone extends
*/
private $attachments;
/**
- * [Output Only] The name of a zone, either "zone1" or "zone2".
+ * Output only. [Output Only] The name of a zone, either "zone1" or "zone2".
*
* Generated from protobuf field optional string zone = 3744684;
*/
@@ -39,11 +39,11 @@ class InterconnectAttachmentGroupLogicalStructureRegionMetroFacilityZone extends
* Optional. Data for populating the Message object.
*
* @type array|\Google\Protobuf\Internal\RepeatedField $attachments
- * [Output Only] URLs of Attachments in the given zone, to the given
+ * Output only. [Output Only] URLs of Attachments in the given zone, to the given
* region, on Interconnects in the given facility and metro. Every
* Attachment in the AG has such an entry.
* @type string $zone
- * [Output Only] The name of a zone, either "zone1" or "zone2".
+ * Output only. [Output Only] The name of a zone, either "zone1" or "zone2".
* }
*/
public function __construct($data = NULL) {
@@ -52,7 +52,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] URLs of Attachments in the given zone, to the given
+ * Output only. [Output Only] URLs of Attachments in the given zone, to the given
* region, on Interconnects in the given facility and metro. Every
* Attachment in the AG has such an entry.
*
@@ -65,7 +65,7 @@ public function getAttachments()
}
/**
- * [Output Only] URLs of Attachments in the given zone, to the given
+ * Output only. [Output Only] URLs of Attachments in the given zone, to the given
* region, on Interconnects in the given facility and metro. Every
* Attachment in the AG has such an entry.
*
@@ -82,7 +82,7 @@ public function setAttachments($var)
}
/**
- * [Output Only] The name of a zone, either "zone1" or "zone2".
+ * Output only. [Output Only] The name of a zone, either "zone1" or "zone2".
*
* Generated from protobuf field optional string zone = 3744684;
* @return string
@@ -103,7 +103,7 @@ public function clearZone()
}
/**
- * [Output Only] The name of a zone, either "zone1" or "zone2".
+ * Output only. [Output Only] The name of a zone, either "zone1" or "zone2".
*
* Generated from protobuf field optional string zone = 3744684;
* @param string $var
diff --git a/Compute/src/V1/InterconnectAttachmentGroupsListResponse.php b/Compute/src/V1/InterconnectAttachmentGroupsListResponse.php
index 39f3a3335551..99affe4559fe 100644
--- a/Compute/src/V1/InterconnectAttachmentGroupsListResponse.php
+++ b/Compute/src/V1/InterconnectAttachmentGroupsListResponse.php
@@ -51,7 +51,7 @@ class InterconnectAttachmentGroupsListResponse extends \Google\Protobuf\Internal
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* end_interface:
* MixerListResponseWithEtagBuilder
*
@@ -86,7 +86,7 @@ class InterconnectAttachmentGroupsListResponse extends \Google\Protobuf\Internal
* @type string $self_link
* [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* end_interface:
* MixerListResponseWithEtagBuilder
* @type \Google\Cloud\Compute\V1\Warning $warning
@@ -305,7 +305,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* end_interface:
* MixerListResponseWithEtagBuilder
*
@@ -318,7 +318,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* end_interface:
* MixerListResponseWithEtagBuilder
*
diff --git a/Compute/src/V1/InterconnectAttachmentGroupsOperationalStatus.php b/Compute/src/V1/InterconnectAttachmentGroupsOperationalStatus.php
index 879f6cd7a435..01c7fd965242 100644
--- a/Compute/src/V1/InterconnectAttachmentGroupsOperationalStatus.php
+++ b/Compute/src/V1/InterconnectAttachmentGroupsOperationalStatus.php
@@ -23,7 +23,7 @@ class InterconnectAttachmentGroupsOperationalStatus extends \Google\Protobuf\Int
*/
protected $configured = null;
/**
- * Summarizes the status of the group.
+ * Output only. Summarizes the status of the group.
* Check the GroupStatus enum for the list of possible values.
*
* Generated from protobuf field optional string group_status = 338778546;
@@ -34,7 +34,7 @@ class InterconnectAttachmentGroupsOperationalStatus extends \Google\Protobuf\Int
*/
protected $intent = null;
/**
- * The operational state of the group, including only active Attachments.
+ * Output only. The operational state of the group, including only active Attachments.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InterconnectAttachmentGroupConfigured operational = 129704914;
*/
@@ -49,11 +49,11 @@ class InterconnectAttachmentGroupsOperationalStatus extends \Google\Protobuf\Int
* @type array<\Google\Cloud\Compute\V1\InterconnectAttachmentGroupsOperationalStatusAttachmentStatus>|\Google\Protobuf\Internal\RepeatedField $attachment_statuses
* @type \Google\Cloud\Compute\V1\InterconnectAttachmentGroupConfigured $configured
* @type string $group_status
- * Summarizes the status of the group.
+ * Output only. Summarizes the status of the group.
* Check the GroupStatus enum for the list of possible values.
* @type \Google\Cloud\Compute\V1\InterconnectAttachmentGroupIntent $intent
* @type \Google\Cloud\Compute\V1\InterconnectAttachmentGroupConfigured $operational
- * The operational state of the group, including only active Attachments.
+ * Output only. The operational state of the group, including only active Attachments.
* }
*/
public function __construct($data = NULL) {
@@ -116,7 +116,7 @@ public function setConfigured($var)
}
/**
- * Summarizes the status of the group.
+ * Output only. Summarizes the status of the group.
* Check the GroupStatus enum for the list of possible values.
*
* Generated from protobuf field optional string group_status = 338778546;
@@ -138,7 +138,7 @@ public function clearGroupStatus()
}
/**
- * Summarizes the status of the group.
+ * Output only. Summarizes the status of the group.
* Check the GroupStatus enum for the list of possible values.
*
* Generated from protobuf field optional string group_status = 338778546;
@@ -186,7 +186,7 @@ public function setIntent($var)
}
/**
- * The operational state of the group, including only active Attachments.
+ * Output only. The operational state of the group, including only active Attachments.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InterconnectAttachmentGroupConfigured operational = 129704914;
* @return \Google\Cloud\Compute\V1\InterconnectAttachmentGroupConfigured|null
@@ -207,7 +207,7 @@ public function clearOperational()
}
/**
- * The operational state of the group, including only active Attachments.
+ * Output only. The operational state of the group, including only active Attachments.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InterconnectAttachmentGroupConfigured operational = 129704914;
* @param \Google\Cloud\Compute\V1\InterconnectAttachmentGroupConfigured $var
diff --git a/Compute/src/V1/InterconnectAttachmentGroupsOperationalStatus/GroupStatus.php b/Compute/src/V1/InterconnectAttachmentGroupsOperationalStatus/GroupStatus.php
index 8b5352413019..33092fb72c4a 100644
--- a/Compute/src/V1/InterconnectAttachmentGroupsOperationalStatus/GroupStatus.php
+++ b/Compute/src/V1/InterconnectAttachmentGroupsOperationalStatus/GroupStatus.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * Summarizes the status of the group.
+ * Output only. Summarizes the status of the group.
*
* Protobuf type google.cloud.compute.v1.InterconnectAttachmentGroupsOperationalStatus.GroupStatus
*/
diff --git a/Compute/src/V1/InterconnectAttachmentGroupsOperationalStatusAttachmentStatus.php b/Compute/src/V1/InterconnectAttachmentGroupsOperationalStatusAttachmentStatus.php
index da1dcf3f59b8..032b934bc8ea 100644
--- a/Compute/src/V1/InterconnectAttachmentGroupsOperationalStatusAttachmentStatus.php
+++ b/Compute/src/V1/InterconnectAttachmentGroupsOperationalStatusAttachmentStatus.php
@@ -16,20 +16,20 @@
class InterconnectAttachmentGroupsOperationalStatusAttachmentStatus extends \Google\Protobuf\Internal\Message
{
/**
- * Whether this Attachment is enabled. This becomes false when the customer
+ * Output only. Whether this Attachment is enabled. This becomes false when the customer
* drains their Attachment.
*
* Generated from protobuf field optional bool admin_enabled = 445675089;
*/
protected $admin_enabled = null;
/**
- * The URL of the Attachment being described.
+ * Output only. The URL of the Attachment being described.
*
* Generated from protobuf field optional string attachment = 183982371;
*/
protected $attachment = null;
/**
- * Whether this Attachment is participating in the redundant configuration.
+ * Output only. Whether this Attachment is participating in the redundant configuration.
* This will be ACTIVE if and only if the status below is CONNECTION_UP.
* Any INACTIVE Attachments are excluded from the analysis that generates
* operational.availabilitySLA.
@@ -39,7 +39,7 @@ class InterconnectAttachmentGroupsOperationalStatusAttachmentStatus extends \Goo
*/
protected $is_active = null;
/**
- * Whether this Attachment is active, and if so, whether BGP is up.
+ * Output only. Whether this Attachment is active, and if so, whether BGP is up.
* Check the Status enum for the list of possible values.
*
* Generated from protobuf field optional string status = 181260274;
@@ -53,18 +53,18 @@ class InterconnectAttachmentGroupsOperationalStatusAttachmentStatus extends \Goo
* Optional. Data for populating the Message object.
*
* @type bool $admin_enabled
- * Whether this Attachment is enabled. This becomes false when the customer
+ * Output only. Whether this Attachment is enabled. This becomes false when the customer
* drains their Attachment.
* @type string $attachment
- * The URL of the Attachment being described.
+ * Output only. The URL of the Attachment being described.
* @type string $is_active
- * Whether this Attachment is participating in the redundant configuration.
+ * Output only. Whether this Attachment is participating in the redundant configuration.
* This will be ACTIVE if and only if the status below is CONNECTION_UP.
* Any INACTIVE Attachments are excluded from the analysis that generates
* operational.availabilitySLA.
* Check the IsActive enum for the list of possible values.
* @type string $status
- * Whether this Attachment is active, and if so, whether BGP is up.
+ * Output only. Whether this Attachment is active, and if so, whether BGP is up.
* Check the Status enum for the list of possible values.
* }
*/
@@ -74,7 +74,7 @@ public function __construct($data = NULL) {
}
/**
- * Whether this Attachment is enabled. This becomes false when the customer
+ * Output only. Whether this Attachment is enabled. This becomes false when the customer
* drains their Attachment.
*
* Generated from protobuf field optional bool admin_enabled = 445675089;
@@ -96,7 +96,7 @@ public function clearAdminEnabled()
}
/**
- * Whether this Attachment is enabled. This becomes false when the customer
+ * Output only. Whether this Attachment is enabled. This becomes false when the customer
* drains their Attachment.
*
* Generated from protobuf field optional bool admin_enabled = 445675089;
@@ -112,7 +112,7 @@ public function setAdminEnabled($var)
}
/**
- * The URL of the Attachment being described.
+ * Output only. The URL of the Attachment being described.
*
* Generated from protobuf field optional string attachment = 183982371;
* @return string
@@ -133,7 +133,7 @@ public function clearAttachment()
}
/**
- * The URL of the Attachment being described.
+ * Output only. The URL of the Attachment being described.
*
* Generated from protobuf field optional string attachment = 183982371;
* @param string $var
@@ -148,7 +148,7 @@ public function setAttachment($var)
}
/**
- * Whether this Attachment is participating in the redundant configuration.
+ * Output only. Whether this Attachment is participating in the redundant configuration.
* This will be ACTIVE if and only if the status below is CONNECTION_UP.
* Any INACTIVE Attachments are excluded from the analysis that generates
* operational.availabilitySLA.
@@ -173,7 +173,7 @@ public function clearIsActive()
}
/**
- * Whether this Attachment is participating in the redundant configuration.
+ * Output only. Whether this Attachment is participating in the redundant configuration.
* This will be ACTIVE if and only if the status below is CONNECTION_UP.
* Any INACTIVE Attachments are excluded from the analysis that generates
* operational.availabilitySLA.
@@ -192,7 +192,7 @@ public function setIsActive($var)
}
/**
- * Whether this Attachment is active, and if so, whether BGP is up.
+ * Output only. Whether this Attachment is active, and if so, whether BGP is up.
* Check the Status enum for the list of possible values.
*
* Generated from protobuf field optional string status = 181260274;
@@ -214,7 +214,7 @@ public function clearStatus()
}
/**
- * Whether this Attachment is active, and if so, whether BGP is up.
+ * Output only. Whether this Attachment is active, and if so, whether BGP is up.
* Check the Status enum for the list of possible values.
*
* Generated from protobuf field optional string status = 181260274;
diff --git a/Compute/src/V1/InterconnectAttachmentGroupsOperationalStatusAttachmentStatus/IsActive.php b/Compute/src/V1/InterconnectAttachmentGroupsOperationalStatusAttachmentStatus/IsActive.php
index 397ccf16cbac..db5b1d5a91cb 100644
--- a/Compute/src/V1/InterconnectAttachmentGroupsOperationalStatusAttachmentStatus/IsActive.php
+++ b/Compute/src/V1/InterconnectAttachmentGroupsOperationalStatusAttachmentStatus/IsActive.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * Whether this Attachment is participating in the redundant configuration.
+ * Output only. Whether this Attachment is participating in the redundant configuration.
* This will be ACTIVE if and only if the status below is CONNECTION_UP.
* Any INACTIVE Attachments are excluded from the analysis that generates
* operational.availabilitySLA.
diff --git a/Compute/src/V1/InterconnectAttachmentGroupsOperationalStatusAttachmentStatus/Status.php b/Compute/src/V1/InterconnectAttachmentGroupsOperationalStatusAttachmentStatus/Status.php
index a5ad7014a495..a2a5e93547f5 100644
--- a/Compute/src/V1/InterconnectAttachmentGroupsOperationalStatusAttachmentStatus/Status.php
+++ b/Compute/src/V1/InterconnectAttachmentGroupsOperationalStatusAttachmentStatus/Status.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * Whether this Attachment is active, and if so, whether BGP is up.
+ * Output only. Whether this Attachment is active, and if so, whether BGP is up.
*
* Protobuf type google.cloud.compute.v1.InterconnectAttachmentGroupsOperationalStatusAttachmentStatus.Status
*/
diff --git a/Compute/src/V1/InterconnectAttachmentList.php b/Compute/src/V1/InterconnectAttachmentList.php
index 989fd4335342..4fc37b679e62 100644
--- a/Compute/src/V1/InterconnectAttachmentList.php
+++ b/Compute/src/V1/InterconnectAttachmentList.php
@@ -29,7 +29,7 @@ class InterconnectAttachmentList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Alwayscompute#interconnectAttachmentList for lists of interconnect
+ * Output only. [Output Only] Type of resource. Alwayscompute#interconnectAttachmentList for lists of interconnect
* attachments.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -46,7 +46,7 @@ class InterconnectAttachmentList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -69,7 +69,7 @@ class InterconnectAttachmentList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\InterconnectAttachment>|\Google\Protobuf\Internal\RepeatedField $items
* A list of InterconnectAttachment resources.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#interconnectAttachmentList for lists of interconnect
+ * Output only. [Output Only] Type of resource. Alwayscompute#interconnectAttachmentList for lists of interconnect
* attachments.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -78,7 +78,7 @@ class InterconnectAttachmentList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -151,7 +151,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#interconnectAttachmentList for lists of interconnect
+ * Output only. [Output Only] Type of resource. Alwayscompute#interconnectAttachmentList for lists of interconnect
* attachments.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -173,7 +173,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#interconnectAttachmentList for lists of interconnect
+ * Output only. [Output Only] Type of resource. Alwayscompute#interconnectAttachmentList for lists of interconnect
* attachments.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -233,7 +233,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -254,7 +254,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/InterconnectGroup.php b/Compute/src/V1/InterconnectGroup.php
index 1e0f2e2cf71a..d6312d85e25b 100644
--- a/Compute/src/V1/InterconnectGroup.php
+++ b/Compute/src/V1/InterconnectGroup.php
@@ -21,7 +21,7 @@ class InterconnectGroup extends \Google\Protobuf\Internal\Message
*/
protected $configured = null;
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -45,7 +45,7 @@ class InterconnectGroup extends \Google\Protobuf\Internal\Message
*/
protected $etag = null;
/**
- * [Output Only] The unique identifier for the resource type. The server
+ * Output only. [Output Only] The unique identifier for the resource type. The server
* generates this identifier.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -66,7 +66,7 @@ class InterconnectGroup extends \Google\Protobuf\Internal\Message
*/
private $interconnects;
/**
- * [Output Only] Type of the resource. Always compute#InterconnectGroup
+ * Output only. [Output Only] Type of the resource. Always compute#InterconnectGroup
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -88,7 +88,7 @@ class InterconnectGroup extends \Google\Protobuf\Internal\Message
*/
protected $physical_structure = null;
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -102,7 +102,7 @@ class InterconnectGroup extends \Google\Protobuf\Internal\Message
*
* @type \Google\Cloud\Compute\V1\InterconnectGroupConfigured $configured
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $description
* An optional description of this resource. Provide this property when you
@@ -114,7 +114,7 @@ class InterconnectGroup extends \Google\Protobuf\Internal\Message
* a reliable means of doing read-modify-write (optimistic locking) as
* described by AIP 154.
* @type int|string $id
- * [Output Only] The unique identifier for the resource type. The server
+ * Output only. [Output Only] The unique identifier for the resource type. The server
* generates this identifier.
* @type \Google\Cloud\Compute\V1\InterconnectGroupIntent $intent
* @type array|\Google\Protobuf\Internal\MapField $interconnects
@@ -124,7 +124,7 @@ class InterconnectGroup extends \Google\Protobuf\Internal\Message
* Note that there are add-members and remove-members methods in gcloud.
* The size of this map is limited by an "Interconnects per group" quota.
* @type string $kind
- * [Output Only] Type of the resource. Always compute#InterconnectGroup
+ * Output only. [Output Only] Type of the resource. Always compute#InterconnectGroup
* @type string $name
* Name of the resource. Provided by the client when the resource is created.
* The name must be 1-63 characters long, and comply withRFC1035.
@@ -135,7 +135,7 @@ class InterconnectGroup extends \Google\Protobuf\Internal\Message
* cannot be a dash.
* @type \Google\Cloud\Compute\V1\InterconnectGroupPhysicalStructure $physical_structure
* @type string $self_link
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
* }
*/
public function __construct($data = NULL) {
@@ -176,7 +176,7 @@ public function setConfigured($var)
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -198,7 +198,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -296,7 +296,7 @@ public function setEtag($var)
}
/**
- * [Output Only] The unique identifier for the resource type. The server
+ * Output only. [Output Only] The unique identifier for the resource type. The server
* generates this identifier.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -318,7 +318,7 @@ public function clearId()
}
/**
- * [Output Only] The unique identifier for the resource type. The server
+ * Output only. [Output Only] The unique identifier for the resource type. The server
* generates this identifier.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -400,7 +400,7 @@ public function setInterconnects($var)
}
/**
- * [Output Only] Type of the resource. Always compute#InterconnectGroup
+ * Output only. [Output Only] Type of the resource. Always compute#InterconnectGroup
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -421,7 +421,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Always compute#InterconnectGroup
+ * Output only. [Output Only] Type of the resource. Always compute#InterconnectGroup
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -516,7 +516,7 @@ public function setPhysicalStructure($var)
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -537,7 +537,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/InterconnectGroupConfiguredTopologyCapabilityIntendedCapabilityBlockers.php b/Compute/src/V1/InterconnectGroupConfiguredTopologyCapabilityIntendedCapabilityBlockers.php
index f56ff0bf3fb5..d94c00cd3a69 100644
--- a/Compute/src/V1/InterconnectGroupConfiguredTopologyCapabilityIntendedCapabilityBlockers.php
+++ b/Compute/src/V1/InterconnectGroupConfiguredTopologyCapabilityIntendedCapabilityBlockers.php
@@ -25,21 +25,21 @@ class InterconnectGroupConfiguredTopologyCapabilityIntendedCapabilityBlockers ex
*/
protected $blocker_type = null;
/**
- * [Output Only] The url of Google Cloud public documentation explaining
+ * Output only. [Output Only] The url of Google Cloud public documentation explaining
* this requirement. This is set for every type of requirement.
*
* Generated from protobuf field optional string documentation_link = 93465183;
*/
protected $documentation_link = null;
/**
- * [Output Only] A human-readable explanation of this requirement and
+ * Output only. [Output Only] A human-readable explanation of this requirement and
* why it's not met. This is set for every type of requirement.
*
* Generated from protobuf field optional string explanation = 504745497;
*/
protected $explanation = null;
/**
- * [Output Only] Facilities used to explain this blocker in more detail.
+ * Output only. [Output Only] Facilities used to explain this blocker in more detail.
* Like physicalStructure.metros.facilities.facility, this is a numeric
* string like "5467".
*
@@ -47,14 +47,14 @@ class InterconnectGroupConfiguredTopologyCapabilityIntendedCapabilityBlockers ex
*/
private $facilities;
/**
- * [Output Only] Interconnects used to explain this blocker in more
+ * Output only. [Output Only] Interconnects used to explain this blocker in more
* detail.
*
* Generated from protobuf field repeated string interconnects = 520187301;
*/
private $interconnects;
/**
- * [Output Only] Metros used to explain this blocker in more detail.
+ * Output only. [Output Only] Metros used to explain this blocker in more detail.
* These are three-letter lowercase strings like "iad". A blocker like
* INCOMPATIBLE_METROS will specify the problematic metros in this
* field.
@@ -63,7 +63,7 @@ class InterconnectGroupConfiguredTopologyCapabilityIntendedCapabilityBlockers ex
*/
private $metros;
/**
- * [Output Only] Zones used to explain this blocker in more detail.
+ * Output only. [Output Only] Zones used to explain this blocker in more detail.
* Zone names are "zone1" and/or "zone2".
*
* Generated from protobuf field repeated string zones = 116085319;
@@ -80,25 +80,25 @@ class InterconnectGroupConfiguredTopologyCapabilityIntendedCapabilityBlockers ex
*
* Check the BlockerType enum for the list of possible values.
* @type string $documentation_link
- * [Output Only] The url of Google Cloud public documentation explaining
+ * Output only. [Output Only] The url of Google Cloud public documentation explaining
* this requirement. This is set for every type of requirement.
* @type string $explanation
- * [Output Only] A human-readable explanation of this requirement and
+ * Output only. [Output Only] A human-readable explanation of this requirement and
* why it's not met. This is set for every type of requirement.
* @type array|\Google\Protobuf\Internal\RepeatedField $facilities
- * [Output Only] Facilities used to explain this blocker in more detail.
+ * Output only. [Output Only] Facilities used to explain this blocker in more detail.
* Like physicalStructure.metros.facilities.facility, this is a numeric
* string like "5467".
* @type array|\Google\Protobuf\Internal\RepeatedField $interconnects
- * [Output Only] Interconnects used to explain this blocker in more
+ * Output only. [Output Only] Interconnects used to explain this blocker in more
* detail.
* @type array|\Google\Protobuf\Internal\RepeatedField $metros
- * [Output Only] Metros used to explain this blocker in more detail.
+ * Output only. [Output Only] Metros used to explain this blocker in more detail.
* These are three-letter lowercase strings like "iad". A blocker like
* INCOMPATIBLE_METROS will specify the problematic metros in this
* field.
* @type array|\Google\Protobuf\Internal\RepeatedField $zones
- * [Output Only] Zones used to explain this blocker in more detail.
+ * Output only. [Output Only] Zones used to explain this blocker in more detail.
* Zone names are "zone1" and/or "zone2".
* }
*/
@@ -146,7 +146,7 @@ public function setBlockerType($var)
}
/**
- * [Output Only] The url of Google Cloud public documentation explaining
+ * Output only. [Output Only] The url of Google Cloud public documentation explaining
* this requirement. This is set for every type of requirement.
*
* Generated from protobuf field optional string documentation_link = 93465183;
@@ -168,7 +168,7 @@ public function clearDocumentationLink()
}
/**
- * [Output Only] The url of Google Cloud public documentation explaining
+ * Output only. [Output Only] The url of Google Cloud public documentation explaining
* this requirement. This is set for every type of requirement.
*
* Generated from protobuf field optional string documentation_link = 93465183;
@@ -184,7 +184,7 @@ public function setDocumentationLink($var)
}
/**
- * [Output Only] A human-readable explanation of this requirement and
+ * Output only. [Output Only] A human-readable explanation of this requirement and
* why it's not met. This is set for every type of requirement.
*
* Generated from protobuf field optional string explanation = 504745497;
@@ -206,7 +206,7 @@ public function clearExplanation()
}
/**
- * [Output Only] A human-readable explanation of this requirement and
+ * Output only. [Output Only] A human-readable explanation of this requirement and
* why it's not met. This is set for every type of requirement.
*
* Generated from protobuf field optional string explanation = 504745497;
@@ -222,7 +222,7 @@ public function setExplanation($var)
}
/**
- * [Output Only] Facilities used to explain this blocker in more detail.
+ * Output only. [Output Only] Facilities used to explain this blocker in more detail.
* Like physicalStructure.metros.facilities.facility, this is a numeric
* string like "5467".
*
@@ -235,7 +235,7 @@ public function getFacilities()
}
/**
- * [Output Only] Facilities used to explain this blocker in more detail.
+ * Output only. [Output Only] Facilities used to explain this blocker in more detail.
* Like physicalStructure.metros.facilities.facility, this is a numeric
* string like "5467".
*
@@ -252,7 +252,7 @@ public function setFacilities($var)
}
/**
- * [Output Only] Interconnects used to explain this blocker in more
+ * Output only. [Output Only] Interconnects used to explain this blocker in more
* detail.
*
* Generated from protobuf field repeated string interconnects = 520187301;
@@ -264,7 +264,7 @@ public function getInterconnects()
}
/**
- * [Output Only] Interconnects used to explain this blocker in more
+ * Output only. [Output Only] Interconnects used to explain this blocker in more
* detail.
*
* Generated from protobuf field repeated string interconnects = 520187301;
@@ -280,7 +280,7 @@ public function setInterconnects($var)
}
/**
- * [Output Only] Metros used to explain this blocker in more detail.
+ * Output only. [Output Only] Metros used to explain this blocker in more detail.
* These are three-letter lowercase strings like "iad". A blocker like
* INCOMPATIBLE_METROS will specify the problematic metros in this
* field.
@@ -294,7 +294,7 @@ public function getMetros()
}
/**
- * [Output Only] Metros used to explain this blocker in more detail.
+ * Output only. [Output Only] Metros used to explain this blocker in more detail.
* These are three-letter lowercase strings like "iad". A blocker like
* INCOMPATIBLE_METROS will specify the problematic metros in this
* field.
@@ -312,7 +312,7 @@ public function setMetros($var)
}
/**
- * [Output Only] Zones used to explain this blocker in more detail.
+ * Output only. [Output Only] Zones used to explain this blocker in more detail.
* Zone names are "zone1" and/or "zone2".
*
* Generated from protobuf field repeated string zones = 116085319;
@@ -324,7 +324,7 @@ public function getZones()
}
/**
- * [Output Only] Zones used to explain this blocker in more detail.
+ * Output only. [Output Only] Zones used to explain this blocker in more detail.
* Zone names are "zone1" and/or "zone2".
*
* Generated from protobuf field repeated string zones = 116085319;
diff --git a/Compute/src/V1/InterconnectGroupPhysicalStructureMetros.php b/Compute/src/V1/InterconnectGroupPhysicalStructureMetros.php
index 5710cfd0fdcc..6e5dec912c94 100644
--- a/Compute/src/V1/InterconnectGroupPhysicalStructureMetros.php
+++ b/Compute/src/V1/InterconnectGroupPhysicalStructureMetros.php
@@ -20,7 +20,7 @@ class InterconnectGroupPhysicalStructureMetros extends \Google\Protobuf\Internal
*/
private $facilities;
/**
- * [Output Only] The name of the metro, as a three-letter lowercase string
+ * Output only. [Output Only] The name of the metro, as a three-letter lowercase string
* like "iad". This is the first component of the location of
* Interconnects underneath this.
*
@@ -36,7 +36,7 @@ class InterconnectGroupPhysicalStructureMetros extends \Google\Protobuf\Internal
*
* @type array<\Google\Cloud\Compute\V1\InterconnectGroupPhysicalStructureMetrosFacilities>|\Google\Protobuf\Internal\RepeatedField $facilities
* @type string $metro
- * [Output Only] The name of the metro, as a three-letter lowercase string
+ * Output only. [Output Only] The name of the metro, as a three-letter lowercase string
* like "iad". This is the first component of the location of
* Interconnects underneath this.
* }
@@ -69,7 +69,7 @@ public function setFacilities($var)
}
/**
- * [Output Only] The name of the metro, as a three-letter lowercase string
+ * Output only. [Output Only] The name of the metro, as a three-letter lowercase string
* like "iad". This is the first component of the location of
* Interconnects underneath this.
*
@@ -92,7 +92,7 @@ public function clearMetro()
}
/**
- * [Output Only] The name of the metro, as a three-letter lowercase string
+ * Output only. [Output Only] The name of the metro, as a three-letter lowercase string
* like "iad". This is the first component of the location of
* Interconnects underneath this.
*
diff --git a/Compute/src/V1/InterconnectGroupPhysicalStructureMetrosFacilities.php b/Compute/src/V1/InterconnectGroupPhysicalStructureMetrosFacilities.php
index 31fd7445164c..64211f6673c1 100644
--- a/Compute/src/V1/InterconnectGroupPhysicalStructureMetrosFacilities.php
+++ b/Compute/src/V1/InterconnectGroupPhysicalStructureMetrosFacilities.php
@@ -17,7 +17,7 @@
class InterconnectGroupPhysicalStructureMetrosFacilities extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] The ID of this facility, as a numeric string like
+ * Output only. [Output Only] The ID of this facility, as a numeric string like
* "5467". This is the third component of the location of Interconnects
* in this facility.
*
@@ -36,7 +36,7 @@ class InterconnectGroupPhysicalStructureMetrosFacilities extends \Google\Protobu
* Optional. Data for populating the Message object.
*
* @type string $facility
- * [Output Only] The ID of this facility, as a numeric string like
+ * Output only. [Output Only] The ID of this facility, as a numeric string like
* "5467". This is the third component of the location of Interconnects
* in this facility.
* @type array<\Google\Cloud\Compute\V1\InterconnectGroupPhysicalStructureMetrosFacilitiesZones>|\Google\Protobuf\Internal\RepeatedField $zones
@@ -48,7 +48,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] The ID of this facility, as a numeric string like
+ * Output only. [Output Only] The ID of this facility, as a numeric string like
* "5467". This is the third component of the location of Interconnects
* in this facility.
*
@@ -71,7 +71,7 @@ public function clearFacility()
}
/**
- * [Output Only] The ID of this facility, as a numeric string like
+ * Output only. [Output Only] The ID of this facility, as a numeric string like
* "5467". This is the third component of the location of Interconnects
* in this facility.
*
diff --git a/Compute/src/V1/InterconnectGroupPhysicalStructureMetrosFacilitiesZones.php b/Compute/src/V1/InterconnectGroupPhysicalStructureMetrosFacilitiesZones.php
index 9e6c7fabcbe1..d35c1790efd8 100644
--- a/Compute/src/V1/InterconnectGroupPhysicalStructureMetrosFacilitiesZones.php
+++ b/Compute/src/V1/InterconnectGroupPhysicalStructureMetrosFacilitiesZones.php
@@ -17,14 +17,14 @@
class InterconnectGroupPhysicalStructureMetrosFacilitiesZones extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] URLs of Interconnects in this redundancy group in the
+ * Output only. [Output Only] URLs of Interconnects in this redundancy group in the
* given metro, facility, and zone.
*
* Generated from protobuf field repeated string interconnects = 520187301;
*/
private $interconnects;
/**
- * [Output Only] The name of the zone, either "zone1" or "zone2".
+ * Output only. [Output Only] The name of the zone, either "zone1" or "zone2".
* This is the second component of the location of Interconnects in
* this facility.
*
@@ -39,10 +39,10 @@ class InterconnectGroupPhysicalStructureMetrosFacilitiesZones extends \Google\Pr
* Optional. Data for populating the Message object.
*
* @type array|\Google\Protobuf\Internal\RepeatedField $interconnects
- * [Output Only] URLs of Interconnects in this redundancy group in the
+ * Output only. [Output Only] URLs of Interconnects in this redundancy group in the
* given metro, facility, and zone.
* @type string $zone
- * [Output Only] The name of the zone, either "zone1" or "zone2".
+ * Output only. [Output Only] The name of the zone, either "zone1" or "zone2".
* This is the second component of the location of Interconnects in
* this facility.
* }
@@ -53,7 +53,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] URLs of Interconnects in this redundancy group in the
+ * Output only. [Output Only] URLs of Interconnects in this redundancy group in the
* given metro, facility, and zone.
*
* Generated from protobuf field repeated string interconnects = 520187301;
@@ -65,7 +65,7 @@ public function getInterconnects()
}
/**
- * [Output Only] URLs of Interconnects in this redundancy group in the
+ * Output only. [Output Only] URLs of Interconnects in this redundancy group in the
* given metro, facility, and zone.
*
* Generated from protobuf field repeated string interconnects = 520187301;
@@ -81,7 +81,7 @@ public function setInterconnects($var)
}
/**
- * [Output Only] The name of the zone, either "zone1" or "zone2".
+ * Output only. [Output Only] The name of the zone, either "zone1" or "zone2".
* This is the second component of the location of Interconnects in
* this facility.
*
@@ -104,7 +104,7 @@ public function clearZone()
}
/**
- * [Output Only] The name of the zone, either "zone1" or "zone2".
+ * Output only. [Output Only] The name of the zone, either "zone1" or "zone2".
* This is the second component of the location of Interconnects in
* this facility.
*
diff --git a/Compute/src/V1/InterconnectGroupsListResponse.php b/Compute/src/V1/InterconnectGroupsListResponse.php
index 05f30df54be9..06cbee8894ee 100644
--- a/Compute/src/V1/InterconnectGroupsListResponse.php
+++ b/Compute/src/V1/InterconnectGroupsListResponse.php
@@ -51,7 +51,7 @@ class InterconnectGroupsListResponse extends \Google\Protobuf\Internal\Message
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* end_interface: MixerListResponseWithEtagBuilder
*
* Generated from protobuf field repeated string unreachables = 243372063;
@@ -85,7 +85,7 @@ class InterconnectGroupsListResponse extends \Google\Protobuf\Internal\Message
* @type string $self_link
* [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* end_interface: MixerListResponseWithEtagBuilder
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
@@ -303,7 +303,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* end_interface: MixerListResponseWithEtagBuilder
*
* Generated from protobuf field repeated string unreachables = 243372063;
@@ -315,7 +315,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* end_interface: MixerListResponseWithEtagBuilder
*
* Generated from protobuf field repeated string unreachables = 243372063;
diff --git a/Compute/src/V1/InterconnectGroupsOperationalStatus.php b/Compute/src/V1/InterconnectGroupsOperationalStatus.php
index 88c2095c7615..77589df5d8ed 100644
--- a/Compute/src/V1/InterconnectGroupsOperationalStatus.php
+++ b/Compute/src/V1/InterconnectGroupsOperationalStatus.php
@@ -16,20 +16,20 @@
class InterconnectGroupsOperationalStatus extends \Google\Protobuf\Internal\Message
{
/**
- * The configuration analysis, as returned by Get.
+ * Output only. The configuration analysis, as returned by Get.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InterconnectGroupConfigured configured = 295631422;
*/
protected $configured = null;
/**
- * Summarizes the status of the group.
+ * Output only. Summarizes the status of the group.
* Check the GroupStatus enum for the list of possible values.
*
* Generated from protobuf field optional string group_status = 338778546;
*/
protected $group_status = null;
/**
- * The intent of the resource, as returned by Get.
+ * Output only. The intent of the resource, as returned by Get.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InterconnectGroupIntent intent = 426849948;
*/
@@ -39,7 +39,7 @@ class InterconnectGroupsOperationalStatus extends \Google\Protobuf\Internal\Mess
*/
private $interconnect_statuses;
/**
- * The operational state of the group, including only active Interconnects.
+ * Output only. The operational state of the group, including only active Interconnects.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InterconnectGroupConfigured operational = 129704914;
*/
@@ -52,15 +52,15 @@ class InterconnectGroupsOperationalStatus extends \Google\Protobuf\Internal\Mess
* Optional. Data for populating the Message object.
*
* @type \Google\Cloud\Compute\V1\InterconnectGroupConfigured $configured
- * The configuration analysis, as returned by Get.
+ * Output only. The configuration analysis, as returned by Get.
* @type string $group_status
- * Summarizes the status of the group.
+ * Output only. Summarizes the status of the group.
* Check the GroupStatus enum for the list of possible values.
* @type \Google\Cloud\Compute\V1\InterconnectGroupIntent $intent
- * The intent of the resource, as returned by Get.
+ * Output only. The intent of the resource, as returned by Get.
* @type array<\Google\Cloud\Compute\V1\InterconnectGroupsOperationalStatusInterconnectStatus>|\Google\Protobuf\Internal\RepeatedField $interconnect_statuses
* @type \Google\Cloud\Compute\V1\InterconnectGroupConfigured $operational
- * The operational state of the group, including only active Interconnects.
+ * Output only. The operational state of the group, including only active Interconnects.
* }
*/
public function __construct($data = NULL) {
@@ -69,7 +69,7 @@ public function __construct($data = NULL) {
}
/**
- * The configuration analysis, as returned by Get.
+ * Output only. The configuration analysis, as returned by Get.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InterconnectGroupConfigured configured = 295631422;
* @return \Google\Cloud\Compute\V1\InterconnectGroupConfigured|null
@@ -90,7 +90,7 @@ public function clearConfigured()
}
/**
- * The configuration analysis, as returned by Get.
+ * Output only. The configuration analysis, as returned by Get.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InterconnectGroupConfigured configured = 295631422;
* @param \Google\Cloud\Compute\V1\InterconnectGroupConfigured $var
@@ -105,7 +105,7 @@ public function setConfigured($var)
}
/**
- * Summarizes the status of the group.
+ * Output only. Summarizes the status of the group.
* Check the GroupStatus enum for the list of possible values.
*
* Generated from protobuf field optional string group_status = 338778546;
@@ -127,7 +127,7 @@ public function clearGroupStatus()
}
/**
- * Summarizes the status of the group.
+ * Output only. Summarizes the status of the group.
* Check the GroupStatus enum for the list of possible values.
*
* Generated from protobuf field optional string group_status = 338778546;
@@ -143,7 +143,7 @@ public function setGroupStatus($var)
}
/**
- * The intent of the resource, as returned by Get.
+ * Output only. The intent of the resource, as returned by Get.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InterconnectGroupIntent intent = 426849948;
* @return \Google\Cloud\Compute\V1\InterconnectGroupIntent|null
@@ -164,7 +164,7 @@ public function clearIntent()
}
/**
- * The intent of the resource, as returned by Get.
+ * Output only. The intent of the resource, as returned by Get.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InterconnectGroupIntent intent = 426849948;
* @param \Google\Cloud\Compute\V1\InterconnectGroupIntent $var
@@ -201,7 +201,7 @@ public function setInterconnectStatuses($var)
}
/**
- * The operational state of the group, including only active Interconnects.
+ * Output only. The operational state of the group, including only active Interconnects.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InterconnectGroupConfigured operational = 129704914;
* @return \Google\Cloud\Compute\V1\InterconnectGroupConfigured|null
@@ -222,7 +222,7 @@ public function clearOperational()
}
/**
- * The operational state of the group, including only active Interconnects.
+ * Output only. The operational state of the group, including only active Interconnects.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InterconnectGroupConfigured operational = 129704914;
* @param \Google\Cloud\Compute\V1\InterconnectGroupConfigured $var
diff --git a/Compute/src/V1/InterconnectGroupsOperationalStatus/GroupStatus.php b/Compute/src/V1/InterconnectGroupsOperationalStatus/GroupStatus.php
index c64b3835aaa4..acffe4dc65a1 100644
--- a/Compute/src/V1/InterconnectGroupsOperationalStatus/GroupStatus.php
+++ b/Compute/src/V1/InterconnectGroupsOperationalStatus/GroupStatus.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * Summarizes the status of the group.
+ * Output only. Summarizes the status of the group.
*
* Protobuf type google.cloud.compute.v1.InterconnectGroupsOperationalStatus.GroupStatus
*/
diff --git a/Compute/src/V1/InterconnectGroupsOperationalStatusInterconnectStatus.php b/Compute/src/V1/InterconnectGroupsOperationalStatusInterconnectStatus.php
index 58fc52a7141f..2ca5924d8ede 100644
--- a/Compute/src/V1/InterconnectGroupsOperationalStatusInterconnectStatus.php
+++ b/Compute/src/V1/InterconnectGroupsOperationalStatusInterconnectStatus.php
@@ -16,26 +16,26 @@
class InterconnectGroupsOperationalStatusInterconnectStatus extends \Google\Protobuf\Internal\Message
{
/**
- * Whether the Interconnect is enabled.
+ * Output only. Whether the Interconnect is enabled.
*
* Generated from protobuf field optional bool admin_enabled = 445675089;
*/
protected $admin_enabled = null;
/**
- * The diagnostics of the Interconnect, as returned by the existing
+ * Output only. The diagnostics of the Interconnect, as returned by the existing
* get-diagnostics method.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InterconnectDiagnostics diagnostics = 333355436;
*/
protected $diagnostics = null;
/**
- * The URL of the Interconnect being described.
+ * Output only. The URL of the Interconnect being described.
*
* Generated from protobuf field optional string interconnect = 224601230;
*/
protected $interconnect = null;
/**
- * Whether this interconnect is participating in the redundant
+ * Output only. Whether this interconnect is participating in the redundant
* configuration.
* Check the IsActive enum for the list of possible values.
*
@@ -50,14 +50,14 @@ class InterconnectGroupsOperationalStatusInterconnectStatus extends \Google\Prot
* Optional. Data for populating the Message object.
*
* @type bool $admin_enabled
- * Whether the Interconnect is enabled.
+ * Output only. Whether the Interconnect is enabled.
* @type \Google\Cloud\Compute\V1\InterconnectDiagnostics $diagnostics
- * The diagnostics of the Interconnect, as returned by the existing
+ * Output only. The diagnostics of the Interconnect, as returned by the existing
* get-diagnostics method.
* @type string $interconnect
- * The URL of the Interconnect being described.
+ * Output only. The URL of the Interconnect being described.
* @type string $is_active
- * Whether this interconnect is participating in the redundant
+ * Output only. Whether this interconnect is participating in the redundant
* configuration.
* Check the IsActive enum for the list of possible values.
* }
@@ -68,7 +68,7 @@ public function __construct($data = NULL) {
}
/**
- * Whether the Interconnect is enabled.
+ * Output only. Whether the Interconnect is enabled.
*
* Generated from protobuf field optional bool admin_enabled = 445675089;
* @return bool
@@ -89,7 +89,7 @@ public function clearAdminEnabled()
}
/**
- * Whether the Interconnect is enabled.
+ * Output only. Whether the Interconnect is enabled.
*
* Generated from protobuf field optional bool admin_enabled = 445675089;
* @param bool $var
@@ -104,7 +104,7 @@ public function setAdminEnabled($var)
}
/**
- * The diagnostics of the Interconnect, as returned by the existing
+ * Output only. The diagnostics of the Interconnect, as returned by the existing
* get-diagnostics method.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InterconnectDiagnostics diagnostics = 333355436;
@@ -126,7 +126,7 @@ public function clearDiagnostics()
}
/**
- * The diagnostics of the Interconnect, as returned by the existing
+ * Output only. The diagnostics of the Interconnect, as returned by the existing
* get-diagnostics method.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InterconnectDiagnostics diagnostics = 333355436;
@@ -142,7 +142,7 @@ public function setDiagnostics($var)
}
/**
- * The URL of the Interconnect being described.
+ * Output only. The URL of the Interconnect being described.
*
* Generated from protobuf field optional string interconnect = 224601230;
* @return string
@@ -163,7 +163,7 @@ public function clearInterconnect()
}
/**
- * The URL of the Interconnect being described.
+ * Output only. The URL of the Interconnect being described.
*
* Generated from protobuf field optional string interconnect = 224601230;
* @param string $var
@@ -178,7 +178,7 @@ public function setInterconnect($var)
}
/**
- * Whether this interconnect is participating in the redundant
+ * Output only. Whether this interconnect is participating in the redundant
* configuration.
* Check the IsActive enum for the list of possible values.
*
@@ -201,7 +201,7 @@ public function clearIsActive()
}
/**
- * Whether this interconnect is participating in the redundant
+ * Output only. Whether this interconnect is participating in the redundant
* configuration.
* Check the IsActive enum for the list of possible values.
*
diff --git a/Compute/src/V1/InterconnectGroupsOperationalStatusInterconnectStatus/IsActive.php b/Compute/src/V1/InterconnectGroupsOperationalStatusInterconnectStatus/IsActive.php
index 45634f8ecf1f..067f4e5fbfee 100644
--- a/Compute/src/V1/InterconnectGroupsOperationalStatusInterconnectStatus/IsActive.php
+++ b/Compute/src/V1/InterconnectGroupsOperationalStatusInterconnectStatus/IsActive.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * Whether this interconnect is participating in the redundant
+ * Output only. Whether this interconnect is participating in the redundant
* configuration.
*
* Protobuf type google.cloud.compute.v1.InterconnectGroupsOperationalStatusInterconnectStatus.IsActive
diff --git a/Compute/src/V1/InterconnectList.php b/Compute/src/V1/InterconnectList.php
index 9d4790e18322..5956cc0c4c10 100644
--- a/Compute/src/V1/InterconnectList.php
+++ b/Compute/src/V1/InterconnectList.php
@@ -28,7 +28,7 @@ class InterconnectList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Alwayscompute#interconnectList for lists of interconnects.
+ * Output only. [Output Only] Type of resource. Alwayscompute#interconnectList for lists of interconnects.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -44,7 +44,7 @@ class InterconnectList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -67,7 +67,7 @@ class InterconnectList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\Interconnect>|\Google\Protobuf\Internal\RepeatedField $items
* A list of Interconnect resources.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#interconnectList for lists of interconnects.
+ * Output only. [Output Only] Type of resource. Alwayscompute#interconnectList for lists of interconnects.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -75,7 +75,7 @@ class InterconnectList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -148,7 +148,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#interconnectList for lists of interconnects.
+ * Output only. [Output Only] Type of resource. Alwayscompute#interconnectList for lists of interconnects.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -169,7 +169,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#interconnectList for lists of interconnects.
+ * Output only. [Output Only] Type of resource. Alwayscompute#interconnectList for lists of interconnects.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -228,7 +228,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -249,7 +249,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/InterconnectLocation.php b/Compute/src/V1/InterconnectLocation.php
index ee85c852c2a1..28c3901f0960 100644
--- a/Compute/src/V1/InterconnectLocation.php
+++ b/Compute/src/V1/InterconnectLocation.php
@@ -19,7 +19,7 @@
class InterconnectLocation extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] The postal address of the Point of Presence, each line in
+ * Output only. [Output Only] The postal address of the Point of Presence, each line in
* the address is separated by a newline character.
*
* Generated from protobuf field optional string address = 462920692;
@@ -76,7 +76,7 @@ class InterconnectLocation extends \Google\Protobuf\Internal\Message
*/
protected $continent = null;
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -92,52 +92,52 @@ class InterconnectLocation extends \Google\Protobuf\Internal\Message
*/
private $cross_site_interconnect_infos;
/**
- * [Output Only] An optional description of the resource.
+ * Output only. [Output Only] An optional description of the resource.
*
* Generated from protobuf field optional string description = 422937596;
*/
protected $description = null;
/**
- * [Output Only] The name of the provider for this facility (e.g., EQUINIX).
+ * Output only. [Output Only] The name of the provider for this facility (e.g., EQUINIX).
*
* Generated from protobuf field optional string facility_provider = 533303309;
*/
protected $facility_provider = null;
/**
- * [Output Only] A provider-assigned Identifier for this facility (e.g.,
+ * Output only. [Output Only] A provider-assigned Identifier for this facility (e.g.,
* Ashburn-DC1).
*
* Generated from protobuf field optional string facility_provider_facility_id = 87269125;
*/
protected $facility_provider_facility_id = null;
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
*/
protected $id = null;
/**
- * [Output Only] Type of the resource. Alwayscompute#interconnectLocation for interconnect locations.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#interconnectLocation for interconnect locations.
*
* Generated from protobuf field optional string kind = 3292052;
*/
protected $kind = null;
/**
- * [Output Only] Name of the resource.
+ * Output only. [Output Only] Name of the resource.
*
* Generated from protobuf field optional string name = 3373707;
*/
protected $name = null;
/**
- * [Output Only] The peeringdb identifier for this facility (corresponding
+ * Output only. [Output Only] The peeringdb identifier for this facility (corresponding
* with a netfac type in peeringdb).
*
* Generated from protobuf field optional string peeringdb_facility_id = 536567094;
*/
protected $peeringdb_facility_id = null;
/**
- * [Output Only] A list of InterconnectLocation.RegionInfo objects, that
+ * Output only. [Output Only] A list of InterconnectLocation.RegionInfo objects, that
* describe parameters pertaining to the relation between this
* InterconnectLocation and various Google Cloud regions.
*
@@ -145,13 +145,13 @@ class InterconnectLocation extends \Google\Protobuf\Internal\Message
*/
private $region_infos;
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] URLs of the other locations that can pair up with this
+ * Output only. [Output Only] URLs of the other locations that can pair up with this
* location to support Single-Region 99.99% SLA. E.g. iad-zone1-1 and
* iad-zone2-5467 are Single-Region 99.99% peer locations of each other.
*
@@ -171,7 +171,7 @@ class InterconnectLocation extends \Google\Protobuf\Internal\Message
*/
protected $status = null;
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool supports_pzs = 83983214;
*/
@@ -184,7 +184,7 @@ class InterconnectLocation extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $address
- * [Output Only] The postal address of the Point of Presence, each line in
+ * Output only. [Output Only] The postal address of the Point of Presence, each line in
* the address is separated by a newline character.
* @type string $availability_zone
* [Output Only] Availability zone for this InterconnectLocation. Within a
@@ -217,7 +217,7 @@ class InterconnectLocation extends \Google\Protobuf\Internal\Message
* - SOUTH_AMERICA
* Check the Continent enum for the list of possible values.
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type array<\Google\Cloud\Compute\V1\InterconnectLocationCrossSiteInterconnectInfo>|\Google\Protobuf\Internal\RepeatedField $cross_site_interconnect_infos
* [Output Only] A list of InterconnectLocation.CrossSiteInterconnectInfo
@@ -225,30 +225,30 @@ class InterconnectLocation extends \Google\Protobuf\Internal\Message
* from this location and associated connection parameters. Cross-Site
* Interconnect isn't allowed to locations which are not listed.
* @type string $description
- * [Output Only] An optional description of the resource.
+ * Output only. [Output Only] An optional description of the resource.
* @type string $facility_provider
- * [Output Only] The name of the provider for this facility (e.g., EQUINIX).
+ * Output only. [Output Only] The name of the provider for this facility (e.g., EQUINIX).
* @type string $facility_provider_facility_id
- * [Output Only] A provider-assigned Identifier for this facility (e.g.,
+ * Output only. [Output Only] A provider-assigned Identifier for this facility (e.g.,
* Ashburn-DC1).
* @type int|string $id
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type string $kind
- * [Output Only] Type of the resource. Alwayscompute#interconnectLocation for interconnect locations.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#interconnectLocation for interconnect locations.
* @type string $name
- * [Output Only] Name of the resource.
+ * Output only. [Output Only] Name of the resource.
* @type string $peeringdb_facility_id
- * [Output Only] The peeringdb identifier for this facility (corresponding
+ * Output only. [Output Only] The peeringdb identifier for this facility (corresponding
* with a netfac type in peeringdb).
* @type array<\Google\Cloud\Compute\V1\InterconnectLocationRegionInfo>|\Google\Protobuf\Internal\RepeatedField $region_infos
- * [Output Only] A list of InterconnectLocation.RegionInfo objects, that
+ * Output only. [Output Only] A list of InterconnectLocation.RegionInfo objects, that
* describe parameters pertaining to the relation between this
* InterconnectLocation and various Google Cloud regions.
* @type string $self_link
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $single_region_production_critical_peer_locations
- * [Output Only] URLs of the other locations that can pair up with this
+ * Output only. [Output Only] URLs of the other locations that can pair up with this
* location to support Single-Region 99.99% SLA. E.g. iad-zone1-1 and
* iad-zone2-5467 are Single-Region 99.99% peer locations of each other.
* @type string $status
@@ -260,7 +260,7 @@ class InterconnectLocation extends \Google\Protobuf\Internal\Message
* Interconnects.
* Check the Status enum for the list of possible values.
* @type bool $supports_pzs
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
* }
*/
public function __construct($data = NULL) {
@@ -269,7 +269,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] The postal address of the Point of Presence, each line in
+ * Output only. [Output Only] The postal address of the Point of Presence, each line in
* the address is separated by a newline character.
*
* Generated from protobuf field optional string address = 462920692;
@@ -291,7 +291,7 @@ public function clearAddress()
}
/**
- * [Output Only] The postal address of the Point of Presence, each line in
+ * Output only. [Output Only] The postal address of the Point of Presence, each line in
* the address is separated by a newline character.
*
* Generated from protobuf field optional string address = 462920692;
@@ -507,7 +507,7 @@ public function setContinent($var)
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -529,7 +529,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -577,7 +577,7 @@ public function setCrossSiteInterconnectInfos($var)
}
/**
- * [Output Only] An optional description of the resource.
+ * Output only. [Output Only] An optional description of the resource.
*
* Generated from protobuf field optional string description = 422937596;
* @return string
@@ -598,7 +598,7 @@ public function clearDescription()
}
/**
- * [Output Only] An optional description of the resource.
+ * Output only. [Output Only] An optional description of the resource.
*
* Generated from protobuf field optional string description = 422937596;
* @param string $var
@@ -613,7 +613,7 @@ public function setDescription($var)
}
/**
- * [Output Only] The name of the provider for this facility (e.g., EQUINIX).
+ * Output only. [Output Only] The name of the provider for this facility (e.g., EQUINIX).
*
* Generated from protobuf field optional string facility_provider = 533303309;
* @return string
@@ -634,7 +634,7 @@ public function clearFacilityProvider()
}
/**
- * [Output Only] The name of the provider for this facility (e.g., EQUINIX).
+ * Output only. [Output Only] The name of the provider for this facility (e.g., EQUINIX).
*
* Generated from protobuf field optional string facility_provider = 533303309;
* @param string $var
@@ -649,7 +649,7 @@ public function setFacilityProvider($var)
}
/**
- * [Output Only] A provider-assigned Identifier for this facility (e.g.,
+ * Output only. [Output Only] A provider-assigned Identifier for this facility (e.g.,
* Ashburn-DC1).
*
* Generated from protobuf field optional string facility_provider_facility_id = 87269125;
@@ -671,7 +671,7 @@ public function clearFacilityProviderFacilityId()
}
/**
- * [Output Only] A provider-assigned Identifier for this facility (e.g.,
+ * Output only. [Output Only] A provider-assigned Identifier for this facility (e.g.,
* Ashburn-DC1).
*
* Generated from protobuf field optional string facility_provider_facility_id = 87269125;
@@ -687,7 +687,7 @@ public function setFacilityProviderFacilityId($var)
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -709,7 +709,7 @@ public function clearId()
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -725,7 +725,7 @@ public function setId($var)
}
/**
- * [Output Only] Type of the resource. Alwayscompute#interconnectLocation for interconnect locations.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#interconnectLocation for interconnect locations.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -746,7 +746,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Alwayscompute#interconnectLocation for interconnect locations.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#interconnectLocation for interconnect locations.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -761,7 +761,7 @@ public function setKind($var)
}
/**
- * [Output Only] Name of the resource.
+ * Output only. [Output Only] Name of the resource.
*
* Generated from protobuf field optional string name = 3373707;
* @return string
@@ -782,7 +782,7 @@ public function clearName()
}
/**
- * [Output Only] Name of the resource.
+ * Output only. [Output Only] Name of the resource.
*
* Generated from protobuf field optional string name = 3373707;
* @param string $var
@@ -797,7 +797,7 @@ public function setName($var)
}
/**
- * [Output Only] The peeringdb identifier for this facility (corresponding
+ * Output only. [Output Only] The peeringdb identifier for this facility (corresponding
* with a netfac type in peeringdb).
*
* Generated from protobuf field optional string peeringdb_facility_id = 536567094;
@@ -819,7 +819,7 @@ public function clearPeeringdbFacilityId()
}
/**
- * [Output Only] The peeringdb identifier for this facility (corresponding
+ * Output only. [Output Only] The peeringdb identifier for this facility (corresponding
* with a netfac type in peeringdb).
*
* Generated from protobuf field optional string peeringdb_facility_id = 536567094;
@@ -835,7 +835,7 @@ public function setPeeringdbFacilityId($var)
}
/**
- * [Output Only] A list of InterconnectLocation.RegionInfo objects, that
+ * Output only. [Output Only] A list of InterconnectLocation.RegionInfo objects, that
* describe parameters pertaining to the relation between this
* InterconnectLocation and various Google Cloud regions.
*
@@ -848,7 +848,7 @@ public function getRegionInfos()
}
/**
- * [Output Only] A list of InterconnectLocation.RegionInfo objects, that
+ * Output only. [Output Only] A list of InterconnectLocation.RegionInfo objects, that
* describe parameters pertaining to the relation between this
* InterconnectLocation and various Google Cloud regions.
*
@@ -865,7 +865,7 @@ public function setRegionInfos($var)
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -886,7 +886,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -901,7 +901,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] URLs of the other locations that can pair up with this
+ * Output only. [Output Only] URLs of the other locations that can pair up with this
* location to support Single-Region 99.99% SLA. E.g. iad-zone1-1 and
* iad-zone2-5467 are Single-Region 99.99% peer locations of each other.
*
@@ -914,7 +914,7 @@ public function getSingleRegionProductionCriticalPeerLocations()
}
/**
- * [Output Only] URLs of the other locations that can pair up with this
+ * Output only. [Output Only] URLs of the other locations that can pair up with this
* location to support Single-Region 99.99% SLA. E.g. iad-zone1-1 and
* iad-zone2-5467 are Single-Region 99.99% peer locations of each other.
*
@@ -979,7 +979,7 @@ public function setStatus($var)
}
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool supports_pzs = 83983214;
* @return bool
@@ -1000,7 +1000,7 @@ public function clearSupportsPzs()
}
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool supports_pzs = 83983214;
* @param bool $var
diff --git a/Compute/src/V1/InterconnectLocationCrossSiteInterconnectInfo.php b/Compute/src/V1/InterconnectLocationCrossSiteInterconnectInfo.php
index 96128bc06be9..db91f1a3ce38 100644
--- a/Compute/src/V1/InterconnectLocationCrossSiteInterconnectInfo.php
+++ b/Compute/src/V1/InterconnectLocationCrossSiteInterconnectInfo.php
@@ -17,7 +17,7 @@
class InterconnectLocationCrossSiteInterconnectInfo extends \Google\Protobuf\Internal\Message
{
/**
- * The remote location for Cross-Site Interconnect wires. This specifies an
+ * Output only. The remote location for Cross-Site Interconnect wires. This specifies an
* InterconnectLocation city (metropolitan area designator), which itself
* may match multiple InterconnectLocations.
*
@@ -32,7 +32,7 @@ class InterconnectLocationCrossSiteInterconnectInfo extends \Google\Protobuf\Int
* Optional. Data for populating the Message object.
*
* @type string $city
- * The remote location for Cross-Site Interconnect wires. This specifies an
+ * Output only. The remote location for Cross-Site Interconnect wires. This specifies an
* InterconnectLocation city (metropolitan area designator), which itself
* may match multiple InterconnectLocations.
* }
@@ -43,7 +43,7 @@ public function __construct($data = NULL) {
}
/**
- * The remote location for Cross-Site Interconnect wires. This specifies an
+ * Output only. The remote location for Cross-Site Interconnect wires. This specifies an
* InterconnectLocation city (metropolitan area designator), which itself
* may match multiple InterconnectLocations.
*
@@ -66,7 +66,7 @@ public function clearCity()
}
/**
- * The remote location for Cross-Site Interconnect wires. This specifies an
+ * Output only. The remote location for Cross-Site Interconnect wires. This specifies an
* InterconnectLocation city (metropolitan area designator), which itself
* may match multiple InterconnectLocations.
*
diff --git a/Compute/src/V1/InterconnectLocationList.php b/Compute/src/V1/InterconnectLocationList.php
index 7e064dd4a3b7..e005f7a9f523 100644
--- a/Compute/src/V1/InterconnectLocationList.php
+++ b/Compute/src/V1/InterconnectLocationList.php
@@ -28,7 +28,7 @@ class InterconnectLocationList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Alwayscompute#interconnectLocationList for lists of interconnect
+ * Output only. [Output Only] Type of resource. Alwayscompute#interconnectLocationList for lists of interconnect
* locations.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -45,7 +45,7 @@ class InterconnectLocationList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -68,7 +68,7 @@ class InterconnectLocationList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\InterconnectLocation>|\Google\Protobuf\Internal\RepeatedField $items
* A list of InterconnectLocation resources.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#interconnectLocationList for lists of interconnect
+ * Output only. [Output Only] Type of resource. Alwayscompute#interconnectLocationList for lists of interconnect
* locations.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -77,7 +77,7 @@ class InterconnectLocationList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -150,7 +150,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#interconnectLocationList for lists of interconnect
+ * Output only. [Output Only] Type of resource. Alwayscompute#interconnectLocationList for lists of interconnect
* locations.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -172,7 +172,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#interconnectLocationList for lists of interconnect
+ * Output only. [Output Only] Type of resource. Alwayscompute#interconnectLocationList for lists of interconnect
* locations.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -232,7 +232,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -253,7 +253,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/InterconnectLocationRegionInfo.php b/Compute/src/V1/InterconnectLocationRegionInfo.php
index 27539ae5e433..57b97b2f3e27 100644
--- a/Compute/src/V1/InterconnectLocationRegionInfo.php
+++ b/Compute/src/V1/InterconnectLocationRegionInfo.php
@@ -18,28 +18,28 @@
class InterconnectLocationRegionInfo extends \Google\Protobuf\Internal\Message
{
/**
- * Expected round-trip time in milliseconds, from this InterconnectLocation
+ * Output only. Expected round-trip time in milliseconds, from this InterconnectLocation
* to a VM in this region.
*
* Generated from protobuf field optional int64 expected_rtt_ms = 422543866;
*/
protected $expected_rtt_ms = null;
/**
- * Identifies whether L2 Interconnect Attachments can be created in this
+ * Output only. Identifies whether L2 Interconnect Attachments can be created in this
* region for interconnects that are in this location.
*
* Generated from protobuf field optional bool l2_forwarding_enabled = 241364888;
*/
protected $l2_forwarding_enabled = null;
/**
- * Identifies the network presence of this location.
+ * Output only. Identifies the network presence of this location.
* Check the LocationPresence enum for the list of possible values.
*
* Generated from protobuf field optional string location_presence = 101517893;
*/
protected $location_presence = null;
/**
- * URL for the region of this location.
+ * Output only. URL for the region of this location.
*
* Generated from protobuf field optional string region = 138946292;
*/
@@ -52,16 +52,16 @@ class InterconnectLocationRegionInfo extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type int|string $expected_rtt_ms
- * Expected round-trip time in milliseconds, from this InterconnectLocation
+ * Output only. Expected round-trip time in milliseconds, from this InterconnectLocation
* to a VM in this region.
* @type bool $l2_forwarding_enabled
- * Identifies whether L2 Interconnect Attachments can be created in this
+ * Output only. Identifies whether L2 Interconnect Attachments can be created in this
* region for interconnects that are in this location.
* @type string $location_presence
- * Identifies the network presence of this location.
+ * Output only. Identifies the network presence of this location.
* Check the LocationPresence enum for the list of possible values.
* @type string $region
- * URL for the region of this location.
+ * Output only. URL for the region of this location.
* }
*/
public function __construct($data = NULL) {
@@ -70,7 +70,7 @@ public function __construct($data = NULL) {
}
/**
- * Expected round-trip time in milliseconds, from this InterconnectLocation
+ * Output only. Expected round-trip time in milliseconds, from this InterconnectLocation
* to a VM in this region.
*
* Generated from protobuf field optional int64 expected_rtt_ms = 422543866;
@@ -92,7 +92,7 @@ public function clearExpectedRttMs()
}
/**
- * Expected round-trip time in milliseconds, from this InterconnectLocation
+ * Output only. Expected round-trip time in milliseconds, from this InterconnectLocation
* to a VM in this region.
*
* Generated from protobuf field optional int64 expected_rtt_ms = 422543866;
@@ -108,7 +108,7 @@ public function setExpectedRttMs($var)
}
/**
- * Identifies whether L2 Interconnect Attachments can be created in this
+ * Output only. Identifies whether L2 Interconnect Attachments can be created in this
* region for interconnects that are in this location.
*
* Generated from protobuf field optional bool l2_forwarding_enabled = 241364888;
@@ -130,7 +130,7 @@ public function clearL2ForwardingEnabled()
}
/**
- * Identifies whether L2 Interconnect Attachments can be created in this
+ * Output only. Identifies whether L2 Interconnect Attachments can be created in this
* region for interconnects that are in this location.
*
* Generated from protobuf field optional bool l2_forwarding_enabled = 241364888;
@@ -146,7 +146,7 @@ public function setL2ForwardingEnabled($var)
}
/**
- * Identifies the network presence of this location.
+ * Output only. Identifies the network presence of this location.
* Check the LocationPresence enum for the list of possible values.
*
* Generated from protobuf field optional string location_presence = 101517893;
@@ -168,7 +168,7 @@ public function clearLocationPresence()
}
/**
- * Identifies the network presence of this location.
+ * Output only. Identifies the network presence of this location.
* Check the LocationPresence enum for the list of possible values.
*
* Generated from protobuf field optional string location_presence = 101517893;
@@ -184,7 +184,7 @@ public function setLocationPresence($var)
}
/**
- * URL for the region of this location.
+ * Output only. URL for the region of this location.
*
* Generated from protobuf field optional string region = 138946292;
* @return string
@@ -205,7 +205,7 @@ public function clearRegion()
}
/**
- * URL for the region of this location.
+ * Output only. URL for the region of this location.
*
* Generated from protobuf field optional string region = 138946292;
* @param string $var
diff --git a/Compute/src/V1/InterconnectLocationRegionInfo/LocationPresence.php b/Compute/src/V1/InterconnectLocationRegionInfo/LocationPresence.php
index a6a78ae0fade..8609eb1e9a36 100644
--- a/Compute/src/V1/InterconnectLocationRegionInfo/LocationPresence.php
+++ b/Compute/src/V1/InterconnectLocationRegionInfo/LocationPresence.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * Identifies the network presence of this location.
+ * Output only. Identifies the network presence of this location.
*
* Protobuf type google.cloud.compute.v1.InterconnectLocationRegionInfo.LocationPresence
*/
diff --git a/Compute/src/V1/InterconnectRemoteLocation.php b/Compute/src/V1/InterconnectRemoteLocation.php
index 4e30f6a2f326..b13b24bbb9e0 100644
--- a/Compute/src/V1/InterconnectRemoteLocation.php
+++ b/Compute/src/V1/InterconnectRemoteLocation.php
@@ -18,14 +18,14 @@
class InterconnectRemoteLocation extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] The postal address of the Point of Presence, each line in
+ * Output only. [Output Only] The postal address of the Point of Presence, each line in
* the address is separated by a newline character.
*
* Generated from protobuf field optional string address = 462920692;
*/
protected $address = null;
/**
- * [Output Only] Subset of fields from InterconnectAttachment's
+ * Output only. [Output Only] Subset of fields from InterconnectAttachment's
* |configurationConstraints| field that apply to all attachments for this
* remote location.
*
@@ -33,7 +33,7 @@ class InterconnectRemoteLocation extends \Google\Protobuf\Internal\Message
*/
protected $attachment_configuration_constraints = null;
/**
- * [Output Only] Metropolitan area designator that indicates which city an
+ * Output only. [Output Only] Metropolitan area designator that indicates which city an
* interconnect is located.
* For example: "Chicago, IL", "Amsterdam, Netherlands".
*
@@ -41,14 +41,14 @@ class InterconnectRemoteLocation extends \Google\Protobuf\Internal\Message
*/
protected $city = null;
/**
- * [Output Only] Constraints on the parameters for creating Cross-Cloud
+ * Output only. [Output Only] Constraints on the parameters for creating Cross-Cloud
* Interconnect and associated InterconnectAttachments.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InterconnectRemoteLocationConstraints constraints = 3909174;
*/
protected $constraints = null;
/**
- * [Output Only] Continent for this location, which can take one of the
+ * Output only. [Output Only] Continent for this location, which can take one of the
* following values:
* - AFRICA
* - ASIA_PAC
@@ -61,47 +61,47 @@ class InterconnectRemoteLocation extends \Google\Protobuf\Internal\Message
*/
protected $continent = null;
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
*/
protected $creation_timestamp = null;
/**
- * [Output Only] An optional description of the resource.
+ * Output only. [Output Only] An optional description of the resource.
*
* Generated from protobuf field optional string description = 422937596;
*/
protected $description = null;
/**
- * [Output Only] The name of the provider for this facility (e.g., EQUINIX).
+ * Output only. [Output Only] The name of the provider for this facility (e.g., EQUINIX).
*
* Generated from protobuf field optional string facility_provider = 533303309;
*/
protected $facility_provider = null;
/**
- * [Output Only] A provider-assigned Identifier for this facility (e.g.,
+ * Output only. [Output Only] A provider-assigned Identifier for this facility (e.g.,
* Ashburn-DC1).
*
* Generated from protobuf field optional string facility_provider_facility_id = 87269125;
*/
protected $facility_provider_facility_id = null;
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
*/
protected $id = null;
/**
- * [Output Only] Type of the resource. Alwayscompute#interconnectRemoteLocation for interconnect remote
+ * Output only. [Output Only] Type of the resource. Alwayscompute#interconnectRemoteLocation for interconnect remote
* locations.
*
* Generated from protobuf field optional string kind = 3292052;
*/
protected $kind = null;
/**
- * [Output Only] Link Aggregation Control Protocol (LACP) constraints, which
+ * Output only. [Output Only] Link Aggregation Control Protocol (LACP) constraints, which
* can take one of the following values: LACP_SUPPORTED, LACP_UNSUPPORTED
* Check the Lacp enum for the list of possible values.
*
@@ -109,7 +109,7 @@ class InterconnectRemoteLocation extends \Google\Protobuf\Internal\Message
*/
protected $lacp = null;
/**
- * [Output Only]
+ * Output only. [Output Only]
* The maximum number of 100 Gbps ports supported in a link aggregation group
* (LAG). When linkType is 100 Gbps, requestedLinkCount cannot exceed
* max_lag_size_100_gbps.
@@ -118,7 +118,7 @@ class InterconnectRemoteLocation extends \Google\Protobuf\Internal\Message
*/
protected $max_lag_size100_gbps = null;
/**
- * [Output Only]
+ * Output only. [Output Only]
* The maximum number of 10 Gbps ports supported in a link aggregation group
* (LAG). When linkType is 10 Gbps, requestedLinkCount cannot exceed
* max_lag_size_10_gbps.
@@ -127,7 +127,7 @@ class InterconnectRemoteLocation extends \Google\Protobuf\Internal\Message
*/
protected $max_lag_size10_gbps = null;
/**
- * [Output Only]
+ * Output only. [Output Only]
* The maximum number of 400 Gbps ports supported in a link aggregation group
* (LAG). When linkType is 400 Gbps, requestedLinkCount cannot exceed
* max_lag_size_400_gbps.
@@ -136,39 +136,39 @@ class InterconnectRemoteLocation extends \Google\Protobuf\Internal\Message
*/
protected $max_lag_size400_gbps = null;
/**
- * [Output Only] Name of the resource.
+ * Output only. [Output Only] Name of the resource.
*
* Generated from protobuf field optional string name = 3373707;
*/
protected $name = null;
/**
- * [Output Only] The peeringdb identifier for this facility (corresponding
+ * Output only. [Output Only] The peeringdb identifier for this facility (corresponding
* with a netfac type in peeringdb).
*
* Generated from protobuf field optional string peeringdb_facility_id = 536567094;
*/
protected $peeringdb_facility_id = null;
/**
- * [Output Only] Permitted connections.
+ * Output only. [Output Only] Permitted connections.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.InterconnectRemoteLocationPermittedConnections permitted_connections = 442063278;
*/
private $permitted_connections;
/**
- * [Output Only] Indicates the service provider present at the remote
+ * Output only. [Output Only] Indicates the service provider present at the remote
* location. Example values: "Amazon Web Services", "Microsoft Azure".
*
* Generated from protobuf field optional string remote_service = 391954364;
*/
protected $remote_service = null;
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] The status of this InterconnectRemoteLocation, which can take
+ * Output only. [Output Only] The status of this InterconnectRemoteLocation, which can take
* one of the following values:
* - CLOSED: The InterconnectRemoteLocation is closed and is unavailable
* for provisioning new Cross-Cloud Interconnects.
@@ -188,21 +188,21 @@ class InterconnectRemoteLocation extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $address
- * [Output Only] The postal address of the Point of Presence, each line in
+ * Output only. [Output Only] The postal address of the Point of Presence, each line in
* the address is separated by a newline character.
* @type \Google\Cloud\Compute\V1\InterconnectAttachmentConfigurationConstraints $attachment_configuration_constraints
- * [Output Only] Subset of fields from InterconnectAttachment's
+ * Output only. [Output Only] Subset of fields from InterconnectAttachment's
* |configurationConstraints| field that apply to all attachments for this
* remote location.
* @type string $city
- * [Output Only] Metropolitan area designator that indicates which city an
+ * Output only. [Output Only] Metropolitan area designator that indicates which city an
* interconnect is located.
* For example: "Chicago, IL", "Amsterdam, Netherlands".
* @type \Google\Cloud\Compute\V1\InterconnectRemoteLocationConstraints $constraints
- * [Output Only] Constraints on the parameters for creating Cross-Cloud
+ * Output only. [Output Only] Constraints on the parameters for creating Cross-Cloud
* Interconnect and associated InterconnectAttachments.
* @type string $continent
- * [Output Only] Continent for this location, which can take one of the
+ * Output only. [Output Only] Continent for this location, which can take one of the
* following values:
* - AFRICA
* - ASIA_PAC
@@ -211,54 +211,54 @@ class InterconnectRemoteLocation extends \Google\Protobuf\Internal\Message
* - SOUTH_AMERICA
* Check the Continent enum for the list of possible values.
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $description
- * [Output Only] An optional description of the resource.
+ * Output only. [Output Only] An optional description of the resource.
* @type string $facility_provider
- * [Output Only] The name of the provider for this facility (e.g., EQUINIX).
+ * Output only. [Output Only] The name of the provider for this facility (e.g., EQUINIX).
* @type string $facility_provider_facility_id
- * [Output Only] A provider-assigned Identifier for this facility (e.g.,
+ * Output only. [Output Only] A provider-assigned Identifier for this facility (e.g.,
* Ashburn-DC1).
* @type int|string $id
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type string $kind
- * [Output Only] Type of the resource. Alwayscompute#interconnectRemoteLocation for interconnect remote
+ * Output only. [Output Only] Type of the resource. Alwayscompute#interconnectRemoteLocation for interconnect remote
* locations.
* @type string $lacp
- * [Output Only] Link Aggregation Control Protocol (LACP) constraints, which
+ * Output only. [Output Only] Link Aggregation Control Protocol (LACP) constraints, which
* can take one of the following values: LACP_SUPPORTED, LACP_UNSUPPORTED
* Check the Lacp enum for the list of possible values.
* @type int $max_lag_size100_gbps
- * [Output Only]
+ * Output only. [Output Only]
* The maximum number of 100 Gbps ports supported in a link aggregation group
* (LAG). When linkType is 100 Gbps, requestedLinkCount cannot exceed
* max_lag_size_100_gbps.
* @type int $max_lag_size10_gbps
- * [Output Only]
+ * Output only. [Output Only]
* The maximum number of 10 Gbps ports supported in a link aggregation group
* (LAG). When linkType is 10 Gbps, requestedLinkCount cannot exceed
* max_lag_size_10_gbps.
* @type int $max_lag_size400_gbps
- * [Output Only]
+ * Output only. [Output Only]
* The maximum number of 400 Gbps ports supported in a link aggregation group
* (LAG). When linkType is 400 Gbps, requestedLinkCount cannot exceed
* max_lag_size_400_gbps.
* @type string $name
- * [Output Only] Name of the resource.
+ * Output only. [Output Only] Name of the resource.
* @type string $peeringdb_facility_id
- * [Output Only] The peeringdb identifier for this facility (corresponding
+ * Output only. [Output Only] The peeringdb identifier for this facility (corresponding
* with a netfac type in peeringdb).
* @type array<\Google\Cloud\Compute\V1\InterconnectRemoteLocationPermittedConnections>|\Google\Protobuf\Internal\RepeatedField $permitted_connections
- * [Output Only] Permitted connections.
+ * Output only. [Output Only] Permitted connections.
* @type string $remote_service
- * [Output Only] Indicates the service provider present at the remote
+ * Output only. [Output Only] Indicates the service provider present at the remote
* location. Example values: "Amazon Web Services", "Microsoft Azure".
* @type string $self_link
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
* @type string $status
- * [Output Only] The status of this InterconnectRemoteLocation, which can take
+ * Output only. [Output Only] The status of this InterconnectRemoteLocation, which can take
* one of the following values:
* - CLOSED: The InterconnectRemoteLocation is closed and is unavailable
* for provisioning new Cross-Cloud Interconnects.
@@ -274,7 +274,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] The postal address of the Point of Presence, each line in
+ * Output only. [Output Only] The postal address of the Point of Presence, each line in
* the address is separated by a newline character.
*
* Generated from protobuf field optional string address = 462920692;
@@ -296,7 +296,7 @@ public function clearAddress()
}
/**
- * [Output Only] The postal address of the Point of Presence, each line in
+ * Output only. [Output Only] The postal address of the Point of Presence, each line in
* the address is separated by a newline character.
*
* Generated from protobuf field optional string address = 462920692;
@@ -312,7 +312,7 @@ public function setAddress($var)
}
/**
- * [Output Only] Subset of fields from InterconnectAttachment's
+ * Output only. [Output Only] Subset of fields from InterconnectAttachment's
* |configurationConstraints| field that apply to all attachments for this
* remote location.
*
@@ -335,7 +335,7 @@ public function clearAttachmentConfigurationConstraints()
}
/**
- * [Output Only] Subset of fields from InterconnectAttachment's
+ * Output only. [Output Only] Subset of fields from InterconnectAttachment's
* |configurationConstraints| field that apply to all attachments for this
* remote location.
*
@@ -352,7 +352,7 @@ public function setAttachmentConfigurationConstraints($var)
}
/**
- * [Output Only] Metropolitan area designator that indicates which city an
+ * Output only. [Output Only] Metropolitan area designator that indicates which city an
* interconnect is located.
* For example: "Chicago, IL", "Amsterdam, Netherlands".
*
@@ -375,7 +375,7 @@ public function clearCity()
}
/**
- * [Output Only] Metropolitan area designator that indicates which city an
+ * Output only. [Output Only] Metropolitan area designator that indicates which city an
* interconnect is located.
* For example: "Chicago, IL", "Amsterdam, Netherlands".
*
@@ -392,7 +392,7 @@ public function setCity($var)
}
/**
- * [Output Only] Constraints on the parameters for creating Cross-Cloud
+ * Output only. [Output Only] Constraints on the parameters for creating Cross-Cloud
* Interconnect and associated InterconnectAttachments.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InterconnectRemoteLocationConstraints constraints = 3909174;
@@ -414,7 +414,7 @@ public function clearConstraints()
}
/**
- * [Output Only] Constraints on the parameters for creating Cross-Cloud
+ * Output only. [Output Only] Constraints on the parameters for creating Cross-Cloud
* Interconnect and associated InterconnectAttachments.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InterconnectRemoteLocationConstraints constraints = 3909174;
@@ -430,7 +430,7 @@ public function setConstraints($var)
}
/**
- * [Output Only] Continent for this location, which can take one of the
+ * Output only. [Output Only] Continent for this location, which can take one of the
* following values:
* - AFRICA
* - ASIA_PAC
@@ -458,7 +458,7 @@ public function clearContinent()
}
/**
- * [Output Only] Continent for this location, which can take one of the
+ * Output only. [Output Only] Continent for this location, which can take one of the
* following values:
* - AFRICA
* - ASIA_PAC
@@ -480,7 +480,7 @@ public function setContinent($var)
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -502,7 +502,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -518,7 +518,7 @@ public function setCreationTimestamp($var)
}
/**
- * [Output Only] An optional description of the resource.
+ * Output only. [Output Only] An optional description of the resource.
*
* Generated from protobuf field optional string description = 422937596;
* @return string
@@ -539,7 +539,7 @@ public function clearDescription()
}
/**
- * [Output Only] An optional description of the resource.
+ * Output only. [Output Only] An optional description of the resource.
*
* Generated from protobuf field optional string description = 422937596;
* @param string $var
@@ -554,7 +554,7 @@ public function setDescription($var)
}
/**
- * [Output Only] The name of the provider for this facility (e.g., EQUINIX).
+ * Output only. [Output Only] The name of the provider for this facility (e.g., EQUINIX).
*
* Generated from protobuf field optional string facility_provider = 533303309;
* @return string
@@ -575,7 +575,7 @@ public function clearFacilityProvider()
}
/**
- * [Output Only] The name of the provider for this facility (e.g., EQUINIX).
+ * Output only. [Output Only] The name of the provider for this facility (e.g., EQUINIX).
*
* Generated from protobuf field optional string facility_provider = 533303309;
* @param string $var
@@ -590,7 +590,7 @@ public function setFacilityProvider($var)
}
/**
- * [Output Only] A provider-assigned Identifier for this facility (e.g.,
+ * Output only. [Output Only] A provider-assigned Identifier for this facility (e.g.,
* Ashburn-DC1).
*
* Generated from protobuf field optional string facility_provider_facility_id = 87269125;
@@ -612,7 +612,7 @@ public function clearFacilityProviderFacilityId()
}
/**
- * [Output Only] A provider-assigned Identifier for this facility (e.g.,
+ * Output only. [Output Only] A provider-assigned Identifier for this facility (e.g.,
* Ashburn-DC1).
*
* Generated from protobuf field optional string facility_provider_facility_id = 87269125;
@@ -628,7 +628,7 @@ public function setFacilityProviderFacilityId($var)
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -650,7 +650,7 @@ public function clearId()
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -666,7 +666,7 @@ public function setId($var)
}
/**
- * [Output Only] Type of the resource. Alwayscompute#interconnectRemoteLocation for interconnect remote
+ * Output only. [Output Only] Type of the resource. Alwayscompute#interconnectRemoteLocation for interconnect remote
* locations.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -688,7 +688,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Alwayscompute#interconnectRemoteLocation for interconnect remote
+ * Output only. [Output Only] Type of the resource. Alwayscompute#interconnectRemoteLocation for interconnect remote
* locations.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -704,7 +704,7 @@ public function setKind($var)
}
/**
- * [Output Only] Link Aggregation Control Protocol (LACP) constraints, which
+ * Output only. [Output Only] Link Aggregation Control Protocol (LACP) constraints, which
* can take one of the following values: LACP_SUPPORTED, LACP_UNSUPPORTED
* Check the Lacp enum for the list of possible values.
*
@@ -727,7 +727,7 @@ public function clearLacp()
}
/**
- * [Output Only] Link Aggregation Control Protocol (LACP) constraints, which
+ * Output only. [Output Only] Link Aggregation Control Protocol (LACP) constraints, which
* can take one of the following values: LACP_SUPPORTED, LACP_UNSUPPORTED
* Check the Lacp enum for the list of possible values.
*
@@ -744,7 +744,7 @@ public function setLacp($var)
}
/**
- * [Output Only]
+ * Output only. [Output Only]
* The maximum number of 100 Gbps ports supported in a link aggregation group
* (LAG). When linkType is 100 Gbps, requestedLinkCount cannot exceed
* max_lag_size_100_gbps.
@@ -768,7 +768,7 @@ public function clearMaxLagSize100Gbps()
}
/**
- * [Output Only]
+ * Output only. [Output Only]
* The maximum number of 100 Gbps ports supported in a link aggregation group
* (LAG). When linkType is 100 Gbps, requestedLinkCount cannot exceed
* max_lag_size_100_gbps.
@@ -786,7 +786,7 @@ public function setMaxLagSize100Gbps($var)
}
/**
- * [Output Only]
+ * Output only. [Output Only]
* The maximum number of 10 Gbps ports supported in a link aggregation group
* (LAG). When linkType is 10 Gbps, requestedLinkCount cannot exceed
* max_lag_size_10_gbps.
@@ -810,7 +810,7 @@ public function clearMaxLagSize10Gbps()
}
/**
- * [Output Only]
+ * Output only. [Output Only]
* The maximum number of 10 Gbps ports supported in a link aggregation group
* (LAG). When linkType is 10 Gbps, requestedLinkCount cannot exceed
* max_lag_size_10_gbps.
@@ -828,7 +828,7 @@ public function setMaxLagSize10Gbps($var)
}
/**
- * [Output Only]
+ * Output only. [Output Only]
* The maximum number of 400 Gbps ports supported in a link aggregation group
* (LAG). When linkType is 400 Gbps, requestedLinkCount cannot exceed
* max_lag_size_400_gbps.
@@ -852,7 +852,7 @@ public function clearMaxLagSize400Gbps()
}
/**
- * [Output Only]
+ * Output only. [Output Only]
* The maximum number of 400 Gbps ports supported in a link aggregation group
* (LAG). When linkType is 400 Gbps, requestedLinkCount cannot exceed
* max_lag_size_400_gbps.
@@ -870,7 +870,7 @@ public function setMaxLagSize400Gbps($var)
}
/**
- * [Output Only] Name of the resource.
+ * Output only. [Output Only] Name of the resource.
*
* Generated from protobuf field optional string name = 3373707;
* @return string
@@ -891,7 +891,7 @@ public function clearName()
}
/**
- * [Output Only] Name of the resource.
+ * Output only. [Output Only] Name of the resource.
*
* Generated from protobuf field optional string name = 3373707;
* @param string $var
@@ -906,7 +906,7 @@ public function setName($var)
}
/**
- * [Output Only] The peeringdb identifier for this facility (corresponding
+ * Output only. [Output Only] The peeringdb identifier for this facility (corresponding
* with a netfac type in peeringdb).
*
* Generated from protobuf field optional string peeringdb_facility_id = 536567094;
@@ -928,7 +928,7 @@ public function clearPeeringdbFacilityId()
}
/**
- * [Output Only] The peeringdb identifier for this facility (corresponding
+ * Output only. [Output Only] The peeringdb identifier for this facility (corresponding
* with a netfac type in peeringdb).
*
* Generated from protobuf field optional string peeringdb_facility_id = 536567094;
@@ -944,7 +944,7 @@ public function setPeeringdbFacilityId($var)
}
/**
- * [Output Only] Permitted connections.
+ * Output only. [Output Only] Permitted connections.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.InterconnectRemoteLocationPermittedConnections permitted_connections = 442063278;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -955,7 +955,7 @@ public function getPermittedConnections()
}
/**
- * [Output Only] Permitted connections.
+ * Output only. [Output Only] Permitted connections.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.InterconnectRemoteLocationPermittedConnections permitted_connections = 442063278;
* @param array<\Google\Cloud\Compute\V1\InterconnectRemoteLocationPermittedConnections>|\Google\Protobuf\Internal\RepeatedField $var
@@ -970,7 +970,7 @@ public function setPermittedConnections($var)
}
/**
- * [Output Only] Indicates the service provider present at the remote
+ * Output only. [Output Only] Indicates the service provider present at the remote
* location. Example values: "Amazon Web Services", "Microsoft Azure".
*
* Generated from protobuf field optional string remote_service = 391954364;
@@ -992,7 +992,7 @@ public function clearRemoteService()
}
/**
- * [Output Only] Indicates the service provider present at the remote
+ * Output only. [Output Only] Indicates the service provider present at the remote
* location. Example values: "Amazon Web Services", "Microsoft Azure".
*
* Generated from protobuf field optional string remote_service = 391954364;
@@ -1008,7 +1008,7 @@ public function setRemoteService($var)
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -1029,7 +1029,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -1044,7 +1044,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] The status of this InterconnectRemoteLocation, which can take
+ * Output only. [Output Only] The status of this InterconnectRemoteLocation, which can take
* one of the following values:
* - CLOSED: The InterconnectRemoteLocation is closed and is unavailable
* for provisioning new Cross-Cloud Interconnects.
@@ -1072,7 +1072,7 @@ public function clearStatus()
}
/**
- * [Output Only] The status of this InterconnectRemoteLocation, which can take
+ * Output only. [Output Only] The status of this InterconnectRemoteLocation, which can take
* one of the following values:
* - CLOSED: The InterconnectRemoteLocation is closed and is unavailable
* for provisioning new Cross-Cloud Interconnects.
diff --git a/Compute/src/V1/InterconnectRemoteLocation/Continent.php b/Compute/src/V1/InterconnectRemoteLocation/Continent.php
index 84c352ee8c6f..3775f3e0b631 100644
--- a/Compute/src/V1/InterconnectRemoteLocation/Continent.php
+++ b/Compute/src/V1/InterconnectRemoteLocation/Continent.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] Continent for this location, which can take one of the
+ * Output only. [Output Only] Continent for this location, which can take one of the
* following values:
* - AFRICA
* - ASIA_PAC
diff --git a/Compute/src/V1/InterconnectRemoteLocation/Lacp.php b/Compute/src/V1/InterconnectRemoteLocation/Lacp.php
index 9cf781329d05..7fb1ac7ee853 100644
--- a/Compute/src/V1/InterconnectRemoteLocation/Lacp.php
+++ b/Compute/src/V1/InterconnectRemoteLocation/Lacp.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] Link Aggregation Control Protocol (LACP) constraints, which
+ * Output only. [Output Only] Link Aggregation Control Protocol (LACP) constraints, which
* can take one of the following values: LACP_SUPPORTED, LACP_UNSUPPORTED
*
* Protobuf type google.cloud.compute.v1.InterconnectRemoteLocation.Lacp
diff --git a/Compute/src/V1/InterconnectRemoteLocation/Status.php b/Compute/src/V1/InterconnectRemoteLocation/Status.php
index 48bf1999b348..9f704212a12d 100644
--- a/Compute/src/V1/InterconnectRemoteLocation/Status.php
+++ b/Compute/src/V1/InterconnectRemoteLocation/Status.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] The status of this InterconnectRemoteLocation, which can take
+ * Output only. [Output Only] The status of this InterconnectRemoteLocation, which can take
* one of the following values:
* - CLOSED: The InterconnectRemoteLocation is closed and is unavailable
* for provisioning new Cross-Cloud Interconnects.
diff --git a/Compute/src/V1/InterconnectRemoteLocationConstraints.php b/Compute/src/V1/InterconnectRemoteLocationConstraints.php
index 74078ec7bfe2..230f010dc88c 100644
--- a/Compute/src/V1/InterconnectRemoteLocationConstraints.php
+++ b/Compute/src/V1/InterconnectRemoteLocationConstraints.php
@@ -15,7 +15,7 @@
class InterconnectRemoteLocationConstraints extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Port pair remote location constraints, which can take one
+ * Output only. [Output Only] Port pair remote location constraints, which can take one
* of the following values: PORT_PAIR_UNCONSTRAINED_REMOTE_LOCATION,
* PORT_PAIR_MATCHING_REMOTE_LOCATION.
* Google Cloud API refers only to individual ports, but the UI uses this
@@ -31,7 +31,7 @@ class InterconnectRemoteLocationConstraints extends \Google\Protobuf\Internal\Me
*/
protected $port_pair_remote_location = null;
/**
- * [Output Only] Port pair VLAN constraints, which can take one of the
+ * Output only. [Output Only] Port pair VLAN constraints, which can take one of the
* following values: PORT_PAIR_UNCONSTRAINED_VLAN, PORT_PAIR_MATCHING_VLAN
* Check the PortPairVlan enum for the list of possible values.
*
@@ -39,7 +39,7 @@ class InterconnectRemoteLocationConstraints extends \Google\Protobuf\Internal\Me
*/
protected $port_pair_vlan = null;
/**
- * [Output Only]
+ * Output only. [Output Only]
* [min-length, max-length]
* The minimum and maximum value (inclusive) for the IPv4 subnet
* length.
@@ -62,7 +62,7 @@ class InterconnectRemoteLocationConstraints extends \Google\Protobuf\Internal\Me
* Optional. Data for populating the Message object.
*
* @type string $port_pair_remote_location
- * [Output Only] Port pair remote location constraints, which can take one
+ * Output only. [Output Only] Port pair remote location constraints, which can take one
* of the following values: PORT_PAIR_UNCONSTRAINED_REMOTE_LOCATION,
* PORT_PAIR_MATCHING_REMOTE_LOCATION.
* Google Cloud API refers only to individual ports, but the UI uses this
@@ -74,11 +74,11 @@ class InterconnectRemoteLocationConstraints extends \Google\Protobuf\Internal\Me
* both ports use the same remote location.
* Check the PortPairRemoteLocation enum for the list of possible values.
* @type string $port_pair_vlan
- * [Output Only] Port pair VLAN constraints, which can take one of the
+ * Output only. [Output Only] Port pair VLAN constraints, which can take one of the
* following values: PORT_PAIR_UNCONSTRAINED_VLAN, PORT_PAIR_MATCHING_VLAN
* Check the PortPairVlan enum for the list of possible values.
* @type \Google\Cloud\Compute\V1\InterconnectRemoteLocationConstraintsSubnetLengthRange $subnet_length_range
- * [Output Only]
+ * Output only. [Output Only]
* [min-length, max-length]
* The minimum and maximum value (inclusive) for the IPv4 subnet
* length.
@@ -97,7 +97,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Port pair remote location constraints, which can take one
+ * Output only. [Output Only] Port pair remote location constraints, which can take one
* of the following values: PORT_PAIR_UNCONSTRAINED_REMOTE_LOCATION,
* PORT_PAIR_MATCHING_REMOTE_LOCATION.
* Google Cloud API refers only to individual ports, but the UI uses this
@@ -128,7 +128,7 @@ public function clearPortPairRemoteLocation()
}
/**
- * [Output Only] Port pair remote location constraints, which can take one
+ * Output only. [Output Only] Port pair remote location constraints, which can take one
* of the following values: PORT_PAIR_UNCONSTRAINED_REMOTE_LOCATION,
* PORT_PAIR_MATCHING_REMOTE_LOCATION.
* Google Cloud API refers only to individual ports, but the UI uses this
@@ -153,7 +153,7 @@ public function setPortPairRemoteLocation($var)
}
/**
- * [Output Only] Port pair VLAN constraints, which can take one of the
+ * Output only. [Output Only] Port pair VLAN constraints, which can take one of the
* following values: PORT_PAIR_UNCONSTRAINED_VLAN, PORT_PAIR_MATCHING_VLAN
* Check the PortPairVlan enum for the list of possible values.
*
@@ -176,7 +176,7 @@ public function clearPortPairVlan()
}
/**
- * [Output Only] Port pair VLAN constraints, which can take one of the
+ * Output only. [Output Only] Port pair VLAN constraints, which can take one of the
* following values: PORT_PAIR_UNCONSTRAINED_VLAN, PORT_PAIR_MATCHING_VLAN
* Check the PortPairVlan enum for the list of possible values.
*
@@ -193,7 +193,7 @@ public function setPortPairVlan($var)
}
/**
- * [Output Only]
+ * Output only. [Output Only]
* [min-length, max-length]
* The minimum and maximum value (inclusive) for the IPv4 subnet
* length.
@@ -224,7 +224,7 @@ public function clearSubnetLengthRange()
}
/**
- * [Output Only]
+ * Output only. [Output Only]
* [min-length, max-length]
* The minimum and maximum value (inclusive) for the IPv4 subnet
* length.
diff --git a/Compute/src/V1/InterconnectRemoteLocationConstraints/PortPairRemoteLocation.php b/Compute/src/V1/InterconnectRemoteLocationConstraints/PortPairRemoteLocation.php
index 2dd0564a9eb3..33697e262fd3 100644
--- a/Compute/src/V1/InterconnectRemoteLocationConstraints/PortPairRemoteLocation.php
+++ b/Compute/src/V1/InterconnectRemoteLocationConstraints/PortPairRemoteLocation.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] Port pair remote location constraints, which can take one
+ * Output only. [Output Only] Port pair remote location constraints, which can take one
* of the following values: PORT_PAIR_UNCONSTRAINED_REMOTE_LOCATION,
* PORT_PAIR_MATCHING_REMOTE_LOCATION.
* Google Cloud API refers only to individual ports, but the UI uses this
diff --git a/Compute/src/V1/InterconnectRemoteLocationConstraints/PortPairVlan.php b/Compute/src/V1/InterconnectRemoteLocationConstraints/PortPairVlan.php
index bce7341de028..7ac2d4937091 100644
--- a/Compute/src/V1/InterconnectRemoteLocationConstraints/PortPairVlan.php
+++ b/Compute/src/V1/InterconnectRemoteLocationConstraints/PortPairVlan.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] Port pair VLAN constraints, which can take one of the
+ * Output only. [Output Only] Port pair VLAN constraints, which can take one of the
* following values: PORT_PAIR_UNCONSTRAINED_VLAN, PORT_PAIR_MATCHING_VLAN
*
* Protobuf type google.cloud.compute.v1.InterconnectRemoteLocationConstraints.PortPairVlan
diff --git a/Compute/src/V1/InterconnectRemoteLocationList.php b/Compute/src/V1/InterconnectRemoteLocationList.php
index 300f20e660ae..9856a2924bca 100644
--- a/Compute/src/V1/InterconnectRemoteLocationList.php
+++ b/Compute/src/V1/InterconnectRemoteLocationList.php
@@ -29,7 +29,7 @@ class InterconnectRemoteLocationList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Alwayscompute#interconnectRemoteLocationList for lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#interconnectRemoteLocationList for lists of
* interconnect remote locations.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -46,7 +46,7 @@ class InterconnectRemoteLocationList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -69,7 +69,7 @@ class InterconnectRemoteLocationList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\InterconnectRemoteLocation>|\Google\Protobuf\Internal\RepeatedField $items
* A list of InterconnectRemoteLocation resources.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#interconnectRemoteLocationList for lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#interconnectRemoteLocationList for lists of
* interconnect remote locations.
* @type string $next_page_token
* [Output Only] This token lets you get the next page of results for
@@ -78,7 +78,7 @@ class InterconnectRemoteLocationList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -151,7 +151,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#interconnectRemoteLocationList for lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#interconnectRemoteLocationList for lists of
* interconnect remote locations.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -173,7 +173,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#interconnectRemoteLocationList for lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#interconnectRemoteLocationList for lists of
* interconnect remote locations.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -233,7 +233,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -254,7 +254,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/InterconnectRemoteLocationPermittedConnections.php b/Compute/src/V1/InterconnectRemoteLocationPermittedConnections.php
index 196733d8857d..3926ab81fc5c 100644
--- a/Compute/src/V1/InterconnectRemoteLocationPermittedConnections.php
+++ b/Compute/src/V1/InterconnectRemoteLocationPermittedConnections.php
@@ -15,7 +15,7 @@
class InterconnectRemoteLocationPermittedConnections extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] URL of an Interconnect location that is permitted to
+ * Output only. [Output Only] URL of an Interconnect location that is permitted to
* connect to this Interconnect remote location.
*
* Generated from protobuf field optional string interconnect_location = 492235846;
@@ -29,7 +29,7 @@ class InterconnectRemoteLocationPermittedConnections extends \Google\Protobuf\In
* Optional. Data for populating the Message object.
*
* @type string $interconnect_location
- * [Output Only] URL of an Interconnect location that is permitted to
+ * Output only. [Output Only] URL of an Interconnect location that is permitted to
* connect to this Interconnect remote location.
* }
*/
@@ -39,7 +39,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] URL of an Interconnect location that is permitted to
+ * Output only. [Output Only] URL of an Interconnect location that is permitted to
* connect to this Interconnect remote location.
*
* Generated from protobuf field optional string interconnect_location = 492235846;
@@ -61,7 +61,7 @@ public function clearInterconnectLocation()
}
/**
- * [Output Only] URL of an Interconnect location that is permitted to
+ * Output only. [Output Only] URL of an Interconnect location that is permitted to
* connect to this Interconnect remote location.
*
* Generated from protobuf field optional string interconnect_location = 492235846;
diff --git a/Compute/src/V1/License.php b/Compute/src/V1/License.php
index 697f32ee377c..287cd287b099 100644
--- a/Compute/src/V1/License.php
+++ b/Compute/src/V1/License.php
@@ -41,7 +41,7 @@ class License extends \Google\Protobuf\Internal\Message
*/
protected $charges_use_fee = null;
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -70,7 +70,7 @@ class License extends \Google\Protobuf\Internal\Message
*/
private $incompatible_licenses;
/**
- * [Output Only] Type of resource. Always compute#license for
+ * Output only. [Output Only] Type of resource. Always compute#license for
* licenses.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -132,13 +132,13 @@ class License extends \Google\Protobuf\Internal\Message
*/
protected $resource_requirements = null;
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Server-defined URL for this resource with the resource id.
+ * Output only. [Output Only] Server-defined URL for this resource with the resource id.
*
* Generated from protobuf field optional string self_link_with_id = 44520962;
*/
@@ -157,7 +157,7 @@ class License extends \Google\Protobuf\Internal\Message
*/
protected $transferable = null;
/**
- * [Output Only] Last update timestamp inRFC3339
+ * Output only. [Output Only] Last update timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string update_timestamp = 120894752;
@@ -180,7 +180,7 @@ class License extends \Google\Protobuf\Internal\Message
* [Output Only] Deprecated. This field no longer reflects whether a license
* charges a usage fee.
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $description
* An optional textual description of the resource; provided by the client
@@ -193,7 +193,7 @@ class License extends \Google\Protobuf\Internal\Message
* If a license is incompatible with this license, it cannot be attached to
* the same disk or image.
* @type string $kind
- * [Output Only] Type of resource. Always compute#license for
+ * Output only. [Output Only] Type of resource. Always compute#license for
* licenses.
* @type int|string $license_code
* [Output Only] The unique code used to attach this license to images,
@@ -219,16 +219,16 @@ class License extends \Google\Protobuf\Internal\Message
* @type \Google\Cloud\Compute\V1\LicenseResourceRequirements $resource_requirements
* [Input Only] Deprecated.
* @type string $self_link
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
* @type string $self_link_with_id
- * [Output Only] Server-defined URL for this resource with the resource id.
+ * Output only. [Output Only] Server-defined URL for this resource with the resource id.
* @type bool $sole_tenant_only
* If true, this license can only be used on VMs on sole tenant nodes.
* @type bool $transferable
* If false, licenses will not be copied from the source resource when
* creating an image from a disk, disk from snapshot, or snapshot from disk.
* @type string $update_timestamp
- * [Output Only] Last update timestamp inRFC3339
+ * Output only. [Output Only] Last update timestamp inRFC3339
* text format.
* }
*/
@@ -342,7 +342,7 @@ public function setChargesUseFee($var)
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -364,7 +364,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -486,7 +486,7 @@ public function setIncompatibleLicenses($var)
}
/**
- * [Output Only] Type of resource. Always compute#license for
+ * Output only. [Output Only] Type of resource. Always compute#license for
* licenses.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -508,7 +508,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Always compute#license for
+ * Output only. [Output Only] Type of resource. Always compute#license for
* licenses.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -816,7 +816,7 @@ public function setResourceRequirements($var)
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -837,7 +837,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -852,7 +852,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Server-defined URL for this resource with the resource id.
+ * Output only. [Output Only] Server-defined URL for this resource with the resource id.
*
* Generated from protobuf field optional string self_link_with_id = 44520962;
* @return string
@@ -873,7 +873,7 @@ public function clearSelfLinkWithId()
}
/**
- * [Output Only] Server-defined URL for this resource with the resource id.
+ * Output only. [Output Only] Server-defined URL for this resource with the resource id.
*
* Generated from protobuf field optional string self_link_with_id = 44520962;
* @param string $var
@@ -962,7 +962,7 @@ public function setTransferable($var)
}
/**
- * [Output Only] Last update timestamp inRFC3339
+ * Output only. [Output Only] Last update timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string update_timestamp = 120894752;
@@ -984,7 +984,7 @@ public function clearUpdateTimestamp()
}
/**
- * [Output Only] Last update timestamp inRFC3339
+ * Output only. [Output Only] Last update timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string update_timestamp = 120894752;
diff --git a/Compute/src/V1/LicenseCode.php b/Compute/src/V1/LicenseCode.php
index 47580a9cceb9..a3503fd8c4a5 100644
--- a/Compute/src/V1/LicenseCode.php
+++ b/Compute/src/V1/LicenseCode.php
@@ -21,27 +21,27 @@
class LicenseCode extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
*/
protected $creation_timestamp = null;
/**
- * [Output Only] Description of this License Code.
+ * Output only. [Output Only] Description of this License Code.
*
* Generated from protobuf field optional string description = 422937596;
*/
protected $description = null;
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
*/
protected $id = null;
/**
- * [Output Only] Type of resource. Always compute#licenseCode for
+ * Output only. [Output Only] Type of resource. Always compute#licenseCode for
* licenses.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -55,27 +55,27 @@ class LicenseCode extends \Google\Protobuf\Internal\Message
*/
private $license_alias;
/**
- * [Output Only] Name of the resource. The name is 1-20 characters long and
+ * Output only. [Output Only] Name of the resource. The name is 1-20 characters long and
* must be a valid 64 bit integer.
*
* Generated from protobuf field optional string name = 3373707;
*/
protected $name = null;
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Current state of this License Code.
+ * Output only. [Output Only] Current state of this License Code.
* Check the State enum for the list of possible values.
*
* Generated from protobuf field optional string state = 109757585;
*/
protected $state = null;
/**
- * [Output Only] If true, the license will remain attached when creating
+ * Output only. [Output Only] If true, the license will remain attached when creating
* images or snapshots from disks. Otherwise, the license is not transferred.
*
* Generated from protobuf field optional bool transferable = 4349893;
@@ -89,29 +89,29 @@ class LicenseCode extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $description
- * [Output Only] Description of this License Code.
+ * Output only. [Output Only] Description of this License Code.
* @type int|string $id
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type string $kind
- * [Output Only] Type of resource. Always compute#licenseCode for
+ * Output only. [Output Only] Type of resource. Always compute#licenseCode for
* licenses.
* @type array<\Google\Cloud\Compute\V1\LicenseCodeLicenseAlias>|\Google\Protobuf\Internal\RepeatedField $license_alias
* [Output Only] URL and description aliases of Licenses with the same
* License Code.
* @type string $name
- * [Output Only] Name of the resource. The name is 1-20 characters long and
+ * Output only. [Output Only] Name of the resource. The name is 1-20 characters long and
* must be a valid 64 bit integer.
* @type string $self_link
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
* @type string $state
- * [Output Only] Current state of this License Code.
+ * Output only. [Output Only] Current state of this License Code.
* Check the State enum for the list of possible values.
* @type bool $transferable
- * [Output Only] If true, the license will remain attached when creating
+ * Output only. [Output Only] If true, the license will remain attached when creating
* images or snapshots from disks. Otherwise, the license is not transferred.
* }
*/
@@ -121,7 +121,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -143,7 +143,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -159,7 +159,7 @@ public function setCreationTimestamp($var)
}
/**
- * [Output Only] Description of this License Code.
+ * Output only. [Output Only] Description of this License Code.
*
* Generated from protobuf field optional string description = 422937596;
* @return string
@@ -180,7 +180,7 @@ public function clearDescription()
}
/**
- * [Output Only] Description of this License Code.
+ * Output only. [Output Only] Description of this License Code.
*
* Generated from protobuf field optional string description = 422937596;
* @param string $var
@@ -195,7 +195,7 @@ public function setDescription($var)
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -217,7 +217,7 @@ public function clearId()
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -233,7 +233,7 @@ public function setId($var)
}
/**
- * [Output Only] Type of resource. Always compute#licenseCode for
+ * Output only. [Output Only] Type of resource. Always compute#licenseCode for
* licenses.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -255,7 +255,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Always compute#licenseCode for
+ * Output only. [Output Only] Type of resource. Always compute#licenseCode for
* licenses.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -299,7 +299,7 @@ public function setLicenseAlias($var)
}
/**
- * [Output Only] Name of the resource. The name is 1-20 characters long and
+ * Output only. [Output Only] Name of the resource. The name is 1-20 characters long and
* must be a valid 64 bit integer.
*
* Generated from protobuf field optional string name = 3373707;
@@ -321,7 +321,7 @@ public function clearName()
}
/**
- * [Output Only] Name of the resource. The name is 1-20 characters long and
+ * Output only. [Output Only] Name of the resource. The name is 1-20 characters long and
* must be a valid 64 bit integer.
*
* Generated from protobuf field optional string name = 3373707;
@@ -337,7 +337,7 @@ public function setName($var)
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -358,7 +358,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -373,7 +373,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Current state of this License Code.
+ * Output only. [Output Only] Current state of this License Code.
* Check the State enum for the list of possible values.
*
* Generated from protobuf field optional string state = 109757585;
@@ -395,7 +395,7 @@ public function clearState()
}
/**
- * [Output Only] Current state of this License Code.
+ * Output only. [Output Only] Current state of this License Code.
* Check the State enum for the list of possible values.
*
* Generated from protobuf field optional string state = 109757585;
@@ -411,7 +411,7 @@ public function setState($var)
}
/**
- * [Output Only] If true, the license will remain attached when creating
+ * Output only. [Output Only] If true, the license will remain attached when creating
* images or snapshots from disks. Otherwise, the license is not transferred.
*
* Generated from protobuf field optional bool transferable = 4349893;
@@ -433,7 +433,7 @@ public function clearTransferable()
}
/**
- * [Output Only] If true, the license will remain attached when creating
+ * Output only. [Output Only] If true, the license will remain attached when creating
* images or snapshots from disks. Otherwise, the license is not transferred.
*
* Generated from protobuf field optional bool transferable = 4349893;
diff --git a/Compute/src/V1/LicenseCode/State.php b/Compute/src/V1/LicenseCode/State.php
index 151a73fbd37a..0ececc0a0ca0 100644
--- a/Compute/src/V1/LicenseCode/State.php
+++ b/Compute/src/V1/LicenseCode/State.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] Current state of this License Code.
+ * Output only. [Output Only] Current state of this License Code.
*
* Protobuf type google.cloud.compute.v1.LicenseCode.State
*/
diff --git a/Compute/src/V1/LicenseCodeLicenseAlias.php b/Compute/src/V1/LicenseCodeLicenseAlias.php
index f1e0ff5a1026..bafaa2b13900 100644
--- a/Compute/src/V1/LicenseCodeLicenseAlias.php
+++ b/Compute/src/V1/LicenseCodeLicenseAlias.php
@@ -15,13 +15,13 @@
class LicenseCodeLicenseAlias extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Description of this License Code.
+ * Output only. [Output Only] Description of this License Code.
*
* Generated from protobuf field optional string description = 422937596;
*/
protected $description = null;
/**
- * [Output Only] URL of license corresponding to this License Code.
+ * Output only. [Output Only] URL of license corresponding to this License Code.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -34,9 +34,9 @@ class LicenseCodeLicenseAlias extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $description
- * [Output Only] Description of this License Code.
+ * Output only. [Output Only] Description of this License Code.
* @type string $self_link
- * [Output Only] URL of license corresponding to this License Code.
+ * Output only. [Output Only] URL of license corresponding to this License Code.
* }
*/
public function __construct($data = NULL) {
@@ -45,7 +45,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Description of this License Code.
+ * Output only. [Output Only] Description of this License Code.
*
* Generated from protobuf field optional string description = 422937596;
* @return string
@@ -66,7 +66,7 @@ public function clearDescription()
}
/**
- * [Output Only] Description of this License Code.
+ * Output only. [Output Only] Description of this License Code.
*
* Generated from protobuf field optional string description = 422937596;
* @param string $var
@@ -81,7 +81,7 @@ public function setDescription($var)
}
/**
- * [Output Only] URL of license corresponding to this License Code.
+ * Output only. [Output Only] URL of license corresponding to this License Code.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -102,7 +102,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] URL of license corresponding to this License Code.
+ * Output only. [Output Only] URL of license corresponding to this License Code.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/LicensesListResponse.php b/Compute/src/V1/LicensesListResponse.php
index 7d0bae2696e7..c5d24532f4d4 100644
--- a/Compute/src/V1/LicensesListResponse.php
+++ b/Compute/src/V1/LicensesListResponse.php
@@ -37,7 +37,7 @@ class LicensesListResponse extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -66,7 +66,7 @@ class LicensesListResponse extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -183,7 +183,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -204,7 +204,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/MachineImage.php b/Compute/src/V1/MachineImage.php
index 0e5c7b33d82c..dbe5df7f235a 100644
--- a/Compute/src/V1/MachineImage.php
+++ b/Compute/src/V1/MachineImage.php
@@ -19,7 +19,7 @@
class MachineImage extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] The creation timestamp for this machine image inRFC3339
+ * Output only. [Output Only] The creation timestamp for this machine image inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -40,7 +40,7 @@ class MachineImage extends \Google\Protobuf\Internal\Message
*/
protected $guest_flush = null;
/**
- * [Output Only] A unique identifier for this machine image. The server
+ * Output only. [Output Only] A unique identifier for this machine image. The server
* defines this identifier.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -53,7 +53,7 @@ class MachineImage extends \Google\Protobuf\Internal\Message
*/
protected $instance_properties = null;
/**
- * [Output Only] The resource type, which is alwayscompute#machineImage for machine image.
+ * Output only. [Output Only] The resource type, which is alwayscompute#machineImage for machine image.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -112,20 +112,20 @@ class MachineImage extends \Google\Protobuf\Internal\Message
*/
protected $satisfies_pzi = null;
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool satisfies_pzs = 480964267;
*/
protected $satisfies_pzs = null;
/**
- * An array of Machine Image specific properties for disks attached to the
+ * Output only. An array of Machine Image specific properties for disks attached to the
* source instance
*
* Generated from protobuf field repeated .google.cloud.compute.v1.SavedDisk saved_disks = 397424318;
*/
private $saved_disks;
/**
- * [Output Only] The URL for this machine image. The server defines this URL.
+ * Output only. [Output Only] The URL for this machine image. The server defines this URL.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -149,7 +149,7 @@ class MachineImage extends \Google\Protobuf\Internal\Message
*/
protected $source_instance = null;
/**
- * [Output Only] DEPRECATED: Please use instance_properties
+ * Output only. [Output Only] DEPRECATED: Please use instance_properties
* instead for source instance related properties. New properties will not be
* added to this field.
*
@@ -157,7 +157,7 @@ class MachineImage extends \Google\Protobuf\Internal\Message
*/
protected $source_instance_properties = null;
/**
- * [Output Only] The status of the machine image. One of the following values:INVALID, CREATING, READY,DELETING, and UPLOADING.
+ * Output only. [Output Only] The status of the machine image. One of the following values:INVALID, CREATING, READY,DELETING, and UPLOADING.
* Check the Status enum for the list of possible values.
*
* Generated from protobuf field optional string status = 181260274;
@@ -171,7 +171,7 @@ class MachineImage extends \Google\Protobuf\Internal\Message
*/
private $storage_locations;
/**
- * [Output Only] Total size of the storage used by the machine image.
+ * Output only. [Output Only] Total size of the storage used by the machine image.
*
* Generated from protobuf field optional int64 total_storage_bytes = 81855468;
*/
@@ -184,7 +184,7 @@ class MachineImage extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $creation_timestamp
- * [Output Only] The creation timestamp for this machine image inRFC3339
+ * Output only. [Output Only] The creation timestamp for this machine image inRFC3339
* text format.
* @type string $description
* An optional description of this resource. Provide this property when you
@@ -193,12 +193,12 @@ class MachineImage extends \Google\Protobuf\Internal\Message
* [Input Only] Whether to attempt an application consistent machine image by
* informing the OS to prepare for the snapshot process.
* @type int|string $id
- * [Output Only] A unique identifier for this machine image. The server
+ * Output only. [Output Only] A unique identifier for this machine image. The server
* defines this identifier.
* @type \Google\Cloud\Compute\V1\InstanceProperties $instance_properties
* [Output Only] Properties of source instance
* @type string $kind
- * [Output Only] The resource type, which is alwayscompute#machineImage for machine image.
+ * Output only. [Output Only] The resource type, which is alwayscompute#machineImage for machine image.
* @type string $label_fingerprint
* A fingerprint for the labels being applied to this machine image, which is
* essentially a hash of the labels set used for optimistic locking. The
@@ -233,12 +233,12 @@ class MachineImage extends \Google\Protobuf\Internal\Message
* @type bool $satisfies_pzi
* Output only. Reserved for future use.
* @type bool $satisfies_pzs
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
* @type array<\Google\Cloud\Compute\V1\SavedDisk>|\Google\Protobuf\Internal\RepeatedField $saved_disks
- * An array of Machine Image specific properties for disks attached to the
+ * Output only. An array of Machine Image specific properties for disks attached to the
* source instance
* @type string $self_link
- * [Output Only] The URL for this machine image. The server defines this URL.
+ * Output only. [Output Only] The URL for this machine image. The server defines this URL.
* @type array<\Google\Cloud\Compute\V1\SourceDiskEncryptionKey>|\Google\Protobuf\Internal\RepeatedField $source_disk_encryption_keys
* [Input Only] Thecustomer-supplied
* encryption key of the disks attached to the source instance. Required
@@ -250,17 +250,17 @@ class MachineImage extends \Google\Protobuf\Internal\Message
* - https://www.googleapis.com/compute/v1/projects/project/zones/zone/instances/instance
* - projects/project/zones/zone/instances/instance
* @type \Google\Cloud\Compute\V1\SourceInstanceProperties $source_instance_properties
- * [Output Only] DEPRECATED: Please use instance_properties
+ * Output only. [Output Only] DEPRECATED: Please use instance_properties
* instead for source instance related properties. New properties will not be
* added to this field.
* @type string $status
- * [Output Only] The status of the machine image. One of the following values:INVALID, CREATING, READY,DELETING, and UPLOADING.
+ * Output only. [Output Only] The status of the machine image. One of the following values:INVALID, CREATING, READY,DELETING, and UPLOADING.
* Check the Status enum for the list of possible values.
* @type array|\Google\Protobuf\Internal\RepeatedField $storage_locations
* The regional or multi-regional Cloud Storage bucket location where themachine image is
* stored.
* @type int|string $total_storage_bytes
- * [Output Only] Total size of the storage used by the machine image.
+ * Output only. [Output Only] Total size of the storage used by the machine image.
* }
*/
public function __construct($data = NULL) {
@@ -269,7 +269,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] The creation timestamp for this machine image inRFC3339
+ * Output only. [Output Only] The creation timestamp for this machine image inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -291,7 +291,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] The creation timestamp for this machine image inRFC3339
+ * Output only. [Output Only] The creation timestamp for this machine image inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -383,7 +383,7 @@ public function setGuestFlush($var)
}
/**
- * [Output Only] A unique identifier for this machine image. The server
+ * Output only. [Output Only] A unique identifier for this machine image. The server
* defines this identifier.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -405,7 +405,7 @@ public function clearId()
}
/**
- * [Output Only] A unique identifier for this machine image. The server
+ * Output only. [Output Only] A unique identifier for this machine image. The server
* defines this identifier.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -457,7 +457,7 @@ public function setInstanceProperties($var)
}
/**
- * [Output Only] The resource type, which is alwayscompute#machineImage for machine image.
+ * Output only. [Output Only] The resource type, which is alwayscompute#machineImage for machine image.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -478,7 +478,7 @@ public function clearKind()
}
/**
- * [Output Only] The resource type, which is alwayscompute#machineImage for machine image.
+ * Output only. [Output Only] The resource type, which is alwayscompute#machineImage for machine image.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -709,7 +709,7 @@ public function setSatisfiesPzi($var)
}
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool satisfies_pzs = 480964267;
* @return bool
@@ -730,7 +730,7 @@ public function clearSatisfiesPzs()
}
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool satisfies_pzs = 480964267;
* @param bool $var
@@ -745,7 +745,7 @@ public function setSatisfiesPzs($var)
}
/**
- * An array of Machine Image specific properties for disks attached to the
+ * Output only. An array of Machine Image specific properties for disks attached to the
* source instance
*
* Generated from protobuf field repeated .google.cloud.compute.v1.SavedDisk saved_disks = 397424318;
@@ -757,7 +757,7 @@ public function getSavedDisks()
}
/**
- * An array of Machine Image specific properties for disks attached to the
+ * Output only. An array of Machine Image specific properties for disks attached to the
* source instance
*
* Generated from protobuf field repeated .google.cloud.compute.v1.SavedDisk saved_disks = 397424318;
@@ -773,7 +773,7 @@ public function setSavedDisks($var)
}
/**
- * [Output Only] The URL for this machine image. The server defines this URL.
+ * Output only. [Output Only] The URL for this machine image. The server defines this URL.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -794,7 +794,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] The URL for this machine image. The server defines this URL.
+ * Output only. [Output Only] The URL for this machine image. The server defines this URL.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -883,7 +883,7 @@ public function setSourceInstance($var)
}
/**
- * [Output Only] DEPRECATED: Please use instance_properties
+ * Output only. [Output Only] DEPRECATED: Please use instance_properties
* instead for source instance related properties. New properties will not be
* added to this field.
*
@@ -906,7 +906,7 @@ public function clearSourceInstanceProperties()
}
/**
- * [Output Only] DEPRECATED: Please use instance_properties
+ * Output only. [Output Only] DEPRECATED: Please use instance_properties
* instead for source instance related properties. New properties will not be
* added to this field.
*
@@ -923,7 +923,7 @@ public function setSourceInstanceProperties($var)
}
/**
- * [Output Only] The status of the machine image. One of the following values:INVALID, CREATING, READY,DELETING, and UPLOADING.
+ * Output only. [Output Only] The status of the machine image. One of the following values:INVALID, CREATING, READY,DELETING, and UPLOADING.
* Check the Status enum for the list of possible values.
*
* Generated from protobuf field optional string status = 181260274;
@@ -945,7 +945,7 @@ public function clearStatus()
}
/**
- * [Output Only] The status of the machine image. One of the following values:INVALID, CREATING, READY,DELETING, and UPLOADING.
+ * Output only. [Output Only] The status of the machine image. One of the following values:INVALID, CREATING, READY,DELETING, and UPLOADING.
* Check the Status enum for the list of possible values.
*
* Generated from protobuf field optional string status = 181260274;
@@ -989,7 +989,7 @@ public function setStorageLocations($var)
}
/**
- * [Output Only] Total size of the storage used by the machine image.
+ * Output only. [Output Only] Total size of the storage used by the machine image.
*
* Generated from protobuf field optional int64 total_storage_bytes = 81855468;
* @return int|string
@@ -1010,7 +1010,7 @@ public function clearTotalStorageBytes()
}
/**
- * [Output Only] Total size of the storage used by the machine image.
+ * Output only. [Output Only] Total size of the storage used by the machine image.
*
* Generated from protobuf field optional int64 total_storage_bytes = 81855468;
* @param int|string $var
diff --git a/Compute/src/V1/MachineImage/Status.php b/Compute/src/V1/MachineImage/Status.php
index 7da525646bbf..f0b40e085dd0 100644
--- a/Compute/src/V1/MachineImage/Status.php
+++ b/Compute/src/V1/MachineImage/Status.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] The status of the machine image. One of the following values:INVALID, CREATING, READY,DELETING, and UPLOADING.
+ * Output only. [Output Only] The status of the machine image. One of the following values:INVALID, CREATING, READY,DELETING, and UPLOADING.
*
* Protobuf type google.cloud.compute.v1.MachineImage.Status
*/
diff --git a/Compute/src/V1/MachineImageList.php b/Compute/src/V1/MachineImageList.php
index a63e0791da7b..e29e6f037ef7 100644
--- a/Compute/src/V1/MachineImageList.php
+++ b/Compute/src/V1/MachineImageList.php
@@ -28,7 +28,7 @@ class MachineImageList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] The resource type, which is alwayscompute#machineImagesListResponse for machine image lists.
+ * Output only. [Output Only] The resource type, which is alwayscompute#machineImagesListResponse for machine image lists.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -44,7 +44,7 @@ class MachineImageList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -67,7 +67,7 @@ class MachineImageList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\MachineImage>|\Google\Protobuf\Internal\RepeatedField $items
* A list of MachineImage resources.
* @type string $kind
- * [Output Only] The resource type, which is alwayscompute#machineImagesListResponse for machine image lists.
+ * Output only. [Output Only] The resource type, which is alwayscompute#machineImagesListResponse for machine image lists.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -75,7 +75,7 @@ class MachineImageList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -148,7 +148,7 @@ public function setItems($var)
}
/**
- * [Output Only] The resource type, which is alwayscompute#machineImagesListResponse for machine image lists.
+ * Output only. [Output Only] The resource type, which is alwayscompute#machineImagesListResponse for machine image lists.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -169,7 +169,7 @@ public function clearKind()
}
/**
- * [Output Only] The resource type, which is alwayscompute#machineImagesListResponse for machine image lists.
+ * Output only. [Output Only] The resource type, which is alwayscompute#machineImagesListResponse for machine image lists.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -228,7 +228,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -249,7 +249,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/MachineType.php b/Compute/src/V1/MachineType.php
index 543152653f48..13bd092df1ef 100644
--- a/Compute/src/V1/MachineType.php
+++ b/Compute/src/V1/MachineType.php
@@ -80,7 +80,7 @@ class MachineType extends \Google\Protobuf\Internal\Message
*/
protected $is_shared_cpu = null;
/**
- * [Output Only] The type of the resource. Alwayscompute#machineType for machine types.
+ * Output only. [Output Only] The type of the resource. Alwayscompute#machineType for machine types.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -157,7 +157,7 @@ class MachineType extends \Google\Protobuf\Internal\Message
* [Output Only] Whether this machine type has a shared CPU. SeeShared-core machine
* types for more information.
* @type string $kind
- * [Output Only] The type of the resource. Alwayscompute#machineType for machine types.
+ * Output only. [Output Only] The type of the resource. Alwayscompute#machineType for machine types.
* @type int $maximum_persistent_disks
* [Output Only] Maximum persistent disks allowed.
* @type int|string $maximum_persistent_disks_size_gb
@@ -510,7 +510,7 @@ public function setIsSharedCpu($var)
}
/**
- * [Output Only] The type of the resource. Alwayscompute#machineType for machine types.
+ * Output only. [Output Only] The type of the resource. Alwayscompute#machineType for machine types.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -531,7 +531,7 @@ public function clearKind()
}
/**
- * [Output Only] The type of the resource. Alwayscompute#machineType for machine types.
+ * Output only. [Output Only] The type of the resource. Alwayscompute#machineType for machine types.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
diff --git a/Compute/src/V1/MachineTypeAggregatedList.php b/Compute/src/V1/MachineTypeAggregatedList.php
index cfbe4e8ba8ae..d644be53155e 100644
--- a/Compute/src/V1/MachineTypeAggregatedList.php
+++ b/Compute/src/V1/MachineTypeAggregatedList.php
@@ -27,7 +27,7 @@ class MachineTypeAggregatedList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Alwayscompute#machineTypeAggregatedList for aggregated lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#machineTypeAggregatedList for aggregated lists of
* machine types.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -44,13 +44,13 @@ class MachineTypeAggregatedList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
@@ -73,7 +73,7 @@ class MachineTypeAggregatedList extends \Google\Protobuf\Internal\Message
* @type array|\Google\Protobuf\Internal\MapField $items
* A list of MachineTypesScopedList resources.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#machineTypeAggregatedList for aggregated lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#machineTypeAggregatedList for aggregated lists of
* machine types.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -82,9 +82,9 @@ class MachineTypeAggregatedList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -157,7 +157,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#machineTypeAggregatedList for aggregated lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#machineTypeAggregatedList for aggregated lists of
* machine types.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -179,7 +179,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#machineTypeAggregatedList for aggregated lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#machineTypeAggregatedList for aggregated lists of
* machine types.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -239,7 +239,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -260,7 +260,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -275,7 +275,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -286,7 +286,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/MachineTypeList.php b/Compute/src/V1/MachineTypeList.php
index 04a3a371f6d1..16055c52fcae 100644
--- a/Compute/src/V1/MachineTypeList.php
+++ b/Compute/src/V1/MachineTypeList.php
@@ -28,7 +28,7 @@ class MachineTypeList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Always compute#machineTypeList
+ * Output only. [Output Only] Type of resource. Always compute#machineTypeList
* for lists of machine types.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -45,7 +45,7 @@ class MachineTypeList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -68,7 +68,7 @@ class MachineTypeList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\MachineType>|\Google\Protobuf\Internal\RepeatedField $items
* A list of MachineType resources.
* @type string $kind
- * [Output Only] Type of resource. Always compute#machineTypeList
+ * Output only. [Output Only] Type of resource. Always compute#machineTypeList
* for lists of machine types.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -77,7 +77,7 @@ class MachineTypeList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -150,7 +150,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Always compute#machineTypeList
+ * Output only. [Output Only] Type of resource. Always compute#machineTypeList
* for lists of machine types.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -172,7 +172,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Always compute#machineTypeList
+ * Output only. [Output Only] Type of resource. Always compute#machineTypeList
* for lists of machine types.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -232,7 +232,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -253,7 +253,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/ManagedInstance.php b/Compute/src/V1/ManagedInstance.php
index 7686b5b1f0c3..d0838d454027 100644
--- a/Compute/src/V1/ManagedInstance.php
+++ b/Compute/src/V1/ManagedInstance.php
@@ -16,7 +16,7 @@
class ManagedInstance extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] The current action that the managed instance group has
+ * Output only. [Output Only] The current action that the managed instance group has
* scheduled for the instance. Possible values:
* - NONE The instance is running, and the managed
* instance group does not have any scheduled actions for this instance.
@@ -47,27 +47,27 @@ class ManagedInstance extends \Google\Protobuf\Internal\Message
*/
protected $current_action = null;
/**
- * [Output only] The unique identifier for this resource. This field is empty
+ * Output only. [Output only] The unique identifier for this resource. This field is empty
* when instance does not exist.
*
* Generated from protobuf field optional uint64 id = 3355;
*/
protected $id = null;
/**
- * [Output Only] The URL of the instance. The URL can exist even if the
+ * Output only. [Output Only] The URL of the instance. The URL can exist even if the
* instance has not yet been created.
*
* Generated from protobuf field optional string instance = 18257045;
*/
protected $instance = null;
/**
- * [Output Only] Health state of the instance per health-check.
+ * Output only. [Output Only] Health state of the instance per health-check.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.ManagedInstanceInstanceHealth instance_health = 382667078;
*/
private $instance_health;
/**
- * [Output Only] The status of the instance. This field is empty when
+ * Output only. [Output Only] The status of the instance. This field is empty when
* the instance does not exist.
* Check the InstanceStatus enum for the list of possible values.
*
@@ -75,42 +75,42 @@ class ManagedInstance extends \Google\Protobuf\Internal\Message
*/
protected $instance_status = null;
/**
- * [Output Only] Information about the last attempt to create or delete
+ * Output only. [Output Only] Information about the last attempt to create or delete
* the instance.
*
* Generated from protobuf field optional .google.cloud.compute.v1.ManagedInstanceLastAttempt last_attempt = 434771492;
*/
protected $last_attempt = null;
/**
- * [Output Only] The name of the instance. The name always exists even if the
+ * Output only. [Output Only] The name of the instance. The name always exists even if the
* instance has not yet been created.
*
* Generated from protobuf field optional string name = 3373707;
*/
protected $name = null;
/**
- * [Output Only] Preserved state applied from per-instance config
+ * Output only. [Output Only] Preserved state applied from per-instance config
* for this instance.
*
* Generated from protobuf field optional .google.cloud.compute.v1.PreservedState preserved_state_from_config = 98661858;
*/
protected $preserved_state_from_config = null;
/**
- * [Output Only] Preserved state generated based on stateful policy
+ * Output only. [Output Only] Preserved state generated based on stateful policy
* for this instance.
*
* Generated from protobuf field optional .google.cloud.compute.v1.PreservedState preserved_state_from_policy = 470783954;
*/
protected $preserved_state_from_policy = null;
/**
- * [Output Only] Instance properties selected for this instance resulting from
+ * Output only. [Output Only] Instance properties selected for this instance resulting from
* InstanceFlexibilityPolicy.
*
* Generated from protobuf field optional .google.cloud.compute.v1.ManagedInstancePropertiesFromFlexibilityPolicy properties_from_flexibility_policy = 155525825;
*/
protected $properties_from_flexibility_policy = null;
/**
- * [Output Only] Intended version of this instance.
+ * Output only. [Output Only] Intended version of this instance.
*
* Generated from protobuf field optional .google.cloud.compute.v1.ManagedInstanceVersion version = 351608024;
*/
@@ -123,7 +123,7 @@ class ManagedInstance extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $current_action
- * [Output Only] The current action that the managed instance group has
+ * Output only. [Output Only] The current action that the managed instance group has
* scheduled for the instance. Possible values:
* - NONE The instance is running, and the managed
* instance group does not have any scheduled actions for this instance.
@@ -150,34 +150,34 @@ class ManagedInstance extends \Google\Protobuf\Internal\Message
* instance and it is in the process of being verified.
* Check the CurrentAction enum for the list of possible values.
* @type int|string $id
- * [Output only] The unique identifier for this resource. This field is empty
+ * Output only. [Output only] The unique identifier for this resource. This field is empty
* when instance does not exist.
* @type string $instance
- * [Output Only] The URL of the instance. The URL can exist even if the
+ * Output only. [Output Only] The URL of the instance. The URL can exist even if the
* instance has not yet been created.
* @type array<\Google\Cloud\Compute\V1\ManagedInstanceInstanceHealth>|\Google\Protobuf\Internal\RepeatedField $instance_health
- * [Output Only] Health state of the instance per health-check.
+ * Output only. [Output Only] Health state of the instance per health-check.
* @type string $instance_status
- * [Output Only] The status of the instance. This field is empty when
+ * Output only. [Output Only] The status of the instance. This field is empty when
* the instance does not exist.
* Check the InstanceStatus enum for the list of possible values.
* @type \Google\Cloud\Compute\V1\ManagedInstanceLastAttempt $last_attempt
- * [Output Only] Information about the last attempt to create or delete
+ * Output only. [Output Only] Information about the last attempt to create or delete
* the instance.
* @type string $name
- * [Output Only] The name of the instance. The name always exists even if the
+ * Output only. [Output Only] The name of the instance. The name always exists even if the
* instance has not yet been created.
* @type \Google\Cloud\Compute\V1\PreservedState $preserved_state_from_config
- * [Output Only] Preserved state applied from per-instance config
+ * Output only. [Output Only] Preserved state applied from per-instance config
* for this instance.
* @type \Google\Cloud\Compute\V1\PreservedState $preserved_state_from_policy
- * [Output Only] Preserved state generated based on stateful policy
+ * Output only. [Output Only] Preserved state generated based on stateful policy
* for this instance.
* @type \Google\Cloud\Compute\V1\ManagedInstancePropertiesFromFlexibilityPolicy $properties_from_flexibility_policy
- * [Output Only] Instance properties selected for this instance resulting from
+ * Output only. [Output Only] Instance properties selected for this instance resulting from
* InstanceFlexibilityPolicy.
* @type \Google\Cloud\Compute\V1\ManagedInstanceVersion $version
- * [Output Only] Intended version of this instance.
+ * Output only. [Output Only] Intended version of this instance.
* }
*/
public function __construct($data = NULL) {
@@ -186,7 +186,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] The current action that the managed instance group has
+ * Output only. [Output Only] The current action that the managed instance group has
* scheduled for the instance. Possible values:
* - NONE The instance is running, and the managed
* instance group does not have any scheduled actions for this instance.
@@ -232,7 +232,7 @@ public function clearCurrentAction()
}
/**
- * [Output Only] The current action that the managed instance group has
+ * Output only. [Output Only] The current action that the managed instance group has
* scheduled for the instance. Possible values:
* - NONE The instance is running, and the managed
* instance group does not have any scheduled actions for this instance.
@@ -272,7 +272,7 @@ public function setCurrentAction($var)
}
/**
- * [Output only] The unique identifier for this resource. This field is empty
+ * Output only. [Output only] The unique identifier for this resource. This field is empty
* when instance does not exist.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -294,7 +294,7 @@ public function clearId()
}
/**
- * [Output only] The unique identifier for this resource. This field is empty
+ * Output only. [Output only] The unique identifier for this resource. This field is empty
* when instance does not exist.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -310,7 +310,7 @@ public function setId($var)
}
/**
- * [Output Only] The URL of the instance. The URL can exist even if the
+ * Output only. [Output Only] The URL of the instance. The URL can exist even if the
* instance has not yet been created.
*
* Generated from protobuf field optional string instance = 18257045;
@@ -332,7 +332,7 @@ public function clearInstance()
}
/**
- * [Output Only] The URL of the instance. The URL can exist even if the
+ * Output only. [Output Only] The URL of the instance. The URL can exist even if the
* instance has not yet been created.
*
* Generated from protobuf field optional string instance = 18257045;
@@ -348,7 +348,7 @@ public function setInstance($var)
}
/**
- * [Output Only] Health state of the instance per health-check.
+ * Output only. [Output Only] Health state of the instance per health-check.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.ManagedInstanceInstanceHealth instance_health = 382667078;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -359,7 +359,7 @@ public function getInstanceHealth()
}
/**
- * [Output Only] Health state of the instance per health-check.
+ * Output only. [Output Only] Health state of the instance per health-check.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.ManagedInstanceInstanceHealth instance_health = 382667078;
* @param array<\Google\Cloud\Compute\V1\ManagedInstanceInstanceHealth>|\Google\Protobuf\Internal\RepeatedField $var
@@ -374,7 +374,7 @@ public function setInstanceHealth($var)
}
/**
- * [Output Only] The status of the instance. This field is empty when
+ * Output only. [Output Only] The status of the instance. This field is empty when
* the instance does not exist.
* Check the InstanceStatus enum for the list of possible values.
*
@@ -397,7 +397,7 @@ public function clearInstanceStatus()
}
/**
- * [Output Only] The status of the instance. This field is empty when
+ * Output only. [Output Only] The status of the instance. This field is empty when
* the instance does not exist.
* Check the InstanceStatus enum for the list of possible values.
*
@@ -414,7 +414,7 @@ public function setInstanceStatus($var)
}
/**
- * [Output Only] Information about the last attempt to create or delete
+ * Output only. [Output Only] Information about the last attempt to create or delete
* the instance.
*
* Generated from protobuf field optional .google.cloud.compute.v1.ManagedInstanceLastAttempt last_attempt = 434771492;
@@ -436,7 +436,7 @@ public function clearLastAttempt()
}
/**
- * [Output Only] Information about the last attempt to create or delete
+ * Output only. [Output Only] Information about the last attempt to create or delete
* the instance.
*
* Generated from protobuf field optional .google.cloud.compute.v1.ManagedInstanceLastAttempt last_attempt = 434771492;
@@ -452,7 +452,7 @@ public function setLastAttempt($var)
}
/**
- * [Output Only] The name of the instance. The name always exists even if the
+ * Output only. [Output Only] The name of the instance. The name always exists even if the
* instance has not yet been created.
*
* Generated from protobuf field optional string name = 3373707;
@@ -474,7 +474,7 @@ public function clearName()
}
/**
- * [Output Only] The name of the instance. The name always exists even if the
+ * Output only. [Output Only] The name of the instance. The name always exists even if the
* instance has not yet been created.
*
* Generated from protobuf field optional string name = 3373707;
@@ -490,7 +490,7 @@ public function setName($var)
}
/**
- * [Output Only] Preserved state applied from per-instance config
+ * Output only. [Output Only] Preserved state applied from per-instance config
* for this instance.
*
* Generated from protobuf field optional .google.cloud.compute.v1.PreservedState preserved_state_from_config = 98661858;
@@ -512,7 +512,7 @@ public function clearPreservedStateFromConfig()
}
/**
- * [Output Only] Preserved state applied from per-instance config
+ * Output only. [Output Only] Preserved state applied from per-instance config
* for this instance.
*
* Generated from protobuf field optional .google.cloud.compute.v1.PreservedState preserved_state_from_config = 98661858;
@@ -528,7 +528,7 @@ public function setPreservedStateFromConfig($var)
}
/**
- * [Output Only] Preserved state generated based on stateful policy
+ * Output only. [Output Only] Preserved state generated based on stateful policy
* for this instance.
*
* Generated from protobuf field optional .google.cloud.compute.v1.PreservedState preserved_state_from_policy = 470783954;
@@ -550,7 +550,7 @@ public function clearPreservedStateFromPolicy()
}
/**
- * [Output Only] Preserved state generated based on stateful policy
+ * Output only. [Output Only] Preserved state generated based on stateful policy
* for this instance.
*
* Generated from protobuf field optional .google.cloud.compute.v1.PreservedState preserved_state_from_policy = 470783954;
@@ -566,7 +566,7 @@ public function setPreservedStateFromPolicy($var)
}
/**
- * [Output Only] Instance properties selected for this instance resulting from
+ * Output only. [Output Only] Instance properties selected for this instance resulting from
* InstanceFlexibilityPolicy.
*
* Generated from protobuf field optional .google.cloud.compute.v1.ManagedInstancePropertiesFromFlexibilityPolicy properties_from_flexibility_policy = 155525825;
@@ -588,7 +588,7 @@ public function clearPropertiesFromFlexibilityPolicy()
}
/**
- * [Output Only] Instance properties selected for this instance resulting from
+ * Output only. [Output Only] Instance properties selected for this instance resulting from
* InstanceFlexibilityPolicy.
*
* Generated from protobuf field optional .google.cloud.compute.v1.ManagedInstancePropertiesFromFlexibilityPolicy properties_from_flexibility_policy = 155525825;
@@ -604,7 +604,7 @@ public function setPropertiesFromFlexibilityPolicy($var)
}
/**
- * [Output Only] Intended version of this instance.
+ * Output only. [Output Only] Intended version of this instance.
*
* Generated from protobuf field optional .google.cloud.compute.v1.ManagedInstanceVersion version = 351608024;
* @return \Google\Cloud\Compute\V1\ManagedInstanceVersion|null
@@ -625,7 +625,7 @@ public function clearVersion()
}
/**
- * [Output Only] Intended version of this instance.
+ * Output only. [Output Only] Intended version of this instance.
*
* Generated from protobuf field optional .google.cloud.compute.v1.ManagedInstanceVersion version = 351608024;
* @param \Google\Cloud\Compute\V1\ManagedInstanceVersion $var
diff --git a/Compute/src/V1/ManagedInstance/CurrentAction.php b/Compute/src/V1/ManagedInstance/CurrentAction.php
index a90f8951434f..378558c1e406 100644
--- a/Compute/src/V1/ManagedInstance/CurrentAction.php
+++ b/Compute/src/V1/ManagedInstance/CurrentAction.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] The current action that the managed instance group has
+ * Output only. [Output Only] The current action that the managed instance group has
* scheduled for the instance. Possible values:
* - NONE The instance is running, and the managed
* instance group does not have any scheduled actions for this instance.
diff --git a/Compute/src/V1/ManagedInstance/InstanceStatus.php b/Compute/src/V1/ManagedInstance/InstanceStatus.php
index 9fe609d685bc..1133595f2354 100644
--- a/Compute/src/V1/ManagedInstance/InstanceStatus.php
+++ b/Compute/src/V1/ManagedInstance/InstanceStatus.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] The status of the instance. This field is empty when
+ * Output only. [Output Only] The status of the instance. This field is empty when
* the instance does not exist.
* Additional supported values which may be not listed in the enum directly due to technical reasons:
* STOPPING
diff --git a/Compute/src/V1/ManagedInstanceInstanceHealth.php b/Compute/src/V1/ManagedInstanceInstanceHealth.php
index 4948fefedf31..a19c5fab2fbf 100644
--- a/Compute/src/V1/ManagedInstanceInstanceHealth.php
+++ b/Compute/src/V1/ManagedInstanceInstanceHealth.php
@@ -15,14 +15,14 @@
class ManagedInstanceInstanceHealth extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] The current detailed instance health state.
+ * Output only. [Output Only] The current detailed instance health state.
* Check the DetailedHealthState enum for the list of possible values.
*
* Generated from protobuf field optional string detailed_health_state = 510470173;
*/
protected $detailed_health_state = null;
/**
- * [Output Only] The URL for the health check that verifies whether the
+ * Output only. [Output Only] The URL for the health check that verifies whether the
* instance is healthy.
*
* Generated from protobuf field optional string health_check = 308876645;
@@ -36,10 +36,10 @@ class ManagedInstanceInstanceHealth extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $detailed_health_state
- * [Output Only] The current detailed instance health state.
+ * Output only. [Output Only] The current detailed instance health state.
* Check the DetailedHealthState enum for the list of possible values.
* @type string $health_check
- * [Output Only] The URL for the health check that verifies whether the
+ * Output only. [Output Only] The URL for the health check that verifies whether the
* instance is healthy.
* }
*/
@@ -49,7 +49,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] The current detailed instance health state.
+ * Output only. [Output Only] The current detailed instance health state.
* Check the DetailedHealthState enum for the list of possible values.
*
* Generated from protobuf field optional string detailed_health_state = 510470173;
@@ -71,7 +71,7 @@ public function clearDetailedHealthState()
}
/**
- * [Output Only] The current detailed instance health state.
+ * Output only. [Output Only] The current detailed instance health state.
* Check the DetailedHealthState enum for the list of possible values.
*
* Generated from protobuf field optional string detailed_health_state = 510470173;
@@ -87,7 +87,7 @@ public function setDetailedHealthState($var)
}
/**
- * [Output Only] The URL for the health check that verifies whether the
+ * Output only. [Output Only] The URL for the health check that verifies whether the
* instance is healthy.
*
* Generated from protobuf field optional string health_check = 308876645;
@@ -109,7 +109,7 @@ public function clearHealthCheck()
}
/**
- * [Output Only] The URL for the health check that verifies whether the
+ * Output only. [Output Only] The URL for the health check that verifies whether the
* instance is healthy.
*
* Generated from protobuf field optional string health_check = 308876645;
diff --git a/Compute/src/V1/ManagedInstanceInstanceHealth/DetailedHealthState.php b/Compute/src/V1/ManagedInstanceInstanceHealth/DetailedHealthState.php
index 49412848f9c8..110bb82a4212 100644
--- a/Compute/src/V1/ManagedInstanceInstanceHealth/DetailedHealthState.php
+++ b/Compute/src/V1/ManagedInstanceInstanceHealth/DetailedHealthState.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] The current detailed instance health state.
+ * Output only. [Output Only] The current detailed instance health state.
*
* Protobuf type google.cloud.compute.v1.ManagedInstanceInstanceHealth.DetailedHealthState
*/
diff --git a/Compute/src/V1/ManagedInstanceLastAttempt.php b/Compute/src/V1/ManagedInstanceLastAttempt.php
index e3181a67c1ca..3f44d7e5abbd 100644
--- a/Compute/src/V1/ManagedInstanceLastAttempt.php
+++ b/Compute/src/V1/ManagedInstanceLastAttempt.php
@@ -15,7 +15,7 @@
class ManagedInstanceLastAttempt extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Encountered errors during the last attempt to create or
+ * Output only. [Output Only] Encountered errors during the last attempt to create or
* delete the instance.
*
* Generated from protobuf field optional .google.cloud.compute.v1.ManagedInstanceLastAttemptErrors errors = 315977579;
@@ -29,7 +29,7 @@ class ManagedInstanceLastAttempt extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type \Google\Cloud\Compute\V1\ManagedInstanceLastAttemptErrors $errors
- * [Output Only] Encountered errors during the last attempt to create or
+ * Output only. [Output Only] Encountered errors during the last attempt to create or
* delete the instance.
* }
*/
@@ -39,7 +39,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Encountered errors during the last attempt to create or
+ * Output only. [Output Only] Encountered errors during the last attempt to create or
* delete the instance.
*
* Generated from protobuf field optional .google.cloud.compute.v1.ManagedInstanceLastAttemptErrors errors = 315977579;
@@ -61,7 +61,7 @@ public function clearErrors()
}
/**
- * [Output Only] Encountered errors during the last attempt to create or
+ * Output only. [Output Only] Encountered errors during the last attempt to create or
* delete the instance.
*
* Generated from protobuf field optional .google.cloud.compute.v1.ManagedInstanceLastAttemptErrors errors = 315977579;
diff --git a/Compute/src/V1/ManagedInstanceLastAttemptErrors.php b/Compute/src/V1/ManagedInstanceLastAttemptErrors.php
index 11eae7f5e562..a4cff4f742b7 100644
--- a/Compute/src/V1/ManagedInstanceLastAttemptErrors.php
+++ b/Compute/src/V1/ManagedInstanceLastAttemptErrors.php
@@ -9,7 +9,7 @@
use Google\Protobuf\Internal\GPBUtil;
/**
- * [Output Only] Encountered errors during the last attempt to create or
+ * Output only. [Output Only] Encountered errors during the last attempt to create or
* delete the instance.
*
* Generated from protobuf message google.cloud.compute.v1.ManagedInstanceLastAttemptErrors
diff --git a/Compute/src/V1/ManagedInstancePropertiesFromFlexibilityPolicy.php b/Compute/src/V1/ManagedInstancePropertiesFromFlexibilityPolicy.php
index 70c523f2bdd5..404aa9f093a1 100644
--- a/Compute/src/V1/ManagedInstancePropertiesFromFlexibilityPolicy.php
+++ b/Compute/src/V1/ManagedInstancePropertiesFromFlexibilityPolicy.php
@@ -15,7 +15,7 @@
class ManagedInstancePropertiesFromFlexibilityPolicy extends \Google\Protobuf\Internal\Message
{
/**
- * The machine type to be used for this instance.
+ * Output only. The machine type to be used for this instance.
*
* Generated from protobuf field optional string machine_type = 227711026;
*/
@@ -28,7 +28,7 @@ class ManagedInstancePropertiesFromFlexibilityPolicy extends \Google\Protobuf\In
* Optional. Data for populating the Message object.
*
* @type string $machine_type
- * The machine type to be used for this instance.
+ * Output only. The machine type to be used for this instance.
* }
*/
public function __construct($data = NULL) {
@@ -37,7 +37,7 @@ public function __construct($data = NULL) {
}
/**
- * The machine type to be used for this instance.
+ * Output only. The machine type to be used for this instance.
*
* Generated from protobuf field optional string machine_type = 227711026;
* @return string
@@ -58,7 +58,7 @@ public function clearMachineType()
}
/**
- * The machine type to be used for this instance.
+ * Output only. The machine type to be used for this instance.
*
* Generated from protobuf field optional string machine_type = 227711026;
* @param string $var
diff --git a/Compute/src/V1/ManagedInstanceVersion.php b/Compute/src/V1/ManagedInstanceVersion.php
index 109d1d94263f..e0aa02d00287 100644
--- a/Compute/src/V1/ManagedInstanceVersion.php
+++ b/Compute/src/V1/ManagedInstanceVersion.php
@@ -15,14 +15,14 @@
class ManagedInstanceVersion extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] The intended template of the instance. This field is empty
+ * Output only. [Output Only] The intended template of the instance. This field is empty
* when current_action is one of { DELETING, ABANDONING }.
*
* Generated from protobuf field optional string instance_template = 309248228;
*/
protected $instance_template = null;
/**
- * [Output Only] Name of the version.
+ * Output only. [Output Only] Name of the version.
*
* Generated from protobuf field optional string name = 3373707;
*/
@@ -35,10 +35,10 @@ class ManagedInstanceVersion extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $instance_template
- * [Output Only] The intended template of the instance. This field is empty
+ * Output only. [Output Only] The intended template of the instance. This field is empty
* when current_action is one of { DELETING, ABANDONING }.
* @type string $name
- * [Output Only] Name of the version.
+ * Output only. [Output Only] Name of the version.
* }
*/
public function __construct($data = NULL) {
@@ -47,7 +47,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] The intended template of the instance. This field is empty
+ * Output only. [Output Only] The intended template of the instance. This field is empty
* when current_action is one of { DELETING, ABANDONING }.
*
* Generated from protobuf field optional string instance_template = 309248228;
@@ -69,7 +69,7 @@ public function clearInstanceTemplate()
}
/**
- * [Output Only] The intended template of the instance. This field is empty
+ * Output only. [Output Only] The intended template of the instance. This field is empty
* when current_action is one of { DELETING, ABANDONING }.
*
* Generated from protobuf field optional string instance_template = 309248228;
@@ -85,7 +85,7 @@ public function setInstanceTemplate($var)
}
/**
- * [Output Only] Name of the version.
+ * Output only. [Output Only] Name of the version.
*
* Generated from protobuf field optional string name = 3373707;
* @return string
@@ -106,7 +106,7 @@ public function clearName()
}
/**
- * [Output Only] Name of the version.
+ * Output only. [Output Only] Name of the version.
*
* Generated from protobuf field optional string name = 3373707;
* @param string $var
diff --git a/Compute/src/V1/Metadata.php b/Compute/src/V1/Metadata.php
index b7b61b134f02..f2ef00223124 100644
--- a/Compute/src/V1/Metadata.php
+++ b/Compute/src/V1/Metadata.php
@@ -36,7 +36,7 @@ class Metadata extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of the resource. Always compute#metadata
+ * Output only. [Output Only] Type of the resource. Always compute#metadata
* for metadata.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -62,7 +62,7 @@ class Metadata extends \Google\Protobuf\Internal\Message
* Array of key/value pairs. The total size of all keys and values must be
* less than 512 KB.
* @type string $kind
- * [Output Only] Type of the resource. Always compute#metadata
+ * Output only. [Output Only] Type of the resource. Always compute#metadata
* for metadata.
* }
*/
@@ -150,7 +150,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of the resource. Always compute#metadata
+ * Output only. [Output Only] Type of the resource. Always compute#metadata
* for metadata.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -172,7 +172,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Always compute#metadata
+ * Output only. [Output Only] Type of the resource. Always compute#metadata
* for metadata.
*
* Generated from protobuf field optional string kind = 3292052;
diff --git a/Compute/src/V1/NatIpInfo.php b/Compute/src/V1/NatIpInfo.php
index b49e6deb0e42..c68fb16f06e9 100644
--- a/Compute/src/V1/NatIpInfo.php
+++ b/Compute/src/V1/NatIpInfo.php
@@ -16,13 +16,13 @@
class NatIpInfo extends \Google\Protobuf\Internal\Message
{
/**
- * A list of all NAT IPs assigned to this NAT config.
+ * Output only. A list of all NAT IPs assigned to this NAT config.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.NatIpInfoNatIpInfoMapping nat_ip_info_mappings = 241401884;
*/
private $nat_ip_info_mappings;
/**
- * Name of the NAT config which the NAT IP belongs to.
+ * Output only. Name of the NAT config which the NAT IP belongs to.
*
* Generated from protobuf field optional string nat_name = 425596649;
*/
@@ -35,9 +35,9 @@ class NatIpInfo extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type array<\Google\Cloud\Compute\V1\NatIpInfoNatIpInfoMapping>|\Google\Protobuf\Internal\RepeatedField $nat_ip_info_mappings
- * A list of all NAT IPs assigned to this NAT config.
+ * Output only. A list of all NAT IPs assigned to this NAT config.
* @type string $nat_name
- * Name of the NAT config which the NAT IP belongs to.
+ * Output only. Name of the NAT config which the NAT IP belongs to.
* }
*/
public function __construct($data = NULL) {
@@ -46,7 +46,7 @@ public function __construct($data = NULL) {
}
/**
- * A list of all NAT IPs assigned to this NAT config.
+ * Output only. A list of all NAT IPs assigned to this NAT config.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.NatIpInfoNatIpInfoMapping nat_ip_info_mappings = 241401884;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -57,7 +57,7 @@ public function getNatIpInfoMappings()
}
/**
- * A list of all NAT IPs assigned to this NAT config.
+ * Output only. A list of all NAT IPs assigned to this NAT config.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.NatIpInfoNatIpInfoMapping nat_ip_info_mappings = 241401884;
* @param array<\Google\Cloud\Compute\V1\NatIpInfoNatIpInfoMapping>|\Google\Protobuf\Internal\RepeatedField $var
@@ -72,7 +72,7 @@ public function setNatIpInfoMappings($var)
}
/**
- * Name of the NAT config which the NAT IP belongs to.
+ * Output only. Name of the NAT config which the NAT IP belongs to.
*
* Generated from protobuf field optional string nat_name = 425596649;
* @return string
@@ -93,7 +93,7 @@ public function clearNatName()
}
/**
- * Name of the NAT config which the NAT IP belongs to.
+ * Output only. Name of the NAT config which the NAT IP belongs to.
*
* Generated from protobuf field optional string nat_name = 425596649;
* @param string $var
diff --git a/Compute/src/V1/NatIpInfoNatIpInfoMapping.php b/Compute/src/V1/NatIpInfoNatIpInfoMapping.php
index 51f0be2d6d13..6b2f93276918 100644
--- a/Compute/src/V1/NatIpInfoNatIpInfoMapping.php
+++ b/Compute/src/V1/NatIpInfoNatIpInfoMapping.php
@@ -16,20 +16,20 @@
class NatIpInfoNatIpInfoMapping extends \Google\Protobuf\Internal\Message
{
/**
- * Specifies whether NAT IP is auto or manual.
+ * Output only. Specifies whether NAT IP is auto or manual.
* Check the Mode enum for the list of possible values.
*
* Generated from protobuf field optional string mode = 3357091;
*/
protected $mode = null;
/**
- * NAT IP address. For example: 203.0.113.11.
+ * Output only. NAT IP address. For example: 203.0.113.11.
*
* Generated from protobuf field optional string nat_ip = 21113093;
*/
protected $nat_ip = null;
/**
- * Specifies whether NAT IP is currently serving at least one endpoint or
+ * Output only. Specifies whether NAT IP is currently serving at least one endpoint or
* not.
* Check the Usage enum for the list of possible values.
*
@@ -44,12 +44,12 @@ class NatIpInfoNatIpInfoMapping extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $mode
- * Specifies whether NAT IP is auto or manual.
+ * Output only. Specifies whether NAT IP is auto or manual.
* Check the Mode enum for the list of possible values.
* @type string $nat_ip
- * NAT IP address. For example: 203.0.113.11.
+ * Output only. NAT IP address. For example: 203.0.113.11.
* @type string $usage
- * Specifies whether NAT IP is currently serving at least one endpoint or
+ * Output only. Specifies whether NAT IP is currently serving at least one endpoint or
* not.
* Check the Usage enum for the list of possible values.
* }
@@ -60,7 +60,7 @@ public function __construct($data = NULL) {
}
/**
- * Specifies whether NAT IP is auto or manual.
+ * Output only. Specifies whether NAT IP is auto or manual.
* Check the Mode enum for the list of possible values.
*
* Generated from protobuf field optional string mode = 3357091;
@@ -82,7 +82,7 @@ public function clearMode()
}
/**
- * Specifies whether NAT IP is auto or manual.
+ * Output only. Specifies whether NAT IP is auto or manual.
* Check the Mode enum for the list of possible values.
*
* Generated from protobuf field optional string mode = 3357091;
@@ -98,7 +98,7 @@ public function setMode($var)
}
/**
- * NAT IP address. For example: 203.0.113.11.
+ * Output only. NAT IP address. For example: 203.0.113.11.
*
* Generated from protobuf field optional string nat_ip = 21113093;
* @return string
@@ -119,7 +119,7 @@ public function clearNatIp()
}
/**
- * NAT IP address. For example: 203.0.113.11.
+ * Output only. NAT IP address. For example: 203.0.113.11.
*
* Generated from protobuf field optional string nat_ip = 21113093;
* @param string $var
@@ -134,7 +134,7 @@ public function setNatIp($var)
}
/**
- * Specifies whether NAT IP is currently serving at least one endpoint or
+ * Output only. Specifies whether NAT IP is currently serving at least one endpoint or
* not.
* Check the Usage enum for the list of possible values.
*
@@ -157,7 +157,7 @@ public function clearUsage()
}
/**
- * Specifies whether NAT IP is currently serving at least one endpoint or
+ * Output only. Specifies whether NAT IP is currently serving at least one endpoint or
* not.
* Check the Usage enum for the list of possible values.
*
diff --git a/Compute/src/V1/NatIpInfoNatIpInfoMapping/Mode.php b/Compute/src/V1/NatIpInfoNatIpInfoMapping/Mode.php
index c9c5f15e518a..4286e4f18614 100644
--- a/Compute/src/V1/NatIpInfoNatIpInfoMapping/Mode.php
+++ b/Compute/src/V1/NatIpInfoNatIpInfoMapping/Mode.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * Specifies whether NAT IP is auto or manual.
+ * Output only. Specifies whether NAT IP is auto or manual.
*
* Protobuf type google.cloud.compute.v1.NatIpInfoNatIpInfoMapping.Mode
*/
diff --git a/Compute/src/V1/NatIpInfoNatIpInfoMapping/Usage.php b/Compute/src/V1/NatIpInfoNatIpInfoMapping/Usage.php
index c721aa4e1ffe..de49cd6e438f 100644
--- a/Compute/src/V1/NatIpInfoNatIpInfoMapping/Usage.php
+++ b/Compute/src/V1/NatIpInfoNatIpInfoMapping/Usage.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * Specifies whether NAT IP is currently serving at least one endpoint or
+ * Output only. Specifies whether NAT IP is currently serving at least one endpoint or
* not.
*
* Protobuf type google.cloud.compute.v1.NatIpInfoNatIpInfoMapping.Usage
diff --git a/Compute/src/V1/Network.php b/Compute/src/V1/Network.php
index bec45e1d938f..06dd4b891ef0 100644
--- a/Compute/src/V1/Network.php
+++ b/Compute/src/V1/Network.php
@@ -40,7 +40,7 @@ class Network extends \Google\Protobuf\Internal\Message
*/
protected $auto_create_subnetworks = null;
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -62,7 +62,7 @@ class Network extends \Google\Protobuf\Internal\Message
*/
protected $enable_ula_internal_ipv6 = null;
/**
- * [Output Only] URL of the firewall policy the network is associated with.
+ * Output only. [Output Only] URL of the firewall policy the network is associated with.
*
* Generated from protobuf field optional string firewall_policy = 498173265;
*/
@@ -75,7 +75,7 @@ class Network extends \Google\Protobuf\Internal\Message
*/
protected $gateway_i_pv4 = null;
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -94,7 +94,7 @@ class Network extends \Google\Protobuf\Internal\Message
*/
protected $internal_ipv6_range = null;
/**
- * [Output Only] Type of the resource. Always compute#network for
+ * Output only. [Output Only] Type of the resource. Always compute#network for
* networks.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -149,7 +149,7 @@ class Network extends \Google\Protobuf\Internal\Message
*/
protected $params = null;
/**
- * [Output Only] A list of network peerings for the resource.
+ * Output only. [Output Only] A list of network peerings for the resource.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.NetworkPeering peerings = 69883187;
*/
@@ -168,7 +168,7 @@ class Network extends \Google\Protobuf\Internal\Message
*/
protected $self_link = null;
/**
- * [Output Only] Server-defined URL for this resource with the resource id.
+ * Output only. [Output Only] Server-defined URL for this resource with the resource id.
*
* Generated from protobuf field optional string self_link_with_id = 44520962;
*/
@@ -202,7 +202,7 @@ class Network extends \Google\Protobuf\Internal\Message
* For custom mode VPC networks, you can add subnets using the subnetworksinsert
* method.
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $description
* An optional description of this resource. Provide this field when you
@@ -212,12 +212,12 @@ class Network extends \Google\Protobuf\Internal\Message
* a /48 from google defined ULA prefix fd20::/20.
* .
* @type string $firewall_policy
- * [Output Only] URL of the firewall policy the network is associated with.
+ * Output only. [Output Only] URL of the firewall policy the network is associated with.
* @type string $gateway_i_pv4
* [Output Only] The gateway address for default routing out of the network,
* selected by Google Cloud.
* @type int|string $id
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type string $internal_ipv6_range
* When enabling ula internal ipv6, caller optionally can specify the /48
@@ -228,7 +228,7 @@ class Network extends \Google\Protobuf\Internal\Message
* allocated from fd20::/20 and returned via this field.
* .
* @type string $kind
- * [Output Only] Type of the resource. Always compute#network for
+ * Output only. [Output Only] Type of the resource. Always compute#network for
* networks.
* @type int $mtu
* Maximum Transmission Unit in bytes.
@@ -259,14 +259,14 @@ class Network extends \Google\Protobuf\Internal\Message
* Input only. [Input Only] Additional params passed with the request, but not persisted
* as part of resource payload.
* @type array<\Google\Cloud\Compute\V1\NetworkPeering>|\Google\Protobuf\Internal\RepeatedField $peerings
- * [Output Only] A list of network peerings for the resource.
+ * Output only. [Output Only] A list of network peerings for the resource.
* @type \Google\Cloud\Compute\V1\NetworkRoutingConfig $routing_config
* The network-level routing configuration for this network. Used by Cloud
* Router to determine what type of network-wide routing behavior to enforce.
* @type string $self_link
* [Output Only] Server-defined URL for the resource.
* @type string $self_link_with_id
- * [Output Only] Server-defined URL for this resource with the resource id.
+ * Output only. [Output Only] Server-defined URL for this resource with the resource id.
* @type array|\Google\Protobuf\Internal\RepeatedField $subnetworks
* [Output Only] Server-defined fully-qualified URLs for all subnetworks
* in this VPC network.
@@ -370,7 +370,7 @@ public function setAutoCreateSubnetworks($var)
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -392,7 +392,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -486,7 +486,7 @@ public function setEnableUlaInternalIpv6($var)
}
/**
- * [Output Only] URL of the firewall policy the network is associated with.
+ * Output only. [Output Only] URL of the firewall policy the network is associated with.
*
* Generated from protobuf field optional string firewall_policy = 498173265;
* @return string
@@ -507,7 +507,7 @@ public function clearFirewallPolicy()
}
/**
- * [Output Only] URL of the firewall policy the network is associated with.
+ * Output only. [Output Only] URL of the firewall policy the network is associated with.
*
* Generated from protobuf field optional string firewall_policy = 498173265;
* @param string $var
@@ -560,7 +560,7 @@ public function setGatewayIPv4($var)
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -582,7 +582,7 @@ public function clearId()
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -646,7 +646,7 @@ public function setInternalIpv6Range($var)
}
/**
- * [Output Only] Type of the resource. Always compute#network for
+ * Output only. [Output Only] Type of the resource. Always compute#network for
* networks.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -668,7 +668,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Always compute#network for
+ * Output only. [Output Only] Type of the resource. Always compute#network for
* networks.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -900,7 +900,7 @@ public function setParams($var)
}
/**
- * [Output Only] A list of network peerings for the resource.
+ * Output only. [Output Only] A list of network peerings for the resource.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.NetworkPeering peerings = 69883187;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -911,7 +911,7 @@ public function getPeerings()
}
/**
- * [Output Only] A list of network peerings for the resource.
+ * Output only. [Output Only] A list of network peerings for the resource.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.NetworkPeering peerings = 69883187;
* @param array<\Google\Cloud\Compute\V1\NetworkPeering>|\Google\Protobuf\Internal\RepeatedField $var
@@ -1000,7 +1000,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Server-defined URL for this resource with the resource id.
+ * Output only. [Output Only] Server-defined URL for this resource with the resource id.
*
* Generated from protobuf field optional string self_link_with_id = 44520962;
* @return string
@@ -1021,7 +1021,7 @@ public function clearSelfLinkWithId()
}
/**
- * [Output Only] Server-defined URL for this resource with the resource id.
+ * Output only. [Output Only] Server-defined URL for this resource with the resource id.
*
* Generated from protobuf field optional string self_link_with_id = 44520962;
* @param string $var
diff --git a/Compute/src/V1/NetworkAttachment.php b/Compute/src/V1/NetworkAttachment.php
index 796b0481302e..d440922e8977 100644
--- a/Compute/src/V1/NetworkAttachment.php
+++ b/Compute/src/V1/NetworkAttachment.php
@@ -17,7 +17,7 @@
class NetworkAttachment extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] An array of connections for all the producers connected
+ * Output only. [Output Only] An array of connections for all the producers connected
* to this network attachment.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.NetworkAttachmentConnectedEndpoint connection_endpoints = 326078813;
@@ -31,7 +31,7 @@ class NetworkAttachment extends \Google\Protobuf\Internal\Message
*/
protected $connection_preference = null;
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -53,14 +53,14 @@ class NetworkAttachment extends \Google\Protobuf\Internal\Message
*/
protected $fingerprint = null;
/**
- * [Output Only] The unique identifier for the resource type. The server
+ * Output only. [Output Only] The unique identifier for the resource type. The server
* generates this identifier.
*
* Generated from protobuf field optional uint64 id = 3355;
*/
protected $id = null;
/**
- * [Output Only] Type of the resource.
+ * Output only. [Output Only] Type of the resource.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -78,7 +78,7 @@ class NetworkAttachment extends \Google\Protobuf\Internal\Message
*/
protected $name = null;
/**
- * [Output Only] The URL of the network which the Network Attachment
+ * Output only. [Output Only] The URL of the network which the Network Attachment
* belongs to. Practically it is inferred by fetching the network of the first
* subnetwork associated. Because it is required that all the subnetworks must
* be from the same network, it is assured that the Network Attachment belongs
@@ -102,7 +102,7 @@ class NetworkAttachment extends \Google\Protobuf\Internal\Message
*/
private $producer_reject_lists;
/**
- * [Output Only] URL of the region where the network attachment resides.
+ * Output only. [Output Only] URL of the region where the network attachment resides.
* This field applies only to the region resource. You must specify this
* field as part of the HTTP request URL. It is not settable as a field in
* the request body.
@@ -111,13 +111,13 @@ class NetworkAttachment extends \Google\Protobuf\Internal\Message
*/
protected $region = null;
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Server-defined URL for this resource's resource id.
+ * Output only. [Output Only] Server-defined URL for this resource's resource id.
*
* Generated from protobuf field optional string self_link_with_id = 44520962;
*/
@@ -138,13 +138,13 @@ class NetworkAttachment extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type array<\Google\Cloud\Compute\V1\NetworkAttachmentConnectedEndpoint>|\Google\Protobuf\Internal\RepeatedField $connection_endpoints
- * [Output Only] An array of connections for all the producers connected
+ * Output only. [Output Only] An array of connections for all the producers connected
* to this network attachment.
* @type string $connection_preference
*
* Check the ConnectionPreference enum for the list of possible values.
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $description
* An optional description of this resource. Provide this property when you
@@ -154,10 +154,10 @@ class NetworkAttachment extends \Google\Protobuf\Internal\Message
* in this object. This field is used in optimistic locking. An up-to-date
* fingerprint must be provided in order to patch.
* @type int|string $id
- * [Output Only] The unique identifier for the resource type. The server
+ * Output only. [Output Only] The unique identifier for the resource type. The server
* generates this identifier.
* @type string $kind
- * [Output Only] Type of the resource.
+ * Output only. [Output Only] Type of the resource.
* @type string $name
* Name of the resource. Provided by the client when the resource is created.
* The name must be 1-63 characters long, and comply withRFC1035.
@@ -167,7 +167,7 @@ class NetworkAttachment extends \Google\Protobuf\Internal\Message
* be a dash, lowercase letter, or digit, except the last character, which
* cannot be a dash.
* @type string $network
- * [Output Only] The URL of the network which the Network Attachment
+ * Output only. [Output Only] The URL of the network which the Network Attachment
* belongs to. Practically it is inferred by fetching the network of the first
* subnetwork associated. Because it is required that all the subnetworks must
* be from the same network, it is assured that the Network Attachment belongs
@@ -179,14 +179,14 @@ class NetworkAttachment extends \Google\Protobuf\Internal\Message
* Projects that are not allowed to connect to this network attachment.
* The project can be specified using its id or number.
* @type string $region
- * [Output Only] URL of the region where the network attachment resides.
+ * Output only. [Output Only] URL of the region where the network attachment resides.
* This field applies only to the region resource. You must specify this
* field as part of the HTTP request URL. It is not settable as a field in
* the request body.
* @type string $self_link
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
* @type string $self_link_with_id
- * [Output Only] Server-defined URL for this resource's resource id.
+ * Output only. [Output Only] Server-defined URL for this resource's resource id.
* @type array|\Google\Protobuf\Internal\RepeatedField $subnetworks
* An array of URLs where each entry is the URL of a subnet
* provided by the service consumer to use for
@@ -199,7 +199,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] An array of connections for all the producers connected
+ * Output only. [Output Only] An array of connections for all the producers connected
* to this network attachment.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.NetworkAttachmentConnectedEndpoint connection_endpoints = 326078813;
@@ -211,7 +211,7 @@ public function getConnectionEndpoints()
}
/**
- * [Output Only] An array of connections for all the producers connected
+ * Output only. [Output Only] An array of connections for all the producers connected
* to this network attachment.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.NetworkAttachmentConnectedEndpoint connection_endpoints = 326078813;
@@ -265,7 +265,7 @@ public function setConnectionPreference($var)
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -287,7 +287,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -381,7 +381,7 @@ public function setFingerprint($var)
}
/**
- * [Output Only] The unique identifier for the resource type. The server
+ * Output only. [Output Only] The unique identifier for the resource type. The server
* generates this identifier.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -403,7 +403,7 @@ public function clearId()
}
/**
- * [Output Only] The unique identifier for the resource type. The server
+ * Output only. [Output Only] The unique identifier for the resource type. The server
* generates this identifier.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -419,7 +419,7 @@ public function setId($var)
}
/**
- * [Output Only] Type of the resource.
+ * Output only. [Output Only] Type of the resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -440,7 +440,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource.
+ * Output only. [Output Only] Type of the resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -503,7 +503,7 @@ public function setName($var)
}
/**
- * [Output Only] The URL of the network which the Network Attachment
+ * Output only. [Output Only] The URL of the network which the Network Attachment
* belongs to. Practically it is inferred by fetching the network of the first
* subnetwork associated. Because it is required that all the subnetworks must
* be from the same network, it is assured that the Network Attachment belongs
@@ -528,7 +528,7 @@ public function clearNetwork()
}
/**
- * [Output Only] The URL of the network which the Network Attachment
+ * Output only. [Output Only] The URL of the network which the Network Attachment
* belongs to. Practically it is inferred by fetching the network of the first
* subnetwork associated. Because it is required that all the subnetworks must
* be from the same network, it is assured that the Network Attachment belongs
@@ -603,7 +603,7 @@ public function setProducerRejectLists($var)
}
/**
- * [Output Only] URL of the region where the network attachment resides.
+ * Output only. [Output Only] URL of the region where the network attachment resides.
* This field applies only to the region resource. You must specify this
* field as part of the HTTP request URL. It is not settable as a field in
* the request body.
@@ -627,7 +627,7 @@ public function clearRegion()
}
/**
- * [Output Only] URL of the region where the network attachment resides.
+ * Output only. [Output Only] URL of the region where the network attachment resides.
* This field applies only to the region resource. You must specify this
* field as part of the HTTP request URL. It is not settable as a field in
* the request body.
@@ -645,7 +645,7 @@ public function setRegion($var)
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -666,7 +666,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -681,7 +681,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Server-defined URL for this resource's resource id.
+ * Output only. [Output Only] Server-defined URL for this resource's resource id.
*
* Generated from protobuf field optional string self_link_with_id = 44520962;
* @return string
@@ -702,7 +702,7 @@ public function clearSelfLinkWithId()
}
/**
- * [Output Only] Server-defined URL for this resource's resource id.
+ * Output only. [Output Only] Server-defined URL for this resource's resource id.
*
* Generated from protobuf field optional string self_link_with_id = 44520962;
* @param string $var
diff --git a/Compute/src/V1/NetworkAttachmentConnectedEndpoint.php b/Compute/src/V1/NetworkAttachmentConnectedEndpoint.php
index b9f4e1916521..95f24697453f 100644
--- a/Compute/src/V1/NetworkAttachmentConnectedEndpoint.php
+++ b/Compute/src/V1/NetworkAttachmentConnectedEndpoint.php
@@ -57,7 +57,7 @@ class NetworkAttachmentConnectedEndpoint extends \Google\Protobuf\Internal\Messa
*/
protected $subnetwork = null;
/**
- * [Output Only] The CIDR range of the subnet from which the IPv4 internal
+ * Output only. [Output Only] The CIDR range of the subnet from which the IPv4 internal
* IP was allocated from.
*
* Generated from protobuf field optional string subnetwork_cidr_range = 383249827;
@@ -88,7 +88,7 @@ class NetworkAttachmentConnectedEndpoint extends \Google\Protobuf\Internal\Messa
* The subnetwork used to assign the IP to the producer
* instance network interface.
* @type string $subnetwork_cidr_range
- * [Output Only] The CIDR range of the subnet from which the IPv4 internal
+ * Output only. [Output Only] The CIDR range of the subnet from which the IPv4 internal
* IP was allocated from.
* }
*/
@@ -314,7 +314,7 @@ public function setSubnetwork($var)
}
/**
- * [Output Only] The CIDR range of the subnet from which the IPv4 internal
+ * Output only. [Output Only] The CIDR range of the subnet from which the IPv4 internal
* IP was allocated from.
*
* Generated from protobuf field optional string subnetwork_cidr_range = 383249827;
@@ -336,7 +336,7 @@ public function clearSubnetworkCidrRange()
}
/**
- * [Output Only] The CIDR range of the subnet from which the IPv4 internal
+ * Output only. [Output Only] The CIDR range of the subnet from which the IPv4 internal
* IP was allocated from.
*
* Generated from protobuf field optional string subnetwork_cidr_range = 383249827;
diff --git a/Compute/src/V1/NetworkEdgeSecurityService.php b/Compute/src/V1/NetworkEdgeSecurityService.php
index fb6584814f2d..4f68e4a1ef3d 100644
--- a/Compute/src/V1/NetworkEdgeSecurityService.php
+++ b/Compute/src/V1/NetworkEdgeSecurityService.php
@@ -16,7 +16,7 @@
class NetworkEdgeSecurityService extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -42,14 +42,14 @@ class NetworkEdgeSecurityService extends \Google\Protobuf\Internal\Message
*/
protected $fingerprint = null;
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
*/
protected $id = null;
/**
- * [Output only] Type of the resource. Alwayscompute#networkEdgeSecurityService for
+ * Output only. [Output only] Type of the resource. Alwayscompute#networkEdgeSecurityService for
* NetworkEdgeSecurityServices
*
* Generated from protobuf field optional string kind = 3292052;
@@ -68,7 +68,7 @@ class NetworkEdgeSecurityService extends \Google\Protobuf\Internal\Message
*/
protected $name = null;
/**
- * [Output Only] URL of the region where the resource resides. You must
+ * Output only. [Output Only] URL of the region where the resource resides. You must
* specify this field as part of the HTTP request URL. It is not settable as a
* field in the request body.
*
@@ -83,13 +83,13 @@ class NetworkEdgeSecurityService extends \Google\Protobuf\Internal\Message
*/
protected $security_policy = null;
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Server-defined URL for this resource with the resource id.
+ * Output only. [Output Only] Server-defined URL for this resource with the resource id.
*
* Generated from protobuf field optional string self_link_with_id = 44520962;
*/
@@ -102,7 +102,7 @@ class NetworkEdgeSecurityService extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $description
* An optional description of this resource. Provide this property when you
@@ -116,10 +116,10 @@ class NetworkEdgeSecurityService extends \Google\Protobuf\Internal\Message
* To see the latest fingerprint, make a get() request to
* retrieve a NetworkEdgeSecurityService.
* @type int|string $id
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type string $kind
- * [Output only] Type of the resource. Alwayscompute#networkEdgeSecurityService for
+ * Output only. [Output only] Type of the resource. Alwayscompute#networkEdgeSecurityService for
* NetworkEdgeSecurityServices
* @type string $name
* Name of the resource. Provided by the client when the resource is created.
@@ -130,16 +130,16 @@ class NetworkEdgeSecurityService extends \Google\Protobuf\Internal\Message
* be a dash, lowercase letter, or digit, except the last character, which
* cannot be a dash.
* @type string $region
- * [Output Only] URL of the region where the resource resides. You must
+ * Output only. [Output Only] URL of the region where the resource resides. You must
* specify this field as part of the HTTP request URL. It is not settable as a
* field in the request body.
* @type string $security_policy
* The resource URL for the network edge security service associated with this
* network edge security service.
* @type string $self_link
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
* @type string $self_link_with_id
- * [Output Only] Server-defined URL for this resource with the resource id.
+ * Output only. [Output Only] Server-defined URL for this resource with the resource id.
* }
*/
public function __construct($data = NULL) {
@@ -148,7 +148,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -170,7 +170,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -272,7 +272,7 @@ public function setFingerprint($var)
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -294,7 +294,7 @@ public function clearId()
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -310,7 +310,7 @@ public function setId($var)
}
/**
- * [Output only] Type of the resource. Alwayscompute#networkEdgeSecurityService for
+ * Output only. [Output only] Type of the resource. Alwayscompute#networkEdgeSecurityService for
* NetworkEdgeSecurityServices
*
* Generated from protobuf field optional string kind = 3292052;
@@ -332,7 +332,7 @@ public function clearKind()
}
/**
- * [Output only] Type of the resource. Alwayscompute#networkEdgeSecurityService for
+ * Output only. [Output only] Type of the resource. Alwayscompute#networkEdgeSecurityService for
* NetworkEdgeSecurityServices
*
* Generated from protobuf field optional string kind = 3292052;
@@ -396,7 +396,7 @@ public function setName($var)
}
/**
- * [Output Only] URL of the region where the resource resides. You must
+ * Output only. [Output Only] URL of the region where the resource resides. You must
* specify this field as part of the HTTP request URL. It is not settable as a
* field in the request body.
*
@@ -419,7 +419,7 @@ public function clearRegion()
}
/**
- * [Output Only] URL of the region where the resource resides. You must
+ * Output only. [Output Only] URL of the region where the resource resides. You must
* specify this field as part of the HTTP request URL. It is not settable as a
* field in the request body.
*
@@ -474,7 +474,7 @@ public function setSecurityPolicy($var)
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -495,7 +495,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -510,7 +510,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Server-defined URL for this resource with the resource id.
+ * Output only. [Output Only] Server-defined URL for this resource with the resource id.
*
* Generated from protobuf field optional string self_link_with_id = 44520962;
* @return string
@@ -531,7 +531,7 @@ public function clearSelfLinkWithId()
}
/**
- * [Output Only] Server-defined URL for this resource with the resource id.
+ * Output only. [Output Only] Server-defined URL for this resource with the resource id.
*
* Generated from protobuf field optional string self_link_with_id = 44520962;
* @param string $var
diff --git a/Compute/src/V1/NetworkEdgeSecurityServiceAggregatedList.php b/Compute/src/V1/NetworkEdgeSecurityServiceAggregatedList.php
index c2afe4555f78..36eb691943e6 100644
--- a/Compute/src/V1/NetworkEdgeSecurityServiceAggregatedList.php
+++ b/Compute/src/V1/NetworkEdgeSecurityServiceAggregatedList.php
@@ -31,7 +31,7 @@ class NetworkEdgeSecurityServiceAggregatedList extends \Google\Protobuf\Internal
*/
private $items;
/**
- * [Output Only] Type of resource. Alwayscompute#networkEdgeSecurityServiceAggregatedList for lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#networkEdgeSecurityServiceAggregatedList for lists of
* Network Edge Security Services.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -48,13 +48,13 @@ class NetworkEdgeSecurityServiceAggregatedList extends \Google\Protobuf\Internal
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
@@ -78,7 +78,7 @@ class NetworkEdgeSecurityServiceAggregatedList extends \Google\Protobuf\Internal
* @type array|\Google\Protobuf\Internal\MapField $items
* A list of NetworkEdgeSecurityServicesScopedList resources.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#networkEdgeSecurityServiceAggregatedList for lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#networkEdgeSecurityServiceAggregatedList for lists of
* Network Edge Security Services.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -87,9 +87,9 @@ class NetworkEdgeSecurityServiceAggregatedList extends \Google\Protobuf\Internal
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -194,7 +194,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#networkEdgeSecurityServiceAggregatedList for lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#networkEdgeSecurityServiceAggregatedList for lists of
* Network Edge Security Services.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -216,7 +216,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#networkEdgeSecurityServiceAggregatedList for lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#networkEdgeSecurityServiceAggregatedList for lists of
* Network Edge Security Services.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -276,7 +276,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -297,7 +297,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -312,7 +312,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -323,7 +323,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/NetworkEndpointGroup.php b/Compute/src/V1/NetworkEndpointGroup.php
index 072fc57f26fe..9ff4ec72b4dc 100644
--- a/Compute/src/V1/NetworkEndpointGroup.php
+++ b/Compute/src/V1/NetworkEndpointGroup.php
@@ -43,7 +43,7 @@ class NetworkEndpointGroup extends \Google\Protobuf\Internal\Message
*/
protected $cloud_run = null;
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -66,14 +66,14 @@ class NetworkEndpointGroup extends \Google\Protobuf\Internal\Message
*/
protected $description = null;
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
*/
protected $id = null;
/**
- * [Output Only] Type of the resource. Alwayscompute#networkEndpointGroup for network endpoint group.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#networkEndpointGroup for network endpoint group.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -120,20 +120,20 @@ class NetworkEndpointGroup extends \Google\Protobuf\Internal\Message
*/
protected $psc_target_service = null;
/**
- * [Output Only] The URL of theregion
+ * Output only. [Output Only] The URL of theregion
* where the network endpoint group is located.
*
* Generated from protobuf field optional string region = 138946292;
*/
protected $region = null;
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output only] Number of network endpoints in the network endpoint group.
+ * Output only. [Output only] Number of network endpoints in the network endpoint group.
*
* Generated from protobuf field optional int32 size = 3530753;
*/
@@ -146,7 +146,7 @@ class NetworkEndpointGroup extends \Google\Protobuf\Internal\Message
*/
protected $subnetwork = null;
/**
- * [Output Only] The URL of thezone
+ * Output only. [Output Only] The URL of thezone
* where the network endpoint group is located.
*
* Generated from protobuf field optional string zone = 3744684;
@@ -168,7 +168,7 @@ class NetworkEndpointGroup extends \Google\Protobuf\Internal\Message
* @type \Google\Cloud\Compute\V1\NetworkEndpointGroupCloudRun $cloud_run
* Optional. Only valid when networkEndpointType isSERVERLESS. Only one of cloudRun,appEngine or cloudFunction may be set.
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type int $default_port
* The default port used if the port number is not specified in the network
@@ -179,10 +179,10 @@ class NetworkEndpointGroup extends \Google\Protobuf\Internal\Message
* An optional description of this resource. Provide this property when you
* create the resource.
* @type int|string $id
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type string $kind
- * [Output Only] Type of the resource. Alwayscompute#networkEndpointGroup for network endpoint group.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#networkEndpointGroup for network endpoint group.
* @type string $name
* Name of the resource; provided by the client when the resource is created.
* The name must be 1-63 characters long, and comply withRFC1035.
@@ -205,17 +205,17 @@ class NetworkEndpointGroup extends \Google\Protobuf\Internal\Message
* An example value is: asia-northeast3-cloudkms.googleapis.com.
* Optional. Only valid when networkEndpointType isPRIVATE_SERVICE_CONNECT.
* @type string $region
- * [Output Only] The URL of theregion
+ * Output only. [Output Only] The URL of theregion
* where the network endpoint group is located.
* @type string $self_link
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
* @type int $size
- * [Output only] Number of network endpoints in the network endpoint group.
+ * Output only. [Output only] Number of network endpoints in the network endpoint group.
* @type string $subnetwork
* Optional URL of the subnetwork to which all network endpoints in the NEG
* belong.
* @type string $zone
- * [Output Only] The URL of thezone
+ * Output only. [Output Only] The URL of thezone
* where the network endpoint group is located.
* }
*/
@@ -359,7 +359,7 @@ public function setCloudRun($var)
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -381,7 +381,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -477,7 +477,7 @@ public function setDescription($var)
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -499,7 +499,7 @@ public function clearId()
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -515,7 +515,7 @@ public function setId($var)
}
/**
- * [Output Only] Type of the resource. Alwayscompute#networkEndpointGroup for network endpoint group.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#networkEndpointGroup for network endpoint group.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -536,7 +536,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Alwayscompute#networkEndpointGroup for network endpoint group.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#networkEndpointGroup for network endpoint group.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -753,7 +753,7 @@ public function setPscTargetService($var)
}
/**
- * [Output Only] The URL of theregion
+ * Output only. [Output Only] The URL of theregion
* where the network endpoint group is located.
*
* Generated from protobuf field optional string region = 138946292;
@@ -775,7 +775,7 @@ public function clearRegion()
}
/**
- * [Output Only] The URL of theregion
+ * Output only. [Output Only] The URL of theregion
* where the network endpoint group is located.
*
* Generated from protobuf field optional string region = 138946292;
@@ -791,7 +791,7 @@ public function setRegion($var)
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -812,7 +812,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -827,7 +827,7 @@ public function setSelfLink($var)
}
/**
- * [Output only] Number of network endpoints in the network endpoint group.
+ * Output only. [Output only] Number of network endpoints in the network endpoint group.
*
* Generated from protobuf field optional int32 size = 3530753;
* @return int
@@ -848,7 +848,7 @@ public function clearSize()
}
/**
- * [Output only] Number of network endpoints in the network endpoint group.
+ * Output only. [Output only] Number of network endpoints in the network endpoint group.
*
* Generated from protobuf field optional int32 size = 3530753;
* @param int $var
@@ -901,7 +901,7 @@ public function setSubnetwork($var)
}
/**
- * [Output Only] The URL of thezone
+ * Output only. [Output Only] The URL of thezone
* where the network endpoint group is located.
*
* Generated from protobuf field optional string zone = 3744684;
@@ -923,7 +923,7 @@ public function clearZone()
}
/**
- * [Output Only] The URL of thezone
+ * Output only. [Output Only] The URL of thezone
* where the network endpoint group is located.
*
* Generated from protobuf field optional string zone = 3744684;
diff --git a/Compute/src/V1/NetworkEndpointGroupAggregatedList.php b/Compute/src/V1/NetworkEndpointGroupAggregatedList.php
index 91efdc921efd..ccd60be477d0 100644
--- a/Compute/src/V1/NetworkEndpointGroupAggregatedList.php
+++ b/Compute/src/V1/NetworkEndpointGroupAggregatedList.php
@@ -27,7 +27,7 @@ class NetworkEndpointGroupAggregatedList extends \Google\Protobuf\Internal\Messa
*/
private $items;
/**
- * [Output Only] The resource type, which is alwayscompute#networkEndpointGroupAggregatedList for aggregated
+ * Output only. [Output Only] The resource type, which is alwayscompute#networkEndpointGroupAggregatedList for aggregated
* lists of network endpoint groups.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -44,13 +44,13 @@ class NetworkEndpointGroupAggregatedList extends \Google\Protobuf\Internal\Messa
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
@@ -73,7 +73,7 @@ class NetworkEndpointGroupAggregatedList extends \Google\Protobuf\Internal\Messa
* @type array|\Google\Protobuf\Internal\MapField $items
* A list of NetworkEndpointGroupsScopedList resources.
* @type string $kind
- * [Output Only] The resource type, which is alwayscompute#networkEndpointGroupAggregatedList for aggregated
+ * Output only. [Output Only] The resource type, which is alwayscompute#networkEndpointGroupAggregatedList for aggregated
* lists of network endpoint groups.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -82,9 +82,9 @@ class NetworkEndpointGroupAggregatedList extends \Google\Protobuf\Internal\Messa
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -157,7 +157,7 @@ public function setItems($var)
}
/**
- * [Output Only] The resource type, which is alwayscompute#networkEndpointGroupAggregatedList for aggregated
+ * Output only. [Output Only] The resource type, which is alwayscompute#networkEndpointGroupAggregatedList for aggregated
* lists of network endpoint groups.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -179,7 +179,7 @@ public function clearKind()
}
/**
- * [Output Only] The resource type, which is alwayscompute#networkEndpointGroupAggregatedList for aggregated
+ * Output only. [Output Only] The resource type, which is alwayscompute#networkEndpointGroupAggregatedList for aggregated
* lists of network endpoint groups.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -239,7 +239,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -260,7 +260,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -275,7 +275,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -286,7 +286,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/NetworkEndpointGroupList.php b/Compute/src/V1/NetworkEndpointGroupList.php
index 8737b82a576f..651c7b03fb5b 100644
--- a/Compute/src/V1/NetworkEndpointGroupList.php
+++ b/Compute/src/V1/NetworkEndpointGroupList.php
@@ -27,7 +27,7 @@ class NetworkEndpointGroupList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] The resource type, which is alwayscompute#networkEndpointGroupList for network endpoint group
+ * Output only. [Output Only] The resource type, which is alwayscompute#networkEndpointGroupList for network endpoint group
* lists.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -44,7 +44,7 @@ class NetworkEndpointGroupList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -67,7 +67,7 @@ class NetworkEndpointGroupList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\NetworkEndpointGroup>|\Google\Protobuf\Internal\RepeatedField $items
* A list of NetworkEndpointGroup resources.
* @type string $kind
- * [Output Only] The resource type, which is alwayscompute#networkEndpointGroupList for network endpoint group
+ * Output only. [Output Only] The resource type, which is alwayscompute#networkEndpointGroupList for network endpoint group
* lists.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -76,7 +76,7 @@ class NetworkEndpointGroupList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -149,7 +149,7 @@ public function setItems($var)
}
/**
- * [Output Only] The resource type, which is alwayscompute#networkEndpointGroupList for network endpoint group
+ * Output only. [Output Only] The resource type, which is alwayscompute#networkEndpointGroupList for network endpoint group
* lists.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -171,7 +171,7 @@ public function clearKind()
}
/**
- * [Output Only] The resource type, which is alwayscompute#networkEndpointGroupList for network endpoint group
+ * Output only. [Output Only] The resource type, which is alwayscompute#networkEndpointGroupList for network endpoint group
* lists.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -231,7 +231,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -252,7 +252,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/NetworkEndpointGroupPscData.php b/Compute/src/V1/NetworkEndpointGroupPscData.php
index 6df1547fc927..334169fdcc11 100644
--- a/Compute/src/V1/NetworkEndpointGroupPscData.php
+++ b/Compute/src/V1/NetworkEndpointGroupPscData.php
@@ -17,7 +17,7 @@
class NetworkEndpointGroupPscData extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Address allocated from given subnetwork for PSC. This IP
+ * Output only. [Output Only] Address allocated from given subnetwork for PSC. This IP
* address acts as a VIP for a PSC NEG, allowing it to act as an endpoint in
* L7 PSC-XLB.
*
@@ -33,14 +33,14 @@ class NetworkEndpointGroupPscData extends \Google\Protobuf\Internal\Message
*/
protected $producer_port = null;
/**
- * [Output Only] The PSC connection id of the PSC Network Endpoint Group
+ * Output only. [Output Only] The PSC connection id of the PSC Network Endpoint Group
* Consumer.
*
* Generated from protobuf field optional uint64 psc_connection_id = 292082397;
*/
protected $psc_connection_id = null;
/**
- * [Output Only] The connection status of the PSC Forwarding Rule.
+ * Output only. [Output Only] The connection status of the PSC Forwarding Rule.
* Check the PscConnectionStatus enum for the list of possible values.
*
* Generated from protobuf field optional string psc_connection_status = 184149172;
@@ -54,7 +54,7 @@ class NetworkEndpointGroupPscData extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $consumer_psc_address
- * [Output Only] Address allocated from given subnetwork for PSC. This IP
+ * Output only. [Output Only] Address allocated from given subnetwork for PSC. This IP
* address acts as a VIP for a PSC NEG, allowing it to act as an endpoint in
* L7 PSC-XLB.
* @type int $producer_port
@@ -62,10 +62,10 @@ class NetworkEndpointGroupPscData extends \Google\Protobuf\Internal\Message
* the PSC Producer side; should only be used for the
* PRIVATE_SERVICE_CONNECT NEG type
* @type int|string $psc_connection_id
- * [Output Only] The PSC connection id of the PSC Network Endpoint Group
+ * Output only. [Output Only] The PSC connection id of the PSC Network Endpoint Group
* Consumer.
* @type string $psc_connection_status
- * [Output Only] The connection status of the PSC Forwarding Rule.
+ * Output only. [Output Only] The connection status of the PSC Forwarding Rule.
* Check the PscConnectionStatus enum for the list of possible values.
* }
*/
@@ -75,7 +75,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Address allocated from given subnetwork for PSC. This IP
+ * Output only. [Output Only] Address allocated from given subnetwork for PSC. This IP
* address acts as a VIP for a PSC NEG, allowing it to act as an endpoint in
* L7 PSC-XLB.
*
@@ -98,7 +98,7 @@ public function clearConsumerPscAddress()
}
/**
- * [Output Only] Address allocated from given subnetwork for PSC. This IP
+ * Output only. [Output Only] Address allocated from given subnetwork for PSC. This IP
* address acts as a VIP for a PSC NEG, allowing it to act as an endpoint in
* L7 PSC-XLB.
*
@@ -155,7 +155,7 @@ public function setProducerPort($var)
}
/**
- * [Output Only] The PSC connection id of the PSC Network Endpoint Group
+ * Output only. [Output Only] The PSC connection id of the PSC Network Endpoint Group
* Consumer.
*
* Generated from protobuf field optional uint64 psc_connection_id = 292082397;
@@ -177,7 +177,7 @@ public function clearPscConnectionId()
}
/**
- * [Output Only] The PSC connection id of the PSC Network Endpoint Group
+ * Output only. [Output Only] The PSC connection id of the PSC Network Endpoint Group
* Consumer.
*
* Generated from protobuf field optional uint64 psc_connection_id = 292082397;
@@ -193,7 +193,7 @@ public function setPscConnectionId($var)
}
/**
- * [Output Only] The connection status of the PSC Forwarding Rule.
+ * Output only. [Output Only] The connection status of the PSC Forwarding Rule.
* Check the PscConnectionStatus enum for the list of possible values.
*
* Generated from protobuf field optional string psc_connection_status = 184149172;
@@ -215,7 +215,7 @@ public function clearPscConnectionStatus()
}
/**
- * [Output Only] The connection status of the PSC Forwarding Rule.
+ * Output only. [Output Only] The connection status of the PSC Forwarding Rule.
* Check the PscConnectionStatus enum for the list of possible values.
*
* Generated from protobuf field optional string psc_connection_status = 184149172;
diff --git a/Compute/src/V1/NetworkEndpointGroupPscData/PscConnectionStatus.php b/Compute/src/V1/NetworkEndpointGroupPscData/PscConnectionStatus.php
index 3fa76069b4c9..be7b447a3722 100644
--- a/Compute/src/V1/NetworkEndpointGroupPscData/PscConnectionStatus.php
+++ b/Compute/src/V1/NetworkEndpointGroupPscData/PscConnectionStatus.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] The connection status of the PSC Forwarding Rule.
+ * Output only. [Output Only] The connection status of the PSC Forwarding Rule.
*
* Protobuf type google.cloud.compute.v1.NetworkEndpointGroupPscData.PscConnectionStatus
*/
diff --git a/Compute/src/V1/NetworkEndpointGroupsListNetworkEndpoints.php b/Compute/src/V1/NetworkEndpointGroupsListNetworkEndpoints.php
index 152d0769bd4d..756f5e2cf2c1 100644
--- a/Compute/src/V1/NetworkEndpointGroupsListNetworkEndpoints.php
+++ b/Compute/src/V1/NetworkEndpointGroupsListNetworkEndpoints.php
@@ -27,7 +27,7 @@ class NetworkEndpointGroupsListNetworkEndpoints extends \Google\Protobuf\Interna
*/
private $items;
/**
- * [Output Only] The resource type, which is alwayscompute#networkEndpointGroupsListNetworkEndpoints for the list
+ * Output only. [Output Only] The resource type, which is alwayscompute#networkEndpointGroupsListNetworkEndpoints for the list
* of network endpoints in the specified network endpoint group.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -61,7 +61,7 @@ class NetworkEndpointGroupsListNetworkEndpoints extends \Google\Protobuf\Interna
* @type array<\Google\Cloud\Compute\V1\NetworkEndpointWithHealthStatus>|\Google\Protobuf\Internal\RepeatedField $items
* A list of NetworkEndpointWithHealthStatus resources.
* @type string $kind
- * [Output Only] The resource type, which is alwayscompute#networkEndpointGroupsListNetworkEndpoints for the list
+ * Output only. [Output Only] The resource type, which is alwayscompute#networkEndpointGroupsListNetworkEndpoints for the list
* of network endpoints in the specified network endpoint group.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -141,7 +141,7 @@ public function setItems($var)
}
/**
- * [Output Only] The resource type, which is alwayscompute#networkEndpointGroupsListNetworkEndpoints for the list
+ * Output only. [Output Only] The resource type, which is alwayscompute#networkEndpointGroupsListNetworkEndpoints for the list
* of network endpoints in the specified network endpoint group.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -163,7 +163,7 @@ public function clearKind()
}
/**
- * [Output Only] The resource type, which is alwayscompute#networkEndpointGroupsListNetworkEndpoints for the list
+ * Output only. [Output Only] The resource type, which is alwayscompute#networkEndpointGroupsListNetworkEndpoints for the list
* of network endpoints in the specified network endpoint group.
*
* Generated from protobuf field optional string kind = 3292052;
diff --git a/Compute/src/V1/NetworkEndpointGroupsScopedList.php b/Compute/src/V1/NetworkEndpointGroupsScopedList.php
index 5954f4b625f0..c037eab9b4b5 100644
--- a/Compute/src/V1/NetworkEndpointGroupsScopedList.php
+++ b/Compute/src/V1/NetworkEndpointGroupsScopedList.php
@@ -15,14 +15,14 @@
class NetworkEndpointGroupsScopedList extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] The list ofnetwork
+ * Output only. [Output Only] The list ofnetwork
* endpoint groups that are contained in this scope.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.NetworkEndpointGroup network_endpoint_groups = 29346733;
*/
private $network_endpoint_groups;
/**
- * [Output Only] An informational warning that replaces the list of network
+ * Output only. [Output Only] An informational warning that replaces the list of network
* endpoint groups when the list is empty.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
@@ -36,10 +36,10 @@ class NetworkEndpointGroupsScopedList extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type array<\Google\Cloud\Compute\V1\NetworkEndpointGroup>|\Google\Protobuf\Internal\RepeatedField $network_endpoint_groups
- * [Output Only] The list ofnetwork
+ * Output only. [Output Only] The list ofnetwork
* endpoint groups that are contained in this scope.
* @type \Google\Cloud\Compute\V1\Warning $warning
- * [Output Only] An informational warning that replaces the list of network
+ * Output only. [Output Only] An informational warning that replaces the list of network
* endpoint groups when the list is empty.
* }
*/
@@ -49,7 +49,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] The list ofnetwork
+ * Output only. [Output Only] The list ofnetwork
* endpoint groups that are contained in this scope.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.NetworkEndpointGroup network_endpoint_groups = 29346733;
@@ -61,7 +61,7 @@ public function getNetworkEndpointGroups()
}
/**
- * [Output Only] The list ofnetwork
+ * Output only. [Output Only] The list ofnetwork
* endpoint groups that are contained in this scope.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.NetworkEndpointGroup network_endpoint_groups = 29346733;
@@ -77,7 +77,7 @@ public function setNetworkEndpointGroups($var)
}
/**
- * [Output Only] An informational warning that replaces the list of network
+ * Output only. [Output Only] An informational warning that replaces the list of network
* endpoint groups when the list is empty.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
@@ -99,7 +99,7 @@ public function clearWarning()
}
/**
- * [Output Only] An informational warning that replaces the list of network
+ * Output only. [Output Only] An informational warning that replaces the list of network
* endpoint groups when the list is empty.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
diff --git a/Compute/src/V1/NetworkEndpointWithHealthStatus.php b/Compute/src/V1/NetworkEndpointWithHealthStatus.php
index 713281d68be8..0eccf79a8c4d 100644
--- a/Compute/src/V1/NetworkEndpointWithHealthStatus.php
+++ b/Compute/src/V1/NetworkEndpointWithHealthStatus.php
@@ -15,7 +15,7 @@
class NetworkEndpointWithHealthStatus extends \Google\Protobuf\Internal\Message
{
/**
- * [Output only] The health status of network endpoint.
+ * Output only. [Output only] The health status of network endpoint.
* Optional. Displayed only if the network endpoint has centralized health
* checking configured.
*
@@ -23,7 +23,7 @@ class NetworkEndpointWithHealthStatus extends \Google\Protobuf\Internal\Message
*/
private $healths;
/**
- * [Output only] The network endpoint.
+ * Output only. [Output only] The network endpoint.
*
* Generated from protobuf field optional .google.cloud.compute.v1.NetworkEndpoint network_endpoint = 56789126;
*/
@@ -36,11 +36,11 @@ class NetworkEndpointWithHealthStatus extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type array<\Google\Cloud\Compute\V1\HealthStatusForNetworkEndpoint>|\Google\Protobuf\Internal\RepeatedField $healths
- * [Output only] The health status of network endpoint.
+ * Output only. [Output only] The health status of network endpoint.
* Optional. Displayed only if the network endpoint has centralized health
* checking configured.
* @type \Google\Cloud\Compute\V1\NetworkEndpoint $network_endpoint
- * [Output only] The network endpoint.
+ * Output only. [Output only] The network endpoint.
* }
*/
public function __construct($data = NULL) {
@@ -49,7 +49,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output only] The health status of network endpoint.
+ * Output only. [Output only] The health status of network endpoint.
* Optional. Displayed only if the network endpoint has centralized health
* checking configured.
*
@@ -62,7 +62,7 @@ public function getHealths()
}
/**
- * [Output only] The health status of network endpoint.
+ * Output only. [Output only] The health status of network endpoint.
* Optional. Displayed only if the network endpoint has centralized health
* checking configured.
*
@@ -79,7 +79,7 @@ public function setHealths($var)
}
/**
- * [Output only] The network endpoint.
+ * Output only. [Output only] The network endpoint.
*
* Generated from protobuf field optional .google.cloud.compute.v1.NetworkEndpoint network_endpoint = 56789126;
* @return \Google\Cloud\Compute\V1\NetworkEndpoint|null
@@ -100,7 +100,7 @@ public function clearNetworkEndpoint()
}
/**
- * [Output only] The network endpoint.
+ * Output only. [Output only] The network endpoint.
*
* Generated from protobuf field optional .google.cloud.compute.v1.NetworkEndpoint network_endpoint = 56789126;
* @param \Google\Cloud\Compute\V1\NetworkEndpoint $var
diff --git a/Compute/src/V1/NetworkFirewallPolicyAggregatedList.php b/Compute/src/V1/NetworkFirewallPolicyAggregatedList.php
index bf38bcaf56e4..ca541b54e159 100644
--- a/Compute/src/V1/NetworkFirewallPolicyAggregatedList.php
+++ b/Compute/src/V1/NetworkFirewallPolicyAggregatedList.php
@@ -27,7 +27,7 @@ class NetworkFirewallPolicyAggregatedList extends \Google\Protobuf\Internal\Mess
*/
private $items;
/**
- * [Output Only] Type of resource. Alwayscompute#networkFirewallPoliciesAggregatedList for lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#networkFirewallPoliciesAggregatedList for lists of
* network firewall policies.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -44,13 +44,13 @@ class NetworkFirewallPolicyAggregatedList extends \Google\Protobuf\Internal\Mess
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
@@ -73,7 +73,7 @@ class NetworkFirewallPolicyAggregatedList extends \Google\Protobuf\Internal\Mess
* @type array|\Google\Protobuf\Internal\MapField $items
* A list of FirewallPoliciesScopedList resources.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#networkFirewallPoliciesAggregatedList for lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#networkFirewallPoliciesAggregatedList for lists of
* network firewall policies.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -82,9 +82,9 @@ class NetworkFirewallPolicyAggregatedList extends \Google\Protobuf\Internal\Mess
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -157,7 +157,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#networkFirewallPoliciesAggregatedList for lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#networkFirewallPoliciesAggregatedList for lists of
* network firewall policies.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -179,7 +179,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#networkFirewallPoliciesAggregatedList for lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#networkFirewallPoliciesAggregatedList for lists of
* network firewall policies.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -239,7 +239,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -260,7 +260,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -275,7 +275,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -286,7 +286,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/NetworkInterface.php b/Compute/src/V1/NetworkInterface.php
index 776322512e2d..a2a8c7386ca1 100644
--- a/Compute/src/V1/NetworkInterface.php
+++ b/Compute/src/V1/NetworkInterface.php
@@ -63,7 +63,7 @@ class NetworkInterface extends \Google\Protobuf\Internal\Message
*/
private $ipv6_access_configs;
/**
- * [Output Only] One of EXTERNAL, INTERNAL to indicate whether the IP can be
+ * Output only. [Output Only] One of EXTERNAL, INTERNAL to indicate whether the IP can be
* accessed from the Internet. This field is always inherited from its
* subnetwork.
* Valid only if stackType is IPV4_IPV6.
@@ -82,7 +82,7 @@ class NetworkInterface extends \Google\Protobuf\Internal\Message
*/
protected $ipv6_address = null;
/**
- * [Output Only] Type of the resource. Alwayscompute#networkInterface for network interfaces.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#networkInterface for network interfaces.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -211,7 +211,7 @@ class NetworkInterface extends \Google\Protobuf\Internal\Message
* is no ipv6AccessConfig specified, then this instance will
* have no external IPv6 Internet access.
* @type string $ipv6_access_type
- * [Output Only] One of EXTERNAL, INTERNAL to indicate whether the IP can be
+ * Output only. [Output Only] One of EXTERNAL, INTERNAL to indicate whether the IP can be
* accessed from the Internet. This field is always inherited from its
* subnetwork.
* Valid only if stackType is IPV4_IPV6.
@@ -222,7 +222,7 @@ class NetworkInterface extends \Google\Protobuf\Internal\Message
* as the instance's zone. If not specified, Google Cloud will automatically
* assign an internal IPv6 address from the instance's subnetwork.
* @type string $kind
- * [Output Only] Type of the resource. Alwayscompute#networkInterface for network interfaces.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#networkInterface for network interfaces.
* @type string $name
* [Output Only] The name of the network interface, which is generated by the
* server. For a VM, the network interface uses the nicN naming
@@ -492,7 +492,7 @@ public function setIpv6AccessConfigs($var)
}
/**
- * [Output Only] One of EXTERNAL, INTERNAL to indicate whether the IP can be
+ * Output only. [Output Only] One of EXTERNAL, INTERNAL to indicate whether the IP can be
* accessed from the Internet. This field is always inherited from its
* subnetwork.
* Valid only if stackType is IPV4_IPV6.
@@ -517,7 +517,7 @@ public function clearIpv6AccessType()
}
/**
- * [Output Only] One of EXTERNAL, INTERNAL to indicate whether the IP can be
+ * Output only. [Output Only] One of EXTERNAL, INTERNAL to indicate whether the IP can be
* accessed from the Internet. This field is always inherited from its
* subnetwork.
* Valid only if stackType is IPV4_IPV6.
@@ -578,7 +578,7 @@ public function setIpv6Address($var)
}
/**
- * [Output Only] Type of the resource. Alwayscompute#networkInterface for network interfaces.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#networkInterface for network interfaces.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -599,7 +599,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Alwayscompute#networkInterface for network interfaces.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#networkInterface for network interfaces.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
diff --git a/Compute/src/V1/NetworkInterface/Ipv6AccessType.php b/Compute/src/V1/NetworkInterface/Ipv6AccessType.php
index 7c89feba38ed..58dc5ceb0b6a 100644
--- a/Compute/src/V1/NetworkInterface/Ipv6AccessType.php
+++ b/Compute/src/V1/NetworkInterface/Ipv6AccessType.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] One of EXTERNAL, INTERNAL to indicate whether the IP can be
+ * Output only. [Output Only] One of EXTERNAL, INTERNAL to indicate whether the IP can be
* accessed from the Internet. This field is always inherited from its
* subnetwork.
* Valid only if stackType is IPV4_IPV6.
diff --git a/Compute/src/V1/NetworkList.php b/Compute/src/V1/NetworkList.php
index bca0e11c3eea..7e7f9a9fb495 100644
--- a/Compute/src/V1/NetworkList.php
+++ b/Compute/src/V1/NetworkList.php
@@ -28,7 +28,7 @@ class NetworkList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Always compute#networkList for
+ * Output only. [Output Only] Type of resource. Always compute#networkList for
* lists of networks.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -45,7 +45,7 @@ class NetworkList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -68,7 +68,7 @@ class NetworkList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\Network>|\Google\Protobuf\Internal\RepeatedField $items
* A list of Network resources.
* @type string $kind
- * [Output Only] Type of resource. Always compute#networkList for
+ * Output only. [Output Only] Type of resource. Always compute#networkList for
* lists of networks.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -77,7 +77,7 @@ class NetworkList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -150,7 +150,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Always compute#networkList for
+ * Output only. [Output Only] Type of resource. Always compute#networkList for
* lists of networks.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -172,7 +172,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Always compute#networkList for
+ * Output only. [Output Only] Type of resource. Always compute#networkList for
* lists of networks.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -232,7 +232,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -253,7 +253,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/NetworkPeering.php b/Compute/src/V1/NetworkPeering.php
index 366719c4a647..72a3a713cf3d 100644
--- a/Compute/src/V1/NetworkPeering.php
+++ b/Compute/src/V1/NetworkPeering.php
@@ -28,7 +28,7 @@ class NetworkPeering extends \Google\Protobuf\Internal\Message
*/
protected $auto_create_routes = null;
/**
- * [Output Only] The effective state of the peering connection
+ * Output only. [Output Only] The effective state of the peering connection
* as a whole.
*
* Generated from protobuf field optional .google.cloud.compute.v1.NetworkPeeringConnectionStatus connection_status = 525629555;
@@ -97,7 +97,7 @@ class NetworkPeering extends \Google\Protobuf\Internal\Message
*/
protected $network = null;
/**
- * [Output Only] Maximum Transmission Unit in bytes of the peer network.
+ * Output only. [Output Only] Maximum Transmission Unit in bytes of the peer network.
*
* Generated from protobuf field optional int32 peer_mtu = 69584721;
*/
@@ -111,7 +111,7 @@ class NetworkPeering extends \Google\Protobuf\Internal\Message
*/
protected $stack_type = null;
/**
- * [Output Only] State for the peering, either `ACTIVE` or `INACTIVE`. The
+ * Output only. [Output Only] State for the peering, either `ACTIVE` or `INACTIVE`. The
* peering is `ACTIVE` when there's a matching configuration in the peer
* network.
* Check the State enum for the list of possible values.
@@ -120,7 +120,7 @@ class NetworkPeering extends \Google\Protobuf\Internal\Message
*/
protected $state = null;
/**
- * [Output Only] Details about the current state of the peering.
+ * Output only. [Output Only] Details about the current state of the peering.
*
* Generated from protobuf field optional string state_details = 95566996;
*/
@@ -147,7 +147,7 @@ class NetworkPeering extends \Google\Protobuf\Internal\Message
* be true since Google Compute Engine will automatically create and manage
* subnetwork routes between two networks when peering state isACTIVE.
* @type \Google\Cloud\Compute\V1\NetworkPeeringConnectionStatus $connection_status
- * [Output Only] The effective state of the peering connection
+ * Output only. [Output Only] The effective state of the peering connection
* as a whole.
* @type bool $exchange_subnet_routes
* Indicates whether full mesh connectivity is created and managed
@@ -184,18 +184,18 @@ class NetworkPeering extends \Google\Protobuf\Internal\Message
* contain project, it is assumed that the peer network is in the same project
* as the current network.
* @type int $peer_mtu
- * [Output Only] Maximum Transmission Unit in bytes of the peer network.
+ * Output only. [Output Only] Maximum Transmission Unit in bytes of the peer network.
* @type string $stack_type
* Which IP version(s) of traffic and routes are allowed to be imported or
* exported between peer networks. The default value is IPV4_ONLY.
* Check the StackType enum for the list of possible values.
* @type string $state
- * [Output Only] State for the peering, either `ACTIVE` or `INACTIVE`. The
+ * Output only. [Output Only] State for the peering, either `ACTIVE` or `INACTIVE`. The
* peering is `ACTIVE` when there's a matching configuration in the peer
* network.
* Check the State enum for the list of possible values.
* @type string $state_details
- * [Output Only] Details about the current state of the peering.
+ * Output only. [Output Only] Details about the current state of the peering.
* @type string $update_strategy
* The update strategy determines the semantics for updates and deletes to the
* peering connection configuration.
@@ -252,7 +252,7 @@ public function setAutoCreateRoutes($var)
}
/**
- * [Output Only] The effective state of the peering connection
+ * Output only. [Output Only] The effective state of the peering connection
* as a whole.
*
* Generated from protobuf field optional .google.cloud.compute.v1.NetworkPeeringConnectionStatus connection_status = 525629555;
@@ -274,7 +274,7 @@ public function clearConnectionStatus()
}
/**
- * [Output Only] The effective state of the peering connection
+ * Output only. [Output Only] The effective state of the peering connection
* as a whole.
*
* Generated from protobuf field optional .google.cloud.compute.v1.NetworkPeeringConnectionStatus connection_status = 525629555;
@@ -582,7 +582,7 @@ public function setNetwork($var)
}
/**
- * [Output Only] Maximum Transmission Unit in bytes of the peer network.
+ * Output only. [Output Only] Maximum Transmission Unit in bytes of the peer network.
*
* Generated from protobuf field optional int32 peer_mtu = 69584721;
* @return int
@@ -603,7 +603,7 @@ public function clearPeerMtu()
}
/**
- * [Output Only] Maximum Transmission Unit in bytes of the peer network.
+ * Output only. [Output Only] Maximum Transmission Unit in bytes of the peer network.
*
* Generated from protobuf field optional int32 peer_mtu = 69584721;
* @param int $var
@@ -658,7 +658,7 @@ public function setStackType($var)
}
/**
- * [Output Only] State for the peering, either `ACTIVE` or `INACTIVE`. The
+ * Output only. [Output Only] State for the peering, either `ACTIVE` or `INACTIVE`. The
* peering is `ACTIVE` when there's a matching configuration in the peer
* network.
* Check the State enum for the list of possible values.
@@ -682,7 +682,7 @@ public function clearState()
}
/**
- * [Output Only] State for the peering, either `ACTIVE` or `INACTIVE`. The
+ * Output only. [Output Only] State for the peering, either `ACTIVE` or `INACTIVE`. The
* peering is `ACTIVE` when there's a matching configuration in the peer
* network.
* Check the State enum for the list of possible values.
@@ -700,7 +700,7 @@ public function setState($var)
}
/**
- * [Output Only] Details about the current state of the peering.
+ * Output only. [Output Only] Details about the current state of the peering.
*
* Generated from protobuf field optional string state_details = 95566996;
* @return string
@@ -721,7 +721,7 @@ public function clearStateDetails()
}
/**
- * [Output Only] Details about the current state of the peering.
+ * Output only. [Output Only] Details about the current state of the peering.
*
* Generated from protobuf field optional string state_details = 95566996;
* @param string $var
diff --git a/Compute/src/V1/NetworkPeering/State.php b/Compute/src/V1/NetworkPeering/State.php
index 13710683f047..f246a08ea7c9 100644
--- a/Compute/src/V1/NetworkPeering/State.php
+++ b/Compute/src/V1/NetworkPeering/State.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] State for the peering, either `ACTIVE` or `INACTIVE`. The
+ * Output only. [Output Only] State for the peering, either `ACTIVE` or `INACTIVE`. The
* peering is `ACTIVE` when there's a matching configuration in the peer
* network.
*
diff --git a/Compute/src/V1/NetworkProfile.php b/Compute/src/V1/NetworkProfile.php
index 4c2a3bcd5526..918bfe35480a 100644
--- a/Compute/src/V1/NetworkProfile.php
+++ b/Compute/src/V1/NetworkProfile.php
@@ -16,63 +16,63 @@
class NetworkProfile extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
*/
protected $creation_timestamp = null;
/**
- * [Output Only] An optional description of this resource.
+ * Output only. [Output Only] An optional description of this resource.
*
* Generated from protobuf field optional string description = 422937596;
*/
protected $description = null;
/**
- * [Output Only] Features supported by the network.
+ * Output only. [Output Only] Features supported by the network.
*
* Generated from protobuf field optional .google.cloud.compute.v1.NetworkProfileNetworkFeatures features = 246211645;
*/
protected $features = null;
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
*/
protected $id = null;
/**
- * [Output Only] Type of the resource. Alwayscompute#networkProfile for network profiles.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#networkProfile for network profiles.
*
* Generated from protobuf field optional string kind = 3292052;
*/
protected $kind = null;
/**
- * [Output Only] Location to which the network is restricted.
+ * Output only. [Output Only] Location to which the network is restricted.
*
* Generated from protobuf field optional .google.cloud.compute.v1.NetworkProfileLocation location = 290430901;
*/
protected $location = null;
/**
- * [Output Only] Name of the resource.
+ * Output only. [Output Only] Name of the resource.
*
* Generated from protobuf field optional string name = 3373707;
*/
protected $name = null;
/**
- * [Output Only] Type of the network profile.
+ * Output only. [Output Only] Type of the network profile.
*
* Generated from protobuf field optional .google.cloud.compute.v1.NetworkProfileProfileType profile_type = 150167568;
*/
protected $profile_type = null;
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Server-defined URL for this resource with the resource id.
+ * Output only. [Output Only] Server-defined URL for this resource with the resource id.
*
* Generated from protobuf field optional string self_link_with_id = 44520962;
*/
@@ -89,27 +89,27 @@ class NetworkProfile extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $description
- * [Output Only] An optional description of this resource.
+ * Output only. [Output Only] An optional description of this resource.
* @type \Google\Cloud\Compute\V1\NetworkProfileNetworkFeatures $features
- * [Output Only] Features supported by the network.
+ * Output only. [Output Only] Features supported by the network.
* @type int|string $id
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type string $kind
- * [Output Only] Type of the resource. Alwayscompute#networkProfile for network profiles.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#networkProfile for network profiles.
* @type \Google\Cloud\Compute\V1\NetworkProfileLocation $location
- * [Output Only] Location to which the network is restricted.
+ * Output only. [Output Only] Location to which the network is restricted.
* @type string $name
- * [Output Only] Name of the resource.
+ * Output only. [Output Only] Name of the resource.
* @type \Google\Cloud\Compute\V1\NetworkProfileProfileType $profile_type
- * [Output Only] Type of the network profile.
+ * Output only. [Output Only] Type of the network profile.
* @type string $self_link
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
* @type string $self_link_with_id
- * [Output Only] Server-defined URL for this resource with the resource id.
+ * Output only. [Output Only] Server-defined URL for this resource with the resource id.
* @type string $zone
* }
*/
@@ -119,7 +119,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -141,7 +141,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -157,7 +157,7 @@ public function setCreationTimestamp($var)
}
/**
- * [Output Only] An optional description of this resource.
+ * Output only. [Output Only] An optional description of this resource.
*
* Generated from protobuf field optional string description = 422937596;
* @return string
@@ -178,7 +178,7 @@ public function clearDescription()
}
/**
- * [Output Only] An optional description of this resource.
+ * Output only. [Output Only] An optional description of this resource.
*
* Generated from protobuf field optional string description = 422937596;
* @param string $var
@@ -193,7 +193,7 @@ public function setDescription($var)
}
/**
- * [Output Only] Features supported by the network.
+ * Output only. [Output Only] Features supported by the network.
*
* Generated from protobuf field optional .google.cloud.compute.v1.NetworkProfileNetworkFeatures features = 246211645;
* @return \Google\Cloud\Compute\V1\NetworkProfileNetworkFeatures|null
@@ -214,7 +214,7 @@ public function clearFeatures()
}
/**
- * [Output Only] Features supported by the network.
+ * Output only. [Output Only] Features supported by the network.
*
* Generated from protobuf field optional .google.cloud.compute.v1.NetworkProfileNetworkFeatures features = 246211645;
* @param \Google\Cloud\Compute\V1\NetworkProfileNetworkFeatures $var
@@ -229,7 +229,7 @@ public function setFeatures($var)
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -251,7 +251,7 @@ public function clearId()
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -267,7 +267,7 @@ public function setId($var)
}
/**
- * [Output Only] Type of the resource. Alwayscompute#networkProfile for network profiles.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#networkProfile for network profiles.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -288,7 +288,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Alwayscompute#networkProfile for network profiles.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#networkProfile for network profiles.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -303,7 +303,7 @@ public function setKind($var)
}
/**
- * [Output Only] Location to which the network is restricted.
+ * Output only. [Output Only] Location to which the network is restricted.
*
* Generated from protobuf field optional .google.cloud.compute.v1.NetworkProfileLocation location = 290430901;
* @return \Google\Cloud\Compute\V1\NetworkProfileLocation|null
@@ -324,7 +324,7 @@ public function clearLocation()
}
/**
- * [Output Only] Location to which the network is restricted.
+ * Output only. [Output Only] Location to which the network is restricted.
*
* Generated from protobuf field optional .google.cloud.compute.v1.NetworkProfileLocation location = 290430901;
* @param \Google\Cloud\Compute\V1\NetworkProfileLocation $var
@@ -339,7 +339,7 @@ public function setLocation($var)
}
/**
- * [Output Only] Name of the resource.
+ * Output only. [Output Only] Name of the resource.
*
* Generated from protobuf field optional string name = 3373707;
* @return string
@@ -360,7 +360,7 @@ public function clearName()
}
/**
- * [Output Only] Name of the resource.
+ * Output only. [Output Only] Name of the resource.
*
* Generated from protobuf field optional string name = 3373707;
* @param string $var
@@ -375,7 +375,7 @@ public function setName($var)
}
/**
- * [Output Only] Type of the network profile.
+ * Output only. [Output Only] Type of the network profile.
*
* Generated from protobuf field optional .google.cloud.compute.v1.NetworkProfileProfileType profile_type = 150167568;
* @return \Google\Cloud\Compute\V1\NetworkProfileProfileType|null
@@ -396,7 +396,7 @@ public function clearProfileType()
}
/**
- * [Output Only] Type of the network profile.
+ * Output only. [Output Only] Type of the network profile.
*
* Generated from protobuf field optional .google.cloud.compute.v1.NetworkProfileProfileType profile_type = 150167568;
* @param \Google\Cloud\Compute\V1\NetworkProfileProfileType $var
@@ -411,7 +411,7 @@ public function setProfileType($var)
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -432,7 +432,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -447,7 +447,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Server-defined URL for this resource with the resource id.
+ * Output only. [Output Only] Server-defined URL for this resource with the resource id.
*
* Generated from protobuf field optional string self_link_with_id = 44520962;
* @return string
@@ -468,7 +468,7 @@ public function clearSelfLinkWithId()
}
/**
- * [Output Only] Server-defined URL for this resource with the resource id.
+ * Output only. [Output Only] Server-defined URL for this resource with the resource id.
*
* Generated from protobuf field optional string self_link_with_id = 44520962;
* @param string $var
diff --git a/Compute/src/V1/NetworkProfileNetworkFeatures.php b/Compute/src/V1/NetworkProfileNetworkFeatures.php
index 7bf8d8eb7993..877a78ceaa8e 100644
--- a/Compute/src/V1/NetworkProfileNetworkFeatures.php
+++ b/Compute/src/V1/NetworkProfileNetworkFeatures.php
@@ -208,14 +208,14 @@ class NetworkProfileNetworkFeatures extends \Google\Protobuf\Internal\Message
*/
private $subnet_stack_types;
/**
- * Specifies which subnetwork purposes are supported.
+ * Output only. Specifies which subnetwork purposes are supported.
* Check the SubnetworkPurposes enum for the list of possible values.
*
* Generated from protobuf field repeated string subnetwork_purposes = 528240710;
*/
private $subnetwork_purposes;
/**
- * Specifies which subnetwork stack types are supported.
+ * Output only. Specifies which subnetwork stack types are supported.
* Check the SubnetworkStackTypes enum for the list of possible values.
*
* Generated from protobuf field repeated string subnetwork_stack_types = 436827441;
@@ -321,10 +321,10 @@ class NetworkProfileNetworkFeatures extends \Google\Protobuf\Internal\Message
* Specifies which subnetwork stack types are supported.
* Check the SubnetStackTypes enum for the list of possible values.
* @type array|\Google\Protobuf\Internal\RepeatedField $subnetwork_purposes
- * Specifies which subnetwork purposes are supported.
+ * Output only. Specifies which subnetwork purposes are supported.
* Check the SubnetworkPurposes enum for the list of possible values.
* @type array|\Google\Protobuf\Internal\RepeatedField $subnetwork_stack_types
- * Specifies which subnetwork stack types are supported.
+ * Output only. Specifies which subnetwork stack types are supported.
* Check the SubnetworkStackTypes enum for the list of possible values.
* @type string $unicast
* Specifies which type of unicast is supported.
@@ -1331,7 +1331,7 @@ public function setSubnetStackTypes($var)
}
/**
- * Specifies which subnetwork purposes are supported.
+ * Output only. Specifies which subnetwork purposes are supported.
* Check the SubnetworkPurposes enum for the list of possible values.
*
* Generated from protobuf field repeated string subnetwork_purposes = 528240710;
@@ -1343,7 +1343,7 @@ public function getSubnetworkPurposes()
}
/**
- * Specifies which subnetwork purposes are supported.
+ * Output only. Specifies which subnetwork purposes are supported.
* Check the SubnetworkPurposes enum for the list of possible values.
*
* Generated from protobuf field repeated string subnetwork_purposes = 528240710;
@@ -1359,7 +1359,7 @@ public function setSubnetworkPurposes($var)
}
/**
- * Specifies which subnetwork stack types are supported.
+ * Output only. Specifies which subnetwork stack types are supported.
* Check the SubnetworkStackTypes enum for the list of possible values.
*
* Generated from protobuf field repeated string subnetwork_stack_types = 436827441;
@@ -1371,7 +1371,7 @@ public function getSubnetworkStackTypes()
}
/**
- * Specifies which subnetwork stack types are supported.
+ * Output only. Specifies which subnetwork stack types are supported.
* Check the SubnetworkStackTypes enum for the list of possible values.
*
* Generated from protobuf field repeated string subnetwork_stack_types = 436827441;
diff --git a/Compute/src/V1/NetworkProfilesListResponse.php b/Compute/src/V1/NetworkProfilesListResponse.php
index 3bca79a80805..59290f828eb2 100644
--- a/Compute/src/V1/NetworkProfilesListResponse.php
+++ b/Compute/src/V1/NetworkProfilesListResponse.php
@@ -32,7 +32,7 @@ class NetworkProfilesListResponse extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Alwayscompute#networkProfileList for network profiles.
+ * Output only. [Output Only] Type of resource. Alwayscompute#networkProfileList for network profiles.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -50,13 +50,13 @@ class NetworkProfilesListResponse extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* end_interface: MixerListResponseWithEtagBuilder
*
* Generated from protobuf field repeated string unreachables = 243372063;
@@ -81,7 +81,7 @@ class NetworkProfilesListResponse extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\NetworkProfile>|\Google\Protobuf\Internal\RepeatedField $items
* A list of NetworkProfile resources.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#networkProfileList for network profiles.
+ * Output only. [Output Only] Type of resource. Alwayscompute#networkProfileList for network profiles.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value
@@ -91,9 +91,9 @@ class NetworkProfilesListResponse extends \Google\Protobuf\Internal\Message
* to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* end_interface: MixerListResponseWithEtagBuilder
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
@@ -199,7 +199,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#networkProfileList for network profiles.
+ * Output only. [Output Only] Type of resource. Alwayscompute#networkProfileList for network profiles.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -220,7 +220,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#networkProfileList for network profiles.
+ * Output only. [Output Only] Type of resource. Alwayscompute#networkProfileList for network profiles.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -283,7 +283,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -304,7 +304,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -319,7 +319,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* end_interface: MixerListResponseWithEtagBuilder
*
* Generated from protobuf field repeated string unreachables = 243372063;
@@ -331,7 +331,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* end_interface: MixerListResponseWithEtagBuilder
*
* Generated from protobuf field repeated string unreachables = 243372063;
diff --git a/Compute/src/V1/NetworkRoutingConfig.php b/Compute/src/V1/NetworkRoutingConfig.php
index 81891f15cadc..7c1d43de9a62 100644
--- a/Compute/src/V1/NetworkRoutingConfig.php
+++ b/Compute/src/V1/NetworkRoutingConfig.php
@@ -44,14 +44,14 @@ class NetworkRoutingConfig extends \Google\Protobuf\Internal\Message
*/
protected $bgp_inter_region_cost = null;
/**
- * [Output Only] Effective value of the bgp_always_compare_med
+ * Output only. [Output Only] Effective value of the bgp_always_compare_med
* field.
*
* Generated from protobuf field optional bool effective_bgp_always_compare_med = 214661838;
*/
protected $effective_bgp_always_compare_med = null;
/**
- * [Output Only] Effective value of the bgp_inter_region_cost
+ * Output only. [Output Only] Effective value of the bgp_inter_region_cost
* field.
* Check the EffectiveBgpInterRegionCost enum for the list of possible values.
*
@@ -90,10 +90,10 @@ class NetworkRoutingConfig extends \Google\Protobuf\Internal\Message
* selection algorithm. Can be DEFAULT orADD_COST_TO_MED.
* Check the BgpInterRegionCost enum for the list of possible values.
* @type bool $effective_bgp_always_compare_med
- * [Output Only] Effective value of the bgp_always_compare_med
+ * Output only. [Output Only] Effective value of the bgp_always_compare_med
* field.
* @type string $effective_bgp_inter_region_cost
- * [Output Only] Effective value of the bgp_inter_region_cost
+ * Output only. [Output Only] Effective value of the bgp_inter_region_cost
* field.
* Check the EffectiveBgpInterRegionCost enum for the list of possible values.
* @type string $routing_mode
@@ -234,7 +234,7 @@ public function setBgpInterRegionCost($var)
}
/**
- * [Output Only] Effective value of the bgp_always_compare_med
+ * Output only. [Output Only] Effective value of the bgp_always_compare_med
* field.
*
* Generated from protobuf field optional bool effective_bgp_always_compare_med = 214661838;
@@ -256,7 +256,7 @@ public function clearEffectiveBgpAlwaysCompareMed()
}
/**
- * [Output Only] Effective value of the bgp_always_compare_med
+ * Output only. [Output Only] Effective value of the bgp_always_compare_med
* field.
*
* Generated from protobuf field optional bool effective_bgp_always_compare_med = 214661838;
@@ -272,7 +272,7 @@ public function setEffectiveBgpAlwaysCompareMed($var)
}
/**
- * [Output Only] Effective value of the bgp_inter_region_cost
+ * Output only. [Output Only] Effective value of the bgp_inter_region_cost
* field.
* Check the EffectiveBgpInterRegionCost enum for the list of possible values.
*
@@ -295,7 +295,7 @@ public function clearEffectiveBgpInterRegionCost()
}
/**
- * [Output Only] Effective value of the bgp_inter_region_cost
+ * Output only. [Output Only] Effective value of the bgp_inter_region_cost
* field.
* Check the EffectiveBgpInterRegionCost enum for the list of possible values.
*
diff --git a/Compute/src/V1/NetworkRoutingConfig/EffectiveBgpInterRegionCost.php b/Compute/src/V1/NetworkRoutingConfig/EffectiveBgpInterRegionCost.php
index b8cac967bfe0..714177c5f3d4 100644
--- a/Compute/src/V1/NetworkRoutingConfig/EffectiveBgpInterRegionCost.php
+++ b/Compute/src/V1/NetworkRoutingConfig/EffectiveBgpInterRegionCost.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] Effective value of the bgp_inter_region_cost
+ * Output only. [Output Only] Effective value of the bgp_inter_region_cost
* field.
* Additional supported values which may be not listed in the enum directly due to technical reasons:
* ADD_COST_TO_MED
diff --git a/Compute/src/V1/NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy.php b/Compute/src/V1/NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy.php
index 9a2b866d30ba..3b6f90d4fdd4 100644
--- a/Compute/src/V1/NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy.php
+++ b/Compute/src/V1/NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy.php
@@ -15,26 +15,26 @@
class NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Deprecated, please use short name instead. The display name
+ * Output only. [Output Only] Deprecated, please use short name instead. The display name
* of the firewall policy.
*
* Generated from protobuf field optional string display_name = 4473832;
*/
protected $display_name = null;
/**
- * [Output Only] The name of the firewall policy.
+ * Output only. [Output Only] The name of the firewall policy.
*
* Generated from protobuf field optional string name = 3373707;
*/
protected $name = null;
/**
- * [Output Only] The packet mirroring rules that apply to the network.
+ * Output only. [Output Only] The packet mirroring rules that apply to the network.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.FirewallPolicyRule packet_mirroring_rules = 531644356;
*/
private $packet_mirroring_rules;
/**
- * [Output only] Priority of firewall policy association. Not applicable for
+ * Output only. [Output only] Priority of firewall policy association. Not applicable for
* type=HIERARCHY.
*
* Generated from protobuf field optional int32 priority = 445151652;
@@ -47,13 +47,13 @@ class NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy extends \Goog
*/
private $rules;
/**
- * [Output Only] The short name of the firewall policy.
+ * Output only. [Output Only] The short name of the firewall policy.
*
* Generated from protobuf field optional string short_name = 492051566;
*/
protected $short_name = null;
/**
- * [Output Only] The type of the firewall policy.
+ * Output only. [Output Only] The type of the firewall policy.
* Check the Type enum for the list of possible values.
*
* Generated from protobuf field optional string type = 3575610;
@@ -67,21 +67,21 @@ class NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy extends \Goog
* Optional. Data for populating the Message object.
*
* @type string $display_name
- * [Output Only] Deprecated, please use short name instead. The display name
+ * Output only. [Output Only] Deprecated, please use short name instead. The display name
* of the firewall policy.
* @type string $name
- * [Output Only] The name of the firewall policy.
+ * Output only. [Output Only] The name of the firewall policy.
* @type array<\Google\Cloud\Compute\V1\FirewallPolicyRule>|\Google\Protobuf\Internal\RepeatedField $packet_mirroring_rules
- * [Output Only] The packet mirroring rules that apply to the network.
+ * Output only. [Output Only] The packet mirroring rules that apply to the network.
* @type int $priority
- * [Output only] Priority of firewall policy association. Not applicable for
+ * Output only. [Output only] Priority of firewall policy association. Not applicable for
* type=HIERARCHY.
* @type array<\Google\Cloud\Compute\V1\FirewallPolicyRule>|\Google\Protobuf\Internal\RepeatedField $rules
* [Output Only] The rules that apply to the network.
* @type string $short_name
- * [Output Only] The short name of the firewall policy.
+ * Output only. [Output Only] The short name of the firewall policy.
* @type string $type
- * [Output Only] The type of the firewall policy.
+ * Output only. [Output Only] The type of the firewall policy.
* Check the Type enum for the list of possible values.
* }
*/
@@ -91,7 +91,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Deprecated, please use short name instead. The display name
+ * Output only. [Output Only] Deprecated, please use short name instead. The display name
* of the firewall policy.
*
* Generated from protobuf field optional string display_name = 4473832;
@@ -113,7 +113,7 @@ public function clearDisplayName()
}
/**
- * [Output Only] Deprecated, please use short name instead. The display name
+ * Output only. [Output Only] Deprecated, please use short name instead. The display name
* of the firewall policy.
*
* Generated from protobuf field optional string display_name = 4473832;
@@ -129,7 +129,7 @@ public function setDisplayName($var)
}
/**
- * [Output Only] The name of the firewall policy.
+ * Output only. [Output Only] The name of the firewall policy.
*
* Generated from protobuf field optional string name = 3373707;
* @return string
@@ -150,7 +150,7 @@ public function clearName()
}
/**
- * [Output Only] The name of the firewall policy.
+ * Output only. [Output Only] The name of the firewall policy.
*
* Generated from protobuf field optional string name = 3373707;
* @param string $var
@@ -165,7 +165,7 @@ public function setName($var)
}
/**
- * [Output Only] The packet mirroring rules that apply to the network.
+ * Output only. [Output Only] The packet mirroring rules that apply to the network.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.FirewallPolicyRule packet_mirroring_rules = 531644356;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -176,7 +176,7 @@ public function getPacketMirroringRules()
}
/**
- * [Output Only] The packet mirroring rules that apply to the network.
+ * Output only. [Output Only] The packet mirroring rules that apply to the network.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.FirewallPolicyRule packet_mirroring_rules = 531644356;
* @param array<\Google\Cloud\Compute\V1\FirewallPolicyRule>|\Google\Protobuf\Internal\RepeatedField $var
@@ -191,7 +191,7 @@ public function setPacketMirroringRules($var)
}
/**
- * [Output only] Priority of firewall policy association. Not applicable for
+ * Output only. [Output only] Priority of firewall policy association. Not applicable for
* type=HIERARCHY.
*
* Generated from protobuf field optional int32 priority = 445151652;
@@ -213,7 +213,7 @@ public function clearPriority()
}
/**
- * [Output only] Priority of firewall policy association. Not applicable for
+ * Output only. [Output only] Priority of firewall policy association. Not applicable for
* type=HIERARCHY.
*
* Generated from protobuf field optional int32 priority = 445151652;
@@ -255,7 +255,7 @@ public function setRules($var)
}
/**
- * [Output Only] The short name of the firewall policy.
+ * Output only. [Output Only] The short name of the firewall policy.
*
* Generated from protobuf field optional string short_name = 492051566;
* @return string
@@ -276,7 +276,7 @@ public function clearShortName()
}
/**
- * [Output Only] The short name of the firewall policy.
+ * Output only. [Output Only] The short name of the firewall policy.
*
* Generated from protobuf field optional string short_name = 492051566;
* @param string $var
@@ -291,7 +291,7 @@ public function setShortName($var)
}
/**
- * [Output Only] The type of the firewall policy.
+ * Output only. [Output Only] The type of the firewall policy.
* Check the Type enum for the list of possible values.
*
* Generated from protobuf field optional string type = 3575610;
@@ -313,7 +313,7 @@ public function clearType()
}
/**
- * [Output Only] The type of the firewall policy.
+ * Output only. [Output Only] The type of the firewall policy.
* Check the Type enum for the list of possible values.
*
* Generated from protobuf field optional string type = 3575610;
diff --git a/Compute/src/V1/NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy/Type.php b/Compute/src/V1/NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy/Type.php
index 39ecdd1f17ef..5dcff707723f 100644
--- a/Compute/src/V1/NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy/Type.php
+++ b/Compute/src/V1/NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy/Type.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] The type of the firewall policy.
+ * Output only. [Output Only] The type of the firewall policy.
*
* Protobuf type google.cloud.compute.v1.NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy.Type
*/
diff --git a/Compute/src/V1/NodeGroup.php b/Compute/src/V1/NodeGroup.php
index 1dde2d9a0e08..11c0964029ba 100644
--- a/Compute/src/V1/NodeGroup.php
+++ b/Compute/src/V1/NodeGroup.php
@@ -27,7 +27,7 @@ class NodeGroup extends \Google\Protobuf\Internal\Message
*/
protected $autoscaling_policy = null;
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -45,14 +45,14 @@ class NodeGroup extends \Google\Protobuf\Internal\Message
*/
protected $fingerprint = null;
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
*/
protected $id = null;
/**
- * [Output Only] The type of the resource. Alwayscompute#nodeGroup for node group.
+ * Output only. [Output Only] The type of the resource. Alwayscompute#nodeGroup for node group.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -109,7 +109,7 @@ class NodeGroup extends \Google\Protobuf\Internal\Message
*/
protected $node_template = null;
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -121,7 +121,7 @@ class NodeGroup extends \Google\Protobuf\Internal\Message
*/
protected $share_settings = null;
/**
- * [Output Only] The total number of nodes in the node group.
+ * Output only. [Output Only] The total number of nodes in the node group.
*
* Generated from protobuf field optional int32 size = 3530753;
*/
@@ -134,7 +134,7 @@ class NodeGroup extends \Google\Protobuf\Internal\Message
*/
protected $status = null;
/**
- * [Output Only] The name of the zone where the node group resides,
+ * Output only. [Output Only] The name of the zone where the node group resides,
* such as us-central1-a.
*
* Generated from protobuf field optional string zone = 3744684;
@@ -150,17 +150,17 @@ class NodeGroup extends \Google\Protobuf\Internal\Message
* @type \Google\Cloud\Compute\V1\NodeGroupAutoscalingPolicy $autoscaling_policy
* Specifies how autoscaling should behave.
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $description
* An optional description of this resource. Provide this property when you
* create the resource.
* @type string $fingerprint
* @type int|string $id
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type string $kind
- * [Output Only] The type of the resource. Alwayscompute#nodeGroup for node group.
+ * Output only. [Output Only] The type of the resource. Alwayscompute#nodeGroup for node group.
* @type string $location_hint
* An opaque location hint used to place the Node close to other
* resources.
@@ -190,16 +190,16 @@ class NodeGroup extends \Google\Protobuf\Internal\Message
* @type string $node_template
* URL of the node template to create the node group from.
* @type string $self_link
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
* @type \Google\Cloud\Compute\V1\ShareSettings $share_settings
* Share-settings for the node group
* @type int $size
- * [Output Only] The total number of nodes in the node group.
+ * Output only. [Output Only] The total number of nodes in the node group.
* @type string $status
*
* Check the Status enum for the list of possible values.
* @type string $zone
- * [Output Only] The name of the zone where the node group resides,
+ * Output only. [Output Only] The name of the zone where the node group resides,
* such as us-central1-a.
* }
*/
@@ -245,7 +245,7 @@ public function setAutoscalingPolicy($var)
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -267,7 +267,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -353,7 +353,7 @@ public function setFingerprint($var)
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -375,7 +375,7 @@ public function clearId()
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -391,7 +391,7 @@ public function setId($var)
}
/**
- * [Output Only] The type of the resource. Alwayscompute#nodeGroup for node group.
+ * Output only. [Output Only] The type of the resource. Alwayscompute#nodeGroup for node group.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -412,7 +412,7 @@ public function clearKind()
}
/**
- * [Output Only] The type of the resource. Alwayscompute#nodeGroup for node group.
+ * Output only. [Output Only] The type of the resource. Alwayscompute#nodeGroup for node group.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -673,7 +673,7 @@ public function setNodeTemplate($var)
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -694,7 +694,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -745,7 +745,7 @@ public function setShareSettings($var)
}
/**
- * [Output Only] The total number of nodes in the node group.
+ * Output only. [Output Only] The total number of nodes in the node group.
*
* Generated from protobuf field optional int32 size = 3530753;
* @return int
@@ -766,7 +766,7 @@ public function clearSize()
}
/**
- * [Output Only] The total number of nodes in the node group.
+ * Output only. [Output Only] The total number of nodes in the node group.
*
* Generated from protobuf field optional int32 size = 3530753;
* @param int $var
@@ -819,7 +819,7 @@ public function setStatus($var)
}
/**
- * [Output Only] The name of the zone where the node group resides,
+ * Output only. [Output Only] The name of the zone where the node group resides,
* such as us-central1-a.
*
* Generated from protobuf field optional string zone = 3744684;
@@ -841,7 +841,7 @@ public function clearZone()
}
/**
- * [Output Only] The name of the zone where the node group resides,
+ * Output only. [Output Only] The name of the zone where the node group resides,
* such as us-central1-a.
*
* Generated from protobuf field optional string zone = 3744684;
diff --git a/Compute/src/V1/NodeGroupAggregatedList.php b/Compute/src/V1/NodeGroupAggregatedList.php
index 9108c8966be3..31d2580a2af5 100644
--- a/Compute/src/V1/NodeGroupAggregatedList.php
+++ b/Compute/src/V1/NodeGroupAggregatedList.php
@@ -27,7 +27,7 @@ class NodeGroupAggregatedList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource.Alwayscompute#nodeGroupAggregatedList for aggregated lists of node
+ * Output only. [Output Only] Type of resource.Alwayscompute#nodeGroupAggregatedList for aggregated lists of node
* groups.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -44,13 +44,13 @@ class NodeGroupAggregatedList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
@@ -73,7 +73,7 @@ class NodeGroupAggregatedList extends \Google\Protobuf\Internal\Message
* @type array|\Google\Protobuf\Internal\MapField $items
* A list of NodeGroupsScopedList resources.
* @type string $kind
- * [Output Only] Type of resource.Alwayscompute#nodeGroupAggregatedList for aggregated lists of node
+ * Output only. [Output Only] Type of resource.Alwayscompute#nodeGroupAggregatedList for aggregated lists of node
* groups.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -82,9 +82,9 @@ class NodeGroupAggregatedList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -157,7 +157,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource.Alwayscompute#nodeGroupAggregatedList for aggregated lists of node
+ * Output only. [Output Only] Type of resource.Alwayscompute#nodeGroupAggregatedList for aggregated lists of node
* groups.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -179,7 +179,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource.Alwayscompute#nodeGroupAggregatedList for aggregated lists of node
+ * Output only. [Output Only] Type of resource.Alwayscompute#nodeGroupAggregatedList for aggregated lists of node
* groups.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -239,7 +239,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -260,7 +260,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -275,7 +275,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -286,7 +286,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/NodeGroupList.php b/Compute/src/V1/NodeGroupList.php
index d5409992f719..bb83607da0da 100644
--- a/Compute/src/V1/NodeGroupList.php
+++ b/Compute/src/V1/NodeGroupList.php
@@ -28,7 +28,7 @@ class NodeGroupList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource.Always compute#nodeGroupList
+ * Output only. [Output Only] Type of resource.Always compute#nodeGroupList
* for lists of node groups.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -45,7 +45,7 @@ class NodeGroupList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -68,7 +68,7 @@ class NodeGroupList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\NodeGroup>|\Google\Protobuf\Internal\RepeatedField $items
* A list of NodeGroup resources.
* @type string $kind
- * [Output Only] Type of resource.Always compute#nodeGroupList
+ * Output only. [Output Only] Type of resource.Always compute#nodeGroupList
* for lists of node groups.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -77,7 +77,7 @@ class NodeGroupList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -150,7 +150,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource.Always compute#nodeGroupList
+ * Output only. [Output Only] Type of resource.Always compute#nodeGroupList
* for lists of node groups.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -172,7 +172,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource.Always compute#nodeGroupList
+ * Output only. [Output Only] Type of resource.Always compute#nodeGroupList
* for lists of node groups.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -232,7 +232,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -253,7 +253,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/NodeGroupMaintenanceWindow.php b/Compute/src/V1/NodeGroupMaintenanceWindow.php
index 35dec7467107..c001326470b0 100644
--- a/Compute/src/V1/NodeGroupMaintenanceWindow.php
+++ b/Compute/src/V1/NodeGroupMaintenanceWindow.php
@@ -17,7 +17,7 @@
class NodeGroupMaintenanceWindow extends \Google\Protobuf\Internal\Message
{
/**
- * [Output only] A predetermined duration for the window, automatically
+ * Output only. [Output only] A predetermined duration for the window, automatically
* chosen to be the smallest possible in the given scenario.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Duration maintenance_duration = 525291840;
@@ -39,7 +39,7 @@ class NodeGroupMaintenanceWindow extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type \Google\Cloud\Compute\V1\Duration $maintenance_duration
- * [Output only] A predetermined duration for the window, automatically
+ * Output only. [Output only] A predetermined duration for the window, automatically
* chosen to be the smallest possible in the given scenario.
* @type string $start_time
* Start time of the window. This must be in UTC format that resolves to one
@@ -53,7 +53,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output only] A predetermined duration for the window, automatically
+ * Output only. [Output only] A predetermined duration for the window, automatically
* chosen to be the smallest possible in the given scenario.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Duration maintenance_duration = 525291840;
@@ -75,7 +75,7 @@ public function clearMaintenanceDuration()
}
/**
- * [Output only] A predetermined duration for the window, automatically
+ * Output only. [Output only] A predetermined duration for the window, automatically
* chosen to be the smallest possible in the given scenario.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Duration maintenance_duration = 525291840;
diff --git a/Compute/src/V1/NodeGroupNode.php b/Compute/src/V1/NodeGroupNode.php
index edb86b7b4e94..b9f18c1390f2 100644
--- a/Compute/src/V1/NodeGroupNode.php
+++ b/Compute/src/V1/NodeGroupNode.php
@@ -21,7 +21,7 @@ class NodeGroupNode extends \Google\Protobuf\Internal\Message
*/
private $accelerators;
/**
- * Node resources that are reserved by all instances.
+ * Output only. Node resources that are reserved by all instances.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InstanceConsumptionInfo consumed_resources = 334527118;
*/
@@ -40,7 +40,7 @@ class NodeGroupNode extends \Google\Protobuf\Internal\Message
*/
private $disks;
/**
- * Instance data that shows consumed resources on the node.
+ * Output only. Instance data that shows consumed resources on the node.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.InstanceConsumptionData instance_consumption_data = 84715576;
*/
@@ -64,7 +64,7 @@ class NodeGroupNode extends \Google\Protobuf\Internal\Message
*/
protected $node_type = null;
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool satisfies_pzs = 480964267;
*/
@@ -89,13 +89,13 @@ class NodeGroupNode extends \Google\Protobuf\Internal\Message
*/
protected $status = null;
/**
- * Total amount of available resources on the node.
+ * Output only. Total amount of available resources on the node.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InstanceConsumptionInfo total_resources = 97406698;
*/
protected $total_resources = null;
/**
- * [Output Only] The information about an upcoming maintenance event.
+ * Output only. [Output Only] The information about an upcoming maintenance event.
*
* Generated from protobuf field optional .google.cloud.compute.v1.UpcomingMaintenance upcoming_maintenance = 227348592;
*/
@@ -110,14 +110,14 @@ class NodeGroupNode extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\AcceleratorConfig>|\Google\Protobuf\Internal\RepeatedField $accelerators
* Accelerators for this node.
* @type \Google\Cloud\Compute\V1\InstanceConsumptionInfo $consumed_resources
- * Node resources that are reserved by all instances.
+ * Output only. Node resources that are reserved by all instances.
* @type string $cpu_overcommit_type
* CPU overcommit.
* Check the CpuOvercommitType enum for the list of possible values.
* @type array<\Google\Cloud\Compute\V1\LocalDisk>|\Google\Protobuf\Internal\RepeatedField $disks
* Local disk configurations.
* @type array<\Google\Cloud\Compute\V1\InstanceConsumptionData>|\Google\Protobuf\Internal\RepeatedField $instance_consumption_data
- * Instance data that shows consumed resources on the node.
+ * Output only. Instance data that shows consumed resources on the node.
* @type array|\Google\Protobuf\Internal\RepeatedField $instances
* Instances scheduled on this node.
* @type string $name
@@ -125,7 +125,7 @@ class NodeGroupNode extends \Google\Protobuf\Internal\Message
* @type string $node_type
* The type of this node.
* @type bool $satisfies_pzs
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
* @type \Google\Cloud\Compute\V1\ServerBinding $server_binding
* Binding properties for the physical server.
* @type string $server_id
@@ -134,9 +134,9 @@ class NodeGroupNode extends \Google\Protobuf\Internal\Message
*
* Check the Status enum for the list of possible values.
* @type \Google\Cloud\Compute\V1\InstanceConsumptionInfo $total_resources
- * Total amount of available resources on the node.
+ * Output only. Total amount of available resources on the node.
* @type \Google\Cloud\Compute\V1\UpcomingMaintenance $upcoming_maintenance
- * [Output Only] The information about an upcoming maintenance event.
+ * Output only. [Output Only] The information about an upcoming maintenance event.
* }
*/
public function __construct($data = NULL) {
@@ -171,7 +171,7 @@ public function setAccelerators($var)
}
/**
- * Node resources that are reserved by all instances.
+ * Output only. Node resources that are reserved by all instances.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InstanceConsumptionInfo consumed_resources = 334527118;
* @return \Google\Cloud\Compute\V1\InstanceConsumptionInfo|null
@@ -192,7 +192,7 @@ public function clearConsumedResources()
}
/**
- * Node resources that are reserved by all instances.
+ * Output only. Node resources that are reserved by all instances.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InstanceConsumptionInfo consumed_resources = 334527118;
* @param \Google\Cloud\Compute\V1\InstanceConsumptionInfo $var
@@ -271,7 +271,7 @@ public function setDisks($var)
}
/**
- * Instance data that shows consumed resources on the node.
+ * Output only. Instance data that shows consumed resources on the node.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.InstanceConsumptionData instance_consumption_data = 84715576;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -282,7 +282,7 @@ public function getInstanceConsumptionData()
}
/**
- * Instance data that shows consumed resources on the node.
+ * Output only. Instance data that shows consumed resources on the node.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.InstanceConsumptionData instance_consumption_data = 84715576;
* @param array<\Google\Cloud\Compute\V1\InstanceConsumptionData>|\Google\Protobuf\Internal\RepeatedField $var
@@ -395,7 +395,7 @@ public function setNodeType($var)
}
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool satisfies_pzs = 480964267;
* @return bool
@@ -416,7 +416,7 @@ public function clearSatisfiesPzs()
}
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool satisfies_pzs = 480964267;
* @param bool $var
@@ -541,7 +541,7 @@ public function setStatus($var)
}
/**
- * Total amount of available resources on the node.
+ * Output only. Total amount of available resources on the node.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InstanceConsumptionInfo total_resources = 97406698;
* @return \Google\Cloud\Compute\V1\InstanceConsumptionInfo|null
@@ -562,7 +562,7 @@ public function clearTotalResources()
}
/**
- * Total amount of available resources on the node.
+ * Output only. Total amount of available resources on the node.
*
* Generated from protobuf field optional .google.cloud.compute.v1.InstanceConsumptionInfo total_resources = 97406698;
* @param \Google\Cloud\Compute\V1\InstanceConsumptionInfo $var
@@ -577,7 +577,7 @@ public function setTotalResources($var)
}
/**
- * [Output Only] The information about an upcoming maintenance event.
+ * Output only. [Output Only] The information about an upcoming maintenance event.
*
* Generated from protobuf field optional .google.cloud.compute.v1.UpcomingMaintenance upcoming_maintenance = 227348592;
* @return \Google\Cloud\Compute\V1\UpcomingMaintenance|null
@@ -598,7 +598,7 @@ public function clearUpcomingMaintenance()
}
/**
- * [Output Only] The information about an upcoming maintenance event.
+ * Output only. [Output Only] The information about an upcoming maintenance event.
*
* Generated from protobuf field optional .google.cloud.compute.v1.UpcomingMaintenance upcoming_maintenance = 227348592;
* @param \Google\Cloud\Compute\V1\UpcomingMaintenance $var
diff --git a/Compute/src/V1/NodeGroupsListNodes.php b/Compute/src/V1/NodeGroupsListNodes.php
index 573812705fd4..44ff8c02b581 100644
--- a/Compute/src/V1/NodeGroupsListNodes.php
+++ b/Compute/src/V1/NodeGroupsListNodes.php
@@ -15,7 +15,7 @@
class NodeGroupsListNodes extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
*
* Generated from protobuf field optional string id = 3355;
*/
@@ -27,14 +27,14 @@ class NodeGroupsListNodes extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] The resource type, which is alwayscompute.nodeGroupsListNodes for the list of nodes in the
+ * Output only. [Output Only] The resource type, which is alwayscompute.nodeGroupsListNodes for the list of nodes in the
* specified node group.
*
* Generated from protobuf field optional string kind = 3292052;
*/
protected $kind = null;
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -44,13 +44,13 @@ class NodeGroupsListNodes extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
*/
@@ -63,22 +63,22 @@ class NodeGroupsListNodes extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $id
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
* @type array<\Google\Cloud\Compute\V1\NodeGroupNode>|\Google\Protobuf\Internal\RepeatedField $items
* A list of Node resources.
* @type string $kind
- * [Output Only] The resource type, which is alwayscompute.nodeGroupsListNodes for the list of nodes in the
+ * Output only. [Output Only] The resource type, which is alwayscompute.nodeGroupsListNodes for the list of nodes in the
* specified node group.
* @type string $next_page_token
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
* }
*/
public function __construct($data = NULL) {
@@ -87,7 +87,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
*
* Generated from protobuf field optional string id = 3355;
* @return string
@@ -108,7 +108,7 @@ public function clearId()
}
/**
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
*
* Generated from protobuf field optional string id = 3355;
* @param string $var
@@ -149,7 +149,7 @@ public function setItems($var)
}
/**
- * [Output Only] The resource type, which is alwayscompute.nodeGroupsListNodes for the list of nodes in the
+ * Output only. [Output Only] The resource type, which is alwayscompute.nodeGroupsListNodes for the list of nodes in the
* specified node group.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -171,7 +171,7 @@ public function clearKind()
}
/**
- * [Output Only] The resource type, which is alwayscompute.nodeGroupsListNodes for the list of nodes in the
+ * Output only. [Output Only] The resource type, which is alwayscompute.nodeGroupsListNodes for the list of nodes in the
* specified node group.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -187,7 +187,7 @@ public function setKind($var)
}
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -212,7 +212,7 @@ public function clearNextPageToken()
}
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -231,7 +231,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -252,7 +252,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -267,7 +267,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
* @return \Google\Cloud\Compute\V1\Warning|null
@@ -288,7 +288,7 @@ public function clearWarning()
}
/**
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
* @param \Google\Cloud\Compute\V1\Warning $var
diff --git a/Compute/src/V1/NodeTemplate.php b/Compute/src/V1/NodeTemplate.php
index d17b96cf34a7..82e5a7bb05ff 100644
--- a/Compute/src/V1/NodeTemplate.php
+++ b/Compute/src/V1/NodeTemplate.php
@@ -30,7 +30,7 @@ class NodeTemplate extends \Google\Protobuf\Internal\Message
*/
protected $cpu_overcommit_type = null;
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -48,14 +48,14 @@ class NodeTemplate extends \Google\Protobuf\Internal\Message
*/
private $disks;
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
*/
protected $id = null;
/**
- * [Output Only] The type of the resource. Alwayscompute#nodeTemplate for node templates.
+ * Output only. [Output Only] The type of the resource. Alwayscompute#nodeTemplate for node templates.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -92,14 +92,14 @@ class NodeTemplate extends \Google\Protobuf\Internal\Message
*/
protected $node_type_flexibility = null;
/**
- * [Output Only] The name of the region where the node template resides,
+ * Output only. [Output Only] The name of the region where the node template resides,
* such as us-central1.
*
* Generated from protobuf field optional string region = 138946292;
*/
protected $region = null;
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -118,14 +118,14 @@ class NodeTemplate extends \Google\Protobuf\Internal\Message
*/
protected $server_binding = null;
/**
- * [Output Only] The status of the node template. One of the following values:CREATING, READY, and DELETING.
+ * Output only. [Output Only] The status of the node template. One of the following values:CREATING, READY, and DELETING.
* Check the Status enum for the list of possible values.
*
* Generated from protobuf field optional string status = 181260274;
*/
protected $status = null;
/**
- * [Output Only] An optional, human-readable explanation of the status.
+ * Output only. [Output Only] An optional, human-readable explanation of the status.
*
* Generated from protobuf field optional string status_message = 297428154;
*/
@@ -142,17 +142,17 @@ class NodeTemplate extends \Google\Protobuf\Internal\Message
* CPU overcommit.
* Check the CpuOvercommitType enum for the list of possible values.
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $description
* An optional description of this resource. Provide this property when you
* create the resource.
* @type array<\Google\Cloud\Compute\V1\LocalDisk>|\Google\Protobuf\Internal\RepeatedField $disks
* @type int|string $id
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type string $kind
- * [Output Only] The type of the resource. Alwayscompute#nodeTemplate for node templates.
+ * Output only. [Output Only] The type of the resource. Alwayscompute#nodeTemplate for node templates.
* @type string $name
* The name of the resource, provided by the client when initially creating
* the resource. The resource name must be 1-63 characters long, and comply
@@ -169,10 +169,10 @@ class NodeTemplate extends \Google\Protobuf\Internal\Message
* @type \Google\Cloud\Compute\V1\NodeTemplateNodeTypeFlexibility $node_type_flexibility
* Do not use. Instead, use the node_type property.
* @type string $region
- * [Output Only] The name of the region where the node template resides,
+ * Output only. [Output Only] The name of the region where the node template resides,
* such as us-central1.
* @type string $self_link
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
* @type \Google\Cloud\Compute\V1\ServerBinding $server_binding
* Sets the binding properties for the physical server. Valid values include:
* - *[Default]* RESTART_NODE_ON_ANY_SERVER:
@@ -183,10 +183,10 @@ class NodeTemplate extends \Google\Protobuf\Internal\Message
* See Sole-tenant
* node options for more information.
* @type string $status
- * [Output Only] The status of the node template. One of the following values:CREATING, READY, and DELETING.
+ * Output only. [Output Only] The status of the node template. One of the following values:CREATING, READY, and DELETING.
* Check the Status enum for the list of possible values.
* @type string $status_message
- * [Output Only] An optional, human-readable explanation of the status.
+ * Output only. [Output Only] An optional, human-readable explanation of the status.
* }
*/
public function __construct($data = NULL) {
@@ -255,7 +255,7 @@ public function setCpuOvercommitType($var)
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -277,7 +277,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -353,7 +353,7 @@ public function setDisks($var)
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -375,7 +375,7 @@ public function clearId()
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -391,7 +391,7 @@ public function setId($var)
}
/**
- * [Output Only] The type of the resource. Alwayscompute#nodeTemplate for node templates.
+ * Output only. [Output Only] The type of the resource. Alwayscompute#nodeTemplate for node templates.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -412,7 +412,7 @@ public function clearKind()
}
/**
- * [Output Only] The type of the resource. Alwayscompute#nodeTemplate for node templates.
+ * Output only. [Output Only] The type of the resource. Alwayscompute#nodeTemplate for node templates.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -575,7 +575,7 @@ public function setNodeTypeFlexibility($var)
}
/**
- * [Output Only] The name of the region where the node template resides,
+ * Output only. [Output Only] The name of the region where the node template resides,
* such as us-central1.
*
* Generated from protobuf field optional string region = 138946292;
@@ -597,7 +597,7 @@ public function clearRegion()
}
/**
- * [Output Only] The name of the region where the node template resides,
+ * Output only. [Output Only] The name of the region where the node template resides,
* such as us-central1.
*
* Generated from protobuf field optional string region = 138946292;
@@ -613,7 +613,7 @@ public function setRegion($var)
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -634,7 +634,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -699,7 +699,7 @@ public function setServerBinding($var)
}
/**
- * [Output Only] The status of the node template. One of the following values:CREATING, READY, and DELETING.
+ * Output only. [Output Only] The status of the node template. One of the following values:CREATING, READY, and DELETING.
* Check the Status enum for the list of possible values.
*
* Generated from protobuf field optional string status = 181260274;
@@ -721,7 +721,7 @@ public function clearStatus()
}
/**
- * [Output Only] The status of the node template. One of the following values:CREATING, READY, and DELETING.
+ * Output only. [Output Only] The status of the node template. One of the following values:CREATING, READY, and DELETING.
* Check the Status enum for the list of possible values.
*
* Generated from protobuf field optional string status = 181260274;
@@ -737,7 +737,7 @@ public function setStatus($var)
}
/**
- * [Output Only] An optional, human-readable explanation of the status.
+ * Output only. [Output Only] An optional, human-readable explanation of the status.
*
* Generated from protobuf field optional string status_message = 297428154;
* @return string
@@ -758,7 +758,7 @@ public function clearStatusMessage()
}
/**
- * [Output Only] An optional, human-readable explanation of the status.
+ * Output only. [Output Only] An optional, human-readable explanation of the status.
*
* Generated from protobuf field optional string status_message = 297428154;
* @param string $var
diff --git a/Compute/src/V1/NodeTemplate/Status.php b/Compute/src/V1/NodeTemplate/Status.php
index 37393cb7171c..71ba3bbc609c 100644
--- a/Compute/src/V1/NodeTemplate/Status.php
+++ b/Compute/src/V1/NodeTemplate/Status.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] The status of the node template. One of the following values:CREATING, READY, and DELETING.
+ * Output only. [Output Only] The status of the node template. One of the following values:CREATING, READY, and DELETING.
*
* Protobuf type google.cloud.compute.v1.NodeTemplate.Status
*/
diff --git a/Compute/src/V1/NodeTemplateAggregatedList.php b/Compute/src/V1/NodeTemplateAggregatedList.php
index 990a9ccefa48..0ae6a159d5f8 100644
--- a/Compute/src/V1/NodeTemplateAggregatedList.php
+++ b/Compute/src/V1/NodeTemplateAggregatedList.php
@@ -27,7 +27,7 @@ class NodeTemplateAggregatedList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource.Alwayscompute#nodeTemplateAggregatedList for aggregated lists of
+ * Output only. [Output Only] Type of resource.Alwayscompute#nodeTemplateAggregatedList for aggregated lists of
* node templates.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -44,13 +44,13 @@ class NodeTemplateAggregatedList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
@@ -73,7 +73,7 @@ class NodeTemplateAggregatedList extends \Google\Protobuf\Internal\Message
* @type array|\Google\Protobuf\Internal\MapField $items
* A list of NodeTemplatesScopedList resources.
* @type string $kind
- * [Output Only] Type of resource.Alwayscompute#nodeTemplateAggregatedList for aggregated lists of
+ * Output only. [Output Only] Type of resource.Alwayscompute#nodeTemplateAggregatedList for aggregated lists of
* node templates.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -82,9 +82,9 @@ class NodeTemplateAggregatedList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -157,7 +157,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource.Alwayscompute#nodeTemplateAggregatedList for aggregated lists of
+ * Output only. [Output Only] Type of resource.Alwayscompute#nodeTemplateAggregatedList for aggregated lists of
* node templates.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -179,7 +179,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource.Alwayscompute#nodeTemplateAggregatedList for aggregated lists of
+ * Output only. [Output Only] Type of resource.Alwayscompute#nodeTemplateAggregatedList for aggregated lists of
* node templates.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -239,7 +239,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -260,7 +260,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -275,7 +275,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -286,7 +286,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/NodeTemplateList.php b/Compute/src/V1/NodeTemplateList.php
index 7cd8a157afc4..dbbc9c7c3da1 100644
--- a/Compute/src/V1/NodeTemplateList.php
+++ b/Compute/src/V1/NodeTemplateList.php
@@ -28,7 +28,7 @@ class NodeTemplateList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource.Always compute#nodeTemplateList
+ * Output only. [Output Only] Type of resource.Always compute#nodeTemplateList
* for lists of node templates.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -45,7 +45,7 @@ class NodeTemplateList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -68,7 +68,7 @@ class NodeTemplateList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\NodeTemplate>|\Google\Protobuf\Internal\RepeatedField $items
* A list of NodeTemplate resources.
* @type string $kind
- * [Output Only] Type of resource.Always compute#nodeTemplateList
+ * Output only. [Output Only] Type of resource.Always compute#nodeTemplateList
* for lists of node templates.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -77,7 +77,7 @@ class NodeTemplateList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -150,7 +150,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource.Always compute#nodeTemplateList
+ * Output only. [Output Only] Type of resource.Always compute#nodeTemplateList
* for lists of node templates.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -172,7 +172,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource.Always compute#nodeTemplateList
+ * Output only. [Output Only] Type of resource.Always compute#nodeTemplateList
* for lists of node templates.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -232,7 +232,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -253,7 +253,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/NodeType.php b/Compute/src/V1/NodeType.php
index cf9a9cc5b268..11949a161f36 100644
--- a/Compute/src/V1/NodeType.php
+++ b/Compute/src/V1/NodeType.php
@@ -60,7 +60,7 @@ class NodeType extends \Google\Protobuf\Internal\Message
*/
protected $id = null;
/**
- * [Output Only] The type of the resource. Alwayscompute#nodeType for node types.
+ * Output only. [Output Only] The type of the resource. Alwayscompute#nodeType for node types.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -72,7 +72,7 @@ class NodeType extends \Google\Protobuf\Internal\Message
*/
protected $local_ssd_gb = null;
/**
- * [Output Only] Maximum number of VMs that can be created for this node type.
+ * Output only. [Output Only] Maximum number of VMs that can be created for this node type.
*
* Generated from protobuf field optional int32 max_vms = 307579713;
*/
@@ -91,13 +91,13 @@ class NodeType extends \Google\Protobuf\Internal\Message
*/
protected $name = null;
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] The name of the zone where the node type resides,
+ * Output only. [Output Only] The name of the zone where the node type resides,
* such as us-central1-a.
*
* Generated from protobuf field optional string zone = 3744684;
@@ -126,20 +126,20 @@ class NodeType extends \Google\Protobuf\Internal\Message
* [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type string $kind
- * [Output Only] The type of the resource. Alwayscompute#nodeType for node types.
+ * Output only. [Output Only] The type of the resource. Alwayscompute#nodeType for node types.
* @type int $local_ssd_gb
* [Output Only] Local SSD available to the node type, defined in GB.
* @type int $max_vms
- * [Output Only] Maximum number of VMs that can be created for this node type.
+ * Output only. [Output Only] Maximum number of VMs that can be created for this node type.
* @type int $memory_mb
* [Output Only] The amount of physical memory available to the node type,
* defined in MB.
* @type string $name
* [Output Only] Name of the resource.
* @type string $self_link
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
* @type string $zone
- * [Output Only] The name of the zone where the node type resides,
+ * Output only. [Output Only] The name of the zone where the node type resides,
* such as us-central1-a.
* }
*/
@@ -371,7 +371,7 @@ public function setId($var)
}
/**
- * [Output Only] The type of the resource. Alwayscompute#nodeType for node types.
+ * Output only. [Output Only] The type of the resource. Alwayscompute#nodeType for node types.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -392,7 +392,7 @@ public function clearKind()
}
/**
- * [Output Only] The type of the resource. Alwayscompute#nodeType for node types.
+ * Output only. [Output Only] The type of the resource. Alwayscompute#nodeType for node types.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -443,7 +443,7 @@ public function setLocalSsdGb($var)
}
/**
- * [Output Only] Maximum number of VMs that can be created for this node type.
+ * Output only. [Output Only] Maximum number of VMs that can be created for this node type.
*
* Generated from protobuf field optional int32 max_vms = 307579713;
* @return int
@@ -464,7 +464,7 @@ public function clearMaxVms()
}
/**
- * [Output Only] Maximum number of VMs that can be created for this node type.
+ * Output only. [Output Only] Maximum number of VMs that can be created for this node type.
*
* Generated from protobuf field optional int32 max_vms = 307579713;
* @param int $var
@@ -553,7 +553,7 @@ public function setName($var)
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -574,7 +574,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -589,7 +589,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] The name of the zone where the node type resides,
+ * Output only. [Output Only] The name of the zone where the node type resides,
* such as us-central1-a.
*
* Generated from protobuf field optional string zone = 3744684;
@@ -611,7 +611,7 @@ public function clearZone()
}
/**
- * [Output Only] The name of the zone where the node type resides,
+ * Output only. [Output Only] The name of the zone where the node type resides,
* such as us-central1-a.
*
* Generated from protobuf field optional string zone = 3744684;
diff --git a/Compute/src/V1/NodeTypeAggregatedList.php b/Compute/src/V1/NodeTypeAggregatedList.php
index dcd87de94095..538db64b3149 100644
--- a/Compute/src/V1/NodeTypeAggregatedList.php
+++ b/Compute/src/V1/NodeTypeAggregatedList.php
@@ -27,7 +27,7 @@ class NodeTypeAggregatedList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource.Alwayscompute#nodeTypeAggregatedList for aggregated lists of node
+ * Output only. [Output Only] Type of resource.Alwayscompute#nodeTypeAggregatedList for aggregated lists of node
* types.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -44,13 +44,13 @@ class NodeTypeAggregatedList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
@@ -73,7 +73,7 @@ class NodeTypeAggregatedList extends \Google\Protobuf\Internal\Message
* @type array|\Google\Protobuf\Internal\MapField $items
* A list of NodeTypesScopedList resources.
* @type string $kind
- * [Output Only] Type of resource.Alwayscompute#nodeTypeAggregatedList for aggregated lists of node
+ * Output only. [Output Only] Type of resource.Alwayscompute#nodeTypeAggregatedList for aggregated lists of node
* types.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -82,9 +82,9 @@ class NodeTypeAggregatedList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -157,7 +157,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource.Alwayscompute#nodeTypeAggregatedList for aggregated lists of node
+ * Output only. [Output Only] Type of resource.Alwayscompute#nodeTypeAggregatedList for aggregated lists of node
* types.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -179,7 +179,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource.Alwayscompute#nodeTypeAggregatedList for aggregated lists of node
+ * Output only. [Output Only] Type of resource.Alwayscompute#nodeTypeAggregatedList for aggregated lists of node
* types.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -239,7 +239,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -260,7 +260,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -275,7 +275,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -286,7 +286,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/NodeTypeList.php b/Compute/src/V1/NodeTypeList.php
index 116a50ac6200..62b2fd20b3a3 100644
--- a/Compute/src/V1/NodeTypeList.php
+++ b/Compute/src/V1/NodeTypeList.php
@@ -28,7 +28,7 @@ class NodeTypeList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource.Always compute#nodeTypeList for
+ * Output only. [Output Only] Type of resource.Always compute#nodeTypeList for
* lists of node types.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -45,7 +45,7 @@ class NodeTypeList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -68,7 +68,7 @@ class NodeTypeList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\NodeType>|\Google\Protobuf\Internal\RepeatedField $items
* A list of NodeType resources.
* @type string $kind
- * [Output Only] Type of resource.Always compute#nodeTypeList for
+ * Output only. [Output Only] Type of resource.Always compute#nodeTypeList for
* lists of node types.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -77,7 +77,7 @@ class NodeTypeList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -150,7 +150,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource.Always compute#nodeTypeList for
+ * Output only. [Output Only] Type of resource.Always compute#nodeTypeList for
* lists of node types.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -172,7 +172,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource.Always compute#nodeTypeList for
+ * Output only. [Output Only] Type of resource.Always compute#nodeTypeList for
* lists of node types.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -232,7 +232,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -253,7 +253,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/NotificationEndpoint.php b/Compute/src/V1/NotificationEndpoint.php
index 005633b1c773..561ea907d605 100644
--- a/Compute/src/V1/NotificationEndpoint.php
+++ b/Compute/src/V1/NotificationEndpoint.php
@@ -21,7 +21,7 @@
class NotificationEndpoint extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -42,14 +42,14 @@ class NotificationEndpoint extends \Google\Protobuf\Internal\Message
*/
protected $grpc_settings = null;
/**
- * [Output Only] A unique identifier for this resource type. The server
+ * Output only. [Output Only] A unique identifier for this resource type. The server
* generates this identifier.
*
* Generated from protobuf field optional uint64 id = 3355;
*/
protected $id = null;
/**
- * [Output Only] Type of the resource. Alwayscompute#notificationEndpoint for notification endpoints.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#notificationEndpoint for notification endpoints.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -67,7 +67,7 @@ class NotificationEndpoint extends \Google\Protobuf\Internal\Message
*/
protected $name = null;
/**
- * [Output Only] URL of the region where the notification endpoint resides.
+ * Output only. [Output Only] URL of the region where the notification endpoint resides.
* This field applies only to the regional resource. You must specify this
* field as part of the HTTP request URL. It is not settable as a field in
* the request body.
@@ -76,7 +76,7 @@ class NotificationEndpoint extends \Google\Protobuf\Internal\Message
*/
protected $region = null;
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -89,7 +89,7 @@ class NotificationEndpoint extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $description
* An optional description of this resource. Provide this property when you
@@ -98,10 +98,10 @@ class NotificationEndpoint extends \Google\Protobuf\Internal\Message
* Settings of the gRPC notification endpoint including the endpoint URL and
* the retry duration.
* @type int|string $id
- * [Output Only] A unique identifier for this resource type. The server
+ * Output only. [Output Only] A unique identifier for this resource type. The server
* generates this identifier.
* @type string $kind
- * [Output Only] Type of the resource. Alwayscompute#notificationEndpoint for notification endpoints.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#notificationEndpoint for notification endpoints.
* @type string $name
* Name of the resource. Provided by the client when the resource is created.
* The name must be 1-63 characters long, and comply withRFC1035.
@@ -111,12 +111,12 @@ class NotificationEndpoint extends \Google\Protobuf\Internal\Message
* be a dash, lowercase letter, or digit, except the last character, which
* cannot be a dash.
* @type string $region
- * [Output Only] URL of the region where the notification endpoint resides.
+ * Output only. [Output Only] URL of the region where the notification endpoint resides.
* This field applies only to the regional resource. You must specify this
* field as part of the HTTP request URL. It is not settable as a field in
* the request body.
* @type string $self_link
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
* }
*/
public function __construct($data = NULL) {
@@ -125,7 +125,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -147,7 +147,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -239,7 +239,7 @@ public function setGrpcSettings($var)
}
/**
- * [Output Only] A unique identifier for this resource type. The server
+ * Output only. [Output Only] A unique identifier for this resource type. The server
* generates this identifier.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -261,7 +261,7 @@ public function clearId()
}
/**
- * [Output Only] A unique identifier for this resource type. The server
+ * Output only. [Output Only] A unique identifier for this resource type. The server
* generates this identifier.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -277,7 +277,7 @@ public function setId($var)
}
/**
- * [Output Only] Type of the resource. Alwayscompute#notificationEndpoint for notification endpoints.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#notificationEndpoint for notification endpoints.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -298,7 +298,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Alwayscompute#notificationEndpoint for notification endpoints.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#notificationEndpoint for notification endpoints.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -361,7 +361,7 @@ public function setName($var)
}
/**
- * [Output Only] URL of the region where the notification endpoint resides.
+ * Output only. [Output Only] URL of the region where the notification endpoint resides.
* This field applies only to the regional resource. You must specify this
* field as part of the HTTP request URL. It is not settable as a field in
* the request body.
@@ -385,7 +385,7 @@ public function clearRegion()
}
/**
- * [Output Only] URL of the region where the notification endpoint resides.
+ * Output only. [Output Only] URL of the region where the notification endpoint resides.
* This field applies only to the regional resource. You must specify this
* field as part of the HTTP request URL. It is not settable as a field in
* the request body.
@@ -403,7 +403,7 @@ public function setRegion($var)
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -424,7 +424,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/NotificationEndpointList.php b/Compute/src/V1/NotificationEndpointList.php
index 166c70f4355c..9cc7c72534b3 100644
--- a/Compute/src/V1/NotificationEndpointList.php
+++ b/Compute/src/V1/NotificationEndpointList.php
@@ -27,7 +27,7 @@ class NotificationEndpointList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of the resource. Alwayscompute#notificationEndpoint for notification endpoints.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#notificationEndpoint for notification endpoints.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -66,7 +66,7 @@ class NotificationEndpointList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\NotificationEndpoint>|\Google\Protobuf\Internal\RepeatedField $items
* A list of NotificationEndpoint resources.
* @type string $kind
- * [Output Only] Type of the resource. Alwayscompute#notificationEndpoint for notification endpoints.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#notificationEndpoint for notification endpoints.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -147,7 +147,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of the resource. Alwayscompute#notificationEndpoint for notification endpoints.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#notificationEndpoint for notification endpoints.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -168,7 +168,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Alwayscompute#notificationEndpoint for notification endpoints.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#notificationEndpoint for notification endpoints.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
diff --git a/Compute/src/V1/Operation.php b/Compute/src/V1/Operation.php
index 40d42308a502..0488b0335641 100644
--- a/Compute/src/V1/Operation.php
+++ b/Compute/src/V1/Operation.php
@@ -102,7 +102,7 @@ class Operation extends \Google\Protobuf\Internal\Message
*/
protected $instances_bulk_insert_operation_metadata = null;
/**
- * [Output Only] Type of the resource. Always `compute#operation` for
+ * Output only. [Output Only] Type of the resource. Always `compute#operation` for
* Operation resources.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -115,7 +115,7 @@ class Operation extends \Google\Protobuf\Internal\Message
*/
protected $name = null;
/**
- * [Output Only] An ID that represents a group of operations, such as when a
+ * Output only. [Output Only] An ID that represents a group of operations, such as when a
* group of operations results from a `bulkInsert` API request.
*
* Generated from protobuf field optional string operation_group_id = 40171187;
@@ -152,7 +152,7 @@ class Operation extends \Google\Protobuf\Internal\Message
*/
protected $self_link = null;
/**
- * [Output Only] If the operation is for projects.setCommonInstanceMetadata,
+ * Output only. [Output Only] If the operation is for projects.setCommonInstanceMetadata,
* this field will contain information on all underlying zonal actions and
* their state.
*
@@ -256,12 +256,12 @@ class Operation extends \Google\Protobuf\Internal\Message
* text format.
* @type \Google\Cloud\Compute\V1\InstancesBulkInsertOperationMetadata $instances_bulk_insert_operation_metadata
* @type string $kind
- * [Output Only] Type of the resource. Always `compute#operation` for
+ * Output only. [Output Only] Type of the resource. Always `compute#operation` for
* Operation resources.
* @type string $name
* [Output Only] Name of the operation.
* @type string $operation_group_id
- * [Output Only] An ID that represents a group of operations, such as when a
+ * Output only. [Output Only] An ID that represents a group of operations, such as when a
* group of operations results from a `bulkInsert` API request.
* @type string $operation_type
* [Output Only] The type of operation, such as `insert`,
@@ -278,7 +278,7 @@ class Operation extends \Google\Protobuf\Internal\Message
* @type string $self_link
* [Output Only] Server-defined URL for the resource.
* @type \Google\Cloud\Compute\V1\SetCommonInstanceMetadataOperationMetadata $set_common_instance_metadata_operation_metadata
- * [Output Only] If the operation is for projects.setCommonInstanceMetadata,
+ * Output only. [Output Only] If the operation is for projects.setCommonInstanceMetadata,
* this field will contain information on all underlying zonal actions and
* their state.
* @type string $start_time
@@ -693,7 +693,7 @@ public function setInstancesBulkInsertOperationMetadata($var)
}
/**
- * [Output Only] Type of the resource. Always `compute#operation` for
+ * Output only. [Output Only] Type of the resource. Always `compute#operation` for
* Operation resources.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -715,7 +715,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Always `compute#operation` for
+ * Output only. [Output Only] Type of the resource. Always `compute#operation` for
* Operation resources.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -767,7 +767,7 @@ public function setName($var)
}
/**
- * [Output Only] An ID that represents a group of operations, such as when a
+ * Output only. [Output Only] An ID that represents a group of operations, such as when a
* group of operations results from a `bulkInsert` API request.
*
* Generated from protobuf field optional string operation_group_id = 40171187;
@@ -789,7 +789,7 @@ public function clearOperationGroupId()
}
/**
- * [Output Only] An ID that represents a group of operations, such as when a
+ * Output only. [Output Only] An ID that represents a group of operations, such as when a
* group of operations results from a `bulkInsert` API request.
*
* Generated from protobuf field optional string operation_group_id = 40171187;
@@ -961,7 +961,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] If the operation is for projects.setCommonInstanceMetadata,
+ * Output only. [Output Only] If the operation is for projects.setCommonInstanceMetadata,
* this field will contain information on all underlying zonal actions and
* their state.
*
@@ -984,7 +984,7 @@ public function clearSetCommonInstanceMetadataOperationMetadata()
}
/**
- * [Output Only] If the operation is for projects.setCommonInstanceMetadata,
+ * Output only. [Output Only] If the operation is for projects.setCommonInstanceMetadata,
* this field will contain information on all underlying zonal actions and
* their state.
*
diff --git a/Compute/src/V1/OperationAggregatedList.php b/Compute/src/V1/OperationAggregatedList.php
index 7cbeac46c9de..a11bec63b183 100644
--- a/Compute/src/V1/OperationAggregatedList.php
+++ b/Compute/src/V1/OperationAggregatedList.php
@@ -28,7 +28,7 @@ class OperationAggregatedList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Always `compute#operationAggregatedList`
+ * Output only. [Output Only] Type of resource. Always `compute#operationAggregatedList`
* for aggregated lists of operations.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -52,7 +52,7 @@ class OperationAggregatedList extends \Google\Protobuf\Internal\Message
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
@@ -76,7 +76,7 @@ class OperationAggregatedList extends \Google\Protobuf\Internal\Message
* @type array|\Google\Protobuf\Internal\MapField $items
* [Output Only] A map of scoped operation lists.
* @type string $kind
- * [Output Only] Type of resource. Always `compute#operationAggregatedList`
+ * Output only. [Output Only] Type of resource. Always `compute#operationAggregatedList`
* for aggregated lists of operations.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -88,7 +88,7 @@ class OperationAggregatedList extends \Google\Protobuf\Internal\Message
* @type string $self_link
* [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -163,7 +163,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Always `compute#operationAggregatedList`
+ * Output only. [Output Only] Type of resource. Always `compute#operationAggregatedList`
* for aggregated lists of operations.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -185,7 +185,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Always `compute#operationAggregatedList`
+ * Output only. [Output Only] Type of resource. Always `compute#operationAggregatedList`
* for aggregated lists of operations.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -283,7 +283,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -294,7 +294,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/OperationList.php b/Compute/src/V1/OperationList.php
index 4e6b1b077f64..f8dd72fbf57b 100644
--- a/Compute/src/V1/OperationList.php
+++ b/Compute/src/V1/OperationList.php
@@ -29,7 +29,7 @@ class OperationList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Always `compute#operations` for Operations
+ * Output only. [Output Only] Type of resource. Always `compute#operations` for Operations
* resource.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -71,7 +71,7 @@ class OperationList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\Operation>|\Google\Protobuf\Internal\RepeatedField $items
* [Output Only] A list of Operation resources.
* @type string $kind
- * [Output Only] Type of resource. Always `compute#operations` for Operations
+ * Output only. [Output Only] Type of resource. Always `compute#operations` for Operations
* resource.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -156,7 +156,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Always `compute#operations` for Operations
+ * Output only. [Output Only] Type of resource. Always `compute#operations` for Operations
* resource.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -178,7 +178,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Always `compute#operations` for Operations
+ * Output only. [Output Only] Type of resource. Always `compute#operations` for Operations
* resource.
*
* Generated from protobuf field optional string kind = 3292052;
diff --git a/Compute/src/V1/OrganizationSecurityPoliciesListAssociationsResponse.php b/Compute/src/V1/OrganizationSecurityPoliciesListAssociationsResponse.php
index b333dad87f7e..818b8d6fc5bc 100644
--- a/Compute/src/V1/OrganizationSecurityPoliciesListAssociationsResponse.php
+++ b/Compute/src/V1/OrganizationSecurityPoliciesListAssociationsResponse.php
@@ -21,7 +21,7 @@ class OrganizationSecurityPoliciesListAssociationsResponse extends \Google\Proto
*/
private $associations;
/**
- * [Output Only] Type of securityPolicy associations. Alwayscompute#organizationSecurityPoliciesListAssociations for lists
+ * Output only. [Output Only] Type of securityPolicy associations. Alwayscompute#organizationSecurityPoliciesListAssociations for lists
* of securityPolicy associations.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -37,7 +37,7 @@ class OrganizationSecurityPoliciesListAssociationsResponse extends \Google\Proto
* @type array<\Google\Cloud\Compute\V1\SecurityPolicyAssociation>|\Google\Protobuf\Internal\RepeatedField $associations
* A list of associations.
* @type string $kind
- * [Output Only] Type of securityPolicy associations. Alwayscompute#organizationSecurityPoliciesListAssociations for lists
+ * Output only. [Output Only] Type of securityPolicy associations. Alwayscompute#organizationSecurityPoliciesListAssociations for lists
* of securityPolicy associations.
* }
*/
@@ -73,7 +73,7 @@ public function setAssociations($var)
}
/**
- * [Output Only] Type of securityPolicy associations. Alwayscompute#organizationSecurityPoliciesListAssociations for lists
+ * Output only. [Output Only] Type of securityPolicy associations. Alwayscompute#organizationSecurityPoliciesListAssociations for lists
* of securityPolicy associations.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -95,7 +95,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of securityPolicy associations. Alwayscompute#organizationSecurityPoliciesListAssociations for lists
+ * Output only. [Output Only] Type of securityPolicy associations. Alwayscompute#organizationSecurityPoliciesListAssociations for lists
* of securityPolicy associations.
*
* Generated from protobuf field optional string kind = 3292052;
diff --git a/Compute/src/V1/PacketMirroring.php b/Compute/src/V1/PacketMirroring.php
index abe2c56714ce..c657e2f2286b 100644
--- a/Compute/src/V1/PacketMirroring.php
+++ b/Compute/src/V1/PacketMirroring.php
@@ -30,7 +30,7 @@ class PacketMirroring extends \Google\Protobuf\Internal\Message
*/
protected $collector_ilb = null;
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -60,14 +60,14 @@ class PacketMirroring extends \Google\Protobuf\Internal\Message
*/
protected $filter = null;
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
*/
protected $id = null;
/**
- * [Output Only] Type of the resource. Alwayscompute#packetMirroring for packet mirrorings.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#packetMirroring for packet mirrorings.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -117,7 +117,7 @@ class PacketMirroring extends \Google\Protobuf\Internal\Message
*/
protected $region = null;
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -135,7 +135,7 @@ class PacketMirroring extends \Google\Protobuf\Internal\Message
* The specified forwarding rule must have isMirroringCollector
* set to true.
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $description
* An optional description of this resource. Provide this property when you
@@ -149,10 +149,10 @@ class PacketMirroring extends \Google\Protobuf\Internal\Message
* @type \Google\Cloud\Compute\V1\PacketMirroringFilter $filter
* Filter for mirrored traffic. If unspecified, all IPv4 traffic is mirrored.
* @type int|string $id
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type string $kind
- * [Output Only] Type of the resource. Alwayscompute#packetMirroring for packet mirrorings.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#packetMirroring for packet mirrorings.
* @type \Google\Cloud\Compute\V1\PacketMirroringMirroredResourceInfo $mirrored_resources
* PacketMirroring mirroredResourceInfos.
* MirroredResourceInfo specifies a set of mirrored VM instances, subnetworks
@@ -178,7 +178,7 @@ class PacketMirroring extends \Google\Protobuf\Internal\Message
* @type string $region
* [Output Only] URI of the region where the packetMirroring resides.
* @type string $self_link
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
* }
*/
public function __construct($data = NULL) {
@@ -229,7 +229,7 @@ public function setCollectorIlb($var)
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -251,7 +251,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -385,7 +385,7 @@ public function setFilter($var)
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -407,7 +407,7 @@ public function clearId()
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -423,7 +423,7 @@ public function setId($var)
}
/**
- * [Output Only] Type of the resource. Alwayscompute#packetMirroring for packet mirrorings.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#packetMirroring for packet mirrorings.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -444,7 +444,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Alwayscompute#packetMirroring for packet mirrorings.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#packetMirroring for packet mirrorings.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -667,7 +667,7 @@ public function setRegion($var)
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -688,7 +688,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/PacketMirroringAggregatedList.php b/Compute/src/V1/PacketMirroringAggregatedList.php
index 704fdce6dba6..1c5c9c09e379 100644
--- a/Compute/src/V1/PacketMirroringAggregatedList.php
+++ b/Compute/src/V1/PacketMirroringAggregatedList.php
@@ -28,7 +28,7 @@ class PacketMirroringAggregatedList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -44,13 +44,13 @@ class PacketMirroringAggregatedList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
@@ -73,7 +73,7 @@ class PacketMirroringAggregatedList extends \Google\Protobuf\Internal\Message
* @type array|\Google\Protobuf\Internal\MapField $items
* A list of PacketMirroring resources.
* @type string $kind
- * Type of resource.
+ * Output only. Type of resource.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -81,9 +81,9 @@ class PacketMirroringAggregatedList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -156,7 +156,7 @@ public function setItems($var)
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -177,7 +177,7 @@ public function clearKind()
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -236,7 +236,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -257,7 +257,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -272,7 +272,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -283,7 +283,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/PacketMirroringForwardingRuleInfo.php b/Compute/src/V1/PacketMirroringForwardingRuleInfo.php
index 596d1c79215d..3e9e5bfb7613 100644
--- a/Compute/src/V1/PacketMirroringForwardingRuleInfo.php
+++ b/Compute/src/V1/PacketMirroringForwardingRuleInfo.php
@@ -15,7 +15,7 @@
class PacketMirroringForwardingRuleInfo extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Unique identifier for the forwarding rule; defined by the
+ * Output only. [Output Only] Unique identifier for the forwarding rule; defined by the
* server.
*
* Generated from protobuf field optional string canonical_url = 512294820;
@@ -36,7 +36,7 @@ class PacketMirroringForwardingRuleInfo extends \Google\Protobuf\Internal\Messag
* Optional. Data for populating the Message object.
*
* @type string $canonical_url
- * [Output Only] Unique identifier for the forwarding rule; defined by the
+ * Output only. [Output Only] Unique identifier for the forwarding rule; defined by the
* server.
* @type string $url
* Resource URL to the forwarding rule representing the ILB
@@ -49,7 +49,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Unique identifier for the forwarding rule; defined by the
+ * Output only. [Output Only] Unique identifier for the forwarding rule; defined by the
* server.
*
* Generated from protobuf field optional string canonical_url = 512294820;
@@ -71,7 +71,7 @@ public function clearCanonicalUrl()
}
/**
- * [Output Only] Unique identifier for the forwarding rule; defined by the
+ * Output only. [Output Only] Unique identifier for the forwarding rule; defined by the
* server.
*
* Generated from protobuf field optional string canonical_url = 512294820;
diff --git a/Compute/src/V1/PacketMirroringList.php b/Compute/src/V1/PacketMirroringList.php
index 9bb0c4a64f74..53ddf9e33184 100644
--- a/Compute/src/V1/PacketMirroringList.php
+++ b/Compute/src/V1/PacketMirroringList.php
@@ -28,7 +28,7 @@ class PacketMirroringList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Always compute#packetMirroring
+ * Output only. [Output Only] Type of resource. Always compute#packetMirroring
* for packetMirrorings.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -45,7 +45,7 @@ class PacketMirroringList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -68,7 +68,7 @@ class PacketMirroringList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\PacketMirroring>|\Google\Protobuf\Internal\RepeatedField $items
* A list of PacketMirroring resources.
* @type string $kind
- * [Output Only] Type of resource. Always compute#packetMirroring
+ * Output only. [Output Only] Type of resource. Always compute#packetMirroring
* for packetMirrorings.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -77,7 +77,7 @@ class PacketMirroringList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -150,7 +150,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Always compute#packetMirroring
+ * Output only. [Output Only] Type of resource. Always compute#packetMirroring
* for packetMirrorings.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -172,7 +172,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Always compute#packetMirroring
+ * Output only. [Output Only] Type of resource. Always compute#packetMirroring
* for packetMirrorings.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -232,7 +232,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -253,7 +253,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/PacketMirroringMirroredResourceInfoInstanceInfo.php b/Compute/src/V1/PacketMirroringMirroredResourceInfoInstanceInfo.php
index 99d4e2ba8b5e..125661fc0a5e 100644
--- a/Compute/src/V1/PacketMirroringMirroredResourceInfoInstanceInfo.php
+++ b/Compute/src/V1/PacketMirroringMirroredResourceInfoInstanceInfo.php
@@ -15,7 +15,7 @@
class PacketMirroringMirroredResourceInfoInstanceInfo extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Unique identifier for the instance; defined by the
+ * Output only. [Output Only] Unique identifier for the instance; defined by the
* server.
*
* Generated from protobuf field optional string canonical_url = 512294820;
@@ -35,7 +35,7 @@ class PacketMirroringMirroredResourceInfoInstanceInfo extends \Google\Protobuf\I
* Optional. Data for populating the Message object.
*
* @type string $canonical_url
- * [Output Only] Unique identifier for the instance; defined by the
+ * Output only. [Output Only] Unique identifier for the instance; defined by the
* server.
* @type string $url
* Resource URL to the virtual machine instance which is being mirrored.
@@ -47,7 +47,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Unique identifier for the instance; defined by the
+ * Output only. [Output Only] Unique identifier for the instance; defined by the
* server.
*
* Generated from protobuf field optional string canonical_url = 512294820;
@@ -69,7 +69,7 @@ public function clearCanonicalUrl()
}
/**
- * [Output Only] Unique identifier for the instance; defined by the
+ * Output only. [Output Only] Unique identifier for the instance; defined by the
* server.
*
* Generated from protobuf field optional string canonical_url = 512294820;
diff --git a/Compute/src/V1/PacketMirroringMirroredResourceInfoSubnetInfo.php b/Compute/src/V1/PacketMirroringMirroredResourceInfoSubnetInfo.php
index 035a715f5cf6..0258fc81a233 100644
--- a/Compute/src/V1/PacketMirroringMirroredResourceInfoSubnetInfo.php
+++ b/Compute/src/V1/PacketMirroringMirroredResourceInfoSubnetInfo.php
@@ -15,7 +15,7 @@
class PacketMirroringMirroredResourceInfoSubnetInfo extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Unique identifier for the subnetwork; defined by the
+ * Output only. [Output Only] Unique identifier for the subnetwork; defined by the
* server.
*
* Generated from protobuf field optional string canonical_url = 512294820;
@@ -36,7 +36,7 @@ class PacketMirroringMirroredResourceInfoSubnetInfo extends \Google\Protobuf\Int
* Optional. Data for populating the Message object.
*
* @type string $canonical_url
- * [Output Only] Unique identifier for the subnetwork; defined by the
+ * Output only. [Output Only] Unique identifier for the subnetwork; defined by the
* server.
* @type string $url
* Resource URL to the subnetwork for which
@@ -49,7 +49,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Unique identifier for the subnetwork; defined by the
+ * Output only. [Output Only] Unique identifier for the subnetwork; defined by the
* server.
*
* Generated from protobuf field optional string canonical_url = 512294820;
@@ -71,7 +71,7 @@ public function clearCanonicalUrl()
}
/**
- * [Output Only] Unique identifier for the subnetwork; defined by the
+ * Output only. [Output Only] Unique identifier for the subnetwork; defined by the
* server.
*
* Generated from protobuf field optional string canonical_url = 512294820;
diff --git a/Compute/src/V1/PacketMirroringNetworkInfo.php b/Compute/src/V1/PacketMirroringNetworkInfo.php
index f6d592f09fbd..aebf928a8c81 100644
--- a/Compute/src/V1/PacketMirroringNetworkInfo.php
+++ b/Compute/src/V1/PacketMirroringNetworkInfo.php
@@ -15,7 +15,7 @@
class PacketMirroringNetworkInfo extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Unique identifier for the network; defined by the server.
+ * Output only. [Output Only] Unique identifier for the network; defined by the server.
*
* Generated from protobuf field optional string canonical_url = 512294820;
*/
@@ -34,7 +34,7 @@ class PacketMirroringNetworkInfo extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $canonical_url
- * [Output Only] Unique identifier for the network; defined by the server.
+ * Output only. [Output Only] Unique identifier for the network; defined by the server.
* @type string $url
* URL of the network resource.
* }
@@ -45,7 +45,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Unique identifier for the network; defined by the server.
+ * Output only. [Output Only] Unique identifier for the network; defined by the server.
*
* Generated from protobuf field optional string canonical_url = 512294820;
* @return string
@@ -66,7 +66,7 @@ public function clearCanonicalUrl()
}
/**
- * [Output Only] Unique identifier for the network; defined by the server.
+ * Output only. [Output Only] Unique identifier for the network; defined by the server.
*
* Generated from protobuf field optional string canonical_url = 512294820;
* @param string $var
diff --git a/Compute/src/V1/PathMatcher.php b/Compute/src/V1/PathMatcher.php
index a23297a5d3f0..abe2cff5863c 100644
--- a/Compute/src/V1/PathMatcher.php
+++ b/Compute/src/V1/PathMatcher.php
@@ -122,9 +122,11 @@ class PathMatcher extends \Google\Protobuf\Internal\Message
protected $name = null;
/**
* The list of path rules. Use this list instead of routeRules
- * when routing based on simple path matching is all that's required. The
- * order by which path rules are specified does not matter. Matches are always
- * done on the longest-path-first basis.
+ * when routing based on simple path matching is all that's required. A path
+ * rule can only include a wildcard character (*) after a
+ * forward slash character ("/").
+ * The order by which path rules are specified does not matter.
+ * Matches are always done on the longest-path-first basis.
* For example: a pathRule with a path /a/b/c/* will match
* before /a/b/* irrespective of the order in which those paths appear in this
* list.
@@ -226,9 +228,11 @@ class PathMatcher extends \Google\Protobuf\Internal\Message
* The name to which this PathMatcher is referred by theHostRule.
* @type array<\Google\Cloud\Compute\V1\PathRule>|\Google\Protobuf\Internal\RepeatedField $path_rules
* The list of path rules. Use this list instead of routeRules
- * when routing based on simple path matching is all that's required. The
- * order by which path rules are specified does not matter. Matches are always
- * done on the longest-path-first basis.
+ * when routing based on simple path matching is all that's required. A path
+ * rule can only include a wildcard character (*) after a
+ * forward slash character ("/").
+ * The order by which path rules are specified does not matter.
+ * Matches are always done on the longest-path-first basis.
* For example: a pathRule with a path /a/b/c/* will match
* before /a/b/* irrespective of the order in which those paths appear in this
* list.
@@ -621,9 +625,11 @@ public function setName($var)
/**
* The list of path rules. Use this list instead of routeRules
- * when routing based on simple path matching is all that's required. The
- * order by which path rules are specified does not matter. Matches are always
- * done on the longest-path-first basis.
+ * when routing based on simple path matching is all that's required. A path
+ * rule can only include a wildcard character (*) after a
+ * forward slash character ("/").
+ * The order by which path rules are specified does not matter.
+ * Matches are always done on the longest-path-first basis.
* For example: a pathRule with a path /a/b/c/* will match
* before /a/b/* irrespective of the order in which those paths appear in this
* list.
@@ -639,9 +645,11 @@ public function getPathRules()
/**
* The list of path rules. Use this list instead of routeRules
- * when routing based on simple path matching is all that's required. The
- * order by which path rules are specified does not matter. Matches are always
- * done on the longest-path-first basis.
+ * when routing based on simple path matching is all that's required. A path
+ * rule can only include a wildcard character (*) after a
+ * forward slash character ("/").
+ * The order by which path rules are specified does not matter.
+ * Matches are always done on the longest-path-first basis.
* For example: a pathRule with a path /a/b/c/* will match
* before /a/b/* irrespective of the order in which those paths appear in this
* list.
diff --git a/Compute/src/V1/PreviewFeature.php b/Compute/src/V1/PreviewFeature.php
index 739e4b0efd82..a35cb1b029cd 100644
--- a/Compute/src/V1/PreviewFeature.php
+++ b/Compute/src/V1/PreviewFeature.php
@@ -23,27 +23,27 @@ class PreviewFeature extends \Google\Protobuf\Internal\Message
*/
protected $activation_status = null;
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
*/
protected $creation_timestamp = null;
/**
- * [Output Only] Description of the feature.
+ * Output only. [Output Only] Description of the feature.
*
* Generated from protobuf field optional string description = 422937596;
*/
protected $description = null;
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
*/
protected $id = null;
/**
- * [Output only] The type of the feature. Always "compute#previewFeature" for
+ * Output only. [Output only] The type of the feature. Always "compute#previewFeature" for
* preview features.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -62,13 +62,13 @@ class PreviewFeature extends \Google\Protobuf\Internal\Message
*/
protected $rollout_operation = null;
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output only] Status of the feature.
+ * Output only. [Output only] Status of the feature.
*
* Generated from protobuf field optional .google.cloud.compute.v1.PreviewFeatureStatus status = 181260274;
*/
@@ -84,24 +84,24 @@ class PreviewFeature extends \Google\Protobuf\Internal\Message
* Specifies whether the feature is enabled or disabled.
* Check the ActivationStatus enum for the list of possible values.
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $description
- * [Output Only] Description of the feature.
+ * Output only. [Output Only] Description of the feature.
* @type int|string $id
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type string $kind
- * [Output only] The type of the feature. Always "compute#previewFeature" for
+ * Output only. [Output only] The type of the feature. Always "compute#previewFeature" for
* preview features.
* @type string $name
* Name of the feature.
* @type \Google\Cloud\Compute\V1\PreviewFeatureRolloutOperation $rollout_operation
* Rollout operation of the feature.
* @type string $self_link
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
* @type \Google\Cloud\Compute\V1\PreviewFeatureStatus $status
- * [Output only] Status of the feature.
+ * Output only. [Output only] Status of the feature.
* }
*/
public function __construct($data = NULL) {
@@ -148,7 +148,7 @@ public function setActivationStatus($var)
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -170,7 +170,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -186,7 +186,7 @@ public function setCreationTimestamp($var)
}
/**
- * [Output Only] Description of the feature.
+ * Output only. [Output Only] Description of the feature.
*
* Generated from protobuf field optional string description = 422937596;
* @return string
@@ -207,7 +207,7 @@ public function clearDescription()
}
/**
- * [Output Only] Description of the feature.
+ * Output only. [Output Only] Description of the feature.
*
* Generated from protobuf field optional string description = 422937596;
* @param string $var
@@ -222,7 +222,7 @@ public function setDescription($var)
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -244,7 +244,7 @@ public function clearId()
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -260,7 +260,7 @@ public function setId($var)
}
/**
- * [Output only] The type of the feature. Always "compute#previewFeature" for
+ * Output only. [Output only] The type of the feature. Always "compute#previewFeature" for
* preview features.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -282,7 +282,7 @@ public function clearKind()
}
/**
- * [Output only] The type of the feature. Always "compute#previewFeature" for
+ * Output only. [Output only] The type of the feature. Always "compute#previewFeature" for
* preview features.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -370,7 +370,7 @@ public function setRolloutOperation($var)
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -391,7 +391,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -406,7 +406,7 @@ public function setSelfLink($var)
}
/**
- * [Output only] Status of the feature.
+ * Output only. [Output only] Status of the feature.
*
* Generated from protobuf field optional .google.cloud.compute.v1.PreviewFeatureStatus status = 181260274;
* @return \Google\Cloud\Compute\V1\PreviewFeatureStatus|null
@@ -427,7 +427,7 @@ public function clearStatus()
}
/**
- * [Output only] Status of the feature.
+ * Output only. [Output only] Status of the feature.
*
* Generated from protobuf field optional .google.cloud.compute.v1.PreviewFeatureStatus status = 181260274;
* @param \Google\Cloud\Compute\V1\PreviewFeatureStatus $var
diff --git a/Compute/src/V1/PreviewFeatureList.php b/Compute/src/V1/PreviewFeatureList.php
index 69ab7a92bd89..94e4f090732b 100644
--- a/Compute/src/V1/PreviewFeatureList.php
+++ b/Compute/src/V1/PreviewFeatureList.php
@@ -41,13 +41,13 @@ class PreviewFeatureList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* end_interface: MixerListResponseWithEtagBuilder
*
* Generated from protobuf field repeated string unreachables = 243372063;
@@ -78,9 +78,9 @@ class PreviewFeatureList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* end_interface: MixerListResponseWithEtagBuilder
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
@@ -230,7 +230,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -251,7 +251,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -266,7 +266,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* end_interface: MixerListResponseWithEtagBuilder
*
* Generated from protobuf field repeated string unreachables = 243372063;
@@ -278,7 +278,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* end_interface: MixerListResponseWithEtagBuilder
*
* Generated from protobuf field repeated string unreachables = 243372063;
diff --git a/Compute/src/V1/PreviewFeatureStatus.php b/Compute/src/V1/PreviewFeatureStatus.php
index 4aa15b6f21e5..3cdca0b60aa1 100644
--- a/Compute/src/V1/PreviewFeatureStatus.php
+++ b/Compute/src/V1/PreviewFeatureStatus.php
@@ -16,13 +16,13 @@
class PreviewFeatureStatus extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] The description of the feature.
+ * Output only. [Output Only] The description of the feature.
*
* Generated from protobuf field optional string description = 422937596;
*/
protected $description = null;
/**
- * [Output Only] Link to the public documentation for the feature.
+ * Output only. [Output Only] Link to the public documentation for the feature.
*
* Generated from protobuf field optional string help_link = 223410744;
*/
@@ -39,9 +39,9 @@ class PreviewFeatureStatus extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $description
- * [Output Only] The description of the feature.
+ * Output only. [Output Only] The description of the feature.
* @type string $help_link
- * [Output Only] Link to the public documentation for the feature.
+ * Output only. [Output Only] Link to the public documentation for the feature.
* @type \Google\Cloud\Compute\V1\PreviewFeatureStatusReleaseStatus $release_status
* }
*/
@@ -51,7 +51,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] The description of the feature.
+ * Output only. [Output Only] The description of the feature.
*
* Generated from protobuf field optional string description = 422937596;
* @return string
@@ -72,7 +72,7 @@ public function clearDescription()
}
/**
- * [Output Only] The description of the feature.
+ * Output only. [Output Only] The description of the feature.
*
* Generated from protobuf field optional string description = 422937596;
* @param string $var
@@ -87,7 +87,7 @@ public function setDescription($var)
}
/**
- * [Output Only] Link to the public documentation for the feature.
+ * Output only. [Output Only] Link to the public documentation for the feature.
*
* Generated from protobuf field optional string help_link = 223410744;
* @return string
@@ -108,7 +108,7 @@ public function clearHelpLink()
}
/**
- * [Output Only] Link to the public documentation for the feature.
+ * Output only. [Output Only] Link to the public documentation for the feature.
*
* Generated from protobuf field optional string help_link = 223410744;
* @param string $var
diff --git a/Compute/src/V1/PreviewFeatureStatusReleaseStatus.php b/Compute/src/V1/PreviewFeatureStatusReleaseStatus.php
index c10c6d6bfe7a..086e302f3b86 100644
--- a/Compute/src/V1/PreviewFeatureStatusReleaseStatus.php
+++ b/Compute/src/V1/PreviewFeatureStatusReleaseStatus.php
@@ -16,7 +16,7 @@
class PreviewFeatureStatusReleaseStatus extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] The stage of the feature.
+ * Output only. [Output Only] The stage of the feature.
* Check the Stage enum for the list of possible values.
*
* Generated from protobuf field optional string stage = 109757182;
@@ -36,7 +36,7 @@ class PreviewFeatureStatusReleaseStatus extends \Google\Protobuf\Internal\Messag
* Optional. Data for populating the Message object.
*
* @type string $stage
- * [Output Only] The stage of the feature.
+ * Output only. [Output Only] The stage of the feature.
* Check the Stage enum for the list of possible values.
* @type \Google\Cloud\Compute\V1\Date $update_date
* Output only. The last date when a feature transitioned between ReleaseStatuses.
@@ -48,7 +48,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] The stage of the feature.
+ * Output only. [Output Only] The stage of the feature.
* Check the Stage enum for the list of possible values.
*
* Generated from protobuf field optional string stage = 109757182;
@@ -70,7 +70,7 @@ public function clearStage()
}
/**
- * [Output Only] The stage of the feature.
+ * Output only. [Output Only] The stage of the feature.
* Check the Stage enum for the list of possible values.
*
* Generated from protobuf field optional string stage = 109757182;
diff --git a/Compute/src/V1/PreviewFeatureStatusReleaseStatus/Stage.php b/Compute/src/V1/PreviewFeatureStatusReleaseStatus/Stage.php
index 937e2157a833..c6528e040cc3 100644
--- a/Compute/src/V1/PreviewFeatureStatusReleaseStatus/Stage.php
+++ b/Compute/src/V1/PreviewFeatureStatusReleaseStatus/Stage.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] The stage of the feature.
+ * Output only. [Output Only] The stage of the feature.
*
* Protobuf type google.cloud.compute.v1.PreviewFeatureStatusReleaseStatus.Stage
*/
diff --git a/Compute/src/V1/Project.php b/Compute/src/V1/Project.php
index a11aa8393753..69b8912063c9 100644
--- a/Compute/src/V1/Project.php
+++ b/Compute/src/V1/Project.php
@@ -19,7 +19,7 @@
class Project extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] The Cloud Armor tier for this project. It can be one of the
+ * Output only. [Output Only] The Cloud Armor tier for this project. It can be one of the
* following values: CA_STANDARD,CA_ENTERPRISE_PAYGO.
* If this field is not specified, it is assumed to beCA_STANDARD.
* Check the CloudArmorTier enum for the list of possible values.
@@ -78,7 +78,7 @@ class Project extends \Google\Protobuf\Internal\Message
*/
protected $id = null;
/**
- * [Output Only] Type of the resource. Always compute#project for
+ * Output only. [Output Only] Type of the resource. Always compute#project for
* projects.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -111,7 +111,7 @@ class Project extends \Google\Protobuf\Internal\Message
*/
protected $usage_export_location = null;
/**
- * [Output Only] Default internal DNS setting used by VMs running in
+ * Output only. [Output Only] Default internal DNS setting used by VMs running in
* this project.
* Check the VmDnsSetting enum for the list of possible values.
*
@@ -135,7 +135,7 @@ class Project extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $cloud_armor_tier
- * [Output Only] The Cloud Armor tier for this project. It can be one of the
+ * Output only. [Output Only] The Cloud Armor tier for this project. It can be one of the
* following values: CA_STANDARD,CA_ENTERPRISE_PAYGO.
* If this field is not specified, it is assumed to beCA_STANDARD.
* Check the CloudArmorTier enum for the list of possible values.
@@ -162,7 +162,7 @@ class Project extends \Google\Protobuf\Internal\Message
* defined by the server. This is *not* the project ID, and is
* just a unique ID used by Compute Engine to identify resources.
* @type string $kind
- * [Output Only] Type of the resource. Always compute#project for
+ * Output only. [Output Only] Type of the resource. Always compute#project for
* projects.
* @type string $name
* The project ID. For example: my-example-project. Use the
@@ -175,7 +175,7 @@ class Project extends \Google\Protobuf\Internal\Message
* An optional naming prefix for daily usage reports and the Google Cloud
* Storage bucket where they are stored.
* @type string $vm_dns_setting
- * [Output Only] Default internal DNS setting used by VMs running in
+ * Output only. [Output Only] Default internal DNS setting used by VMs running in
* this project.
* Check the VmDnsSetting enum for the list of possible values.
* @type string $xpn_project_status
@@ -191,7 +191,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] The Cloud Armor tier for this project. It can be one of the
+ * Output only. [Output Only] The Cloud Armor tier for this project. It can be one of the
* following values: CA_STANDARD,CA_ENTERPRISE_PAYGO.
* If this field is not specified, it is assumed to beCA_STANDARD.
* Check the CloudArmorTier enum for the list of possible values.
@@ -215,7 +215,7 @@ public function clearCloudArmorTier()
}
/**
- * [Output Only] The Cloud Armor tier for this project. It can be one of the
+ * Output only. [Output Only] The Cloud Armor tier for this project. It can be one of the
* following values: CA_STANDARD,CA_ENTERPRISE_PAYGO.
* If this field is not specified, it is assumed to beCA_STANDARD.
* Check the CloudArmorTier enum for the list of possible values.
@@ -491,7 +491,7 @@ public function setId($var)
}
/**
- * [Output Only] Type of the resource. Always compute#project for
+ * Output only. [Output Only] Type of the resource. Always compute#project for
* projects.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -513,7 +513,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Always compute#project for
+ * Output only. [Output Only] Type of the resource. Always compute#project for
* projects.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -667,7 +667,7 @@ public function setUsageExportLocation($var)
}
/**
- * [Output Only] Default internal DNS setting used by VMs running in
+ * Output only. [Output Only] Default internal DNS setting used by VMs running in
* this project.
* Check the VmDnsSetting enum for the list of possible values.
*
@@ -690,7 +690,7 @@ public function clearVmDnsSetting()
}
/**
- * [Output Only] Default internal DNS setting used by VMs running in
+ * Output only. [Output Only] Default internal DNS setting used by VMs running in
* this project.
* Check the VmDnsSetting enum for the list of possible values.
*
diff --git a/Compute/src/V1/Project/CloudArmorTier.php b/Compute/src/V1/Project/CloudArmorTier.php
index cf35673a037b..5db068a1f4df 100644
--- a/Compute/src/V1/Project/CloudArmorTier.php
+++ b/Compute/src/V1/Project/CloudArmorTier.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] The Cloud Armor tier for this project. It can be one of the
+ * Output only. [Output Only] The Cloud Armor tier for this project. It can be one of the
* following values: CA_STANDARD,CA_ENTERPRISE_PAYGO.
* If this field is not specified, it is assumed to beCA_STANDARD.
*
diff --git a/Compute/src/V1/Project/VmDnsSetting.php b/Compute/src/V1/Project/VmDnsSetting.php
index 3a554e318c6f..da447f40b9e8 100644
--- a/Compute/src/V1/Project/VmDnsSetting.php
+++ b/Compute/src/V1/Project/VmDnsSetting.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] Default internal DNS setting used by VMs running in
+ * Output only. [Output Only] Default internal DNS setting used by VMs running in
* this project.
*
* Protobuf type google.cloud.compute.v1.Project.VmDnsSetting
diff --git a/Compute/src/V1/ProjectsGetXpnResources.php b/Compute/src/V1/ProjectsGetXpnResources.php
index d4af33465531..179662fc285a 100644
--- a/Compute/src/V1/ProjectsGetXpnResources.php
+++ b/Compute/src/V1/ProjectsGetXpnResources.php
@@ -15,14 +15,14 @@
class ProjectsGetXpnResources extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Type of resource. Alwayscompute#projectsGetXpnResources for lists of service resources
+ * Output only. [Output Only] Type of resource. Alwayscompute#projectsGetXpnResources for lists of service resources
* (a.k.a service projects)
*
* Generated from protobuf field optional string kind = 3292052;
*/
protected $kind = null;
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -46,10 +46,10 @@ class ProjectsGetXpnResources extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#projectsGetXpnResources for lists of service resources
+ * Output only. [Output Only] Type of resource. Alwayscompute#projectsGetXpnResources for lists of service resources
* (a.k.a service projects)
* @type string $next_page_token
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -65,7 +65,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Type of resource. Alwayscompute#projectsGetXpnResources for lists of service resources
+ * Output only. [Output Only] Type of resource. Alwayscompute#projectsGetXpnResources for lists of service resources
* (a.k.a service projects)
*
* Generated from protobuf field optional string kind = 3292052;
@@ -87,7 +87,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#projectsGetXpnResources for lists of service resources
+ * Output only. [Output Only] Type of resource. Alwayscompute#projectsGetXpnResources for lists of service resources
* (a.k.a service projects)
*
* Generated from protobuf field optional string kind = 3292052;
@@ -103,7 +103,7 @@ public function setKind($var)
}
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -128,7 +128,7 @@ public function clearNextPageToken()
}
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
diff --git a/Compute/src/V1/PublicAdvertisedPrefix.php b/Compute/src/V1/PublicAdvertisedPrefix.php
index 303e5c708528..eb55d9331144 100644
--- a/Compute/src/V1/PublicAdvertisedPrefix.php
+++ b/Compute/src/V1/PublicAdvertisedPrefix.php
@@ -18,14 +18,14 @@
class PublicAdvertisedPrefix extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] The version of BYOIP API.
+ * Output only. [Output Only] The version of BYOIP API.
* Check the ByoipApiVersion enum for the list of possible values.
*
* Generated from protobuf field optional string byoip_api_version = 162683283;
*/
protected $byoip_api_version = null;
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -57,7 +57,7 @@ class PublicAdvertisedPrefix extends \Google\Protobuf\Internal\Message
*/
protected $fingerprint = null;
/**
- * [Output Only] The unique identifier for the resource type. The server
+ * Output only. [Output Only] The unique identifier for the resource type. The server
* generates this identifier.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -78,7 +78,7 @@ class PublicAdvertisedPrefix extends \Google\Protobuf\Internal\Message
*/
protected $ipv6_access_type = null;
/**
- * [Output Only] Type of the resource. Alwayscompute#publicAdvertisedPrefix for public advertised prefixes.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#publicAdvertisedPrefix for public advertised prefixes.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -111,14 +111,14 @@ class PublicAdvertisedPrefix extends \Google\Protobuf\Internal\Message
*/
protected $pdp_scope = null;
/**
- * [Output Only] The list of public delegated prefixes that exist for this
+ * Output only. [Output Only] The list of public delegated prefixes that exist for this
* public advertised prefix.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.PublicAdvertisedPrefixPublicDelegatedPrefix public_delegated_prefixs = 425811723;
*/
private $public_delegated_prefixs;
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -152,10 +152,10 @@ class PublicAdvertisedPrefix extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $byoip_api_version
- * [Output Only] The version of BYOIP API.
+ * Output only. [Output Only] The version of BYOIP API.
* Check the ByoipApiVersion enum for the list of possible values.
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $description
* An optional description of this resource. Provide this property when you
@@ -171,7 +171,7 @@ class PublicAdvertisedPrefix extends \Google\Protobuf\Internal\Message
* To see the latest fingerprint, make a get() request to
* retrieve a PublicAdvertisedPrefix.
* @type int|string $id
- * [Output Only] The unique identifier for the resource type. The server
+ * Output only. [Output Only] The unique identifier for the resource type. The server
* generates this identifier.
* @type string $ip_cidr_range
* The address range, in CIDR format, represented by this public advertised
@@ -180,7 +180,7 @@ class PublicAdvertisedPrefix extends \Google\Protobuf\Internal\Message
* The internet access type for IPv6 Public Advertised Prefixes.
* Check the Ipv6AccessType enum for the list of possible values.
* @type string $kind
- * [Output Only] Type of the resource. Alwayscompute#publicAdvertisedPrefix for public advertised prefixes.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#publicAdvertisedPrefix for public advertised prefixes.
* @type string $name
* Name of the resource. Provided by the client when the resource is created.
* The name must be 1-63 characters long, and comply withRFC1035.
@@ -201,10 +201,10 @@ class PublicAdvertisedPrefix extends \Google\Protobuf\Internal\Message
* supported in BYOIP V2.
* Check the PdpScope enum for the list of possible values.
* @type array<\Google\Cloud\Compute\V1\PublicAdvertisedPrefixPublicDelegatedPrefix>|\Google\Protobuf\Internal\RepeatedField $public_delegated_prefixs
- * [Output Only] The list of public delegated prefixes that exist for this
+ * Output only. [Output Only] The list of public delegated prefixes that exist for this
* public advertised prefix.
* @type string $self_link
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
* @type string $shared_secret
* [Output Only] The shared secret to be used for reverse DNS verification.
* @type string $status
@@ -226,7 +226,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] The version of BYOIP API.
+ * Output only. [Output Only] The version of BYOIP API.
* Check the ByoipApiVersion enum for the list of possible values.
*
* Generated from protobuf field optional string byoip_api_version = 162683283;
@@ -248,7 +248,7 @@ public function clearByoipApiVersion()
}
/**
- * [Output Only] The version of BYOIP API.
+ * Output only. [Output Only] The version of BYOIP API.
* Check the ByoipApiVersion enum for the list of possible values.
*
* Generated from protobuf field optional string byoip_api_version = 162683283;
@@ -264,7 +264,7 @@ public function setByoipApiVersion($var)
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -286,7 +286,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -424,7 +424,7 @@ public function setFingerprint($var)
}
/**
- * [Output Only] The unique identifier for the resource type. The server
+ * Output only. [Output Only] The unique identifier for the resource type. The server
* generates this identifier.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -446,7 +446,7 @@ public function clearId()
}
/**
- * [Output Only] The unique identifier for the resource type. The server
+ * Output only. [Output Only] The unique identifier for the resource type. The server
* generates this identifier.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -538,7 +538,7 @@ public function setIpv6AccessType($var)
}
/**
- * [Output Only] Type of the resource. Alwayscompute#publicAdvertisedPrefix for public advertised prefixes.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#publicAdvertisedPrefix for public advertised prefixes.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -559,7 +559,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Alwayscompute#publicAdvertisedPrefix for public advertised prefixes.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#publicAdvertisedPrefix for public advertised prefixes.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -676,7 +676,7 @@ public function setPdpScope($var)
}
/**
- * [Output Only] The list of public delegated prefixes that exist for this
+ * Output only. [Output Only] The list of public delegated prefixes that exist for this
* public advertised prefix.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.PublicAdvertisedPrefixPublicDelegatedPrefix public_delegated_prefixs = 425811723;
@@ -688,7 +688,7 @@ public function getPublicDelegatedPrefixs()
}
/**
- * [Output Only] The list of public delegated prefixes that exist for this
+ * Output only. [Output Only] The list of public delegated prefixes that exist for this
* public advertised prefix.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.PublicAdvertisedPrefixPublicDelegatedPrefix public_delegated_prefixs = 425811723;
@@ -704,7 +704,7 @@ public function setPublicDelegatedPrefixs($var)
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -725,7 +725,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/PublicAdvertisedPrefix/ByoipApiVersion.php b/Compute/src/V1/PublicAdvertisedPrefix/ByoipApiVersion.php
index 58658781e224..73a9c3c59dc9 100644
--- a/Compute/src/V1/PublicAdvertisedPrefix/ByoipApiVersion.php
+++ b/Compute/src/V1/PublicAdvertisedPrefix/ByoipApiVersion.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] The version of BYOIP API.
+ * Output only. [Output Only] The version of BYOIP API.
*
* Protobuf type google.cloud.compute.v1.PublicAdvertisedPrefix.ByoipApiVersion
*/
diff --git a/Compute/src/V1/PublicAdvertisedPrefixList.php b/Compute/src/V1/PublicAdvertisedPrefixList.php
index 67b881d50dfc..b17e82c2b7b6 100644
--- a/Compute/src/V1/PublicAdvertisedPrefixList.php
+++ b/Compute/src/V1/PublicAdvertisedPrefixList.php
@@ -27,7 +27,7 @@ class PublicAdvertisedPrefixList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of the resource. Alwayscompute#publicAdvertisedPrefix for public advertised prefixes.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#publicAdvertisedPrefix for public advertised prefixes.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -66,7 +66,7 @@ class PublicAdvertisedPrefixList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\PublicAdvertisedPrefix>|\Google\Protobuf\Internal\RepeatedField $items
* A list of PublicAdvertisedPrefix resources.
* @type string $kind
- * [Output Only] Type of the resource. Alwayscompute#publicAdvertisedPrefix for public advertised prefixes.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#publicAdvertisedPrefix for public advertised prefixes.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -147,7 +147,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of the resource. Alwayscompute#publicAdvertisedPrefix for public advertised prefixes.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#publicAdvertisedPrefix for public advertised prefixes.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -168,7 +168,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Alwayscompute#publicAdvertisedPrefix for public advertised prefixes.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#publicAdvertisedPrefix for public advertised prefixes.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
diff --git a/Compute/src/V1/PublicDelegatedPrefix.php b/Compute/src/V1/PublicDelegatedPrefix.php
index 3406e735f7b7..6245f93665b1 100644
--- a/Compute/src/V1/PublicDelegatedPrefix.php
+++ b/Compute/src/V1/PublicDelegatedPrefix.php
@@ -28,14 +28,14 @@ class PublicDelegatedPrefix extends \Google\Protobuf\Internal\Message
*/
protected $allocatable_prefix_length = null;
/**
- * [Output Only] The version of BYOIP API.
+ * Output only. [Output Only] The version of BYOIP API.
* Check the ByoipApiVersion enum for the list of possible values.
*
* Generated from protobuf field optional string byoip_api_version = 162683283;
*/
protected $byoip_api_version = null;
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -48,6 +48,13 @@ class PublicDelegatedPrefix extends \Google\Protobuf\Internal\Message
* Generated from protobuf field optional string description = 422937596;
*/
protected $description = null;
+ /**
+ * Output only. [Output Only] Whether this PDP supports enhanced IPv4 allocations.
+ * Applicable for IPv4 PDPs only.
+ *
+ * Generated from protobuf field optional bool enable_enhanced_ipv4_allocation = 54582253;
+ */
+ protected $enable_enhanced_ipv4_allocation = null;
/**
* Fingerprint of this resource. A hash of the contents stored in this object.
* This field is used in optimistic locking. This field will be ignored when
@@ -61,7 +68,7 @@ class PublicDelegatedPrefix extends \Google\Protobuf\Internal\Message
*/
protected $fingerprint = null;
/**
- * [Output Only] The unique identifier for the resource type. The server
+ * Output only. [Output Only] The unique identifier for the resource type. The server
* generates this identifier.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -75,7 +82,7 @@ class PublicDelegatedPrefix extends \Google\Protobuf\Internal\Message
*/
protected $ip_cidr_range = null;
/**
- * [Output Only] The internet access type for IPv6 Public Delegated Prefixes.
+ * Output only. [Output Only] The internet access type for IPv6 Public Delegated Prefixes.
* Inherited from parent prefix.
* Check the Ipv6AccessType enum for the list of possible values.
*
@@ -89,7 +96,7 @@ class PublicDelegatedPrefix extends \Google\Protobuf\Internal\Message
*/
protected $is_live_migration = null;
/**
- * [Output Only] Type of the resource. Alwayscompute#publicDelegatedPrefix for public delegated prefixes.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#publicDelegatedPrefix for public delegated prefixes.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -128,7 +135,7 @@ class PublicDelegatedPrefix extends \Google\Protobuf\Internal\Message
*/
private $public_delegated_sub_prefixs;
/**
- * [Output Only] URL of the region where the public delegated prefix resides.
+ * Output only. [Output Only] URL of the region where the public delegated prefix resides.
* This field applies only to the region resource. You must specify this
* field as part of the HTTP request URL. It is not settable as a field in
* the request body.
@@ -137,7 +144,7 @@ class PublicDelegatedPrefix extends \Google\Protobuf\Internal\Message
*/
protected $region = null;
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -170,14 +177,17 @@ class PublicDelegatedPrefix extends \Google\Protobuf\Internal\Message
* This field is optional and cannot be set for prefixes in DELEGATION mode.
* It cannot be set for IPv4 prefixes either, and it always defaults to 32.
* @type string $byoip_api_version
- * [Output Only] The version of BYOIP API.
+ * Output only. [Output Only] The version of BYOIP API.
* Check the ByoipApiVersion enum for the list of possible values.
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $description
* An optional description of this resource. Provide this property when you
* create the resource.
+ * @type bool $enable_enhanced_ipv4_allocation
+ * Output only. [Output Only] Whether this PDP supports enhanced IPv4 allocations.
+ * Applicable for IPv4 PDPs only.
* @type string $fingerprint
* Fingerprint of this resource. A hash of the contents stored in this object.
* This field is used in optimistic locking. This field will be ignored when
@@ -187,19 +197,19 @@ class PublicDelegatedPrefix extends \Google\Protobuf\Internal\Message
* To see the latest fingerprint, make a get() request to
* retrieve a PublicDelegatedPrefix.
* @type int|string $id
- * [Output Only] The unique identifier for the resource type. The server
+ * Output only. [Output Only] The unique identifier for the resource type. The server
* generates this identifier.
* @type string $ip_cidr_range
* The IP address range, in CIDR format, represented by this public
* delegated prefix.
* @type string $ipv6_access_type
- * [Output Only] The internet access type for IPv6 Public Delegated Prefixes.
+ * Output only. [Output Only] The internet access type for IPv6 Public Delegated Prefixes.
* Inherited from parent prefix.
* Check the Ipv6AccessType enum for the list of possible values.
* @type bool $is_live_migration
* If true, the prefix will be live migrated.
* @type string $kind
- * [Output Only] Type of the resource. Alwayscompute#publicDelegatedPrefix for public delegated prefixes.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#publicDelegatedPrefix for public delegated prefixes.
* @type string $mode
* The public delegated prefix mode for IPv6 only.
* Check the Mode enum for the list of possible values.
@@ -218,12 +228,12 @@ class PublicDelegatedPrefix extends \Google\Protobuf\Internal\Message
* The list of sub public delegated prefixes that exist for this public
* delegated prefix.
* @type string $region
- * [Output Only] URL of the region where the public delegated prefix resides.
+ * Output only. [Output Only] URL of the region where the public delegated prefix resides.
* This field applies only to the region resource. You must specify this
* field as part of the HTTP request URL. It is not settable as a field in
* the request body.
* @type string $self_link
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
* @type string $status
* [Output Only] The status of the public delegated prefix, which can be one
* of following values:
@@ -284,7 +294,7 @@ public function setAllocatablePrefixLength($var)
}
/**
- * [Output Only] The version of BYOIP API.
+ * Output only. [Output Only] The version of BYOIP API.
* Check the ByoipApiVersion enum for the list of possible values.
*
* Generated from protobuf field optional string byoip_api_version = 162683283;
@@ -306,7 +316,7 @@ public function clearByoipApiVersion()
}
/**
- * [Output Only] The version of BYOIP API.
+ * Output only. [Output Only] The version of BYOIP API.
* Check the ByoipApiVersion enum for the list of possible values.
*
* Generated from protobuf field optional string byoip_api_version = 162683283;
@@ -322,7 +332,7 @@ public function setByoipApiVersion($var)
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -344,7 +354,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -397,6 +407,44 @@ public function setDescription($var)
return $this;
}
+ /**
+ * Output only. [Output Only] Whether this PDP supports enhanced IPv4 allocations.
+ * Applicable for IPv4 PDPs only.
+ *
+ * Generated from protobuf field optional bool enable_enhanced_ipv4_allocation = 54582253;
+ * @return bool
+ */
+ public function getEnableEnhancedIpv4Allocation()
+ {
+ return isset($this->enable_enhanced_ipv4_allocation) ? $this->enable_enhanced_ipv4_allocation : false;
+ }
+
+ public function hasEnableEnhancedIpv4Allocation()
+ {
+ return isset($this->enable_enhanced_ipv4_allocation);
+ }
+
+ public function clearEnableEnhancedIpv4Allocation()
+ {
+ unset($this->enable_enhanced_ipv4_allocation);
+ }
+
+ /**
+ * Output only. [Output Only] Whether this PDP supports enhanced IPv4 allocations.
+ * Applicable for IPv4 PDPs only.
+ *
+ * Generated from protobuf field optional bool enable_enhanced_ipv4_allocation = 54582253;
+ * @param bool $var
+ * @return $this
+ */
+ public function setEnableEnhancedIpv4Allocation($var)
+ {
+ GPBUtil::checkBool($var);
+ $this->enable_enhanced_ipv4_allocation = $var;
+
+ return $this;
+ }
+
/**
* Fingerprint of this resource. A hash of the contents stored in this object.
* This field is used in optimistic locking. This field will be ignored when
@@ -446,7 +494,7 @@ public function setFingerprint($var)
}
/**
- * [Output Only] The unique identifier for the resource type. The server
+ * Output only. [Output Only] The unique identifier for the resource type. The server
* generates this identifier.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -468,7 +516,7 @@ public function clearId()
}
/**
- * [Output Only] The unique identifier for the resource type. The server
+ * Output only. [Output Only] The unique identifier for the resource type. The server
* generates this identifier.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -522,7 +570,7 @@ public function setIpCidrRange($var)
}
/**
- * [Output Only] The internet access type for IPv6 Public Delegated Prefixes.
+ * Output only. [Output Only] The internet access type for IPv6 Public Delegated Prefixes.
* Inherited from parent prefix.
* Check the Ipv6AccessType enum for the list of possible values.
*
@@ -545,7 +593,7 @@ public function clearIpv6AccessType()
}
/**
- * [Output Only] The internet access type for IPv6 Public Delegated Prefixes.
+ * Output only. [Output Only] The internet access type for IPv6 Public Delegated Prefixes.
* Inherited from parent prefix.
* Check the Ipv6AccessType enum for the list of possible values.
*
@@ -598,7 +646,7 @@ public function setIsLiveMigration($var)
}
/**
- * [Output Only] Type of the resource. Alwayscompute#publicDelegatedPrefix for public delegated prefixes.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#publicDelegatedPrefix for public delegated prefixes.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -619,7 +667,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Alwayscompute#publicDelegatedPrefix for public delegated prefixes.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#publicDelegatedPrefix for public delegated prefixes.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -786,7 +834,7 @@ public function setPublicDelegatedSubPrefixs($var)
}
/**
- * [Output Only] URL of the region where the public delegated prefix resides.
+ * Output only. [Output Only] URL of the region where the public delegated prefix resides.
* This field applies only to the region resource. You must specify this
* field as part of the HTTP request URL. It is not settable as a field in
* the request body.
@@ -810,7 +858,7 @@ public function clearRegion()
}
/**
- * [Output Only] URL of the region where the public delegated prefix resides.
+ * Output only. [Output Only] URL of the region where the public delegated prefix resides.
* This field applies only to the region resource. You must specify this
* field as part of the HTTP request URL. It is not settable as a field in
* the request body.
@@ -828,7 +876,7 @@ public function setRegion($var)
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -849,7 +897,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/PublicDelegatedPrefix/ByoipApiVersion.php b/Compute/src/V1/PublicDelegatedPrefix/ByoipApiVersion.php
index 9470d1b65485..90c6a0d54c03 100644
--- a/Compute/src/V1/PublicDelegatedPrefix/ByoipApiVersion.php
+++ b/Compute/src/V1/PublicDelegatedPrefix/ByoipApiVersion.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] The version of BYOIP API.
+ * Output only. [Output Only] The version of BYOIP API.
*
* Protobuf type google.cloud.compute.v1.PublicDelegatedPrefix.ByoipApiVersion
*/
diff --git a/Compute/src/V1/PublicDelegatedPrefix/Ipv6AccessType.php b/Compute/src/V1/PublicDelegatedPrefix/Ipv6AccessType.php
index 9a9d09c4e1a3..90dfc6c868ff 100644
--- a/Compute/src/V1/PublicDelegatedPrefix/Ipv6AccessType.php
+++ b/Compute/src/V1/PublicDelegatedPrefix/Ipv6AccessType.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] The internet access type for IPv6 Public Delegated Prefixes.
+ * Output only. [Output Only] The internet access type for IPv6 Public Delegated Prefixes.
* Inherited from parent prefix.
*
* Protobuf type google.cloud.compute.v1.PublicDelegatedPrefix.Ipv6AccessType
diff --git a/Compute/src/V1/PublicDelegatedPrefixAggregatedList.php b/Compute/src/V1/PublicDelegatedPrefixAggregatedList.php
index 9c5b276bcd96..f75ebfabfb35 100644
--- a/Compute/src/V1/PublicDelegatedPrefixAggregatedList.php
+++ b/Compute/src/V1/PublicDelegatedPrefixAggregatedList.php
@@ -27,7 +27,7 @@ class PublicDelegatedPrefixAggregatedList extends \Google\Protobuf\Internal\Mess
*/
private $items;
/**
- * [Output Only] Type of the resource. Alwayscompute#publicDelegatedPrefixAggregatedList for aggregated
+ * Output only. [Output Only] Type of the resource. Alwayscompute#publicDelegatedPrefixAggregatedList for aggregated
* lists of public delegated prefixes.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -50,7 +50,7 @@ class PublicDelegatedPrefixAggregatedList extends \Google\Protobuf\Internal\Mess
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
@@ -73,7 +73,7 @@ class PublicDelegatedPrefixAggregatedList extends \Google\Protobuf\Internal\Mess
* @type array|\Google\Protobuf\Internal\MapField $items
* A list of PublicDelegatedPrefixesScopedList resources.
* @type string $kind
- * [Output Only] Type of the resource. Alwayscompute#publicDelegatedPrefixAggregatedList for aggregated
+ * Output only. [Output Only] Type of the resource. Alwayscompute#publicDelegatedPrefixAggregatedList for aggregated
* lists of public delegated prefixes.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -84,7 +84,7 @@ class PublicDelegatedPrefixAggregatedList extends \Google\Protobuf\Internal\Mess
* @type string $self_link
* [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -157,7 +157,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of the resource. Alwayscompute#publicDelegatedPrefixAggregatedList for aggregated
+ * Output only. [Output Only] Type of the resource. Alwayscompute#publicDelegatedPrefixAggregatedList for aggregated
* lists of public delegated prefixes.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -179,7 +179,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Alwayscompute#publicDelegatedPrefixAggregatedList for aggregated
+ * Output only. [Output Only] Type of the resource. Alwayscompute#publicDelegatedPrefixAggregatedList for aggregated
* lists of public delegated prefixes.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -275,7 +275,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -286,7 +286,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/PublicDelegatedPrefixList.php b/Compute/src/V1/PublicDelegatedPrefixList.php
index 142dd3c548f6..cad0ab6c3c03 100644
--- a/Compute/src/V1/PublicDelegatedPrefixList.php
+++ b/Compute/src/V1/PublicDelegatedPrefixList.php
@@ -27,7 +27,7 @@ class PublicDelegatedPrefixList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of the resource. Alwayscompute#publicDelegatedPrefixList for public delegated
+ * Output only. [Output Only] Type of the resource. Alwayscompute#publicDelegatedPrefixList for public delegated
* prefixes.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -67,7 +67,7 @@ class PublicDelegatedPrefixList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\PublicDelegatedPrefix>|\Google\Protobuf\Internal\RepeatedField $items
* A list of PublicDelegatedPrefix resources.
* @type string $kind
- * [Output Only] Type of the resource. Alwayscompute#publicDelegatedPrefixList for public delegated
+ * Output only. [Output Only] Type of the resource. Alwayscompute#publicDelegatedPrefixList for public delegated
* prefixes.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -149,7 +149,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of the resource. Alwayscompute#publicDelegatedPrefixList for public delegated
+ * Output only. [Output Only] Type of the resource. Alwayscompute#publicDelegatedPrefixList for public delegated
* prefixes.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -171,7 +171,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Alwayscompute#publicDelegatedPrefixList for public delegated
+ * Output only. [Output Only] Type of the resource. Alwayscompute#publicDelegatedPrefixList for public delegated
* prefixes.
*
* Generated from protobuf field optional string kind = 3292052;
diff --git a/Compute/src/V1/PublicDelegatedPrefixPublicDelegatedSubPrefix.php b/Compute/src/V1/PublicDelegatedPrefixPublicDelegatedSubPrefix.php
index 2f5cbf21bc1e..7a2125722c64 100644
--- a/Compute/src/V1/PublicDelegatedPrefixPublicDelegatedSubPrefix.php
+++ b/Compute/src/V1/PublicDelegatedPrefixPublicDelegatedSubPrefix.php
@@ -34,6 +34,13 @@ class PublicDelegatedPrefixPublicDelegatedSubPrefix extends \Google\Protobuf\Int
* Generated from protobuf field optional string description = 422937596;
*/
protected $description = null;
+ /**
+ * Output only. [Output Only] Whether this PDP supports enhanced IPv4 allocations.
+ * Applicable for IPv4 PDPs only.
+ *
+ * Generated from protobuf field optional bool enable_enhanced_ipv4_allocation = 54582253;
+ */
+ protected $enable_enhanced_ipv4_allocation = null;
/**
* The IP address range, in CIDR format, represented by this sub public
* delegated prefix.
@@ -42,7 +49,7 @@ class PublicDelegatedPrefixPublicDelegatedSubPrefix extends \Google\Protobuf\Int
*/
protected $ip_cidr_range = null;
/**
- * [Output Only] The internet access type for IPv6 Public Delegated Sub
+ * Output only. [Output Only] The internet access type for IPv6 Public Delegated Sub
* Prefixes. Inherited from parent prefix.
* Check the Ipv6AccessType enum for the list of possible values.
*
@@ -70,14 +77,14 @@ class PublicDelegatedPrefixPublicDelegatedSubPrefix extends \Google\Protobuf\Int
*/
protected $name = null;
/**
- * [Output Only] The region of the sub public delegated prefix if it is
+ * Output only. [Output Only] The region of the sub public delegated prefix if it is
* regional. If absent, the sub prefix is global.
*
* Generated from protobuf field optional string region = 138946292;
*/
protected $region = null;
/**
- * [Output Only] The status of the sub public delegated prefix.
+ * Output only. [Output Only] The status of the sub public delegated prefix.
* Check the Status enum for the list of possible values.
*
* Generated from protobuf field optional string status = 181260274;
@@ -97,11 +104,14 @@ class PublicDelegatedPrefixPublicDelegatedSubPrefix extends \Google\Protobuf\Int
* @type string $description
* An optional description of this resource. Provide this property when you
* create the resource.
+ * @type bool $enable_enhanced_ipv4_allocation
+ * Output only. [Output Only] Whether this PDP supports enhanced IPv4 allocations.
+ * Applicable for IPv4 PDPs only.
* @type string $ip_cidr_range
* The IP address range, in CIDR format, represented by this sub public
* delegated prefix.
* @type string $ipv6_access_type
- * [Output Only] The internet access type for IPv6 Public Delegated Sub
+ * Output only. [Output Only] The internet access type for IPv6 Public Delegated Sub
* Prefixes. Inherited from parent prefix.
* Check the Ipv6AccessType enum for the list of possible values.
* @type bool $is_address
@@ -113,10 +123,10 @@ class PublicDelegatedPrefixPublicDelegatedSubPrefix extends \Google\Protobuf\Int
* @type string $name
* The name of the sub public delegated prefix.
* @type string $region
- * [Output Only] The region of the sub public delegated prefix if it is
+ * Output only. [Output Only] The region of the sub public delegated prefix if it is
* regional. If absent, the sub prefix is global.
* @type string $status
- * [Output Only] The status of the sub public delegated prefix.
+ * Output only. [Output Only] The status of the sub public delegated prefix.
* Check the Status enum for the list of possible values.
* }
*/
@@ -235,6 +245,44 @@ public function setDescription($var)
return $this;
}
+ /**
+ * Output only. [Output Only] Whether this PDP supports enhanced IPv4 allocations.
+ * Applicable for IPv4 PDPs only.
+ *
+ * Generated from protobuf field optional bool enable_enhanced_ipv4_allocation = 54582253;
+ * @return bool
+ */
+ public function getEnableEnhancedIpv4Allocation()
+ {
+ return isset($this->enable_enhanced_ipv4_allocation) ? $this->enable_enhanced_ipv4_allocation : false;
+ }
+
+ public function hasEnableEnhancedIpv4Allocation()
+ {
+ return isset($this->enable_enhanced_ipv4_allocation);
+ }
+
+ public function clearEnableEnhancedIpv4Allocation()
+ {
+ unset($this->enable_enhanced_ipv4_allocation);
+ }
+
+ /**
+ * Output only. [Output Only] Whether this PDP supports enhanced IPv4 allocations.
+ * Applicable for IPv4 PDPs only.
+ *
+ * Generated from protobuf field optional bool enable_enhanced_ipv4_allocation = 54582253;
+ * @param bool $var
+ * @return $this
+ */
+ public function setEnableEnhancedIpv4Allocation($var)
+ {
+ GPBUtil::checkBool($var);
+ $this->enable_enhanced_ipv4_allocation = $var;
+
+ return $this;
+ }
+
/**
* The IP address range, in CIDR format, represented by this sub public
* delegated prefix.
@@ -274,7 +322,7 @@ public function setIpCidrRange($var)
}
/**
- * [Output Only] The internet access type for IPv6 Public Delegated Sub
+ * Output only. [Output Only] The internet access type for IPv6 Public Delegated Sub
* Prefixes. Inherited from parent prefix.
* Check the Ipv6AccessType enum for the list of possible values.
*
@@ -297,7 +345,7 @@ public function clearIpv6AccessType()
}
/**
- * [Output Only] The internet access type for IPv6 Public Delegated Sub
+ * Output only. [Output Only] The internet access type for IPv6 Public Delegated Sub
* Prefixes. Inherited from parent prefix.
* Check the Ipv6AccessType enum for the list of possible values.
*
@@ -426,7 +474,7 @@ public function setName($var)
}
/**
- * [Output Only] The region of the sub public delegated prefix if it is
+ * Output only. [Output Only] The region of the sub public delegated prefix if it is
* regional. If absent, the sub prefix is global.
*
* Generated from protobuf field optional string region = 138946292;
@@ -448,7 +496,7 @@ public function clearRegion()
}
/**
- * [Output Only] The region of the sub public delegated prefix if it is
+ * Output only. [Output Only] The region of the sub public delegated prefix if it is
* regional. If absent, the sub prefix is global.
*
* Generated from protobuf field optional string region = 138946292;
@@ -464,7 +512,7 @@ public function setRegion($var)
}
/**
- * [Output Only] The status of the sub public delegated prefix.
+ * Output only. [Output Only] The status of the sub public delegated prefix.
* Check the Status enum for the list of possible values.
*
* Generated from protobuf field optional string status = 181260274;
@@ -486,7 +534,7 @@ public function clearStatus()
}
/**
- * [Output Only] The status of the sub public delegated prefix.
+ * Output only. [Output Only] The status of the sub public delegated prefix.
* Check the Status enum for the list of possible values.
*
* Generated from protobuf field optional string status = 181260274;
diff --git a/Compute/src/V1/PublicDelegatedPrefixPublicDelegatedSubPrefix/Ipv6AccessType.php b/Compute/src/V1/PublicDelegatedPrefixPublicDelegatedSubPrefix/Ipv6AccessType.php
index 2947e6827877..a712d0aea341 100644
--- a/Compute/src/V1/PublicDelegatedPrefixPublicDelegatedSubPrefix/Ipv6AccessType.php
+++ b/Compute/src/V1/PublicDelegatedPrefixPublicDelegatedSubPrefix/Ipv6AccessType.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] The internet access type for IPv6 Public Delegated Sub
+ * Output only. [Output Only] The internet access type for IPv6 Public Delegated Sub
* Prefixes. Inherited from parent prefix.
*
* Protobuf type google.cloud.compute.v1.PublicDelegatedPrefixPublicDelegatedSubPrefix.Ipv6AccessType
diff --git a/Compute/src/V1/PublicDelegatedPrefixPublicDelegatedSubPrefix/Status.php b/Compute/src/V1/PublicDelegatedPrefixPublicDelegatedSubPrefix/Status.php
index 90436c303e2e..59aad4f34451 100644
--- a/Compute/src/V1/PublicDelegatedPrefixPublicDelegatedSubPrefix/Status.php
+++ b/Compute/src/V1/PublicDelegatedPrefixPublicDelegatedSubPrefix/Status.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] The status of the sub public delegated prefix.
+ * Output only. [Output Only] The status of the sub public delegated prefix.
*
* Protobuf type google.cloud.compute.v1.PublicDelegatedPrefixPublicDelegatedSubPrefix.Status
*/
diff --git a/Compute/src/V1/QuotaStatusWarning.php b/Compute/src/V1/QuotaStatusWarning.php
index 0e6c3c5f2b4b..35c8babf91d5 100644
--- a/Compute/src/V1/QuotaStatusWarning.php
+++ b/Compute/src/V1/QuotaStatusWarning.php
@@ -9,7 +9,7 @@
use Google\Protobuf\Internal\GPBUtil;
/**
- * [Output Only] Warning of fetching the `quotas` field for this region. This
+ * Output only. [Output Only] Warning of fetching the `quotas` field for this region. This
* field is populated only if fetching of the `quotas` field fails.
*
* Generated from protobuf message google.cloud.compute.v1.QuotaStatusWarning
diff --git a/Compute/src/V1/Reference.php b/Compute/src/V1/Reference.php
index 08fd35bbd4e9..8b9afd723e4a 100644
--- a/Compute/src/V1/Reference.php
+++ b/Compute/src/V1/Reference.php
@@ -16,7 +16,7 @@
class Reference extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Type of the resource. Always compute#reference
+ * Output only. [Output Only] Type of the resource. Always compute#reference
* for references.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -50,7 +50,7 @@ class Reference extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $kind
- * [Output Only] Type of the resource. Always compute#reference
+ * Output only. [Output Only] Type of the resource. Always compute#reference
* for references.
* @type string $reference_type
* A description of the reference type with no implied semantics. Possible
@@ -68,7 +68,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Type of the resource. Always compute#reference
+ * Output only. [Output Only] Type of the resource. Always compute#reference
* for references.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -90,7 +90,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Always compute#reference
+ * Output only. [Output Only] Type of the resource. Always compute#reference
* for references.
*
* Generated from protobuf field optional string kind = 3292052;
diff --git a/Compute/src/V1/Region.php b/Compute/src/V1/Region.php
index 8e1ade957110..26f62e967051 100644
--- a/Compute/src/V1/Region.php
+++ b/Compute/src/V1/Region.php
@@ -45,7 +45,7 @@ class Region extends \Google\Protobuf\Internal\Message
*/
protected $id = null;
/**
- * [Output Only] Type of the resource. Always compute#region for
+ * Output only. [Output Only] Type of the resource. Always compute#region for
* regions.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -58,7 +58,7 @@ class Region extends \Google\Protobuf\Internal\Message
*/
protected $name = null;
/**
- * [Output Only] Warning of fetching the `quotas` field for this region. This
+ * Output only. [Output Only] Warning of fetching the `quotas` field for this region. This
* field is populated only if fetching of the `quotas` field fails.
*
* Generated from protobuf field optional .google.cloud.compute.v1.QuotaStatusWarning quota_status_warning = 302941430;
@@ -84,7 +84,7 @@ class Region extends \Google\Protobuf\Internal\Message
*/
protected $status = null;
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool supports_pzs = 83983214;
*/
@@ -114,12 +114,12 @@ class Region extends \Google\Protobuf\Internal\Message
* [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type string $kind
- * [Output Only] Type of the resource. Always compute#region for
+ * Output only. [Output Only] Type of the resource. Always compute#region for
* regions.
* @type string $name
* [Output Only] Name of the resource.
* @type \Google\Cloud\Compute\V1\QuotaStatusWarning $quota_status_warning
- * [Output Only] Warning of fetching the `quotas` field for this region. This
+ * Output only. [Output Only] Warning of fetching the `quotas` field for this region. This
* field is populated only if fetching of the `quotas` field fails.
* @type array<\Google\Cloud\Compute\V1\Quota>|\Google\Protobuf\Internal\RepeatedField $quotas
* [Output Only] Quotas assigned to this region.
@@ -129,7 +129,7 @@ class Region extends \Google\Protobuf\Internal\Message
* [Output Only] Status of the region, either UP orDOWN.
* Check the Status enum for the list of possible values.
* @type bool $supports_pzs
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
* @type array|\Google\Protobuf\Internal\RepeatedField $zones
* [Output Only] A list of zones available in this region, in the form of
* resource URLs.
@@ -289,7 +289,7 @@ public function setId($var)
}
/**
- * [Output Only] Type of the resource. Always compute#region for
+ * Output only. [Output Only] Type of the resource. Always compute#region for
* regions.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -311,7 +311,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Always compute#region for
+ * Output only. [Output Only] Type of the resource. Always compute#region for
* regions.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -363,7 +363,7 @@ public function setName($var)
}
/**
- * [Output Only] Warning of fetching the `quotas` field for this region. This
+ * Output only. [Output Only] Warning of fetching the `quotas` field for this region. This
* field is populated only if fetching of the `quotas` field fails.
*
* Generated from protobuf field optional .google.cloud.compute.v1.QuotaStatusWarning quota_status_warning = 302941430;
@@ -385,7 +385,7 @@ public function clearQuotaStatusWarning()
}
/**
- * [Output Only] Warning of fetching the `quotas` field for this region. This
+ * Output only. [Output Only] Warning of fetching the `quotas` field for this region. This
* field is populated only if fetching of the `quotas` field fails.
*
* Generated from protobuf field optional .google.cloud.compute.v1.QuotaStatusWarning quota_status_warning = 302941430;
@@ -501,7 +501,7 @@ public function setStatus($var)
}
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool supports_pzs = 83983214;
* @return bool
@@ -522,7 +522,7 @@ public function clearSupportsPzs()
}
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool supports_pzs = 83983214;
* @param bool $var
diff --git a/Compute/src/V1/RegionAutoscalerList.php b/Compute/src/V1/RegionAutoscalerList.php
index e0a8a97dd5b4..02ec1e8eb12a 100644
--- a/Compute/src/V1/RegionAutoscalerList.php
+++ b/Compute/src/V1/RegionAutoscalerList.php
@@ -28,7 +28,7 @@ class RegionAutoscalerList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -44,7 +44,7 @@ class RegionAutoscalerList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -67,7 +67,7 @@ class RegionAutoscalerList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\Autoscaler>|\Google\Protobuf\Internal\RepeatedField $items
* A list of Autoscaler resources.
* @type string $kind
- * Type of resource.
+ * Output only. Type of resource.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -75,7 +75,7 @@ class RegionAutoscalerList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -148,7 +148,7 @@ public function setItems($var)
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -169,7 +169,7 @@ public function clearKind()
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -228,7 +228,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -249,7 +249,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/RegionDiskTypeList.php b/Compute/src/V1/RegionDiskTypeList.php
index be1cfa8a198f..68ad7a179a27 100644
--- a/Compute/src/V1/RegionDiskTypeList.php
+++ b/Compute/src/V1/RegionDiskTypeList.php
@@ -27,7 +27,7 @@ class RegionDiskTypeList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Alwayscompute#regionDiskTypeList for region disk types.
+ * Output only. [Output Only] Type of resource. Alwayscompute#regionDiskTypeList for region disk types.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -43,7 +43,7 @@ class RegionDiskTypeList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -66,7 +66,7 @@ class RegionDiskTypeList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\DiskType>|\Google\Protobuf\Internal\RepeatedField $items
* A list of DiskType resources.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#regionDiskTypeList for region disk types.
+ * Output only. [Output Only] Type of resource. Alwayscompute#regionDiskTypeList for region disk types.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -74,7 +74,7 @@ class RegionDiskTypeList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -147,7 +147,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#regionDiskTypeList for region disk types.
+ * Output only. [Output Only] Type of resource. Alwayscompute#regionDiskTypeList for region disk types.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -168,7 +168,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#regionDiskTypeList for region disk types.
+ * Output only. [Output Only] Type of resource. Alwayscompute#regionDiskTypeList for region disk types.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -227,7 +227,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -248,7 +248,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/RegionInstanceGroupList.php b/Compute/src/V1/RegionInstanceGroupList.php
index 521b68e4bd6e..880b1adc78a4 100644
--- a/Compute/src/V1/RegionInstanceGroupList.php
+++ b/Compute/src/V1/RegionInstanceGroupList.php
@@ -16,7 +16,7 @@
class RegionInstanceGroupList extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
*
* Generated from protobuf field optional string id = 3355;
*/
@@ -28,13 +28,13 @@ class RegionInstanceGroupList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * The resource type.
+ * Output only. The resource type.
*
* Generated from protobuf field optional string kind = 3292052;
*/
protected $kind = null;
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -44,13 +44,13 @@ class RegionInstanceGroupList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
*/
@@ -63,21 +63,21 @@ class RegionInstanceGroupList extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $id
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
* @type array<\Google\Cloud\Compute\V1\InstanceGroup>|\Google\Protobuf\Internal\RepeatedField $items
* A list of InstanceGroup resources.
* @type string $kind
- * The resource type.
+ * Output only. The resource type.
* @type string $next_page_token
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
* }
*/
public function __construct($data = NULL) {
@@ -86,7 +86,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
*
* Generated from protobuf field optional string id = 3355;
* @return string
@@ -107,7 +107,7 @@ public function clearId()
}
/**
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
*
* Generated from protobuf field optional string id = 3355;
* @param string $var
@@ -148,7 +148,7 @@ public function setItems($var)
}
/**
- * The resource type.
+ * Output only. The resource type.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -169,7 +169,7 @@ public function clearKind()
}
/**
- * The resource type.
+ * Output only. The resource type.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -184,7 +184,7 @@ public function setKind($var)
}
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -209,7 +209,7 @@ public function clearNextPageToken()
}
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -228,7 +228,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -249,7 +249,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -264,7 +264,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
* @return \Google\Cloud\Compute\V1\Warning|null
@@ -285,7 +285,7 @@ public function clearWarning()
}
/**
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
* @param \Google\Cloud\Compute\V1\Warning $var
diff --git a/Compute/src/V1/RegionInstanceGroupManagerList.php b/Compute/src/V1/RegionInstanceGroupManagerList.php
index 19d91c99193e..95cf4fadf260 100644
--- a/Compute/src/V1/RegionInstanceGroupManagerList.php
+++ b/Compute/src/V1/RegionInstanceGroupManagerList.php
@@ -16,7 +16,7 @@
class RegionInstanceGroupManagerList extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
*
* Generated from protobuf field optional string id = 3355;
*/
@@ -28,7 +28,7 @@ class RegionInstanceGroupManagerList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] The resource type, which is always
+ * Output only. [Output Only] The resource type, which is always
* compute#instanceGroupManagerList for a list of managed instance groups that
* exist in th regional scope.
*
@@ -36,7 +36,7 @@ class RegionInstanceGroupManagerList extends \Google\Protobuf\Internal\Message
*/
protected $kind = null;
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -46,13 +46,13 @@ class RegionInstanceGroupManagerList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
*/
@@ -65,23 +65,23 @@ class RegionInstanceGroupManagerList extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $id
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
* @type array<\Google\Cloud\Compute\V1\InstanceGroupManager>|\Google\Protobuf\Internal\RepeatedField $items
* A list of InstanceGroupManager resources.
* @type string $kind
- * [Output Only] The resource type, which is always
+ * Output only. [Output Only] The resource type, which is always
* compute#instanceGroupManagerList for a list of managed instance groups that
* exist in th regional scope.
* @type string $next_page_token
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
* }
*/
public function __construct($data = NULL) {
@@ -90,7 +90,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
*
* Generated from protobuf field optional string id = 3355;
* @return string
@@ -111,7 +111,7 @@ public function clearId()
}
/**
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
*
* Generated from protobuf field optional string id = 3355;
* @param string $var
@@ -152,7 +152,7 @@ public function setItems($var)
}
/**
- * [Output Only] The resource type, which is always
+ * Output only. [Output Only] The resource type, which is always
* compute#instanceGroupManagerList for a list of managed instance groups that
* exist in th regional scope.
*
@@ -175,7 +175,7 @@ public function clearKind()
}
/**
- * [Output Only] The resource type, which is always
+ * Output only. [Output Only] The resource type, which is always
* compute#instanceGroupManagerList for a list of managed instance groups that
* exist in th regional scope.
*
@@ -192,7 +192,7 @@ public function setKind($var)
}
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -217,7 +217,7 @@ public function clearNextPageToken()
}
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -236,7 +236,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -257,7 +257,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -272,7 +272,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
* @return \Google\Cloud\Compute\V1\Warning|null
@@ -293,7 +293,7 @@ public function clearWarning()
}
/**
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
* @param \Google\Cloud\Compute\V1\Warning $var
diff --git a/Compute/src/V1/RegionInstanceGroupManagersListErrorsResponse.php b/Compute/src/V1/RegionInstanceGroupManagersListErrorsResponse.php
index 5fe681bbbd64..862edeeadc1a 100644
--- a/Compute/src/V1/RegionInstanceGroupManagersListErrorsResponse.php
+++ b/Compute/src/V1/RegionInstanceGroupManagersListErrorsResponse.php
@@ -21,7 +21,7 @@ class RegionInstanceGroupManagersListErrorsResponse extends \Google\Protobuf\Int
*/
private $items;
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -40,7 +40,7 @@ class RegionInstanceGroupManagersListErrorsResponse extends \Google\Protobuf\Int
* @type array<\Google\Cloud\Compute\V1\InstanceManagedByIgmError>|\Google\Protobuf\Internal\RepeatedField $items
* [Output Only] The list of errors of the managed instance group.
* @type string $next_page_token
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -79,7 +79,7 @@ public function setItems($var)
}
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -104,7 +104,7 @@ public function clearNextPageToken()
}
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
diff --git a/Compute/src/V1/RegionInstanceGroupManagersListInstanceConfigsResp.php b/Compute/src/V1/RegionInstanceGroupManagersListInstanceConfigsResp.php
index 541be2009e0f..5a24ed9c02cc 100644
--- a/Compute/src/V1/RegionInstanceGroupManagersListInstanceConfigsResp.php
+++ b/Compute/src/V1/RegionInstanceGroupManagersListInstanceConfigsResp.php
@@ -15,13 +15,13 @@
class RegionInstanceGroupManagersListInstanceConfigsResp extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] The list of PerInstanceConfig.
+ * Output only. [Output Only] The list of PerInstanceConfig.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.PerInstanceConfig items = 100526016;
*/
private $items;
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -31,7 +31,7 @@ class RegionInstanceGroupManagersListInstanceConfigsResp extends \Google\Protobu
*/
protected $next_page_token = null;
/**
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
*/
@@ -44,15 +44,15 @@ class RegionInstanceGroupManagersListInstanceConfigsResp extends \Google\Protobu
* Optional. Data for populating the Message object.
*
* @type array<\Google\Cloud\Compute\V1\PerInstanceConfig>|\Google\Protobuf\Internal\RepeatedField $items
- * [Output Only] The list of PerInstanceConfig.
+ * Output only. [Output Only] The list of PerInstanceConfig.
* @type string $next_page_token
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type \Google\Cloud\Compute\V1\Warning $warning
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
* }
*/
public function __construct($data = NULL) {
@@ -61,7 +61,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] The list of PerInstanceConfig.
+ * Output only. [Output Only] The list of PerInstanceConfig.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.PerInstanceConfig items = 100526016;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -72,7 +72,7 @@ public function getItems()
}
/**
- * [Output Only] The list of PerInstanceConfig.
+ * Output only. [Output Only] The list of PerInstanceConfig.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.PerInstanceConfig items = 100526016;
* @param array<\Google\Cloud\Compute\V1\PerInstanceConfig>|\Google\Protobuf\Internal\RepeatedField $var
@@ -87,7 +87,7 @@ public function setItems($var)
}
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -112,7 +112,7 @@ public function clearNextPageToken()
}
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -131,7 +131,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
* @return \Google\Cloud\Compute\V1\Warning|null
@@ -152,7 +152,7 @@ public function clearWarning()
}
/**
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
* @param \Google\Cloud\Compute\V1\Warning $var
diff --git a/Compute/src/V1/RegionInstanceGroupManagersListInstancesResponse.php b/Compute/src/V1/RegionInstanceGroupManagersListInstancesResponse.php
index 8017a6221cc8..6d3ab03b16f9 100644
--- a/Compute/src/V1/RegionInstanceGroupManagersListInstancesResponse.php
+++ b/Compute/src/V1/RegionInstanceGroupManagersListInstancesResponse.php
@@ -21,7 +21,7 @@ class RegionInstanceGroupManagersListInstancesResponse extends \Google\Protobuf\
*/
private $managed_instances;
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -40,7 +40,7 @@ class RegionInstanceGroupManagersListInstancesResponse extends \Google\Protobuf\
* @type array<\Google\Cloud\Compute\V1\ManagedInstance>|\Google\Protobuf\Internal\RepeatedField $managed_instances
* A list of managed instances.
* @type string $next_page_token
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -79,7 +79,7 @@ public function setManagedInstances($var)
}
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -104,7 +104,7 @@ public function clearNextPageToken()
}
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
diff --git a/Compute/src/V1/RegionInstanceGroupsListInstances.php b/Compute/src/V1/RegionInstanceGroupsListInstances.php
index 7f7ebb66d98b..8064e443f67b 100644
--- a/Compute/src/V1/RegionInstanceGroupsListInstances.php
+++ b/Compute/src/V1/RegionInstanceGroupsListInstances.php
@@ -15,7 +15,7 @@
class RegionInstanceGroupsListInstances extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
*
* Generated from protobuf field optional string id = 3355;
*/
@@ -27,13 +27,13 @@ class RegionInstanceGroupsListInstances extends \Google\Protobuf\Internal\Messag
*/
private $items;
/**
- * The resource type.
+ * Output only. The resource type.
*
* Generated from protobuf field optional string kind = 3292052;
*/
protected $kind = null;
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -43,13 +43,13 @@ class RegionInstanceGroupsListInstances extends \Google\Protobuf\Internal\Messag
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
*/
@@ -62,21 +62,21 @@ class RegionInstanceGroupsListInstances extends \Google\Protobuf\Internal\Messag
* Optional. Data for populating the Message object.
*
* @type string $id
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
* @type array<\Google\Cloud\Compute\V1\InstanceWithNamedPorts>|\Google\Protobuf\Internal\RepeatedField $items
* A list of InstanceWithNamedPorts resources.
* @type string $kind
- * The resource type.
+ * Output only. The resource type.
* @type string $next_page_token
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
* }
*/
public function __construct($data = NULL) {
@@ -85,7 +85,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
*
* Generated from protobuf field optional string id = 3355;
* @return string
@@ -106,7 +106,7 @@ public function clearId()
}
/**
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
*
* Generated from protobuf field optional string id = 3355;
* @param string $var
@@ -147,7 +147,7 @@ public function setItems($var)
}
/**
- * The resource type.
+ * Output only. The resource type.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -168,7 +168,7 @@ public function clearKind()
}
/**
- * The resource type.
+ * Output only. The resource type.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -183,7 +183,7 @@ public function setKind($var)
}
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -208,7 +208,7 @@ public function clearNextPageToken()
}
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -227,7 +227,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -248,7 +248,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -263,7 +263,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
* @return \Google\Cloud\Compute\V1\Warning|null
@@ -284,7 +284,7 @@ public function clearWarning()
}
/**
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
* @param \Google\Cloud\Compute\V1\Warning $var
diff --git a/Compute/src/V1/RegionList.php b/Compute/src/V1/RegionList.php
index 911b484e539a..0a0e0fca1b75 100644
--- a/Compute/src/V1/RegionList.php
+++ b/Compute/src/V1/RegionList.php
@@ -28,7 +28,7 @@ class RegionList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Always compute#regionList for
+ * Output only. [Output Only] Type of resource. Always compute#regionList for
* lists of regions.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -45,7 +45,7 @@ class RegionList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -68,7 +68,7 @@ class RegionList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\Region>|\Google\Protobuf\Internal\RepeatedField $items
* A list of Region resources.
* @type string $kind
- * [Output Only] Type of resource. Always compute#regionList for
+ * Output only. [Output Only] Type of resource. Always compute#regionList for
* lists of regions.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -77,7 +77,7 @@ class RegionList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -150,7 +150,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Always compute#regionList for
+ * Output only. [Output Only] Type of resource. Always compute#regionList for
* lists of regions.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -172,7 +172,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Always compute#regionList for
+ * Output only. [Output Only] Type of resource. Always compute#regionList for
* lists of regions.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -232,7 +232,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -253,7 +253,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponse.php b/Compute/src/V1/RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponse.php
index 93ad7fdbc66b..520c19dc1f52 100644
--- a/Compute/src/V1/RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponse.php
+++ b/Compute/src/V1/RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponse.php
@@ -15,7 +15,7 @@
class RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponse extends \Google\Protobuf\Internal\Message
{
/**
- * [Output only] Effective firewalls from firewall policy. It applies to
+ * Output only. [Output only] Effective firewalls from firewall policy. It applies to
* Regional Network Firewall Policies in the specified region, Global Network
* Firewall Policies and Hierachial Firewall Policies which are associated
* with the network.
@@ -37,7 +37,7 @@ class RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponse extends \Google
* Optional. Data for populating the Message object.
*
* @type array<\Google\Cloud\Compute\V1\RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewallPolicy>|\Google\Protobuf\Internal\RepeatedField $firewall_policys
- * [Output only] Effective firewalls from firewall policy. It applies to
+ * Output only. [Output only] Effective firewalls from firewall policy. It applies to
* Regional Network Firewall Policies in the specified region, Global Network
* Firewall Policies and Hierachial Firewall Policies which are associated
* with the network.
@@ -51,7 +51,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output only] Effective firewalls from firewall policy. It applies to
+ * Output only. [Output only] Effective firewalls from firewall policy. It applies to
* Regional Network Firewall Policies in the specified region, Global Network
* Firewall Policies and Hierachial Firewall Policies which are associated
* with the network.
@@ -65,7 +65,7 @@ public function getFirewallPolicys()
}
/**
- * [Output only] Effective firewalls from firewall policy. It applies to
+ * Output only. [Output only] Effective firewalls from firewall policy. It applies to
* Regional Network Firewall Policies in the specified region, Global Network
* Firewall Policies and Hierachial Firewall Policies which are associated
* with the network.
diff --git a/Compute/src/V1/RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewallPolicy.php b/Compute/src/V1/RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewallPolicy.php
index 73f58c5fdbf4..a1c1f5d08e80 100644
--- a/Compute/src/V1/RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewallPolicy.php
+++ b/Compute/src/V1/RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewallPolicy.php
@@ -15,38 +15,38 @@
class RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewallPolicy extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] The display name of the firewall policy.
+ * Output only. [Output Only] The display name of the firewall policy.
*
* Generated from protobuf field optional string display_name = 4473832;
*/
protected $display_name = null;
/**
- * [Output Only] The name of the firewall policy.
+ * Output only. [Output Only] The name of the firewall policy.
*
* Generated from protobuf field optional string name = 3373707;
*/
protected $name = null;
/**
- * [Output only] The packet mirroring rules that apply to the network.
+ * Output only. [Output only] The packet mirroring rules that apply to the network.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.FirewallPolicyRule packet_mirroring_rules = 531644356;
*/
private $packet_mirroring_rules;
/**
- * [Output only] Priority of firewall policy association. Not applicable for
+ * Output only. [Output only] Priority of firewall policy association. Not applicable for
* type=HIERARCHY.
*
* Generated from protobuf field optional int32 priority = 445151652;
*/
protected $priority = null;
/**
- * [Output only] The rules that apply to the network.
+ * Output only. [Output only] The rules that apply to the network.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.FirewallPolicyRule rules = 108873975;
*/
private $rules;
/**
- * [Output Only] The type of the firewall policy. Can be one of HIERARCHY,
+ * Output only. [Output Only] The type of the firewall policy. Can be one of HIERARCHY,
* NETWORK, NETWORK_REGIONAL, SYSTEM_GLOBAL, SYSTEM_REGIONAL.
* Check the Type enum for the list of possible values.
*
@@ -61,18 +61,18 @@ class RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewal
* Optional. Data for populating the Message object.
*
* @type string $display_name
- * [Output Only] The display name of the firewall policy.
+ * Output only. [Output Only] The display name of the firewall policy.
* @type string $name
- * [Output Only] The name of the firewall policy.
+ * Output only. [Output Only] The name of the firewall policy.
* @type array<\Google\Cloud\Compute\V1\FirewallPolicyRule>|\Google\Protobuf\Internal\RepeatedField $packet_mirroring_rules
- * [Output only] The packet mirroring rules that apply to the network.
+ * Output only. [Output only] The packet mirroring rules that apply to the network.
* @type int $priority
- * [Output only] Priority of firewall policy association. Not applicable for
+ * Output only. [Output only] Priority of firewall policy association. Not applicable for
* type=HIERARCHY.
* @type array<\Google\Cloud\Compute\V1\FirewallPolicyRule>|\Google\Protobuf\Internal\RepeatedField $rules
- * [Output only] The rules that apply to the network.
+ * Output only. [Output only] The rules that apply to the network.
* @type string $type
- * [Output Only] The type of the firewall policy. Can be one of HIERARCHY,
+ * Output only. [Output Only] The type of the firewall policy. Can be one of HIERARCHY,
* NETWORK, NETWORK_REGIONAL, SYSTEM_GLOBAL, SYSTEM_REGIONAL.
* Check the Type enum for the list of possible values.
* }
@@ -83,7 +83,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] The display name of the firewall policy.
+ * Output only. [Output Only] The display name of the firewall policy.
*
* Generated from protobuf field optional string display_name = 4473832;
* @return string
@@ -104,7 +104,7 @@ public function clearDisplayName()
}
/**
- * [Output Only] The display name of the firewall policy.
+ * Output only. [Output Only] The display name of the firewall policy.
*
* Generated from protobuf field optional string display_name = 4473832;
* @param string $var
@@ -119,7 +119,7 @@ public function setDisplayName($var)
}
/**
- * [Output Only] The name of the firewall policy.
+ * Output only. [Output Only] The name of the firewall policy.
*
* Generated from protobuf field optional string name = 3373707;
* @return string
@@ -140,7 +140,7 @@ public function clearName()
}
/**
- * [Output Only] The name of the firewall policy.
+ * Output only. [Output Only] The name of the firewall policy.
*
* Generated from protobuf field optional string name = 3373707;
* @param string $var
@@ -155,7 +155,7 @@ public function setName($var)
}
/**
- * [Output only] The packet mirroring rules that apply to the network.
+ * Output only. [Output only] The packet mirroring rules that apply to the network.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.FirewallPolicyRule packet_mirroring_rules = 531644356;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -166,7 +166,7 @@ public function getPacketMirroringRules()
}
/**
- * [Output only] The packet mirroring rules that apply to the network.
+ * Output only. [Output only] The packet mirroring rules that apply to the network.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.FirewallPolicyRule packet_mirroring_rules = 531644356;
* @param array<\Google\Cloud\Compute\V1\FirewallPolicyRule>|\Google\Protobuf\Internal\RepeatedField $var
@@ -181,7 +181,7 @@ public function setPacketMirroringRules($var)
}
/**
- * [Output only] Priority of firewall policy association. Not applicable for
+ * Output only. [Output only] Priority of firewall policy association. Not applicable for
* type=HIERARCHY.
*
* Generated from protobuf field optional int32 priority = 445151652;
@@ -203,7 +203,7 @@ public function clearPriority()
}
/**
- * [Output only] Priority of firewall policy association. Not applicable for
+ * Output only. [Output only] Priority of firewall policy association. Not applicable for
* type=HIERARCHY.
*
* Generated from protobuf field optional int32 priority = 445151652;
@@ -219,7 +219,7 @@ public function setPriority($var)
}
/**
- * [Output only] The rules that apply to the network.
+ * Output only. [Output only] The rules that apply to the network.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.FirewallPolicyRule rules = 108873975;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -230,7 +230,7 @@ public function getRules()
}
/**
- * [Output only] The rules that apply to the network.
+ * Output only. [Output only] The rules that apply to the network.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.FirewallPolicyRule rules = 108873975;
* @param array<\Google\Cloud\Compute\V1\FirewallPolicyRule>|\Google\Protobuf\Internal\RepeatedField $var
@@ -245,7 +245,7 @@ public function setRules($var)
}
/**
- * [Output Only] The type of the firewall policy. Can be one of HIERARCHY,
+ * Output only. [Output Only] The type of the firewall policy. Can be one of HIERARCHY,
* NETWORK, NETWORK_REGIONAL, SYSTEM_GLOBAL, SYSTEM_REGIONAL.
* Check the Type enum for the list of possible values.
*
@@ -268,7 +268,7 @@ public function clearType()
}
/**
- * [Output Only] The type of the firewall policy. Can be one of HIERARCHY,
+ * Output only. [Output Only] The type of the firewall policy. Can be one of HIERARCHY,
* NETWORK, NETWORK_REGIONAL, SYSTEM_GLOBAL, SYSTEM_REGIONAL.
* Check the Type enum for the list of possible values.
*
diff --git a/Compute/src/V1/RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewallPolicy/Type.php b/Compute/src/V1/RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewallPolicy/Type.php
index a7332164331a..7090f53a9541 100644
--- a/Compute/src/V1/RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewallPolicy/Type.php
+++ b/Compute/src/V1/RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewallPolicy/Type.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] The type of the firewall policy. Can be one of HIERARCHY,
+ * Output only. [Output Only] The type of the firewall policy. Can be one of HIERARCHY,
* NETWORK, NETWORK_REGIONAL, SYSTEM_GLOBAL, SYSTEM_REGIONAL.
*
* Protobuf type google.cloud.compute.v1.RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewallPolicy.Type
diff --git a/Compute/src/V1/Reservation.php b/Compute/src/V1/Reservation.php
index 2c8d6ef2eb6a..5bac2a601324 100644
--- a/Compute/src/V1/Reservation.php
+++ b/Compute/src/V1/Reservation.php
@@ -32,14 +32,14 @@ class Reservation extends \Google\Protobuf\Internal\Message
*/
protected $aggregate_reservation = null;
/**
- * [Output Only] Full or partial URL to a parent commitment. This field
+ * Output only. [Output Only] Full or partial URL to a parent commitment. This field
* displays for reservations that are tied to a commitment.
*
* Generated from protobuf field optional string commitment = 482134805;
*/
protected $commitment = null;
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -81,20 +81,20 @@ class Reservation extends \Google\Protobuf\Internal\Message
*/
protected $enable_emergent_maintenance = null;
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
*/
protected $id = null;
/**
- * [Output Only] Type of the resource. Alwayscompute#reservations for reservations.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#reservations for reservations.
*
* Generated from protobuf field optional string kind = 3292052;
*/
protected $kind = null;
/**
- * [Output Only] Full or partial URL to parent commitments. This field
+ * Output only. [Output Only] Full or partial URL to parent commitments. This field
* displays for reservations that are tied to multiple commitments.
*
* Generated from protobuf field repeated string linked_commitments = 470957784;
@@ -138,13 +138,13 @@ class Reservation extends \Google\Protobuf\Internal\Message
*/
private $resource_policies;
/**
- * [Output Only] Status information for Reservation resource.
+ * Output only. [Output Only] Status information for Reservation resource.
*
* Generated from protobuf field optional .google.cloud.compute.v1.AllocationResourceStatus resource_status = 249429315;
*/
protected $resource_status = null;
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool satisfies_pzs = 480964267;
*/
@@ -157,7 +157,7 @@ class Reservation extends \Google\Protobuf\Internal\Message
*/
protected $scheduling_type = null;
/**
- * [Output Only] Server-defined fully-qualified URL for this resource.
+ * Output only. [Output Only] Server-defined fully-qualified URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -186,7 +186,7 @@ class Reservation extends \Google\Protobuf\Internal\Message
*/
protected $specific_reservation_required = null;
/**
- * [Output Only] The status of the reservation.
+ * Output only. [Output Only] The status of the reservation.
* - CREATING: Reservation resources are being
* allocated.
* - READY: Reservation resources have been allocated,
@@ -218,10 +218,10 @@ class Reservation extends \Google\Protobuf\Internal\Message
* @type \Google\Cloud\Compute\V1\AllocationAggregateReservation $aggregate_reservation
* Reservation for aggregated resources, providing shape flexibility.
* @type string $commitment
- * [Output Only] Full or partial URL to a parent commitment. This field
+ * Output only. [Output Only] Full or partial URL to a parent commitment. This field
* displays for reservations that are tied to a commitment.
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type \Google\Cloud\Compute\V1\Duration $delete_after_duration
* Duration time relative to reservation creation when Compute Engine will
@@ -239,12 +239,12 @@ class Reservation extends \Google\Protobuf\Internal\Message
* Indicates whether Compute Engine allows unplanned maintenance for your VMs;
* for example, to fix hardware errors.
* @type int|string $id
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type string $kind
- * [Output Only] Type of the resource. Alwayscompute#reservations for reservations.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#reservations for reservations.
* @type array|\Google\Protobuf\Internal\RepeatedField $linked_commitments
- * [Output Only] Full or partial URL to parent commitments. This field
+ * Output only. [Output Only] Full or partial URL to parent commitments. This field
* displays for reservations that are tied to multiple commitments.
* @type string $name
* The name of the resource, provided by the client when initially creating
@@ -268,14 +268,14 @@ class Reservation extends \Google\Protobuf\Internal\Message
* user, and the value is resource policy url. This is to define placement
* policy with reservation.
* @type \Google\Cloud\Compute\V1\AllocationResourceStatus $resource_status
- * [Output Only] Status information for Reservation resource.
+ * Output only. [Output Only] Status information for Reservation resource.
* @type bool $satisfies_pzs
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
* @type string $scheduling_type
* The type of maintenance for the reservation.
* Check the SchedulingType enum for the list of possible values.
* @type string $self_link
- * [Output Only] Server-defined fully-qualified URL for this resource.
+ * Output only. [Output Only] Server-defined fully-qualified URL for this resource.
* @type \Google\Cloud\Compute\V1\ShareSettings $share_settings
* Specify share-settings to create a shared reservation. This property is
* optional. For more information about the syntax and options for this
@@ -288,7 +288,7 @@ class Reservation extends \Google\Protobuf\Internal\Message
* for "any" reservation. If the field is set, then only VMs that target
* the reservation by name can consume from this reservation.
* @type string $status
- * [Output Only] The status of the reservation.
+ * Output only. [Output Only] The status of the reservation.
* - CREATING: Reservation resources are being
* allocated.
* - READY: Reservation resources have been allocated,
@@ -381,7 +381,7 @@ public function setAggregateReservation($var)
}
/**
- * [Output Only] Full or partial URL to a parent commitment. This field
+ * Output only. [Output Only] Full or partial URL to a parent commitment. This field
* displays for reservations that are tied to a commitment.
*
* Generated from protobuf field optional string commitment = 482134805;
@@ -403,7 +403,7 @@ public function clearCommitment()
}
/**
- * [Output Only] Full or partial URL to a parent commitment. This field
+ * Output only. [Output Only] Full or partial URL to a parent commitment. This field
* displays for reservations that are tied to a commitment.
*
* Generated from protobuf field optional string commitment = 482134805;
@@ -419,7 +419,7 @@ public function setCommitment($var)
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -441,7 +441,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -647,7 +647,7 @@ public function setEnableEmergentMaintenance($var)
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -669,7 +669,7 @@ public function clearId()
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -685,7 +685,7 @@ public function setId($var)
}
/**
- * [Output Only] Type of the resource. Alwayscompute#reservations for reservations.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#reservations for reservations.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -706,7 +706,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Alwayscompute#reservations for reservations.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#reservations for reservations.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -721,7 +721,7 @@ public function setKind($var)
}
/**
- * [Output Only] Full or partial URL to parent commitments. This field
+ * Output only. [Output Only] Full or partial URL to parent commitments. This field
* displays for reservations that are tied to multiple commitments.
*
* Generated from protobuf field repeated string linked_commitments = 470957784;
@@ -733,7 +733,7 @@ public function getLinkedCommitments()
}
/**
- * [Output Only] Full or partial URL to parent commitments. This field
+ * Output only. [Output Only] Full or partial URL to parent commitments. This field
* displays for reservations that are tied to multiple commitments.
*
* Generated from protobuf field repeated string linked_commitments = 470957784;
@@ -909,7 +909,7 @@ public function setResourcePolicies($var)
}
/**
- * [Output Only] Status information for Reservation resource.
+ * Output only. [Output Only] Status information for Reservation resource.
*
* Generated from protobuf field optional .google.cloud.compute.v1.AllocationResourceStatus resource_status = 249429315;
* @return \Google\Cloud\Compute\V1\AllocationResourceStatus|null
@@ -930,7 +930,7 @@ public function clearResourceStatus()
}
/**
- * [Output Only] Status information for Reservation resource.
+ * Output only. [Output Only] Status information for Reservation resource.
*
* Generated from protobuf field optional .google.cloud.compute.v1.AllocationResourceStatus resource_status = 249429315;
* @param \Google\Cloud\Compute\V1\AllocationResourceStatus $var
@@ -945,7 +945,7 @@ public function setResourceStatus($var)
}
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool satisfies_pzs = 480964267;
* @return bool
@@ -966,7 +966,7 @@ public function clearSatisfiesPzs()
}
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool satisfies_pzs = 480964267;
* @param bool $var
@@ -1019,7 +1019,7 @@ public function setSchedulingType($var)
}
/**
- * [Output Only] Server-defined fully-qualified URL for this resource.
+ * Output only. [Output Only] Server-defined fully-qualified URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -1040,7 +1040,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined fully-qualified URL for this resource.
+ * Output only. [Output Only] Server-defined fully-qualified URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -1173,7 +1173,7 @@ public function setSpecificReservationRequired($var)
}
/**
- * [Output Only] The status of the reservation.
+ * Output only. [Output Only] The status of the reservation.
* - CREATING: Reservation resources are being
* allocated.
* - READY: Reservation resources have been allocated,
@@ -1201,7 +1201,7 @@ public function clearStatus()
}
/**
- * [Output Only] The status of the reservation.
+ * Output only. [Output Only] The status of the reservation.
* - CREATING: Reservation resources are being
* allocated.
* - READY: Reservation resources have been allocated,
diff --git a/Compute/src/V1/Reservation/Status.php b/Compute/src/V1/Reservation/Status.php
index 52a396a9b9dc..95a60fbfe281 100644
--- a/Compute/src/V1/Reservation/Status.php
+++ b/Compute/src/V1/Reservation/Status.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] The status of the reservation.
+ * Output only. [Output Only] The status of the reservation.
* - CREATING: Reservation resources are being
* allocated.
* - READY: Reservation resources have been allocated,
diff --git a/Compute/src/V1/ReservationAggregatedList.php b/Compute/src/V1/ReservationAggregatedList.php
index 73b5efc50586..dae9b51129b7 100644
--- a/Compute/src/V1/ReservationAggregatedList.php
+++ b/Compute/src/V1/ReservationAggregatedList.php
@@ -28,7 +28,7 @@ class ReservationAggregatedList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -44,13 +44,13 @@ class ReservationAggregatedList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
@@ -73,7 +73,7 @@ class ReservationAggregatedList extends \Google\Protobuf\Internal\Message
* @type array|\Google\Protobuf\Internal\MapField $items
* A list of Allocation resources.
* @type string $kind
- * Type of resource.
+ * Output only. Type of resource.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -81,9 +81,9 @@ class ReservationAggregatedList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -156,7 +156,7 @@ public function setItems($var)
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -177,7 +177,7 @@ public function clearKind()
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -236,7 +236,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -257,7 +257,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -272,7 +272,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -283,7 +283,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/ReservationBlock.php b/Compute/src/V1/ReservationBlock.php
index 0a8863289278..30eaf2a9ff8f 100644
--- a/Compute/src/V1/ReservationBlock.php
+++ b/Compute/src/V1/ReservationBlock.php
@@ -16,46 +16,46 @@
class ReservationBlock extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] The number of resources that are allocated in this
+ * Output only. [Output Only] The number of resources that are allocated in this
* reservation block.
*
* Generated from protobuf field optional int32 count = 94851343;
*/
protected $count = null;
/**
- * [Output Only] Creation timestamp inRFC3339 text format.
+ * Output only. [Output Only] Creation timestamp inRFC3339 text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
*/
protected $creation_timestamp = null;
/**
- * [Output Only] Health information for the reservation block.
+ * Output only. [Output Only] Health information for the reservation block.
*
* Generated from protobuf field optional .google.cloud.compute.v1.ReservationBlockHealthInfo health_info = 235287729;
*/
protected $health_info = null;
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
*/
protected $id = null;
/**
- * [Output Only] The number of instances that are currently in use on this
+ * Output only. [Output Only] The number of instances that are currently in use on this
* reservation block.
*
* Generated from protobuf field optional int32 in_use_count = 493458877;
*/
protected $in_use_count = null;
/**
- * [Output Only] Type of the resource. Alwayscompute#reservationBlock for reservation blocks.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#reservationBlock for reservation blocks.
*
* Generated from protobuf field optional string kind = 3292052;
*/
protected $kind = null;
/**
- * [Output Only] The name of this reservation block generated by Google
+ * Output only. [Output Only] The name of this reservation block generated by Google
* Compute Engine. The name must be 1-63 characters long, and comply with
* RFC1035 @pattern [a-z](?:[-a-z0-9]{0,61}[a-z0-9])?
*
@@ -63,26 +63,26 @@ class ReservationBlock extends \Google\Protobuf\Internal\Message
*/
protected $name = null;
/**
- * [Output Only] The physical topology of the reservation block.
+ * Output only. [Output Only] The physical topology of the reservation block.
*
* Generated from protobuf field optional .google.cloud.compute.v1.ReservationBlockPhysicalTopology physical_topology = 279778519;
*/
protected $physical_topology = null;
/**
- * [Output Only] Maintenance information for this reservation block.
+ * Output only. [Output Only] Maintenance information for this reservation block.
*
* Generated from protobuf field optional .google.cloud.compute.v1.GroupMaintenanceInfo reservation_maintenance = 340607776;
*/
protected $reservation_maintenance = null;
/**
- * [Output Only] The number of reservation subBlocks associated with this
+ * Output only. [Output Only] The number of reservation subBlocks associated with this
* reservation block.
*
* Generated from protobuf field optional int32 reservation_sub_block_count = 330782955;
*/
protected $reservation_sub_block_count = null;
/**
- * [Output Only] The number of in-use reservation subBlocks associated with
+ * Output only. [Output Only] The number of in-use reservation subBlocks associated with
* this reservation block. If at least one VM is running on a subBlock, it is
* considered in-use.
*
@@ -90,26 +90,26 @@ class ReservationBlock extends \Google\Protobuf\Internal\Message
*/
protected $reservation_sub_block_in_use_count = null;
/**
- * [Output Only] Server-defined fully-qualified URL for this resource.
+ * Output only. [Output Only] Server-defined fully-qualified URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Server-defined URL for this resource with the resource id.
+ * Output only. [Output Only] Server-defined URL for this resource with the resource id.
*
* Generated from protobuf field optional string self_link_with_id = 44520962;
*/
protected $self_link_with_id = null;
/**
- * [Output Only] Status of the reservation block.
+ * Output only. [Output Only] Status of the reservation block.
* Check the Status enum for the list of possible values.
*
* Generated from protobuf field optional string status = 181260274;
*/
protected $status = null;
/**
- * [Output Only] Zone in which the reservation block resides.
+ * Output only. [Output Only] Zone in which the reservation block resides.
*
* Generated from protobuf field optional string zone = 3744684;
*/
@@ -122,44 +122,44 @@ class ReservationBlock extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type int $count
- * [Output Only] The number of resources that are allocated in this
+ * Output only. [Output Only] The number of resources that are allocated in this
* reservation block.
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339 text format.
+ * Output only. [Output Only] Creation timestamp inRFC3339 text format.
* @type \Google\Cloud\Compute\V1\ReservationBlockHealthInfo $health_info
- * [Output Only] Health information for the reservation block.
+ * Output only. [Output Only] Health information for the reservation block.
* @type int|string $id
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type int $in_use_count
- * [Output Only] The number of instances that are currently in use on this
+ * Output only. [Output Only] The number of instances that are currently in use on this
* reservation block.
* @type string $kind
- * [Output Only] Type of the resource. Alwayscompute#reservationBlock for reservation blocks.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#reservationBlock for reservation blocks.
* @type string $name
- * [Output Only] The name of this reservation block generated by Google
+ * Output only. [Output Only] The name of this reservation block generated by Google
* Compute Engine. The name must be 1-63 characters long, and comply with
* RFC1035 @pattern [a-z](?:[-a-z0-9]{0,61}[a-z0-9])?
* @type \Google\Cloud\Compute\V1\ReservationBlockPhysicalTopology $physical_topology
- * [Output Only] The physical topology of the reservation block.
+ * Output only. [Output Only] The physical topology of the reservation block.
* @type \Google\Cloud\Compute\V1\GroupMaintenanceInfo $reservation_maintenance
- * [Output Only] Maintenance information for this reservation block.
+ * Output only. [Output Only] Maintenance information for this reservation block.
* @type int $reservation_sub_block_count
- * [Output Only] The number of reservation subBlocks associated with this
+ * Output only. [Output Only] The number of reservation subBlocks associated with this
* reservation block.
* @type int $reservation_sub_block_in_use_count
- * [Output Only] The number of in-use reservation subBlocks associated with
+ * Output only. [Output Only] The number of in-use reservation subBlocks associated with
* this reservation block. If at least one VM is running on a subBlock, it is
* considered in-use.
* @type string $self_link
- * [Output Only] Server-defined fully-qualified URL for this resource.
+ * Output only. [Output Only] Server-defined fully-qualified URL for this resource.
* @type string $self_link_with_id
- * [Output Only] Server-defined URL for this resource with the resource id.
+ * Output only. [Output Only] Server-defined URL for this resource with the resource id.
* @type string $status
- * [Output Only] Status of the reservation block.
+ * Output only. [Output Only] Status of the reservation block.
* Check the Status enum for the list of possible values.
* @type string $zone
- * [Output Only] Zone in which the reservation block resides.
+ * Output only. [Output Only] Zone in which the reservation block resides.
* }
*/
public function __construct($data = NULL) {
@@ -168,7 +168,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] The number of resources that are allocated in this
+ * Output only. [Output Only] The number of resources that are allocated in this
* reservation block.
*
* Generated from protobuf field optional int32 count = 94851343;
@@ -190,7 +190,7 @@ public function clearCount()
}
/**
- * [Output Only] The number of resources that are allocated in this
+ * Output only. [Output Only] The number of resources that are allocated in this
* reservation block.
*
* Generated from protobuf field optional int32 count = 94851343;
@@ -206,7 +206,7 @@ public function setCount($var)
}
/**
- * [Output Only] Creation timestamp inRFC3339 text format.
+ * Output only. [Output Only] Creation timestamp inRFC3339 text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
* @return string
@@ -227,7 +227,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339 text format.
+ * Output only. [Output Only] Creation timestamp inRFC3339 text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
* @param string $var
@@ -242,7 +242,7 @@ public function setCreationTimestamp($var)
}
/**
- * [Output Only] Health information for the reservation block.
+ * Output only. [Output Only] Health information for the reservation block.
*
* Generated from protobuf field optional .google.cloud.compute.v1.ReservationBlockHealthInfo health_info = 235287729;
* @return \Google\Cloud\Compute\V1\ReservationBlockHealthInfo|null
@@ -263,7 +263,7 @@ public function clearHealthInfo()
}
/**
- * [Output Only] Health information for the reservation block.
+ * Output only. [Output Only] Health information for the reservation block.
*
* Generated from protobuf field optional .google.cloud.compute.v1.ReservationBlockHealthInfo health_info = 235287729;
* @param \Google\Cloud\Compute\V1\ReservationBlockHealthInfo $var
@@ -278,7 +278,7 @@ public function setHealthInfo($var)
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -300,7 +300,7 @@ public function clearId()
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -316,7 +316,7 @@ public function setId($var)
}
/**
- * [Output Only] The number of instances that are currently in use on this
+ * Output only. [Output Only] The number of instances that are currently in use on this
* reservation block.
*
* Generated from protobuf field optional int32 in_use_count = 493458877;
@@ -338,7 +338,7 @@ public function clearInUseCount()
}
/**
- * [Output Only] The number of instances that are currently in use on this
+ * Output only. [Output Only] The number of instances that are currently in use on this
* reservation block.
*
* Generated from protobuf field optional int32 in_use_count = 493458877;
@@ -354,7 +354,7 @@ public function setInUseCount($var)
}
/**
- * [Output Only] Type of the resource. Alwayscompute#reservationBlock for reservation blocks.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#reservationBlock for reservation blocks.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -375,7 +375,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Alwayscompute#reservationBlock for reservation blocks.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#reservationBlock for reservation blocks.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -390,7 +390,7 @@ public function setKind($var)
}
/**
- * [Output Only] The name of this reservation block generated by Google
+ * Output only. [Output Only] The name of this reservation block generated by Google
* Compute Engine. The name must be 1-63 characters long, and comply with
* RFC1035 @pattern [a-z](?:[-a-z0-9]{0,61}[a-z0-9])?
*
@@ -413,7 +413,7 @@ public function clearName()
}
/**
- * [Output Only] The name of this reservation block generated by Google
+ * Output only. [Output Only] The name of this reservation block generated by Google
* Compute Engine. The name must be 1-63 characters long, and comply with
* RFC1035 @pattern [a-z](?:[-a-z0-9]{0,61}[a-z0-9])?
*
@@ -430,7 +430,7 @@ public function setName($var)
}
/**
- * [Output Only] The physical topology of the reservation block.
+ * Output only. [Output Only] The physical topology of the reservation block.
*
* Generated from protobuf field optional .google.cloud.compute.v1.ReservationBlockPhysicalTopology physical_topology = 279778519;
* @return \Google\Cloud\Compute\V1\ReservationBlockPhysicalTopology|null
@@ -451,7 +451,7 @@ public function clearPhysicalTopology()
}
/**
- * [Output Only] The physical topology of the reservation block.
+ * Output only. [Output Only] The physical topology of the reservation block.
*
* Generated from protobuf field optional .google.cloud.compute.v1.ReservationBlockPhysicalTopology physical_topology = 279778519;
* @param \Google\Cloud\Compute\V1\ReservationBlockPhysicalTopology $var
@@ -466,7 +466,7 @@ public function setPhysicalTopology($var)
}
/**
- * [Output Only] Maintenance information for this reservation block.
+ * Output only. [Output Only] Maintenance information for this reservation block.
*
* Generated from protobuf field optional .google.cloud.compute.v1.GroupMaintenanceInfo reservation_maintenance = 340607776;
* @return \Google\Cloud\Compute\V1\GroupMaintenanceInfo|null
@@ -487,7 +487,7 @@ public function clearReservationMaintenance()
}
/**
- * [Output Only] Maintenance information for this reservation block.
+ * Output only. [Output Only] Maintenance information for this reservation block.
*
* Generated from protobuf field optional .google.cloud.compute.v1.GroupMaintenanceInfo reservation_maintenance = 340607776;
* @param \Google\Cloud\Compute\V1\GroupMaintenanceInfo $var
@@ -502,7 +502,7 @@ public function setReservationMaintenance($var)
}
/**
- * [Output Only] The number of reservation subBlocks associated with this
+ * Output only. [Output Only] The number of reservation subBlocks associated with this
* reservation block.
*
* Generated from protobuf field optional int32 reservation_sub_block_count = 330782955;
@@ -524,7 +524,7 @@ public function clearReservationSubBlockCount()
}
/**
- * [Output Only] The number of reservation subBlocks associated with this
+ * Output only. [Output Only] The number of reservation subBlocks associated with this
* reservation block.
*
* Generated from protobuf field optional int32 reservation_sub_block_count = 330782955;
@@ -540,7 +540,7 @@ public function setReservationSubBlockCount($var)
}
/**
- * [Output Only] The number of in-use reservation subBlocks associated with
+ * Output only. [Output Only] The number of in-use reservation subBlocks associated with
* this reservation block. If at least one VM is running on a subBlock, it is
* considered in-use.
*
@@ -563,7 +563,7 @@ public function clearReservationSubBlockInUseCount()
}
/**
- * [Output Only] The number of in-use reservation subBlocks associated with
+ * Output only. [Output Only] The number of in-use reservation subBlocks associated with
* this reservation block. If at least one VM is running on a subBlock, it is
* considered in-use.
*
@@ -580,7 +580,7 @@ public function setReservationSubBlockInUseCount($var)
}
/**
- * [Output Only] Server-defined fully-qualified URL for this resource.
+ * Output only. [Output Only] Server-defined fully-qualified URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -601,7 +601,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined fully-qualified URL for this resource.
+ * Output only. [Output Only] Server-defined fully-qualified URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -616,7 +616,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Server-defined URL for this resource with the resource id.
+ * Output only. [Output Only] Server-defined URL for this resource with the resource id.
*
* Generated from protobuf field optional string self_link_with_id = 44520962;
* @return string
@@ -637,7 +637,7 @@ public function clearSelfLinkWithId()
}
/**
- * [Output Only] Server-defined URL for this resource with the resource id.
+ * Output only. [Output Only] Server-defined URL for this resource with the resource id.
*
* Generated from protobuf field optional string self_link_with_id = 44520962;
* @param string $var
@@ -652,7 +652,7 @@ public function setSelfLinkWithId($var)
}
/**
- * [Output Only] Status of the reservation block.
+ * Output only. [Output Only] Status of the reservation block.
* Check the Status enum for the list of possible values.
*
* Generated from protobuf field optional string status = 181260274;
@@ -674,7 +674,7 @@ public function clearStatus()
}
/**
- * [Output Only] Status of the reservation block.
+ * Output only. [Output Only] Status of the reservation block.
* Check the Status enum for the list of possible values.
*
* Generated from protobuf field optional string status = 181260274;
@@ -690,7 +690,7 @@ public function setStatus($var)
}
/**
- * [Output Only] Zone in which the reservation block resides.
+ * Output only. [Output Only] Zone in which the reservation block resides.
*
* Generated from protobuf field optional string zone = 3744684;
* @return string
@@ -711,7 +711,7 @@ public function clearZone()
}
/**
- * [Output Only] Zone in which the reservation block resides.
+ * Output only. [Output Only] Zone in which the reservation block resides.
*
* Generated from protobuf field optional string zone = 3744684;
* @param string $var
diff --git a/Compute/src/V1/ReservationBlock/Status.php b/Compute/src/V1/ReservationBlock/Status.php
index c160d4d6412d..2baf1456670e 100644
--- a/Compute/src/V1/ReservationBlock/Status.php
+++ b/Compute/src/V1/ReservationBlock/Status.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] Status of the reservation block.
+ * Output only. [Output Only] Status of the reservation block.
*
* Protobuf type google.cloud.compute.v1.ReservationBlock.Status
*/
diff --git a/Compute/src/V1/ReservationBlockPhysicalTopology.php b/Compute/src/V1/ReservationBlockPhysicalTopology.php
index 64328d55bf56..2c06b92b3db8 100644
--- a/Compute/src/V1/ReservationBlockPhysicalTopology.php
+++ b/Compute/src/V1/ReservationBlockPhysicalTopology.php
@@ -27,7 +27,7 @@ class ReservationBlockPhysicalTopology extends \Google\Protobuf\Internal\Message
*/
protected $cluster = null;
/**
- * The detailed instances information for a given Block
+ * Output only. The detailed instances information for a given Block
*
* Generated from protobuf field repeated .google.cloud.compute.v1.ReservationBlockPhysicalTopologyInstance instances = 29097598;
*/
@@ -44,7 +44,7 @@ class ReservationBlockPhysicalTopology extends \Google\Protobuf\Internal\Message
* @type string $cluster
* The cluster name of the reservation block.
* @type array<\Google\Cloud\Compute\V1\ReservationBlockPhysicalTopologyInstance>|\Google\Protobuf\Internal\RepeatedField $instances
- * The detailed instances information for a given Block
+ * Output only. The detailed instances information for a given Block
* }
*/
public function __construct($data = NULL) {
@@ -125,7 +125,7 @@ public function setCluster($var)
}
/**
- * The detailed instances information for a given Block
+ * Output only. The detailed instances information for a given Block
*
* Generated from protobuf field repeated .google.cloud.compute.v1.ReservationBlockPhysicalTopologyInstance instances = 29097598;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -136,7 +136,7 @@ public function getInstances()
}
/**
- * The detailed instances information for a given Block
+ * Output only. The detailed instances information for a given Block
*
* Generated from protobuf field repeated .google.cloud.compute.v1.ReservationBlockPhysicalTopologyInstance instances = 29097598;
* @param array<\Google\Cloud\Compute\V1\ReservationBlockPhysicalTopologyInstance>|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/ReservationBlockPhysicalTopologyInstance.php b/Compute/src/V1/ReservationBlockPhysicalTopologyInstance.php
index 0b0495fa2c23..fe02e4cbee8d 100644
--- a/Compute/src/V1/ReservationBlockPhysicalTopologyInstance.php
+++ b/Compute/src/V1/ReservationBlockPhysicalTopologyInstance.php
@@ -22,7 +22,7 @@ class ReservationBlockPhysicalTopologyInstance extends \Google\Protobuf\Internal
*/
protected $instance_id = null;
/**
- * The PhysicalHostTopology of instances within a Block resource.
+ * Output only. The PhysicalHostTopology of instances within a Block resource.
*
* Generated from protobuf field optional .google.cloud.compute.v1.ReservationBlockPhysicalTopologyInstancePhysicalHostTopology physical_host_topology = 390842814;
*/
@@ -43,7 +43,7 @@ class ReservationBlockPhysicalTopologyInstance extends \Google\Protobuf\Internal
* @type int|string $instance_id
* The InstanceId of the instance
* @type \Google\Cloud\Compute\V1\ReservationBlockPhysicalTopologyInstancePhysicalHostTopology $physical_host_topology
- * The PhysicalHostTopology of instances within a Block resource.
+ * Output only. The PhysicalHostTopology of instances within a Block resource.
* @type int|string $project_id
* Project where the instance lives
* }
@@ -90,7 +90,7 @@ public function setInstanceId($var)
}
/**
- * The PhysicalHostTopology of instances within a Block resource.
+ * Output only. The PhysicalHostTopology of instances within a Block resource.
*
* Generated from protobuf field optional .google.cloud.compute.v1.ReservationBlockPhysicalTopologyInstancePhysicalHostTopology physical_host_topology = 390842814;
* @return \Google\Cloud\Compute\V1\ReservationBlockPhysicalTopologyInstancePhysicalHostTopology|null
@@ -111,7 +111,7 @@ public function clearPhysicalHostTopology()
}
/**
- * The PhysicalHostTopology of instances within a Block resource.
+ * Output only. The PhysicalHostTopology of instances within a Block resource.
*
* Generated from protobuf field optional .google.cloud.compute.v1.ReservationBlockPhysicalTopologyInstancePhysicalHostTopology physical_host_topology = 390842814;
* @param \Google\Cloud\Compute\V1\ReservationBlockPhysicalTopologyInstancePhysicalHostTopology $var
diff --git a/Compute/src/V1/ReservationList.php b/Compute/src/V1/ReservationList.php
index 455a19dbd004..576a16d81b4e 100644
--- a/Compute/src/V1/ReservationList.php
+++ b/Compute/src/V1/ReservationList.php
@@ -28,7 +28,7 @@ class ReservationList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource.Always compute#reservationsList
+ * Output only. [Output Only] Type of resource.Always compute#reservationsList
* for listsof reservations
*
* Generated from protobuf field optional string kind = 3292052;
@@ -45,7 +45,7 @@ class ReservationList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -69,7 +69,7 @@ class ReservationList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\Reservation>|\Google\Protobuf\Internal\RepeatedField $items
* [Output Only] A list of Allocation resources.
* @type string $kind
- * [Output Only] Type of resource.Always compute#reservationsList
+ * Output only. [Output Only] Type of resource.Always compute#reservationsList
* for listsof reservations
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -78,7 +78,7 @@ class ReservationList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -153,7 +153,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource.Always compute#reservationsList
+ * Output only. [Output Only] Type of resource.Always compute#reservationsList
* for listsof reservations
*
* Generated from protobuf field optional string kind = 3292052;
@@ -175,7 +175,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource.Always compute#reservationsList
+ * Output only. [Output Only] Type of resource.Always compute#reservationsList
* for listsof reservations
*
* Generated from protobuf field optional string kind = 3292052;
@@ -235,7 +235,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -256,7 +256,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/ReservationSubBlock.php b/Compute/src/V1/ReservationSubBlock.php
index 0367e50f7161..02e3575e7eb1 100644
--- a/Compute/src/V1/ReservationSubBlock.php
+++ b/Compute/src/V1/ReservationSubBlock.php
@@ -16,52 +16,52 @@
class ReservationSubBlock extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Slice info for the reservation subBlock.
+ * Output only. [Output Only] Slice info for the reservation subBlock.
*
* Generated from protobuf field optional .google.cloud.compute.v1.AcceleratorTopologiesInfo accelerator_topologies_info = 84833420;
*/
protected $accelerator_topologies_info = null;
/**
- * [Output Only] The number of hosts that are allocated in this
+ * Output only. [Output Only] The number of hosts that are allocated in this
* reservation subBlock.
*
* Generated from protobuf field optional int32 count = 94851343;
*/
protected $count = null;
/**
- * [Output Only] Creation timestamp inRFC3339 text format.
+ * Output only. [Output Only] Creation timestamp inRFC3339 text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
*/
protected $creation_timestamp = null;
/**
- * [Output Only] Health information for the reservation subBlock.
+ * Output only. [Output Only] Health information for the reservation subBlock.
*
* Generated from protobuf field optional .google.cloud.compute.v1.ReservationSubBlockHealthInfo health_info = 235287729;
*/
protected $health_info = null;
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
*/
protected $id = null;
/**
- * [Output Only] The number of instances that are currently in use on this
+ * Output only. [Output Only] The number of instances that are currently in use on this
* reservation subBlock.
*
* Generated from protobuf field optional int32 in_use_count = 493458877;
*/
protected $in_use_count = null;
/**
- * [Output Only] Type of the resource. Alwayscompute#reservationSubBlock for reservation subBlocks.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#reservationSubBlock for reservation subBlocks.
*
* Generated from protobuf field optional string kind = 3292052;
*/
protected $kind = null;
/**
- * [Output Only] The name of this reservation subBlock generated by Google
+ * Output only. [Output Only] The name of this reservation subBlock generated by Google
* Compute Engine. The name must be 1-63 characters long, and comply with
* RFC1035 @pattern [a-z](?:[-a-z0-9]{0,61}[a-z0-9])?
*
@@ -69,38 +69,38 @@ class ReservationSubBlock extends \Google\Protobuf\Internal\Message
*/
protected $name = null;
/**
- * [Output Only] The physical topology of the reservation subBlock.
+ * Output only. [Output Only] The physical topology of the reservation subBlock.
*
* Generated from protobuf field optional .google.cloud.compute.v1.ReservationSubBlockPhysicalTopology physical_topology = 279778519;
*/
protected $physical_topology = null;
/**
- * Maintenance information for this reservation subBlock.
+ * Output only. Maintenance information for this reservation subBlock.
*
* Generated from protobuf field optional .google.cloud.compute.v1.GroupMaintenanceInfo reservation_sub_block_maintenance = 377005551;
*/
protected $reservation_sub_block_maintenance = null;
/**
- * [Output Only] Server-defined fully-qualified URL for this resource.
+ * Output only. [Output Only] Server-defined fully-qualified URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Server-defined URL for this resource with the resource id.
+ * Output only. [Output Only] Server-defined URL for this resource with the resource id.
*
* Generated from protobuf field optional string self_link_with_id = 44520962;
*/
protected $self_link_with_id = null;
/**
- * [Output Only] Status of the reservation subBlock.
+ * Output only. [Output Only] Status of the reservation subBlock.
* Check the Status enum for the list of possible values.
*
* Generated from protobuf field optional string status = 181260274;
*/
protected $status = null;
/**
- * [Output Only] Zone in which the reservation subBlock resides.
+ * Output only. [Output Only] Zone in which the reservation subBlock resides.
*
* Generated from protobuf field optional string zone = 3744684;
*/
@@ -113,39 +113,39 @@ class ReservationSubBlock extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type \Google\Cloud\Compute\V1\AcceleratorTopologiesInfo $accelerator_topologies_info
- * [Output Only] Slice info for the reservation subBlock.
+ * Output only. [Output Only] Slice info for the reservation subBlock.
* @type int $count
- * [Output Only] The number of hosts that are allocated in this
+ * Output only. [Output Only] The number of hosts that are allocated in this
* reservation subBlock.
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339 text format.
+ * Output only. [Output Only] Creation timestamp inRFC3339 text format.
* @type \Google\Cloud\Compute\V1\ReservationSubBlockHealthInfo $health_info
- * [Output Only] Health information for the reservation subBlock.
+ * Output only. [Output Only] Health information for the reservation subBlock.
* @type int|string $id
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type int $in_use_count
- * [Output Only] The number of instances that are currently in use on this
+ * Output only. [Output Only] The number of instances that are currently in use on this
* reservation subBlock.
* @type string $kind
- * [Output Only] Type of the resource. Alwayscompute#reservationSubBlock for reservation subBlocks.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#reservationSubBlock for reservation subBlocks.
* @type string $name
- * [Output Only] The name of this reservation subBlock generated by Google
+ * Output only. [Output Only] The name of this reservation subBlock generated by Google
* Compute Engine. The name must be 1-63 characters long, and comply with
* RFC1035 @pattern [a-z](?:[-a-z0-9]{0,61}[a-z0-9])?
* @type \Google\Cloud\Compute\V1\ReservationSubBlockPhysicalTopology $physical_topology
- * [Output Only] The physical topology of the reservation subBlock.
+ * Output only. [Output Only] The physical topology of the reservation subBlock.
* @type \Google\Cloud\Compute\V1\GroupMaintenanceInfo $reservation_sub_block_maintenance
- * Maintenance information for this reservation subBlock.
+ * Output only. Maintenance information for this reservation subBlock.
* @type string $self_link
- * [Output Only] Server-defined fully-qualified URL for this resource.
+ * Output only. [Output Only] Server-defined fully-qualified URL for this resource.
* @type string $self_link_with_id
- * [Output Only] Server-defined URL for this resource with the resource id.
+ * Output only. [Output Only] Server-defined URL for this resource with the resource id.
* @type string $status
- * [Output Only] Status of the reservation subBlock.
+ * Output only. [Output Only] Status of the reservation subBlock.
* Check the Status enum for the list of possible values.
* @type string $zone
- * [Output Only] Zone in which the reservation subBlock resides.
+ * Output only. [Output Only] Zone in which the reservation subBlock resides.
* }
*/
public function __construct($data = NULL) {
@@ -154,7 +154,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Slice info for the reservation subBlock.
+ * Output only. [Output Only] Slice info for the reservation subBlock.
*
* Generated from protobuf field optional .google.cloud.compute.v1.AcceleratorTopologiesInfo accelerator_topologies_info = 84833420;
* @return \Google\Cloud\Compute\V1\AcceleratorTopologiesInfo|null
@@ -175,7 +175,7 @@ public function clearAcceleratorTopologiesInfo()
}
/**
- * [Output Only] Slice info for the reservation subBlock.
+ * Output only. [Output Only] Slice info for the reservation subBlock.
*
* Generated from protobuf field optional .google.cloud.compute.v1.AcceleratorTopologiesInfo accelerator_topologies_info = 84833420;
* @param \Google\Cloud\Compute\V1\AcceleratorTopologiesInfo $var
@@ -190,7 +190,7 @@ public function setAcceleratorTopologiesInfo($var)
}
/**
- * [Output Only] The number of hosts that are allocated in this
+ * Output only. [Output Only] The number of hosts that are allocated in this
* reservation subBlock.
*
* Generated from protobuf field optional int32 count = 94851343;
@@ -212,7 +212,7 @@ public function clearCount()
}
/**
- * [Output Only] The number of hosts that are allocated in this
+ * Output only. [Output Only] The number of hosts that are allocated in this
* reservation subBlock.
*
* Generated from protobuf field optional int32 count = 94851343;
@@ -228,7 +228,7 @@ public function setCount($var)
}
/**
- * [Output Only] Creation timestamp inRFC3339 text format.
+ * Output only. [Output Only] Creation timestamp inRFC3339 text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
* @return string
@@ -249,7 +249,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339 text format.
+ * Output only. [Output Only] Creation timestamp inRFC3339 text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
* @param string $var
@@ -264,7 +264,7 @@ public function setCreationTimestamp($var)
}
/**
- * [Output Only] Health information for the reservation subBlock.
+ * Output only. [Output Only] Health information for the reservation subBlock.
*
* Generated from protobuf field optional .google.cloud.compute.v1.ReservationSubBlockHealthInfo health_info = 235287729;
* @return \Google\Cloud\Compute\V1\ReservationSubBlockHealthInfo|null
@@ -285,7 +285,7 @@ public function clearHealthInfo()
}
/**
- * [Output Only] Health information for the reservation subBlock.
+ * Output only. [Output Only] Health information for the reservation subBlock.
*
* Generated from protobuf field optional .google.cloud.compute.v1.ReservationSubBlockHealthInfo health_info = 235287729;
* @param \Google\Cloud\Compute\V1\ReservationSubBlockHealthInfo $var
@@ -300,7 +300,7 @@ public function setHealthInfo($var)
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -322,7 +322,7 @@ public function clearId()
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -338,7 +338,7 @@ public function setId($var)
}
/**
- * [Output Only] The number of instances that are currently in use on this
+ * Output only. [Output Only] The number of instances that are currently in use on this
* reservation subBlock.
*
* Generated from protobuf field optional int32 in_use_count = 493458877;
@@ -360,7 +360,7 @@ public function clearInUseCount()
}
/**
- * [Output Only] The number of instances that are currently in use on this
+ * Output only. [Output Only] The number of instances that are currently in use on this
* reservation subBlock.
*
* Generated from protobuf field optional int32 in_use_count = 493458877;
@@ -376,7 +376,7 @@ public function setInUseCount($var)
}
/**
- * [Output Only] Type of the resource. Alwayscompute#reservationSubBlock for reservation subBlocks.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#reservationSubBlock for reservation subBlocks.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -397,7 +397,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Alwayscompute#reservationSubBlock for reservation subBlocks.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#reservationSubBlock for reservation subBlocks.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -412,7 +412,7 @@ public function setKind($var)
}
/**
- * [Output Only] The name of this reservation subBlock generated by Google
+ * Output only. [Output Only] The name of this reservation subBlock generated by Google
* Compute Engine. The name must be 1-63 characters long, and comply with
* RFC1035 @pattern [a-z](?:[-a-z0-9]{0,61}[a-z0-9])?
*
@@ -435,7 +435,7 @@ public function clearName()
}
/**
- * [Output Only] The name of this reservation subBlock generated by Google
+ * Output only. [Output Only] The name of this reservation subBlock generated by Google
* Compute Engine. The name must be 1-63 characters long, and comply with
* RFC1035 @pattern [a-z](?:[-a-z0-9]{0,61}[a-z0-9])?
*
@@ -452,7 +452,7 @@ public function setName($var)
}
/**
- * [Output Only] The physical topology of the reservation subBlock.
+ * Output only. [Output Only] The physical topology of the reservation subBlock.
*
* Generated from protobuf field optional .google.cloud.compute.v1.ReservationSubBlockPhysicalTopology physical_topology = 279778519;
* @return \Google\Cloud\Compute\V1\ReservationSubBlockPhysicalTopology|null
@@ -473,7 +473,7 @@ public function clearPhysicalTopology()
}
/**
- * [Output Only] The physical topology of the reservation subBlock.
+ * Output only. [Output Only] The physical topology of the reservation subBlock.
*
* Generated from protobuf field optional .google.cloud.compute.v1.ReservationSubBlockPhysicalTopology physical_topology = 279778519;
* @param \Google\Cloud\Compute\V1\ReservationSubBlockPhysicalTopology $var
@@ -488,7 +488,7 @@ public function setPhysicalTopology($var)
}
/**
- * Maintenance information for this reservation subBlock.
+ * Output only. Maintenance information for this reservation subBlock.
*
* Generated from protobuf field optional .google.cloud.compute.v1.GroupMaintenanceInfo reservation_sub_block_maintenance = 377005551;
* @return \Google\Cloud\Compute\V1\GroupMaintenanceInfo|null
@@ -509,7 +509,7 @@ public function clearReservationSubBlockMaintenance()
}
/**
- * Maintenance information for this reservation subBlock.
+ * Output only. Maintenance information for this reservation subBlock.
*
* Generated from protobuf field optional .google.cloud.compute.v1.GroupMaintenanceInfo reservation_sub_block_maintenance = 377005551;
* @param \Google\Cloud\Compute\V1\GroupMaintenanceInfo $var
@@ -524,7 +524,7 @@ public function setReservationSubBlockMaintenance($var)
}
/**
- * [Output Only] Server-defined fully-qualified URL for this resource.
+ * Output only. [Output Only] Server-defined fully-qualified URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -545,7 +545,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined fully-qualified URL for this resource.
+ * Output only. [Output Only] Server-defined fully-qualified URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -560,7 +560,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Server-defined URL for this resource with the resource id.
+ * Output only. [Output Only] Server-defined URL for this resource with the resource id.
*
* Generated from protobuf field optional string self_link_with_id = 44520962;
* @return string
@@ -581,7 +581,7 @@ public function clearSelfLinkWithId()
}
/**
- * [Output Only] Server-defined URL for this resource with the resource id.
+ * Output only. [Output Only] Server-defined URL for this resource with the resource id.
*
* Generated from protobuf field optional string self_link_with_id = 44520962;
* @param string $var
@@ -596,7 +596,7 @@ public function setSelfLinkWithId($var)
}
/**
- * [Output Only] Status of the reservation subBlock.
+ * Output only. [Output Only] Status of the reservation subBlock.
* Check the Status enum for the list of possible values.
*
* Generated from protobuf field optional string status = 181260274;
@@ -618,7 +618,7 @@ public function clearStatus()
}
/**
- * [Output Only] Status of the reservation subBlock.
+ * Output only. [Output Only] Status of the reservation subBlock.
* Check the Status enum for the list of possible values.
*
* Generated from protobuf field optional string status = 181260274;
@@ -634,7 +634,7 @@ public function setStatus($var)
}
/**
- * [Output Only] Zone in which the reservation subBlock resides.
+ * Output only. [Output Only] Zone in which the reservation subBlock resides.
*
* Generated from protobuf field optional string zone = 3744684;
* @return string
@@ -655,7 +655,7 @@ public function clearZone()
}
/**
- * [Output Only] Zone in which the reservation subBlock resides.
+ * Output only. [Output Only] Zone in which the reservation subBlock resides.
*
* Generated from protobuf field optional string zone = 3744684;
* @param string $var
diff --git a/Compute/src/V1/ReservationSubBlock/Status.php b/Compute/src/V1/ReservationSubBlock/Status.php
index 76123cef33ab..bace801c7f86 100644
--- a/Compute/src/V1/ReservationSubBlock/Status.php
+++ b/Compute/src/V1/ReservationSubBlock/Status.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] Status of the reservation subBlock.
+ * Output only. [Output Only] Status of the reservation subBlock.
*
* Protobuf type google.cloud.compute.v1.ReservationSubBlock.Status
*/
diff --git a/Compute/src/V1/ResourcePolicy.php b/Compute/src/V1/ResourcePolicy.php
index 23d79e87314f..9698b159cfed 100644
--- a/Compute/src/V1/ResourcePolicy.php
+++ b/Compute/src/V1/ResourcePolicy.php
@@ -19,7 +19,7 @@
class ResourcePolicy extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -42,7 +42,7 @@ class ResourcePolicy extends \Google\Protobuf\Internal\Message
*/
protected $group_placement_policy = null;
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -55,7 +55,7 @@ class ResourcePolicy extends \Google\Protobuf\Internal\Message
*/
protected $instance_schedule_policy = null;
/**
- * [Output Only] Type of the resource. Alwayscompute#resource_policies for resource policies.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#resource_policies for resource policies.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -78,13 +78,13 @@ class ResourcePolicy extends \Google\Protobuf\Internal\Message
*/
protected $region = null;
/**
- * [Output Only] The system status of the resource policy.
+ * Output only. [Output Only] The system status of the resource policy.
*
* Generated from protobuf field optional .google.cloud.compute.v1.ResourcePolicyResourceStatus resource_status = 249429315;
*/
protected $resource_status = null;
/**
- * [Output Only] Server-defined fully-qualified URL for this resource.
+ * Output only. [Output Only] Server-defined fully-qualified URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -96,7 +96,7 @@ class ResourcePolicy extends \Google\Protobuf\Internal\Message
*/
protected $snapshot_schedule_policy = null;
/**
- * [Output Only] The status of resource policy creation.
+ * Output only. [Output Only] The status of resource policy creation.
* Check the Status enum for the list of possible values.
*
* Generated from protobuf field optional string status = 181260274;
@@ -116,7 +116,7 @@ class ResourcePolicy extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $description
* @type \Google\Cloud\Compute\V1\ResourcePolicyDiskConsistencyGroupPolicy $disk_consistency_group_policy
@@ -124,12 +124,12 @@ class ResourcePolicy extends \Google\Protobuf\Internal\Message
* @type \Google\Cloud\Compute\V1\ResourcePolicyGroupPlacementPolicy $group_placement_policy
* Resource policy for instances for placement configuration.
* @type int|string $id
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type \Google\Cloud\Compute\V1\ResourcePolicyInstanceSchedulePolicy $instance_schedule_policy
* Resource policy for scheduling instance operations.
* @type string $kind
- * [Output Only] Type of the resource. Alwayscompute#resource_policies for resource policies.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#resource_policies for resource policies.
* @type string $name
* The name of the resource, provided by the client when initially creating
* the resource. The resource name must be 1-63 characters long, and comply
@@ -141,13 +141,13 @@ class ResourcePolicy extends \Google\Protobuf\Internal\Message
* be a dash.
* @type string $region
* @type \Google\Cloud\Compute\V1\ResourcePolicyResourceStatus $resource_status
- * [Output Only] The system status of the resource policy.
+ * Output only. [Output Only] The system status of the resource policy.
* @type string $self_link
- * [Output Only] Server-defined fully-qualified URL for this resource.
+ * Output only. [Output Only] Server-defined fully-qualified URL for this resource.
* @type \Google\Cloud\Compute\V1\ResourcePolicySnapshotSchedulePolicy $snapshot_schedule_policy
* Resource policy for persistent disks for creating snapshots.
* @type string $status
- * [Output Only] The status of resource policy creation.
+ * Output only. [Output Only] The status of resource policy creation.
* Check the Status enum for the list of possible values.
* @type \Google\Cloud\Compute\V1\ResourcePolicyWorkloadPolicy $workload_policy
* Resource policy for defining instance placement for MIGs.
@@ -159,7 +159,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -181,7 +181,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -301,7 +301,7 @@ public function setGroupPlacementPolicy($var)
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -323,7 +323,7 @@ public function clearId()
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -375,7 +375,7 @@ public function setInstanceSchedulePolicy($var)
}
/**
- * [Output Only] Type of the resource. Alwayscompute#resource_policies for resource policies.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#resource_policies for resource policies.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -396,7 +396,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Alwayscompute#resource_policies for resource policies.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#resource_policies for resource policies.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -493,7 +493,7 @@ public function setRegion($var)
}
/**
- * [Output Only] The system status of the resource policy.
+ * Output only. [Output Only] The system status of the resource policy.
*
* Generated from protobuf field optional .google.cloud.compute.v1.ResourcePolicyResourceStatus resource_status = 249429315;
* @return \Google\Cloud\Compute\V1\ResourcePolicyResourceStatus|null
@@ -514,7 +514,7 @@ public function clearResourceStatus()
}
/**
- * [Output Only] The system status of the resource policy.
+ * Output only. [Output Only] The system status of the resource policy.
*
* Generated from protobuf field optional .google.cloud.compute.v1.ResourcePolicyResourceStatus resource_status = 249429315;
* @param \Google\Cloud\Compute\V1\ResourcePolicyResourceStatus $var
@@ -529,7 +529,7 @@ public function setResourceStatus($var)
}
/**
- * [Output Only] Server-defined fully-qualified URL for this resource.
+ * Output only. [Output Only] Server-defined fully-qualified URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -550,7 +550,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined fully-qualified URL for this resource.
+ * Output only. [Output Only] Server-defined fully-qualified URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -601,7 +601,7 @@ public function setSnapshotSchedulePolicy($var)
}
/**
- * [Output Only] The status of resource policy creation.
+ * Output only. [Output Only] The status of resource policy creation.
* Check the Status enum for the list of possible values.
*
* Generated from protobuf field optional string status = 181260274;
@@ -623,7 +623,7 @@ public function clearStatus()
}
/**
- * [Output Only] The status of resource policy creation.
+ * Output only. [Output Only] The status of resource policy creation.
* Check the Status enum for the list of possible values.
*
* Generated from protobuf field optional string status = 181260274;
diff --git a/Compute/src/V1/ResourcePolicy/Status.php b/Compute/src/V1/ResourcePolicy/Status.php
index a2aa1ade6499..29e8c160f4a9 100644
--- a/Compute/src/V1/ResourcePolicy/Status.php
+++ b/Compute/src/V1/ResourcePolicy/Status.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] The status of resource policy creation.
+ * Output only. [Output Only] The status of resource policy creation.
*
* Protobuf type google.cloud.compute.v1.ResourcePolicy.Status
*/
diff --git a/Compute/src/V1/ResourcePolicyAggregatedList.php b/Compute/src/V1/ResourcePolicyAggregatedList.php
index b93ca9df0903..c83e06a44c30 100644
--- a/Compute/src/V1/ResourcePolicyAggregatedList.php
+++ b/Compute/src/V1/ResourcePolicyAggregatedList.php
@@ -32,7 +32,7 @@ class ResourcePolicyAggregatedList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -48,13 +48,13 @@ class ResourcePolicyAggregatedList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
@@ -78,7 +78,7 @@ class ResourcePolicyAggregatedList extends \Google\Protobuf\Internal\Message
* @type array|\Google\Protobuf\Internal\MapField $items
* A list of ResourcePolicy resources.
* @type string $kind
- * Type of resource.
+ * Output only. Type of resource.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -86,9 +86,9 @@ class ResourcePolicyAggregatedList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -193,7 +193,7 @@ public function setItems($var)
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -214,7 +214,7 @@ public function clearKind()
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -273,7 +273,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -294,7 +294,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -309,7 +309,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -320,7 +320,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/ResourcePolicyDailyCycle.php b/Compute/src/V1/ResourcePolicyDailyCycle.php
index 7493c8b1f4e8..e6c9ce1c1bea 100644
--- a/Compute/src/V1/ResourcePolicyDailyCycle.php
+++ b/Compute/src/V1/ResourcePolicyDailyCycle.php
@@ -23,7 +23,7 @@ class ResourcePolicyDailyCycle extends \Google\Protobuf\Internal\Message
*/
protected $days_in_cycle = null;
/**
- * [Output only] A predetermined duration for the window, automatically
+ * Output only. [Output only] A predetermined duration for the window, automatically
* chosen to be the smallest possible in the given scenario.
*
* Generated from protobuf field optional string duration = 155471252;
@@ -48,7 +48,7 @@ class ResourcePolicyDailyCycle extends \Google\Protobuf\Internal\Message
* Defines a schedule with units measured in days. The value determines
* how many days pass between the start of each cycle.
* @type string $duration
- * [Output only] A predetermined duration for the window, automatically
+ * Output only. [Output only] A predetermined duration for the window, automatically
* chosen to be the smallest possible in the given scenario.
* @type string $start_time
* Start time of the window. This must be in UTC format that resolves to one
@@ -100,7 +100,7 @@ public function setDaysInCycle($var)
}
/**
- * [Output only] A predetermined duration for the window, automatically
+ * Output only. [Output only] A predetermined duration for the window, automatically
* chosen to be the smallest possible in the given scenario.
*
* Generated from protobuf field optional string duration = 155471252;
@@ -122,7 +122,7 @@ public function clearDuration()
}
/**
- * [Output only] A predetermined duration for the window, automatically
+ * Output only. [Output only] A predetermined duration for the window, automatically
* chosen to be the smallest possible in the given scenario.
*
* Generated from protobuf field optional string duration = 155471252;
diff --git a/Compute/src/V1/ResourcePolicyHourlyCycle.php b/Compute/src/V1/ResourcePolicyHourlyCycle.php
index 946b120163a1..4dcb1d2ca08e 100644
--- a/Compute/src/V1/ResourcePolicyHourlyCycle.php
+++ b/Compute/src/V1/ResourcePolicyHourlyCycle.php
@@ -16,7 +16,7 @@
class ResourcePolicyHourlyCycle extends \Google\Protobuf\Internal\Message
{
/**
- * [Output only] Duration of the time window, automatically chosen to be
+ * Output only. [Output only] Duration of the time window, automatically chosen to be
* smallest possible in the given scenario.
*
* Generated from protobuf field optional string duration = 155471252;
@@ -44,7 +44,7 @@ class ResourcePolicyHourlyCycle extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $duration
- * [Output only] Duration of the time window, automatically chosen to be
+ * Output only. [Output only] Duration of the time window, automatically chosen to be
* smallest possible in the given scenario.
* @type int $hours_in_cycle
* Defines a schedule with units measured in hours. The value determines
@@ -60,7 +60,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output only] Duration of the time window, automatically chosen to be
+ * Output only. [Output only] Duration of the time window, automatically chosen to be
* smallest possible in the given scenario.
*
* Generated from protobuf field optional string duration = 155471252;
@@ -82,7 +82,7 @@ public function clearDuration()
}
/**
- * [Output only] Duration of the time window, automatically chosen to be
+ * Output only. [Output only] Duration of the time window, automatically chosen to be
* smallest possible in the given scenario.
*
* Generated from protobuf field optional string duration = 155471252;
diff --git a/Compute/src/V1/ResourcePolicyList.php b/Compute/src/V1/ResourcePolicyList.php
index e118b6866c0c..51b55e423750 100644
--- a/Compute/src/V1/ResourcePolicyList.php
+++ b/Compute/src/V1/ResourcePolicyList.php
@@ -32,7 +32,7 @@ class ResourcePolicyList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource.Alwayscompute#resourcePoliciesList for listsof resourcePolicies
+ * Output only. [Output Only] Type of resource.Alwayscompute#resourcePoliciesList for listsof resourcePolicies
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -48,7 +48,7 @@ class ResourcePolicyList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -73,7 +73,7 @@ class ResourcePolicyList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\ResourcePolicy>|\Google\Protobuf\Internal\RepeatedField $items
* [Output Only] A list of ResourcePolicy resources.
* @type string $kind
- * [Output Only] Type of resource.Alwayscompute#resourcePoliciesList for listsof resourcePolicies
+ * Output only. [Output Only] Type of resource.Alwayscompute#resourcePoliciesList for listsof resourcePolicies
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -81,7 +81,7 @@ class ResourcePolicyList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -188,7 +188,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource.Alwayscompute#resourcePoliciesList for listsof resourcePolicies
+ * Output only. [Output Only] Type of resource.Alwayscompute#resourcePoliciesList for listsof resourcePolicies
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -209,7 +209,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource.Alwayscompute#resourcePoliciesList for listsof resourcePolicies
+ * Output only. [Output Only] Type of resource.Alwayscompute#resourcePoliciesList for listsof resourcePolicies
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -268,7 +268,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -289,7 +289,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/ResourcePolicyResourceStatus.php b/Compute/src/V1/ResourcePolicyResourceStatus.php
index 94352c881d7a..2ecc1dc34090 100644
--- a/Compute/src/V1/ResourcePolicyResourceStatus.php
+++ b/Compute/src/V1/ResourcePolicyResourceStatus.php
@@ -19,7 +19,7 @@
class ResourcePolicyResourceStatus extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Specifies a set of output values reffering to
+ * Output only. [Output Only] Specifies a set of output values reffering to
* the instance_schedule_policy system status.
* This field should have the same name as corresponding policy field.
*
@@ -34,7 +34,7 @@ class ResourcePolicyResourceStatus extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type \Google\Cloud\Compute\V1\ResourcePolicyResourceStatusInstanceSchedulePolicyStatus $instance_schedule_policy
- * [Output Only] Specifies a set of output values reffering to
+ * Output only. [Output Only] Specifies a set of output values reffering to
* the instance_schedule_policy system status.
* This field should have the same name as corresponding policy field.
* }
@@ -45,7 +45,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Specifies a set of output values reffering to
+ * Output only. [Output Only] Specifies a set of output values reffering to
* the instance_schedule_policy system status.
* This field should have the same name as corresponding policy field.
*
@@ -68,7 +68,7 @@ public function clearInstanceSchedulePolicy()
}
/**
- * [Output Only] Specifies a set of output values reffering to
+ * Output only. [Output Only] Specifies a set of output values reffering to
* the instance_schedule_policy system status.
* This field should have the same name as corresponding policy field.
*
diff --git a/Compute/src/V1/ResourcePolicyResourceStatusInstanceSchedulePolicyStatus.php b/Compute/src/V1/ResourcePolicyResourceStatusInstanceSchedulePolicyStatus.php
index 4947f9ffa01c..bd2071f77fde 100644
--- a/Compute/src/V1/ResourcePolicyResourceStatusInstanceSchedulePolicyStatus.php
+++ b/Compute/src/V1/ResourcePolicyResourceStatusInstanceSchedulePolicyStatus.php
@@ -15,14 +15,14 @@
class ResourcePolicyResourceStatusInstanceSchedulePolicyStatus extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] The last time the schedule successfully ran.
+ * Output only. [Output Only] The last time the schedule successfully ran.
* The timestamp is an RFC3339 string.
*
* Generated from protobuf field optional string last_run_start_time = 303069063;
*/
protected $last_run_start_time = null;
/**
- * [Output Only] The next time the schedule is planned to run.
+ * Output only. [Output Only] The next time the schedule is planned to run.
* The actual time might be slightly different.
* The timestamp is an RFC3339 string.
*
@@ -37,10 +37,10 @@ class ResourcePolicyResourceStatusInstanceSchedulePolicyStatus extends \Google\P
* Optional. Data for populating the Message object.
*
* @type string $last_run_start_time
- * [Output Only] The last time the schedule successfully ran.
+ * Output only. [Output Only] The last time the schedule successfully ran.
* The timestamp is an RFC3339 string.
* @type string $next_run_start_time
- * [Output Only] The next time the schedule is planned to run.
+ * Output only. [Output Only] The next time the schedule is planned to run.
* The actual time might be slightly different.
* The timestamp is an RFC3339 string.
* }
@@ -51,7 +51,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] The last time the schedule successfully ran.
+ * Output only. [Output Only] The last time the schedule successfully ran.
* The timestamp is an RFC3339 string.
*
* Generated from protobuf field optional string last_run_start_time = 303069063;
@@ -73,7 +73,7 @@ public function clearLastRunStartTime()
}
/**
- * [Output Only] The last time the schedule successfully ran.
+ * Output only. [Output Only] The last time the schedule successfully ran.
* The timestamp is an RFC3339 string.
*
* Generated from protobuf field optional string last_run_start_time = 303069063;
@@ -89,7 +89,7 @@ public function setLastRunStartTime($var)
}
/**
- * [Output Only] The next time the schedule is planned to run.
+ * Output only. [Output Only] The next time the schedule is planned to run.
* The actual time might be slightly different.
* The timestamp is an RFC3339 string.
*
@@ -112,7 +112,7 @@ public function clearNextRunStartTime()
}
/**
- * [Output Only] The next time the schedule is planned to run.
+ * Output only. [Output Only] The next time the schedule is planned to run.
* The actual time might be slightly different.
* The timestamp is an RFC3339 string.
*
diff --git a/Compute/src/V1/ResourcePolicyWeeklyCycleDayOfWeek.php b/Compute/src/V1/ResourcePolicyWeeklyCycleDayOfWeek.php
index 6ba130de57a3..73de737fac85 100644
--- a/Compute/src/V1/ResourcePolicyWeeklyCycleDayOfWeek.php
+++ b/Compute/src/V1/ResourcePolicyWeeklyCycleDayOfWeek.php
@@ -24,7 +24,7 @@ class ResourcePolicyWeeklyCycleDayOfWeek extends \Google\Protobuf\Internal\Messa
*/
protected $day = null;
/**
- * [Output only] Duration of the time window, automatically chosen to be
+ * Output only. [Output only] Duration of the time window, automatically chosen to be
* smallest possible in the given scenario.
*
* Generated from protobuf field optional string duration = 155471252;
@@ -50,7 +50,7 @@ class ResourcePolicyWeeklyCycleDayOfWeek extends \Google\Protobuf\Internal\Messa
* MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY.
* Check the Day enum for the list of possible values.
* @type string $duration
- * [Output only] Duration of the time window, automatically chosen to be
+ * Output only. [Output only] Duration of the time window, automatically chosen to be
* smallest possible in the given scenario.
* @type string $start_time
* Time within the window to start the operations.
@@ -105,7 +105,7 @@ public function setDay($var)
}
/**
- * [Output only] Duration of the time window, automatically chosen to be
+ * Output only. [Output only] Duration of the time window, automatically chosen to be
* smallest possible in the given scenario.
*
* Generated from protobuf field optional string duration = 155471252;
@@ -127,7 +127,7 @@ public function clearDuration()
}
/**
- * [Output only] Duration of the time window, automatically chosen to be
+ * Output only. [Output only] Duration of the time window, automatically chosen to be
* smallest possible in the given scenario.
*
* Generated from protobuf field optional string duration = 155471252;
diff --git a/Compute/src/V1/ResourceStatus.php b/Compute/src/V1/ResourceStatus.php
index 182381b991c9..01d981131601 100644
--- a/Compute/src/V1/ResourceStatus.php
+++ b/Compute/src/V1/ResourceStatus.php
@@ -18,7 +18,7 @@
class ResourceStatus extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Effective metadata is a field that consolidates project,
+ * Output only. [Output Only] Effective metadata is a field that consolidates project,
* zonal instance settings, and instance-level predefined metadata keys to
* provide the overridden value for those metadata keys at the instance level.
*
@@ -26,7 +26,7 @@ class ResourceStatus extends \Google\Protobuf\Internal\Message
*/
protected $effective_instance_metadata = null;
/**
- * [Output Only] The precise location of your instance within the zone's data
+ * Output only. [Output Only] The precise location of your instance within the zone's data
* center, including the block, sub-block, and host. The field is formatted as
* follows: blockId/subBlockId/hostId.
*
@@ -34,7 +34,7 @@ class ResourceStatus extends \Google\Protobuf\Internal\Message
*/
protected $physical_host = null;
/**
- * [Output Only] A series of fields containing the global name of the Compute
+ * Output only. [Output Only] A series of fields containing the global name of the Compute
* Engine cluster, as well as the ID of the block, sub-block, and host on
* which the running instance is located.
*
@@ -42,7 +42,7 @@ class ResourceStatus extends \Google\Protobuf\Internal\Message
*/
protected $physical_host_topology = null;
/**
- * [Output Only] Reservation information that the instance is consuming from.
+ * Output only. [Output Only] Reservation information that the instance is consuming from.
*
* Generated from protobuf field optional .google.cloud.compute.v1.ResourceStatusReservationConsumptionInfo reservation_consumption_info = 201056997;
*/
@@ -63,19 +63,19 @@ class ResourceStatus extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type \Google\Cloud\Compute\V1\ResourceStatusEffectiveInstanceMetadata $effective_instance_metadata
- * [Output Only] Effective metadata is a field that consolidates project,
+ * Output only. [Output Only] Effective metadata is a field that consolidates project,
* zonal instance settings, and instance-level predefined metadata keys to
* provide the overridden value for those metadata keys at the instance level.
* @type string $physical_host
- * [Output Only] The precise location of your instance within the zone's data
+ * Output only. [Output Only] The precise location of your instance within the zone's data
* center, including the block, sub-block, and host. The field is formatted as
* follows: blockId/subBlockId/hostId.
* @type \Google\Cloud\Compute\V1\ResourceStatusPhysicalHostTopology $physical_host_topology
- * [Output Only] A series of fields containing the global name of the Compute
+ * Output only. [Output Only] A series of fields containing the global name of the Compute
* Engine cluster, as well as the ID of the block, sub-block, and host on
* which the running instance is located.
* @type \Google\Cloud\Compute\V1\ResourceStatusReservationConsumptionInfo $reservation_consumption_info
- * [Output Only] Reservation information that the instance is consuming from.
+ * Output only. [Output Only] Reservation information that the instance is consuming from.
* @type \Google\Cloud\Compute\V1\ResourceStatusScheduling $scheduling
* @type \Google\Cloud\Compute\V1\UpcomingMaintenance $upcoming_maintenance
* }
@@ -86,7 +86,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Effective metadata is a field that consolidates project,
+ * Output only. [Output Only] Effective metadata is a field that consolidates project,
* zonal instance settings, and instance-level predefined metadata keys to
* provide the overridden value for those metadata keys at the instance level.
*
@@ -109,7 +109,7 @@ public function clearEffectiveInstanceMetadata()
}
/**
- * [Output Only] Effective metadata is a field that consolidates project,
+ * Output only. [Output Only] Effective metadata is a field that consolidates project,
* zonal instance settings, and instance-level predefined metadata keys to
* provide the overridden value for those metadata keys at the instance level.
*
@@ -126,7 +126,7 @@ public function setEffectiveInstanceMetadata($var)
}
/**
- * [Output Only] The precise location of your instance within the zone's data
+ * Output only. [Output Only] The precise location of your instance within the zone's data
* center, including the block, sub-block, and host. The field is formatted as
* follows: blockId/subBlockId/hostId.
*
@@ -149,7 +149,7 @@ public function clearPhysicalHost()
}
/**
- * [Output Only] The precise location of your instance within the zone's data
+ * Output only. [Output Only] The precise location of your instance within the zone's data
* center, including the block, sub-block, and host. The field is formatted as
* follows: blockId/subBlockId/hostId.
*
@@ -166,7 +166,7 @@ public function setPhysicalHost($var)
}
/**
- * [Output Only] A series of fields containing the global name of the Compute
+ * Output only. [Output Only] A series of fields containing the global name of the Compute
* Engine cluster, as well as the ID of the block, sub-block, and host on
* which the running instance is located.
*
@@ -189,7 +189,7 @@ public function clearPhysicalHostTopology()
}
/**
- * [Output Only] A series of fields containing the global name of the Compute
+ * Output only. [Output Only] A series of fields containing the global name of the Compute
* Engine cluster, as well as the ID of the block, sub-block, and host on
* which the running instance is located.
*
@@ -206,7 +206,7 @@ public function setPhysicalHostTopology($var)
}
/**
- * [Output Only] Reservation information that the instance is consuming from.
+ * Output only. [Output Only] Reservation information that the instance is consuming from.
*
* Generated from protobuf field optional .google.cloud.compute.v1.ResourceStatusReservationConsumptionInfo reservation_consumption_info = 201056997;
* @return \Google\Cloud\Compute\V1\ResourceStatusReservationConsumptionInfo|null
@@ -227,7 +227,7 @@ public function clearReservationConsumptionInfo()
}
/**
- * [Output Only] Reservation information that the instance is consuming from.
+ * Output only. [Output Only] Reservation information that the instance is consuming from.
*
* Generated from protobuf field optional .google.cloud.compute.v1.ResourceStatusReservationConsumptionInfo reservation_consumption_info = 201056997;
* @param \Google\Cloud\Compute\V1\ResourceStatusReservationConsumptionInfo $var
diff --git a/Compute/src/V1/ResourceStatusReservationConsumptionInfo.php b/Compute/src/V1/ResourceStatusReservationConsumptionInfo.php
index 677de0f9325a..6796ae5113ad 100644
--- a/Compute/src/V1/ResourceStatusReservationConsumptionInfo.php
+++ b/Compute/src/V1/ResourceStatusReservationConsumptionInfo.php
@@ -16,7 +16,7 @@
class ResourceStatusReservationConsumptionInfo extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] The full resource name of the reservation that this
+ * Output only. [Output Only] The full resource name of the reservation that this
* instance is consuming from.
*
* Generated from protobuf field optional string consumed_reservation = 318474741;
@@ -30,7 +30,7 @@ class ResourceStatusReservationConsumptionInfo extends \Google\Protobuf\Internal
* Optional. Data for populating the Message object.
*
* @type string $consumed_reservation
- * [Output Only] The full resource name of the reservation that this
+ * Output only. [Output Only] The full resource name of the reservation that this
* instance is consuming from.
* }
*/
@@ -40,7 +40,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] The full resource name of the reservation that this
+ * Output only. [Output Only] The full resource name of the reservation that this
* instance is consuming from.
*
* Generated from protobuf field optional string consumed_reservation = 318474741;
@@ -62,7 +62,7 @@ public function clearConsumedReservation()
}
/**
- * [Output Only] The full resource name of the reservation that this
+ * Output only. [Output Only] The full resource name of the reservation that this
* instance is consuming from.
*
* Generated from protobuf field optional string consumed_reservation = 318474741;
diff --git a/Compute/src/V1/Route.php b/Compute/src/V1/Route.php
index 2086bb2c1401..ccfa1df4756f 100644
--- a/Compute/src/V1/Route.php
+++ b/Compute/src/V1/Route.php
@@ -19,13 +19,13 @@
class Route extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] AS path.
+ * Output only. [Output Only] AS path.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.RouteAsPath as_paths = 137568929;
*/
private $as_paths;
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -49,14 +49,14 @@ class Route extends \Google\Protobuf\Internal\Message
*/
protected $dest_range = null;
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
*/
protected $id = null;
/**
- * [Output Only] Type of this resource. Always compute#routes for
+ * Output only. [Output Only] Type of this resource. Always compute#routes for
* Route resources.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -89,7 +89,7 @@ class Route extends \Google\Protobuf\Internal\Message
*/
protected $next_hop_gateway = null;
/**
- * [Output Only] The full resource name of the Network Connectivity Center hub
+ * Output only. [Output Only] The full resource name of the Network Connectivity Center hub
* that will handle matching packets.
*
* Generated from protobuf field optional string next_hop_hub = 198679219;
@@ -123,13 +123,23 @@ class Route extends \Google\Protobuf\Internal\Message
*/
protected $next_hop_instance = null;
/**
- * [Output only] Internal fixed region-to-region cost that Google Cloud
+ * Output only. [Output only] Internal fixed region-to-region cost that Google Cloud
* calculates based on factors such as network performance, distance, and
* available bandwidth between regions.
*
* Generated from protobuf field optional uint32 next_hop_inter_region_cost = 24442003;
*/
protected $next_hop_inter_region_cost = null;
+ /**
+ * Output only. [Output Only] The URL to an InterconnectAttachment which is the next hop
+ * for the route.
+ * This field will only be populated for dynamic routes generated by
+ * Cloud Router with a linked interconnectAttachment or the static route
+ * generated by each L2 Interconnect Attachment.
+ *
+ * Generated from protobuf field optional string next_hop_interconnect_attachment = 226852914;
+ */
+ protected $next_hop_interconnect_attachment = null;
/**
* The network IP address of an instance that should handle matching packets.
* Both IPv6 address and IPv4 addresses are supported.
@@ -143,7 +153,7 @@ class Route extends \Google\Protobuf\Internal\Message
*/
protected $next_hop_ip = null;
/**
- * [Output Only] Multi-Exit Discriminator, a BGP route metric that indicates
+ * Output only. [Output Only] Multi-Exit Discriminator, a BGP route metric that indicates
* the desirability of a particular route in a network.
*
* Generated from protobuf field optional uint32 next_hop_med = 198683530;
@@ -156,7 +166,7 @@ class Route extends \Google\Protobuf\Internal\Message
*/
protected $next_hop_network = null;
/**
- * [Output Only] Indicates the origin of the route. Can be IGP
+ * Output only. [Output Only] Indicates the origin of the route. Can be IGP
* (Interior Gateway Protocol), EGP (Exterior Gateway Protocol),
* or INCOMPLETE.
* Check the NextHopOrigin enum for the list of possible values.
@@ -165,7 +175,7 @@ class Route extends \Google\Protobuf\Internal\Message
*/
protected $next_hop_origin = null;
/**
- * [Output Only] The network peering name that should handle matching packets,
+ * Output only. [Output Only] The network peering name that should handle matching packets,
* which should conform to RFC1035.
*
* Generated from protobuf field optional string next_hop_peering = 412682750;
@@ -195,16 +205,16 @@ class Route extends \Google\Protobuf\Internal\Message
*/
protected $priority = null;
/**
- * [Output only] The status of the route. This status only applies to
- * dynamic routes learned by Cloud Routers. This status is not applicable
- * to static routes.
+ * [Output only] The status of the route. This status applies to
+ * dynamic routes learned by Cloud Routers. It is also applicable to routes
+ * undergoing migration.
* Check the RouteStatus enum for the list of possible values.
*
* Generated from protobuf field optional string route_status = 418162344;
*/
protected $route_status = null;
/**
- * [Output Only] The type of this route, which can be one of the following
+ * Output only. [Output Only] The type of this route, which can be one of the following
* values:
* - 'TRANSIT' for a transit route that this router learned from
* another Cloud Router and will readvertise to one of its BGP peers
@@ -229,7 +239,7 @@ class Route extends \Google\Protobuf\Internal\Message
*/
private $tags;
/**
- * [Output Only] If potential misconfigurations are detected for this
+ * Output only. [Output Only] If potential misconfigurations are detected for this
* route, this field will be populated with warning messages.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.Warnings warnings = 498091095;
@@ -243,9 +253,9 @@ class Route extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type array<\Google\Cloud\Compute\V1\RouteAsPath>|\Google\Protobuf\Internal\RepeatedField $as_paths
- * [Output Only] AS path.
+ * Output only. [Output Only] AS path.
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $description
* An optional description of this resource. Provide this field when you
@@ -257,10 +267,10 @@ class Route extends \Google\Protobuf\Internal\Message
* format (e.g. 2001:db8::/32). IPv6 range will be displayed using RFC 5952
* compressed format.
* @type int|string $id
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type string $kind
- * [Output Only] Type of this resource. Always compute#routes for
+ * Output only. [Output Only] Type of this resource. Always compute#routes for
* Route resources.
* @type string $name
* Name of the resource. Provided by the client when the resource is created.
@@ -277,7 +287,7 @@ class Route extends \Google\Protobuf\Internal\Message
* You can only specify the internet gateway using a full or
* partial valid URL: projects/project/global/gateways/default-internet-gateway
* @type string $next_hop_hub
- * [Output Only] The full resource name of the Network Connectivity Center hub
+ * Output only. [Output Only] The full resource name of the Network Connectivity Center hub
* that will handle matching packets.
* @type string $next_hop_ilb
* The URL to a forwarding rule of typeloadBalancingScheme=INTERNAL that should handle matching
@@ -299,9 +309,15 @@ class Route extends \Google\Protobuf\Internal\Message
* For example:
* https://www.googleapis.com/compute/v1/projects/project/zones/zone/instances/
* @type int $next_hop_inter_region_cost
- * [Output only] Internal fixed region-to-region cost that Google Cloud
+ * Output only. [Output only] Internal fixed region-to-region cost that Google Cloud
* calculates based on factors such as network performance, distance, and
* available bandwidth between regions.
+ * @type string $next_hop_interconnect_attachment
+ * Output only. [Output Only] The URL to an InterconnectAttachment which is the next hop
+ * for the route.
+ * This field will only be populated for dynamic routes generated by
+ * Cloud Router with a linked interconnectAttachment or the static route
+ * generated by each L2 Interconnect Attachment.
* @type string $next_hop_ip
* The network IP address of an instance that should handle matching packets.
* Both IPv6 address and IPv4 addresses are supported.
@@ -311,17 +327,17 @@ class Route extends \Google\Protobuf\Internal\Message
* compressed format (e.g. 2001:db8::2d9:51:0:0). Should never be an
* IPv4-mapped IPv6 address.
* @type int $next_hop_med
- * [Output Only] Multi-Exit Discriminator, a BGP route metric that indicates
+ * Output only. [Output Only] Multi-Exit Discriminator, a BGP route metric that indicates
* the desirability of a particular route in a network.
* @type string $next_hop_network
* The URL of the local network if it should handle matching packets.
* @type string $next_hop_origin
- * [Output Only] Indicates the origin of the route. Can be IGP
+ * Output only. [Output Only] Indicates the origin of the route. Can be IGP
* (Interior Gateway Protocol), EGP (Exterior Gateway Protocol),
* or INCOMPLETE.
* Check the NextHopOrigin enum for the list of possible values.
* @type string $next_hop_peering
- * [Output Only] The network peering name that should handle matching packets,
+ * Output only. [Output Only] The network peering name that should handle matching packets,
* which should conform to RFC1035.
* @type string $next_hop_vpn_tunnel
* The URL to a VpnTunnel that should handle matching packets.
@@ -335,12 +351,12 @@ class Route extends \Google\Protobuf\Internal\Message
* lowest-numbered priority value wins. The default value is `1000`. The
* priority value must be from `0` to `65535`, inclusive.
* @type string $route_status
- * [Output only] The status of the route. This status only applies to
- * dynamic routes learned by Cloud Routers. This status is not applicable
- * to static routes.
+ * [Output only] The status of the route. This status applies to
+ * dynamic routes learned by Cloud Routers. It is also applicable to routes
+ * undergoing migration.
* Check the RouteStatus enum for the list of possible values.
* @type string $route_type
- * [Output Only] The type of this route, which can be one of the following
+ * Output only. [Output Only] The type of this route, which can be one of the following
* values:
* - 'TRANSIT' for a transit route that this router learned from
* another Cloud Router and will readvertise to one of its BGP peers
@@ -353,7 +369,7 @@ class Route extends \Google\Protobuf\Internal\Message
* @type array|\Google\Protobuf\Internal\RepeatedField $tags
* A list of instance tags to which this route applies.
* @type array<\Google\Cloud\Compute\V1\Warnings>|\Google\Protobuf\Internal\RepeatedField $warnings
- * [Output Only] If potential misconfigurations are detected for this
+ * Output only. [Output Only] If potential misconfigurations are detected for this
* route, this field will be populated with warning messages.
* }
*/
@@ -363,7 +379,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] AS path.
+ * Output only. [Output Only] AS path.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.RouteAsPath as_paths = 137568929;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -374,7 +390,7 @@ public function getAsPaths()
}
/**
- * [Output Only] AS path.
+ * Output only. [Output Only] AS path.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.RouteAsPath as_paths = 137568929;
* @param array<\Google\Cloud\Compute\V1\RouteAsPath>|\Google\Protobuf\Internal\RepeatedField $var
@@ -389,7 +405,7 @@ public function setAsPaths($var)
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -411,7 +427,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -509,7 +525,7 @@ public function setDestRange($var)
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -531,7 +547,7 @@ public function clearId()
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -547,7 +563,7 @@ public function setId($var)
}
/**
- * [Output Only] Type of this resource. Always compute#routes for
+ * Output only. [Output Only] Type of this resource. Always compute#routes for
* Route resources.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -569,7 +585,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of this resource. Always compute#routes for
+ * Output only. [Output Only] Type of this resource. Always compute#routes for
* Route resources.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -709,7 +725,7 @@ public function setNextHopGateway($var)
}
/**
- * [Output Only] The full resource name of the Network Connectivity Center hub
+ * Output only. [Output Only] The full resource name of the Network Connectivity Center hub
* that will handle matching packets.
*
* Generated from protobuf field optional string next_hop_hub = 198679219;
@@ -731,7 +747,7 @@ public function clearNextHopHub()
}
/**
- * [Output Only] The full resource name of the Network Connectivity Center hub
+ * Output only. [Output Only] The full resource name of the Network Connectivity Center hub
* that will handle matching packets.
*
* Generated from protobuf field optional string next_hop_hub = 198679219;
@@ -849,7 +865,7 @@ public function setNextHopInstance($var)
}
/**
- * [Output only] Internal fixed region-to-region cost that Google Cloud
+ * Output only. [Output only] Internal fixed region-to-region cost that Google Cloud
* calculates based on factors such as network performance, distance, and
* available bandwidth between regions.
*
@@ -872,7 +888,7 @@ public function clearNextHopInterRegionCost()
}
/**
- * [Output only] Internal fixed region-to-region cost that Google Cloud
+ * Output only. [Output only] Internal fixed region-to-region cost that Google Cloud
* calculates based on factors such as network performance, distance, and
* available bandwidth between regions.
*
@@ -888,6 +904,50 @@ public function setNextHopInterRegionCost($var)
return $this;
}
+ /**
+ * Output only. [Output Only] The URL to an InterconnectAttachment which is the next hop
+ * for the route.
+ * This field will only be populated for dynamic routes generated by
+ * Cloud Router with a linked interconnectAttachment or the static route
+ * generated by each L2 Interconnect Attachment.
+ *
+ * Generated from protobuf field optional string next_hop_interconnect_attachment = 226852914;
+ * @return string
+ */
+ public function getNextHopInterconnectAttachment()
+ {
+ return isset($this->next_hop_interconnect_attachment) ? $this->next_hop_interconnect_attachment : '';
+ }
+
+ public function hasNextHopInterconnectAttachment()
+ {
+ return isset($this->next_hop_interconnect_attachment);
+ }
+
+ public function clearNextHopInterconnectAttachment()
+ {
+ unset($this->next_hop_interconnect_attachment);
+ }
+
+ /**
+ * Output only. [Output Only] The URL to an InterconnectAttachment which is the next hop
+ * for the route.
+ * This field will only be populated for dynamic routes generated by
+ * Cloud Router with a linked interconnectAttachment or the static route
+ * generated by each L2 Interconnect Attachment.
+ *
+ * Generated from protobuf field optional string next_hop_interconnect_attachment = 226852914;
+ * @param string $var
+ * @return $this
+ */
+ public function setNextHopInterconnectAttachment($var)
+ {
+ GPBUtil::checkString($var, True);
+ $this->next_hop_interconnect_attachment = $var;
+
+ return $this;
+ }
+
/**
* The network IP address of an instance that should handle matching packets.
* Both IPv6 address and IPv4 addresses are supported.
@@ -937,7 +997,7 @@ public function setNextHopIp($var)
}
/**
- * [Output Only] Multi-Exit Discriminator, a BGP route metric that indicates
+ * Output only. [Output Only] Multi-Exit Discriminator, a BGP route metric that indicates
* the desirability of a particular route in a network.
*
* Generated from protobuf field optional uint32 next_hop_med = 198683530;
@@ -959,7 +1019,7 @@ public function clearNextHopMed()
}
/**
- * [Output Only] Multi-Exit Discriminator, a BGP route metric that indicates
+ * Output only. [Output Only] Multi-Exit Discriminator, a BGP route metric that indicates
* the desirability of a particular route in a network.
*
* Generated from protobuf field optional uint32 next_hop_med = 198683530;
@@ -1011,7 +1071,7 @@ public function setNextHopNetwork($var)
}
/**
- * [Output Only] Indicates the origin of the route. Can be IGP
+ * Output only. [Output Only] Indicates the origin of the route. Can be IGP
* (Interior Gateway Protocol), EGP (Exterior Gateway Protocol),
* or INCOMPLETE.
* Check the NextHopOrigin enum for the list of possible values.
@@ -1035,7 +1095,7 @@ public function clearNextHopOrigin()
}
/**
- * [Output Only] Indicates the origin of the route. Can be IGP
+ * Output only. [Output Only] Indicates the origin of the route. Can be IGP
* (Interior Gateway Protocol), EGP (Exterior Gateway Protocol),
* or INCOMPLETE.
* Check the NextHopOrigin enum for the list of possible values.
@@ -1053,7 +1113,7 @@ public function setNextHopOrigin($var)
}
/**
- * [Output Only] The network peering name that should handle matching packets,
+ * Output only. [Output Only] The network peering name that should handle matching packets,
* which should conform to RFC1035.
*
* Generated from protobuf field optional string next_hop_peering = 412682750;
@@ -1075,7 +1135,7 @@ public function clearNextHopPeering()
}
/**
- * [Output Only] The network peering name that should handle matching packets,
+ * Output only. [Output Only] The network peering name that should handle matching packets,
* which should conform to RFC1035.
*
* Generated from protobuf field optional string next_hop_peering = 412682750;
@@ -1209,9 +1269,9 @@ public function setPriority($var)
}
/**
- * [Output only] The status of the route. This status only applies to
- * dynamic routes learned by Cloud Routers. This status is not applicable
- * to static routes.
+ * [Output only] The status of the route. This status applies to
+ * dynamic routes learned by Cloud Routers. It is also applicable to routes
+ * undergoing migration.
* Check the RouteStatus enum for the list of possible values.
*
* Generated from protobuf field optional string route_status = 418162344;
@@ -1233,9 +1293,9 @@ public function clearRouteStatus()
}
/**
- * [Output only] The status of the route. This status only applies to
- * dynamic routes learned by Cloud Routers. This status is not applicable
- * to static routes.
+ * [Output only] The status of the route. This status applies to
+ * dynamic routes learned by Cloud Routers. It is also applicable to routes
+ * undergoing migration.
* Check the RouteStatus enum for the list of possible values.
*
* Generated from protobuf field optional string route_status = 418162344;
@@ -1251,7 +1311,7 @@ public function setRouteStatus($var)
}
/**
- * [Output Only] The type of this route, which can be one of the following
+ * Output only. [Output Only] The type of this route, which can be one of the following
* values:
* - 'TRANSIT' for a transit route that this router learned from
* another Cloud Router and will readvertise to one of its BGP peers
@@ -1279,7 +1339,7 @@ public function clearRouteType()
}
/**
- * [Output Only] The type of this route, which can be one of the following
+ * Output only. [Output Only] The type of this route, which can be one of the following
* values:
* - 'TRANSIT' for a transit route that this router learned from
* another Cloud Router and will readvertise to one of its BGP peers
@@ -1363,7 +1423,7 @@ public function setTags($var)
}
/**
- * [Output Only] If potential misconfigurations are detected for this
+ * Output only. [Output Only] If potential misconfigurations are detected for this
* route, this field will be populated with warning messages.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.Warnings warnings = 498091095;
@@ -1375,7 +1435,7 @@ public function getWarnings()
}
/**
- * [Output Only] If potential misconfigurations are detected for this
+ * Output only. [Output Only] If potential misconfigurations are detected for this
* route, this field will be populated with warning messages.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.Warnings warnings = 498091095;
diff --git a/Compute/src/V1/Route/NextHopOrigin.php b/Compute/src/V1/Route/NextHopOrigin.php
index 7b2a9d52e241..d7348d324dd4 100644
--- a/Compute/src/V1/Route/NextHopOrigin.php
+++ b/Compute/src/V1/Route/NextHopOrigin.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] Indicates the origin of the route. Can be IGP
+ * Output only. [Output Only] Indicates the origin of the route. Can be IGP
* (Interior Gateway Protocol), EGP (Exterior Gateway Protocol),
* or INCOMPLETE.
*
diff --git a/Compute/src/V1/Route/RouteStatus.php b/Compute/src/V1/Route/RouteStatus.php
index ea92503d67bb..b34b45f6fbf6 100644
--- a/Compute/src/V1/Route/RouteStatus.php
+++ b/Compute/src/V1/Route/RouteStatus.php
@@ -7,9 +7,9 @@
use UnexpectedValueException;
/**
- * [Output only] The status of the route. This status only applies to
- * dynamic routes learned by Cloud Routers. This status is not applicable
- * to static routes.
+ * [Output only] The status of the route. This status applies to
+ * dynamic routes learned by Cloud Routers. It is also applicable to routes
+ * undergoing migration.
*
* Protobuf type google.cloud.compute.v1.Route.RouteStatus
*/
diff --git a/Compute/src/V1/Route/RouteType.php b/Compute/src/V1/Route/RouteType.php
index 4583f770034d..3de9d752ea61 100644
--- a/Compute/src/V1/Route/RouteType.php
+++ b/Compute/src/V1/Route/RouteType.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] The type of this route, which can be one of the following
+ * Output only. [Output Only] The type of this route, which can be one of the following
* values:
* - 'TRANSIT' for a transit route that this router learned from
* another Cloud Router and will readvertise to one of its BGP peers
diff --git a/Compute/src/V1/RouteList.php b/Compute/src/V1/RouteList.php
index 1d24c79652d8..ac9e16757346 100644
--- a/Compute/src/V1/RouteList.php
+++ b/Compute/src/V1/RouteList.php
@@ -28,7 +28,7 @@ class RouteList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -44,7 +44,7 @@ class RouteList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -67,7 +67,7 @@ class RouteList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\Route>|\Google\Protobuf\Internal\RepeatedField $items
* A list of Route resources.
* @type string $kind
- * Type of resource.
+ * Output only. Type of resource.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -75,7 +75,7 @@ class RouteList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -148,7 +148,7 @@ public function setItems($var)
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -169,7 +169,7 @@ public function clearKind()
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -228,7 +228,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -249,7 +249,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/Router.php b/Compute/src/V1/Router.php
index 655eac867be8..99622aeafb0d 100644
--- a/Compute/src/V1/Router.php
+++ b/Compute/src/V1/Router.php
@@ -32,7 +32,7 @@ class Router extends \Google\Protobuf\Internal\Message
*/
private $bgp_peers;
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -73,7 +73,7 @@ class Router extends \Google\Protobuf\Internal\Message
*/
private $interfaces;
/**
- * [Output Only] Type of resource. Always compute#router for
+ * Output only. [Output Only] Type of resource. Always compute#router for
* routers.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -144,7 +144,7 @@ class Router extends \Google\Protobuf\Internal\Message
* establish BGP peering. This information must specify the peer ASN and
* either the interface name, IP address, or peer IP address. Please refer toRFC4273.
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $description
* An optional description of this resource. Provide this property when you
@@ -165,7 +165,7 @@ class Router extends \Google\Protobuf\Internal\Message
* You can create a router interface without any of these fields specified.
* However, you cannot create a BGP peer that uses that interface.
* @type string $kind
- * [Output Only] Type of resource. Always compute#router for
+ * Output only. [Output Only] Type of resource. Always compute#router for
* routers.
* @type array<\Google\Cloud\Compute\V1\RouterMd5AuthenticationKey>|\Google\Protobuf\Internal\RepeatedField $md5_authentication_keys
* Keys used for MD5 authentication.
@@ -264,7 +264,7 @@ public function setBgpPeers($var)
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -286,7 +286,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -456,7 +456,7 @@ public function setInterfaces($var)
}
/**
- * [Output Only] Type of resource. Always compute#router for
+ * Output only. [Output Only] Type of resource. Always compute#router for
* routers.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -478,7 +478,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Always compute#router for
+ * Output only. [Output Only] Type of resource. Always compute#router for
* routers.
*
* Generated from protobuf field optional string kind = 3292052;
diff --git a/Compute/src/V1/RouterAggregatedList.php b/Compute/src/V1/RouterAggregatedList.php
index c76187ec9a6e..bcb124ca5427 100644
--- a/Compute/src/V1/RouterAggregatedList.php
+++ b/Compute/src/V1/RouterAggregatedList.php
@@ -28,7 +28,7 @@ class RouterAggregatedList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -44,13 +44,13 @@ class RouterAggregatedList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
@@ -73,7 +73,7 @@ class RouterAggregatedList extends \Google\Protobuf\Internal\Message
* @type array|\Google\Protobuf\Internal\MapField $items
* A list of Router resources.
* @type string $kind
- * Type of resource.
+ * Output only. Type of resource.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -81,9 +81,9 @@ class RouterAggregatedList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -156,7 +156,7 @@ public function setItems($var)
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -177,7 +177,7 @@ public function clearKind()
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -236,7 +236,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -257,7 +257,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -272,7 +272,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -283,7 +283,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/RouterBgpPeer.php b/Compute/src/V1/RouterBgpPeer.php
index c35f0b0271f1..a532d6379030 100644
--- a/Compute/src/V1/RouterBgpPeer.php
+++ b/Compute/src/V1/RouterBgpPeer.php
@@ -142,7 +142,7 @@ class RouterBgpPeer extends \Google\Protobuf\Internal\Message
*/
protected $ipv6_nexthop_address = null;
/**
- * [Output Only] The resource that configures and manages this BGP peer.
+ * Output only. [Output Only] The resource that configures and manages this BGP peer.
* - MANAGED_BY_USER is the default value and can be managed by you
* or other users
* - MANAGED_BY_ATTACHMENT is a BGP peer that is configured and managed
@@ -280,7 +280,7 @@ class RouterBgpPeer extends \Google\Protobuf\Internal\Message
* @type string $ipv6_nexthop_address
* IPv6 address of the interface inside Google Cloud Platform.
* @type string $management_type
- * [Output Only] The resource that configures and manages this BGP peer.
+ * Output only. [Output Only] The resource that configures and manages this BGP peer.
* - MANAGED_BY_USER is the default value and can be managed by you
* or other users
* - MANAGED_BY_ATTACHMENT is a BGP peer that is configured and managed
@@ -911,7 +911,7 @@ public function setIpv6NexthopAddress($var)
}
/**
- * [Output Only] The resource that configures and manages this BGP peer.
+ * Output only. [Output Only] The resource that configures and manages this BGP peer.
* - MANAGED_BY_USER is the default value and can be managed by you
* or other users
* - MANAGED_BY_ATTACHMENT is a BGP peer that is configured and managed
@@ -940,7 +940,7 @@ public function clearManagementType()
}
/**
- * [Output Only] The resource that configures and manages this BGP peer.
+ * Output only. [Output Only] The resource that configures and manages this BGP peer.
* - MANAGED_BY_USER is the default value and can be managed by you
* or other users
* - MANAGED_BY_ATTACHMENT is a BGP peer that is configured and managed
diff --git a/Compute/src/V1/RouterBgpPeer/ManagementType.php b/Compute/src/V1/RouterBgpPeer/ManagementType.php
index 03f17e3a1beb..df88d776a347 100644
--- a/Compute/src/V1/RouterBgpPeer/ManagementType.php
+++ b/Compute/src/V1/RouterBgpPeer/ManagementType.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] The resource that configures and manages this BGP peer.
+ * Output only. [Output Only] The resource that configures and manages this BGP peer.
* - MANAGED_BY_USER is the default value and can be managed by you
* or other users
* - MANAGED_BY_ATTACHMENT is a BGP peer that is configured and managed
diff --git a/Compute/src/V1/RouterInterface.php b/Compute/src/V1/RouterInterface.php
index c3e67a795a86..e6fea550c404 100644
--- a/Compute/src/V1/RouterInterface.php
+++ b/Compute/src/V1/RouterInterface.php
@@ -54,7 +54,7 @@ class RouterInterface extends \Google\Protobuf\Internal\Message
*/
protected $linked_vpn_tunnel = null;
/**
- * [Output Only] The resource that configures and manages this interface.
+ * Output only. [Output Only] The resource that configures and manages this interface.
* - MANAGED_BY_USER is the default value and can be managed directly
* by users.
* - MANAGED_BY_ATTACHMENT is an interface that is configured and
@@ -143,7 +143,7 @@ class RouterInterface extends \Google\Protobuf\Internal\Message
* router. Each interface can have one linked resource, which can be
* a VPN tunnel, an Interconnect attachment, or a subnetwork.
* @type string $management_type
- * [Output Only] The resource that configures and manages this interface.
+ * Output only. [Output Only] The resource that configures and manages this interface.
* - MANAGED_BY_USER is the default value and can be managed directly
* by users.
* - MANAGED_BY_ATTACHMENT is an interface that is configured and
@@ -363,7 +363,7 @@ public function setLinkedVpnTunnel($var)
}
/**
- * [Output Only] The resource that configures and manages this interface.
+ * Output only. [Output Only] The resource that configures and manages this interface.
* - MANAGED_BY_USER is the default value and can be managed directly
* by users.
* - MANAGED_BY_ATTACHMENT is an interface that is configured and
@@ -392,7 +392,7 @@ public function clearManagementType()
}
/**
- * [Output Only] The resource that configures and manages this interface.
+ * Output only. [Output Only] The resource that configures and manages this interface.
* - MANAGED_BY_USER is the default value and can be managed directly
* by users.
* - MANAGED_BY_ATTACHMENT is an interface that is configured and
diff --git a/Compute/src/V1/RouterInterface/ManagementType.php b/Compute/src/V1/RouterInterface/ManagementType.php
index 438419739d5a..c1ee12031a56 100644
--- a/Compute/src/V1/RouterInterface/ManagementType.php
+++ b/Compute/src/V1/RouterInterface/ManagementType.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] The resource that configures and manages this interface.
+ * Output only. [Output Only] The resource that configures and manages this interface.
* - MANAGED_BY_USER is the default value and can be managed directly
* by users.
* - MANAGED_BY_ATTACHMENT is an interface that is configured and
diff --git a/Compute/src/V1/RouterList.php b/Compute/src/V1/RouterList.php
index f3f541928fb3..5b2985b8044b 100644
--- a/Compute/src/V1/RouterList.php
+++ b/Compute/src/V1/RouterList.php
@@ -28,7 +28,7 @@ class RouterList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Always compute#router for
+ * Output only. [Output Only] Type of resource. Always compute#router for
* routers.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -45,7 +45,7 @@ class RouterList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -68,7 +68,7 @@ class RouterList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\Router>|\Google\Protobuf\Internal\RepeatedField $items
* A list of Router resources.
* @type string $kind
- * [Output Only] Type of resource. Always compute#router for
+ * Output only. [Output Only] Type of resource. Always compute#router for
* routers.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -77,7 +77,7 @@ class RouterList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -150,7 +150,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Always compute#router for
+ * Output only. [Output Only] Type of resource. Always compute#router for
* routers.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -172,7 +172,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Always compute#router for
+ * Output only. [Output Only] Type of resource. Always compute#router for
* routers.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -232,7 +232,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -253,7 +253,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/RouterStatusBgpPeerStatus.php b/Compute/src/V1/RouterStatusBgpPeerStatus.php
index 3b8ac0c246b0..1caf238cb5d2 100644
--- a/Compute/src/V1/RouterStatusBgpPeerStatus.php
+++ b/Compute/src/V1/RouterStatusBgpPeerStatus.php
@@ -25,39 +25,39 @@ class RouterStatusBgpPeerStatus extends \Google\Protobuf\Internal\Message
*/
protected $bfd_status = null;
/**
- * Enable IPv4 traffic over BGP Peer.
+ * Output only. Enable IPv4 traffic over BGP Peer.
* It is enabled by default if the peerIpAddress is version 4.
*
* Generated from protobuf field optional bool enable_ipv4 = 181467937;
*/
protected $enable_ipv4 = null;
/**
- * Enable IPv6 traffic over BGP Peer.
+ * Output only. Enable IPv6 traffic over BGP Peer.
* It is enabled by default if the peerIpAddress is version 6.
*
* Generated from protobuf field optional bool enable_ipv6 = 181467939;
*/
protected $enable_ipv6 = null;
/**
- * IP address of the local BGP interface.
+ * Output only. IP address of the local BGP interface.
*
* Generated from protobuf field optional string ip_address = 406272220;
*/
protected $ip_address = null;
/**
- * IPv4 address of the local BGP interface.
+ * Output only. IPv4 address of the local BGP interface.
*
* Generated from protobuf field optional string ipv4_nexthop_address = 5703377;
*/
protected $ipv4_nexthop_address = null;
/**
- * IPv6 address of the local BGP interface.
+ * Output only. IPv6 address of the local BGP interface.
*
* Generated from protobuf field optional string ipv6_nexthop_address = 27968211;
*/
protected $ipv6_nexthop_address = null;
/**
- * URL of the VPN tunnel that this BGP peer controls.
+ * Output only. URL of the VPN tunnel that this BGP peer controls.
*
* Generated from protobuf field optional string linked_vpn_tunnel = 352296953;
*/
@@ -69,37 +69,37 @@ class RouterStatusBgpPeerStatus extends \Google\Protobuf\Internal\Message
*/
protected $md5_auth_enabled = null;
/**
- * Name of this BGP peer. Unique within the Routers resource.
+ * Output only. Name of this BGP peer. Unique within the Routers resource.
*
* Generated from protobuf field optional string name = 3373707;
*/
protected $name = null;
/**
- * Number of routes learned from the remote BGP Peer.
+ * Output only. Number of routes learned from the remote BGP Peer.
*
* Generated from protobuf field optional uint32 num_learned_routes = 135457535;
*/
protected $num_learned_routes = null;
/**
- * IP address of the remote BGP interface.
+ * Output only. IP address of the remote BGP interface.
*
* Generated from protobuf field optional string peer_ip_address = 207735769;
*/
protected $peer_ip_address = null;
/**
- * IPv4 address of the remote BGP interface.
+ * Output only. IPv4 address of the remote BGP interface.
*
* Generated from protobuf field optional string peer_ipv4_nexthop_address = 469221774;
*/
protected $peer_ipv4_nexthop_address = null;
/**
- * IPv6 address of the remote BGP interface.
+ * Output only. IPv6 address of the remote BGP interface.
*
* Generated from protobuf field optional string peer_ipv6_nexthop_address = 491486608;
*/
protected $peer_ipv6_nexthop_address = null;
/**
- * [Output only] URI of the VM instance that is used as third-party router
+ * Output only. [Output only] URI of the VM instance that is used as third-party router
* appliances such as Next Gen Firewalls, Virtual Routers, or Router
* Appliances.
* The VM instance is the peer side of the BGP session.
@@ -108,14 +108,14 @@ class RouterStatusBgpPeerStatus extends \Google\Protobuf\Internal\Message
*/
protected $router_appliance_instance = null;
/**
- * The state of the BGP session. For a list of possible values for this
+ * Output only. The state of the BGP session. For a list of possible values for this
* field, seeBGP session states.
*
* Generated from protobuf field optional string state = 109757585;
*/
protected $state = null;
/**
- * Status of the BGP peer: {UP, DOWN}
+ * Output only. Status of the BGP peer: {UP, DOWN}
* Check the Status enum for the list of possible values.
*
* Generated from protobuf field optional string status = 181260274;
@@ -129,7 +129,7 @@ class RouterStatusBgpPeerStatus extends \Google\Protobuf\Internal\Message
*/
protected $status_reason = null;
/**
- * Time this session has been up.
+ * Output only. Time this session has been up.
* Format:
* 14 years, 51 weeks, 6 days, 23 hours, 59 minutes, 59 seconds
*
@@ -137,7 +137,7 @@ class RouterStatusBgpPeerStatus extends \Google\Protobuf\Internal\Message
*/
protected $uptime = null;
/**
- * Time this session has been up, in seconds.
+ * Output only. Time this session has been up, in seconds.
* Format:
* 145
*
@@ -155,51 +155,51 @@ class RouterStatusBgpPeerStatus extends \Google\Protobuf\Internal\Message
* Routes that were advertised to the remote BGP peer
* @type \Google\Cloud\Compute\V1\BfdStatus $bfd_status
* @type bool $enable_ipv4
- * Enable IPv4 traffic over BGP Peer.
+ * Output only. Enable IPv4 traffic over BGP Peer.
* It is enabled by default if the peerIpAddress is version 4.
* @type bool $enable_ipv6
- * Enable IPv6 traffic over BGP Peer.
+ * Output only. Enable IPv6 traffic over BGP Peer.
* It is enabled by default if the peerIpAddress is version 6.
* @type string $ip_address
- * IP address of the local BGP interface.
+ * Output only. IP address of the local BGP interface.
* @type string $ipv4_nexthop_address
- * IPv4 address of the local BGP interface.
+ * Output only. IPv4 address of the local BGP interface.
* @type string $ipv6_nexthop_address
- * IPv6 address of the local BGP interface.
+ * Output only. IPv6 address of the local BGP interface.
* @type string $linked_vpn_tunnel
- * URL of the VPN tunnel that this BGP peer controls.
+ * Output only. URL of the VPN tunnel that this BGP peer controls.
* @type bool $md5_auth_enabled
* Informs whether MD5 authentication is enabled on this BGP peer.
* @type string $name
- * Name of this BGP peer. Unique within the Routers resource.
+ * Output only. Name of this BGP peer. Unique within the Routers resource.
* @type int $num_learned_routes
- * Number of routes learned from the remote BGP Peer.
+ * Output only. Number of routes learned from the remote BGP Peer.
* @type string $peer_ip_address
- * IP address of the remote BGP interface.
+ * Output only. IP address of the remote BGP interface.
* @type string $peer_ipv4_nexthop_address
- * IPv4 address of the remote BGP interface.
+ * Output only. IPv4 address of the remote BGP interface.
* @type string $peer_ipv6_nexthop_address
- * IPv6 address of the remote BGP interface.
+ * Output only. IPv6 address of the remote BGP interface.
* @type string $router_appliance_instance
- * [Output only] URI of the VM instance that is used as third-party router
+ * Output only. [Output only] URI of the VM instance that is used as third-party router
* appliances such as Next Gen Firewalls, Virtual Routers, or Router
* Appliances.
* The VM instance is the peer side of the BGP session.
* @type string $state
- * The state of the BGP session. For a list of possible values for this
+ * Output only. The state of the BGP session. For a list of possible values for this
* field, seeBGP session states.
* @type string $status
- * Status of the BGP peer: {UP, DOWN}
+ * Output only. Status of the BGP peer: {UP, DOWN}
* Check the Status enum for the list of possible values.
* @type string $status_reason
* Indicates why particular status was returned.
* Check the StatusReason enum for the list of possible values.
* @type string $uptime
- * Time this session has been up.
+ * Output only. Time this session has been up.
* Format:
* 14 years, 51 weeks, 6 days, 23 hours, 59 minutes, 59 seconds
* @type string $uptime_seconds
- * Time this session has been up, in seconds.
+ * Output only. Time this session has been up, in seconds.
* Format:
* 145
* }
@@ -268,7 +268,7 @@ public function setBfdStatus($var)
}
/**
- * Enable IPv4 traffic over BGP Peer.
+ * Output only. Enable IPv4 traffic over BGP Peer.
* It is enabled by default if the peerIpAddress is version 4.
*
* Generated from protobuf field optional bool enable_ipv4 = 181467937;
@@ -290,7 +290,7 @@ public function clearEnableIpv4()
}
/**
- * Enable IPv4 traffic over BGP Peer.
+ * Output only. Enable IPv4 traffic over BGP Peer.
* It is enabled by default if the peerIpAddress is version 4.
*
* Generated from protobuf field optional bool enable_ipv4 = 181467937;
@@ -306,7 +306,7 @@ public function setEnableIpv4($var)
}
/**
- * Enable IPv6 traffic over BGP Peer.
+ * Output only. Enable IPv6 traffic over BGP Peer.
* It is enabled by default if the peerIpAddress is version 6.
*
* Generated from protobuf field optional bool enable_ipv6 = 181467939;
@@ -328,7 +328,7 @@ public function clearEnableIpv6()
}
/**
- * Enable IPv6 traffic over BGP Peer.
+ * Output only. Enable IPv6 traffic over BGP Peer.
* It is enabled by default if the peerIpAddress is version 6.
*
* Generated from protobuf field optional bool enable_ipv6 = 181467939;
@@ -344,7 +344,7 @@ public function setEnableIpv6($var)
}
/**
- * IP address of the local BGP interface.
+ * Output only. IP address of the local BGP interface.
*
* Generated from protobuf field optional string ip_address = 406272220;
* @return string
@@ -365,7 +365,7 @@ public function clearIpAddress()
}
/**
- * IP address of the local BGP interface.
+ * Output only. IP address of the local BGP interface.
*
* Generated from protobuf field optional string ip_address = 406272220;
* @param string $var
@@ -380,7 +380,7 @@ public function setIpAddress($var)
}
/**
- * IPv4 address of the local BGP interface.
+ * Output only. IPv4 address of the local BGP interface.
*
* Generated from protobuf field optional string ipv4_nexthop_address = 5703377;
* @return string
@@ -401,7 +401,7 @@ public function clearIpv4NexthopAddress()
}
/**
- * IPv4 address of the local BGP interface.
+ * Output only. IPv4 address of the local BGP interface.
*
* Generated from protobuf field optional string ipv4_nexthop_address = 5703377;
* @param string $var
@@ -416,7 +416,7 @@ public function setIpv4NexthopAddress($var)
}
/**
- * IPv6 address of the local BGP interface.
+ * Output only. IPv6 address of the local BGP interface.
*
* Generated from protobuf field optional string ipv6_nexthop_address = 27968211;
* @return string
@@ -437,7 +437,7 @@ public function clearIpv6NexthopAddress()
}
/**
- * IPv6 address of the local BGP interface.
+ * Output only. IPv6 address of the local BGP interface.
*
* Generated from protobuf field optional string ipv6_nexthop_address = 27968211;
* @param string $var
@@ -452,7 +452,7 @@ public function setIpv6NexthopAddress($var)
}
/**
- * URL of the VPN tunnel that this BGP peer controls.
+ * Output only. URL of the VPN tunnel that this BGP peer controls.
*
* Generated from protobuf field optional string linked_vpn_tunnel = 352296953;
* @return string
@@ -473,7 +473,7 @@ public function clearLinkedVpnTunnel()
}
/**
- * URL of the VPN tunnel that this BGP peer controls.
+ * Output only. URL of the VPN tunnel that this BGP peer controls.
*
* Generated from protobuf field optional string linked_vpn_tunnel = 352296953;
* @param string $var
@@ -524,7 +524,7 @@ public function setMd5AuthEnabled($var)
}
/**
- * Name of this BGP peer. Unique within the Routers resource.
+ * Output only. Name of this BGP peer. Unique within the Routers resource.
*
* Generated from protobuf field optional string name = 3373707;
* @return string
@@ -545,7 +545,7 @@ public function clearName()
}
/**
- * Name of this BGP peer. Unique within the Routers resource.
+ * Output only. Name of this BGP peer. Unique within the Routers resource.
*
* Generated from protobuf field optional string name = 3373707;
* @param string $var
@@ -560,7 +560,7 @@ public function setName($var)
}
/**
- * Number of routes learned from the remote BGP Peer.
+ * Output only. Number of routes learned from the remote BGP Peer.
*
* Generated from protobuf field optional uint32 num_learned_routes = 135457535;
* @return int
@@ -581,7 +581,7 @@ public function clearNumLearnedRoutes()
}
/**
- * Number of routes learned from the remote BGP Peer.
+ * Output only. Number of routes learned from the remote BGP Peer.
*
* Generated from protobuf field optional uint32 num_learned_routes = 135457535;
* @param int $var
@@ -596,7 +596,7 @@ public function setNumLearnedRoutes($var)
}
/**
- * IP address of the remote BGP interface.
+ * Output only. IP address of the remote BGP interface.
*
* Generated from protobuf field optional string peer_ip_address = 207735769;
* @return string
@@ -617,7 +617,7 @@ public function clearPeerIpAddress()
}
/**
- * IP address of the remote BGP interface.
+ * Output only. IP address of the remote BGP interface.
*
* Generated from protobuf field optional string peer_ip_address = 207735769;
* @param string $var
@@ -632,7 +632,7 @@ public function setPeerIpAddress($var)
}
/**
- * IPv4 address of the remote BGP interface.
+ * Output only. IPv4 address of the remote BGP interface.
*
* Generated from protobuf field optional string peer_ipv4_nexthop_address = 469221774;
* @return string
@@ -653,7 +653,7 @@ public function clearPeerIpv4NexthopAddress()
}
/**
- * IPv4 address of the remote BGP interface.
+ * Output only. IPv4 address of the remote BGP interface.
*
* Generated from protobuf field optional string peer_ipv4_nexthop_address = 469221774;
* @param string $var
@@ -668,7 +668,7 @@ public function setPeerIpv4NexthopAddress($var)
}
/**
- * IPv6 address of the remote BGP interface.
+ * Output only. IPv6 address of the remote BGP interface.
*
* Generated from protobuf field optional string peer_ipv6_nexthop_address = 491486608;
* @return string
@@ -689,7 +689,7 @@ public function clearPeerIpv6NexthopAddress()
}
/**
- * IPv6 address of the remote BGP interface.
+ * Output only. IPv6 address of the remote BGP interface.
*
* Generated from protobuf field optional string peer_ipv6_nexthop_address = 491486608;
* @param string $var
@@ -704,7 +704,7 @@ public function setPeerIpv6NexthopAddress($var)
}
/**
- * [Output only] URI of the VM instance that is used as third-party router
+ * Output only. [Output only] URI of the VM instance that is used as third-party router
* appliances such as Next Gen Firewalls, Virtual Routers, or Router
* Appliances.
* The VM instance is the peer side of the BGP session.
@@ -728,7 +728,7 @@ public function clearRouterApplianceInstance()
}
/**
- * [Output only] URI of the VM instance that is used as third-party router
+ * Output only. [Output only] URI of the VM instance that is used as third-party router
* appliances such as Next Gen Firewalls, Virtual Routers, or Router
* Appliances.
* The VM instance is the peer side of the BGP session.
@@ -746,7 +746,7 @@ public function setRouterApplianceInstance($var)
}
/**
- * The state of the BGP session. For a list of possible values for this
+ * Output only. The state of the BGP session. For a list of possible values for this
* field, seeBGP session states.
*
* Generated from protobuf field optional string state = 109757585;
@@ -768,7 +768,7 @@ public function clearState()
}
/**
- * The state of the BGP session. For a list of possible values for this
+ * Output only. The state of the BGP session. For a list of possible values for this
* field, seeBGP session states.
*
* Generated from protobuf field optional string state = 109757585;
@@ -784,7 +784,7 @@ public function setState($var)
}
/**
- * Status of the BGP peer: {UP, DOWN}
+ * Output only. Status of the BGP peer: {UP, DOWN}
* Check the Status enum for the list of possible values.
*
* Generated from protobuf field optional string status = 181260274;
@@ -806,7 +806,7 @@ public function clearStatus()
}
/**
- * Status of the BGP peer: {UP, DOWN}
+ * Output only. Status of the BGP peer: {UP, DOWN}
* Check the Status enum for the list of possible values.
*
* Generated from protobuf field optional string status = 181260274;
@@ -860,7 +860,7 @@ public function setStatusReason($var)
}
/**
- * Time this session has been up.
+ * Output only. Time this session has been up.
* Format:
* 14 years, 51 weeks, 6 days, 23 hours, 59 minutes, 59 seconds
*
@@ -883,7 +883,7 @@ public function clearUptime()
}
/**
- * Time this session has been up.
+ * Output only. Time this session has been up.
* Format:
* 14 years, 51 weeks, 6 days, 23 hours, 59 minutes, 59 seconds
*
@@ -900,7 +900,7 @@ public function setUptime($var)
}
/**
- * Time this session has been up, in seconds.
+ * Output only. Time this session has been up, in seconds.
* Format:
* 145
*
@@ -923,7 +923,7 @@ public function clearUptimeSeconds()
}
/**
- * Time this session has been up, in seconds.
+ * Output only. Time this session has been up, in seconds.
* Format:
* 145
*
diff --git a/Compute/src/V1/RouterStatusBgpPeerStatus/Status.php b/Compute/src/V1/RouterStatusBgpPeerStatus/Status.php
index 61e3b8e4ba5d..fde27905c554 100644
--- a/Compute/src/V1/RouterStatusBgpPeerStatus/Status.php
+++ b/Compute/src/V1/RouterStatusBgpPeerStatus/Status.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * Status of the BGP peer: {UP, DOWN}
+ * Output only. Status of the BGP peer: {UP, DOWN}
*
* Protobuf type google.cloud.compute.v1.RouterStatusBgpPeerStatus.Status
*/
diff --git a/Compute/src/V1/RouterStatusNatStatus.php b/Compute/src/V1/RouterStatusNatStatus.php
index 253f8881582d..e84afe01ee39 100644
--- a/Compute/src/V1/RouterStatusNatStatus.php
+++ b/Compute/src/V1/RouterStatusNatStatus.php
@@ -16,27 +16,27 @@
class RouterStatusNatStatus extends \Google\Protobuf\Internal\Message
{
/**
- * A list of IPs auto-allocated for NAT. Example: ["1.1.1.1", "129.2.16.89"]
+ * Output only. A list of IPs auto-allocated for NAT. Example: ["1.1.1.1", "129.2.16.89"]
*
* Generated from protobuf field repeated string auto_allocated_nat_ips = 510794246;
*/
private $auto_allocated_nat_ips;
/**
- * A list of IPs auto-allocated for NAT that are in drain mode.
+ * Output only. A list of IPs auto-allocated for NAT that are in drain mode.
* Example: ["1.1.1.1", "179.12.26.133"].
*
* Generated from protobuf field repeated string drain_auto_allocated_nat_ips = 309184557;
*/
private $drain_auto_allocated_nat_ips;
/**
- * A list of IPs user-allocated for NAT that are in drain mode.
+ * Output only. A list of IPs user-allocated for NAT that are in drain mode.
* Example: ["1.1.1.1", "179.12.26.133"].
*
* Generated from protobuf field repeated string drain_user_allocated_nat_ips = 305268553;
*/
private $drain_user_allocated_nat_ips;
/**
- * The number of extra IPs to allocate. This will be greater than 0 only if
+ * Output only. The number of extra IPs to allocate. This will be greater than 0 only if
* user-specified IPs are NOT enough to allow all configured VMs to use NAT.
* This value is meaningful only when auto-allocation of NAT IPs is *not*
* used.
@@ -45,13 +45,13 @@ class RouterStatusNatStatus extends \Google\Protobuf\Internal\Message
*/
protected $min_extra_nat_ips_needed = null;
/**
- * Unique name of this NAT.
+ * Output only. Unique name of this NAT.
*
* Generated from protobuf field optional string name = 3373707;
*/
protected $name = null;
/**
- * Number of VM endpoints (i.e., Nics) that can use NAT.
+ * Output only. Number of VM endpoints (i.e., Nics) that can use NAT.
*
* Generated from protobuf field optional int32 num_vm_endpoints_with_nat_mappings = 512367468;
*/
@@ -63,13 +63,13 @@ class RouterStatusNatStatus extends \Google\Protobuf\Internal\Message
*/
private $rule_status;
/**
- * A list of fully qualified URLs of reserved IP address resources.
+ * Output only. A list of fully qualified URLs of reserved IP address resources.
*
* Generated from protobuf field repeated string user_allocated_nat_ip_resources = 212776151;
*/
private $user_allocated_nat_ip_resources;
/**
- * A list of IPs user-allocated for NAT.
+ * Output only. A list of IPs user-allocated for NAT.
* They will be raw IP strings like "179.12.26.133".
*
* Generated from protobuf field repeated string user_allocated_nat_ips = 506878242;
@@ -83,28 +83,28 @@ class RouterStatusNatStatus extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type array|\Google\Protobuf\Internal\RepeatedField $auto_allocated_nat_ips
- * A list of IPs auto-allocated for NAT. Example: ["1.1.1.1", "129.2.16.89"]
+ * Output only. A list of IPs auto-allocated for NAT. Example: ["1.1.1.1", "129.2.16.89"]
* @type array|\Google\Protobuf\Internal\RepeatedField $drain_auto_allocated_nat_ips
- * A list of IPs auto-allocated for NAT that are in drain mode.
+ * Output only. A list of IPs auto-allocated for NAT that are in drain mode.
* Example: ["1.1.1.1", "179.12.26.133"].
* @type array|\Google\Protobuf\Internal\RepeatedField $drain_user_allocated_nat_ips
- * A list of IPs user-allocated for NAT that are in drain mode.
+ * Output only. A list of IPs user-allocated for NAT that are in drain mode.
* Example: ["1.1.1.1", "179.12.26.133"].
* @type int $min_extra_nat_ips_needed
- * The number of extra IPs to allocate. This will be greater than 0 only if
+ * Output only. The number of extra IPs to allocate. This will be greater than 0 only if
* user-specified IPs are NOT enough to allow all configured VMs to use NAT.
* This value is meaningful only when auto-allocation of NAT IPs is *not*
* used.
* @type string $name
- * Unique name of this NAT.
+ * Output only. Unique name of this NAT.
* @type int $num_vm_endpoints_with_nat_mappings
- * Number of VM endpoints (i.e., Nics) that can use NAT.
+ * Output only. Number of VM endpoints (i.e., Nics) that can use NAT.
* @type array<\Google\Cloud\Compute\V1\RouterStatusNatStatusNatRuleStatus>|\Google\Protobuf\Internal\RepeatedField $rule_status
* Status of rules in this NAT.
* @type array|\Google\Protobuf\Internal\RepeatedField $user_allocated_nat_ip_resources
- * A list of fully qualified URLs of reserved IP address resources.
+ * Output only. A list of fully qualified URLs of reserved IP address resources.
* @type array|\Google\Protobuf\Internal\RepeatedField $user_allocated_nat_ips
- * A list of IPs user-allocated for NAT.
+ * Output only. A list of IPs user-allocated for NAT.
* They will be raw IP strings like "179.12.26.133".
* }
*/
@@ -114,7 +114,7 @@ public function __construct($data = NULL) {
}
/**
- * A list of IPs auto-allocated for NAT. Example: ["1.1.1.1", "129.2.16.89"]
+ * Output only. A list of IPs auto-allocated for NAT. Example: ["1.1.1.1", "129.2.16.89"]
*
* Generated from protobuf field repeated string auto_allocated_nat_ips = 510794246;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -125,7 +125,7 @@ public function getAutoAllocatedNatIps()
}
/**
- * A list of IPs auto-allocated for NAT. Example: ["1.1.1.1", "129.2.16.89"]
+ * Output only. A list of IPs auto-allocated for NAT. Example: ["1.1.1.1", "129.2.16.89"]
*
* Generated from protobuf field repeated string auto_allocated_nat_ips = 510794246;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
@@ -140,7 +140,7 @@ public function setAutoAllocatedNatIps($var)
}
/**
- * A list of IPs auto-allocated for NAT that are in drain mode.
+ * Output only. A list of IPs auto-allocated for NAT that are in drain mode.
* Example: ["1.1.1.1", "179.12.26.133"].
*
* Generated from protobuf field repeated string drain_auto_allocated_nat_ips = 309184557;
@@ -152,7 +152,7 @@ public function getDrainAutoAllocatedNatIps()
}
/**
- * A list of IPs auto-allocated for NAT that are in drain mode.
+ * Output only. A list of IPs auto-allocated for NAT that are in drain mode.
* Example: ["1.1.1.1", "179.12.26.133"].
*
* Generated from protobuf field repeated string drain_auto_allocated_nat_ips = 309184557;
@@ -168,7 +168,7 @@ public function setDrainAutoAllocatedNatIps($var)
}
/**
- * A list of IPs user-allocated for NAT that are in drain mode.
+ * Output only. A list of IPs user-allocated for NAT that are in drain mode.
* Example: ["1.1.1.1", "179.12.26.133"].
*
* Generated from protobuf field repeated string drain_user_allocated_nat_ips = 305268553;
@@ -180,7 +180,7 @@ public function getDrainUserAllocatedNatIps()
}
/**
- * A list of IPs user-allocated for NAT that are in drain mode.
+ * Output only. A list of IPs user-allocated for NAT that are in drain mode.
* Example: ["1.1.1.1", "179.12.26.133"].
*
* Generated from protobuf field repeated string drain_user_allocated_nat_ips = 305268553;
@@ -196,7 +196,7 @@ public function setDrainUserAllocatedNatIps($var)
}
/**
- * The number of extra IPs to allocate. This will be greater than 0 only if
+ * Output only. The number of extra IPs to allocate. This will be greater than 0 only if
* user-specified IPs are NOT enough to allow all configured VMs to use NAT.
* This value is meaningful only when auto-allocation of NAT IPs is *not*
* used.
@@ -220,7 +220,7 @@ public function clearMinExtraNatIpsNeeded()
}
/**
- * The number of extra IPs to allocate. This will be greater than 0 only if
+ * Output only. The number of extra IPs to allocate. This will be greater than 0 only if
* user-specified IPs are NOT enough to allow all configured VMs to use NAT.
* This value is meaningful only when auto-allocation of NAT IPs is *not*
* used.
@@ -238,7 +238,7 @@ public function setMinExtraNatIpsNeeded($var)
}
/**
- * Unique name of this NAT.
+ * Output only. Unique name of this NAT.
*
* Generated from protobuf field optional string name = 3373707;
* @return string
@@ -259,7 +259,7 @@ public function clearName()
}
/**
- * Unique name of this NAT.
+ * Output only. Unique name of this NAT.
*
* Generated from protobuf field optional string name = 3373707;
* @param string $var
@@ -274,7 +274,7 @@ public function setName($var)
}
/**
- * Number of VM endpoints (i.e., Nics) that can use NAT.
+ * Output only. Number of VM endpoints (i.e., Nics) that can use NAT.
*
* Generated from protobuf field optional int32 num_vm_endpoints_with_nat_mappings = 512367468;
* @return int
@@ -295,7 +295,7 @@ public function clearNumVmEndpointsWithNatMappings()
}
/**
- * Number of VM endpoints (i.e., Nics) that can use NAT.
+ * Output only. Number of VM endpoints (i.e., Nics) that can use NAT.
*
* Generated from protobuf field optional int32 num_vm_endpoints_with_nat_mappings = 512367468;
* @param int $var
@@ -336,7 +336,7 @@ public function setRuleStatus($var)
}
/**
- * A list of fully qualified URLs of reserved IP address resources.
+ * Output only. A list of fully qualified URLs of reserved IP address resources.
*
* Generated from protobuf field repeated string user_allocated_nat_ip_resources = 212776151;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -347,7 +347,7 @@ public function getUserAllocatedNatIpResources()
}
/**
- * A list of fully qualified URLs of reserved IP address resources.
+ * Output only. A list of fully qualified URLs of reserved IP address resources.
*
* Generated from protobuf field repeated string user_allocated_nat_ip_resources = 212776151;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
@@ -362,7 +362,7 @@ public function setUserAllocatedNatIpResources($var)
}
/**
- * A list of IPs user-allocated for NAT.
+ * Output only. A list of IPs user-allocated for NAT.
* They will be raw IP strings like "179.12.26.133".
*
* Generated from protobuf field repeated string user_allocated_nat_ips = 506878242;
@@ -374,7 +374,7 @@ public function getUserAllocatedNatIps()
}
/**
- * A list of IPs user-allocated for NAT.
+ * Output only. A list of IPs user-allocated for NAT.
* They will be raw IP strings like "179.12.26.133".
*
* Generated from protobuf field repeated string user_allocated_nat_ips = 506878242;
diff --git a/Compute/src/V1/RouterStatusNatStatusNatRuleStatus.php b/Compute/src/V1/RouterStatusNatStatusNatRuleStatus.php
index ea2ec91a2804..869d698787b4 100644
--- a/Compute/src/V1/RouterStatusNatStatusNatRuleStatus.php
+++ b/Compute/src/V1/RouterStatusNatStatusNatRuleStatus.php
@@ -16,21 +16,21 @@
class RouterStatusNatStatusNatRuleStatus extends \Google\Protobuf\Internal\Message
{
/**
- * A list of active IPs for NAT.
+ * Output only. A list of active IPs for NAT.
* Example: ["1.1.1.1", "179.12.26.133"].
*
* Generated from protobuf field repeated string active_nat_ips = 208517077;
*/
private $active_nat_ips;
/**
- * A list of IPs for NAT that are in drain mode.
+ * Output only. A list of IPs for NAT that are in drain mode.
* Example: ["1.1.1.1", "179.12.26.133"].
*
* Generated from protobuf field repeated string drain_nat_ips = 504078535;
*/
private $drain_nat_ips;
/**
- * The number of extra IPs to allocate. This will be greater than 0 only
+ * Output only. The number of extra IPs to allocate. This will be greater than 0 only
* if the existing IPs in this NAT Rule are NOT enough to allow all
* configured VMs to use NAT.
*
@@ -38,14 +38,14 @@ class RouterStatusNatStatusNatRuleStatus extends \Google\Protobuf\Internal\Messa
*/
protected $min_extra_ips_needed = null;
/**
- * Number of VM endpoints (i.e., NICs) that have NAT Mappings from this
+ * Output only. Number of VM endpoints (i.e., NICs) that have NAT Mappings from this
* NAT Rule.
*
* Generated from protobuf field optional int32 num_vm_endpoints_with_nat_mappings = 512367468;
*/
protected $num_vm_endpoints_with_nat_mappings = null;
/**
- * Rule number of the rule.
+ * Output only. Rule number of the rule.
*
* Generated from protobuf field optional int32 rule_number = 535211500;
*/
@@ -58,20 +58,20 @@ class RouterStatusNatStatusNatRuleStatus extends \Google\Protobuf\Internal\Messa
* Optional. Data for populating the Message object.
*
* @type array|\Google\Protobuf\Internal\RepeatedField $active_nat_ips
- * A list of active IPs for NAT.
+ * Output only. A list of active IPs for NAT.
* Example: ["1.1.1.1", "179.12.26.133"].
* @type array|\Google\Protobuf\Internal\RepeatedField $drain_nat_ips
- * A list of IPs for NAT that are in drain mode.
+ * Output only. A list of IPs for NAT that are in drain mode.
* Example: ["1.1.1.1", "179.12.26.133"].
* @type int $min_extra_ips_needed
- * The number of extra IPs to allocate. This will be greater than 0 only
+ * Output only. The number of extra IPs to allocate. This will be greater than 0 only
* if the existing IPs in this NAT Rule are NOT enough to allow all
* configured VMs to use NAT.
* @type int $num_vm_endpoints_with_nat_mappings
- * Number of VM endpoints (i.e., NICs) that have NAT Mappings from this
+ * Output only. Number of VM endpoints (i.e., NICs) that have NAT Mappings from this
* NAT Rule.
* @type int $rule_number
- * Rule number of the rule.
+ * Output only. Rule number of the rule.
* }
*/
public function __construct($data = NULL) {
@@ -80,7 +80,7 @@ public function __construct($data = NULL) {
}
/**
- * A list of active IPs for NAT.
+ * Output only. A list of active IPs for NAT.
* Example: ["1.1.1.1", "179.12.26.133"].
*
* Generated from protobuf field repeated string active_nat_ips = 208517077;
@@ -92,7 +92,7 @@ public function getActiveNatIps()
}
/**
- * A list of active IPs for NAT.
+ * Output only. A list of active IPs for NAT.
* Example: ["1.1.1.1", "179.12.26.133"].
*
* Generated from protobuf field repeated string active_nat_ips = 208517077;
@@ -108,7 +108,7 @@ public function setActiveNatIps($var)
}
/**
- * A list of IPs for NAT that are in drain mode.
+ * Output only. A list of IPs for NAT that are in drain mode.
* Example: ["1.1.1.1", "179.12.26.133"].
*
* Generated from protobuf field repeated string drain_nat_ips = 504078535;
@@ -120,7 +120,7 @@ public function getDrainNatIps()
}
/**
- * A list of IPs for NAT that are in drain mode.
+ * Output only. A list of IPs for NAT that are in drain mode.
* Example: ["1.1.1.1", "179.12.26.133"].
*
* Generated from protobuf field repeated string drain_nat_ips = 504078535;
@@ -136,7 +136,7 @@ public function setDrainNatIps($var)
}
/**
- * The number of extra IPs to allocate. This will be greater than 0 only
+ * Output only. The number of extra IPs to allocate. This will be greater than 0 only
* if the existing IPs in this NAT Rule are NOT enough to allow all
* configured VMs to use NAT.
*
@@ -159,7 +159,7 @@ public function clearMinExtraIpsNeeded()
}
/**
- * The number of extra IPs to allocate. This will be greater than 0 only
+ * Output only. The number of extra IPs to allocate. This will be greater than 0 only
* if the existing IPs in this NAT Rule are NOT enough to allow all
* configured VMs to use NAT.
*
@@ -176,7 +176,7 @@ public function setMinExtraIpsNeeded($var)
}
/**
- * Number of VM endpoints (i.e., NICs) that have NAT Mappings from this
+ * Output only. Number of VM endpoints (i.e., NICs) that have NAT Mappings from this
* NAT Rule.
*
* Generated from protobuf field optional int32 num_vm_endpoints_with_nat_mappings = 512367468;
@@ -198,7 +198,7 @@ public function clearNumVmEndpointsWithNatMappings()
}
/**
- * Number of VM endpoints (i.e., NICs) that have NAT Mappings from this
+ * Output only. Number of VM endpoints (i.e., NICs) that have NAT Mappings from this
* NAT Rule.
*
* Generated from protobuf field optional int32 num_vm_endpoints_with_nat_mappings = 512367468;
@@ -214,7 +214,7 @@ public function setNumVmEndpointsWithNatMappings($var)
}
/**
- * Rule number of the rule.
+ * Output only. Rule number of the rule.
*
* Generated from protobuf field optional int32 rule_number = 535211500;
* @return int
@@ -235,7 +235,7 @@ public function clearRuleNumber()
}
/**
- * Rule number of the rule.
+ * Output only. Rule number of the rule.
*
* Generated from protobuf field optional int32 rule_number = 535211500;
* @param int $var
diff --git a/Compute/src/V1/RouterStatusResponse.php b/Compute/src/V1/RouterStatusResponse.php
index 13e3aaaaf134..cf5b150a51a1 100644
--- a/Compute/src/V1/RouterStatusResponse.php
+++ b/Compute/src/V1/RouterStatusResponse.php
@@ -15,7 +15,7 @@
class RouterStatusResponse extends \Google\Protobuf\Internal\Message
{
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -32,7 +32,7 @@ class RouterStatusResponse extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $kind
- * Type of resource.
+ * Output only. Type of resource.
* @type \Google\Cloud\Compute\V1\RouterStatus $result
* }
*/
@@ -42,7 +42,7 @@ public function __construct($data = NULL) {
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -63,7 +63,7 @@ public function clearKind()
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
diff --git a/Compute/src/V1/RoutersListBgpRoutes.php b/Compute/src/V1/RoutersListBgpRoutes.php
index 1b87c4fc8516..6b60d07d4ec0 100644
--- a/Compute/src/V1/RoutersListBgpRoutes.php
+++ b/Compute/src/V1/RoutersListBgpRoutes.php
@@ -26,7 +26,7 @@ class RoutersListBgpRoutes extends \Google\Protobuf\Internal\Message
*/
protected $id = null;
/**
- * [Output Only] Type of resource. Alwayscompute#routersListBgpRoutes for lists of bgp routes.
+ * Output only. [Output Only] Type of resource. Alwayscompute#routersListBgpRoutes for lists of bgp routes.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -48,13 +48,13 @@ class RoutersListBgpRoutes extends \Google\Protobuf\Internal\Message
*/
private $result;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
@@ -77,7 +77,7 @@ class RoutersListBgpRoutes extends \Google\Protobuf\Internal\Message
* [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#routersListBgpRoutes for lists of bgp routes.
+ * Output only. [Output Only] Type of resource. Alwayscompute#routersListBgpRoutes for lists of bgp routes.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -87,9 +87,9 @@ class RoutersListBgpRoutes extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\BgpRoute>|\Google\Protobuf\Internal\RepeatedField $result
* [Output Only] A list of bgp routes.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -170,7 +170,7 @@ public function setId($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#routersListBgpRoutes for lists of bgp routes.
+ * Output only. [Output Only] Type of resource. Alwayscompute#routersListBgpRoutes for lists of bgp routes.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -191,7 +191,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#routersListBgpRoutes for lists of bgp routes.
+ * Output only. [Output Only] Type of resource. Alwayscompute#routersListBgpRoutes for lists of bgp routes.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -276,7 +276,7 @@ public function setResult($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -297,7 +297,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -312,7 +312,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -323,7 +323,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/RoutersListRoutePolicies.php b/Compute/src/V1/RoutersListRoutePolicies.php
index 4849b089b478..092dae1b76a4 100644
--- a/Compute/src/V1/RoutersListRoutePolicies.php
+++ b/Compute/src/V1/RoutersListRoutePolicies.php
@@ -26,7 +26,7 @@ class RoutersListRoutePolicies extends \Google\Protobuf\Internal\Message
*/
protected $id = null;
/**
- * [Output Only] Type of resource. Alwayscompute#routersListRoutePolicies for lists of route policies.
+ * Output only. [Output Only] Type of resource. Alwayscompute#routersListRoutePolicies for lists of route policies.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -48,13 +48,13 @@ class RoutersListRoutePolicies extends \Google\Protobuf\Internal\Message
*/
private $result;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
@@ -77,7 +77,7 @@ class RoutersListRoutePolicies extends \Google\Protobuf\Internal\Message
* [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#routersListRoutePolicies for lists of route policies.
+ * Output only. [Output Only] Type of resource. Alwayscompute#routersListRoutePolicies for lists of route policies.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -87,9 +87,9 @@ class RoutersListRoutePolicies extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\RoutePolicy>|\Google\Protobuf\Internal\RepeatedField $result
* [Output Only] A list of route policies.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -170,7 +170,7 @@ public function setId($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#routersListRoutePolicies for lists of route policies.
+ * Output only. [Output Only] Type of resource. Alwayscompute#routersListRoutePolicies for lists of route policies.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -191,7 +191,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#routersListRoutePolicies for lists of route policies.
+ * Output only. [Output Only] Type of resource. Alwayscompute#routersListRoutePolicies for lists of route policies.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -276,7 +276,7 @@ public function setResult($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -297,7 +297,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -312,7 +312,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -323,7 +323,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/SavedAttachedDisk.php b/Compute/src/V1/SavedAttachedDisk.php
index 377dac414610..e3e34d484f37 100644
--- a/Compute/src/V1/SavedAttachedDisk.php
+++ b/Compute/src/V1/SavedAttachedDisk.php
@@ -49,7 +49,7 @@ class SavedAttachedDisk extends \Google\Protobuf\Internal\Message
*/
protected $disk_size_gb = null;
/**
- * [Output Only] URL of the disk type resource. For example:projects/project/zones/zone/diskTypes/pd-standard or
+ * Output only. [Output Only] URL of the disk type resource. For example:projects/project/zones/zone/diskTypes/pd-standard or
* pd-ssd
*
* Generated from protobuf field optional string disk_type = 93009052;
@@ -65,7 +65,7 @@ class SavedAttachedDisk extends \Google\Protobuf\Internal\Message
*/
private $guest_os_features;
/**
- * Specifies zero-based index of the disk that is attached to the source
+ * Output only. Specifies zero-based index of the disk that is attached to the source
* instance.
*
* Generated from protobuf field optional int32 index = 100346066;
@@ -80,13 +80,13 @@ class SavedAttachedDisk extends \Google\Protobuf\Internal\Message
*/
protected $interface = null;
/**
- * [Output Only] Type of the resource. Alwayscompute#attachedDisk for attached disks.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#attachedDisk for attached disks.
*
* Generated from protobuf field optional string kind = 3292052;
*/
protected $kind = null;
/**
- * [Output Only] Any valid publicly visible licenses.
+ * Output only. [Output Only] Any valid publicly visible licenses.
*
* Generated from protobuf field repeated string licenses = 337642578;
*/
@@ -105,14 +105,14 @@ class SavedAttachedDisk extends \Google\Protobuf\Internal\Message
*/
protected $source = null;
/**
- * [Output Only] A size of the storage used by the disk's snapshot by this
+ * Output only. [Output Only] A size of the storage used by the disk's snapshot by this
* machine image.
*
* Generated from protobuf field optional int64 storage_bytes = 424631719;
*/
protected $storage_bytes = null;
/**
- * [Output Only] An indicator whether storageBytes is in a
+ * Output only. [Output Only] An indicator whether storageBytes is in a
* stable state or it is being adjusted as a result of shared storage
* reallocation. This status can either be UPDATING, meaning
* the size of the snapshot is being updated, or UP_TO_DATE,
@@ -149,7 +149,7 @@ class SavedAttachedDisk extends \Google\Protobuf\Internal\Message
* @type int|string $disk_size_gb
* The size of the disk in base-2 GB.
* @type string $disk_type
- * [Output Only] URL of the disk type resource. For example:projects/project/zones/zone/diskTypes/pd-standard or
+ * Output only. [Output Only] URL of the disk type resource. For example:projects/project/zones/zone/diskTypes/pd-standard or
* pd-ssd
* @type array<\Google\Cloud\Compute\V1\GuestOsFeature>|\Google\Protobuf\Internal\RepeatedField $guest_os_features
* A list of features to enable on the guest operating system. Applicable only
@@ -157,26 +157,26 @@ class SavedAttachedDisk extends \Google\Protobuf\Internal\Message
* Enabling guest operating system features to see a list of available
* options.
* @type int $index
- * Specifies zero-based index of the disk that is attached to the source
+ * Output only. Specifies zero-based index of the disk that is attached to the source
* instance.
* @type string $interface
* Specifies the disk interface to use for attaching this disk, which is
* either SCSI or NVME.
* Check the Interface enum for the list of possible values.
* @type string $kind
- * [Output Only] Type of the resource. Alwayscompute#attachedDisk for attached disks.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#attachedDisk for attached disks.
* @type array|\Google\Protobuf\Internal\RepeatedField $licenses
- * [Output Only] Any valid publicly visible licenses.
+ * Output only. [Output Only] Any valid publicly visible licenses.
* @type string $mode
* The mode in which this disk is attached to the source instance, eitherREAD_WRITE or READ_ONLY.
* Check the Mode enum for the list of possible values.
* @type string $source
* Specifies a URL of the disk attached to the source instance.
* @type int|string $storage_bytes
- * [Output Only] A size of the storage used by the disk's snapshot by this
+ * Output only. [Output Only] A size of the storage used by the disk's snapshot by this
* machine image.
* @type string $storage_bytes_status
- * [Output Only] An indicator whether storageBytes is in a
+ * Output only. [Output Only] An indicator whether storageBytes is in a
* stable state or it is being adjusted as a result of shared storage
* reallocation. This status can either be UPDATING, meaning
* the size of the snapshot is being updated, or UP_TO_DATE,
@@ -377,7 +377,7 @@ public function setDiskSizeGb($var)
}
/**
- * [Output Only] URL of the disk type resource. For example:projects/project/zones/zone/diskTypes/pd-standard or
+ * Output only. [Output Only] URL of the disk type resource. For example:projects/project/zones/zone/diskTypes/pd-standard or
* pd-ssd
*
* Generated from protobuf field optional string disk_type = 93009052;
@@ -399,7 +399,7 @@ public function clearDiskType()
}
/**
- * [Output Only] URL of the disk type resource. For example:projects/project/zones/zone/diskTypes/pd-standard or
+ * Output only. [Output Only] URL of the disk type resource. For example:projects/project/zones/zone/diskTypes/pd-standard or
* pd-ssd
*
* Generated from protobuf field optional string disk_type = 93009052;
@@ -447,7 +447,7 @@ public function setGuestOsFeatures($var)
}
/**
- * Specifies zero-based index of the disk that is attached to the source
+ * Output only. Specifies zero-based index of the disk that is attached to the source
* instance.
*
* Generated from protobuf field optional int32 index = 100346066;
@@ -469,7 +469,7 @@ public function clearIndex()
}
/**
- * Specifies zero-based index of the disk that is attached to the source
+ * Output only. Specifies zero-based index of the disk that is attached to the source
* instance.
*
* Generated from protobuf field optional int32 index = 100346066;
@@ -525,7 +525,7 @@ public function setInterface($var)
}
/**
- * [Output Only] Type of the resource. Alwayscompute#attachedDisk for attached disks.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#attachedDisk for attached disks.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -546,7 +546,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Alwayscompute#attachedDisk for attached disks.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#attachedDisk for attached disks.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -561,7 +561,7 @@ public function setKind($var)
}
/**
- * [Output Only] Any valid publicly visible licenses.
+ * Output only. [Output Only] Any valid publicly visible licenses.
*
* Generated from protobuf field repeated string licenses = 337642578;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -572,7 +572,7 @@ public function getLicenses()
}
/**
- * [Output Only] Any valid publicly visible licenses.
+ * Output only. [Output Only] Any valid publicly visible licenses.
*
* Generated from protobuf field repeated string licenses = 337642578;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
@@ -661,7 +661,7 @@ public function setSource($var)
}
/**
- * [Output Only] A size of the storage used by the disk's snapshot by this
+ * Output only. [Output Only] A size of the storage used by the disk's snapshot by this
* machine image.
*
* Generated from protobuf field optional int64 storage_bytes = 424631719;
@@ -683,7 +683,7 @@ public function clearStorageBytes()
}
/**
- * [Output Only] A size of the storage used by the disk's snapshot by this
+ * Output only. [Output Only] A size of the storage used by the disk's snapshot by this
* machine image.
*
* Generated from protobuf field optional int64 storage_bytes = 424631719;
@@ -699,7 +699,7 @@ public function setStorageBytes($var)
}
/**
- * [Output Only] An indicator whether storageBytes is in a
+ * Output only. [Output Only] An indicator whether storageBytes is in a
* stable state or it is being adjusted as a result of shared storage
* reallocation. This status can either be UPDATING, meaning
* the size of the snapshot is being updated, or UP_TO_DATE,
@@ -725,7 +725,7 @@ public function clearStorageBytesStatus()
}
/**
- * [Output Only] An indicator whether storageBytes is in a
+ * Output only. [Output Only] An indicator whether storageBytes is in a
* stable state or it is being adjusted as a result of shared storage
* reallocation. This status can either be UPDATING, meaning
* the size of the snapshot is being updated, or UP_TO_DATE,
diff --git a/Compute/src/V1/SavedAttachedDisk/StorageBytesStatus.php b/Compute/src/V1/SavedAttachedDisk/StorageBytesStatus.php
index fe224113b3ec..4000a10c7d4f 100644
--- a/Compute/src/V1/SavedAttachedDisk/StorageBytesStatus.php
+++ b/Compute/src/V1/SavedAttachedDisk/StorageBytesStatus.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] An indicator whether storageBytes is in a
+ * Output only. [Output Only] An indicator whether storageBytes is in a
* stable state or it is being adjusted as a result of shared storage
* reallocation. This status can either be UPDATING, meaning
* the size of the snapshot is being updated, or UP_TO_DATE,
diff --git a/Compute/src/V1/SavedDisk.php b/Compute/src/V1/SavedDisk.php
index 05ff86df4a33..bf9e13be6b94 100644
--- a/Compute/src/V1/SavedDisk.php
+++ b/Compute/src/V1/SavedDisk.php
@@ -16,34 +16,34 @@
class SavedDisk extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] The architecture of the attached disk.
+ * Output only. [Output Only] The architecture of the attached disk.
* Check the Architecture enum for the list of possible values.
*
* Generated from protobuf field optional string architecture = 302803283;
*/
protected $architecture = null;
/**
- * [Output Only] Type of the resource. Always compute#savedDisk
+ * Output only. [Output Only] Type of the resource. Always compute#savedDisk
* for attached disks.
*
* Generated from protobuf field optional string kind = 3292052;
*/
protected $kind = null;
/**
- * Specifies a URL of the disk attached to the source instance.
+ * Output only. Specifies a URL of the disk attached to the source instance.
*
* Generated from protobuf field optional string source_disk = 451753793;
*/
protected $source_disk = null;
/**
- * [Output Only] Size of the individual disk snapshot used by this machine
+ * Output only. [Output Only] Size of the individual disk snapshot used by this machine
* image.
*
* Generated from protobuf field optional int64 storage_bytes = 424631719;
*/
protected $storage_bytes = null;
/**
- * [Output Only] An indicator whether storageBytes is in a
+ * Output only. [Output Only] An indicator whether storageBytes is in a
* stable state or it is being adjusted as a result of shared storage
* reallocation. This status can either be UPDATING, meaning
* the size of the snapshot is being updated, or UP_TO_DATE,
@@ -61,18 +61,18 @@ class SavedDisk extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $architecture
- * [Output Only] The architecture of the attached disk.
+ * Output only. [Output Only] The architecture of the attached disk.
* Check the Architecture enum for the list of possible values.
* @type string $kind
- * [Output Only] Type of the resource. Always compute#savedDisk
+ * Output only. [Output Only] Type of the resource. Always compute#savedDisk
* for attached disks.
* @type string $source_disk
- * Specifies a URL of the disk attached to the source instance.
+ * Output only. Specifies a URL of the disk attached to the source instance.
* @type int|string $storage_bytes
- * [Output Only] Size of the individual disk snapshot used by this machine
+ * Output only. [Output Only] Size of the individual disk snapshot used by this machine
* image.
* @type string $storage_bytes_status
- * [Output Only] An indicator whether storageBytes is in a
+ * Output only. [Output Only] An indicator whether storageBytes is in a
* stable state or it is being adjusted as a result of shared storage
* reallocation. This status can either be UPDATING, meaning
* the size of the snapshot is being updated, or UP_TO_DATE,
@@ -86,7 +86,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] The architecture of the attached disk.
+ * Output only. [Output Only] The architecture of the attached disk.
* Check the Architecture enum for the list of possible values.
*
* Generated from protobuf field optional string architecture = 302803283;
@@ -108,7 +108,7 @@ public function clearArchitecture()
}
/**
- * [Output Only] The architecture of the attached disk.
+ * Output only. [Output Only] The architecture of the attached disk.
* Check the Architecture enum for the list of possible values.
*
* Generated from protobuf field optional string architecture = 302803283;
@@ -124,7 +124,7 @@ public function setArchitecture($var)
}
/**
- * [Output Only] Type of the resource. Always compute#savedDisk
+ * Output only. [Output Only] Type of the resource. Always compute#savedDisk
* for attached disks.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -146,7 +146,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Always compute#savedDisk
+ * Output only. [Output Only] Type of the resource. Always compute#savedDisk
* for attached disks.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -162,7 +162,7 @@ public function setKind($var)
}
/**
- * Specifies a URL of the disk attached to the source instance.
+ * Output only. Specifies a URL of the disk attached to the source instance.
*
* Generated from protobuf field optional string source_disk = 451753793;
* @return string
@@ -183,7 +183,7 @@ public function clearSourceDisk()
}
/**
- * Specifies a URL of the disk attached to the source instance.
+ * Output only. Specifies a URL of the disk attached to the source instance.
*
* Generated from protobuf field optional string source_disk = 451753793;
* @param string $var
@@ -198,7 +198,7 @@ public function setSourceDisk($var)
}
/**
- * [Output Only] Size of the individual disk snapshot used by this machine
+ * Output only. [Output Only] Size of the individual disk snapshot used by this machine
* image.
*
* Generated from protobuf field optional int64 storage_bytes = 424631719;
@@ -220,7 +220,7 @@ public function clearStorageBytes()
}
/**
- * [Output Only] Size of the individual disk snapshot used by this machine
+ * Output only. [Output Only] Size of the individual disk snapshot used by this machine
* image.
*
* Generated from protobuf field optional int64 storage_bytes = 424631719;
@@ -236,7 +236,7 @@ public function setStorageBytes($var)
}
/**
- * [Output Only] An indicator whether storageBytes is in a
+ * Output only. [Output Only] An indicator whether storageBytes is in a
* stable state or it is being adjusted as a result of shared storage
* reallocation. This status can either be UPDATING, meaning
* the size of the snapshot is being updated, or UP_TO_DATE,
@@ -262,7 +262,7 @@ public function clearStorageBytesStatus()
}
/**
- * [Output Only] An indicator whether storageBytes is in a
+ * Output only. [Output Only] An indicator whether storageBytes is in a
* stable state or it is being adjusted as a result of shared storage
* reallocation. This status can either be UPDATING, meaning
* the size of the snapshot is being updated, or UP_TO_DATE,
diff --git a/Compute/src/V1/SavedDisk/Architecture.php b/Compute/src/V1/SavedDisk/Architecture.php
index ae413a08f86a..40163ddc4e08 100644
--- a/Compute/src/V1/SavedDisk/Architecture.php
+++ b/Compute/src/V1/SavedDisk/Architecture.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] The architecture of the attached disk.
+ * Output only. [Output Only] The architecture of the attached disk.
*
* Protobuf type google.cloud.compute.v1.SavedDisk.Architecture
*/
diff --git a/Compute/src/V1/SavedDisk/StorageBytesStatus.php b/Compute/src/V1/SavedDisk/StorageBytesStatus.php
index f643ce5cd6ac..9c16c4ce1db2 100644
--- a/Compute/src/V1/SavedDisk/StorageBytesStatus.php
+++ b/Compute/src/V1/SavedDisk/StorageBytesStatus.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] An indicator whether storageBytes is in a
+ * Output only. [Output Only] An indicator whether storageBytes is in a
* stable state or it is being adjusted as a result of shared storage
* reallocation. This status can either be UPDATING, meaning
* the size of the snapshot is being updated, or UP_TO_DATE,
diff --git a/Compute/src/V1/Screenshot.php b/Compute/src/V1/Screenshot.php
index 1a9f59d1440e..bd916bd8ee84 100644
--- a/Compute/src/V1/Screenshot.php
+++ b/Compute/src/V1/Screenshot.php
@@ -22,7 +22,7 @@ class Screenshot extends \Google\Protobuf\Internal\Message
*/
protected $contents = null;
/**
- * [Output Only] Type of the resource. Always compute#screenshot
+ * Output only. [Output Only] Type of the resource. Always compute#screenshot
* for the screenshots.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -38,7 +38,7 @@ class Screenshot extends \Google\Protobuf\Internal\Message
* @type string $contents
* [Output Only] The Base64-encoded screenshot data.
* @type string $kind
- * [Output Only] Type of the resource. Always compute#screenshot
+ * Output only. [Output Only] Type of the resource. Always compute#screenshot
* for the screenshots.
* }
*/
@@ -84,7 +84,7 @@ public function setContents($var)
}
/**
- * [Output Only] Type of the resource. Always compute#screenshot
+ * Output only. [Output Only] Type of the resource. Always compute#screenshot
* for the screenshots.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -106,7 +106,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Always compute#screenshot
+ * Output only. [Output Only] Type of the resource. Always compute#screenshot
* for the screenshots.
*
* Generated from protobuf field optional string kind = 3292052;
diff --git a/Compute/src/V1/SecurityPoliciesAggregatedList.php b/Compute/src/V1/SecurityPoliciesAggregatedList.php
index db45a015abdc..2aaa0993e4b1 100644
--- a/Compute/src/V1/SecurityPoliciesAggregatedList.php
+++ b/Compute/src/V1/SecurityPoliciesAggregatedList.php
@@ -31,7 +31,7 @@ class SecurityPoliciesAggregatedList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Alwayscompute#securityPolicyAggregatedList for lists of Security
+ * Output only. [Output Only] Type of resource. Alwayscompute#securityPolicyAggregatedList for lists of Security
* Policies.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -48,13 +48,13 @@ class SecurityPoliciesAggregatedList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
@@ -78,7 +78,7 @@ class SecurityPoliciesAggregatedList extends \Google\Protobuf\Internal\Message
* @type array|\Google\Protobuf\Internal\MapField $items
* A list of SecurityPoliciesScopedList resources.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#securityPolicyAggregatedList for lists of Security
+ * Output only. [Output Only] Type of resource. Alwayscompute#securityPolicyAggregatedList for lists of Security
* Policies.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -87,9 +87,9 @@ class SecurityPoliciesAggregatedList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -194,7 +194,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#securityPolicyAggregatedList for lists of Security
+ * Output only. [Output Only] Type of resource. Alwayscompute#securityPolicyAggregatedList for lists of Security
* Policies.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -216,7 +216,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#securityPolicyAggregatedList for lists of Security
+ * Output only. [Output Only] Type of resource. Alwayscompute#securityPolicyAggregatedList for lists of Security
* Policies.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -276,7 +276,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -297,7 +297,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -312,7 +312,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -323,7 +323,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/SecurityPolicy.php b/Compute/src/V1/SecurityPolicy.php
index fbfa6813bfe4..ce775aa9b845 100644
--- a/Compute/src/V1/SecurityPolicy.php
+++ b/Compute/src/V1/SecurityPolicy.php
@@ -33,7 +33,7 @@ class SecurityPolicy extends \Google\Protobuf\Internal\Message
*/
private $associations;
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -64,14 +64,14 @@ class SecurityPolicy extends \Google\Protobuf\Internal\Message
*/
protected $fingerprint = null;
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
*/
protected $id = null;
/**
- * [Output only] Type of the resource. Alwayscompute#securityPolicyfor security policies
+ * Output only. [Output only] Type of the resource. Alwayscompute#securityPolicyfor security policies
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -108,7 +108,7 @@ class SecurityPolicy extends \Google\Protobuf\Internal\Message
*/
protected $name = null;
/**
- * [Output Only] The parent of the security policy.
+ * Output only. [Output Only] The parent of the security policy.
*
* Generated from protobuf field optional string parent = 78317738;
*/
@@ -118,7 +118,7 @@ class SecurityPolicy extends \Google\Protobuf\Internal\Message
*/
protected $recaptcha_options_config = null;
/**
- * [Output Only] URL of the region where the regional security policy
+ * Output only. [Output Only] URL of the region where the regional security policy
* resides. This field is not applicable to global security policies.
*
* Generated from protobuf field optional string region = 138946292;
@@ -137,7 +137,7 @@ class SecurityPolicy extends \Google\Protobuf\Internal\Message
*/
private $rules;
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -209,7 +209,7 @@ class SecurityPolicy extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\SecurityPolicyAssociation>|\Google\Protobuf\Internal\RepeatedField $associations
* A list of associations that belong to this policy.
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type \Google\Cloud\Compute\V1\SecurityPolicyDdosProtectionConfig $ddos_protection_config
* @type string $description
@@ -225,10 +225,10 @@ class SecurityPolicy extends \Google\Protobuf\Internal\Message
* To see the latest fingerprint, make get() request to the
* security policy.
* @type int|string $id
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type string $kind
- * [Output only] Type of the resource. Alwayscompute#securityPolicyfor security policies
+ * Output only. [Output only] Type of the resource. Alwayscompute#securityPolicyfor security policies
* @type string $label_fingerprint
* A fingerprint for the labels being applied to this security policy, which
* is essentially a hash of the labels set used for optimistic locking. The
@@ -249,10 +249,10 @@ class SecurityPolicy extends \Google\Protobuf\Internal\Message
* be a dash, lowercase letter, or digit, except the last character, which
* cannot be a dash.
* @type string $parent
- * [Output Only] The parent of the security policy.
+ * Output only. [Output Only] The parent of the security policy.
* @type \Google\Cloud\Compute\V1\SecurityPolicyRecaptchaOptionsConfig $recaptcha_options_config
* @type string $region
- * [Output Only] URL of the region where the regional security policy
+ * Output only. [Output Only] URL of the region where the regional security policy
* resides. This field is not applicable to global security policies.
* @type array<\Google\Cloud\Compute\V1\SecurityPolicyRule>|\Google\Protobuf\Internal\RepeatedField $rules
* A list of rules that belong to this policy.
@@ -263,7 +263,7 @@ class SecurityPolicy extends \Google\Protobuf\Internal\Message
* creating a security policy, a default rule with action "allow" will be
* added.
* @type string $self_link
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
* @type string $short_name
* User-provided name of the organization security policy. The name should be
* unique in the organization in which the security policy is created. This
@@ -405,7 +405,7 @@ public function setAssociations($var)
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -427,7 +427,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -563,7 +563,7 @@ public function setFingerprint($var)
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -585,7 +585,7 @@ public function clearId()
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -601,7 +601,7 @@ public function setId($var)
}
/**
- * [Output only] Type of the resource. Alwayscompute#securityPolicyfor security policies
+ * Output only. [Output only] Type of the resource. Alwayscompute#securityPolicyfor security policies
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -622,7 +622,7 @@ public function clearKind()
}
/**
- * [Output only] Type of the resource. Alwayscompute#securityPolicyfor security policies
+ * Output only. [Output only] Type of the resource. Alwayscompute#securityPolicyfor security policies
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -761,7 +761,7 @@ public function setName($var)
}
/**
- * [Output Only] The parent of the security policy.
+ * Output only. [Output Only] The parent of the security policy.
*
* Generated from protobuf field optional string parent = 78317738;
* @return string
@@ -782,7 +782,7 @@ public function clearParent()
}
/**
- * [Output Only] The parent of the security policy.
+ * Output only. [Output Only] The parent of the security policy.
*
* Generated from protobuf field optional string parent = 78317738;
* @param string $var
@@ -829,7 +829,7 @@ public function setRecaptchaOptionsConfig($var)
}
/**
- * [Output Only] URL of the region where the regional security policy
+ * Output only. [Output Only] URL of the region where the regional security policy
* resides. This field is not applicable to global security policies.
*
* Generated from protobuf field optional string region = 138946292;
@@ -851,7 +851,7 @@ public function clearRegion()
}
/**
- * [Output Only] URL of the region where the regional security policy
+ * Output only. [Output Only] URL of the region where the regional security policy
* resides. This field is not applicable to global security policies.
*
* Generated from protobuf field optional string region = 138946292;
@@ -905,7 +905,7 @@ public function setRules($var)
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -926,7 +926,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/SecurityPolicyAdvancedOptionsConfig.php b/Compute/src/V1/SecurityPolicyAdvancedOptionsConfig.php
index 29bb8ef60f4d..6c3e30ca0a18 100644
--- a/Compute/src/V1/SecurityPolicyAdvancedOptionsConfig.php
+++ b/Compute/src/V1/SecurityPolicyAdvancedOptionsConfig.php
@@ -35,6 +35,14 @@ class SecurityPolicyAdvancedOptionsConfig extends \Google\Protobuf\Internal\Mess
* Generated from protobuf field optional string log_level = 140582601;
*/
protected $log_level = null;
+ /**
+ * The maximum request size chosen by the customer with Waf enabled.
+ * Values supported are "8KB", "16KB, "32KB", "48KB" and "64KB".
+ * Values are case insensitive.
+ *
+ * Generated from protobuf field optional string request_body_inspection_size = 191268607;
+ */
+ protected $request_body_inspection_size = null;
/**
* An optional list of case-insensitive request header names to use for
* resolving the callers client IP address.
@@ -58,6 +66,10 @@ class SecurityPolicyAdvancedOptionsConfig extends \Google\Protobuf\Internal\Mess
* @type string $log_level
*
* Check the LogLevel enum for the list of possible values.
+ * @type string $request_body_inspection_size
+ * The maximum request size chosen by the customer with Waf enabled.
+ * Values supported are "8KB", "16KB, "32KB", "48KB" and "64KB".
+ * Values are case insensitive.
* @type array|\Google\Protobuf\Internal\RepeatedField $user_ip_request_headers
* An optional list of case-insensitive request header names to use for
* resolving the callers client IP address.
@@ -182,6 +194,46 @@ public function setLogLevel($var)
return $this;
}
+ /**
+ * The maximum request size chosen by the customer with Waf enabled.
+ * Values supported are "8KB", "16KB, "32KB", "48KB" and "64KB".
+ * Values are case insensitive.
+ *
+ * Generated from protobuf field optional string request_body_inspection_size = 191268607;
+ * @return string
+ */
+ public function getRequestBodyInspectionSize()
+ {
+ return isset($this->request_body_inspection_size) ? $this->request_body_inspection_size : '';
+ }
+
+ public function hasRequestBodyInspectionSize()
+ {
+ return isset($this->request_body_inspection_size);
+ }
+
+ public function clearRequestBodyInspectionSize()
+ {
+ unset($this->request_body_inspection_size);
+ }
+
+ /**
+ * The maximum request size chosen by the customer with Waf enabled.
+ * Values supported are "8KB", "16KB, "32KB", "48KB" and "64KB".
+ * Values are case insensitive.
+ *
+ * Generated from protobuf field optional string request_body_inspection_size = 191268607;
+ * @param string $var
+ * @return $this
+ */
+ public function setRequestBodyInspectionSize($var)
+ {
+ GPBUtil::checkString($var, True);
+ $this->request_body_inspection_size = $var;
+
+ return $this;
+ }
+
/**
* An optional list of case-insensitive request header names to use for
* resolving the callers client IP address.
diff --git a/Compute/src/V1/SecurityPolicyAssociation.php b/Compute/src/V1/SecurityPolicyAssociation.php
index f3b052c3f568..53229debdb5e 100644
--- a/Compute/src/V1/SecurityPolicyAssociation.php
+++ b/Compute/src/V1/SecurityPolicyAssociation.php
@@ -21,7 +21,7 @@ class SecurityPolicyAssociation extends \Google\Protobuf\Internal\Message
*/
protected $attachment_id = null;
/**
- * [Output Only] The display name of the security policy of the association.
+ * Output only. [Output Only] The display name of the security policy of the association.
*
* Generated from protobuf field optional string display_name = 4473832;
*/
@@ -45,13 +45,13 @@ class SecurityPolicyAssociation extends \Google\Protobuf\Internal\Message
*/
protected $name = null;
/**
- * [Output Only] The security policy ID of the association.
+ * Output only. [Output Only] The security policy ID of the association.
*
* Generated from protobuf field optional string security_policy_id = 203671817;
*/
protected $security_policy_id = null;
/**
- * [Output Only] The short name of the security policy of the association.
+ * Output only. [Output Only] The short name of the security policy of the association.
*
* Generated from protobuf field optional string short_name = 492051566;
*/
@@ -66,7 +66,7 @@ class SecurityPolicyAssociation extends \Google\Protobuf\Internal\Message
* @type string $attachment_id
* The resource that the security policy is attached to.
* @type string $display_name
- * [Output Only] The display name of the security policy of the association.
+ * Output only. [Output Only] The display name of the security policy of the association.
* @type array|\Google\Protobuf\Internal\RepeatedField $excluded_folders
* A list of folders to exclude from the security policy.
* @type array|\Google\Protobuf\Internal\RepeatedField $excluded_projects
@@ -74,9 +74,9 @@ class SecurityPolicyAssociation extends \Google\Protobuf\Internal\Message
* @type string $name
* The name for an association.
* @type string $security_policy_id
- * [Output Only] The security policy ID of the association.
+ * Output only. [Output Only] The security policy ID of the association.
* @type string $short_name
- * [Output Only] The short name of the security policy of the association.
+ * Output only. [Output Only] The short name of the security policy of the association.
* }
*/
public function __construct($data = NULL) {
@@ -121,7 +121,7 @@ public function setAttachmentId($var)
}
/**
- * [Output Only] The display name of the security policy of the association.
+ * Output only. [Output Only] The display name of the security policy of the association.
*
* Generated from protobuf field optional string display_name = 4473832;
* @return string
@@ -142,7 +142,7 @@ public function clearDisplayName()
}
/**
- * [Output Only] The display name of the security policy of the association.
+ * Output only. [Output Only] The display name of the security policy of the association.
*
* Generated from protobuf field optional string display_name = 4473832;
* @param string $var
@@ -245,7 +245,7 @@ public function setName($var)
}
/**
- * [Output Only] The security policy ID of the association.
+ * Output only. [Output Only] The security policy ID of the association.
*
* Generated from protobuf field optional string security_policy_id = 203671817;
* @return string
@@ -266,7 +266,7 @@ public function clearSecurityPolicyId()
}
/**
- * [Output Only] The security policy ID of the association.
+ * Output only. [Output Only] The security policy ID of the association.
*
* Generated from protobuf field optional string security_policy_id = 203671817;
* @param string $var
@@ -281,7 +281,7 @@ public function setSecurityPolicyId($var)
}
/**
- * [Output Only] The short name of the security policy of the association.
+ * Output only. [Output Only] The short name of the security policy of the association.
*
* Generated from protobuf field optional string short_name = 492051566;
* @return string
@@ -302,7 +302,7 @@ public function clearShortName()
}
/**
- * [Output Only] The short name of the security policy of the association.
+ * Output only. [Output Only] The short name of the security policy of the association.
*
* Generated from protobuf field optional string short_name = 492051566;
* @param string $var
diff --git a/Compute/src/V1/SecurityPolicyList.php b/Compute/src/V1/SecurityPolicyList.php
index 94fb57845726..5228ed725c7b 100644
--- a/Compute/src/V1/SecurityPolicyList.php
+++ b/Compute/src/V1/SecurityPolicyList.php
@@ -27,7 +27,7 @@ class SecurityPolicyList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Alwayscompute#securityPolicyList for listsof securityPolicies
+ * Output only. [Output Only] Type of resource. Alwayscompute#securityPolicyList for listsof securityPolicies
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -60,7 +60,7 @@ class SecurityPolicyList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\SecurityPolicy>|\Google\Protobuf\Internal\RepeatedField $items
* A list of SecurityPolicy resources.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#securityPolicyList for listsof securityPolicies
+ * Output only. [Output Only] Type of resource. Alwayscompute#securityPolicyList for listsof securityPolicies
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -139,7 +139,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#securityPolicyList for listsof securityPolicies
+ * Output only. [Output Only] Type of resource. Alwayscompute#securityPolicyList for listsof securityPolicies
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -160,7 +160,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#securityPolicyList for listsof securityPolicies
+ * Output only. [Output Only] Type of resource. Alwayscompute#securityPolicyList for listsof securityPolicies
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
diff --git a/Compute/src/V1/SecurityPolicyRule.php b/Compute/src/V1/SecurityPolicyRule.php
index 25f8f0263ed1..fe9718d54297 100644
--- a/Compute/src/V1/SecurityPolicyRule.php
+++ b/Compute/src/V1/SecurityPolicyRule.php
@@ -60,7 +60,7 @@ class SecurityPolicyRule extends \Google\Protobuf\Internal\Message
*/
protected $header_action = null;
/**
- * [Output only] Type of the resource. Alwayscompute#securityPolicyRule for security policy rules
+ * Output only. [Output only] Type of the resource. Alwayscompute#securityPolicyRule for security policy rules
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -185,7 +185,7 @@ class SecurityPolicyRule extends \Google\Protobuf\Internal\Message
* This field is only supported in Global Security Policies of type
* CLOUD_ARMOR.
* @type string $kind
- * [Output only] Type of the resource. Alwayscompute#securityPolicyRule for security policy rules
+ * Output only. [Output only] Type of the resource. Alwayscompute#securityPolicyRule for security policy rules
* @type \Google\Cloud\Compute\V1\SecurityPolicyRuleMatcher $match
* A match condition that incoming traffic is evaluated against.
* If it evaluates to true, the corresponding 'action' is enforced.
@@ -405,7 +405,7 @@ public function setHeaderAction($var)
}
/**
- * [Output only] Type of the resource. Alwayscompute#securityPolicyRule for security policy rules
+ * Output only. [Output only] Type of the resource. Alwayscompute#securityPolicyRule for security policy rules
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -426,7 +426,7 @@ public function clearKind()
}
/**
- * [Output only] Type of the resource. Alwayscompute#securityPolicyRule for security policy rules
+ * Output only. [Output only] Type of the resource. Alwayscompute#securityPolicyRule for security policy rules
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
diff --git a/Compute/src/V1/SerialPortOutput.php b/Compute/src/V1/SerialPortOutput.php
index 2ef5944af1b8..279581d5beb1 100644
--- a/Compute/src/V1/SerialPortOutput.php
+++ b/Compute/src/V1/SerialPortOutput.php
@@ -22,7 +22,7 @@ class SerialPortOutput extends \Google\Protobuf\Internal\Message
*/
protected $contents = null;
/**
- * [Output Only] Type of the resource. Alwayscompute#serialPortOutput for serial port output.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#serialPortOutput for serial port output.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -37,7 +37,7 @@ class SerialPortOutput extends \Google\Protobuf\Internal\Message
*/
protected $next = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -63,14 +63,14 @@ class SerialPortOutput extends \Google\Protobuf\Internal\Message
* @type string $contents
* [Output Only] The contents of the console output.
* @type string $kind
- * [Output Only] Type of the resource. Alwayscompute#serialPortOutput for serial port output.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#serialPortOutput for serial port output.
* @type int|string $next
* [Output Only] The position of the next byte of content, regardless of
* whether the content exists, following the output returned in the `contents`
* property. Use this value in the next request as the start
* parameter.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type int|string $start
* The starting byte position of the output that was returned.
* This should match the start parameter sent with the request.
@@ -122,7 +122,7 @@ public function setContents($var)
}
/**
- * [Output Only] Type of the resource. Alwayscompute#serialPortOutput for serial port output.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#serialPortOutput for serial port output.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -143,7 +143,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Alwayscompute#serialPortOutput for serial port output.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#serialPortOutput for serial port output.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -200,7 +200,7 @@ public function setNext($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -221,7 +221,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/ServiceAttachment.php b/Compute/src/V1/ServiceAttachment.php
index 706d53676fb8..8b63eac22308 100644
--- a/Compute/src/V1/ServiceAttachment.php
+++ b/Compute/src/V1/ServiceAttachment.php
@@ -20,7 +20,7 @@
class ServiceAttachment extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] An array of connections for all the consumers connected to
+ * Output only. [Output Only] An array of connections for all the consumers connected to
* this service attachment.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.ServiceAttachmentConnectedEndpoint connected_endpoints = 72223688;
@@ -59,7 +59,7 @@ class ServiceAttachment extends \Google\Protobuf\Internal\Message
*/
private $consumer_reject_lists;
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -102,14 +102,14 @@ class ServiceAttachment extends \Google\Protobuf\Internal\Message
*/
protected $fingerprint = null;
/**
- * [Output Only] The unique identifier for the resource type. The server
+ * Output only. [Output Only] The unique identifier for the resource type. The server
* generates this identifier.
*
* Generated from protobuf field optional uint64 id = 3355;
*/
protected $id = null;
/**
- * [Output Only] Type of the resource. Alwayscompute#serviceAttachment for service attachments.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#serviceAttachment for service attachments.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -163,7 +163,7 @@ class ServiceAttachment extends \Google\Protobuf\Internal\Message
*/
protected $propagated_connection_limit = null;
/**
- * [Output Only] An 128-bit global unique ID of the PSC service attachment.
+ * Output only. [Output Only] An 128-bit global unique ID of the PSC service attachment.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Uint128 psc_service_attachment_id = 527695214;
*/
@@ -184,7 +184,7 @@ class ServiceAttachment extends \Google\Protobuf\Internal\Message
*/
protected $reconcile_connections = null;
/**
- * [Output Only] URL of the region where the service attachment resides.
+ * Output only. [Output Only] URL of the region where the service attachment resides.
* This field applies only to the region resource. You must specify this
* field as part of the HTTP request URL. It is not settable as a field in
* the request body.
@@ -193,7 +193,7 @@ class ServiceAttachment extends \Google\Protobuf\Internal\Message
*/
protected $region = null;
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -213,7 +213,7 @@ class ServiceAttachment extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type array<\Google\Cloud\Compute\V1\ServiceAttachmentConnectedEndpoint>|\Google\Protobuf\Internal\RepeatedField $connected_endpoints
- * [Output Only] An array of connections for all the consumers connected to
+ * Output only. [Output Only] An array of connections for all the consumers connected to
* this service attachment.
* @type string $connection_preference
* The connection preference of service attachment. The value can be set
@@ -236,7 +236,7 @@ class ServiceAttachment extends \Google\Protobuf\Internal\Message
* level. Therefore, both the reject and accept lists for a given service
* attachment must contain either only projects or only networks.
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $description
* An optional description of this resource. Provide this property when you
@@ -259,10 +259,10 @@ class ServiceAttachment extends \Google\Protobuf\Internal\Message
* latest fingerprint, make a get() request to retrieve the
* ServiceAttachment.
* @type int|string $id
- * [Output Only] The unique identifier for the resource type. The server
+ * Output only. [Output Only] The unique identifier for the resource type. The server
* generates this identifier.
* @type string $kind
- * [Output Only] Type of the resource. Alwayscompute#serviceAttachment for service attachments.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#serviceAttachment for service attachments.
* @type array|\Google\Protobuf\Internal\MapField $metadata
* Metadata of the service attachment.
* @type string $name
@@ -292,7 +292,7 @@ class ServiceAttachment extends \Google\Protobuf\Internal\Message
* connected endpoint.
* If unspecified, the default propagated connection limit is 250.
* @type \Google\Cloud\Compute\V1\Uint128 $psc_service_attachment_id
- * [Output Only] An 128-bit global unique ID of the PSC service attachment.
+ * Output only. [Output Only] An 128-bit global unique ID of the PSC service attachment.
* @type bool $reconcile_connections
* This flag determines whether a consumer accept/reject list change can
* reconcile the statuses of existing ACCEPTED or REJECTED PSC endpoints.
@@ -305,12 +305,12 @@ class ServiceAttachment extends \Google\Protobuf\Internal\Message
* is added to the reject list.
* For newly created service attachment, this boolean defaults to false.
* @type string $region
- * [Output Only] URL of the region where the service attachment resides.
+ * Output only. [Output Only] URL of the region where the service attachment resides.
* This field applies only to the region resource. You must specify this
* field as part of the HTTP request URL. It is not settable as a field in
* the request body.
* @type string $self_link
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
* @type string $target_service
* The URL of a service serving the endpoint identified by this service
* attachment.
@@ -322,7 +322,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] An array of connections for all the consumers connected to
+ * Output only. [Output Only] An array of connections for all the consumers connected to
* this service attachment.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.ServiceAttachmentConnectedEndpoint connected_endpoints = 72223688;
@@ -334,7 +334,7 @@ public function getConnectedEndpoints()
}
/**
- * [Output Only] An array of connections for all the consumers connected to
+ * Output only. [Output Only] An array of connections for all the consumers connected to
* this service attachment.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.ServiceAttachmentConnectedEndpoint connected_endpoints = 72223688;
@@ -466,7 +466,7 @@ public function setConsumerRejectLists($var)
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -488,7 +488,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -662,7 +662,7 @@ public function setFingerprint($var)
}
/**
- * [Output Only] The unique identifier for the resource type. The server
+ * Output only. [Output Only] The unique identifier for the resource type. The server
* generates this identifier.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -684,7 +684,7 @@ public function clearId()
}
/**
- * [Output Only] The unique identifier for the resource type. The server
+ * Output only. [Output Only] The unique identifier for the resource type. The server
* generates this identifier.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -700,7 +700,7 @@ public function setId($var)
}
/**
- * [Output Only] Type of the resource. Alwayscompute#serviceAttachment for service attachments.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#serviceAttachment for service attachments.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -721,7 +721,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Alwayscompute#serviceAttachment for service attachments.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#serviceAttachment for service attachments.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -932,7 +932,7 @@ public function setPropagatedConnectionLimit($var)
}
/**
- * [Output Only] An 128-bit global unique ID of the PSC service attachment.
+ * Output only. [Output Only] An 128-bit global unique ID of the PSC service attachment.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Uint128 psc_service_attachment_id = 527695214;
* @return \Google\Cloud\Compute\V1\Uint128|null
@@ -953,7 +953,7 @@ public function clearPscServiceAttachmentId()
}
/**
- * [Output Only] An 128-bit global unique ID of the PSC service attachment.
+ * Output only. [Output Only] An 128-bit global unique ID of the PSC service attachment.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Uint128 psc_service_attachment_id = 527695214;
* @param \Google\Cloud\Compute\V1\Uint128 $var
@@ -1022,7 +1022,7 @@ public function setReconcileConnections($var)
}
/**
- * [Output Only] URL of the region where the service attachment resides.
+ * Output only. [Output Only] URL of the region where the service attachment resides.
* This field applies only to the region resource. You must specify this
* field as part of the HTTP request URL. It is not settable as a field in
* the request body.
@@ -1046,7 +1046,7 @@ public function clearRegion()
}
/**
- * [Output Only] URL of the region where the service attachment resides.
+ * Output only. [Output Only] URL of the region where the service attachment resides.
* This field applies only to the region resource. You must specify this
* field as part of the HTTP request URL. It is not settable as a field in
* the request body.
@@ -1064,7 +1064,7 @@ public function setRegion($var)
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -1085,7 +1085,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/ServiceAttachmentAggregatedList.php b/Compute/src/V1/ServiceAttachmentAggregatedList.php
index 37c73aa0ee49..09cd27159195 100644
--- a/Compute/src/V1/ServiceAttachmentAggregatedList.php
+++ b/Compute/src/V1/ServiceAttachmentAggregatedList.php
@@ -28,7 +28,7 @@ class ServiceAttachmentAggregatedList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -44,13 +44,13 @@ class ServiceAttachmentAggregatedList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
@@ -73,7 +73,7 @@ class ServiceAttachmentAggregatedList extends \Google\Protobuf\Internal\Message
* @type array|\Google\Protobuf\Internal\MapField $items
* A list of ServiceAttachmentsScopedList resources.
* @type string $kind
- * Type of resource.
+ * Output only. Type of resource.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -81,9 +81,9 @@ class ServiceAttachmentAggregatedList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -156,7 +156,7 @@ public function setItems($var)
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -177,7 +177,7 @@ public function clearKind()
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -236,7 +236,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -257,7 +257,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -272,7 +272,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -283,7 +283,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/ServiceAttachmentList.php b/Compute/src/V1/ServiceAttachmentList.php
index 12f9dc29d0a6..6079789a0830 100644
--- a/Compute/src/V1/ServiceAttachmentList.php
+++ b/Compute/src/V1/ServiceAttachmentList.php
@@ -27,7 +27,7 @@ class ServiceAttachmentList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of the resource. Alwayscompute#serviceAttachment for service attachments.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#serviceAttachment for service attachments.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -66,7 +66,7 @@ class ServiceAttachmentList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\ServiceAttachment>|\Google\Protobuf\Internal\RepeatedField $items
* A list of ServiceAttachment resources.
* @type string $kind
- * [Output Only] Type of the resource. Alwayscompute#serviceAttachment for service attachments.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#serviceAttachment for service attachments.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -147,7 +147,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of the resource. Alwayscompute#serviceAttachment for service attachments.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#serviceAttachment for service attachments.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -168,7 +168,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Alwayscompute#serviceAttachment for service attachments.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#serviceAttachment for service attachments.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
diff --git a/Compute/src/V1/ShieldedInstanceIdentity.php b/Compute/src/V1/ShieldedInstanceIdentity.php
index e2ad6e520392..0f2535759e0f 100644
--- a/Compute/src/V1/ShieldedInstanceIdentity.php
+++ b/Compute/src/V1/ShieldedInstanceIdentity.php
@@ -37,7 +37,7 @@ class ShieldedInstanceIdentity extends \Google\Protobuf\Internal\Message
*/
protected $encryption_key = null;
/**
- * [Output Only] Type of the resource. Alwayscompute#shieldedInstanceIdentity for shielded Instance
+ * Output only. [Output Only] Type of the resource. Alwayscompute#shieldedInstanceIdentity for shielded Instance
* identity entry.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -67,7 +67,7 @@ class ShieldedInstanceIdentity extends \Google\Protobuf\Internal\Message
* An Endorsement Key (EK) made by the RSA 2048 algorithm
* issued to the Shielded Instance's vTPM.
* @type string $kind
- * [Output Only] Type of the resource. Alwayscompute#shieldedInstanceIdentity for shielded Instance
+ * Output only. [Output Only] Type of the resource. Alwayscompute#shieldedInstanceIdentity for shielded Instance
* identity entry.
* @type \Google\Cloud\Compute\V1\ShieldedInstanceIdentityEntry $signing_key
* An Attestation Key (AK) made by the RSA 2048 algorithm
@@ -194,7 +194,7 @@ public function setEncryptionKey($var)
}
/**
- * [Output Only] Type of the resource. Alwayscompute#shieldedInstanceIdentity for shielded Instance
+ * Output only. [Output Only] Type of the resource. Alwayscompute#shieldedInstanceIdentity for shielded Instance
* identity entry.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -216,7 +216,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Alwayscompute#shieldedInstanceIdentity for shielded Instance
+ * Output only. [Output Only] Type of the resource. Alwayscompute#shieldedInstanceIdentity for shielded Instance
* identity entry.
*
* Generated from protobuf field optional string kind = 3292052;
diff --git a/Compute/src/V1/Snapshot.php b/Compute/src/V1/Snapshot.php
index 9b606febc615..7533940df3b5 100644
--- a/Compute/src/V1/Snapshot.php
+++ b/Compute/src/V1/Snapshot.php
@@ -19,7 +19,7 @@
class Snapshot extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] The architecture of the snapshot. Valid values are
+ * Output only. [Output Only] The architecture of the snapshot. Valid values are
* ARM64 or X86_64.
* Check the Architecture enum for the list of possible values.
*
@@ -27,7 +27,7 @@ class Snapshot extends \Google\Protobuf\Internal\Message
*/
protected $architecture = null;
/**
- * [Output Only] Set to true if snapshots are automatically created by
+ * Output only. [Output Only] Set to true if snapshots are automatically created by
* applying resource policy on the target disk.
*
* Generated from protobuf field optional bool auto_created = 463922264;
@@ -45,13 +45,13 @@ class Snapshot extends \Google\Protobuf\Internal\Message
*/
protected $chain_name = null;
/**
- * [Output Only] Size in bytes of the snapshot at creation time.
+ * Output only. [Output Only] Size in bytes of the snapshot at creation time.
*
* Generated from protobuf field optional int64 creation_size_bytes = 125400077;
*/
protected $creation_size_bytes = null;
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -65,19 +65,19 @@ class Snapshot extends \Google\Protobuf\Internal\Message
*/
protected $description = null;
/**
- * [Output Only] Size of the source disk, specified in GB.
+ * Output only. [Output Only] Size of the source disk, specified in GB.
*
* Generated from protobuf field optional int64 disk_size_gb = 316263735;
*/
protected $disk_size_gb = null;
/**
- * [Output Only] Number of bytes downloaded to restore a snapshot to a disk.
+ * Output only. [Output Only] Number of bytes downloaded to restore a snapshot to a disk.
*
* Generated from protobuf field optional int64 download_bytes = 435054068;
*/
protected $download_bytes = null;
/**
- * Whether this snapshot is created from a confidential compute mode disk.
+ * Output only. Whether this snapshot is created from a confidential compute mode disk.
* [Output Only]: This field is not set by user, but from source disk.
*
* Generated from protobuf field optional bool enable_confidential_compute = 102135228;
@@ -91,7 +91,7 @@ class Snapshot extends \Google\Protobuf\Internal\Message
*/
protected $guest_flush = null;
/**
- * [Output Only] A list of features to enable on the guest operating system.
+ * Output only. [Output Only] A list of features to enable on the guest operating system.
* Applicable only for bootable images. Read
* Enabling guest operating system features to see a list of available
* options.
@@ -100,14 +100,14 @@ class Snapshot extends \Google\Protobuf\Internal\Message
*/
private $guest_os_features;
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
*/
protected $id = null;
/**
- * [Output Only] Type of the resource. Always compute#snapshot
+ * Output only. [Output Only] Type of the resource. Always compute#snapshot
* for Snapshot resources.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -135,14 +135,14 @@ class Snapshot extends \Google\Protobuf\Internal\Message
*/
private $labels;
/**
- * [Output Only] Integer license codes indicating which licenses are attached
+ * Output only. [Output Only] Integer license codes indicating which licenses are attached
* to this snapshot.
*
* Generated from protobuf field repeated int64 license_codes = 45482664;
*/
private $license_codes;
/**
- * [Output Only] A list of public visible licenses that apply to this
+ * Output only. [Output Only] A list of public visible licenses that apply to this
* snapshot. This can be because the original image had licenses attached
* (such as a Windows image).
*
@@ -183,13 +183,13 @@ class Snapshot extends \Google\Protobuf\Internal\Message
*/
protected $satisfies_pzi = null;
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool satisfies_pzs = 480964267;
*/
protected $satisfies_pzs = null;
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -239,7 +239,7 @@ class Snapshot extends \Google\Protobuf\Internal\Message
*/
protected $source_disk_for_recovery_checkpoint = null;
/**
- * [Output Only] The ID value of the disk used to create this snapshot. This
+ * Output only. [Output Only] The ID value of the disk used to create this snapshot. This
* value may be used to determine whether the snapshot was taken from the
* current or a previous instance of a given disk name.
*
@@ -265,7 +265,7 @@ class Snapshot extends \Google\Protobuf\Internal\Message
*/
protected $source_instant_snapshot_encryption_key = null;
/**
- * [Output Only] The unique ID of the instant snapshot used to create this
+ * Output only. [Output Only] The unique ID of the instant snapshot used to create this
* snapshot. This value identifies the exact instant snapshot that was used to
* create this snapshot. For example, if you created the snapshot from an
* instant snapshot that was later deleted and recreated under the same name,
@@ -276,28 +276,28 @@ class Snapshot extends \Google\Protobuf\Internal\Message
*/
protected $source_instant_snapshot_id = null;
/**
- * [Output Only] URL of the resource policy which created this
+ * Output only. [Output Only] URL of the resource policy which created this
* scheduled snapshot.
*
* Generated from protobuf field optional string source_snapshot_schedule_policy = 235756291;
*/
protected $source_snapshot_schedule_policy = null;
/**
- * [Output Only] ID of the resource policy which created this
+ * Output only. [Output Only] ID of the resource policy which created this
* scheduled snapshot.
*
* Generated from protobuf field optional string source_snapshot_schedule_policy_id = 70489047;
*/
protected $source_snapshot_schedule_policy_id = null;
/**
- * [Output Only] The status of the snapshot. This can beCREATING, DELETING, FAILED,READY, or UPLOADING.
+ * Output only. [Output Only] The status of the snapshot. This can beCREATING, DELETING, FAILED,READY, or UPLOADING.
* Check the Status enum for the list of possible values.
*
* Generated from protobuf field optional string status = 181260274;
*/
protected $status = null;
/**
- * [Output Only] A size of the storage used by the snapshot. As snapshots
+ * Output only. [Output Only] A size of the storage used by the snapshot. As snapshots
* share storage, this number is expected to change with snapshot
* creation/deletion.
*
@@ -305,7 +305,7 @@ class Snapshot extends \Google\Protobuf\Internal\Message
*/
protected $storage_bytes = null;
/**
- * [Output Only] An indicator whether storageBytes is in a
+ * Output only. [Output Only] An indicator whether storageBytes is in a
* stable state or it is being adjusted as a result of shared storage
* reallocation. This status can either be UPDATING, meaning
* the size of the snapshot is being updated, or UP_TO_DATE,
@@ -330,11 +330,11 @@ class Snapshot extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $architecture
- * [Output Only] The architecture of the snapshot. Valid values are
+ * Output only. [Output Only] The architecture of the snapshot. Valid values are
* ARM64 or X86_64.
* Check the Architecture enum for the list of possible values.
* @type bool $auto_created
- * [Output Only] Set to true if snapshots are automatically created by
+ * Output only. [Output Only] Set to true if snapshots are automatically created by
* applying resource policy on the target disk.
* @type string $chain_name
* Creates the new snapshot in the snapshot chain labeled with the
@@ -344,33 +344,33 @@ class Snapshot extends \Google\Protobuf\Internal\Message
* for chargeback tracking. When you describe your snapshot resource, this
* field is visible only if it has a non-empty value.
* @type int|string $creation_size_bytes
- * [Output Only] Size in bytes of the snapshot at creation time.
+ * Output only. [Output Only] Size in bytes of the snapshot at creation time.
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $description
* An optional description of this resource. Provide this property when you
* create the resource.
* @type int|string $disk_size_gb
- * [Output Only] Size of the source disk, specified in GB.
+ * Output only. [Output Only] Size of the source disk, specified in GB.
* @type int|string $download_bytes
- * [Output Only] Number of bytes downloaded to restore a snapshot to a disk.
+ * Output only. [Output Only] Number of bytes downloaded to restore a snapshot to a disk.
* @type bool $enable_confidential_compute
- * Whether this snapshot is created from a confidential compute mode disk.
+ * Output only. Whether this snapshot is created from a confidential compute mode disk.
* [Output Only]: This field is not set by user, but from source disk.
* @type bool $guest_flush
* [Input Only] Whether to attempt an application consistent snapshot by
* informing the OS to prepare for the snapshot process.
* @type array<\Google\Cloud\Compute\V1\GuestOsFeature>|\Google\Protobuf\Internal\RepeatedField $guest_os_features
- * [Output Only] A list of features to enable on the guest operating system.
+ * Output only. [Output Only] A list of features to enable on the guest operating system.
* Applicable only for bootable images. Read
* Enabling guest operating system features to see a list of available
* options.
* @type int|string $id
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type string $kind
- * [Output Only] Type of the resource. Always compute#snapshot
+ * Output only. [Output Only] Type of the resource. Always compute#snapshot
* for Snapshot resources.
* @type string $label_fingerprint
* A fingerprint for the labels being applied to this snapshot, which is
@@ -386,10 +386,10 @@ class Snapshot extends \Google\Protobuf\Internal\Message
* the setLabels method.
* Label values may be empty.
* @type array|array|\Google\Protobuf\Internal\RepeatedField $license_codes
- * [Output Only] Integer license codes indicating which licenses are attached
+ * Output only. [Output Only] Integer license codes indicating which licenses are attached
* to this snapshot.
* @type array|\Google\Protobuf\Internal\RepeatedField $licenses
- * [Output Only] A list of public visible licenses that apply to this
+ * Output only. [Output Only] A list of public visible licenses that apply to this
* snapshot. This can be because the original image had licenses attached
* (such as a Windows image).
* @type string $location_hint
@@ -410,9 +410,9 @@ class Snapshot extends \Google\Protobuf\Internal\Message
* @type bool $satisfies_pzi
* Output only. Reserved for future use.
* @type bool $satisfies_pzs
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
* @type string $self_link
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
* @type \Google\Cloud\Compute\V1\CustomerEncryptionKey $snapshot_encryption_key
* Encrypts the snapshot using acustomer-supplied
* encryption key.
@@ -438,7 +438,7 @@ class Snapshot extends \Google\Protobuf\Internal\Message
* The source disk whose recovery checkpoint will be used to create this
* snapshot.
* @type string $source_disk_id
- * [Output Only] The ID value of the disk used to create this snapshot. This
+ * Output only. [Output Only] The ID value of the disk used to create this snapshot. This
* value may be used to determine whether the snapshot was taken from the
* current or a previous instance of a given disk name.
* @type string $source_instant_snapshot
@@ -452,27 +452,27 @@ class Snapshot extends \Google\Protobuf\Internal\Message
* Customer provided encryption key when creating Snapshot from Instant
* Snapshot.
* @type string $source_instant_snapshot_id
- * [Output Only] The unique ID of the instant snapshot used to create this
+ * Output only. [Output Only] The unique ID of the instant snapshot used to create this
* snapshot. This value identifies the exact instant snapshot that was used to
* create this snapshot. For example, if you created the snapshot from an
* instant snapshot that was later deleted and recreated under the same name,
* the source instant snapshot ID would identify the exact instant snapshot
* that was used.
* @type string $source_snapshot_schedule_policy
- * [Output Only] URL of the resource policy which created this
+ * Output only. [Output Only] URL of the resource policy which created this
* scheduled snapshot.
* @type string $source_snapshot_schedule_policy_id
- * [Output Only] ID of the resource policy which created this
+ * Output only. [Output Only] ID of the resource policy which created this
* scheduled snapshot.
* @type string $status
- * [Output Only] The status of the snapshot. This can beCREATING, DELETING, FAILED,READY, or UPLOADING.
+ * Output only. [Output Only] The status of the snapshot. This can beCREATING, DELETING, FAILED,READY, or UPLOADING.
* Check the Status enum for the list of possible values.
* @type int|string $storage_bytes
- * [Output Only] A size of the storage used by the snapshot. As snapshots
+ * Output only. [Output Only] A size of the storage used by the snapshot. As snapshots
* share storage, this number is expected to change with snapshot
* creation/deletion.
* @type string $storage_bytes_status
- * [Output Only] An indicator whether storageBytes is in a
+ * Output only. [Output Only] An indicator whether storageBytes is in a
* stable state or it is being adjusted as a result of shared storage
* reallocation. This status can either be UPDATING, meaning
* the size of the snapshot is being updated, or UP_TO_DATE,
@@ -489,7 +489,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] The architecture of the snapshot. Valid values are
+ * Output only. [Output Only] The architecture of the snapshot. Valid values are
* ARM64 or X86_64.
* Check the Architecture enum for the list of possible values.
*
@@ -512,7 +512,7 @@ public function clearArchitecture()
}
/**
- * [Output Only] The architecture of the snapshot. Valid values are
+ * Output only. [Output Only] The architecture of the snapshot. Valid values are
* ARM64 or X86_64.
* Check the Architecture enum for the list of possible values.
*
@@ -529,7 +529,7 @@ public function setArchitecture($var)
}
/**
- * [Output Only] Set to true if snapshots are automatically created by
+ * Output only. [Output Only] Set to true if snapshots are automatically created by
* applying resource policy on the target disk.
*
* Generated from protobuf field optional bool auto_created = 463922264;
@@ -551,7 +551,7 @@ public function clearAutoCreated()
}
/**
- * [Output Only] Set to true if snapshots are automatically created by
+ * Output only. [Output Only] Set to true if snapshots are automatically created by
* applying resource policy on the target disk.
*
* Generated from protobuf field optional bool auto_created = 463922264;
@@ -613,7 +613,7 @@ public function setChainName($var)
}
/**
- * [Output Only] Size in bytes of the snapshot at creation time.
+ * Output only. [Output Only] Size in bytes of the snapshot at creation time.
*
* Generated from protobuf field optional int64 creation_size_bytes = 125400077;
* @return int|string
@@ -634,7 +634,7 @@ public function clearCreationSizeBytes()
}
/**
- * [Output Only] Size in bytes of the snapshot at creation time.
+ * Output only. [Output Only] Size in bytes of the snapshot at creation time.
*
* Generated from protobuf field optional int64 creation_size_bytes = 125400077;
* @param int|string $var
@@ -649,7 +649,7 @@ public function setCreationSizeBytes($var)
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -671,7 +671,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -725,7 +725,7 @@ public function setDescription($var)
}
/**
- * [Output Only] Size of the source disk, specified in GB.
+ * Output only. [Output Only] Size of the source disk, specified in GB.
*
* Generated from protobuf field optional int64 disk_size_gb = 316263735;
* @return int|string
@@ -746,7 +746,7 @@ public function clearDiskSizeGb()
}
/**
- * [Output Only] Size of the source disk, specified in GB.
+ * Output only. [Output Only] Size of the source disk, specified in GB.
*
* Generated from protobuf field optional int64 disk_size_gb = 316263735;
* @param int|string $var
@@ -761,7 +761,7 @@ public function setDiskSizeGb($var)
}
/**
- * [Output Only] Number of bytes downloaded to restore a snapshot to a disk.
+ * Output only. [Output Only] Number of bytes downloaded to restore a snapshot to a disk.
*
* Generated from protobuf field optional int64 download_bytes = 435054068;
* @return int|string
@@ -782,7 +782,7 @@ public function clearDownloadBytes()
}
/**
- * [Output Only] Number of bytes downloaded to restore a snapshot to a disk.
+ * Output only. [Output Only] Number of bytes downloaded to restore a snapshot to a disk.
*
* Generated from protobuf field optional int64 download_bytes = 435054068;
* @param int|string $var
@@ -797,7 +797,7 @@ public function setDownloadBytes($var)
}
/**
- * Whether this snapshot is created from a confidential compute mode disk.
+ * Output only. Whether this snapshot is created from a confidential compute mode disk.
* [Output Only]: This field is not set by user, but from source disk.
*
* Generated from protobuf field optional bool enable_confidential_compute = 102135228;
@@ -819,7 +819,7 @@ public function clearEnableConfidentialCompute()
}
/**
- * Whether this snapshot is created from a confidential compute mode disk.
+ * Output only. Whether this snapshot is created from a confidential compute mode disk.
* [Output Only]: This field is not set by user, but from source disk.
*
* Generated from protobuf field optional bool enable_confidential_compute = 102135228;
@@ -873,7 +873,7 @@ public function setGuestFlush($var)
}
/**
- * [Output Only] A list of features to enable on the guest operating system.
+ * Output only. [Output Only] A list of features to enable on the guest operating system.
* Applicable only for bootable images. Read
* Enabling guest operating system features to see a list of available
* options.
@@ -887,7 +887,7 @@ public function getGuestOsFeatures()
}
/**
- * [Output Only] A list of features to enable on the guest operating system.
+ * Output only. [Output Only] A list of features to enable on the guest operating system.
* Applicable only for bootable images. Read
* Enabling guest operating system features to see a list of available
* options.
@@ -905,7 +905,7 @@ public function setGuestOsFeatures($var)
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -927,7 +927,7 @@ public function clearId()
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -943,7 +943,7 @@ public function setId($var)
}
/**
- * [Output Only] Type of the resource. Always compute#snapshot
+ * Output only. [Output Only] Type of the resource. Always compute#snapshot
* for Snapshot resources.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -965,7 +965,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Always compute#snapshot
+ * Output only. [Output Only] Type of the resource. Always compute#snapshot
* for Snapshot resources.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -1061,7 +1061,7 @@ public function setLabels($var)
}
/**
- * [Output Only] Integer license codes indicating which licenses are attached
+ * Output only. [Output Only] Integer license codes indicating which licenses are attached
* to this snapshot.
*
* Generated from protobuf field repeated int64 license_codes = 45482664;
@@ -1073,7 +1073,7 @@ public function getLicenseCodes()
}
/**
- * [Output Only] Integer license codes indicating which licenses are attached
+ * Output only. [Output Only] Integer license codes indicating which licenses are attached
* to this snapshot.
*
* Generated from protobuf field repeated int64 license_codes = 45482664;
@@ -1089,7 +1089,7 @@ public function setLicenseCodes($var)
}
/**
- * [Output Only] A list of public visible licenses that apply to this
+ * Output only. [Output Only] A list of public visible licenses that apply to this
* snapshot. This can be because the original image had licenses attached
* (such as a Windows image).
*
@@ -1102,7 +1102,7 @@ public function getLicenses()
}
/**
- * [Output Only] A list of public visible licenses that apply to this
+ * Output only. [Output Only] A list of public visible licenses that apply to this
* snapshot. This can be because the original image had licenses attached
* (such as a Windows image).
*
@@ -1281,7 +1281,7 @@ public function setSatisfiesPzi($var)
}
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool satisfies_pzs = 480964267;
* @return bool
@@ -1302,7 +1302,7 @@ public function clearSatisfiesPzs()
}
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool satisfies_pzs = 480964267;
* @param bool $var
@@ -1317,7 +1317,7 @@ public function setSatisfiesPzs($var)
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -1338,7 +1338,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -1561,7 +1561,7 @@ public function setSourceDiskForRecoveryCheckpoint($var)
}
/**
- * [Output Only] The ID value of the disk used to create this snapshot. This
+ * Output only. [Output Only] The ID value of the disk used to create this snapshot. This
* value may be used to determine whether the snapshot was taken from the
* current or a previous instance of a given disk name.
*
@@ -1584,7 +1584,7 @@ public function clearSourceDiskId()
}
/**
- * [Output Only] The ID value of the disk used to create this snapshot. This
+ * Output only. [Output Only] The ID value of the disk used to create this snapshot. This
* value may be used to determine whether the snapshot was taken from the
* current or a previous instance of a given disk name.
*
@@ -1685,7 +1685,7 @@ public function setSourceInstantSnapshotEncryptionKey($var)
}
/**
- * [Output Only] The unique ID of the instant snapshot used to create this
+ * Output only. [Output Only] The unique ID of the instant snapshot used to create this
* snapshot. This value identifies the exact instant snapshot that was used to
* create this snapshot. For example, if you created the snapshot from an
* instant snapshot that was later deleted and recreated under the same name,
@@ -1711,7 +1711,7 @@ public function clearSourceInstantSnapshotId()
}
/**
- * [Output Only] The unique ID of the instant snapshot used to create this
+ * Output only. [Output Only] The unique ID of the instant snapshot used to create this
* snapshot. This value identifies the exact instant snapshot that was used to
* create this snapshot. For example, if you created the snapshot from an
* instant snapshot that was later deleted and recreated under the same name,
@@ -1731,7 +1731,7 @@ public function setSourceInstantSnapshotId($var)
}
/**
- * [Output Only] URL of the resource policy which created this
+ * Output only. [Output Only] URL of the resource policy which created this
* scheduled snapshot.
*
* Generated from protobuf field optional string source_snapshot_schedule_policy = 235756291;
@@ -1753,7 +1753,7 @@ public function clearSourceSnapshotSchedulePolicy()
}
/**
- * [Output Only] URL of the resource policy which created this
+ * Output only. [Output Only] URL of the resource policy which created this
* scheduled snapshot.
*
* Generated from protobuf field optional string source_snapshot_schedule_policy = 235756291;
@@ -1769,7 +1769,7 @@ public function setSourceSnapshotSchedulePolicy($var)
}
/**
- * [Output Only] ID of the resource policy which created this
+ * Output only. [Output Only] ID of the resource policy which created this
* scheduled snapshot.
*
* Generated from protobuf field optional string source_snapshot_schedule_policy_id = 70489047;
@@ -1791,7 +1791,7 @@ public function clearSourceSnapshotSchedulePolicyId()
}
/**
- * [Output Only] ID of the resource policy which created this
+ * Output only. [Output Only] ID of the resource policy which created this
* scheduled snapshot.
*
* Generated from protobuf field optional string source_snapshot_schedule_policy_id = 70489047;
@@ -1807,7 +1807,7 @@ public function setSourceSnapshotSchedulePolicyId($var)
}
/**
- * [Output Only] The status of the snapshot. This can beCREATING, DELETING, FAILED,READY, or UPLOADING.
+ * Output only. [Output Only] The status of the snapshot. This can beCREATING, DELETING, FAILED,READY, or UPLOADING.
* Check the Status enum for the list of possible values.
*
* Generated from protobuf field optional string status = 181260274;
@@ -1829,7 +1829,7 @@ public function clearStatus()
}
/**
- * [Output Only] The status of the snapshot. This can beCREATING, DELETING, FAILED,READY, or UPLOADING.
+ * Output only. [Output Only] The status of the snapshot. This can beCREATING, DELETING, FAILED,READY, or UPLOADING.
* Check the Status enum for the list of possible values.
*
* Generated from protobuf field optional string status = 181260274;
@@ -1845,7 +1845,7 @@ public function setStatus($var)
}
/**
- * [Output Only] A size of the storage used by the snapshot. As snapshots
+ * Output only. [Output Only] A size of the storage used by the snapshot. As snapshots
* share storage, this number is expected to change with snapshot
* creation/deletion.
*
@@ -1868,7 +1868,7 @@ public function clearStorageBytes()
}
/**
- * [Output Only] A size of the storage used by the snapshot. As snapshots
+ * Output only. [Output Only] A size of the storage used by the snapshot. As snapshots
* share storage, this number is expected to change with snapshot
* creation/deletion.
*
@@ -1885,7 +1885,7 @@ public function setStorageBytes($var)
}
/**
- * [Output Only] An indicator whether storageBytes is in a
+ * Output only. [Output Only] An indicator whether storageBytes is in a
* stable state or it is being adjusted as a result of shared storage
* reallocation. This status can either be UPDATING, meaning
* the size of the snapshot is being updated, or UP_TO_DATE,
@@ -1911,7 +1911,7 @@ public function clearStorageBytesStatus()
}
/**
- * [Output Only] An indicator whether storageBytes is in a
+ * Output only. [Output Only] An indicator whether storageBytes is in a
* stable state or it is being adjusted as a result of shared storage
* reallocation. This status can either be UPDATING, meaning
* the size of the snapshot is being updated, or UP_TO_DATE,
diff --git a/Compute/src/V1/Snapshot/Architecture.php b/Compute/src/V1/Snapshot/Architecture.php
index 299690d80043..b16f2c5d3787 100644
--- a/Compute/src/V1/Snapshot/Architecture.php
+++ b/Compute/src/V1/Snapshot/Architecture.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] The architecture of the snapshot. Valid values are
+ * Output only. [Output Only] The architecture of the snapshot. Valid values are
* ARM64 or X86_64.
*
* Protobuf type google.cloud.compute.v1.Snapshot.Architecture
diff --git a/Compute/src/V1/Snapshot/Status.php b/Compute/src/V1/Snapshot/Status.php
index c4d51a32ac01..3fec3d1cae2f 100644
--- a/Compute/src/V1/Snapshot/Status.php
+++ b/Compute/src/V1/Snapshot/Status.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] The status of the snapshot. This can beCREATING, DELETING, FAILED,READY, or UPLOADING.
+ * Output only. [Output Only] The status of the snapshot. This can beCREATING, DELETING, FAILED,READY, or UPLOADING.
*
* Protobuf type google.cloud.compute.v1.Snapshot.Status
*/
diff --git a/Compute/src/V1/Snapshot/StorageBytesStatus.php b/Compute/src/V1/Snapshot/StorageBytesStatus.php
index 3c0bb8d93af3..fee1a5f9dadd 100644
--- a/Compute/src/V1/Snapshot/StorageBytesStatus.php
+++ b/Compute/src/V1/Snapshot/StorageBytesStatus.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] An indicator whether storageBytes is in a
+ * Output only. [Output Only] An indicator whether storageBytes is in a
* stable state or it is being adjusted as a result of shared storage
* reallocation. This status can either be UPDATING, meaning
* the size of the snapshot is being updated, or UP_TO_DATE,
diff --git a/Compute/src/V1/SnapshotList.php b/Compute/src/V1/SnapshotList.php
index b1ddd49a7086..c8cc0e58f73c 100644
--- a/Compute/src/V1/SnapshotList.php
+++ b/Compute/src/V1/SnapshotList.php
@@ -28,7 +28,7 @@ class SnapshotList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -44,7 +44,7 @@ class SnapshotList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -67,7 +67,7 @@ class SnapshotList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\Snapshot>|\Google\Protobuf\Internal\RepeatedField $items
* A list of Snapshot resources.
* @type string $kind
- * Type of resource.
+ * Output only. Type of resource.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -75,7 +75,7 @@ class SnapshotList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -148,7 +148,7 @@ public function setItems($var)
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -169,7 +169,7 @@ public function clearKind()
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -228,7 +228,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -249,7 +249,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/SnapshotParams.php b/Compute/src/V1/SnapshotParams.php
index eab87e6dde2b..50a784255a44 100644
--- a/Compute/src/V1/SnapshotParams.php
+++ b/Compute/src/V1/SnapshotParams.php
@@ -18,8 +18,10 @@ class SnapshotParams extends \Google\Protobuf\Internal\Message
/**
* Resource manager tags to be bound to the snapshot. Tag keys and values have
* the same definition as resource
- * manager tags. Keys must be in the format `tagKeys/{tag_key_id}`, and
- * values are in the format `tagValues/456`. The field is ignored (both PUT &
+ * manager tags. Keys and values can be either in numeric format,
+ * such as `tagKeys/{tag_key_id}` and `tagValues/456` or in namespaced
+ * format such as `{org_id|project_id}/{tag_key_short_name}` and
+ * `{tag_value_short_name}`. The field is ignored (both PUT &
* PATCH) when empty.
*
* Generated from protobuf field map resource_manager_tags = 377671164;
@@ -35,8 +37,10 @@ class SnapshotParams extends \Google\Protobuf\Internal\Message
* @type array|\Google\Protobuf\Internal\MapField $resource_manager_tags
* Resource manager tags to be bound to the snapshot. Tag keys and values have
* the same definition as resource
- * manager tags. Keys must be in the format `tagKeys/{tag_key_id}`, and
- * values are in the format `tagValues/456`. The field is ignored (both PUT &
+ * manager tags. Keys and values can be either in numeric format,
+ * such as `tagKeys/{tag_key_id}` and `tagValues/456` or in namespaced
+ * format such as `{org_id|project_id}/{tag_key_short_name}` and
+ * `{tag_value_short_name}`. The field is ignored (both PUT &
* PATCH) when empty.
* }
*/
@@ -48,8 +52,10 @@ public function __construct($data = NULL) {
/**
* Resource manager tags to be bound to the snapshot. Tag keys and values have
* the same definition as resource
- * manager tags. Keys must be in the format `tagKeys/{tag_key_id}`, and
- * values are in the format `tagValues/456`. The field is ignored (both PUT &
+ * manager tags. Keys and values can be either in numeric format,
+ * such as `tagKeys/{tag_key_id}` and `tagValues/456` or in namespaced
+ * format such as `{org_id|project_id}/{tag_key_short_name}` and
+ * `{tag_value_short_name}`. The field is ignored (both PUT &
* PATCH) when empty.
*
* Generated from protobuf field map resource_manager_tags = 377671164;
@@ -63,8 +69,10 @@ public function getResourceManagerTags()
/**
* Resource manager tags to be bound to the snapshot. Tag keys and values have
* the same definition as resource
- * manager tags. Keys must be in the format `tagKeys/{tag_key_id}`, and
- * values are in the format `tagValues/456`. The field is ignored (both PUT &
+ * manager tags. Keys and values can be either in numeric format,
+ * such as `tagKeys/{tag_key_id}` and `tagValues/456` or in namespaced
+ * format such as `{org_id|project_id}/{tag_key_short_name}` and
+ * `{tag_value_short_name}`. The field is ignored (both PUT &
* PATCH) when empty.
*
* Generated from protobuf field map resource_manager_tags = 377671164;
diff --git a/Compute/src/V1/SslCertificate.php b/Compute/src/V1/SslCertificate.php
index 6b3a379d5f5c..f3fcda4f5b65 100644
--- a/Compute/src/V1/SslCertificate.php
+++ b/Compute/src/V1/SslCertificate.php
@@ -58,7 +58,7 @@ class SslCertificate extends \Google\Protobuf\Internal\Message
*/
protected $description = null;
/**
- * [Output Only] Expire time of the certificate. RFC3339
+ * Output only. [Output Only] Expire time of the certificate. RFC3339
*
* Generated from protobuf field optional string expire_time = 440691181;
*/
@@ -71,7 +71,7 @@ class SslCertificate extends \Google\Protobuf\Internal\Message
*/
protected $id = null;
/**
- * [Output Only] Type of the resource. Alwayscompute#sslCertificate for SSL certificates.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#sslCertificate for SSL certificates.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -103,7 +103,7 @@ class SslCertificate extends \Google\Protobuf\Internal\Message
*/
protected $private_key = null;
/**
- * [Output Only] URL of the region where the regional SSL Certificate
+ * Output only. [Output Only] URL of the region where the regional SSL Certificate
* resides. This field is not applicable to global SSL Certificate.
*
* Generated from protobuf field optional string region = 138946292;
@@ -122,7 +122,7 @@ class SslCertificate extends \Google\Protobuf\Internal\Message
*/
protected $self_managed = null;
/**
- * [Output Only] Domains associated with the certificate via Subject
+ * Output only. [Output Only] Domains associated with the certificate via Subject
* Alternative Name.
*
* Generated from protobuf field repeated string subject_alternative_names = 528807907;
@@ -154,12 +154,12 @@ class SslCertificate extends \Google\Protobuf\Internal\Message
* An optional description of this resource. Provide this property when you
* create the resource.
* @type string $expire_time
- * [Output Only] Expire time of the certificate. RFC3339
+ * Output only. [Output Only] Expire time of the certificate. RFC3339
* @type int|string $id
* [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type string $kind
- * [Output Only] Type of the resource. Alwayscompute#sslCertificate for SSL certificates.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#sslCertificate for SSL certificates.
* @type \Google\Cloud\Compute\V1\SslCertificateManagedSslCertificate $managed
* Configuration and status of a managed SSL certificate.
* @type string $name
@@ -175,14 +175,14 @@ class SslCertificate extends \Google\Protobuf\Internal\Message
* key file must be in PEM format. For security, only insert
* requests include this field.
* @type string $region
- * [Output Only] URL of the region where the regional SSL Certificate
+ * Output only. [Output Only] URL of the region where the regional SSL Certificate
* resides. This field is not applicable to global SSL Certificate.
* @type string $self_link
* [Output only] Server-defined URL for the resource.
* @type \Google\Cloud\Compute\V1\SslCertificateSelfManagedSslCertificate $self_managed
* Configuration and status of a self-managed SSL certificate.
* @type array|\Google\Protobuf\Internal\RepeatedField $subject_alternative_names
- * [Output Only] Domains associated with the certificate via Subject
+ * Output only. [Output Only] Domains associated with the certificate via Subject
* Alternative Name.
* @type string $type
* (Optional) Specifies the type of SSL certificate, either "SELF_MANAGED" or
@@ -312,7 +312,7 @@ public function setDescription($var)
}
/**
- * [Output Only] Expire time of the certificate. RFC3339
+ * Output only. [Output Only] Expire time of the certificate. RFC3339
*
* Generated from protobuf field optional string expire_time = 440691181;
* @return string
@@ -333,7 +333,7 @@ public function clearExpireTime()
}
/**
- * [Output Only] Expire time of the certificate. RFC3339
+ * Output only. [Output Only] Expire time of the certificate. RFC3339
*
* Generated from protobuf field optional string expire_time = 440691181;
* @param string $var
@@ -386,7 +386,7 @@ public function setId($var)
}
/**
- * [Output Only] Type of the resource. Alwayscompute#sslCertificate for SSL certificates.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#sslCertificate for SSL certificates.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -407,7 +407,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Alwayscompute#sslCertificate for SSL certificates.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#sslCertificate for SSL certificates.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -546,7 +546,7 @@ public function setPrivateKey($var)
}
/**
- * [Output Only] URL of the region where the regional SSL Certificate
+ * Output only. [Output Only] URL of the region where the regional SSL Certificate
* resides. This field is not applicable to global SSL Certificate.
*
* Generated from protobuf field optional string region = 138946292;
@@ -568,7 +568,7 @@ public function clearRegion()
}
/**
- * [Output Only] URL of the region where the regional SSL Certificate
+ * Output only. [Output Only] URL of the region where the regional SSL Certificate
* resides. This field is not applicable to global SSL Certificate.
*
* Generated from protobuf field optional string region = 138946292;
@@ -656,7 +656,7 @@ public function setSelfManaged($var)
}
/**
- * [Output Only] Domains associated with the certificate via Subject
+ * Output only. [Output Only] Domains associated with the certificate via Subject
* Alternative Name.
*
* Generated from protobuf field repeated string subject_alternative_names = 528807907;
@@ -668,7 +668,7 @@ public function getSubjectAlternativeNames()
}
/**
- * [Output Only] Domains associated with the certificate via Subject
+ * Output only. [Output Only] Domains associated with the certificate via Subject
* Alternative Name.
*
* Generated from protobuf field repeated string subject_alternative_names = 528807907;
diff --git a/Compute/src/V1/SslCertificateAggregatedList.php b/Compute/src/V1/SslCertificateAggregatedList.php
index 4bcb5837a813..76d2021091ea 100644
--- a/Compute/src/V1/SslCertificateAggregatedList.php
+++ b/Compute/src/V1/SslCertificateAggregatedList.php
@@ -27,7 +27,7 @@ class SslCertificateAggregatedList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Alwayscompute#sslCertificateAggregatedList for lists of SSL
+ * Output only. [Output Only] Type of resource. Alwayscompute#sslCertificateAggregatedList for lists of SSL
* Certificates.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -44,13 +44,13 @@ class SslCertificateAggregatedList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
@@ -73,7 +73,7 @@ class SslCertificateAggregatedList extends \Google\Protobuf\Internal\Message
* @type array|\Google\Protobuf\Internal\MapField $items
* A list of SslCertificatesScopedList resources.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#sslCertificateAggregatedList for lists of SSL
+ * Output only. [Output Only] Type of resource. Alwayscompute#sslCertificateAggregatedList for lists of SSL
* Certificates.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -82,9 +82,9 @@ class SslCertificateAggregatedList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -157,7 +157,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#sslCertificateAggregatedList for lists of SSL
+ * Output only. [Output Only] Type of resource. Alwayscompute#sslCertificateAggregatedList for lists of SSL
* Certificates.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -179,7 +179,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#sslCertificateAggregatedList for lists of SSL
+ * Output only. [Output Only] Type of resource. Alwayscompute#sslCertificateAggregatedList for lists of SSL
* Certificates.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -239,7 +239,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -260,7 +260,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -275,7 +275,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -286,7 +286,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/SslCertificateList.php b/Compute/src/V1/SslCertificateList.php
index 048d4478e57c..f99ce48ec8bc 100644
--- a/Compute/src/V1/SslCertificateList.php
+++ b/Compute/src/V1/SslCertificateList.php
@@ -28,7 +28,7 @@ class SslCertificateList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -44,7 +44,7 @@ class SslCertificateList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -67,7 +67,7 @@ class SslCertificateList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\SslCertificate>|\Google\Protobuf\Internal\RepeatedField $items
* A list of SslCertificate resources.
* @type string $kind
- * Type of resource.
+ * Output only. Type of resource.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -75,7 +75,7 @@ class SslCertificateList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -148,7 +148,7 @@ public function setItems($var)
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -169,7 +169,7 @@ public function clearKind()
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -228,7 +228,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -249,7 +249,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/SslCertificateManagedSslCertificate.php b/Compute/src/V1/SslCertificateManagedSslCertificate.php
index 570074b38540..a1cfb6b7fd7f 100644
--- a/Compute/src/V1/SslCertificateManagedSslCertificate.php
+++ b/Compute/src/V1/SslCertificateManagedSslCertificate.php
@@ -16,7 +16,7 @@
class SslCertificateManagedSslCertificate extends \Google\Protobuf\Internal\Message
{
/**
- * [Output only] Detailed statuses of the domains specified for managed
+ * Output only. [Output only] Detailed statuses of the domains specified for managed
* certificate resource.
*
* Generated from protobuf field map domain_status = 360305613;
@@ -32,7 +32,7 @@ class SslCertificateManagedSslCertificate extends \Google\Protobuf\Internal\Mess
*/
private $domains;
/**
- * [Output only] Status of the managed certificate resource.
+ * Output only. [Output only] Status of the managed certificate resource.
* Check the Status enum for the list of possible values.
*
* Generated from protobuf field optional string status = 181260274;
@@ -46,7 +46,7 @@ class SslCertificateManagedSslCertificate extends \Google\Protobuf\Internal\Mess
* Optional. Data for populating the Message object.
*
* @type array|\Google\Protobuf\Internal\MapField $domain_status
- * [Output only] Detailed statuses of the domains specified for managed
+ * Output only. [Output only] Detailed statuses of the domains specified for managed
* certificate resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $domains
* The domains for which a managed SSL certificate will be generated. Each
@@ -54,7 +54,7 @@ class SslCertificateManagedSslCertificate extends \Google\Protobuf\Internal\Mess
* domains per Google-managed SSL
* certificate](/load-balancing/docs/quotas#ssl_certificates).
* @type string $status
- * [Output only] Status of the managed certificate resource.
+ * Output only. [Output only] Status of the managed certificate resource.
* Check the Status enum for the list of possible values.
* }
*/
@@ -64,7 +64,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output only] Detailed statuses of the domains specified for managed
+ * Output only. [Output only] Detailed statuses of the domains specified for managed
* certificate resource.
*
* Generated from protobuf field map domain_status = 360305613;
@@ -76,7 +76,7 @@ public function getDomainStatus()
}
/**
- * [Output only] Detailed statuses of the domains specified for managed
+ * Output only. [Output only] Detailed statuses of the domains specified for managed
* certificate resource.
*
* Generated from protobuf field map domain_status = 360305613;
@@ -124,7 +124,7 @@ public function setDomains($var)
}
/**
- * [Output only] Status of the managed certificate resource.
+ * Output only. [Output only] Status of the managed certificate resource.
* Check the Status enum for the list of possible values.
*
* Generated from protobuf field optional string status = 181260274;
@@ -146,7 +146,7 @@ public function clearStatus()
}
/**
- * [Output only] Status of the managed certificate resource.
+ * Output only. [Output only] Status of the managed certificate resource.
* Check the Status enum for the list of possible values.
*
* Generated from protobuf field optional string status = 181260274;
diff --git a/Compute/src/V1/SslCertificateManagedSslCertificate/Status.php b/Compute/src/V1/SslCertificateManagedSslCertificate/Status.php
index 49226ee7647d..f267a32a517b 100644
--- a/Compute/src/V1/SslCertificateManagedSslCertificate/Status.php
+++ b/Compute/src/V1/SslCertificateManagedSslCertificate/Status.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output only] Status of the managed certificate resource.
+ * Output only. [Output only] Status of the managed certificate resource.
*
* Protobuf type google.cloud.compute.v1.SslCertificateManagedSslCertificate.Status
*/
diff --git a/Compute/src/V1/SslPoliciesAggregatedList.php b/Compute/src/V1/SslPoliciesAggregatedList.php
index 71fde56bb3af..90f085bbebe1 100644
--- a/Compute/src/V1/SslPoliciesAggregatedList.php
+++ b/Compute/src/V1/SslPoliciesAggregatedList.php
@@ -31,7 +31,7 @@ class SslPoliciesAggregatedList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Alwayscompute#sslPolicyAggregatedList for lists of SSL Policies.
+ * Output only. [Output Only] Type of resource. Alwayscompute#sslPolicyAggregatedList for lists of SSL Policies.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -47,13 +47,13 @@ class SslPoliciesAggregatedList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
@@ -77,7 +77,7 @@ class SslPoliciesAggregatedList extends \Google\Protobuf\Internal\Message
* @type array|\Google\Protobuf\Internal\MapField $items
* A list of SslPoliciesScopedList resources.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#sslPolicyAggregatedList for lists of SSL Policies.
+ * Output only. [Output Only] Type of resource. Alwayscompute#sslPolicyAggregatedList for lists of SSL Policies.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -85,9 +85,9 @@ class SslPoliciesAggregatedList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -192,7 +192,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#sslPolicyAggregatedList for lists of SSL Policies.
+ * Output only. [Output Only] Type of resource. Alwayscompute#sslPolicyAggregatedList for lists of SSL Policies.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -213,7 +213,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#sslPolicyAggregatedList for lists of SSL Policies.
+ * Output only. [Output Only] Type of resource. Alwayscompute#sslPolicyAggregatedList for lists of SSL Policies.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -272,7 +272,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -293,7 +293,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -308,7 +308,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -319,7 +319,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/SslPoliciesList.php b/Compute/src/V1/SslPoliciesList.php
index cf21263321fc..cf89450e7e39 100644
--- a/Compute/src/V1/SslPoliciesList.php
+++ b/Compute/src/V1/SslPoliciesList.php
@@ -15,25 +15,25 @@
class SslPoliciesList extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
*
* Generated from protobuf field optional string id = 3355;
*/
protected $id = null;
/**
- * A list of SslPolicy resources.
+ * Output only. A list of SslPolicy resources.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.SslPolicy items = 100526016;
*/
private $items;
/**
- * [Output Only] Type of the resource. Alwayscompute#sslPoliciesList for lists of sslPolicies.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#sslPoliciesList for lists of sslPolicies.
*
* Generated from protobuf field optional string kind = 3292052;
*/
protected $kind = null;
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -43,7 +43,7 @@ class SslPoliciesList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -62,19 +62,19 @@ class SslPoliciesList extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $id
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
* @type array<\Google\Cloud\Compute\V1\SslPolicy>|\Google\Protobuf\Internal\RepeatedField $items
- * A list of SslPolicy resources.
+ * Output only. A list of SslPolicy resources.
* @type string $kind
- * [Output Only] Type of the resource. Alwayscompute#sslPoliciesList for lists of sslPolicies.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#sslPoliciesList for lists of sslPolicies.
* @type string $next_page_token
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -85,7 +85,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
*
* Generated from protobuf field optional string id = 3355;
* @return string
@@ -106,7 +106,7 @@ public function clearId()
}
/**
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
*
* Generated from protobuf field optional string id = 3355;
* @param string $var
@@ -121,7 +121,7 @@ public function setId($var)
}
/**
- * A list of SslPolicy resources.
+ * Output only. A list of SslPolicy resources.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.SslPolicy items = 100526016;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -132,7 +132,7 @@ public function getItems()
}
/**
- * A list of SslPolicy resources.
+ * Output only. A list of SslPolicy resources.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.SslPolicy items = 100526016;
* @param array<\Google\Cloud\Compute\V1\SslPolicy>|\Google\Protobuf\Internal\RepeatedField $var
@@ -147,7 +147,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of the resource. Alwayscompute#sslPoliciesList for lists of sslPolicies.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#sslPoliciesList for lists of sslPolicies.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -168,7 +168,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Alwayscompute#sslPoliciesList for lists of sslPolicies.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#sslPoliciesList for lists of sslPolicies.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -183,7 +183,7 @@ public function setKind($var)
}
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -208,7 +208,7 @@ public function clearNextPageToken()
}
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -227,7 +227,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -248,7 +248,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/SslPolicy.php b/Compute/src/V1/SslPolicy.php
index 39959fadbeb4..4b9a9165481b 100644
--- a/Compute/src/V1/SslPolicy.php
+++ b/Compute/src/V1/SslPolicy.php
@@ -20,7 +20,7 @@
class SslPolicy extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -42,7 +42,7 @@ class SslPolicy extends \Google\Protobuf\Internal\Message
*/
protected $description = null;
/**
- * [Output Only] The list of features enabled in the SSL policy.
+ * Output only. [Output Only] The list of features enabled in the SSL policy.
*
* Generated from protobuf field repeated string enabled_features = 469017467;
*/
@@ -60,14 +60,14 @@ class SslPolicy extends \Google\Protobuf\Internal\Message
*/
protected $fingerprint = null;
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
*/
protected $id = null;
/**
- * [Output only] Type of the resource. Alwayscompute#sslPolicyfor SSL policies.
+ * Output only. [Output only] Type of the resource. Alwayscompute#sslPolicyfor SSL policies.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -103,20 +103,20 @@ class SslPolicy extends \Google\Protobuf\Internal\Message
*/
protected $profile = null;
/**
- * [Output Only] URL of the region where the regional SSL policy
+ * Output only. [Output Only] URL of the region where the regional SSL policy
* resides. This field is not applicable to global SSL policies.
*
* Generated from protobuf field optional string region = 138946292;
*/
protected $region = null;
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] If potential misconfigurations are detected for this
+ * Output only. [Output Only] If potential misconfigurations are detected for this
* SSL policy, this field will be populated with warning messages.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.Warnings warnings = 498091095;
@@ -130,7 +130,7 @@ class SslPolicy extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type array|\Google\Protobuf\Internal\RepeatedField $custom_features
* A list of features enabled when the selected profile is CUSTOM. The
@@ -140,7 +140,7 @@ class SslPolicy extends \Google\Protobuf\Internal\Message
* An optional description of this resource. Provide this property when you
* create the resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $enabled_features
- * [Output Only] The list of features enabled in the SSL policy.
+ * Output only. [Output Only] The list of features enabled in the SSL policy.
* @type string $fingerprint
* Fingerprint of this resource. A hash of the contents stored in this object.
* This field is used in optimistic locking. This field will be ignored when
@@ -150,10 +150,10 @@ class SslPolicy extends \Google\Protobuf\Internal\Message
* To see the latest fingerprint, make a get() request to
* retrieve an SslPolicy.
* @type int|string $id
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type string $kind
- * [Output only] Type of the resource. Alwayscompute#sslPolicyfor SSL policies.
+ * Output only. [Output only] Type of the resource. Alwayscompute#sslPolicyfor SSL policies.
* @type string $min_tls_version
* The minimum version of SSL protocol that can be used by the clients to
* establish a connection with the load balancer. This can be one ofTLS_1_0, TLS_1_1, TLS_1_2,TLS_1_3. When set to TLS_1_3, the profile field
@@ -173,12 +173,12 @@ class SslPolicy extends \Google\Protobuf\Internal\Message
* to enable must be specified in the customFeatures field.
* Check the Profile enum for the list of possible values.
* @type string $region
- * [Output Only] URL of the region where the regional SSL policy
+ * Output only. [Output Only] URL of the region where the regional SSL policy
* resides. This field is not applicable to global SSL policies.
* @type string $self_link
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
* @type array<\Google\Cloud\Compute\V1\Warnings>|\Google\Protobuf\Internal\RepeatedField $warnings
- * [Output Only] If potential misconfigurations are detected for this
+ * Output only. [Output Only] If potential misconfigurations are detected for this
* SSL policy, this field will be populated with warning messages.
* }
*/
@@ -188,7 +188,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -210,7 +210,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -294,7 +294,7 @@ public function setDescription($var)
}
/**
- * [Output Only] The list of features enabled in the SSL policy.
+ * Output only. [Output Only] The list of features enabled in the SSL policy.
*
* Generated from protobuf field repeated string enabled_features = 469017467;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -305,7 +305,7 @@ public function getEnabledFeatures()
}
/**
- * [Output Only] The list of features enabled in the SSL policy.
+ * Output only. [Output Only] The list of features enabled in the SSL policy.
*
* Generated from protobuf field repeated string enabled_features = 469017467;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
@@ -368,7 +368,7 @@ public function setFingerprint($var)
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -390,7 +390,7 @@ public function clearId()
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -406,7 +406,7 @@ public function setId($var)
}
/**
- * [Output only] Type of the resource. Alwayscompute#sslPolicyfor SSL policies.
+ * Output only. [Output only] Type of the resource. Alwayscompute#sslPolicyfor SSL policies.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -427,7 +427,7 @@ public function clearKind()
}
/**
- * [Output only] Type of the resource. Alwayscompute#sslPolicyfor SSL policies.
+ * Output only. [Output only] Type of the resource. Alwayscompute#sslPolicyfor SSL policies.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -574,7 +574,7 @@ public function setProfile($var)
}
/**
- * [Output Only] URL of the region where the regional SSL policy
+ * Output only. [Output Only] URL of the region where the regional SSL policy
* resides. This field is not applicable to global SSL policies.
*
* Generated from protobuf field optional string region = 138946292;
@@ -596,7 +596,7 @@ public function clearRegion()
}
/**
- * [Output Only] URL of the region where the regional SSL policy
+ * Output only. [Output Only] URL of the region where the regional SSL policy
* resides. This field is not applicable to global SSL policies.
*
* Generated from protobuf field optional string region = 138946292;
@@ -612,7 +612,7 @@ public function setRegion($var)
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -633,7 +633,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -648,7 +648,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] If potential misconfigurations are detected for this
+ * Output only. [Output Only] If potential misconfigurations are detected for this
* SSL policy, this field will be populated with warning messages.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.Warnings warnings = 498091095;
@@ -660,7 +660,7 @@ public function getWarnings()
}
/**
- * [Output Only] If potential misconfigurations are detected for this
+ * Output only. [Output Only] If potential misconfigurations are detected for this
* SSL policy, this field will be populated with warning messages.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.Warnings warnings = 498091095;
diff --git a/Compute/src/V1/StoragePool.php b/Compute/src/V1/StoragePool.php
index b97f2883a824..53ae54424a66 100644
--- a/Compute/src/V1/StoragePool.php
+++ b/Compute/src/V1/StoragePool.php
@@ -23,7 +23,7 @@ class StoragePool extends \Google\Protobuf\Internal\Message
*/
protected $capacity_provisioning_type = null;
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -37,14 +37,14 @@ class StoragePool extends \Google\Protobuf\Internal\Message
*/
protected $description = null;
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
*/
protected $id = null;
/**
- * [Output Only] Type of the resource. Always compute#storagePool
+ * Output only. [Output Only] Type of the resource. Always compute#storagePool
* for storage pools.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -112,25 +112,25 @@ class StoragePool extends \Google\Protobuf\Internal\Message
*/
protected $pool_provisioned_throughput = null;
/**
- * [Output Only] Status information for the storage pool resource.
+ * Output only. [Output Only] Status information for the storage pool resource.
*
* Generated from protobuf field optional .google.cloud.compute.v1.StoragePoolResourceStatus resource_status = 249429315;
*/
protected $resource_status = null;
/**
- * [Output Only] Server-defined fully-qualified URL for this resource.
+ * Output only. [Output Only] Server-defined fully-qualified URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Server-defined URL for this resource's resource id.
+ * Output only. [Output Only] Server-defined URL for this resource's resource id.
*
* Generated from protobuf field optional string self_link_with_id = 44520962;
*/
protected $self_link_with_id = null;
/**
- * [Output Only] The status of storage pool creation.
+ * Output only. [Output Only] The status of storage pool creation.
* - CREATING: Storage pool is provisioning.
* storagePool.
* - FAILED: Storage pool creation failed.
@@ -142,7 +142,7 @@ class StoragePool extends \Google\Protobuf\Internal\Message
*/
protected $state = null;
/**
- * [Output Only] Status information for the storage pool resource.
+ * Output only. [Output Only] Status information for the storage pool resource.
*
* Generated from protobuf field optional .google.cloud.compute.v1.StoragePoolResourceStatus status = 181260274;
*/
@@ -154,7 +154,7 @@ class StoragePool extends \Google\Protobuf\Internal\Message
*/
protected $storage_pool_type = null;
/**
- * [Output Only] URL of the zone where the storage pool resides.
+ * Output only. [Output Only] URL of the zone where the storage pool resides.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
*
@@ -172,16 +172,16 @@ class StoragePool extends \Google\Protobuf\Internal\Message
* Provisioning type of the byte capacity of the pool.
* Check the CapacityProvisioningType enum for the list of possible values.
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $description
* An optional description of this resource. Provide this property when you
* create the resource.
* @type int|string $id
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type string $kind
- * [Output Only] Type of the resource. Always compute#storagePool
+ * Output only. [Output Only] Type of the resource. Always compute#storagePool
* for storage pools.
* @type string $label_fingerprint
* A fingerprint for the labels being applied to this storage pool, which is
@@ -217,13 +217,13 @@ class StoragePool extends \Google\Protobuf\Internal\Message
* Provisioned throughput of the storage pool in MiB/s. Only relevant if the
* storage pool type is hyperdisk-balanced or hyperdisk-throughput.
* @type \Google\Cloud\Compute\V1\StoragePoolResourceStatus $resource_status
- * [Output Only] Status information for the storage pool resource.
+ * Output only. [Output Only] Status information for the storage pool resource.
* @type string $self_link
- * [Output Only] Server-defined fully-qualified URL for this resource.
+ * Output only. [Output Only] Server-defined fully-qualified URL for this resource.
* @type string $self_link_with_id
- * [Output Only] Server-defined URL for this resource's resource id.
+ * Output only. [Output Only] Server-defined URL for this resource's resource id.
* @type string $state
- * [Output Only] The status of storage pool creation.
+ * Output only. [Output Only] The status of storage pool creation.
* - CREATING: Storage pool is provisioning.
* storagePool.
* - FAILED: Storage pool creation failed.
@@ -231,11 +231,11 @@ class StoragePool extends \Google\Protobuf\Internal\Message
* - DELETING: Storage pool is deleting.
* Check the State enum for the list of possible values.
* @type \Google\Cloud\Compute\V1\StoragePoolResourceStatus $status
- * [Output Only] Status information for the storage pool resource.
+ * Output only. [Output Only] Status information for the storage pool resource.
* @type string $storage_pool_type
* Type of the storage pool.
* @type string $zone
- * [Output Only] URL of the zone where the storage pool resides.
+ * Output only. [Output Only] URL of the zone where the storage pool resides.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
* }
@@ -284,7 +284,7 @@ public function setCapacityProvisioningType($var)
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -306,7 +306,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -360,7 +360,7 @@ public function setDescription($var)
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -382,7 +382,7 @@ public function clearId()
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -398,7 +398,7 @@ public function setId($var)
}
/**
- * [Output Only] Type of the resource. Always compute#storagePool
+ * Output only. [Output Only] Type of the resource. Always compute#storagePool
* for storage pools.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -420,7 +420,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Always compute#storagePool
+ * Output only. [Output Only] Type of the resource. Always compute#storagePool
* for storage pools.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -716,7 +716,7 @@ public function setPoolProvisionedThroughput($var)
}
/**
- * [Output Only] Status information for the storage pool resource.
+ * Output only. [Output Only] Status information for the storage pool resource.
*
* Generated from protobuf field optional .google.cloud.compute.v1.StoragePoolResourceStatus resource_status = 249429315;
* @return \Google\Cloud\Compute\V1\StoragePoolResourceStatus|null
@@ -737,7 +737,7 @@ public function clearResourceStatus()
}
/**
- * [Output Only] Status information for the storage pool resource.
+ * Output only. [Output Only] Status information for the storage pool resource.
*
* Generated from protobuf field optional .google.cloud.compute.v1.StoragePoolResourceStatus resource_status = 249429315;
* @param \Google\Cloud\Compute\V1\StoragePoolResourceStatus $var
@@ -752,7 +752,7 @@ public function setResourceStatus($var)
}
/**
- * [Output Only] Server-defined fully-qualified URL for this resource.
+ * Output only. [Output Only] Server-defined fully-qualified URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -773,7 +773,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined fully-qualified URL for this resource.
+ * Output only. [Output Only] Server-defined fully-qualified URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -788,7 +788,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Server-defined URL for this resource's resource id.
+ * Output only. [Output Only] Server-defined URL for this resource's resource id.
*
* Generated from protobuf field optional string self_link_with_id = 44520962;
* @return string
@@ -809,7 +809,7 @@ public function clearSelfLinkWithId()
}
/**
- * [Output Only] Server-defined URL for this resource's resource id.
+ * Output only. [Output Only] Server-defined URL for this resource's resource id.
*
* Generated from protobuf field optional string self_link_with_id = 44520962;
* @param string $var
@@ -824,7 +824,7 @@ public function setSelfLinkWithId($var)
}
/**
- * [Output Only] The status of storage pool creation.
+ * Output only. [Output Only] The status of storage pool creation.
* - CREATING: Storage pool is provisioning.
* storagePool.
* - FAILED: Storage pool creation failed.
@@ -851,7 +851,7 @@ public function clearState()
}
/**
- * [Output Only] The status of storage pool creation.
+ * Output only. [Output Only] The status of storage pool creation.
* - CREATING: Storage pool is provisioning.
* storagePool.
* - FAILED: Storage pool creation failed.
@@ -872,7 +872,7 @@ public function setState($var)
}
/**
- * [Output Only] Status information for the storage pool resource.
+ * Output only. [Output Only] Status information for the storage pool resource.
*
* Generated from protobuf field optional .google.cloud.compute.v1.StoragePoolResourceStatus status = 181260274;
* @return \Google\Cloud\Compute\V1\StoragePoolResourceStatus|null
@@ -893,7 +893,7 @@ public function clearStatus()
}
/**
- * [Output Only] Status information for the storage pool resource.
+ * Output only. [Output Only] Status information for the storage pool resource.
*
* Generated from protobuf field optional .google.cloud.compute.v1.StoragePoolResourceStatus status = 181260274;
* @param \Google\Cloud\Compute\V1\StoragePoolResourceStatus $var
@@ -944,7 +944,7 @@ public function setStoragePoolType($var)
}
/**
- * [Output Only] URL of the zone where the storage pool resides.
+ * Output only. [Output Only] URL of the zone where the storage pool resides.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
*
@@ -967,7 +967,7 @@ public function clearZone()
}
/**
- * [Output Only] URL of the zone where the storage pool resides.
+ * Output only. [Output Only] URL of the zone where the storage pool resides.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
*
diff --git a/Compute/src/V1/StoragePool/State.php b/Compute/src/V1/StoragePool/State.php
index 0a0af2016aad..7e00bd2119b7 100644
--- a/Compute/src/V1/StoragePool/State.php
+++ b/Compute/src/V1/StoragePool/State.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] The status of storage pool creation.
+ * Output only. [Output Only] The status of storage pool creation.
* - CREATING: Storage pool is provisioning.
* storagePool.
* - FAILED: Storage pool creation failed.
diff --git a/Compute/src/V1/StoragePoolAggregatedList.php b/Compute/src/V1/StoragePoolAggregatedList.php
index d83183a4558a..bd460bacd50f 100644
--- a/Compute/src/V1/StoragePoolAggregatedList.php
+++ b/Compute/src/V1/StoragePoolAggregatedList.php
@@ -31,7 +31,7 @@ class StoragePoolAggregatedList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Alwayscompute#storagePoolAggregatedList for aggregated lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#storagePoolAggregatedList for aggregated lists of
* storage pools.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -48,13 +48,13 @@ class StoragePoolAggregatedList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
@@ -78,7 +78,7 @@ class StoragePoolAggregatedList extends \Google\Protobuf\Internal\Message
* @type array|\Google\Protobuf\Internal\MapField $items
* A list of StoragePoolsScopedList resources.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#storagePoolAggregatedList for aggregated lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#storagePoolAggregatedList for aggregated lists of
* storage pools.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -87,9 +87,9 @@ class StoragePoolAggregatedList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -194,7 +194,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#storagePoolAggregatedList for aggregated lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#storagePoolAggregatedList for aggregated lists of
* storage pools.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -216,7 +216,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#storagePoolAggregatedList for aggregated lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#storagePoolAggregatedList for aggregated lists of
* storage pools.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -276,7 +276,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -297,7 +297,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -312,7 +312,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -323,7 +323,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/StoragePoolDisk.php b/Compute/src/V1/StoragePoolDisk.php
index 7f943a8a1de4..145fd4458f70 100644
--- a/Compute/src/V1/StoragePoolDisk.php
+++ b/Compute/src/V1/StoragePoolDisk.php
@@ -15,70 +15,70 @@
class StoragePoolDisk extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Instances this disk is attached to.
+ * Output only. [Output Only] Instances this disk is attached to.
*
* Generated from protobuf field repeated string attached_instances = 65255843;
*/
private $attached_instances;
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
*/
protected $creation_timestamp = null;
/**
- * [Output Only] The URL of the disk.
+ * Output only. [Output Only] The URL of the disk.
*
* Generated from protobuf field optional string disk = 3083677;
*/
protected $disk = null;
/**
- * [Output Only] The name of the disk.
+ * Output only. [Output Only] The name of the disk.
*
* Generated from protobuf field optional string name = 3373707;
*/
protected $name = null;
/**
- * [Output Only] The number of IOPS provisioned for the disk.
+ * Output only. [Output Only] The number of IOPS provisioned for the disk.
*
* Generated from protobuf field optional int64 provisioned_iops = 186769108;
*/
protected $provisioned_iops = null;
/**
- * [Output Only] The throughput provisioned for the disk.
+ * Output only. [Output Only] The throughput provisioned for the disk.
*
* Generated from protobuf field optional int64 provisioned_throughput = 526524181;
*/
protected $provisioned_throughput = null;
/**
- * [Output Only] Resource policies applied to disk for automatic snapshot
+ * Output only. [Output Only] Resource policies applied to disk for automatic snapshot
* creations.
*
* Generated from protobuf field repeated string resource_policies = 22220385;
*/
private $resource_policies;
/**
- * [Output Only] The disk size, in GB.
+ * Output only. [Output Only] The disk size, in GB.
*
* Generated from protobuf field optional int64 size_gb = 494929369;
*/
protected $size_gb = null;
/**
- * [Output Only] The disk status.
+ * Output only. [Output Only] The disk status.
* Check the Status enum for the list of possible values.
*
* Generated from protobuf field optional string status = 181260274;
*/
protected $status = null;
/**
- * [Output Only] The disk type.
+ * Output only. [Output Only] The disk type.
*
* Generated from protobuf field optional string type = 3575610;
*/
protected $type = null;
/**
- * [Output Only] Amount of disk space used.
+ * Output only. [Output Only] Amount of disk space used.
*
* Generated from protobuf field optional int64 used_bytes = 231640425;
*/
@@ -91,30 +91,30 @@ class StoragePoolDisk extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type array|\Google\Protobuf\Internal\RepeatedField $attached_instances
- * [Output Only] Instances this disk is attached to.
+ * Output only. [Output Only] Instances this disk is attached to.
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $disk
- * [Output Only] The URL of the disk.
+ * Output only. [Output Only] The URL of the disk.
* @type string $name
- * [Output Only] The name of the disk.
+ * Output only. [Output Only] The name of the disk.
* @type int|string $provisioned_iops
- * [Output Only] The number of IOPS provisioned for the disk.
+ * Output only. [Output Only] The number of IOPS provisioned for the disk.
* @type int|string $provisioned_throughput
- * [Output Only] The throughput provisioned for the disk.
+ * Output only. [Output Only] The throughput provisioned for the disk.
* @type array|\Google\Protobuf\Internal\RepeatedField $resource_policies
- * [Output Only] Resource policies applied to disk for automatic snapshot
+ * Output only. [Output Only] Resource policies applied to disk for automatic snapshot
* creations.
* @type int|string $size_gb
- * [Output Only] The disk size, in GB.
+ * Output only. [Output Only] The disk size, in GB.
* @type string $status
- * [Output Only] The disk status.
+ * Output only. [Output Only] The disk status.
* Check the Status enum for the list of possible values.
* @type string $type
- * [Output Only] The disk type.
+ * Output only. [Output Only] The disk type.
* @type int|string $used_bytes
- * [Output Only] Amount of disk space used.
+ * Output only. [Output Only] Amount of disk space used.
* }
*/
public function __construct($data = NULL) {
@@ -123,7 +123,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Instances this disk is attached to.
+ * Output only. [Output Only] Instances this disk is attached to.
*
* Generated from protobuf field repeated string attached_instances = 65255843;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -134,7 +134,7 @@ public function getAttachedInstances()
}
/**
- * [Output Only] Instances this disk is attached to.
+ * Output only. [Output Only] Instances this disk is attached to.
*
* Generated from protobuf field repeated string attached_instances = 65255843;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
@@ -149,7 +149,7 @@ public function setAttachedInstances($var)
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -171,7 +171,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -187,7 +187,7 @@ public function setCreationTimestamp($var)
}
/**
- * [Output Only] The URL of the disk.
+ * Output only. [Output Only] The URL of the disk.
*
* Generated from protobuf field optional string disk = 3083677;
* @return string
@@ -208,7 +208,7 @@ public function clearDisk()
}
/**
- * [Output Only] The URL of the disk.
+ * Output only. [Output Only] The URL of the disk.
*
* Generated from protobuf field optional string disk = 3083677;
* @param string $var
@@ -223,7 +223,7 @@ public function setDisk($var)
}
/**
- * [Output Only] The name of the disk.
+ * Output only. [Output Only] The name of the disk.
*
* Generated from protobuf field optional string name = 3373707;
* @return string
@@ -244,7 +244,7 @@ public function clearName()
}
/**
- * [Output Only] The name of the disk.
+ * Output only. [Output Only] The name of the disk.
*
* Generated from protobuf field optional string name = 3373707;
* @param string $var
@@ -259,7 +259,7 @@ public function setName($var)
}
/**
- * [Output Only] The number of IOPS provisioned for the disk.
+ * Output only. [Output Only] The number of IOPS provisioned for the disk.
*
* Generated from protobuf field optional int64 provisioned_iops = 186769108;
* @return int|string
@@ -280,7 +280,7 @@ public function clearProvisionedIops()
}
/**
- * [Output Only] The number of IOPS provisioned for the disk.
+ * Output only. [Output Only] The number of IOPS provisioned for the disk.
*
* Generated from protobuf field optional int64 provisioned_iops = 186769108;
* @param int|string $var
@@ -295,7 +295,7 @@ public function setProvisionedIops($var)
}
/**
- * [Output Only] The throughput provisioned for the disk.
+ * Output only. [Output Only] The throughput provisioned for the disk.
*
* Generated from protobuf field optional int64 provisioned_throughput = 526524181;
* @return int|string
@@ -316,7 +316,7 @@ public function clearProvisionedThroughput()
}
/**
- * [Output Only] The throughput provisioned for the disk.
+ * Output only. [Output Only] The throughput provisioned for the disk.
*
* Generated from protobuf field optional int64 provisioned_throughput = 526524181;
* @param int|string $var
@@ -331,7 +331,7 @@ public function setProvisionedThroughput($var)
}
/**
- * [Output Only] Resource policies applied to disk for automatic snapshot
+ * Output only. [Output Only] Resource policies applied to disk for automatic snapshot
* creations.
*
* Generated from protobuf field repeated string resource_policies = 22220385;
@@ -343,7 +343,7 @@ public function getResourcePolicies()
}
/**
- * [Output Only] Resource policies applied to disk for automatic snapshot
+ * Output only. [Output Only] Resource policies applied to disk for automatic snapshot
* creations.
*
* Generated from protobuf field repeated string resource_policies = 22220385;
@@ -359,7 +359,7 @@ public function setResourcePolicies($var)
}
/**
- * [Output Only] The disk size, in GB.
+ * Output only. [Output Only] The disk size, in GB.
*
* Generated from protobuf field optional int64 size_gb = 494929369;
* @return int|string
@@ -380,7 +380,7 @@ public function clearSizeGb()
}
/**
- * [Output Only] The disk size, in GB.
+ * Output only. [Output Only] The disk size, in GB.
*
* Generated from protobuf field optional int64 size_gb = 494929369;
* @param int|string $var
@@ -395,7 +395,7 @@ public function setSizeGb($var)
}
/**
- * [Output Only] The disk status.
+ * Output only. [Output Only] The disk status.
* Check the Status enum for the list of possible values.
*
* Generated from protobuf field optional string status = 181260274;
@@ -417,7 +417,7 @@ public function clearStatus()
}
/**
- * [Output Only] The disk status.
+ * Output only. [Output Only] The disk status.
* Check the Status enum for the list of possible values.
*
* Generated from protobuf field optional string status = 181260274;
@@ -433,7 +433,7 @@ public function setStatus($var)
}
/**
- * [Output Only] The disk type.
+ * Output only. [Output Only] The disk type.
*
* Generated from protobuf field optional string type = 3575610;
* @return string
@@ -454,7 +454,7 @@ public function clearType()
}
/**
- * [Output Only] The disk type.
+ * Output only. [Output Only] The disk type.
*
* Generated from protobuf field optional string type = 3575610;
* @param string $var
@@ -469,7 +469,7 @@ public function setType($var)
}
/**
- * [Output Only] Amount of disk space used.
+ * Output only. [Output Only] Amount of disk space used.
*
* Generated from protobuf field optional int64 used_bytes = 231640425;
* @return int|string
@@ -490,7 +490,7 @@ public function clearUsedBytes()
}
/**
- * [Output Only] Amount of disk space used.
+ * Output only. [Output Only] Amount of disk space used.
*
* Generated from protobuf field optional int64 used_bytes = 231640425;
* @param int|string $var
diff --git a/Compute/src/V1/StoragePoolDisk/Status.php b/Compute/src/V1/StoragePoolDisk/Status.php
index 08ee94f60fd9..797055d271b6 100644
--- a/Compute/src/V1/StoragePoolDisk/Status.php
+++ b/Compute/src/V1/StoragePoolDisk/Status.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] The disk status.
+ * Output only. [Output Only] The disk status.
*
* Protobuf type google.cloud.compute.v1.StoragePoolDisk.Status
*/
diff --git a/Compute/src/V1/StoragePoolList.php b/Compute/src/V1/StoragePoolList.php
index b681428f64e0..e2f465d20ec9 100644
--- a/Compute/src/V1/StoragePoolList.php
+++ b/Compute/src/V1/StoragePoolList.php
@@ -32,7 +32,7 @@ class StoragePoolList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Always compute#storagePoolList
+ * Output only. [Output Only] Type of resource. Always compute#storagePoolList
* for lists of storagePools.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -49,13 +49,13 @@ class StoragePoolList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* end_interface: MixerListResponseWithEtagBuilder
*
* Generated from protobuf field repeated string unreachables = 243372063;
@@ -80,7 +80,7 @@ class StoragePoolList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\StoragePool>|\Google\Protobuf\Internal\RepeatedField $items
* A list of StoragePool resources.
* @type string $kind
- * [Output Only] Type of resource. Always compute#storagePoolList
+ * Output only. [Output Only] Type of resource. Always compute#storagePoolList
* for lists of storagePools.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -89,9 +89,9 @@ class StoragePoolList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* end_interface: MixerListResponseWithEtagBuilder
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
@@ -197,7 +197,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Always compute#storagePoolList
+ * Output only. [Output Only] Type of resource. Always compute#storagePoolList
* for lists of storagePools.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -219,7 +219,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Always compute#storagePoolList
+ * Output only. [Output Only] Type of resource. Always compute#storagePoolList
* for lists of storagePools.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -279,7 +279,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -300,7 +300,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -315,7 +315,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* end_interface: MixerListResponseWithEtagBuilder
*
* Generated from protobuf field repeated string unreachables = 243372063;
@@ -327,7 +327,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* end_interface: MixerListResponseWithEtagBuilder
*
* Generated from protobuf field repeated string unreachables = 243372063;
diff --git a/Compute/src/V1/StoragePoolListDisks.php b/Compute/src/V1/StoragePoolListDisks.php
index 2c74554d5c42..9afd9c08356f 100644
--- a/Compute/src/V1/StoragePoolListDisks.php
+++ b/Compute/src/V1/StoragePoolListDisks.php
@@ -19,7 +19,7 @@ class StoragePoolListDisks extends \Google\Protobuf\Internal\Message
*/
protected $etag = null;
/**
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
*
* Generated from protobuf field optional string id = 3355;
*/
@@ -31,14 +31,14 @@ class StoragePoolListDisks extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Alwayscompute#storagePoolListDisks for lists of disks in a
+ * Output only. [Output Only] Type of resource. Alwayscompute#storagePoolListDisks for lists of disks in a
* storagePool.
*
* Generated from protobuf field optional string kind = 3292052;
*/
protected $kind = null;
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -48,20 +48,20 @@ class StoragePoolListDisks extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* end_interface: MixerListResponseWithEtagBuilder
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
private $unreachables;
/**
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
*/
@@ -75,25 +75,25 @@ class StoragePoolListDisks extends \Google\Protobuf\Internal\Message
*
* @type string $etag
* @type string $id
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
* @type array<\Google\Cloud\Compute\V1\StoragePoolDisk>|\Google\Protobuf\Internal\RepeatedField $items
* A list of StoragePoolDisk resources.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#storagePoolListDisks for lists of disks in a
+ * Output only. [Output Only] Type of resource. Alwayscompute#storagePoolListDisks for lists of disks in a
* storagePool.
* @type string $next_page_token
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* end_interface: MixerListResponseWithEtagBuilder
* @type \Google\Cloud\Compute\V1\Warning $warning
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
* }
*/
public function __construct($data = NULL) {
@@ -134,7 +134,7 @@ public function setEtag($var)
}
/**
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
*
* Generated from protobuf field optional string id = 3355;
* @return string
@@ -155,7 +155,7 @@ public function clearId()
}
/**
- * [Output Only] Unique identifier for the resource; defined by the server.
+ * Output only. [Output Only] Unique identifier for the resource; defined by the server.
*
* Generated from protobuf field optional string id = 3355;
* @param string $var
@@ -196,7 +196,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#storagePoolListDisks for lists of disks in a
+ * Output only. [Output Only] Type of resource. Alwayscompute#storagePoolListDisks for lists of disks in a
* storagePool.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -218,7 +218,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#storagePoolListDisks for lists of disks in a
+ * Output only. [Output Only] Type of resource. Alwayscompute#storagePoolListDisks for lists of disks in a
* storagePool.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -234,7 +234,7 @@ public function setKind($var)
}
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -259,7 +259,7 @@ public function clearNextPageToken()
}
/**
- * [Output Only] This token allows you to get the next page of results for
+ * Output only. [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
* the query parameter pageToken in the next list request.
* Subsequent list requests will have their own nextPageToken to
@@ -278,7 +278,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -299,7 +299,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -314,7 +314,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* end_interface: MixerListResponseWithEtagBuilder
*
* Generated from protobuf field repeated string unreachables = 243372063;
@@ -326,7 +326,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* end_interface: MixerListResponseWithEtagBuilder
*
* Generated from protobuf field repeated string unreachables = 243372063;
@@ -342,7 +342,7 @@ public function setUnreachables($var)
}
/**
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
* @return \Google\Cloud\Compute\V1\Warning|null
@@ -363,7 +363,7 @@ public function clearWarning()
}
/**
- * [Output Only] Informational warning message.
+ * Output only. [Output Only] Informational warning message.
*
* Generated from protobuf field optional .google.cloud.compute.v1.Warning warning = 50704284;
* @param \Google\Cloud\Compute\V1\Warning $var
diff --git a/Compute/src/V1/StoragePoolResourceStatus.php b/Compute/src/V1/StoragePoolResourceStatus.php
index a6df6216ac47..804e7a86ea02 100644
--- a/Compute/src/V1/StoragePoolResourceStatus.php
+++ b/Compute/src/V1/StoragePoolResourceStatus.php
@@ -22,7 +22,7 @@ class StoragePoolResourceStatus extends \Google\Protobuf\Internal\Message
*/
protected $disk_count = null;
/**
- * [Output Only] Timestamp of the last successful resize inRFC3339 text format.
+ * Output only. [Output Only] Timestamp of the last successful resize inRFC3339 text format.
*
* Generated from protobuf field optional string last_resize_timestamp = 500825556;
*/
@@ -95,7 +95,7 @@ class StoragePoolResourceStatus extends \Google\Protobuf\Internal\Message
* @type int|string $disk_count
* [Output Only] Number of disks used.
* @type string $last_resize_timestamp
- * [Output Only] Timestamp of the last successful resize inRFC3339 text format.
+ * Output only. [Output Only] Timestamp of the last successful resize inRFC3339 text format.
* @type int|string $max_total_provisioned_disk_capacity_gb
* [Output Only] Maximum allowed aggregate disk size in GiB.
* @type int|string $pool_used_capacity_bytes
@@ -166,7 +166,7 @@ public function setDiskCount($var)
}
/**
- * [Output Only] Timestamp of the last successful resize inRFC3339 text format.
+ * Output only. [Output Only] Timestamp of the last successful resize inRFC3339 text format.
*
* Generated from protobuf field optional string last_resize_timestamp = 500825556;
* @return string
@@ -187,7 +187,7 @@ public function clearLastResizeTimestamp()
}
/**
- * [Output Only] Timestamp of the last successful resize inRFC3339 text format.
+ * Output only. [Output Only] Timestamp of the last successful resize inRFC3339 text format.
*
* Generated from protobuf field optional string last_resize_timestamp = 500825556;
* @param string $var
diff --git a/Compute/src/V1/StoragePoolType.php b/Compute/src/V1/StoragePoolType.php
index 0a91fff97377..540f2c6020c8 100644
--- a/Compute/src/V1/StoragePoolType.php
+++ b/Compute/src/V1/StoragePoolType.php
@@ -42,7 +42,7 @@ class StoragePoolType extends \Google\Protobuf\Internal\Message
*/
protected $id = null;
/**
- * [Output Only] Type of the resource. Alwayscompute#storagePoolType for storage pool types.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#storagePoolType for storage pool types.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -103,7 +103,7 @@ class StoragePoolType extends \Google\Protobuf\Internal\Message
*/
protected $self_link = null;
/**
- * [Output Only] Server-defined URL for this resource with the resource id.
+ * Output only. [Output Only] Server-defined URL for this resource with the resource id.
*
* Generated from protobuf field optional string self_link_with_id = 44520962;
*/
@@ -141,7 +141,7 @@ class StoragePoolType extends \Google\Protobuf\Internal\Message
* [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type string $kind
- * [Output Only] Type of the resource. Alwayscompute#storagePoolType for storage pool types.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#storagePoolType for storage pool types.
* @type int|string $max_pool_provisioned_capacity_gb
* [Output Only] Maximum storage pool size in GB.
* @type int|string $max_pool_provisioned_iops
@@ -162,7 +162,7 @@ class StoragePoolType extends \Google\Protobuf\Internal\Message
* @type string $self_link
* [Output Only] Server-defined URL for the resource.
* @type string $self_link_with_id
- * [Output Only] Server-defined URL for this resource with the resource id.
+ * Output only. [Output Only] Server-defined URL for this resource with the resource id.
* @type array|\Google\Protobuf\Internal\RepeatedField $supported_disk_types
* [Output Only] The list of disk types supported in this storage pool type.
* @type string $zone
@@ -327,7 +327,7 @@ public function setId($var)
}
/**
- * [Output Only] Type of the resource. Alwayscompute#storagePoolType for storage pool types.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#storagePoolType for storage pool types.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -348,7 +348,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Alwayscompute#storagePoolType for storage pool types.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#storagePoolType for storage pool types.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -689,7 +689,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Server-defined URL for this resource with the resource id.
+ * Output only. [Output Only] Server-defined URL for this resource with the resource id.
*
* Generated from protobuf field optional string self_link_with_id = 44520962;
* @return string
@@ -710,7 +710,7 @@ public function clearSelfLinkWithId()
}
/**
- * [Output Only] Server-defined URL for this resource with the resource id.
+ * Output only. [Output Only] Server-defined URL for this resource with the resource id.
*
* Generated from protobuf field optional string self_link_with_id = 44520962;
* @param string $var
diff --git a/Compute/src/V1/StoragePoolTypeAggregatedList.php b/Compute/src/V1/StoragePoolTypeAggregatedList.php
index 73361fc76872..aa43d60443d8 100644
--- a/Compute/src/V1/StoragePoolTypeAggregatedList.php
+++ b/Compute/src/V1/StoragePoolTypeAggregatedList.php
@@ -27,7 +27,7 @@ class StoragePoolTypeAggregatedList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Alwayscompute#storagePoolTypeAggregatedList.
+ * Output only. [Output Only] Type of resource. Alwayscompute#storagePoolTypeAggregatedList.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -43,7 +43,7 @@ class StoragePoolTypeAggregatedList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -66,7 +66,7 @@ class StoragePoolTypeAggregatedList extends \Google\Protobuf\Internal\Message
* @type array|\Google\Protobuf\Internal\MapField $items
* A list of StoragePoolTypesScopedList resources.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#storagePoolTypeAggregatedList.
+ * Output only. [Output Only] Type of resource. Alwayscompute#storagePoolTypeAggregatedList.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -74,7 +74,7 @@ class StoragePoolTypeAggregatedList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -147,7 +147,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#storagePoolTypeAggregatedList.
+ * Output only. [Output Only] Type of resource. Alwayscompute#storagePoolTypeAggregatedList.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -168,7 +168,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#storagePoolTypeAggregatedList.
+ * Output only. [Output Only] Type of resource. Alwayscompute#storagePoolTypeAggregatedList.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -227,7 +227,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -248,7 +248,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/StoragePoolTypeList.php b/Compute/src/V1/StoragePoolTypeList.php
index 274fa180de7c..b9afbc1a7959 100644
--- a/Compute/src/V1/StoragePoolTypeList.php
+++ b/Compute/src/V1/StoragePoolTypeList.php
@@ -28,7 +28,7 @@ class StoragePoolTypeList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Alwayscompute#storagePoolTypeList for storage pool types.
+ * Output only. [Output Only] Type of resource. Alwayscompute#storagePoolTypeList for storage pool types.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -44,7 +44,7 @@ class StoragePoolTypeList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -67,7 +67,7 @@ class StoragePoolTypeList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\StoragePoolType>|\Google\Protobuf\Internal\RepeatedField $items
* A list of StoragePoolType resources.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#storagePoolTypeList for storage pool types.
+ * Output only. [Output Only] Type of resource. Alwayscompute#storagePoolTypeList for storage pool types.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -75,7 +75,7 @@ class StoragePoolTypeList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -148,7 +148,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#storagePoolTypeList for storage pool types.
+ * Output only. [Output Only] Type of resource. Alwayscompute#storagePoolTypeList for storage pool types.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -169,7 +169,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#storagePoolTypeList for storage pool types.
+ * Output only. [Output Only] Type of resource. Alwayscompute#storagePoolTypeList for storage pool types.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -228,7 +228,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -249,7 +249,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/Subnetwork.php b/Compute/src/V1/Subnetwork.php
index f860328e6849..fa3fb480c9ac 100644
--- a/Compute/src/V1/Subnetwork.php
+++ b/Compute/src/V1/Subnetwork.php
@@ -20,7 +20,27 @@
class Subnetwork extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Whether this subnetwork's ranges can conflict with existing static routes.
+ * Setting this to true allows this subnetwork's primary and secondary ranges
+ * to overlap with (and contain) static routes that have already been
+ * configured on the corresponding network.
+ * For example if a static route has range 10.1.0.0/16, a subnet
+ * range 10.0.0.0/8 could only be created if allow_conflicting_routes=true.
+ * Overlapping is only allowed on subnetwork operations; routes
+ * whose ranges conflict with this subnetwork's ranges won't be allowed unless
+ * route.allow_conflicting_subnetworks is set to true.
+ * Typically packets destined to IPs within the subnetwork (which may contain
+ * private/sensitive data) are prevented from leaving the virtual network.
+ * Setting this field to true will disable this feature.
+ * The default value is false and applies to all existing subnetworks and
+ * automatically created subnetworks.
+ * This field cannot be set to true at resource creation time.
+ *
+ * Generated from protobuf field optional bool allow_subnet_cidr_routes_overlap = 67856209;
+ */
+ protected $allow_subnet_cidr_routes_overlap = null;
+ /**
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -63,14 +83,14 @@ class Subnetwork extends \Google\Protobuf\Internal\Message
*/
protected $fingerprint = null;
/**
- * [Output Only] The gateway address for default routes to reach destination
+ * Output only. [Output Only] The gateway address for default routes to reach destination
* addresses outside this subnetwork.
*
* Generated from protobuf field optional string gateway_address = 459867385;
*/
protected $gateway_address = null;
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -121,13 +141,13 @@ class Subnetwork extends \Google\Protobuf\Internal\Message
*/
protected $ipv6_access_type = null;
/**
- * [Output Only] This field is for internal use.
+ * Output only. [Output Only] This field is for internal use.
*
* Generated from protobuf field optional string ipv6_cidr_range = 273141258;
*/
protected $ipv6_cidr_range = null;
/**
- * [Output Only] Possible endpoints of this subnetwork. It can be one of the
+ * Output only. [Output Only] Possible endpoints of this subnetwork. It can be one of the
* following:
* - VM_ONLY: The subnetwork can be used for creating instances and
* IPv6 addresses with VM endpoint type. Such a subnetwork gets external IPv6
@@ -142,7 +162,7 @@ class Subnetwork extends \Google\Protobuf\Internal\Message
*/
protected $ipv6_gce_endpoint = null;
/**
- * [Output Only] Type of the resource. Always compute#subnetwork
+ * Output only. [Output Only] Type of the resource. Always compute#subnetwork
* for Subnetwork resources.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -256,7 +276,7 @@ class Subnetwork extends \Google\Protobuf\Internal\Message
*/
protected $stack_type = null;
/**
- * [Output Only] The state of the subnetwork, which can be one of the
+ * Output only. [Output Only] The state of the subnetwork, which can be one of the
* following values:READY: Subnetwork is created and ready to useDRAINING: only applicable to subnetworks that have the
* purpose set to INTERNAL_HTTPS_LOAD_BALANCER and indicates that
* connections to the load balancer are being drained. A subnetwork that is
@@ -294,8 +314,24 @@ class Subnetwork extends \Google\Protobuf\Internal\Message
* @param array $data {
* Optional. Data for populating the Message object.
*
+ * @type bool $allow_subnet_cidr_routes_overlap
+ * Whether this subnetwork's ranges can conflict with existing static routes.
+ * Setting this to true allows this subnetwork's primary and secondary ranges
+ * to overlap with (and contain) static routes that have already been
+ * configured on the corresponding network.
+ * For example if a static route has range 10.1.0.0/16, a subnet
+ * range 10.0.0.0/8 could only be created if allow_conflicting_routes=true.
+ * Overlapping is only allowed on subnetwork operations; routes
+ * whose ranges conflict with this subnetwork's ranges won't be allowed unless
+ * route.allow_conflicting_subnetworks is set to true.
+ * Typically packets destined to IPs within the subnetwork (which may contain
+ * private/sensitive data) are prevented from leaving the virtual network.
+ * Setting this field to true will disable this feature.
+ * The default value is false and applies to all existing subnetworks and
+ * automatically created subnetworks.
+ * This field cannot be set to true at resource creation time.
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $description
* An optional description of this resource. Provide this property when you
@@ -318,10 +354,10 @@ class Subnetwork extends \Google\Protobuf\Internal\Message
* To see the latest fingerprint, make a get() request to
* retrieve a Subnetwork.
* @type string $gateway_address
- * [Output Only] The gateway address for default routes to reach destination
+ * Output only. [Output Only] The gateway address for default routes to reach destination
* addresses outside this subnetwork.
* @type int|string $id
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type string $internal_ipv6_prefix
* The internal IPv6 address range that is owned by this
@@ -352,9 +388,9 @@ class Subnetwork extends \Google\Protobuf\Internal\Message
* into IPV4_IPV6 dual stack.
* Check the Ipv6AccessType enum for the list of possible values.
* @type string $ipv6_cidr_range
- * [Output Only] This field is for internal use.
+ * Output only. [Output Only] This field is for internal use.
* @type string $ipv6_gce_endpoint
- * [Output Only] Possible endpoints of this subnetwork. It can be one of the
+ * Output only. [Output Only] Possible endpoints of this subnetwork. It can be one of the
* following:
* - VM_ONLY: The subnetwork can be used for creating instances and
* IPv6 addresses with VM endpoint type. Such a subnetwork gets external IPv6
@@ -365,7 +401,7 @@ class Subnetwork extends \Google\Protobuf\Internal\Message
* IPv6 range from Google IP Pool directly.
* Check the Ipv6GceEndpoint enum for the list of possible values.
* @type string $kind
- * [Output Only] Type of the resource. Always compute#subnetwork
+ * Output only. [Output Only] Type of the resource. Always compute#subnetwork
* for Subnetwork resources.
* @type \Google\Cloud\Compute\V1\SubnetworkLogConfig $log_config
* This field denotes the VPC flow logging options for this subnetwork.
@@ -423,7 +459,7 @@ class Subnetwork extends \Google\Protobuf\Internal\Message
* This field can be both set at resource creation time and updated usingpatch.
* Check the StackType enum for the list of possible values.
* @type string $state
- * [Output Only] The state of the subnetwork, which can be one of the
+ * Output only. [Output Only] The state of the subnetwork, which can be one of the
* following values:READY: Subnetwork is created and ready to useDRAINING: only applicable to subnetworks that have the
* purpose set to INTERNAL_HTTPS_LOAD_BALANCER and indicates that
* connections to the load balancer are being drained. A subnetwork that is
@@ -446,7 +482,71 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Whether this subnetwork's ranges can conflict with existing static routes.
+ * Setting this to true allows this subnetwork's primary and secondary ranges
+ * to overlap with (and contain) static routes that have already been
+ * configured on the corresponding network.
+ * For example if a static route has range 10.1.0.0/16, a subnet
+ * range 10.0.0.0/8 could only be created if allow_conflicting_routes=true.
+ * Overlapping is only allowed on subnetwork operations; routes
+ * whose ranges conflict with this subnetwork's ranges won't be allowed unless
+ * route.allow_conflicting_subnetworks is set to true.
+ * Typically packets destined to IPs within the subnetwork (which may contain
+ * private/sensitive data) are prevented from leaving the virtual network.
+ * Setting this field to true will disable this feature.
+ * The default value is false and applies to all existing subnetworks and
+ * automatically created subnetworks.
+ * This field cannot be set to true at resource creation time.
+ *
+ * Generated from protobuf field optional bool allow_subnet_cidr_routes_overlap = 67856209;
+ * @return bool
+ */
+ public function getAllowSubnetCidrRoutesOverlap()
+ {
+ return isset($this->allow_subnet_cidr_routes_overlap) ? $this->allow_subnet_cidr_routes_overlap : false;
+ }
+
+ public function hasAllowSubnetCidrRoutesOverlap()
+ {
+ return isset($this->allow_subnet_cidr_routes_overlap);
+ }
+
+ public function clearAllowSubnetCidrRoutesOverlap()
+ {
+ unset($this->allow_subnet_cidr_routes_overlap);
+ }
+
+ /**
+ * Whether this subnetwork's ranges can conflict with existing static routes.
+ * Setting this to true allows this subnetwork's primary and secondary ranges
+ * to overlap with (and contain) static routes that have already been
+ * configured on the corresponding network.
+ * For example if a static route has range 10.1.0.0/16, a subnet
+ * range 10.0.0.0/8 could only be created if allow_conflicting_routes=true.
+ * Overlapping is only allowed on subnetwork operations; routes
+ * whose ranges conflict with this subnetwork's ranges won't be allowed unless
+ * route.allow_conflicting_subnetworks is set to true.
+ * Typically packets destined to IPs within the subnetwork (which may contain
+ * private/sensitive data) are prevented from leaving the virtual network.
+ * Setting this field to true will disable this feature.
+ * The default value is false and applies to all existing subnetworks and
+ * automatically created subnetworks.
+ * This field cannot be set to true at resource creation time.
+ *
+ * Generated from protobuf field optional bool allow_subnet_cidr_routes_overlap = 67856209;
+ * @param bool $var
+ * @return $this
+ */
+ public function setAllowSubnetCidrRoutesOverlap($var)
+ {
+ GPBUtil::checkBool($var);
+ $this->allow_subnet_cidr_routes_overlap = $var;
+
+ return $this;
+ }
+
+ /**
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -468,7 +568,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -652,7 +752,7 @@ public function setFingerprint($var)
}
/**
- * [Output Only] The gateway address for default routes to reach destination
+ * Output only. [Output Only] The gateway address for default routes to reach destination
* addresses outside this subnetwork.
*
* Generated from protobuf field optional string gateway_address = 459867385;
@@ -674,7 +774,7 @@ public function clearGatewayAddress()
}
/**
- * [Output Only] The gateway address for default routes to reach destination
+ * Output only. [Output Only] The gateway address for default routes to reach destination
* addresses outside this subnetwork.
*
* Generated from protobuf field optional string gateway_address = 459867385;
@@ -690,7 +790,7 @@ public function setGatewayAddress($var)
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -712,7 +812,7 @@ public function clearId()
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -912,7 +1012,7 @@ public function setIpv6AccessType($var)
}
/**
- * [Output Only] This field is for internal use.
+ * Output only. [Output Only] This field is for internal use.
*
* Generated from protobuf field optional string ipv6_cidr_range = 273141258;
* @return string
@@ -933,7 +1033,7 @@ public function clearIpv6CidrRange()
}
/**
- * [Output Only] This field is for internal use.
+ * Output only. [Output Only] This field is for internal use.
*
* Generated from protobuf field optional string ipv6_cidr_range = 273141258;
* @param string $var
@@ -948,7 +1048,7 @@ public function setIpv6CidrRange($var)
}
/**
- * [Output Only] Possible endpoints of this subnetwork. It can be one of the
+ * Output only. [Output Only] Possible endpoints of this subnetwork. It can be one of the
* following:
* - VM_ONLY: The subnetwork can be used for creating instances and
* IPv6 addresses with VM endpoint type. Such a subnetwork gets external IPv6
@@ -978,7 +1078,7 @@ public function clearIpv6GceEndpoint()
}
/**
- * [Output Only] Possible endpoints of this subnetwork. It can be one of the
+ * Output only. [Output Only] Possible endpoints of this subnetwork. It can be one of the
* following:
* - VM_ONLY: The subnetwork can be used for creating instances and
* IPv6 addresses with VM endpoint type. Such a subnetwork gets external IPv6
@@ -1002,7 +1102,7 @@ public function setIpv6GceEndpoint($var)
}
/**
- * [Output Only] Type of the resource. Always compute#subnetwork
+ * Output only. [Output Only] Type of the resource. Always compute#subnetwork
* for Subnetwork resources.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -1024,7 +1124,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Always compute#subnetwork
+ * Output only. [Output Only] Type of the resource. Always compute#subnetwork
* for Subnetwork resources.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -1556,7 +1656,7 @@ public function setStackType($var)
}
/**
- * [Output Only] The state of the subnetwork, which can be one of the
+ * Output only. [Output Only] The state of the subnetwork, which can be one of the
* following values:READY: Subnetwork is created and ready to useDRAINING: only applicable to subnetworks that have the
* purpose set to INTERNAL_HTTPS_LOAD_BALANCER and indicates that
* connections to the load balancer are being drained. A subnetwork that is
@@ -1582,7 +1682,7 @@ public function clearState()
}
/**
- * [Output Only] The state of the subnetwork, which can be one of the
+ * Output only. [Output Only] The state of the subnetwork, which can be one of the
* following values:READY: Subnetwork is created and ready to useDRAINING: only applicable to subnetworks that have the
* purpose set to INTERNAL_HTTPS_LOAD_BALANCER and indicates that
* connections to the load balancer are being drained. A subnetwork that is
diff --git a/Compute/src/V1/Subnetwork/Ipv6GceEndpoint.php b/Compute/src/V1/Subnetwork/Ipv6GceEndpoint.php
index 3713e665f572..9ab29e1c9e92 100644
--- a/Compute/src/V1/Subnetwork/Ipv6GceEndpoint.php
+++ b/Compute/src/V1/Subnetwork/Ipv6GceEndpoint.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] Possible endpoints of this subnetwork. It can be one of the
+ * Output only. [Output Only] Possible endpoints of this subnetwork. It can be one of the
* following:
* - VM_ONLY: The subnetwork can be used for creating instances and
* IPv6 addresses with VM endpoint type. Such a subnetwork gets external IPv6
diff --git a/Compute/src/V1/Subnetwork/State.php b/Compute/src/V1/Subnetwork/State.php
index 2dd8ddf0af15..60e3c176ab21 100644
--- a/Compute/src/V1/Subnetwork/State.php
+++ b/Compute/src/V1/Subnetwork/State.php
@@ -7,7 +7,7 @@
use UnexpectedValueException;
/**
- * [Output Only] The state of the subnetwork, which can be one of the
+ * Output only. [Output Only] The state of the subnetwork, which can be one of the
* following values:READY: Subnetwork is created and ready to useDRAINING: only applicable to subnetworks that have the
* purpose set to INTERNAL_HTTPS_LOAD_BALANCER and indicates that
* connections to the load balancer are being drained. A subnetwork that is
diff --git a/Compute/src/V1/SubnetworkAggregatedList.php b/Compute/src/V1/SubnetworkAggregatedList.php
index 2dc653a8498a..2661392274f7 100644
--- a/Compute/src/V1/SubnetworkAggregatedList.php
+++ b/Compute/src/V1/SubnetworkAggregatedList.php
@@ -27,7 +27,7 @@ class SubnetworkAggregatedList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Alwayscompute#subnetworkAggregatedList for aggregated lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#subnetworkAggregatedList for aggregated lists of
* subnetworks.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -44,13 +44,13 @@ class SubnetworkAggregatedList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
@@ -73,7 +73,7 @@ class SubnetworkAggregatedList extends \Google\Protobuf\Internal\Message
* @type array|\Google\Protobuf\Internal\MapField $items
* A list of SubnetworksScopedList resources.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#subnetworkAggregatedList for aggregated lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#subnetworkAggregatedList for aggregated lists of
* subnetworks.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -82,9 +82,9 @@ class SubnetworkAggregatedList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -157,7 +157,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#subnetworkAggregatedList for aggregated lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#subnetworkAggregatedList for aggregated lists of
* subnetworks.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -179,7 +179,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#subnetworkAggregatedList for aggregated lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#subnetworkAggregatedList for aggregated lists of
* subnetworks.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -239,7 +239,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -260,7 +260,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -275,7 +275,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -286,7 +286,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/SubnetworkList.php b/Compute/src/V1/SubnetworkList.php
index 2fd3fe202f80..caf01e1a2f00 100644
--- a/Compute/src/V1/SubnetworkList.php
+++ b/Compute/src/V1/SubnetworkList.php
@@ -28,7 +28,7 @@ class SubnetworkList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Always compute#subnetworkList
+ * Output only. [Output Only] Type of resource. Always compute#subnetworkList
* for lists of subnetworks.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -45,7 +45,7 @@ class SubnetworkList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -68,7 +68,7 @@ class SubnetworkList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\Subnetwork>|\Google\Protobuf\Internal\RepeatedField $items
* A list of Subnetwork resources.
* @type string $kind
- * [Output Only] Type of resource. Always compute#subnetworkList
+ * Output only. [Output Only] Type of resource. Always compute#subnetworkList
* for lists of subnetworks.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -77,7 +77,7 @@ class SubnetworkList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -150,7 +150,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Always compute#subnetworkList
+ * Output only. [Output Only] Type of resource. Always compute#subnetworkList
* for lists of subnetworks.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -172,7 +172,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Always compute#subnetworkList
+ * Output only. [Output Only] Type of resource. Always compute#subnetworkList
* for lists of subnetworks.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -232,7 +232,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -253,7 +253,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/TargetGrpcProxy.php b/Compute/src/V1/TargetGrpcProxy.php
index f5b043a179f4..31bc754bc5ce 100644
--- a/Compute/src/V1/TargetGrpcProxy.php
+++ b/Compute/src/V1/TargetGrpcProxy.php
@@ -21,7 +21,7 @@
class TargetGrpcProxy extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -47,14 +47,14 @@ class TargetGrpcProxy extends \Google\Protobuf\Internal\Message
*/
protected $fingerprint = null;
/**
- * [Output Only] The unique identifier for the resource type. The server
+ * Output only. [Output Only] The unique identifier for the resource type. The server
* generates this identifier.
*
* Generated from protobuf field optional uint64 id = 3355;
*/
protected $id = null;
/**
- * [Output Only] Type of the resource. Alwayscompute#targetGrpcProxy for target grpc proxies.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#targetGrpcProxy for target grpc proxies.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -72,13 +72,13 @@ class TargetGrpcProxy extends \Google\Protobuf\Internal\Message
*/
protected $name = null;
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Server-defined URL with id for the resource.
+ * Output only. [Output Only] Server-defined URL with id for the resource.
*
* Generated from protobuf field optional string self_link_with_id = 44520962;
*/
@@ -114,7 +114,7 @@ class TargetGrpcProxy extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $description
* An optional description of this resource. Provide this property when you
@@ -128,10 +128,10 @@ class TargetGrpcProxy extends \Google\Protobuf\Internal\Message
* latest fingerprint, make a get() request to retrieve the
* TargetGrpcProxy.
* @type int|string $id
- * [Output Only] The unique identifier for the resource type. The server
+ * Output only. [Output Only] The unique identifier for the resource type. The server
* generates this identifier.
* @type string $kind
- * [Output Only] Type of the resource. Alwayscompute#targetGrpcProxy for target grpc proxies.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#targetGrpcProxy for target grpc proxies.
* @type string $name
* Name of the resource. Provided by the client when the resource is created.
* The name must be 1-63 characters long, and comply withRFC1035.
@@ -141,9 +141,9 @@ class TargetGrpcProxy extends \Google\Protobuf\Internal\Message
* be a dash, lowercase letter, or digit, except the last character, which
* cannot be a dash.
* @type string $self_link
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
* @type string $self_link_with_id
- * [Output Only] Server-defined URL with id for the resource.
+ * Output only. [Output Only] Server-defined URL with id for the resource.
* @type string $url_map
* URL to the UrlMap resource that defines the mapping from URL to the
* BackendService. The protocol field in the BackendService must be set to
@@ -167,7 +167,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -189,7 +189,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -291,7 +291,7 @@ public function setFingerprint($var)
}
/**
- * [Output Only] The unique identifier for the resource type. The server
+ * Output only. [Output Only] The unique identifier for the resource type. The server
* generates this identifier.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -313,7 +313,7 @@ public function clearId()
}
/**
- * [Output Only] The unique identifier for the resource type. The server
+ * Output only. [Output Only] The unique identifier for the resource type. The server
* generates this identifier.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -329,7 +329,7 @@ public function setId($var)
}
/**
- * [Output Only] Type of the resource. Alwayscompute#targetGrpcProxy for target grpc proxies.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#targetGrpcProxy for target grpc proxies.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -350,7 +350,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Alwayscompute#targetGrpcProxy for target grpc proxies.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#targetGrpcProxy for target grpc proxies.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -413,7 +413,7 @@ public function setName($var)
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -434,7 +434,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -449,7 +449,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Server-defined URL with id for the resource.
+ * Output only. [Output Only] Server-defined URL with id for the resource.
*
* Generated from protobuf field optional string self_link_with_id = 44520962;
* @return string
@@ -470,7 +470,7 @@ public function clearSelfLinkWithId()
}
/**
- * [Output Only] Server-defined URL with id for the resource.
+ * Output only. [Output Only] Server-defined URL with id for the resource.
*
* Generated from protobuf field optional string self_link_with_id = 44520962;
* @param string $var
diff --git a/Compute/src/V1/TargetGrpcProxyList.php b/Compute/src/V1/TargetGrpcProxyList.php
index 8f833bcdf23f..430305e94047 100644
--- a/Compute/src/V1/TargetGrpcProxyList.php
+++ b/Compute/src/V1/TargetGrpcProxyList.php
@@ -27,7 +27,7 @@ class TargetGrpcProxyList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of the resource. Alwayscompute#targetGrpcProxy for target grpc proxies.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#targetGrpcProxy for target grpc proxies.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -66,7 +66,7 @@ class TargetGrpcProxyList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\TargetGrpcProxy>|\Google\Protobuf\Internal\RepeatedField $items
* A list of TargetGrpcProxy resources.
* @type string $kind
- * [Output Only] Type of the resource. Alwayscompute#targetGrpcProxy for target grpc proxies.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#targetGrpcProxy for target grpc proxies.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -147,7 +147,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of the resource. Alwayscompute#targetGrpcProxy for target grpc proxies.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#targetGrpcProxy for target grpc proxies.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -168,7 +168,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Alwayscompute#targetGrpcProxy for target grpc proxies.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#targetGrpcProxy for target grpc proxies.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
diff --git a/Compute/src/V1/TargetHttpProxy.php b/Compute/src/V1/TargetHttpProxy.php
index 5188d4656bd9..dd1a2ebccb36 100644
--- a/Compute/src/V1/TargetHttpProxy.php
+++ b/Compute/src/V1/TargetHttpProxy.php
@@ -29,7 +29,7 @@
class TargetHttpProxy extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -73,7 +73,7 @@ class TargetHttpProxy extends \Google\Protobuf\Internal\Message
*/
protected $id = null;
/**
- * [Output Only] Type of resource. Always compute#targetHttpProxy
+ * Output only. [Output Only] Type of resource. Always compute#targetHttpProxy
* for target HTTP proxies.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -106,7 +106,7 @@ class TargetHttpProxy extends \Google\Protobuf\Internal\Message
*/
protected $proxy_bind = null;
/**
- * [Output Only] URL of the region where the regional Target HTTP Proxy
+ * Output only. [Output Only] URL of the region where the regional Target HTTP Proxy
* resides. This field is not applicable to global Target HTTP Proxies.
*
* Generated from protobuf field optional string region = 138946292;
@@ -133,7 +133,7 @@ class TargetHttpProxy extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $description
* An optional description of this resource. Provide this property when you
@@ -157,7 +157,7 @@ class TargetHttpProxy extends \Google\Protobuf\Internal\Message
* [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type string $kind
- * [Output Only] Type of resource. Always compute#targetHttpProxy
+ * Output only. [Output Only] Type of resource. Always compute#targetHttpProxy
* for target HTTP proxies.
* @type string $name
* Name of the resource. Provided by the client when the resource is created.
@@ -178,7 +178,7 @@ class TargetHttpProxy extends \Google\Protobuf\Internal\Message
* requests when it receives them.
* The default is false.
* @type string $region
- * [Output Only] URL of the region where the regional Target HTTP Proxy
+ * Output only. [Output Only] URL of the region where the regional Target HTTP Proxy
* resides. This field is not applicable to global Target HTTP Proxies.
* @type string $self_link
* [Output Only] Server-defined URL for the resource.
@@ -193,7 +193,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -215,7 +215,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -401,7 +401,7 @@ public function setId($var)
}
/**
- * [Output Only] Type of resource. Always compute#targetHttpProxy
+ * Output only. [Output Only] Type of resource. Always compute#targetHttpProxy
* for target HTTP proxies.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -423,7 +423,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Always compute#targetHttpProxy
+ * Output only. [Output Only] Type of resource. Always compute#targetHttpProxy
* for target HTTP proxies.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -539,7 +539,7 @@ public function setProxyBind($var)
}
/**
- * [Output Only] URL of the region where the regional Target HTTP Proxy
+ * Output only. [Output Only] URL of the region where the regional Target HTTP Proxy
* resides. This field is not applicable to global Target HTTP Proxies.
*
* Generated from protobuf field optional string region = 138946292;
@@ -561,7 +561,7 @@ public function clearRegion()
}
/**
- * [Output Only] URL of the region where the regional Target HTTP Proxy
+ * Output only. [Output Only] URL of the region where the regional Target HTTP Proxy
* resides. This field is not applicable to global Target HTTP Proxies.
*
* Generated from protobuf field optional string region = 138946292;
diff --git a/Compute/src/V1/TargetHttpProxyAggregatedList.php b/Compute/src/V1/TargetHttpProxyAggregatedList.php
index e1a9c67b23bd..4d2deeee7488 100644
--- a/Compute/src/V1/TargetHttpProxyAggregatedList.php
+++ b/Compute/src/V1/TargetHttpProxyAggregatedList.php
@@ -27,7 +27,7 @@ class TargetHttpProxyAggregatedList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Alwayscompute#targetHttpProxyAggregatedList for lists of Target HTTP
+ * Output only. [Output Only] Type of resource. Alwayscompute#targetHttpProxyAggregatedList for lists of Target HTTP
* Proxies.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -44,13 +44,13 @@ class TargetHttpProxyAggregatedList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
@@ -67,7 +67,7 @@ class TargetHttpProxyAggregatedList extends \Google\Protobuf\Internal\Message
* @type array|\Google\Protobuf\Internal\MapField $items
* A list of TargetHttpProxiesScopedList resources.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#targetHttpProxyAggregatedList for lists of Target HTTP
+ * Output only. [Output Only] Type of resource. Alwayscompute#targetHttpProxyAggregatedList for lists of Target HTTP
* Proxies.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -76,9 +76,9 @@ class TargetHttpProxyAggregatedList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* }
*/
public function __construct($data = NULL) {
@@ -149,7 +149,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#targetHttpProxyAggregatedList for lists of Target HTTP
+ * Output only. [Output Only] Type of resource. Alwayscompute#targetHttpProxyAggregatedList for lists of Target HTTP
* Proxies.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -171,7 +171,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#targetHttpProxyAggregatedList for lists of Target HTTP
+ * Output only. [Output Only] Type of resource. Alwayscompute#targetHttpProxyAggregatedList for lists of Target HTTP
* Proxies.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -231,7 +231,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -252,7 +252,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -267,7 +267,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -278,7 +278,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/TargetHttpProxyList.php b/Compute/src/V1/TargetHttpProxyList.php
index 624a180d6cdb..c5234cea72d6 100644
--- a/Compute/src/V1/TargetHttpProxyList.php
+++ b/Compute/src/V1/TargetHttpProxyList.php
@@ -28,7 +28,7 @@ class TargetHttpProxyList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * Type of resource. Always compute#targetHttpProxyList for lists
+ * Output only. Type of resource. Always compute#targetHttpProxyList for lists
* of target HTTP proxies.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -45,7 +45,7 @@ class TargetHttpProxyList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -68,7 +68,7 @@ class TargetHttpProxyList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\TargetHttpProxy>|\Google\Protobuf\Internal\RepeatedField $items
* A list of TargetHttpProxy resources.
* @type string $kind
- * Type of resource. Always compute#targetHttpProxyList for lists
+ * Output only. Type of resource. Always compute#targetHttpProxyList for lists
* of target HTTP proxies.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -77,7 +77,7 @@ class TargetHttpProxyList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -150,7 +150,7 @@ public function setItems($var)
}
/**
- * Type of resource. Always compute#targetHttpProxyList for lists
+ * Output only. Type of resource. Always compute#targetHttpProxyList for lists
* of target HTTP proxies.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -172,7 +172,7 @@ public function clearKind()
}
/**
- * Type of resource. Always compute#targetHttpProxyList for lists
+ * Output only. Type of resource. Always compute#targetHttpProxyList for lists
* of target HTTP proxies.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -232,7 +232,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -253,7 +253,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/TargetHttpsProxy.php b/Compute/src/V1/TargetHttpsProxy.php
index 4a8e44e461e2..b0d823d59412 100644
--- a/Compute/src/V1/TargetHttpsProxy.php
+++ b/Compute/src/V1/TargetHttpsProxy.php
@@ -53,7 +53,7 @@ class TargetHttpsProxy extends \Google\Protobuf\Internal\Message
*/
protected $certificate_map = null;
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -97,7 +97,7 @@ class TargetHttpsProxy extends \Google\Protobuf\Internal\Message
*/
protected $id = null;
/**
- * [Output Only] Type of resource. Alwayscompute#targetHttpsProxy for target HTTPS proxies.
+ * Output only. [Output Only] Type of resource. Alwayscompute#targetHttpsProxy for target HTTPS proxies.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -146,7 +146,7 @@ class TargetHttpsProxy extends \Google\Protobuf\Internal\Message
*/
protected $quic_override = null;
/**
- * [Output Only] URL of the region where the regional TargetHttpsProxy
+ * Output only. [Output Only] URL of the region where the regional TargetHttpsProxy
* resides. This field is not applicable to global TargetHttpsProxies.
*
* Generated from protobuf field optional string region = 138946292;
@@ -259,7 +259,7 @@ class TargetHttpsProxy extends \Google\Protobuf\Internal\Message
* If set, sslCertificates will be ignored.
* Accepted format is//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificateMaps/{resourceName}.
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $description
* An optional description of this resource. Provide this property when you
@@ -283,7 +283,7 @@ class TargetHttpsProxy extends \Google\Protobuf\Internal\Message
* [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#targetHttpsProxy for target HTTPS proxies.
+ * Output only. [Output Only] Type of resource. Alwayscompute#targetHttpsProxy for target HTTPS proxies.
* @type string $name
* Name of the resource. Provided by the client when the resource is created.
* The name must be 1-63 characters long, and comply withRFC1035.
@@ -316,7 +316,7 @@ class TargetHttpsProxy extends \Google\Protobuf\Internal\Message
* - If the quic-override flag is not specified,NONE is implied.
* Check the QuicOverride enum for the list of possible values.
* @type string $region
- * [Output Only] URL of the region where the regional TargetHttpsProxy
+ * Output only. [Output Only] URL of the region where the regional TargetHttpsProxy
* resides. This field is not applicable to global TargetHttpsProxies.
* @type string $self_link
* [Output Only] Server-defined URL for the resource.
@@ -481,7 +481,7 @@ public function setCertificateMap($var)
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -503,7 +503,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -689,7 +689,7 @@ public function setId($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#targetHttpsProxy for target HTTPS proxies.
+ * Output only. [Output Only] Type of resource. Alwayscompute#targetHttpsProxy for target HTTPS proxies.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -710,7 +710,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#targetHttpsProxy for target HTTPS proxies.
+ * Output only. [Output Only] Type of resource. Alwayscompute#targetHttpsProxy for target HTTPS proxies.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -883,7 +883,7 @@ public function setQuicOverride($var)
}
/**
- * [Output Only] URL of the region where the regional TargetHttpsProxy
+ * Output only. [Output Only] URL of the region where the regional TargetHttpsProxy
* resides. This field is not applicable to global TargetHttpsProxies.
*
* Generated from protobuf field optional string region = 138946292;
@@ -905,7 +905,7 @@ public function clearRegion()
}
/**
- * [Output Only] URL of the region where the regional TargetHttpsProxy
+ * Output only. [Output Only] URL of the region where the regional TargetHttpsProxy
* resides. This field is not applicable to global TargetHttpsProxies.
*
* Generated from protobuf field optional string region = 138946292;
diff --git a/Compute/src/V1/TargetHttpsProxyAggregatedList.php b/Compute/src/V1/TargetHttpsProxyAggregatedList.php
index d35b7cc97cf8..f7507d8a9fc2 100644
--- a/Compute/src/V1/TargetHttpsProxyAggregatedList.php
+++ b/Compute/src/V1/TargetHttpsProxyAggregatedList.php
@@ -27,7 +27,7 @@ class TargetHttpsProxyAggregatedList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Alwayscompute#targetHttpsProxyAggregatedList for lists of Target
+ * Output only. [Output Only] Type of resource. Alwayscompute#targetHttpsProxyAggregatedList for lists of Target
* HTTP Proxies.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -44,13 +44,13 @@ class TargetHttpsProxyAggregatedList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
@@ -73,7 +73,7 @@ class TargetHttpsProxyAggregatedList extends \Google\Protobuf\Internal\Message
* @type array|\Google\Protobuf\Internal\MapField $items
* A list of TargetHttpsProxiesScopedList resources.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#targetHttpsProxyAggregatedList for lists of Target
+ * Output only. [Output Only] Type of resource. Alwayscompute#targetHttpsProxyAggregatedList for lists of Target
* HTTP Proxies.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -82,9 +82,9 @@ class TargetHttpsProxyAggregatedList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -157,7 +157,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#targetHttpsProxyAggregatedList for lists of Target
+ * Output only. [Output Only] Type of resource. Alwayscompute#targetHttpsProxyAggregatedList for lists of Target
* HTTP Proxies.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -179,7 +179,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#targetHttpsProxyAggregatedList for lists of Target
+ * Output only. [Output Only] Type of resource. Alwayscompute#targetHttpsProxyAggregatedList for lists of Target
* HTTP Proxies.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -239,7 +239,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -260,7 +260,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -275,7 +275,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -286,7 +286,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/TargetHttpsProxyList.php b/Compute/src/V1/TargetHttpsProxyList.php
index a0043ff1ffa7..9a78f9c17e3c 100644
--- a/Compute/src/V1/TargetHttpsProxyList.php
+++ b/Compute/src/V1/TargetHttpsProxyList.php
@@ -28,7 +28,7 @@ class TargetHttpsProxyList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * Type of resource. Always compute#targetHttpsProxyList for
+ * Output only. Type of resource. Always compute#targetHttpsProxyList for
* lists of target HTTPS proxies.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -45,7 +45,7 @@ class TargetHttpsProxyList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -68,7 +68,7 @@ class TargetHttpsProxyList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\TargetHttpsProxy>|\Google\Protobuf\Internal\RepeatedField $items
* A list of TargetHttpsProxy resources.
* @type string $kind
- * Type of resource. Always compute#targetHttpsProxyList for
+ * Output only. Type of resource. Always compute#targetHttpsProxyList for
* lists of target HTTPS proxies.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -77,7 +77,7 @@ class TargetHttpsProxyList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -150,7 +150,7 @@ public function setItems($var)
}
/**
- * Type of resource. Always compute#targetHttpsProxyList for
+ * Output only. Type of resource. Always compute#targetHttpsProxyList for
* lists of target HTTPS proxies.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -172,7 +172,7 @@ public function clearKind()
}
/**
- * Type of resource. Always compute#targetHttpsProxyList for
+ * Output only. Type of resource. Always compute#targetHttpsProxyList for
* lists of target HTTPS proxies.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -232,7 +232,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -253,7 +253,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/TargetInstance.php b/Compute/src/V1/TargetInstance.php
index e66c6031b753..142dc817e625 100644
--- a/Compute/src/V1/TargetInstance.php
+++ b/Compute/src/V1/TargetInstance.php
@@ -21,7 +21,7 @@
class TargetInstance extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -54,7 +54,7 @@ class TargetInstance extends \Google\Protobuf\Internal\Message
*/
protected $instance = null;
/**
- * [Output Only] The type of the resource. Alwayscompute#targetInstance for target instances.
+ * Output only. [Output Only] The type of the resource. Alwayscompute#targetInstance for target instances.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -102,7 +102,7 @@ class TargetInstance extends \Google\Protobuf\Internal\Message
*/
protected $self_link = null;
/**
- * [Output Only] URL of the zone where the target instance resides.
+ * Output only. [Output Only] URL of the zone where the target instance resides.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
*
@@ -117,7 +117,7 @@ class TargetInstance extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $description
* An optional description of this resource. Provide this property when you
@@ -134,7 +134,7 @@ class TargetInstance extends \Google\Protobuf\Internal\Message
* - projects/project/zones/zone/instances/instance
* - zones/zone/instances/instance
* @type string $kind
- * [Output Only] The type of the resource. Alwayscompute#targetInstance for target instances.
+ * Output only. [Output Only] The type of the resource. Alwayscompute#targetInstance for target instances.
* @type string $name
* Name of the resource. Provided by the client when the resource is created.
* The name must be 1-63 characters long, and comply withRFC1035.
@@ -158,7 +158,7 @@ class TargetInstance extends \Google\Protobuf\Internal\Message
* @type string $self_link
* [Output Only] Server-defined URL for the resource.
* @type string $zone
- * [Output Only] URL of the zone where the target instance resides.
+ * Output only. [Output Only] URL of the zone where the target instance resides.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
* }
@@ -169,7 +169,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -191,7 +191,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -331,7 +331,7 @@ public function setInstance($var)
}
/**
- * [Output Only] The type of the resource. Alwayscompute#targetInstance for target instances.
+ * Output only. [Output Only] The type of the resource. Alwayscompute#targetInstance for target instances.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -352,7 +352,7 @@ public function clearKind()
}
/**
- * [Output Only] The type of the resource. Alwayscompute#targetInstance for target instances.
+ * Output only. [Output Only] The type of the resource. Alwayscompute#targetInstance for target instances.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -571,7 +571,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] URL of the zone where the target instance resides.
+ * Output only. [Output Only] URL of the zone where the target instance resides.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
*
@@ -594,7 +594,7 @@ public function clearZone()
}
/**
- * [Output Only] URL of the zone where the target instance resides.
+ * Output only. [Output Only] URL of the zone where the target instance resides.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
*
diff --git a/Compute/src/V1/TargetInstanceAggregatedList.php b/Compute/src/V1/TargetInstanceAggregatedList.php
index feeaa2582cab..94a6d8cac9f0 100644
--- a/Compute/src/V1/TargetInstanceAggregatedList.php
+++ b/Compute/src/V1/TargetInstanceAggregatedList.php
@@ -27,7 +27,7 @@ class TargetInstanceAggregatedList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -43,13 +43,13 @@ class TargetInstanceAggregatedList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
@@ -72,7 +72,7 @@ class TargetInstanceAggregatedList extends \Google\Protobuf\Internal\Message
* @type array|\Google\Protobuf\Internal\MapField $items
* A list of TargetInstance resources.
* @type string $kind
- * Type of resource.
+ * Output only. Type of resource.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -80,9 +80,9 @@ class TargetInstanceAggregatedList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -155,7 +155,7 @@ public function setItems($var)
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -176,7 +176,7 @@ public function clearKind()
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -235,7 +235,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -256,7 +256,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -271,7 +271,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -282,7 +282,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/TargetInstanceList.php b/Compute/src/V1/TargetInstanceList.php
index cfebd843b7d4..63f14ff4f14e 100644
--- a/Compute/src/V1/TargetInstanceList.php
+++ b/Compute/src/V1/TargetInstanceList.php
@@ -28,7 +28,7 @@ class TargetInstanceList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -44,7 +44,7 @@ class TargetInstanceList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -67,7 +67,7 @@ class TargetInstanceList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\TargetInstance>|\Google\Protobuf\Internal\RepeatedField $items
* A list of TargetInstance resources.
* @type string $kind
- * Type of resource.
+ * Output only. Type of resource.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -75,7 +75,7 @@ class TargetInstanceList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -148,7 +148,7 @@ public function setItems($var)
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -169,7 +169,7 @@ public function clearKind()
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -228,7 +228,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -249,7 +249,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/TargetPool.php b/Compute/src/V1/TargetPool.php
index c4bf293d600d..d22d1d3fdeea 100644
--- a/Compute/src/V1/TargetPool.php
+++ b/Compute/src/V1/TargetPool.php
@@ -37,7 +37,7 @@ class TargetPool extends \Google\Protobuf\Internal\Message
*/
protected $backup_pool = null;
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -92,7 +92,7 @@ class TargetPool extends \Google\Protobuf\Internal\Message
*/
private $instances;
/**
- * [Output Only] Type of the resource. Always compute#targetPool
+ * Output only. [Output Only] Type of the resource. Always compute#targetPool
* for target pools.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -111,7 +111,7 @@ class TargetPool extends \Google\Protobuf\Internal\Message
*/
protected $name = null;
/**
- * [Output Only] URL of the region where the target pool resides.
+ * Output only. [Output Only] URL of the region where the target pool resides.
*
* Generated from protobuf field optional string region = 138946292;
*/
@@ -165,7 +165,7 @@ class TargetPool extends \Google\Protobuf\Internal\Message
* mode, where traffic will be spread to the healthy instances with the
* best effort, or to all instances when no instance is healthy.
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $description
* An optional description of this resource. Provide this property when you
@@ -196,7 +196,7 @@ class TargetPool extends \Google\Protobuf\Internal\Message
* A list of resource URLs to the virtual machine instances serving this pool.
* They must live in zones contained in the same region as this pool.
* @type string $kind
- * [Output Only] Type of the resource. Always compute#targetPool
+ * Output only. [Output Only] Type of the resource. Always compute#targetPool
* for target pools.
* @type string $name
* Name of the resource. Provided by the client when the resource is created.
@@ -207,7 +207,7 @@ class TargetPool extends \Google\Protobuf\Internal\Message
* be a dash, lowercase letter, or digit, except the last character, which
* cannot be a dash.
* @type string $region
- * [Output Only] URL of the region where the target pool resides.
+ * Output only. [Output Only] URL of the region where the target pool resides.
* @type string $security_policy
* [Output Only] The resource URL for the security policy associated with this
* target pool.
@@ -290,7 +290,7 @@ public function setBackupPool($var)
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -312,7 +312,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -524,7 +524,7 @@ public function setInstances($var)
}
/**
- * [Output Only] Type of the resource. Always compute#targetPool
+ * Output only. [Output Only] Type of the resource. Always compute#targetPool
* for target pools.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -546,7 +546,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Always compute#targetPool
+ * Output only. [Output Only] Type of the resource. Always compute#targetPool
* for target pools.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -610,7 +610,7 @@ public function setName($var)
}
/**
- * [Output Only] URL of the region where the target pool resides.
+ * Output only. [Output Only] URL of the region where the target pool resides.
*
* Generated from protobuf field optional string region = 138946292;
* @return string
@@ -631,7 +631,7 @@ public function clearRegion()
}
/**
- * [Output Only] URL of the region where the target pool resides.
+ * Output only. [Output Only] URL of the region where the target pool resides.
*
* Generated from protobuf field optional string region = 138946292;
* @param string $var
diff --git a/Compute/src/V1/TargetPoolAggregatedList.php b/Compute/src/V1/TargetPoolAggregatedList.php
index cdd0509872ef..1a53256cc491 100644
--- a/Compute/src/V1/TargetPoolAggregatedList.php
+++ b/Compute/src/V1/TargetPoolAggregatedList.php
@@ -27,7 +27,7 @@ class TargetPoolAggregatedList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Alwayscompute#targetPoolAggregatedList for aggregated lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#targetPoolAggregatedList for aggregated lists of
* target pools.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -44,13 +44,13 @@ class TargetPoolAggregatedList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
@@ -73,7 +73,7 @@ class TargetPoolAggregatedList extends \Google\Protobuf\Internal\Message
* @type array|\Google\Protobuf\Internal\MapField $items
* A list of TargetPool resources.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#targetPoolAggregatedList for aggregated lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#targetPoolAggregatedList for aggregated lists of
* target pools.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -82,9 +82,9 @@ class TargetPoolAggregatedList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -157,7 +157,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#targetPoolAggregatedList for aggregated lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#targetPoolAggregatedList for aggregated lists of
* target pools.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -179,7 +179,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#targetPoolAggregatedList for aggregated lists of
+ * Output only. [Output Only] Type of resource. Alwayscompute#targetPoolAggregatedList for aggregated lists of
* target pools.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -239,7 +239,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -260,7 +260,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -275,7 +275,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -286,7 +286,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/TargetPoolInstanceHealth.php b/Compute/src/V1/TargetPoolInstanceHealth.php
index ef09705ccd36..1781544c7fb6 100644
--- a/Compute/src/V1/TargetPoolInstanceHealth.php
+++ b/Compute/src/V1/TargetPoolInstanceHealth.php
@@ -19,7 +19,7 @@ class TargetPoolInstanceHealth extends \Google\Protobuf\Internal\Message
*/
private $health_status;
/**
- * [Output Only] Type of resource. Alwayscompute#targetPoolInstanceHealth when checking the health of
+ * Output only. [Output Only] Type of resource. Alwayscompute#targetPoolInstanceHealth when checking the health of
* an instance.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -34,7 +34,7 @@ class TargetPoolInstanceHealth extends \Google\Protobuf\Internal\Message
*
* @type array<\Google\Cloud\Compute\V1\HealthStatus>|\Google\Protobuf\Internal\RepeatedField $health_status
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#targetPoolInstanceHealth when checking the health of
+ * Output only. [Output Only] Type of resource. Alwayscompute#targetPoolInstanceHealth when checking the health of
* an instance.
* }
*/
@@ -66,7 +66,7 @@ public function setHealthStatus($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#targetPoolInstanceHealth when checking the health of
+ * Output only. [Output Only] Type of resource. Alwayscompute#targetPoolInstanceHealth when checking the health of
* an instance.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -88,7 +88,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#targetPoolInstanceHealth when checking the health of
+ * Output only. [Output Only] Type of resource. Alwayscompute#targetPoolInstanceHealth when checking the health of
* an instance.
*
* Generated from protobuf field optional string kind = 3292052;
diff --git a/Compute/src/V1/TargetPoolList.php b/Compute/src/V1/TargetPoolList.php
index 3c46d10690cb..5ce9bb973275 100644
--- a/Compute/src/V1/TargetPoolList.php
+++ b/Compute/src/V1/TargetPoolList.php
@@ -28,7 +28,7 @@ class TargetPoolList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Always compute#targetPoolList
+ * Output only. [Output Only] Type of resource. Always compute#targetPoolList
* for lists of target pools.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -45,7 +45,7 @@ class TargetPoolList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -68,7 +68,7 @@ class TargetPoolList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\TargetPool>|\Google\Protobuf\Internal\RepeatedField $items
* A list of TargetPool resources.
* @type string $kind
- * [Output Only] Type of resource. Always compute#targetPoolList
+ * Output only. [Output Only] Type of resource. Always compute#targetPoolList
* for lists of target pools.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -77,7 +77,7 @@ class TargetPoolList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -150,7 +150,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Always compute#targetPoolList
+ * Output only. [Output Only] Type of resource. Always compute#targetPoolList
* for lists of target pools.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -172,7 +172,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Always compute#targetPoolList
+ * Output only. [Output Only] Type of resource. Always compute#targetPoolList
* for lists of target pools.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -232,7 +232,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -253,7 +253,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/TargetSslProxy.php b/Compute/src/V1/TargetSslProxy.php
index 8a7ef14785fc..e1297d4327ff 100644
--- a/Compute/src/V1/TargetSslProxy.php
+++ b/Compute/src/V1/TargetSslProxy.php
@@ -30,7 +30,7 @@ class TargetSslProxy extends \Google\Protobuf\Internal\Message
*/
protected $certificate_map = null;
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -51,7 +51,7 @@ class TargetSslProxy extends \Google\Protobuf\Internal\Message
*/
protected $id = null;
/**
- * [Output Only] Type of the resource. Alwayscompute#targetSslProxy for target SSL proxies.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#targetSslProxy for target SSL proxies.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -121,7 +121,7 @@ class TargetSslProxy extends \Google\Protobuf\Internal\Message
* If set, sslCertificates will be ignored.
* Accepted format is//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificateMaps/{resourceName}.
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $description
* An optional description of this resource. Provide this property when you
@@ -130,7 +130,7 @@ class TargetSslProxy extends \Google\Protobuf\Internal\Message
* [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type string $kind
- * [Output Only] Type of the resource. Alwayscompute#targetSslProxy for target SSL proxies.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#targetSslProxy for target SSL proxies.
* @type string $name
* Name of the resource. Provided by the client when the resource is created.
* The name must be 1-63 characters long, and comply withRFC1035.
@@ -210,7 +210,7 @@ public function setCertificateMap($var)
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -232,7 +232,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -324,7 +324,7 @@ public function setId($var)
}
/**
- * [Output Only] Type of the resource. Alwayscompute#targetSslProxy for target SSL proxies.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#targetSslProxy for target SSL proxies.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -345,7 +345,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Alwayscompute#targetSslProxy for target SSL proxies.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#targetSslProxy for target SSL proxies.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
diff --git a/Compute/src/V1/TargetSslProxyList.php b/Compute/src/V1/TargetSslProxyList.php
index 25ac8ab117d2..b7b6c72b8176 100644
--- a/Compute/src/V1/TargetSslProxyList.php
+++ b/Compute/src/V1/TargetSslProxyList.php
@@ -28,7 +28,7 @@ class TargetSslProxyList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -44,7 +44,7 @@ class TargetSslProxyList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -67,7 +67,7 @@ class TargetSslProxyList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\TargetSslProxy>|\Google\Protobuf\Internal\RepeatedField $items
* A list of TargetSslProxy resources.
* @type string $kind
- * Type of resource.
+ * Output only. Type of resource.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -75,7 +75,7 @@ class TargetSslProxyList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -148,7 +148,7 @@ public function setItems($var)
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -169,7 +169,7 @@ public function clearKind()
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -228,7 +228,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -249,7 +249,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/TargetTcpProxy.php b/Compute/src/V1/TargetTcpProxy.php
index 80e8fe5ac3e8..f61a3a28e322 100644
--- a/Compute/src/V1/TargetTcpProxy.php
+++ b/Compute/src/V1/TargetTcpProxy.php
@@ -20,7 +20,7 @@
class TargetTcpProxy extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -41,7 +41,7 @@ class TargetTcpProxy extends \Google\Protobuf\Internal\Message
*/
protected $id = null;
/**
- * [Output Only] Type of the resource. Alwayscompute#targetTcpProxy for target TCP proxies.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#targetTcpProxy for target TCP proxies.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -82,7 +82,7 @@ class TargetTcpProxy extends \Google\Protobuf\Internal\Message
*/
protected $proxy_header = null;
/**
- * [Output Only] URL of the region where the regional TCP proxy resides.
+ * Output only. [Output Only] URL of the region where the regional TCP proxy resides.
* This field is not applicable to global TCP proxy.
*
* Generated from protobuf field optional string region = 138946292;
@@ -108,7 +108,7 @@ class TargetTcpProxy extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $description
* An optional description of this resource. Provide this property when you
@@ -117,7 +117,7 @@ class TargetTcpProxy extends \Google\Protobuf\Internal\Message
* [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type string $kind
- * [Output Only] Type of the resource. Alwayscompute#targetTcpProxy for target TCP proxies.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#targetTcpProxy for target TCP proxies.
* @type string $name
* Name of the resource. Provided by the client when the resource is created.
* The name must be 1-63 characters long, and comply withRFC1035.
@@ -142,7 +142,7 @@ class TargetTcpProxy extends \Google\Protobuf\Internal\Message
* is NONE.
* Check the ProxyHeader enum for the list of possible values.
* @type string $region
- * [Output Only] URL of the region where the regional TCP proxy resides.
+ * Output only. [Output Only] URL of the region where the regional TCP proxy resides.
* This field is not applicable to global TCP proxy.
* @type string $self_link
* [Output Only] Server-defined URL for the resource.
@@ -156,7 +156,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -178,7 +178,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -270,7 +270,7 @@ public function setId($var)
}
/**
- * [Output Only] Type of the resource. Alwayscompute#targetTcpProxy for target TCP proxies.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#targetTcpProxy for target TCP proxies.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -291,7 +291,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Alwayscompute#targetTcpProxy for target TCP proxies.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#targetTcpProxy for target TCP proxies.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -448,7 +448,7 @@ public function setProxyHeader($var)
}
/**
- * [Output Only] URL of the region where the regional TCP proxy resides.
+ * Output only. [Output Only] URL of the region where the regional TCP proxy resides.
* This field is not applicable to global TCP proxy.
*
* Generated from protobuf field optional string region = 138946292;
@@ -470,7 +470,7 @@ public function clearRegion()
}
/**
- * [Output Only] URL of the region where the regional TCP proxy resides.
+ * Output only. [Output Only] URL of the region where the regional TCP proxy resides.
* This field is not applicable to global TCP proxy.
*
* Generated from protobuf field optional string region = 138946292;
diff --git a/Compute/src/V1/TargetTcpProxyAggregatedList.php b/Compute/src/V1/TargetTcpProxyAggregatedList.php
index b971efd1cd6a..336d50dbe32c 100644
--- a/Compute/src/V1/TargetTcpProxyAggregatedList.php
+++ b/Compute/src/V1/TargetTcpProxyAggregatedList.php
@@ -27,7 +27,7 @@ class TargetTcpProxyAggregatedList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Alwayscompute#targetTcpProxyAggregatedList for lists of Target
+ * Output only. [Output Only] Type of resource. Alwayscompute#targetTcpProxyAggregatedList for lists of Target
* TCP Proxies.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -44,13 +44,13 @@ class TargetTcpProxyAggregatedList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
@@ -73,7 +73,7 @@ class TargetTcpProxyAggregatedList extends \Google\Protobuf\Internal\Message
* @type array|\Google\Protobuf\Internal\MapField $items
* A list of TargetTcpProxiesScopedList resources.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#targetTcpProxyAggregatedList for lists of Target
+ * Output only. [Output Only] Type of resource. Alwayscompute#targetTcpProxyAggregatedList for lists of Target
* TCP Proxies.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -82,9 +82,9 @@ class TargetTcpProxyAggregatedList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -157,7 +157,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#targetTcpProxyAggregatedList for lists of Target
+ * Output only. [Output Only] Type of resource. Alwayscompute#targetTcpProxyAggregatedList for lists of Target
* TCP Proxies.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -179,7 +179,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#targetTcpProxyAggregatedList for lists of Target
+ * Output only. [Output Only] Type of resource. Alwayscompute#targetTcpProxyAggregatedList for lists of Target
* TCP Proxies.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -239,7 +239,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -260,7 +260,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -275,7 +275,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -286,7 +286,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/TargetTcpProxyList.php b/Compute/src/V1/TargetTcpProxyList.php
index 083bf748ba04..d22106b11233 100644
--- a/Compute/src/V1/TargetTcpProxyList.php
+++ b/Compute/src/V1/TargetTcpProxyList.php
@@ -28,7 +28,7 @@ class TargetTcpProxyList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -44,7 +44,7 @@ class TargetTcpProxyList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -67,7 +67,7 @@ class TargetTcpProxyList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\TargetTcpProxy>|\Google\Protobuf\Internal\RepeatedField $items
* A list of TargetTcpProxy resources.
* @type string $kind
- * Type of resource.
+ * Output only. Type of resource.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -75,7 +75,7 @@ class TargetTcpProxyList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -148,7 +148,7 @@ public function setItems($var)
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -169,7 +169,7 @@ public function clearKind()
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -228,7 +228,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -249,7 +249,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/TargetVpnGateway.php b/Compute/src/V1/TargetVpnGateway.php
index 6e208e8a556e..0ac680cc5d7a 100644
--- a/Compute/src/V1/TargetVpnGateway.php
+++ b/Compute/src/V1/TargetVpnGateway.php
@@ -19,7 +19,7 @@
class TargetVpnGateway extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -48,7 +48,7 @@ class TargetVpnGateway extends \Google\Protobuf\Internal\Message
*/
protected $id = null;
/**
- * [Output Only] Type of resource. Alwayscompute#targetVpnGateway for target VPN gateways.
+ * Output only. [Output Only] Type of resource. Alwayscompute#targetVpnGateway for target VPN gateways.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -130,7 +130,7 @@ class TargetVpnGateway extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $description
* An optional description of this resource. Provide this property when you
@@ -143,7 +143,7 @@ class TargetVpnGateway extends \Google\Protobuf\Internal\Message
* [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#targetVpnGateway for target VPN gateways.
+ * Output only. [Output Only] Type of resource. Alwayscompute#targetVpnGateway for target VPN gateways.
* @type string $label_fingerprint
* A fingerprint for the labels being applied to this TargetVpnGateway, which
* is essentially a hash of the labels set used for optimistic locking. The
@@ -189,7 +189,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -211,7 +211,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -333,7 +333,7 @@ public function setId($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#targetVpnGateway for target VPN gateways.
+ * Output only. [Output Only] Type of resource. Alwayscompute#targetVpnGateway for target VPN gateways.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -354,7 +354,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#targetVpnGateway for target VPN gateways.
+ * Output only. [Output Only] Type of resource. Alwayscompute#targetVpnGateway for target VPN gateways.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
diff --git a/Compute/src/V1/TargetVpnGatewayAggregatedList.php b/Compute/src/V1/TargetVpnGatewayAggregatedList.php
index 78cfe9052b93..34fbd99d9b3f 100644
--- a/Compute/src/V1/TargetVpnGatewayAggregatedList.php
+++ b/Compute/src/V1/TargetVpnGatewayAggregatedList.php
@@ -27,7 +27,7 @@ class TargetVpnGatewayAggregatedList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Alwayscompute#targetVpnGateway for target VPN gateways.
+ * Output only. [Output Only] Type of resource. Alwayscompute#targetVpnGateway for target VPN gateways.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -43,13 +43,13 @@ class TargetVpnGatewayAggregatedList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
@@ -72,7 +72,7 @@ class TargetVpnGatewayAggregatedList extends \Google\Protobuf\Internal\Message
* @type array|\Google\Protobuf\Internal\MapField $items
* A list of TargetVpnGateway resources.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#targetVpnGateway for target VPN gateways.
+ * Output only. [Output Only] Type of resource. Alwayscompute#targetVpnGateway for target VPN gateways.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -80,9 +80,9 @@ class TargetVpnGatewayAggregatedList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -155,7 +155,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#targetVpnGateway for target VPN gateways.
+ * Output only. [Output Only] Type of resource. Alwayscompute#targetVpnGateway for target VPN gateways.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -176,7 +176,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#targetVpnGateway for target VPN gateways.
+ * Output only. [Output Only] Type of resource. Alwayscompute#targetVpnGateway for target VPN gateways.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -235,7 +235,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -256,7 +256,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -271,7 +271,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -282,7 +282,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/TargetVpnGatewayList.php b/Compute/src/V1/TargetVpnGatewayList.php
index 5fe797cb6eb0..5fa9467414af 100644
--- a/Compute/src/V1/TargetVpnGatewayList.php
+++ b/Compute/src/V1/TargetVpnGatewayList.php
@@ -28,7 +28,7 @@ class TargetVpnGatewayList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Alwayscompute#targetVpnGateway for target VPN gateways.
+ * Output only. [Output Only] Type of resource. Alwayscompute#targetVpnGateway for target VPN gateways.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -44,7 +44,7 @@ class TargetVpnGatewayList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -67,7 +67,7 @@ class TargetVpnGatewayList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\TargetVpnGateway>|\Google\Protobuf\Internal\RepeatedField $items
* A list of TargetVpnGateway resources.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#targetVpnGateway for target VPN gateways.
+ * Output only. [Output Only] Type of resource. Alwayscompute#targetVpnGateway for target VPN gateways.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -75,7 +75,7 @@ class TargetVpnGatewayList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -148,7 +148,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#targetVpnGateway for target VPN gateways.
+ * Output only. [Output Only] Type of resource. Alwayscompute#targetVpnGateway for target VPN gateways.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -169,7 +169,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#targetVpnGateway for target VPN gateways.
+ * Output only. [Output Only] Type of resource. Alwayscompute#targetVpnGateway for target VPN gateways.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -228,7 +228,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -249,7 +249,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/UrlMap.php b/Compute/src/V1/UrlMap.php
index fe1a49b33d64..b11a3f4b2b6e 100644
--- a/Compute/src/V1/UrlMap.php
+++ b/Compute/src/V1/UrlMap.php
@@ -38,7 +38,7 @@
class UrlMap extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -160,7 +160,7 @@ class UrlMap extends \Google\Protobuf\Internal\Message
*/
protected $id = null;
/**
- * [Output Only] Type of the resource. Always compute#urlMaps for
+ * Output only. [Output Only] Type of the resource. Always compute#urlMaps for
* url maps.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -185,7 +185,7 @@ class UrlMap extends \Google\Protobuf\Internal\Message
*/
private $path_matchers;
/**
- * [Output Only] URL of the region where the regional URL map resides.
+ * Output only. [Output Only] URL of the region where the regional URL map resides.
* This field is not applicable to global URL maps.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
@@ -216,7 +216,7 @@ class UrlMap extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type \Google\Cloud\Compute\V1\CustomErrorResponsePolicy $default_custom_error_response_policy
* defaultCustomErrorResponsePolicy specifies how the Load
@@ -298,7 +298,7 @@ class UrlMap extends \Google\Protobuf\Internal\Message
* [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type string $kind
- * [Output Only] Type of the resource. Always compute#urlMaps for
+ * Output only. [Output Only] Type of the resource. Always compute#urlMaps for
* url maps.
* @type string $name
* Name of the resource. Provided by the client when the resource is created.
@@ -311,7 +311,7 @@ class UrlMap extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\PathMatcher>|\Google\Protobuf\Internal\RepeatedField $path_matchers
* The list of named PathMatchers to use against the URL.
* @type string $region
- * [Output Only] URL of the region where the regional URL map resides.
+ * Output only. [Output Only] URL of the region where the regional URL map resides.
* This field is not applicable to global URL maps.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
@@ -330,7 +330,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -352,7 +352,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -804,7 +804,7 @@ public function setId($var)
}
/**
- * [Output Only] Type of the resource. Always compute#urlMaps for
+ * Output only. [Output Only] Type of the resource. Always compute#urlMaps for
* url maps.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -826,7 +826,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Always compute#urlMaps for
+ * Output only. [Output Only] Type of the resource. Always compute#urlMaps for
* url maps.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -916,7 +916,7 @@ public function setPathMatchers($var)
}
/**
- * [Output Only] URL of the region where the regional URL map resides.
+ * Output only. [Output Only] URL of the region where the regional URL map resides.
* This field is not applicable to global URL maps.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
@@ -940,7 +940,7 @@ public function clearRegion()
}
/**
- * [Output Only] URL of the region where the regional URL map resides.
+ * Output only. [Output Only] URL of the region where the regional URL map resides.
* This field is not applicable to global URL maps.
* You must specify this field as part of the HTTP request URL. It is
* not settable as a field in the request body.
diff --git a/Compute/src/V1/UrlMapList.php b/Compute/src/V1/UrlMapList.php
index 4d759a19094c..69ec7bf63fed 100644
--- a/Compute/src/V1/UrlMapList.php
+++ b/Compute/src/V1/UrlMapList.php
@@ -28,7 +28,7 @@ class UrlMapList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -44,7 +44,7 @@ class UrlMapList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -67,7 +67,7 @@ class UrlMapList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\UrlMap>|\Google\Protobuf\Internal\RepeatedField $items
* A list of UrlMap resources.
* @type string $kind
- * Type of resource.
+ * Output only. Type of resource.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -75,7 +75,7 @@ class UrlMapList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -148,7 +148,7 @@ public function setItems($var)
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -169,7 +169,7 @@ public function clearKind()
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -228,7 +228,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -249,7 +249,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/UrlMapsAggregatedList.php b/Compute/src/V1/UrlMapsAggregatedList.php
index 5ce5c818759e..9d31144e1b6e 100644
--- a/Compute/src/V1/UrlMapsAggregatedList.php
+++ b/Compute/src/V1/UrlMapsAggregatedList.php
@@ -27,7 +27,7 @@ class UrlMapsAggregatedList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -43,13 +43,13 @@ class UrlMapsAggregatedList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
@@ -72,7 +72,7 @@ class UrlMapsAggregatedList extends \Google\Protobuf\Internal\Message
* @type array|\Google\Protobuf\Internal\MapField $items
* A list of UrlMapsScopedList resources.
* @type string $kind
- * Type of resource.
+ * Output only. Type of resource.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -80,9 +80,9 @@ class UrlMapsAggregatedList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -155,7 +155,7 @@ public function setItems($var)
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -176,7 +176,7 @@ public function clearKind()
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -235,7 +235,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -256,7 +256,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -271,7 +271,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -282,7 +282,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/UsableSubnetwork.php b/Compute/src/V1/UsableSubnetwork.php
index 77222181b13e..9e6779d6fb4e 100644
--- a/Compute/src/V1/UsableSubnetwork.php
+++ b/Compute/src/V1/UsableSubnetwork.php
@@ -16,14 +16,14 @@
class UsableSubnetwork extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] The external IPv6 address range that is assigned to this
+ * Output only. [Output Only] The external IPv6 address range that is assigned to this
* subnetwork.
*
* Generated from protobuf field optional string external_ipv6_prefix = 139299190;
*/
protected $external_ipv6_prefix = null;
/**
- * [Output Only] The internal IPv6 address range that is assigned to this
+ * Output only. [Output Only] The internal IPv6 address range that is assigned to this
* subnetwork.
*
* Generated from protobuf field optional string internal_ipv6_prefix = 506270056;
@@ -99,10 +99,10 @@ class UsableSubnetwork extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $external_ipv6_prefix
- * [Output Only] The external IPv6 address range that is assigned to this
+ * Output only. [Output Only] The external IPv6 address range that is assigned to this
* subnetwork.
* @type string $internal_ipv6_prefix
- * [Output Only] The internal IPv6 address range that is assigned to this
+ * Output only. [Output Only] The internal IPv6 address range that is assigned to this
* subnetwork.
* @type string $ip_cidr_range
* The range of internal addresses that are owned by this subnetwork.
@@ -142,7 +142,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] The external IPv6 address range that is assigned to this
+ * Output only. [Output Only] The external IPv6 address range that is assigned to this
* subnetwork.
*
* Generated from protobuf field optional string external_ipv6_prefix = 139299190;
@@ -164,7 +164,7 @@ public function clearExternalIpv6Prefix()
}
/**
- * [Output Only] The external IPv6 address range that is assigned to this
+ * Output only. [Output Only] The external IPv6 address range that is assigned to this
* subnetwork.
*
* Generated from protobuf field optional string external_ipv6_prefix = 139299190;
@@ -180,7 +180,7 @@ public function setExternalIpv6Prefix($var)
}
/**
- * [Output Only] The internal IPv6 address range that is assigned to this
+ * Output only. [Output Only] The internal IPv6 address range that is assigned to this
* subnetwork.
*
* Generated from protobuf field optional string internal_ipv6_prefix = 506270056;
@@ -202,7 +202,7 @@ public function clearInternalIpv6Prefix()
}
/**
- * [Output Only] The internal IPv6 address range that is assigned to this
+ * Output only. [Output Only] The internal IPv6 address range that is assigned to this
* subnetwork.
*
* Generated from protobuf field optional string internal_ipv6_prefix = 506270056;
diff --git a/Compute/src/V1/UsableSubnetworksAggregatedList.php b/Compute/src/V1/UsableSubnetworksAggregatedList.php
index 5aa15e5b9ceb..6085554590fb 100644
--- a/Compute/src/V1/UsableSubnetworksAggregatedList.php
+++ b/Compute/src/V1/UsableSubnetworksAggregatedList.php
@@ -28,7 +28,7 @@ class UsableSubnetworksAggregatedList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Alwayscompute#usableSubnetworksAggregatedList for aggregated lists
+ * Output only. [Output Only] Type of resource. Alwayscompute#usableSubnetworksAggregatedList for aggregated lists
* of usable subnetworks.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -47,20 +47,20 @@ class UsableSubnetworksAggregatedList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Informational warning messages for failures encountered from
+ * Output only. [Output Only] Informational warning messages for failures encountered from
* scopes.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.SubnetworksScopedWarning scoped_warnings = 215878438;
*/
private $scoped_warnings;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
@@ -84,7 +84,7 @@ class UsableSubnetworksAggregatedList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\UsableSubnetwork>|\Google\Protobuf\Internal\RepeatedField $items
* [Output] A list of usable subnetwork URLs.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#usableSubnetworksAggregatedList for aggregated lists
+ * Output only. [Output Only] Type of resource. Alwayscompute#usableSubnetworksAggregatedList for aggregated lists
* of usable subnetworks.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -95,12 +95,12 @@ class UsableSubnetworksAggregatedList extends \Google\Protobuf\Internal\Message
* In special cases listUsable may return 0 subnetworks andnextPageToken which still should be used to get the
* next page of results.
* @type array<\Google\Cloud\Compute\V1\SubnetworksScopedWarning>|\Google\Protobuf\Internal\RepeatedField $scoped_warnings
- * [Output Only] Informational warning messages for failures encountered from
+ * Output only. [Output Only] Informational warning messages for failures encountered from
* scopes.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -175,7 +175,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#usableSubnetworksAggregatedList for aggregated lists
+ * Output only. [Output Only] Type of resource. Alwayscompute#usableSubnetworksAggregatedList for aggregated lists
* of usable subnetworks.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -197,7 +197,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#usableSubnetworksAggregatedList for aggregated lists
+ * Output only. [Output Only] Type of resource. Alwayscompute#usableSubnetworksAggregatedList for aggregated lists
* of usable subnetworks.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -261,7 +261,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Informational warning messages for failures encountered from
+ * Output only. [Output Only] Informational warning messages for failures encountered from
* scopes.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.SubnetworksScopedWarning scoped_warnings = 215878438;
@@ -273,7 +273,7 @@ public function getScopedWarnings()
}
/**
- * [Output Only] Informational warning messages for failures encountered from
+ * Output only. [Output Only] Informational warning messages for failures encountered from
* scopes.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.SubnetworksScopedWarning scoped_warnings = 215878438;
@@ -289,7 +289,7 @@ public function setScopedWarnings($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -310,7 +310,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -325,7 +325,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -336,7 +336,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/VmEndpointNatMappings.php b/Compute/src/V1/VmEndpointNatMappings.php
index ffa533b3368f..26dce133caa4 100644
--- a/Compute/src/V1/VmEndpointNatMappings.php
+++ b/Compute/src/V1/VmEndpointNatMappings.php
@@ -16,7 +16,7 @@
class VmEndpointNatMappings extends \Google\Protobuf\Internal\Message
{
/**
- * Name of the VM instance which the endpoint belongs to
+ * Output only. Name of the VM instance which the endpoint belongs to
*
* Generated from protobuf field optional string instance_name = 227947509;
*/
@@ -33,7 +33,7 @@ class VmEndpointNatMappings extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $instance_name
- * Name of the VM instance which the endpoint belongs to
+ * Output only. Name of the VM instance which the endpoint belongs to
* @type array<\Google\Cloud\Compute\V1\VmEndpointNatMappingsInterfaceNatMappings>|\Google\Protobuf\Internal\RepeatedField $interface_nat_mappings
* }
*/
@@ -43,7 +43,7 @@ public function __construct($data = NULL) {
}
/**
- * Name of the VM instance which the endpoint belongs to
+ * Output only. Name of the VM instance which the endpoint belongs to
*
* Generated from protobuf field optional string instance_name = 227947509;
* @return string
@@ -64,7 +64,7 @@ public function clearInstanceName()
}
/**
- * Name of the VM instance which the endpoint belongs to
+ * Output only. Name of the VM instance which the endpoint belongs to
*
* Generated from protobuf field optional string instance_name = 227947509;
* @param string $var
diff --git a/Compute/src/V1/VmEndpointNatMappingsInterfaceNatMappings.php b/Compute/src/V1/VmEndpointNatMappingsInterfaceNatMappings.php
index afa73dfdb152..3d2e54e6375c 100644
--- a/Compute/src/V1/VmEndpointNatMappingsInterfaceNatMappings.php
+++ b/Compute/src/V1/VmEndpointNatMappingsInterfaceNatMappings.php
@@ -16,7 +16,7 @@
class VmEndpointNatMappingsInterfaceNatMappings extends \Google\Protobuf\Internal\Message
{
/**
- * List of all drain IP:port-range mappings assigned to this interface.
+ * Output only. List of all drain IP:port-range mappings assigned to this interface.
* These ranges are inclusive, that is, both the first and the last
* ports can be used for NAT. Example: ["2.2.2.2:12345-12355",
* "1.1.1.1:2234-2234"].
@@ -25,7 +25,7 @@ class VmEndpointNatMappingsInterfaceNatMappings extends \Google\Protobuf\Interna
*/
private $drain_nat_ip_port_ranges;
/**
- * A list of all IP:port-range mappings assigned to this interface.
+ * Output only. A list of all IP:port-range mappings assigned to this interface.
* These ranges are inclusive, that is, both the first and the last
* ports can be used for NAT. Example: ["2.2.2.2:12345-12355",
* "1.1.1.1:2234-2234"].
@@ -34,7 +34,7 @@ class VmEndpointNatMappingsInterfaceNatMappings extends \Google\Protobuf\Interna
*/
private $nat_ip_port_ranges;
/**
- * Total number of drain ports across all NAT IPs allocated to this
+ * Output only. Total number of drain ports across all NAT IPs allocated to this
* interface. It equals to the aggregated port number in the field
* drain_nat_ip_port_ranges.
*
@@ -42,20 +42,20 @@ class VmEndpointNatMappingsInterfaceNatMappings extends \Google\Protobuf\Interna
*/
protected $num_total_drain_nat_ports = null;
/**
- * Total number of ports across all NAT IPs allocated to this interface.
+ * Output only. Total number of ports across all NAT IPs allocated to this interface.
* It equals to the aggregated port number in the field nat_ip_port_ranges.
*
* Generated from protobuf field optional int32 num_total_nat_ports = 299904384;
*/
protected $num_total_nat_ports = null;
/**
- * Information about mappings provided by rules in this NAT.
+ * Output only. Information about mappings provided by rules in this NAT.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.VmEndpointNatMappingsInterfaceNatMappingsNatRuleMappings rule_mappings = 486192968;
*/
private $rule_mappings;
/**
- * Alias IP range for this interface endpoint.
+ * Output only. Alias IP range for this interface endpoint.
* It will be a private (RFC 1918) IP range.
* Examples: "10.33.4.55/32", or "192.168.5.0/24".
*
@@ -63,7 +63,7 @@ class VmEndpointNatMappingsInterfaceNatMappings extends \Google\Protobuf\Interna
*/
protected $source_alias_ip_range = null;
/**
- * Primary IP of the VM for this NIC.
+ * Output only. Primary IP of the VM for this NIC.
*
* Generated from protobuf field optional string source_virtual_ip = 149836159;
*/
@@ -76,30 +76,30 @@ class VmEndpointNatMappingsInterfaceNatMappings extends \Google\Protobuf\Interna
* Optional. Data for populating the Message object.
*
* @type array|\Google\Protobuf\Internal\RepeatedField $drain_nat_ip_port_ranges
- * List of all drain IP:port-range mappings assigned to this interface.
+ * Output only. List of all drain IP:port-range mappings assigned to this interface.
* These ranges are inclusive, that is, both the first and the last
* ports can be used for NAT. Example: ["2.2.2.2:12345-12355",
* "1.1.1.1:2234-2234"].
* @type array|\Google\Protobuf\Internal\RepeatedField $nat_ip_port_ranges
- * A list of all IP:port-range mappings assigned to this interface.
+ * Output only. A list of all IP:port-range mappings assigned to this interface.
* These ranges are inclusive, that is, both the first and the last
* ports can be used for NAT. Example: ["2.2.2.2:12345-12355",
* "1.1.1.1:2234-2234"].
* @type int $num_total_drain_nat_ports
- * Total number of drain ports across all NAT IPs allocated to this
+ * Output only. Total number of drain ports across all NAT IPs allocated to this
* interface. It equals to the aggregated port number in the field
* drain_nat_ip_port_ranges.
* @type int $num_total_nat_ports
- * Total number of ports across all NAT IPs allocated to this interface.
+ * Output only. Total number of ports across all NAT IPs allocated to this interface.
* It equals to the aggregated port number in the field nat_ip_port_ranges.
* @type array<\Google\Cloud\Compute\V1\VmEndpointNatMappingsInterfaceNatMappingsNatRuleMappings>|\Google\Protobuf\Internal\RepeatedField $rule_mappings
- * Information about mappings provided by rules in this NAT.
+ * Output only. Information about mappings provided by rules in this NAT.
* @type string $source_alias_ip_range
- * Alias IP range for this interface endpoint.
+ * Output only. Alias IP range for this interface endpoint.
* It will be a private (RFC 1918) IP range.
* Examples: "10.33.4.55/32", or "192.168.5.0/24".
* @type string $source_virtual_ip
- * Primary IP of the VM for this NIC.
+ * Output only. Primary IP of the VM for this NIC.
* }
*/
public function __construct($data = NULL) {
@@ -108,7 +108,7 @@ public function __construct($data = NULL) {
}
/**
- * List of all drain IP:port-range mappings assigned to this interface.
+ * Output only. List of all drain IP:port-range mappings assigned to this interface.
* These ranges are inclusive, that is, both the first and the last
* ports can be used for NAT. Example: ["2.2.2.2:12345-12355",
* "1.1.1.1:2234-2234"].
@@ -122,7 +122,7 @@ public function getDrainNatIpPortRanges()
}
/**
- * List of all drain IP:port-range mappings assigned to this interface.
+ * Output only. List of all drain IP:port-range mappings assigned to this interface.
* These ranges are inclusive, that is, both the first and the last
* ports can be used for NAT. Example: ["2.2.2.2:12345-12355",
* "1.1.1.1:2234-2234"].
@@ -140,7 +140,7 @@ public function setDrainNatIpPortRanges($var)
}
/**
- * A list of all IP:port-range mappings assigned to this interface.
+ * Output only. A list of all IP:port-range mappings assigned to this interface.
* These ranges are inclusive, that is, both the first and the last
* ports can be used for NAT. Example: ["2.2.2.2:12345-12355",
* "1.1.1.1:2234-2234"].
@@ -154,7 +154,7 @@ public function getNatIpPortRanges()
}
/**
- * A list of all IP:port-range mappings assigned to this interface.
+ * Output only. A list of all IP:port-range mappings assigned to this interface.
* These ranges are inclusive, that is, both the first and the last
* ports can be used for NAT. Example: ["2.2.2.2:12345-12355",
* "1.1.1.1:2234-2234"].
@@ -172,7 +172,7 @@ public function setNatIpPortRanges($var)
}
/**
- * Total number of drain ports across all NAT IPs allocated to this
+ * Output only. Total number of drain ports across all NAT IPs allocated to this
* interface. It equals to the aggregated port number in the field
* drain_nat_ip_port_ranges.
*
@@ -195,7 +195,7 @@ public function clearNumTotalDrainNatPorts()
}
/**
- * Total number of drain ports across all NAT IPs allocated to this
+ * Output only. Total number of drain ports across all NAT IPs allocated to this
* interface. It equals to the aggregated port number in the field
* drain_nat_ip_port_ranges.
*
@@ -212,7 +212,7 @@ public function setNumTotalDrainNatPorts($var)
}
/**
- * Total number of ports across all NAT IPs allocated to this interface.
+ * Output only. Total number of ports across all NAT IPs allocated to this interface.
* It equals to the aggregated port number in the field nat_ip_port_ranges.
*
* Generated from protobuf field optional int32 num_total_nat_ports = 299904384;
@@ -234,7 +234,7 @@ public function clearNumTotalNatPorts()
}
/**
- * Total number of ports across all NAT IPs allocated to this interface.
+ * Output only. Total number of ports across all NAT IPs allocated to this interface.
* It equals to the aggregated port number in the field nat_ip_port_ranges.
*
* Generated from protobuf field optional int32 num_total_nat_ports = 299904384;
@@ -250,7 +250,7 @@ public function setNumTotalNatPorts($var)
}
/**
- * Information about mappings provided by rules in this NAT.
+ * Output only. Information about mappings provided by rules in this NAT.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.VmEndpointNatMappingsInterfaceNatMappingsNatRuleMappings rule_mappings = 486192968;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -261,7 +261,7 @@ public function getRuleMappings()
}
/**
- * Information about mappings provided by rules in this NAT.
+ * Output only. Information about mappings provided by rules in this NAT.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.VmEndpointNatMappingsInterfaceNatMappingsNatRuleMappings rule_mappings = 486192968;
* @param array<\Google\Cloud\Compute\V1\VmEndpointNatMappingsInterfaceNatMappingsNatRuleMappings>|\Google\Protobuf\Internal\RepeatedField $var
@@ -276,7 +276,7 @@ public function setRuleMappings($var)
}
/**
- * Alias IP range for this interface endpoint.
+ * Output only. Alias IP range for this interface endpoint.
* It will be a private (RFC 1918) IP range.
* Examples: "10.33.4.55/32", or "192.168.5.0/24".
*
@@ -299,7 +299,7 @@ public function clearSourceAliasIpRange()
}
/**
- * Alias IP range for this interface endpoint.
+ * Output only. Alias IP range for this interface endpoint.
* It will be a private (RFC 1918) IP range.
* Examples: "10.33.4.55/32", or "192.168.5.0/24".
*
@@ -316,7 +316,7 @@ public function setSourceAliasIpRange($var)
}
/**
- * Primary IP of the VM for this NIC.
+ * Output only. Primary IP of the VM for this NIC.
*
* Generated from protobuf field optional string source_virtual_ip = 149836159;
* @return string
@@ -337,7 +337,7 @@ public function clearSourceVirtualIp()
}
/**
- * Primary IP of the VM for this NIC.
+ * Output only. Primary IP of the VM for this NIC.
*
* Generated from protobuf field optional string source_virtual_ip = 149836159;
* @param string $var
diff --git a/Compute/src/V1/VmEndpointNatMappingsInterfaceNatMappingsNatRuleMappings.php b/Compute/src/V1/VmEndpointNatMappingsInterfaceNatMappingsNatRuleMappings.php
index a6179948f1d0..dfc8a64c9450 100644
--- a/Compute/src/V1/VmEndpointNatMappingsInterfaceNatMappingsNatRuleMappings.php
+++ b/Compute/src/V1/VmEndpointNatMappingsInterfaceNatMappingsNatRuleMappings.php
@@ -16,7 +16,7 @@
class VmEndpointNatMappingsInterfaceNatMappingsNatRuleMappings extends \Google\Protobuf\Internal\Message
{
/**
- * List of all drain IP:port-range mappings assigned to this interface
+ * Output only. List of all drain IP:port-range mappings assigned to this interface
* by this rule.
* These ranges are inclusive, that is, both the first and the last
* ports can be used for NAT. Example: ["2.2.2.2:12345-12355",
@@ -26,7 +26,7 @@ class VmEndpointNatMappingsInterfaceNatMappingsNatRuleMappings extends \Google\P
*/
private $drain_nat_ip_port_ranges;
/**
- * A list of all IP:port-range mappings assigned to this interface by this
+ * Output only. A list of all IP:port-range mappings assigned to this interface by this
* rule.
* These ranges are inclusive, that is, both the first and the last
* ports can be used for NAT. Example: ["2.2.2.2:12345-12355",
@@ -36,7 +36,7 @@ class VmEndpointNatMappingsInterfaceNatMappingsNatRuleMappings extends \Google\P
*/
private $nat_ip_port_ranges;
/**
- * Total number of drain ports across all NAT IPs allocated to this
+ * Output only. Total number of drain ports across all NAT IPs allocated to this
* interface by this rule.
* It equals the aggregated port number in the field
* drain_nat_ip_port_ranges.
@@ -45,7 +45,7 @@ class VmEndpointNatMappingsInterfaceNatMappingsNatRuleMappings extends \Google\P
*/
protected $num_total_drain_nat_ports = null;
/**
- * Total number of ports across all NAT IPs allocated to this interface
+ * Output only. Total number of ports across all NAT IPs allocated to this interface
* by this rule.
* It equals the aggregated port number in the field nat_ip_port_ranges.
*
@@ -53,7 +53,7 @@ class VmEndpointNatMappingsInterfaceNatMappingsNatRuleMappings extends \Google\P
*/
protected $num_total_nat_ports = null;
/**
- * Rule number of the NAT Rule.
+ * Output only. Rule number of the NAT Rule.
*
* Generated from protobuf field optional int32 rule_number = 535211500;
*/
@@ -66,28 +66,28 @@ class VmEndpointNatMappingsInterfaceNatMappingsNatRuleMappings extends \Google\P
* Optional. Data for populating the Message object.
*
* @type array|\Google\Protobuf\Internal\RepeatedField $drain_nat_ip_port_ranges
- * List of all drain IP:port-range mappings assigned to this interface
+ * Output only. List of all drain IP:port-range mappings assigned to this interface
* by this rule.
* These ranges are inclusive, that is, both the first and the last
* ports can be used for NAT. Example: ["2.2.2.2:12345-12355",
* "1.1.1.1:2234-2234"].
* @type array|\Google\Protobuf\Internal\RepeatedField $nat_ip_port_ranges
- * A list of all IP:port-range mappings assigned to this interface by this
+ * Output only. A list of all IP:port-range mappings assigned to this interface by this
* rule.
* These ranges are inclusive, that is, both the first and the last
* ports can be used for NAT. Example: ["2.2.2.2:12345-12355",
* "1.1.1.1:2234-2234"].
* @type int $num_total_drain_nat_ports
- * Total number of drain ports across all NAT IPs allocated to this
+ * Output only. Total number of drain ports across all NAT IPs allocated to this
* interface by this rule.
* It equals the aggregated port number in the field
* drain_nat_ip_port_ranges.
* @type int $num_total_nat_ports
- * Total number of ports across all NAT IPs allocated to this interface
+ * Output only. Total number of ports across all NAT IPs allocated to this interface
* by this rule.
* It equals the aggregated port number in the field nat_ip_port_ranges.
* @type int $rule_number
- * Rule number of the NAT Rule.
+ * Output only. Rule number of the NAT Rule.
* }
*/
public function __construct($data = NULL) {
@@ -96,7 +96,7 @@ public function __construct($data = NULL) {
}
/**
- * List of all drain IP:port-range mappings assigned to this interface
+ * Output only. List of all drain IP:port-range mappings assigned to this interface
* by this rule.
* These ranges are inclusive, that is, both the first and the last
* ports can be used for NAT. Example: ["2.2.2.2:12345-12355",
@@ -111,7 +111,7 @@ public function getDrainNatIpPortRanges()
}
/**
- * List of all drain IP:port-range mappings assigned to this interface
+ * Output only. List of all drain IP:port-range mappings assigned to this interface
* by this rule.
* These ranges are inclusive, that is, both the first and the last
* ports can be used for NAT. Example: ["2.2.2.2:12345-12355",
@@ -130,7 +130,7 @@ public function setDrainNatIpPortRanges($var)
}
/**
- * A list of all IP:port-range mappings assigned to this interface by this
+ * Output only. A list of all IP:port-range mappings assigned to this interface by this
* rule.
* These ranges are inclusive, that is, both the first and the last
* ports can be used for NAT. Example: ["2.2.2.2:12345-12355",
@@ -145,7 +145,7 @@ public function getNatIpPortRanges()
}
/**
- * A list of all IP:port-range mappings assigned to this interface by this
+ * Output only. A list of all IP:port-range mappings assigned to this interface by this
* rule.
* These ranges are inclusive, that is, both the first and the last
* ports can be used for NAT. Example: ["2.2.2.2:12345-12355",
@@ -164,7 +164,7 @@ public function setNatIpPortRanges($var)
}
/**
- * Total number of drain ports across all NAT IPs allocated to this
+ * Output only. Total number of drain ports across all NAT IPs allocated to this
* interface by this rule.
* It equals the aggregated port number in the field
* drain_nat_ip_port_ranges.
@@ -188,7 +188,7 @@ public function clearNumTotalDrainNatPorts()
}
/**
- * Total number of drain ports across all NAT IPs allocated to this
+ * Output only. Total number of drain ports across all NAT IPs allocated to this
* interface by this rule.
* It equals the aggregated port number in the field
* drain_nat_ip_port_ranges.
@@ -206,7 +206,7 @@ public function setNumTotalDrainNatPorts($var)
}
/**
- * Total number of ports across all NAT IPs allocated to this interface
+ * Output only. Total number of ports across all NAT IPs allocated to this interface
* by this rule.
* It equals the aggregated port number in the field nat_ip_port_ranges.
*
@@ -229,7 +229,7 @@ public function clearNumTotalNatPorts()
}
/**
- * Total number of ports across all NAT IPs allocated to this interface
+ * Output only. Total number of ports across all NAT IPs allocated to this interface
* by this rule.
* It equals the aggregated port number in the field nat_ip_port_ranges.
*
@@ -246,7 +246,7 @@ public function setNumTotalNatPorts($var)
}
/**
- * Rule number of the NAT Rule.
+ * Output only. Rule number of the NAT Rule.
*
* Generated from protobuf field optional int32 rule_number = 535211500;
* @return int
@@ -267,7 +267,7 @@ public function clearRuleNumber()
}
/**
- * Rule number of the NAT Rule.
+ * Output only. Rule number of the NAT Rule.
*
* Generated from protobuf field optional int32 rule_number = 535211500;
* @param int $var
diff --git a/Compute/src/V1/VmEndpointNatMappingsList.php b/Compute/src/V1/VmEndpointNatMappingsList.php
index f6eb35bee11e..7fb0c2c15606 100644
--- a/Compute/src/V1/VmEndpointNatMappingsList.php
+++ b/Compute/src/V1/VmEndpointNatMappingsList.php
@@ -23,7 +23,7 @@ class VmEndpointNatMappingsList extends \Google\Protobuf\Internal\Message
*/
protected $id = null;
/**
- * [Output Only] Type of resource. Alwayscompute#vmEndpointNatMappingsList for lists of Nat mappings of
+ * Output only. [Output Only] Type of resource. Alwayscompute#vmEndpointNatMappingsList for lists of Nat mappings of
* VM endpoints.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -46,7 +46,7 @@ class VmEndpointNatMappingsList extends \Google\Protobuf\Internal\Message
*/
private $result;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -68,7 +68,7 @@ class VmEndpointNatMappingsList extends \Google\Protobuf\Internal\Message
* [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type string $kind
- * [Output Only] Type of resource. Alwayscompute#vmEndpointNatMappingsList for lists of Nat mappings of
+ * Output only. [Output Only] Type of resource. Alwayscompute#vmEndpointNatMappingsList for lists of Nat mappings of
* VM endpoints.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -79,7 +79,7 @@ class VmEndpointNatMappingsList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\VmEndpointNatMappings>|\Google\Protobuf\Internal\RepeatedField $result
* [Output Only] A list of Nat mapping information of VM endpoints.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -128,7 +128,7 @@ public function setId($var)
}
/**
- * [Output Only] Type of resource. Alwayscompute#vmEndpointNatMappingsList for lists of Nat mappings of
+ * Output only. [Output Only] Type of resource. Alwayscompute#vmEndpointNatMappingsList for lists of Nat mappings of
* VM endpoints.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -150,7 +150,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Alwayscompute#vmEndpointNatMappingsList for lists of Nat mappings of
+ * Output only. [Output Only] Type of resource. Alwayscompute#vmEndpointNatMappingsList for lists of Nat mappings of
* VM endpoints.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -236,7 +236,7 @@ public function setResult($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -257,7 +257,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/VpnGateway.php b/Compute/src/V1/VpnGateway.php
index 3d364f68aa5c..254b43b1b0a9 100644
--- a/Compute/src/V1/VpnGateway.php
+++ b/Compute/src/V1/VpnGateway.php
@@ -21,7 +21,7 @@
class VpnGateway extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -43,14 +43,14 @@ class VpnGateway extends \Google\Protobuf\Internal\Message
*/
protected $gateway_ip_version = null;
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
*/
protected $id = null;
/**
- * [Output Only] Type of resource. Always compute#vpnGateway for
+ * Output only. [Output Only] Type of resource. Always compute#vpnGateway for
* VPN gateways.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -96,13 +96,13 @@ class VpnGateway extends \Google\Protobuf\Internal\Message
*/
protected $network = null;
/**
- * [Output Only] URL of the region where the VPN gateway resides.
+ * Output only. [Output Only] URL of the region where the VPN gateway resides.
*
* Generated from protobuf field optional string region = 138946292;
*/
protected $region = null;
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -129,7 +129,7 @@ class VpnGateway extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $description
* An optional description of this resource. Provide this property when you
@@ -139,10 +139,10 @@ class VpnGateway extends \Google\Protobuf\Internal\Message
* specified, IPV4 will be used.
* Check the GatewayIpVersion enum for the list of possible values.
* @type int|string $id
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type string $kind
- * [Output Only] Type of resource. Always compute#vpnGateway for
+ * Output only. [Output Only] Type of resource. Always compute#vpnGateway for
* VPN gateways.
* @type string $label_fingerprint
* A fingerprint for the labels being applied to this VpnGateway, which
@@ -168,9 +168,9 @@ class VpnGateway extends \Google\Protobuf\Internal\Message
* URL of the network to which this VPN gateway is attached. Provided by the
* client when the VPN gateway is created.
* @type string $region
- * [Output Only] URL of the region where the VPN gateway resides.
+ * Output only. [Output Only] URL of the region where the VPN gateway resides.
* @type string $self_link
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
* @type string $stack_type
* The stack type for this VPN gateway to identify the IP protocols that are
* enabled. Possible values are: IPV4_ONLY,IPV4_IPV6, IPV6_ONLY. If not specified,IPV4_ONLY is used if the gateway IP version isIPV4, or IPV4_IPV6 if the gateway IP version isIPV6.
@@ -185,7 +185,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -207,7 +207,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -301,7 +301,7 @@ public function setGatewayIpVersion($var)
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -323,7 +323,7 @@ public function clearId()
}
/**
- * [Output Only] The unique identifier for the resource. This identifier is
+ * Output only. [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -339,7 +339,7 @@ public function setId($var)
}
/**
- * [Output Only] Type of resource. Always compute#vpnGateway for
+ * Output only. [Output Only] Type of resource. Always compute#vpnGateway for
* VPN gateways.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -361,7 +361,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Always compute#vpnGateway for
+ * Output only. [Output Only] Type of resource. Always compute#vpnGateway for
* VPN gateways.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -541,7 +541,7 @@ public function setNetwork($var)
}
/**
- * [Output Only] URL of the region where the VPN gateway resides.
+ * Output only. [Output Only] URL of the region where the VPN gateway resides.
*
* Generated from protobuf field optional string region = 138946292;
* @return string
@@ -562,7 +562,7 @@ public function clearRegion()
}
/**
- * [Output Only] URL of the region where the VPN gateway resides.
+ * Output only. [Output Only] URL of the region where the VPN gateway resides.
*
* Generated from protobuf field optional string region = 138946292;
* @param string $var
@@ -577,7 +577,7 @@ public function setRegion($var)
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -598,7 +598,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/VpnGatewayAggregatedList.php b/Compute/src/V1/VpnGatewayAggregatedList.php
index ed58fc248b98..4d9900aacd54 100644
--- a/Compute/src/V1/VpnGatewayAggregatedList.php
+++ b/Compute/src/V1/VpnGatewayAggregatedList.php
@@ -27,7 +27,7 @@ class VpnGatewayAggregatedList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Always compute#vpnGateway for
+ * Output only. [Output Only] Type of resource. Always compute#vpnGateway for
* VPN gateways.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -44,13 +44,13 @@ class VpnGatewayAggregatedList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
@@ -73,7 +73,7 @@ class VpnGatewayAggregatedList extends \Google\Protobuf\Internal\Message
* @type array|\Google\Protobuf\Internal\MapField $items
* A list of VpnGateway resources.
* @type string $kind
- * [Output Only] Type of resource. Always compute#vpnGateway for
+ * Output only. [Output Only] Type of resource. Always compute#vpnGateway for
* VPN gateways.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -82,9 +82,9 @@ class VpnGatewayAggregatedList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -157,7 +157,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Always compute#vpnGateway for
+ * Output only. [Output Only] Type of resource. Always compute#vpnGateway for
* VPN gateways.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -179,7 +179,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Always compute#vpnGateway for
+ * Output only. [Output Only] Type of resource. Always compute#vpnGateway for
* VPN gateways.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -239,7 +239,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -260,7 +260,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -275,7 +275,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -286,7 +286,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/VpnGatewayList.php b/Compute/src/V1/VpnGatewayList.php
index ce11616770f1..67d971e318eb 100644
--- a/Compute/src/V1/VpnGatewayList.php
+++ b/Compute/src/V1/VpnGatewayList.php
@@ -28,7 +28,7 @@ class VpnGatewayList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Always compute#vpnGateway for
+ * Output only. [Output Only] Type of resource. Always compute#vpnGateway for
* VPN gateways.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -45,7 +45,7 @@ class VpnGatewayList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -68,7 +68,7 @@ class VpnGatewayList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\VpnGateway>|\Google\Protobuf\Internal\RepeatedField $items
* A list of VpnGateway resources.
* @type string $kind
- * [Output Only] Type of resource. Always compute#vpnGateway for
+ * Output only. [Output Only] Type of resource. Always compute#vpnGateway for
* VPN gateways.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -77,7 +77,7 @@ class VpnGatewayList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -150,7 +150,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Always compute#vpnGateway for
+ * Output only. [Output Only] Type of resource. Always compute#vpnGateway for
* VPN gateways.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -172,7 +172,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Always compute#vpnGateway for
+ * Output only. [Output Only] Type of resource. Always compute#vpnGateway for
* VPN gateways.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -232,7 +232,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -253,7 +253,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/VpnGatewayStatus.php b/Compute/src/V1/VpnGatewayStatus.php
index 961ca3140e69..53742005abf3 100644
--- a/Compute/src/V1/VpnGatewayStatus.php
+++ b/Compute/src/V1/VpnGatewayStatus.php
@@ -15,7 +15,7 @@
class VpnGatewayStatus extends \Google\Protobuf\Internal\Message
{
/**
- * List of VPN connection for this VpnGateway.
+ * Output only. List of VPN connection for this VpnGateway.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.VpnGatewayStatusVpnConnection vpn_connections = 439334538;
*/
@@ -28,7 +28,7 @@ class VpnGatewayStatus extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type array<\Google\Cloud\Compute\V1\VpnGatewayStatusVpnConnection>|\Google\Protobuf\Internal\RepeatedField $vpn_connections
- * List of VPN connection for this VpnGateway.
+ * Output only. List of VPN connection for this VpnGateway.
* }
*/
public function __construct($data = NULL) {
@@ -37,7 +37,7 @@ public function __construct($data = NULL) {
}
/**
- * List of VPN connection for this VpnGateway.
+ * Output only. List of VPN connection for this VpnGateway.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.VpnGatewayStatusVpnConnection vpn_connections = 439334538;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -48,7 +48,7 @@ public function getVpnConnections()
}
/**
- * List of VPN connection for this VpnGateway.
+ * Output only. List of VPN connection for this VpnGateway.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.VpnGatewayStatusVpnConnection vpn_connections = 439334538;
* @param array<\Google\Cloud\Compute\V1\VpnGatewayStatusVpnConnection>|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/VpnGatewayStatusTunnel.php b/Compute/src/V1/VpnGatewayStatusTunnel.php
index a5db4d4e5101..bc6044609c93 100644
--- a/Compute/src/V1/VpnGatewayStatusTunnel.php
+++ b/Compute/src/V1/VpnGatewayStatusTunnel.php
@@ -16,13 +16,13 @@
class VpnGatewayStatusTunnel extends \Google\Protobuf\Internal\Message
{
/**
- * The VPN gateway interface this VPN tunnel is associated with.
+ * Output only. The VPN gateway interface this VPN tunnel is associated with.
*
* Generated from protobuf field optional uint32 local_gateway_interface = 158764330;
*/
protected $local_gateway_interface = null;
/**
- * The peer gateway interface this VPN tunnel is connected to, the peer
+ * Output only. The peer gateway interface this VPN tunnel is connected to, the peer
* gateway could either be an external VPN gateway or a Google Cloud
* VPN gateway.
*
@@ -30,7 +30,7 @@ class VpnGatewayStatusTunnel extends \Google\Protobuf\Internal\Message
*/
protected $peer_gateway_interface = null;
/**
- * URL reference to the VPN tunnel.
+ * Output only. URL reference to the VPN tunnel.
*
* Generated from protobuf field optional string tunnel_url = 78975256;
*/
@@ -43,13 +43,13 @@ class VpnGatewayStatusTunnel extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type int $local_gateway_interface
- * The VPN gateway interface this VPN tunnel is associated with.
+ * Output only. The VPN gateway interface this VPN tunnel is associated with.
* @type int $peer_gateway_interface
- * The peer gateway interface this VPN tunnel is connected to, the peer
+ * Output only. The peer gateway interface this VPN tunnel is connected to, the peer
* gateway could either be an external VPN gateway or a Google Cloud
* VPN gateway.
* @type string $tunnel_url
- * URL reference to the VPN tunnel.
+ * Output only. URL reference to the VPN tunnel.
* }
*/
public function __construct($data = NULL) {
@@ -58,7 +58,7 @@ public function __construct($data = NULL) {
}
/**
- * The VPN gateway interface this VPN tunnel is associated with.
+ * Output only. The VPN gateway interface this VPN tunnel is associated with.
*
* Generated from protobuf field optional uint32 local_gateway_interface = 158764330;
* @return int
@@ -79,7 +79,7 @@ public function clearLocalGatewayInterface()
}
/**
- * The VPN gateway interface this VPN tunnel is associated with.
+ * Output only. The VPN gateway interface this VPN tunnel is associated with.
*
* Generated from protobuf field optional uint32 local_gateway_interface = 158764330;
* @param int $var
@@ -94,7 +94,7 @@ public function setLocalGatewayInterface($var)
}
/**
- * The peer gateway interface this VPN tunnel is connected to, the peer
+ * Output only. The peer gateway interface this VPN tunnel is connected to, the peer
* gateway could either be an external VPN gateway or a Google Cloud
* VPN gateway.
*
@@ -117,7 +117,7 @@ public function clearPeerGatewayInterface()
}
/**
- * The peer gateway interface this VPN tunnel is connected to, the peer
+ * Output only. The peer gateway interface this VPN tunnel is connected to, the peer
* gateway could either be an external VPN gateway or a Google Cloud
* VPN gateway.
*
@@ -134,7 +134,7 @@ public function setPeerGatewayInterface($var)
}
/**
- * URL reference to the VPN tunnel.
+ * Output only. URL reference to the VPN tunnel.
*
* Generated from protobuf field optional string tunnel_url = 78975256;
* @return string
@@ -155,7 +155,7 @@ public function clearTunnelUrl()
}
/**
- * URL reference to the VPN tunnel.
+ * Output only. URL reference to the VPN tunnel.
*
* Generated from protobuf field optional string tunnel_url = 78975256;
* @param string $var
diff --git a/Compute/src/V1/VpnGatewayStatusVpnConnection.php b/Compute/src/V1/VpnGatewayStatusVpnConnection.php
index d6fde5621aa6..771cb7c7e14c 100644
--- a/Compute/src/V1/VpnGatewayStatusVpnConnection.php
+++ b/Compute/src/V1/VpnGatewayStatusVpnConnection.php
@@ -18,7 +18,7 @@
class VpnGatewayStatusVpnConnection extends \Google\Protobuf\Internal\Message
{
/**
- * URL reference to the peer external VPN gateways to which the VPN tunnels
+ * Output only. URL reference to the peer external VPN gateways to which the VPN tunnels
* in this VPN connection are connected.
* This field is mutually exclusive with peer_gcp_gateway.
*
@@ -26,7 +26,7 @@ class VpnGatewayStatusVpnConnection extends \Google\Protobuf\Internal\Message
*/
protected $peer_external_gateway = null;
/**
- * URL reference to the peer side VPN gateways to which the VPN tunnels in
+ * Output only. URL reference to the peer side VPN gateways to which the VPN tunnels in
* this VPN connection are connected.
* This field is mutually exclusive with peer_gcp_gateway.
*
@@ -53,11 +53,11 @@ class VpnGatewayStatusVpnConnection extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $peer_external_gateway
- * URL reference to the peer external VPN gateways to which the VPN tunnels
+ * Output only. URL reference to the peer external VPN gateways to which the VPN tunnels
* in this VPN connection are connected.
* This field is mutually exclusive with peer_gcp_gateway.
* @type string $peer_gcp_gateway
- * URL reference to the peer side VPN gateways to which the VPN tunnels in
+ * Output only. URL reference to the peer side VPN gateways to which the VPN tunnels in
* this VPN connection are connected.
* This field is mutually exclusive with peer_gcp_gateway.
* @type \Google\Cloud\Compute\V1\VpnGatewayStatusHighAvailabilityRequirementState $state
@@ -72,7 +72,7 @@ public function __construct($data = NULL) {
}
/**
- * URL reference to the peer external VPN gateways to which the VPN tunnels
+ * Output only. URL reference to the peer external VPN gateways to which the VPN tunnels
* in this VPN connection are connected.
* This field is mutually exclusive with peer_gcp_gateway.
*
@@ -95,7 +95,7 @@ public function clearPeerExternalGateway()
}
/**
- * URL reference to the peer external VPN gateways to which the VPN tunnels
+ * Output only. URL reference to the peer external VPN gateways to which the VPN tunnels
* in this VPN connection are connected.
* This field is mutually exclusive with peer_gcp_gateway.
*
@@ -112,7 +112,7 @@ public function setPeerExternalGateway($var)
}
/**
- * URL reference to the peer side VPN gateways to which the VPN tunnels in
+ * Output only. URL reference to the peer side VPN gateways to which the VPN tunnels in
* this VPN connection are connected.
* This field is mutually exclusive with peer_gcp_gateway.
*
@@ -135,7 +135,7 @@ public function clearPeerGcpGateway()
}
/**
- * URL reference to the peer side VPN gateways to which the VPN tunnels in
+ * Output only. URL reference to the peer side VPN gateways to which the VPN tunnels in
* this VPN connection are connected.
* This field is mutually exclusive with peer_gcp_gateway.
*
diff --git a/Compute/src/V1/VpnGatewayVpnGatewayInterface.php b/Compute/src/V1/VpnGatewayVpnGatewayInterface.php
index ea19827a2acc..c6fa219efdfb 100644
--- a/Compute/src/V1/VpnGatewayVpnGatewayInterface.php
+++ b/Compute/src/V1/VpnGatewayVpnGatewayInterface.php
@@ -16,7 +16,7 @@
class VpnGatewayVpnGatewayInterface extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Numeric identifier for this VPN interface associated with
+ * Output only. [Output Only] Numeric identifier for this VPN interface associated with
* the VPN gateway.
*
* Generated from protobuf field optional uint32 id = 3355;
@@ -33,7 +33,7 @@ class VpnGatewayVpnGatewayInterface extends \Google\Protobuf\Internal\Message
*/
protected $interconnect_attachment = null;
/**
- * [Output Only] IP address for this VPN interface associated with the VPN
+ * Output only. [Output Only] IP address for this VPN interface associated with the VPN
* gateway.
* The IP address could be either a regional external IP address or
* a regional internal IP address. The two IP addresses for a VPN gateway
@@ -49,7 +49,7 @@ class VpnGatewayVpnGatewayInterface extends \Google\Protobuf\Internal\Message
*/
protected $ip_address = null;
/**
- * [Output Only] IPv6 address for this VPN interface associated with the VPN
+ * Output only. [Output Only] IPv6 address for this VPN interface associated with the VPN
* gateway.
* The IPv6 address must be a regional external IPv6 address. The format is
* RFC 5952 format (e.g. 2001:db8::2d9:51:0:0).
@@ -65,7 +65,7 @@ class VpnGatewayVpnGatewayInterface extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type int $id
- * [Output Only] Numeric identifier for this VPN interface associated with
+ * Output only. [Output Only] Numeric identifier for this VPN interface associated with
* the VPN gateway.
* @type string $interconnect_attachment
* URL of the VLAN attachment (interconnectAttachment) resource for this
@@ -74,7 +74,7 @@ class VpnGatewayVpnGatewayInterface extends \Google\Protobuf\Internal\Message
* or ingress traffic for this VPN gateway interface goes through the
* specified VLAN attachment resource.
* @type string $ip_address
- * [Output Only] IP address for this VPN interface associated with the VPN
+ * Output only. [Output Only] IP address for this VPN interface associated with the VPN
* gateway.
* The IP address could be either a regional external IP address or
* a regional internal IP address. The two IP addresses for a VPN gateway
@@ -86,7 +86,7 @@ class VpnGatewayVpnGatewayInterface extends \Google\Protobuf\Internal\Message
* Interconnect) HA VPN tunnels, the IP address must be a regional external
* IP address.
* @type string $ipv6_address
- * [Output Only] IPv6 address for this VPN interface associated with the VPN
+ * Output only. [Output Only] IPv6 address for this VPN interface associated with the VPN
* gateway.
* The IPv6 address must be a regional external IPv6 address. The format is
* RFC 5952 format (e.g. 2001:db8::2d9:51:0:0).
@@ -98,7 +98,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Numeric identifier for this VPN interface associated with
+ * Output only. [Output Only] Numeric identifier for this VPN interface associated with
* the VPN gateway.
*
* Generated from protobuf field optional uint32 id = 3355;
@@ -120,7 +120,7 @@ public function clearId()
}
/**
- * [Output Only] Numeric identifier for this VPN interface associated with
+ * Output only. [Output Only] Numeric identifier for this VPN interface associated with
* the VPN gateway.
*
* Generated from protobuf field optional uint32 id = 3355;
@@ -180,7 +180,7 @@ public function setInterconnectAttachment($var)
}
/**
- * [Output Only] IP address for this VPN interface associated with the VPN
+ * Output only. [Output Only] IP address for this VPN interface associated with the VPN
* gateway.
* The IP address could be either a regional external IP address or
* a regional internal IP address. The two IP addresses for a VPN gateway
@@ -211,7 +211,7 @@ public function clearIpAddress()
}
/**
- * [Output Only] IP address for this VPN interface associated with the VPN
+ * Output only. [Output Only] IP address for this VPN interface associated with the VPN
* gateway.
* The IP address could be either a regional external IP address or
* a regional internal IP address. The two IP addresses for a VPN gateway
@@ -236,7 +236,7 @@ public function setIpAddress($var)
}
/**
- * [Output Only] IPv6 address for this VPN interface associated with the VPN
+ * Output only. [Output Only] IPv6 address for this VPN interface associated with the VPN
* gateway.
* The IPv6 address must be a regional external IPv6 address. The format is
* RFC 5952 format (e.g. 2001:db8::2d9:51:0:0).
@@ -260,7 +260,7 @@ public function clearIpv6Address()
}
/**
- * [Output Only] IPv6 address for this VPN interface associated with the VPN
+ * Output only. [Output Only] IPv6 address for this VPN interface associated with the VPN
* gateway.
* The IPv6 address must be a regional external IPv6 address. The format is
* RFC 5952 format (e.g. 2001:db8::2d9:51:0:0).
diff --git a/Compute/src/V1/VpnTunnel.php b/Compute/src/V1/VpnTunnel.php
index ab340ea50d55..c77208a91bb5 100644
--- a/Compute/src/V1/VpnTunnel.php
+++ b/Compute/src/V1/VpnTunnel.php
@@ -25,7 +25,7 @@ class VpnTunnel extends \Google\Protobuf\Internal\Message
*/
protected $cipher_suite = null;
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -60,7 +60,7 @@ class VpnTunnel extends \Google\Protobuf\Internal\Message
*/
protected $ike_version = null;
/**
- * [Output Only] Type of resource. Always compute#vpnTunnel for
+ * Output only. [Output Only] Type of resource. Always compute#vpnTunnel for
* VPN tunnels.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -260,7 +260,7 @@ class VpnTunnel extends \Google\Protobuf\Internal\Message
* User specified list of ciphers to use for the phase 1 and phase 2 of the
* IKE protocol.
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $description
* An optional description of this resource. Provide this property when you
@@ -275,7 +275,7 @@ class VpnTunnel extends \Google\Protobuf\Internal\Message
* VPN gateway. Acceptable IKE versions are 1 or 2.
* The default version is 2.
* @type string $kind
- * [Output Only] Type of resource. Always compute#vpnTunnel for
+ * Output only. [Output Only] Type of resource. Always compute#vpnTunnel for
* VPN tunnels.
* @type string $label_fingerprint
* A fingerprint for the labels being applied to this VpnTunnel, which is
@@ -434,7 +434,7 @@ public function setCipherSuite($var)
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -456,7 +456,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -624,7 +624,7 @@ public function setIkeVersion($var)
}
/**
- * [Output Only] Type of resource. Always compute#vpnTunnel for
+ * Output only. [Output Only] Type of resource. Always compute#vpnTunnel for
* VPN tunnels.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -646,7 +646,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Always compute#vpnTunnel for
+ * Output only. [Output Only] Type of resource. Always compute#vpnTunnel for
* VPN tunnels.
*
* Generated from protobuf field optional string kind = 3292052;
diff --git a/Compute/src/V1/VpnTunnelAggregatedList.php b/Compute/src/V1/VpnTunnelAggregatedList.php
index 1db01fca6bdf..559740090701 100644
--- a/Compute/src/V1/VpnTunnelAggregatedList.php
+++ b/Compute/src/V1/VpnTunnelAggregatedList.php
@@ -27,7 +27,7 @@ class VpnTunnelAggregatedList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Always compute#vpnTunnel for
+ * Output only. [Output Only] Type of resource. Always compute#vpnTunnel for
* VPN tunnels.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -44,13 +44,13 @@ class VpnTunnelAggregatedList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
*/
@@ -73,7 +73,7 @@ class VpnTunnelAggregatedList extends \Google\Protobuf\Internal\Message
* @type array|\Google\Protobuf\Internal\MapField $items
* A list of VpnTunnelsScopedList resources.
* @type string $kind
- * [Output Only] Type of resource. Always compute#vpnTunnel for
+ * Output only. [Output Only] Type of resource. Always compute#vpnTunnel for
* VPN tunnels.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -82,9 +82,9 @@ class VpnTunnelAggregatedList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -157,7 +157,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Always compute#vpnTunnel for
+ * Output only. [Output Only] Type of resource. Always compute#vpnTunnel for
* VPN tunnels.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -179,7 +179,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Always compute#vpnTunnel for
+ * Output only. [Output Only] Type of resource. Always compute#vpnTunnel for
* VPN tunnels.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -239,7 +239,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -260,7 +260,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -275,7 +275,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -286,7 +286,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
*
* Generated from protobuf field repeated string unreachables = 243372063;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/VpnTunnelList.php b/Compute/src/V1/VpnTunnelList.php
index 9d492a50d2f0..a14c681b9cb0 100644
--- a/Compute/src/V1/VpnTunnelList.php
+++ b/Compute/src/V1/VpnTunnelList.php
@@ -28,7 +28,7 @@ class VpnTunnelList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Always compute#vpnTunnel for
+ * Output only. [Output Only] Type of resource. Always compute#vpnTunnel for
* VPN tunnels.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -45,7 +45,7 @@ class VpnTunnelList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -68,7 +68,7 @@ class VpnTunnelList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\VpnTunnel>|\Google\Protobuf\Internal\RepeatedField $items
* A list of VpnTunnel resources.
* @type string $kind
- * [Output Only] Type of resource. Always compute#vpnTunnel for
+ * Output only. [Output Only] Type of resource. Always compute#vpnTunnel for
* VPN tunnels.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -77,7 +77,7 @@ class VpnTunnelList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -150,7 +150,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Always compute#vpnTunnel for
+ * Output only. [Output Only] Type of resource. Always compute#vpnTunnel for
* VPN tunnels.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -172,7 +172,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Always compute#vpnTunnel for
+ * Output only. [Output Only] Type of resource. Always compute#vpnTunnel for
* VPN tunnels.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -232,7 +232,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -253,7 +253,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/Wire.php b/Compute/src/V1/Wire.php
index bf00a0dc03bb..997458718949 100644
--- a/Compute/src/V1/Wire.php
+++ b/Compute/src/V1/Wire.php
@@ -16,7 +16,7 @@
class Wire extends \Google\Protobuf\Internal\Message
{
/**
- * [Output Only] Indicates whether the wire is enabled.
+ * Output only. [Output Only] Indicates whether the wire is enabled.
* When false, the wire is disabled. When true and when the wire group of
* the wire is also enabled, the wire is enabled. Defaults to true.
*
@@ -24,13 +24,13 @@ class Wire extends \Google\Protobuf\Internal\Message
*/
protected $admin_enabled = null;
/**
- * Wire endpoints are specific Interconnect connections.
+ * Output only. Wire endpoints are specific Interconnect connections.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.WireEndpoint endpoints = 287085950;
*/
private $endpoints;
/**
- * [Output Only] A label that identifies the wire. The format of this label
+ * Output only. [Output Only] A label that identifies the wire. The format of this label
* combines the existing labels of the wire group endpoints and Interconnect
* connections used by this wire in alphabetical order as follows:
* `ENDPOINT_A+CONNECTION_A1,ENDPOINT_B+CONNECTION_B1`, where:
@@ -45,7 +45,7 @@ class Wire extends \Google\Protobuf\Internal\Message
*/
protected $label = null;
/**
- * [Output Only] Properties of the wire.
+ * Output only. [Output Only] Properties of the wire.
*
* Generated from protobuf field optional .google.cloud.compute.v1.WireProperties wire_properties = 303111469;
*/
@@ -58,13 +58,13 @@ class Wire extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type bool $admin_enabled
- * [Output Only] Indicates whether the wire is enabled.
+ * Output only. [Output Only] Indicates whether the wire is enabled.
* When false, the wire is disabled. When true and when the wire group of
* the wire is also enabled, the wire is enabled. Defaults to true.
* @type array<\Google\Cloud\Compute\V1\WireEndpoint>|\Google\Protobuf\Internal\RepeatedField $endpoints
- * Wire endpoints are specific Interconnect connections.
+ * Output only. Wire endpoints are specific Interconnect connections.
* @type string $label
- * [Output Only] A label that identifies the wire. The format of this label
+ * Output only. [Output Only] A label that identifies the wire. The format of this label
* combines the existing labels of the wire group endpoints and Interconnect
* connections used by this wire in alphabetical order as follows:
* `ENDPOINT_A+CONNECTION_A1,ENDPOINT_B+CONNECTION_B1`, where:
@@ -75,7 +75,7 @@ class Wire extends \Google\Protobuf\Internal\Message
* labels that you entered as map keys when you specified the wire group
* Interconnect objects.
* @type \Google\Cloud\Compute\V1\WireProperties $wire_properties
- * [Output Only] Properties of the wire.
+ * Output only. [Output Only] Properties of the wire.
* }
*/
public function __construct($data = NULL) {
@@ -84,7 +84,7 @@ public function __construct($data = NULL) {
}
/**
- * [Output Only] Indicates whether the wire is enabled.
+ * Output only. [Output Only] Indicates whether the wire is enabled.
* When false, the wire is disabled. When true and when the wire group of
* the wire is also enabled, the wire is enabled. Defaults to true.
*
@@ -107,7 +107,7 @@ public function clearAdminEnabled()
}
/**
- * [Output Only] Indicates whether the wire is enabled.
+ * Output only. [Output Only] Indicates whether the wire is enabled.
* When false, the wire is disabled. When true and when the wire group of
* the wire is also enabled, the wire is enabled. Defaults to true.
*
@@ -124,7 +124,7 @@ public function setAdminEnabled($var)
}
/**
- * Wire endpoints are specific Interconnect connections.
+ * Output only. Wire endpoints are specific Interconnect connections.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.WireEndpoint endpoints = 287085950;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -135,7 +135,7 @@ public function getEndpoints()
}
/**
- * Wire endpoints are specific Interconnect connections.
+ * Output only. Wire endpoints are specific Interconnect connections.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.WireEndpoint endpoints = 287085950;
* @param array<\Google\Cloud\Compute\V1\WireEndpoint>|\Google\Protobuf\Internal\RepeatedField $var
@@ -150,7 +150,7 @@ public function setEndpoints($var)
}
/**
- * [Output Only] A label that identifies the wire. The format of this label
+ * Output only. [Output Only] A label that identifies the wire. The format of this label
* combines the existing labels of the wire group endpoints and Interconnect
* connections used by this wire in alphabetical order as follows:
* `ENDPOINT_A+CONNECTION_A1,ENDPOINT_B+CONNECTION_B1`, where:
@@ -180,7 +180,7 @@ public function clearLabel()
}
/**
- * [Output Only] A label that identifies the wire. The format of this label
+ * Output only. [Output Only] A label that identifies the wire. The format of this label
* combines the existing labels of the wire group endpoints and Interconnect
* connections used by this wire in alphabetical order as follows:
* `ENDPOINT_A+CONNECTION_A1,ENDPOINT_B+CONNECTION_B1`, where:
@@ -204,7 +204,7 @@ public function setLabel($var)
}
/**
- * [Output Only] Properties of the wire.
+ * Output only. [Output Only] Properties of the wire.
*
* Generated from protobuf field optional .google.cloud.compute.v1.WireProperties wire_properties = 303111469;
* @return \Google\Cloud\Compute\V1\WireProperties|null
@@ -225,7 +225,7 @@ public function clearWireProperties()
}
/**
- * [Output Only] Properties of the wire.
+ * Output only. [Output Only] Properties of the wire.
*
* Generated from protobuf field optional .google.cloud.compute.v1.WireProperties wire_properties = 303111469;
* @param \Google\Cloud\Compute\V1\WireProperties $var
diff --git a/Compute/src/V1/WireGroup.php b/Compute/src/V1/WireGroup.php
index 838e39ee885c..f5f010fee448 100644
--- a/Compute/src/V1/WireGroup.php
+++ b/Compute/src/V1/WireGroup.php
@@ -25,7 +25,7 @@ class WireGroup extends \Google\Protobuf\Internal\Message
*/
protected $admin_enabled = null;
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -47,14 +47,14 @@ class WireGroup extends \Google\Protobuf\Internal\Message
*/
private $endpoints;
/**
- * [Output Only] The unique identifier for the resource type. The server
+ * Output only. [Output Only] The unique identifier for the resource type. The server
* generates this identifier.
*
* Generated from protobuf field optional uint64 id = 3355;
*/
protected $id = null;
/**
- * [Output Only] Type of the resource. Alwayscompute#wireGroups for wire groups.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#wireGroups for wire groups.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -72,19 +72,19 @@ class WireGroup extends \Google\Protobuf\Internal\Message
*/
protected $name = null;
/**
- * [Output Only] Indicates whether there are wire changes yet to be processed.
+ * Output only. [Output Only] Indicates whether there are wire changes yet to be processed.
*
* Generated from protobuf field optional bool reconciling = 432155787;
*/
protected $reconciling = null;
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
protected $self_link = null;
/**
- * Topology details for the wire group configuration.
+ * Output only. Topology details for the wire group configuration.
*
* Generated from protobuf field optional .google.cloud.compute.v1.WireGroupTopology topology = 122274415;
*/
@@ -96,7 +96,7 @@ class WireGroup extends \Google\Protobuf\Internal\Message
*/
protected $wire_properties = null;
/**
- * The single/redundant wire(s) managed by the wire group.
+ * Output only. The single/redundant wire(s) managed by the wire group.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.Wire wires = 113139854;
*/
@@ -114,7 +114,7 @@ class WireGroup extends \Google\Protobuf\Internal\Message
* there is simultaneously no wire-specific override of `adminEnabled` to
* false, a given wire is enabled. Defaults to true.
* @type string $creation_timestamp
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
* @type string $description
* An optional description of the wire group.
@@ -124,10 +124,10 @@ class WireGroup extends \Google\Protobuf\Internal\Message
* - Key: an RFC1035 user-specified label.
* - Value: an Endpoint object.
* @type int|string $id
- * [Output Only] The unique identifier for the resource type. The server
+ * Output only. [Output Only] The unique identifier for the resource type. The server
* generates this identifier.
* @type string $kind
- * [Output Only] Type of the resource. Alwayscompute#wireGroups for wire groups.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#wireGroups for wire groups.
* @type string $name
* Name of the resource. Provided by the client when the resource is created.
* The name must be 1-63 characters long, and comply withRFC1035.
@@ -137,15 +137,15 @@ class WireGroup extends \Google\Protobuf\Internal\Message
* be a dash, lowercase letter, or digit, except the last character, which
* cannot be a dash.
* @type bool $reconciling
- * [Output Only] Indicates whether there are wire changes yet to be processed.
+ * Output only. [Output Only] Indicates whether there are wire changes yet to be processed.
* @type string $self_link
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
* @type \Google\Cloud\Compute\V1\WireGroupTopology $topology
- * Topology details for the wire group configuration.
+ * Output only. Topology details for the wire group configuration.
* @type \Google\Cloud\Compute\V1\WireProperties $wire_properties
* Properties for all wires in the wire group.
* @type array<\Google\Cloud\Compute\V1\Wire>|\Google\Protobuf\Internal\RepeatedField $wires
- * The single/redundant wire(s) managed by the wire group.
+ * Output only. The single/redundant wire(s) managed by the wire group.
* }
*/
public function __construct($data = NULL) {
@@ -196,7 +196,7 @@ public function setAdminEnabled($var)
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -218,7 +218,7 @@ public function clearCreationTimestamp()
}
/**
- * [Output Only] Creation timestamp inRFC3339
+ * Output only. [Output Only] Creation timestamp inRFC3339
* text format.
*
* Generated from protobuf field optional string creation_timestamp = 30525366;
@@ -302,7 +302,7 @@ public function setEndpoints($var)
}
/**
- * [Output Only] The unique identifier for the resource type. The server
+ * Output only. [Output Only] The unique identifier for the resource type. The server
* generates this identifier.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -324,7 +324,7 @@ public function clearId()
}
/**
- * [Output Only] The unique identifier for the resource type. The server
+ * Output only. [Output Only] The unique identifier for the resource type. The server
* generates this identifier.
*
* Generated from protobuf field optional uint64 id = 3355;
@@ -340,7 +340,7 @@ public function setId($var)
}
/**
- * [Output Only] Type of the resource. Alwayscompute#wireGroups for wire groups.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#wireGroups for wire groups.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -361,7 +361,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Alwayscompute#wireGroups for wire groups.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#wireGroups for wire groups.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -424,7 +424,7 @@ public function setName($var)
}
/**
- * [Output Only] Indicates whether there are wire changes yet to be processed.
+ * Output only. [Output Only] Indicates whether there are wire changes yet to be processed.
*
* Generated from protobuf field optional bool reconciling = 432155787;
* @return bool
@@ -445,7 +445,7 @@ public function clearReconciling()
}
/**
- * [Output Only] Indicates whether there are wire changes yet to be processed.
+ * Output only. [Output Only] Indicates whether there are wire changes yet to be processed.
*
* Generated from protobuf field optional bool reconciling = 432155787;
* @param bool $var
@@ -460,7 +460,7 @@ public function setReconciling($var)
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -481,7 +481,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for the resource.
+ * Output only. [Output Only] Server-defined URL for the resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
@@ -496,7 +496,7 @@ public function setSelfLink($var)
}
/**
- * Topology details for the wire group configuration.
+ * Output only. Topology details for the wire group configuration.
*
* Generated from protobuf field optional .google.cloud.compute.v1.WireGroupTopology topology = 122274415;
* @return \Google\Cloud\Compute\V1\WireGroupTopology|null
@@ -517,7 +517,7 @@ public function clearTopology()
}
/**
- * Topology details for the wire group configuration.
+ * Output only. Topology details for the wire group configuration.
*
* Generated from protobuf field optional .google.cloud.compute.v1.WireGroupTopology topology = 122274415;
* @param \Google\Cloud\Compute\V1\WireGroupTopology $var
@@ -568,7 +568,7 @@ public function setWireProperties($var)
}
/**
- * The single/redundant wire(s) managed by the wire group.
+ * Output only. The single/redundant wire(s) managed by the wire group.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.Wire wires = 113139854;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -579,7 +579,7 @@ public function getWires()
}
/**
- * The single/redundant wire(s) managed by the wire group.
+ * Output only. The single/redundant wire(s) managed by the wire group.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.Wire wires = 113139854;
* @param array<\Google\Cloud\Compute\V1\Wire>|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/WireGroupList.php b/Compute/src/V1/WireGroupList.php
index fcd94e30e1b1..4728a94c9881 100644
--- a/Compute/src/V1/WireGroupList.php
+++ b/Compute/src/V1/WireGroupList.php
@@ -32,7 +32,7 @@ class WireGroupList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of the resource. Alwayscompute#wireGroups for wire groups.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#wireGroups for wire groups.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -54,7 +54,7 @@ class WireGroupList extends \Google\Protobuf\Internal\Message
*/
protected $self_link = null;
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* end_interface: MixerListResponseWithEtagBuilder
*
* Generated from protobuf field repeated string unreachables = 243372063;
@@ -79,7 +79,7 @@ class WireGroupList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\WireGroup>|\Google\Protobuf\Internal\RepeatedField $items
* A list of wire group resources.
* @type string $kind
- * [Output Only] Type of the resource. Alwayscompute#wireGroups for wire groups.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#wireGroups for wire groups.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -89,7 +89,7 @@ class WireGroupList extends \Google\Protobuf\Internal\Message
* @type string $self_link
* [Output Only] Server-defined URL for this resource.
* @type array|\Google\Protobuf\Internal\RepeatedField $unreachables
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* end_interface: MixerListResponseWithEtagBuilder
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
@@ -195,7 +195,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of the resource. Alwayscompute#wireGroups for wire groups.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#wireGroups for wire groups.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -216,7 +216,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Alwayscompute#wireGroups for wire groups.
+ * Output only. [Output Only] Type of the resource. Alwayscompute#wireGroups for wire groups.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -311,7 +311,7 @@ public function setSelfLink($var)
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* end_interface: MixerListResponseWithEtagBuilder
*
* Generated from protobuf field repeated string unreachables = 243372063;
@@ -323,7 +323,7 @@ public function getUnreachables()
}
/**
- * [Output Only] Unreachable resources.
+ * Output only. [Output Only] Unreachable resources.
* end_interface: MixerListResponseWithEtagBuilder
*
* Generated from protobuf field repeated string unreachables = 243372063;
diff --git a/Compute/src/V1/WireGroupTopology.php b/Compute/src/V1/WireGroupTopology.php
index 4819e645f52f..d4149e29ec18 100644
--- a/Compute/src/V1/WireGroupTopology.php
+++ b/Compute/src/V1/WireGroupTopology.php
@@ -16,7 +16,7 @@
class WireGroupTopology extends \Google\Protobuf\Internal\Message
{
/**
- * Topology details for all endpoints in the wire group.
+ * Output only. Topology details for all endpoints in the wire group.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.WireGroupTopologyEndpoint endpoints = 287085950;
*/
@@ -29,7 +29,7 @@ class WireGroupTopology extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type array<\Google\Cloud\Compute\V1\WireGroupTopologyEndpoint>|\Google\Protobuf\Internal\RepeatedField $endpoints
- * Topology details for all endpoints in the wire group.
+ * Output only. Topology details for all endpoints in the wire group.
* }
*/
public function __construct($data = NULL) {
@@ -38,7 +38,7 @@ public function __construct($data = NULL) {
}
/**
- * Topology details for all endpoints in the wire group.
+ * Output only. Topology details for all endpoints in the wire group.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.WireGroupTopologyEndpoint endpoints = 287085950;
* @return \Google\Protobuf\Internal\RepeatedField
@@ -49,7 +49,7 @@ public function getEndpoints()
}
/**
- * Topology details for all endpoints in the wire group.
+ * Output only. Topology details for all endpoints in the wire group.
*
* Generated from protobuf field repeated .google.cloud.compute.v1.WireGroupTopologyEndpoint endpoints = 287085950;
* @param array<\Google\Cloud\Compute\V1\WireGroupTopologyEndpoint>|\Google\Protobuf\Internal\RepeatedField $var
diff --git a/Compute/src/V1/WireGroupTopologyEndpoint.php b/Compute/src/V1/WireGroupTopologyEndpoint.php
index 0bce48e0f82d..589bd7aca0e8 100644
--- a/Compute/src/V1/WireGroupTopologyEndpoint.php
+++ b/Compute/src/V1/WireGroupTopologyEndpoint.php
@@ -16,14 +16,14 @@
class WireGroupTopologyEndpoint extends \Google\Protobuf\Internal\Message
{
/**
- * The InterconnectLocation.city (metropolitan area designator) that all
+ * Output only. The InterconnectLocation.city (metropolitan area designator) that all
* interconnects are located in.
*
* Generated from protobuf field optional string city = 3053931;
*/
protected $city = null;
/**
- * Endpoint label from the wire group.
+ * Output only. Endpoint label from the wire group.
*
* Generated from protobuf field optional string label = 102727412;
*/
@@ -36,10 +36,10 @@ class WireGroupTopologyEndpoint extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type string $city
- * The InterconnectLocation.city (metropolitan area designator) that all
+ * Output only. The InterconnectLocation.city (metropolitan area designator) that all
* interconnects are located in.
* @type string $label
- * Endpoint label from the wire group.
+ * Output only. Endpoint label from the wire group.
* }
*/
public function __construct($data = NULL) {
@@ -48,7 +48,7 @@ public function __construct($data = NULL) {
}
/**
- * The InterconnectLocation.city (metropolitan area designator) that all
+ * Output only. The InterconnectLocation.city (metropolitan area designator) that all
* interconnects are located in.
*
* Generated from protobuf field optional string city = 3053931;
@@ -70,7 +70,7 @@ public function clearCity()
}
/**
- * The InterconnectLocation.city (metropolitan area designator) that all
+ * Output only. The InterconnectLocation.city (metropolitan area designator) that all
* interconnects are located in.
*
* Generated from protobuf field optional string city = 3053931;
@@ -86,7 +86,7 @@ public function setCity($var)
}
/**
- * Endpoint label from the wire group.
+ * Output only. Endpoint label from the wire group.
*
* Generated from protobuf field optional string label = 102727412;
* @return string
@@ -107,7 +107,7 @@ public function clearLabel()
}
/**
- * Endpoint label from the wire group.
+ * Output only. Endpoint label from the wire group.
*
* Generated from protobuf field optional string label = 102727412;
* @param string $var
diff --git a/Compute/src/V1/XpnHostList.php b/Compute/src/V1/XpnHostList.php
index bccf53252f71..8064bf7d277f 100644
--- a/Compute/src/V1/XpnHostList.php
+++ b/Compute/src/V1/XpnHostList.php
@@ -27,7 +27,7 @@ class XpnHostList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * [Output Only] Type of resource. Always compute#xpnHostList for
+ * Output only. [Output Only] Type of resource. Always compute#xpnHostList for
* lists of shared VPC hosts.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -44,7 +44,7 @@ class XpnHostList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -67,7 +67,7 @@ class XpnHostList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\Project>|\Google\Protobuf\Internal\RepeatedField $items
* [Output Only] A list of shared VPC host project URLs.
* @type string $kind
- * [Output Only] Type of resource. Always compute#xpnHostList for
+ * Output only. [Output Only] Type of resource. Always compute#xpnHostList for
* lists of shared VPC hosts.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
@@ -76,7 +76,7 @@ class XpnHostList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -149,7 +149,7 @@ public function setItems($var)
}
/**
- * [Output Only] Type of resource. Always compute#xpnHostList for
+ * Output only. [Output Only] Type of resource. Always compute#xpnHostList for
* lists of shared VPC hosts.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -171,7 +171,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of resource. Always compute#xpnHostList for
+ * Output only. [Output Only] Type of resource. Always compute#xpnHostList for
* lists of shared VPC hosts.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -231,7 +231,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -252,7 +252,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/Zone.php b/Compute/src/V1/Zone.php
index 484da1d832f1..2b06953c2dd3 100644
--- a/Compute/src/V1/Zone.php
+++ b/Compute/src/V1/Zone.php
@@ -51,7 +51,7 @@ class Zone extends \Google\Protobuf\Internal\Message
*/
protected $id = null;
/**
- * [Output Only] Type of the resource. Always compute#zone for
+ * Output only. [Output Only] Type of the resource. Always compute#zone for
* zones.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -83,7 +83,7 @@ class Zone extends \Google\Protobuf\Internal\Message
*/
protected $status = null;
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool supports_pzs = 83983214;
*/
@@ -108,7 +108,7 @@ class Zone extends \Google\Protobuf\Internal\Message
* [Output Only] The unique identifier for the resource. This identifier is
* defined by the server.
* @type string $kind
- * [Output Only] Type of the resource. Always compute#zone for
+ * Output only. [Output Only] Type of the resource. Always compute#zone for
* zones.
* @type string $name
* [Output Only] Name of the resource.
@@ -120,7 +120,7 @@ class Zone extends \Google\Protobuf\Internal\Message
* [Output Only] Status of the zone, either UP orDOWN.
* Check the Status enum for the list of possible values.
* @type bool $supports_pzs
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
* }
*/
public function __construct($data = NULL) {
@@ -303,7 +303,7 @@ public function setId($var)
}
/**
- * [Output Only] Type of the resource. Always compute#zone for
+ * Output only. [Output Only] Type of the resource. Always compute#zone for
* zones.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -325,7 +325,7 @@ public function clearKind()
}
/**
- * [Output Only] Type of the resource. Always compute#zone for
+ * Output only. [Output Only] Type of the resource. Always compute#zone for
* zones.
*
* Generated from protobuf field optional string kind = 3292052;
@@ -487,7 +487,7 @@ public function setStatus($var)
}
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool supports_pzs = 83983214;
* @return bool
@@ -508,7 +508,7 @@ public function clearSupportsPzs()
}
/**
- * [Output Only] Reserved for future use.
+ * Output only. [Output Only] Reserved for future use.
*
* Generated from protobuf field optional bool supports_pzs = 83983214;
* @param bool $var
diff --git a/Compute/src/V1/ZoneList.php b/Compute/src/V1/ZoneList.php
index 6148eb177936..712f0a3b2066 100644
--- a/Compute/src/V1/ZoneList.php
+++ b/Compute/src/V1/ZoneList.php
@@ -28,7 +28,7 @@ class ZoneList extends \Google\Protobuf\Internal\Message
*/
private $items;
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
*/
@@ -44,7 +44,7 @@ class ZoneList extends \Google\Protobuf\Internal\Message
*/
protected $next_page_token = null;
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
*/
@@ -67,7 +67,7 @@ class ZoneList extends \Google\Protobuf\Internal\Message
* @type array<\Google\Cloud\Compute\V1\Zone>|\Google\Protobuf\Internal\RepeatedField $items
* A list of Zone resources.
* @type string $kind
- * Type of resource.
+ * Output only. Type of resource.
* @type string $next_page_token
* [Output Only] This token allows you to get the next page of results for
* list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
@@ -75,7 +75,7 @@ class ZoneList extends \Google\Protobuf\Internal\Message
* Subsequent list requests will have their own nextPageToken to
* continue paging through the results.
* @type string $self_link
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
* @type \Google\Cloud\Compute\V1\Warning $warning
* [Output Only] Informational warning message.
* }
@@ -148,7 +148,7 @@ public function setItems($var)
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @return string
@@ -169,7 +169,7 @@ public function clearKind()
}
/**
- * Type of resource.
+ * Output only. Type of resource.
*
* Generated from protobuf field optional string kind = 3292052;
* @param string $var
@@ -228,7 +228,7 @@ public function setNextPageToken($var)
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @return string
@@ -249,7 +249,7 @@ public function clearSelfLink()
}
/**
- * [Output Only] Server-defined URL for this resource.
+ * Output only. [Output Only] Server-defined URL for this resource.
*
* Generated from protobuf field optional string self_link = 456214797;
* @param string $var
diff --git a/Compute/src/V1/gapic_metadata.json b/Compute/src/V1/gapic_metadata.json
index c747287dd935..86dedf8c8227 100644
--- a/Compute/src/V1/gapic_metadata.json
+++ b/Compute/src/V1/gapic_metadata.json
@@ -78,6 +78,20 @@
}
}
},
+ "Advice": {
+ "clients": {
+ "grpc": {
+ "libraryClient": "AdviceGapicClient",
+ "rpcs": {
+ "CalendarMode": {
+ "methods": [
+ "calendarMode"
+ ]
+ }
+ }
+ }
+ }
+ },
"Autoscalers": {
"clients": {
"grpc": {
diff --git a/Compute/src/V1/resources/advice_client_config.json b/Compute/src/V1/resources/advice_client_config.json
new file mode 100644
index 000000000000..5e67ebaaf9c3
--- /dev/null
+++ b/Compute/src/V1/resources/advice_client_config.json
@@ -0,0 +1,37 @@
+{
+ "interfaces": {
+ "google.cloud.compute.v1.Advice": {
+ "retry_codes": {
+ "no_retry_codes": [],
+ "no_retry_1_codes": []
+ },
+ "retry_params": {
+ "no_retry_params": {
+ "initial_retry_delay_millis": 0,
+ "retry_delay_multiplier": 0.0,
+ "max_retry_delay_millis": 0,
+ "initial_rpc_timeout_millis": 0,
+ "rpc_timeout_multiplier": 1.0,
+ "max_rpc_timeout_millis": 0,
+ "total_timeout_millis": 0
+ },
+ "no_retry_1_params": {
+ "initial_retry_delay_millis": 0,
+ "retry_delay_multiplier": 0.0,
+ "max_retry_delay_millis": 0,
+ "initial_rpc_timeout_millis": 600000,
+ "rpc_timeout_multiplier": 1.0,
+ "max_rpc_timeout_millis": 600000,
+ "total_timeout_millis": 600000
+ }
+ },
+ "methods": {
+ "CalendarMode": {
+ "timeout_millis": 600000,
+ "retry_codes_name": "no_retry_1_codes",
+ "retry_params_name": "no_retry_1_params"
+ }
+ }
+ }
+ }
+}
diff --git a/Compute/src/V1/resources/advice_descriptor_config.php b/Compute/src/V1/resources/advice_descriptor_config.php
new file mode 100644
index 000000000000..5547961b527e
--- /dev/null
+++ b/Compute/src/V1/resources/advice_descriptor_config.php
@@ -0,0 +1,46 @@
+ [
+ 'google.cloud.compute.v1.Advice' => [
+ 'CalendarMode' => [
+ 'callType' => \Google\ApiCore\Call::UNARY_CALL,
+ 'responseType' => 'Google\Cloud\Compute\V1\CalendarModeAdviceResponse',
+ 'headerParams' => [
+ [
+ 'keyName' => 'project',
+ 'fieldAccessors' => [
+ 'getProject',
+ ],
+ ],
+ [
+ 'keyName' => 'region',
+ 'fieldAccessors' => [
+ 'getRegion',
+ ],
+ ],
+ ],
+ ],
+ ],
+ ],
+];
diff --git a/Compute/src/V1/resources/advice_rest_client_config.php b/Compute/src/V1/resources/advice_rest_client_config.php
new file mode 100644
index 000000000000..928b8e4e19f8
--- /dev/null
+++ b/Compute/src/V1/resources/advice_rest_client_config.php
@@ -0,0 +1,45 @@
+ [
+ 'google.cloud.compute.v1.Advice' => [
+ 'CalendarMode' => [
+ 'method' => 'post',
+ 'uriTemplate' => '/compute/v1/projects/{project}/regions/{region}/advice/calendarMode',
+ 'body' => 'calendar_mode_advice_request_resource',
+ 'placeholders' => [
+ 'project' => [
+ 'getters' => [
+ 'getProject',
+ ],
+ ],
+ 'region' => [
+ 'getters' => [
+ 'getRegion',
+ ],
+ ],
+ ],
+ ],
+ ],
+ ],
+];
diff --git a/Compute/tests/Unit/V1/Client/AddressesClientTest.php b/Compute/tests/Unit/V1/Client/AddressesClientTest.php
index 440dc55b2da2..a4823adea876 100644
--- a/Compute/tests/Unit/V1/Client/AddressesClientTest.php
+++ b/Compute/tests/Unit/V1/Client/AddressesClientTest.php
@@ -304,6 +304,7 @@ public function getTest()
$creationTimestamp = 'creationTimestamp567396278';
$description = 'description-1724546052';
$id = 3355;
+ $ipCollection = 'ipCollection176818358';
$ipVersion = 'ipVersion-1315653184';
$ipv6EndpointType = 'ipv6EndpointType-2049982644';
$kind = 'kind3292052';
@@ -323,6 +324,7 @@ public function getTest()
$expectedResponse->setCreationTimestamp($creationTimestamp);
$expectedResponse->setDescription($description);
$expectedResponse->setId($id);
+ $expectedResponse->setIpCollection($ipCollection);
$expectedResponse->setIpVersion($ipVersion);
$expectedResponse->setIpv6EndpointType($ipv6EndpointType);
$expectedResponse->setKind($kind);
diff --git a/Compute/tests/Unit/V1/Client/AdviceClientTest.php b/Compute/tests/Unit/V1/Client/AdviceClientTest.php
new file mode 100644
index 000000000000..d8f17996491f
--- /dev/null
+++ b/Compute/tests/Unit/V1/Client/AdviceClientTest.php
@@ -0,0 +1,177 @@
+getMockBuilder(CredentialsWrapper::class)
+ ->disableOriginalConstructor()
+ ->getMock();
+ }
+
+ /** @return AdviceClient */
+ private function createClient(array $options = [])
+ {
+ $options += [
+ 'credentials' => $this->createCredentials(),
+ ];
+ return new AdviceClient($options);
+ }
+
+ /** @test */
+ public function calendarModeTest()
+ {
+ $transport = $this->createTransport();
+ $gapicClient = $this->createClient([
+ 'transport' => $transport,
+ ]);
+ $this->assertTrue($transport->isExhausted());
+ // Mock response
+ $expectedResponse = new CalendarModeAdviceResponse();
+ $transport->addResponse($expectedResponse);
+ // Mock request
+ $calendarModeAdviceRequestResource = new CalendarModeAdviceRequest();
+ $project = 'project-309310695';
+ $region = 'region-934795532';
+ $request = (new CalendarModeAdviceRpcRequest())
+ ->setCalendarModeAdviceRequestResource($calendarModeAdviceRequestResource)
+ ->setProject($project)
+ ->setRegion($region);
+ $response = $gapicClient->calendarMode($request);
+ $this->assertEquals($expectedResponse, $response);
+ $actualRequests = $transport->popReceivedCalls();
+ $this->assertSame(1, count($actualRequests));
+ $actualFuncCall = $actualRequests[0]->getFuncCall();
+ $actualRequestObject = $actualRequests[0]->getRequestObject();
+ $this->assertSame('/google.cloud.compute.v1.Advice/CalendarMode', $actualFuncCall);
+ $actualValue = $actualRequestObject->getCalendarModeAdviceRequestResource();
+ $this->assertProtobufEquals($calendarModeAdviceRequestResource, $actualValue);
+ $actualValue = $actualRequestObject->getProject();
+ $this->assertProtobufEquals($project, $actualValue);
+ $actualValue = $actualRequestObject->getRegion();
+ $this->assertProtobufEquals($region, $actualValue);
+ $this->assertTrue($transport->isExhausted());
+ }
+
+ /** @test */
+ public function calendarModeExceptionTest()
+ {
+ $transport = $this->createTransport();
+ $gapicClient = $this->createClient([
+ 'transport' => $transport,
+ ]);
+ $this->assertTrue($transport->isExhausted());
+ $status = new stdClass();
+ $status->code = Code::DATA_LOSS;
+ $status->details = 'internal error';
+ $expectedExceptionMessage = json_encode(
+ [
+ 'message' => 'internal error',
+ 'code' => Code::DATA_LOSS,
+ 'status' => 'DATA_LOSS',
+ 'details' => [],
+ ],
+ JSON_PRETTY_PRINT
+ );
+ $transport->addResponse(null, $status);
+ // Mock request
+ $calendarModeAdviceRequestResource = new CalendarModeAdviceRequest();
+ $project = 'project-309310695';
+ $region = 'region-934795532';
+ $request = (new CalendarModeAdviceRpcRequest())
+ ->setCalendarModeAdviceRequestResource($calendarModeAdviceRequestResource)
+ ->setProject($project)
+ ->setRegion($region);
+ try {
+ $gapicClient->calendarMode($request);
+ // If the $gapicClient method call did not throw, fail the test
+ $this->fail('Expected an ApiException, but no exception was thrown.');
+ } catch (ApiException $ex) {
+ $this->assertEquals($status->code, $ex->getCode());
+ $this->assertEquals($expectedExceptionMessage, $ex->getMessage());
+ }
+ // Call popReceivedCalls to ensure the stub is exhausted
+ $transport->popReceivedCalls();
+ $this->assertTrue($transport->isExhausted());
+ }
+
+ /** @test */
+ public function calendarModeAsyncTest()
+ {
+ $transport = $this->createTransport();
+ $gapicClient = $this->createClient([
+ 'transport' => $transport,
+ ]);
+ $this->assertTrue($transport->isExhausted());
+ // Mock response
+ $expectedResponse = new CalendarModeAdviceResponse();
+ $transport->addResponse($expectedResponse);
+ // Mock request
+ $calendarModeAdviceRequestResource = new CalendarModeAdviceRequest();
+ $project = 'project-309310695';
+ $region = 'region-934795532';
+ $request = (new CalendarModeAdviceRpcRequest())
+ ->setCalendarModeAdviceRequestResource($calendarModeAdviceRequestResource)
+ ->setProject($project)
+ ->setRegion($region);
+ $response = $gapicClient->calendarModeAsync($request)->wait();
+ $this->assertEquals($expectedResponse, $response);
+ $actualRequests = $transport->popReceivedCalls();
+ $this->assertSame(1, count($actualRequests));
+ $actualFuncCall = $actualRequests[0]->getFuncCall();
+ $actualRequestObject = $actualRequests[0]->getRequestObject();
+ $this->assertSame('/google.cloud.compute.v1.Advice/CalendarMode', $actualFuncCall);
+ $actualValue = $actualRequestObject->getCalendarModeAdviceRequestResource();
+ $this->assertProtobufEquals($calendarModeAdviceRequestResource, $actualValue);
+ $actualValue = $actualRequestObject->getProject();
+ $this->assertProtobufEquals($project, $actualValue);
+ $actualValue = $actualRequestObject->getRegion();
+ $this->assertProtobufEquals($region, $actualValue);
+ $this->assertTrue($transport->isExhausted());
+ }
+}
diff --git a/Compute/tests/Unit/V1/Client/GlobalAddressesClientTest.php b/Compute/tests/Unit/V1/Client/GlobalAddressesClientTest.php
index 38f6f69977fc..d3a7de8b8940 100644
--- a/Compute/tests/Unit/V1/Client/GlobalAddressesClientTest.php
+++ b/Compute/tests/Unit/V1/Client/GlobalAddressesClientTest.php
@@ -210,6 +210,7 @@ public function getTest()
$creationTimestamp = 'creationTimestamp567396278';
$description = 'description-1724546052';
$id = 3355;
+ $ipCollection = 'ipCollection176818358';
$ipVersion = 'ipVersion-1315653184';
$ipv6EndpointType = 'ipv6EndpointType-2049982644';
$kind = 'kind3292052';
@@ -229,6 +230,7 @@ public function getTest()
$expectedResponse->setCreationTimestamp($creationTimestamp);
$expectedResponse->setDescription($description);
$expectedResponse->setId($id);
+ $expectedResponse->setIpCollection($ipCollection);
$expectedResponse->setIpVersion($ipVersion);
$expectedResponse->setIpv6EndpointType($ipv6EndpointType);
$expectedResponse->setKind($kind);
diff --git a/Compute/tests/Unit/V1/Client/GlobalPublicDelegatedPrefixesClientTest.php b/Compute/tests/Unit/V1/Client/GlobalPublicDelegatedPrefixesClientTest.php
index 703487ef227b..69ccf97e42af 100644
--- a/Compute/tests/Unit/V1/Client/GlobalPublicDelegatedPrefixesClientTest.php
+++ b/Compute/tests/Unit/V1/Client/GlobalPublicDelegatedPrefixesClientTest.php
@@ -207,6 +207,7 @@ public function getTest()
$byoipApiVersion = 'byoipApiVersion162683283';
$creationTimestamp = 'creationTimestamp567396278';
$description = 'description-1724546052';
+ $enableEnhancedIpv4Allocation = false;
$fingerprint = 'fingerprint-1375934236';
$id = 3355;
$ipCidrRange = 'ipCidrRange-2049366326';
@@ -224,6 +225,7 @@ public function getTest()
$expectedResponse->setByoipApiVersion($byoipApiVersion);
$expectedResponse->setCreationTimestamp($creationTimestamp);
$expectedResponse->setDescription($description);
+ $expectedResponse->setEnableEnhancedIpv4Allocation($enableEnhancedIpv4Allocation);
$expectedResponse->setFingerprint($fingerprint);
$expectedResponse->setId($id);
$expectedResponse->setIpCidrRange($ipCidrRange);
diff --git a/Compute/tests/Unit/V1/Client/InterconnectAttachmentsClientTest.php b/Compute/tests/Unit/V1/Client/InterconnectAttachmentsClientTest.php
index 7e423594dd75..623a1d297bce 100644
--- a/Compute/tests/Unit/V1/Client/InterconnectAttachmentsClientTest.php
+++ b/Compute/tests/Unit/V1/Client/InterconnectAttachmentsClientTest.php
@@ -298,6 +298,10 @@ public function getTest()
$adminEnabled = false;
$attachmentGroup = 'attachmentGroup600312931';
$bandwidth = 'bandwidth-1965768527';
+ $candidateCloudRouterIpAddress = 'candidateCloudRouterIpAddress311379276';
+ $candidateCloudRouterIpv6Address = 'candidateCloudRouterIpv6Address-119371252';
+ $candidateCustomerRouterIpAddress = 'candidateCustomerRouterIpAddress1949726125';
+ $candidateCustomerRouterIpv6Address = 'candidateCustomerRouterIpv6Address-1921046995';
$cloudRouterIpAddress = 'cloudRouterIpAddress1361134600';
$cloudRouterIpv6Address = 'cloudRouterIpv6Address-621819448';
$cloudRouterIpv6InterfaceId = 'cloudRouterIpv6InterfaceId1058153613';
@@ -333,6 +337,10 @@ public function getTest()
$expectedResponse->setAdminEnabled($adminEnabled);
$expectedResponse->setAttachmentGroup($attachmentGroup);
$expectedResponse->setBandwidth($bandwidth);
+ $expectedResponse->setCandidateCloudRouterIpAddress($candidateCloudRouterIpAddress);
+ $expectedResponse->setCandidateCloudRouterIpv6Address($candidateCloudRouterIpv6Address);
+ $expectedResponse->setCandidateCustomerRouterIpAddress($candidateCustomerRouterIpAddress);
+ $expectedResponse->setCandidateCustomerRouterIpv6Address($candidateCustomerRouterIpv6Address);
$expectedResponse->setCloudRouterIpAddress($cloudRouterIpAddress);
$expectedResponse->setCloudRouterIpv6Address($cloudRouterIpv6Address);
$expectedResponse->setCloudRouterIpv6InterfaceId($cloudRouterIpv6InterfaceId);
diff --git a/Compute/tests/Unit/V1/Client/PublicDelegatedPrefixesClientTest.php b/Compute/tests/Unit/V1/Client/PublicDelegatedPrefixesClientTest.php
index 056c99004dde..97c288b6be9e 100644
--- a/Compute/tests/Unit/V1/Client/PublicDelegatedPrefixesClientTest.php
+++ b/Compute/tests/Unit/V1/Client/PublicDelegatedPrefixesClientTest.php
@@ -429,6 +429,7 @@ public function getTest()
$byoipApiVersion = 'byoipApiVersion162683283';
$creationTimestamp = 'creationTimestamp567396278';
$description = 'description-1724546052';
+ $enableEnhancedIpv4Allocation = false;
$fingerprint = 'fingerprint-1375934236';
$id = 3355;
$ipCidrRange = 'ipCidrRange-2049366326';
@@ -446,6 +447,7 @@ public function getTest()
$expectedResponse->setByoipApiVersion($byoipApiVersion);
$expectedResponse->setCreationTimestamp($creationTimestamp);
$expectedResponse->setDescription($description);
+ $expectedResponse->setEnableEnhancedIpv4Allocation($enableEnhancedIpv4Allocation);
$expectedResponse->setFingerprint($fingerprint);
$expectedResponse->setId($id);
$expectedResponse->setIpCidrRange($ipCidrRange);
diff --git a/Compute/tests/Unit/V1/Client/RoutesClientTest.php b/Compute/tests/Unit/V1/Client/RoutesClientTest.php
index d32ccce0394e..3fc3ab02e1b9 100644
--- a/Compute/tests/Unit/V1/Client/RoutesClientTest.php
+++ b/Compute/tests/Unit/V1/Client/RoutesClientTest.php
@@ -210,6 +210,7 @@ public function getTest()
$nextHopIlb = 'nextHopIlb-1948803747';
$nextHopInstance = 'nextHopInstance1467250071';
$nextHopInterRegionCost = 1586170733;
+ $nextHopInterconnectAttachment = 'nextHopInterconnectAttachment-1383759822';
$nextHopIp = 'nextHopIp1184061353';
$nextHopMed = 1948800118;
$nextHopNetwork = 'nextHopNetwork1872908524';
@@ -233,6 +234,7 @@ public function getTest()
$expectedResponse->setNextHopIlb($nextHopIlb);
$expectedResponse->setNextHopInstance($nextHopInstance);
$expectedResponse->setNextHopInterRegionCost($nextHopInterRegionCost);
+ $expectedResponse->setNextHopInterconnectAttachment($nextHopInterconnectAttachment);
$expectedResponse->setNextHopIp($nextHopIp);
$expectedResponse->setNextHopMed($nextHopMed);
$expectedResponse->setNextHopNetwork($nextHopNetwork);
diff --git a/Compute/tests/Unit/V1/Client/SubnetworksClientTest.php b/Compute/tests/Unit/V1/Client/SubnetworksClientTest.php
index ea85ab546f31..d4e7684827a9 100644
--- a/Compute/tests/Unit/V1/Client/SubnetworksClientTest.php
+++ b/Compute/tests/Unit/V1/Client/SubnetworksClientTest.php
@@ -443,6 +443,7 @@ public function getTest()
]);
$this->assertTrue($transport->isExhausted());
// Mock response
+ $allowSubnetCidrRoutesOverlap = false;
$creationTimestamp = 'creationTimestamp567396278';
$description = 'description-1724546052';
$enableFlowLogs = true;
@@ -469,6 +470,7 @@ public function getTest()
$stackType = 'stackType2036521617';
$state = 'state109757585';
$expectedResponse = new Subnetwork();
+ $expectedResponse->setAllowSubnetCidrRoutesOverlap($allowSubnetCidrRoutesOverlap);
$expectedResponse->setCreationTimestamp($creationTimestamp);
$expectedResponse->setDescription($description);
$expectedResponse->setEnableFlowLogs($enableFlowLogs);