Skip to content

Commit 5e1fe2c

Browse files
1 parent 43e893b commit 5e1fe2c

File tree

3 files changed

+33
-7
lines changed

3 files changed

+33
-7
lines changed

src/DataFusion/ListOperationsResponse.php

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,9 @@ class ListOperationsResponse extends \Google\Collection
3030
protected $operationsDataType = 'array';
3131
/**
3232
* Unordered list. Unreachable resources. Populated when the request sets
33-
* `ListOperationsRequest.return_partial_success` and reads across collections
34-
* e.g. when attempting to list all resources across all supported locations.
33+
* `ListOperationsRequest.return_partial_success` and reads across
34+
* collections. For example, when attempting to list all resources across all
35+
* supported locations.
3536
*
3637
* @var string[]
3738
*/
@@ -71,8 +72,9 @@ public function getOperations()
7172
}
7273
/**
7374
* Unordered list. Unreachable resources. Populated when the request sets
74-
* `ListOperationsRequest.return_partial_success` and reads across collections
75-
* e.g. when attempting to list all resources across all supported locations.
75+
* `ListOperationsRequest.return_partial_success` and reads across
76+
* collections. For example, when attempting to list all resources across all
77+
* supported locations.
7678
*
7779
* @param string[] $unreachable
7880
*/

src/DataFusion/LoggingConfig.php

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,13 @@
1919

2020
class LoggingConfig extends \Google\Model
2121
{
22+
/**
23+
* Optional. Option to enable the InstanceV2 logging for this instance. This
24+
* field is supported only in CDF patch revision versions 6.11.1.1 and above.
25+
*
26+
* @var bool
27+
*/
28+
public $enableInstanceV2Logs;
2229
/**
2330
* Optional. Option to determine whether instance logs should be written to
2431
* Cloud Logging. By default, instance logs are written to Cloud Logging.
@@ -27,6 +34,23 @@ class LoggingConfig extends \Google\Model
2734
*/
2835
public $instanceCloudLoggingDisabled;
2936

37+
/**
38+
* Optional. Option to enable the InstanceV2 logging for this instance. This
39+
* field is supported only in CDF patch revision versions 6.11.1.1 and above.
40+
*
41+
* @param bool $enableInstanceV2Logs
42+
*/
43+
public function setEnableInstanceV2Logs($enableInstanceV2Logs)
44+
{
45+
$this->enableInstanceV2Logs = $enableInstanceV2Logs;
46+
}
47+
/**
48+
* @return bool
49+
*/
50+
public function getEnableInstanceV2Logs()
51+
{
52+
return $this->enableInstanceV2Logs;
53+
}
3054
/**
3155
* Optional. Option to determine whether instance logs should be written to
3256
* Cloud Logging. By default, instance logs are written to Cloud Logging.

src/DataFusion/Resource/ProjectsLocationsOperations.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,9 +101,9 @@ public function get($name, $optParams = [])
101101
* @opt_param string pageToken The standard list page token.
102102
* @opt_param bool returnPartialSuccess When set to `true`, operations that are
103103
* reachable are returned as normal, and those that are unreachable are returned
104-
* in the [ListOperationsResponse.unreachable] field. This can only be `true`
105-
* when reading across collections e.g. when `parent` is set to
106-
* `"projects/example/locations/-"`. This field is not by default supported and
104+
* in the ListOperationsResponse.unreachable field. This can only be `true` when
105+
* reading across collections. For example, when `parent` is set to
106+
* `"projects/example/locations/-"`. This field is not supported by default and
107107
* will result in an `UNIMPLEMENTED` error if set unless explicitly documented
108108
* otherwise in service or product specific documentation.
109109
* @return ListOperationsResponse

0 commit comments

Comments
 (0)