code
stringlengths 17
296k
| docstring
stringlengths 30
30.3k
| func_name
stringlengths 1
89
| language
stringclasses 1
value | repo
stringlengths 7
63
| path
stringlengths 7
153
| url
stringlengths 51
209
| license
stringclasses 4
values |
---|---|---|---|---|---|---|---|
public function setResource($var)
{
GPBUtil::checkString($var, True);
$this->resource = $var;
return $this;
} | Name or id of the resource for this request.
Generated from protobuf field <code>string resource = 195806222 [(.google.api.field_behavior) = REQUIRED];</code>
@param string $var
@return $this | setResource | php | googleapis/google-cloud-php | Compute/src/V1/SetLabelsExternalVpnGatewayRequest.php | https://github.com/googleapis/google-cloud-php/blob/master/Compute/src/V1/SetLabelsExternalVpnGatewayRequest.php | Apache-2.0 |
public function getScore()
{
return isset($this->score) ? $this->score : 0.0;
} | Output only. Question Answering Relevance score.
Generated from protobuf field <code>optional float score = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
@return float | getScore | php | googleapis/google-cloud-php | AiPlatform/src/V1/QuestionAnsweringRelevanceResult.php | https://github.com/googleapis/google-cloud-php/blob/master/AiPlatform/src/V1/QuestionAnsweringRelevanceResult.php | Apache-2.0 |
public function setScore($var)
{
GPBUtil::checkFloat($var);
$this->score = $var;
return $this;
} | Output only. Question Answering Relevance score.
Generated from protobuf field <code>optional float score = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
@param float $var
@return $this | setScore | php | googleapis/google-cloud-php | AiPlatform/src/V1/QuestionAnsweringRelevanceResult.php | https://github.com/googleapis/google-cloud-php/blob/master/AiPlatform/src/V1/QuestionAnsweringRelevanceResult.php | Apache-2.0 |
public function getExplanation()
{
return $this->explanation;
} | Output only. Explanation for question answering relevance score.
Generated from protobuf field <code>string explanation = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
@return string | getExplanation | php | googleapis/google-cloud-php | AiPlatform/src/V1/QuestionAnsweringRelevanceResult.php | https://github.com/googleapis/google-cloud-php/blob/master/AiPlatform/src/V1/QuestionAnsweringRelevanceResult.php | Apache-2.0 |
public function setExplanation($var)
{
GPBUtil::checkString($var, True);
$this->explanation = $var;
return $this;
} | Output only. Explanation for question answering relevance score.
Generated from protobuf field <code>string explanation = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
@param string $var
@return $this | setExplanation | php | googleapis/google-cloud-php | AiPlatform/src/V1/QuestionAnsweringRelevanceResult.php | https://github.com/googleapis/google-cloud-php/blob/master/AiPlatform/src/V1/QuestionAnsweringRelevanceResult.php | Apache-2.0 |
public function getConfidence()
{
return isset($this->confidence) ? $this->confidence : 0.0;
} | Output only. Confidence for question answering relevance score.
Generated from protobuf field <code>optional float confidence = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
@return float | getConfidence | php | googleapis/google-cloud-php | AiPlatform/src/V1/QuestionAnsweringRelevanceResult.php | https://github.com/googleapis/google-cloud-php/blob/master/AiPlatform/src/V1/QuestionAnsweringRelevanceResult.php | Apache-2.0 |
public function setConfidence($var)
{
GPBUtil::checkFloat($var);
$this->confidence = $var;
return $this;
} | Output only. Confidence for question answering relevance score.
Generated from protobuf field <code>optional float confidence = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
@param float $var
@return $this | setConfidence | php | googleapis/google-cloud-php | AiPlatform/src/V1/QuestionAnsweringRelevanceResult.php | https://github.com/googleapis/google-cloud-php/blob/master/AiPlatform/src/V1/QuestionAnsweringRelevanceResult.php | Apache-2.0 |
public function getVersionId()
{
return $this->version_id;
} | The version ID of the model.
Generated from protobuf field <code>string version_id = 1;</code>
@return string | getVersionId | php | googleapis/google-cloud-php | DataCatalog/src/V1/VertexModelSpec.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/VertexModelSpec.php | Apache-2.0 |
public function setVersionId($var)
{
GPBUtil::checkString($var, True);
$this->version_id = $var;
return $this;
} | The version ID of the model.
Generated from protobuf field <code>string version_id = 1;</code>
@param string $var
@return $this | setVersionId | php | googleapis/google-cloud-php | DataCatalog/src/V1/VertexModelSpec.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/VertexModelSpec.php | Apache-2.0 |
public function getVersionAliases()
{
return $this->version_aliases;
} | User provided version aliases so that a model version can be referenced via
alias
Generated from protobuf field <code>repeated string version_aliases = 2;</code>
@return \Google\Protobuf\Internal\RepeatedField | getVersionAliases | php | googleapis/google-cloud-php | DataCatalog/src/V1/VertexModelSpec.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/VertexModelSpec.php | Apache-2.0 |
public function setVersionAliases($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::STRING);
$this->version_aliases = $arr;
return $this;
} | User provided version aliases so that a model version can be referenced via
alias
Generated from protobuf field <code>repeated string version_aliases = 2;</code>
@param array<string>|\Google\Protobuf\Internal\RepeatedField $var
@return $this | setVersionAliases | php | googleapis/google-cloud-php | DataCatalog/src/V1/VertexModelSpec.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/VertexModelSpec.php | Apache-2.0 |
public function getVersionDescription()
{
return $this->version_description;
} | The description of this version.
Generated from protobuf field <code>string version_description = 3;</code>
@return string | getVersionDescription | php | googleapis/google-cloud-php | DataCatalog/src/V1/VertexModelSpec.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/VertexModelSpec.php | Apache-2.0 |
public function setVersionDescription($var)
{
GPBUtil::checkString($var, True);
$this->version_description = $var;
return $this;
} | The description of this version.
Generated from protobuf field <code>string version_description = 3;</code>
@param string $var
@return $this | setVersionDescription | php | googleapis/google-cloud-php | DataCatalog/src/V1/VertexModelSpec.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/VertexModelSpec.php | Apache-2.0 |
public function getVertexModelSourceInfo()
{
return $this->vertex_model_source_info;
} | Source of a Vertex model.
Generated from protobuf field <code>.google.cloud.datacatalog.v1.VertexModelSourceInfo vertex_model_source_info = 4;</code>
@return \Google\Cloud\DataCatalog\V1\VertexModelSourceInfo|null | getVertexModelSourceInfo | php | googleapis/google-cloud-php | DataCatalog/src/V1/VertexModelSpec.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/VertexModelSpec.php | Apache-2.0 |
public function setVertexModelSourceInfo($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\DataCatalog\V1\VertexModelSourceInfo::class);
$this->vertex_model_source_info = $var;
return $this;
} | Source of a Vertex model.
Generated from protobuf field <code>.google.cloud.datacatalog.v1.VertexModelSourceInfo vertex_model_source_info = 4;</code>
@param \Google\Cloud\DataCatalog\V1\VertexModelSourceInfo $var
@return $this | setVertexModelSourceInfo | php | googleapis/google-cloud-php | DataCatalog/src/V1/VertexModelSpec.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/VertexModelSpec.php | Apache-2.0 |
public function getContainerImageUri()
{
return $this->container_image_uri;
} | URI of the Docker image to be used as the custom container for serving
predictions.
Generated from protobuf field <code>string container_image_uri = 5;</code>
@return string | getContainerImageUri | php | googleapis/google-cloud-php | DataCatalog/src/V1/VertexModelSpec.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/VertexModelSpec.php | Apache-2.0 |
public function setContainerImageUri($var)
{
GPBUtil::checkString($var, True);
$this->container_image_uri = $var;
return $this;
} | URI of the Docker image to be used as the custom container for serving
predictions.
Generated from protobuf field <code>string container_image_uri = 5;</code>
@param string $var
@return $this | setContainerImageUri | php | googleapis/google-cloud-php | DataCatalog/src/V1/VertexModelSpec.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/VertexModelSpec.php | Apache-2.0 |
public function getName()
{
return $this->name;
} | Output only. The name of this instance is in the form of
projects/{project}/locations/{location}/instances/{instance}.
Generated from protobuf field <code>string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = {</code>
@return string | getName | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function setName($var)
{
GPBUtil::checkString($var, True);
$this->name = $var;
return $this;
} | Output only. The name of this instance is in the form of
projects/{project}/locations/{location}/instances/{instance}.
Generated from protobuf field <code>string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = {</code>
@param string $var
@return $this | setName | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function getDescription()
{
return $this->description;
} | A description of this instance.
Generated from protobuf field <code>string description = 2;</code>
@return string | getDescription | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function setDescription($var)
{
GPBUtil::checkString($var, True);
$this->description = $var;
return $this;
} | A description of this instance.
Generated from protobuf field <code>string description = 2;</code>
@param string $var
@return $this | setDescription | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function getType()
{
return $this->type;
} | Required. Instance type.
Generated from protobuf field <code>.google.cloud.datafusion.v1.Instance.Type type = 3 [(.google.api.field_behavior) = REQUIRED];</code>
@return int | getType | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function setType($var)
{
GPBUtil::checkEnum($var, \Google\Cloud\DataFusion\V1\Instance\Type::class);
$this->type = $var;
return $this;
} | Required. Instance type.
Generated from protobuf field <code>.google.cloud.datafusion.v1.Instance.Type type = 3 [(.google.api.field_behavior) = REQUIRED];</code>
@param int $var
@return $this | setType | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function getEnableStackdriverLogging()
{
return $this->enable_stackdriver_logging;
} | Option to enable Stackdriver Logging.
Generated from protobuf field <code>bool enable_stackdriver_logging = 4;</code>
@return bool | getEnableStackdriverLogging | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function setEnableStackdriverLogging($var)
{
GPBUtil::checkBool($var);
$this->enable_stackdriver_logging = $var;
return $this;
} | Option to enable Stackdriver Logging.
Generated from protobuf field <code>bool enable_stackdriver_logging = 4;</code>
@param bool $var
@return $this | setEnableStackdriverLogging | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function getEnableStackdriverMonitoring()
{
return $this->enable_stackdriver_monitoring;
} | Option to enable Stackdriver Monitoring.
Generated from protobuf field <code>bool enable_stackdriver_monitoring = 5;</code>
@return bool | getEnableStackdriverMonitoring | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function setEnableStackdriverMonitoring($var)
{
GPBUtil::checkBool($var);
$this->enable_stackdriver_monitoring = $var;
return $this;
} | Option to enable Stackdriver Monitoring.
Generated from protobuf field <code>bool enable_stackdriver_monitoring = 5;</code>
@param bool $var
@return $this | setEnableStackdriverMonitoring | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function getPrivateInstance()
{
return $this->private_instance;
} | Specifies whether the Data Fusion instance should be private. If set to
true, all Data Fusion nodes will have private IP addresses and will not be
able to access the public internet.
Generated from protobuf field <code>bool private_instance = 6;</code>
@return bool | getPrivateInstance | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function setPrivateInstance($var)
{
GPBUtil::checkBool($var);
$this->private_instance = $var;
return $this;
} | Specifies whether the Data Fusion instance should be private. If set to
true, all Data Fusion nodes will have private IP addresses and will not be
able to access the public internet.
Generated from protobuf field <code>bool private_instance = 6;</code>
@param bool $var
@return $this | setPrivateInstance | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function getNetworkConfig()
{
return $this->network_config;
} | Network configuration options. These are required when a private Data
Fusion instance is to be created.
Generated from protobuf field <code>.google.cloud.datafusion.v1.NetworkConfig network_config = 7;</code>
@return \Google\Cloud\DataFusion\V1\NetworkConfig|null | getNetworkConfig | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function setNetworkConfig($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\DataFusion\V1\NetworkConfig::class);
$this->network_config = $var;
return $this;
} | Network configuration options. These are required when a private Data
Fusion instance is to be created.
Generated from protobuf field <code>.google.cloud.datafusion.v1.NetworkConfig network_config = 7;</code>
@param \Google\Cloud\DataFusion\V1\NetworkConfig $var
@return $this | setNetworkConfig | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function getLabels()
{
return $this->labels;
} | The resource labels for instance to use to annotate any related underlying
resources such as Compute Engine VMs. The character '=' is not allowed to
be used within the labels.
Generated from protobuf field <code>map<string, string> labels = 8;</code>
@return \Google\Protobuf\Internal\MapField | getLabels | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function setLabels($var)
{
$arr = GPBUtil::checkMapField($var, \Google\Protobuf\Internal\GPBType::STRING, \Google\Protobuf\Internal\GPBType::STRING);
$this->labels = $arr;
return $this;
} | The resource labels for instance to use to annotate any related underlying
resources such as Compute Engine VMs. The character '=' is not allowed to
be used within the labels.
Generated from protobuf field <code>map<string, string> labels = 8;</code>
@param array|\Google\Protobuf\Internal\MapField $var
@return $this | setLabels | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function getOptions()
{
return $this->options;
} | Map of additional options used to configure the behavior of
Data Fusion instance.
Generated from protobuf field <code>map<string, string> options = 9;</code>
@return \Google\Protobuf\Internal\MapField | getOptions | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function setOptions($var)
{
$arr = GPBUtil::checkMapField($var, \Google\Protobuf\Internal\GPBType::STRING, \Google\Protobuf\Internal\GPBType::STRING);
$this->options = $arr;
return $this;
} | Map of additional options used to configure the behavior of
Data Fusion instance.
Generated from protobuf field <code>map<string, string> options = 9;</code>
@param array|\Google\Protobuf\Internal\MapField $var
@return $this | setOptions | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function getCreateTime()
{
return $this->create_time;
} | Output only. The time the instance was created.
Generated from protobuf field <code>.google.protobuf.Timestamp create_time = 10 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
@return \Google\Protobuf\Timestamp|null | getCreateTime | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function setCreateTime($var)
{
GPBUtil::checkMessage($var, \Google\Protobuf\Timestamp::class);
$this->create_time = $var;
return $this;
} | Output only. The time the instance was created.
Generated from protobuf field <code>.google.protobuf.Timestamp create_time = 10 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
@param \Google\Protobuf\Timestamp $var
@return $this | setCreateTime | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function getUpdateTime()
{
return $this->update_time;
} | Output only. The time the instance was last updated.
Generated from protobuf field <code>.google.protobuf.Timestamp update_time = 11 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
@return \Google\Protobuf\Timestamp|null | getUpdateTime | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function setUpdateTime($var)
{
GPBUtil::checkMessage($var, \Google\Protobuf\Timestamp::class);
$this->update_time = $var;
return $this;
} | Output only. The time the instance was last updated.
Generated from protobuf field <code>.google.protobuf.Timestamp update_time = 11 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
@param \Google\Protobuf\Timestamp $var
@return $this | setUpdateTime | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function getState()
{
return $this->state;
} | Output only. The current state of this Data Fusion instance.
Generated from protobuf field <code>.google.cloud.datafusion.v1.Instance.State state = 12 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
@return int | getState | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function setState($var)
{
GPBUtil::checkEnum($var, \Google\Cloud\DataFusion\V1\Instance\State::class);
$this->state = $var;
return $this;
} | Output only. The current state of this Data Fusion instance.
Generated from protobuf field <code>.google.cloud.datafusion.v1.Instance.State state = 12 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
@param int $var
@return $this | setState | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function getStateMessage()
{
return $this->state_message;
} | Output only. Additional information about the current state of this Data
Fusion instance if available.
Generated from protobuf field <code>string state_message = 13 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
@return string | getStateMessage | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function setStateMessage($var)
{
GPBUtil::checkString($var, True);
$this->state_message = $var;
return $this;
} | Output only. Additional information about the current state of this Data
Fusion instance if available.
Generated from protobuf field <code>string state_message = 13 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
@param string $var
@return $this | setStateMessage | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function getServiceEndpoint()
{
return $this->service_endpoint;
} | Output only. Endpoint on which the Data Fusion UI is accessible.
Generated from protobuf field <code>string service_endpoint = 14 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
@return string | getServiceEndpoint | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function setServiceEndpoint($var)
{
GPBUtil::checkString($var, True);
$this->service_endpoint = $var;
return $this;
} | Output only. Endpoint on which the Data Fusion UI is accessible.
Generated from protobuf field <code>string service_endpoint = 14 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
@param string $var
@return $this | setServiceEndpoint | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function getZone()
{
return $this->zone;
} | Name of the zone in which the Data Fusion instance will be created. Only
DEVELOPER instances use this field.
Generated from protobuf field <code>string zone = 15;</code>
@return string | getZone | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function setZone($var)
{
GPBUtil::checkString($var, True);
$this->zone = $var;
return $this;
} | Name of the zone in which the Data Fusion instance will be created. Only
DEVELOPER instances use this field.
Generated from protobuf field <code>string zone = 15;</code>
@param string $var
@return $this | setZone | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function getVersion()
{
return $this->version;
} | Current version of the Data Fusion. Only specifiable in Update.
Generated from protobuf field <code>string version = 16;</code>
@return string | getVersion | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function setVersion($var)
{
GPBUtil::checkString($var, True);
$this->version = $var;
return $this;
} | Current version of the Data Fusion. Only specifiable in Update.
Generated from protobuf field <code>string version = 16;</code>
@param string $var
@return $this | setVersion | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function getServiceAccount()
{
@trigger_error('service_account is deprecated.', E_USER_DEPRECATED);
return $this->service_account;
} | Output only. Deprecated. Use tenant_project_id instead to extract the tenant project ID.
Generated from protobuf field <code>string service_account = 17 [deprecated = true, (.google.api.field_behavior) = OUTPUT_ONLY];</code>
@return string
@deprecated | getServiceAccount | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function setServiceAccount($var)
{
@trigger_error('service_account is deprecated.', E_USER_DEPRECATED);
GPBUtil::checkString($var, True);
$this->service_account = $var;
return $this;
} | Output only. Deprecated. Use tenant_project_id instead to extract the tenant project ID.
Generated from protobuf field <code>string service_account = 17 [deprecated = true, (.google.api.field_behavior) = OUTPUT_ONLY];</code>
@param string $var
@return $this
@deprecated | setServiceAccount | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function getDisplayName()
{
return $this->display_name;
} | Display name for an instance.
Generated from protobuf field <code>string display_name = 18;</code>
@return string | getDisplayName | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function setDisplayName($var)
{
GPBUtil::checkString($var, True);
$this->display_name = $var;
return $this;
} | Display name for an instance.
Generated from protobuf field <code>string display_name = 18;</code>
@param string $var
@return $this | setDisplayName | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function getAvailableVersion()
{
return $this->available_version;
} | Available versions that the instance can be upgraded to using
UpdateInstanceRequest.
Generated from protobuf field <code>repeated .google.cloud.datafusion.v1.Version available_version = 19;</code>
@return \Google\Protobuf\Internal\RepeatedField | getAvailableVersion | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function setAvailableVersion($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\DataFusion\V1\Version::class);
$this->available_version = $arr;
return $this;
} | Available versions that the instance can be upgraded to using
UpdateInstanceRequest.
Generated from protobuf field <code>repeated .google.cloud.datafusion.v1.Version available_version = 19;</code>
@param array<\Google\Cloud\DataFusion\V1\Version>|\Google\Protobuf\Internal\RepeatedField $var
@return $this | setAvailableVersion | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function getApiEndpoint()
{
return $this->api_endpoint;
} | Output only. Endpoint on which the REST APIs is accessible.
Generated from protobuf field <code>string api_endpoint = 20 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
@return string | getApiEndpoint | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function setApiEndpoint($var)
{
GPBUtil::checkString($var, True);
$this->api_endpoint = $var;
return $this;
} | Output only. Endpoint on which the REST APIs is accessible.
Generated from protobuf field <code>string api_endpoint = 20 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
@param string $var
@return $this | setApiEndpoint | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function getGcsBucket()
{
return $this->gcs_bucket;
} | Output only. Cloud Storage bucket generated by Data Fusion in the customer project.
Generated from protobuf field <code>string gcs_bucket = 21 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
@return string | getGcsBucket | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function setGcsBucket($var)
{
GPBUtil::checkString($var, True);
$this->gcs_bucket = $var;
return $this;
} | Output only. Cloud Storage bucket generated by Data Fusion in the customer project.
Generated from protobuf field <code>string gcs_bucket = 21 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
@param string $var
@return $this | setGcsBucket | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function getAccelerators()
{
return $this->accelerators;
} | List of accelerators enabled for this CDF instance.
Generated from protobuf field <code>repeated .google.cloud.datafusion.v1.Accelerator accelerators = 22;</code>
@return \Google\Protobuf\Internal\RepeatedField | getAccelerators | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function setAccelerators($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\DataFusion\V1\Accelerator::class);
$this->accelerators = $arr;
return $this;
} | List of accelerators enabled for this CDF instance.
Generated from protobuf field <code>repeated .google.cloud.datafusion.v1.Accelerator accelerators = 22;</code>
@param array<\Google\Cloud\DataFusion\V1\Accelerator>|\Google\Protobuf\Internal\RepeatedField $var
@return $this | setAccelerators | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function getP4ServiceAccount()
{
return $this->p4_service_account;
} | Output only. P4 service account for the customer project.
Generated from protobuf field <code>string p4_service_account = 23 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
@return string | getP4ServiceAccount | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function setP4ServiceAccount($var)
{
GPBUtil::checkString($var, True);
$this->p4_service_account = $var;
return $this;
} | Output only. P4 service account for the customer project.
Generated from protobuf field <code>string p4_service_account = 23 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
@param string $var
@return $this | setP4ServiceAccount | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function getTenantProjectId()
{
return $this->tenant_project_id;
} | Output only. The name of the tenant project.
Generated from protobuf field <code>string tenant_project_id = 24 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
@return string | getTenantProjectId | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function setTenantProjectId($var)
{
GPBUtil::checkString($var, True);
$this->tenant_project_id = $var;
return $this;
} | Output only. The name of the tenant project.
Generated from protobuf field <code>string tenant_project_id = 24 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
@param string $var
@return $this | setTenantProjectId | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function getDataprocServiceAccount()
{
return $this->dataproc_service_account;
} | User-managed service account to set on Dataproc when Cloud Data Fusion
creates Dataproc to run data processing pipelines.
This allows users to have fine-grained access control on Dataproc's
accesses to cloud resources.
Generated from protobuf field <code>string dataproc_service_account = 25;</code>
@return string | getDataprocServiceAccount | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function setDataprocServiceAccount($var)
{
GPBUtil::checkString($var, True);
$this->dataproc_service_account = $var;
return $this;
} | User-managed service account to set on Dataproc when Cloud Data Fusion
creates Dataproc to run data processing pipelines.
This allows users to have fine-grained access control on Dataproc's
accesses to cloud resources.
Generated from protobuf field <code>string dataproc_service_account = 25;</code>
@param string $var
@return $this | setDataprocServiceAccount | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function getEnableRbac()
{
return $this->enable_rbac;
} | Option to enable granular role-based access control.
Generated from protobuf field <code>bool enable_rbac = 27;</code>
@return bool | getEnableRbac | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function setEnableRbac($var)
{
GPBUtil::checkBool($var);
$this->enable_rbac = $var;
return $this;
} | Option to enable granular role-based access control.
Generated from protobuf field <code>bool enable_rbac = 27;</code>
@param bool $var
@return $this | setEnableRbac | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function getCryptoKeyConfig()
{
return $this->crypto_key_config;
} | The crypto key configuration. This field is used by the Customer-Managed
Encryption Keys (CMEK) feature.
Generated from protobuf field <code>.google.cloud.datafusion.v1.CryptoKeyConfig crypto_key_config = 28;</code>
@return \Google\Cloud\DataFusion\V1\CryptoKeyConfig|null | getCryptoKeyConfig | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function setCryptoKeyConfig($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\DataFusion\V1\CryptoKeyConfig::class);
$this->crypto_key_config = $var;
return $this;
} | The crypto key configuration. This field is used by the Customer-Managed
Encryption Keys (CMEK) feature.
Generated from protobuf field <code>.google.cloud.datafusion.v1.CryptoKeyConfig crypto_key_config = 28;</code>
@param \Google\Cloud\DataFusion\V1\CryptoKeyConfig $var
@return $this | setCryptoKeyConfig | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function getDisabledReason()
{
return $this->disabled_reason;
} | Output only. If the instance state is DISABLED, the reason for disabling the instance.
Generated from protobuf field <code>repeated .google.cloud.datafusion.v1.Instance.DisabledReason disabled_reason = 29 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
@return \Google\Protobuf\Internal\RepeatedField | getDisabledReason | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function setDisabledReason($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::ENUM, \Google\Cloud\DataFusion\V1\Instance\DisabledReason::class);
$this->disabled_reason = $arr;
return $this;
} | Output only. If the instance state is DISABLED, the reason for disabling the instance.
Generated from protobuf field <code>repeated .google.cloud.datafusion.v1.Instance.DisabledReason disabled_reason = 29 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
@param array<int>|\Google\Protobuf\Internal\RepeatedField $var
@return $this | setDisabledReason | php | googleapis/google-cloud-php | DataFusion/src/V1/Instance.php | https://github.com/googleapis/google-cloud-php/blob/master/DataFusion/src/V1/Instance.php | Apache-2.0 |
public function getStartDate()
{
return $this->start_date;
} | Required. The start date of this date range.
Generated from protobuf field <code>.google.type.Date start_date = 1 [(.google.api.field_behavior) = REQUIRED];</code>
@return \Google\Type\Date|null | getStartDate | php | googleapis/google-cloud-php | AdsAdManager/src/V1/Report/DateRange/FixedDateRange.php | https://github.com/googleapis/google-cloud-php/blob/master/AdsAdManager/src/V1/Report/DateRange/FixedDateRange.php | Apache-2.0 |
public function setStartDate($var)
{
GPBUtil::checkMessage($var, \Google\Type\Date::class);
$this->start_date = $var;
return $this;
} | Required. The start date of this date range.
Generated from protobuf field <code>.google.type.Date start_date = 1 [(.google.api.field_behavior) = REQUIRED];</code>
@param \Google\Type\Date $var
@return $this | setStartDate | php | googleapis/google-cloud-php | AdsAdManager/src/V1/Report/DateRange/FixedDateRange.php | https://github.com/googleapis/google-cloud-php/blob/master/AdsAdManager/src/V1/Report/DateRange/FixedDateRange.php | Apache-2.0 |
public function getEndDate()
{
return $this->end_date;
} | Required. The end date (inclusive) of this date range.
Generated from protobuf field <code>.google.type.Date end_date = 2 [(.google.api.field_behavior) = REQUIRED];</code>
@return \Google\Type\Date|null | getEndDate | php | googleapis/google-cloud-php | AdsAdManager/src/V1/Report/DateRange/FixedDateRange.php | https://github.com/googleapis/google-cloud-php/blob/master/AdsAdManager/src/V1/Report/DateRange/FixedDateRange.php | Apache-2.0 |
public function setEndDate($var)
{
GPBUtil::checkMessage($var, \Google\Type\Date::class);
$this->end_date = $var;
return $this;
} | Required. The end date (inclusive) of this date range.
Generated from protobuf field <code>.google.type.Date end_date = 2 [(.google.api.field_behavior) = REQUIRED];</code>
@param \Google\Type\Date $var
@return $this | setEndDate | php | googleapis/google-cloud-php | AdsAdManager/src/V1/Report/DateRange/FixedDateRange.php | https://github.com/googleapis/google-cloud-php/blob/master/AdsAdManager/src/V1/Report/DateRange/FixedDateRange.php | Apache-2.0 |
public function getService()
{
return $this->service;
} | Required. The relative resource name of the metastore service to query
metadata, in the following format:
`projects/{project_id}/locations/{location_id}/services/{service_id}`.
Generated from protobuf field <code>string service = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = {</code>
@return string | getService | php | googleapis/google-cloud-php | DataprocMetastore/src/V1/QueryMetadataRequest.php | https://github.com/googleapis/google-cloud-php/blob/master/DataprocMetastore/src/V1/QueryMetadataRequest.php | Apache-2.0 |
public function setService($var)
{
GPBUtil::checkString($var, True);
$this->service = $var;
return $this;
} | Required. The relative resource name of the metastore service to query
metadata, in the following format:
`projects/{project_id}/locations/{location_id}/services/{service_id}`.
Generated from protobuf field <code>string service = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = {</code>
@param string $var
@return $this | setService | php | googleapis/google-cloud-php | DataprocMetastore/src/V1/QueryMetadataRequest.php | https://github.com/googleapis/google-cloud-php/blob/master/DataprocMetastore/src/V1/QueryMetadataRequest.php | Apache-2.0 |
public function getQuery()
{
return $this->query;
} | Required. A read-only SQL query to execute against the metadata database.
The query cannot change or mutate the data.
Generated from protobuf field <code>string query = 2 [(.google.api.field_behavior) = REQUIRED];</code>
@return string | getQuery | php | googleapis/google-cloud-php | DataprocMetastore/src/V1/QueryMetadataRequest.php | https://github.com/googleapis/google-cloud-php/blob/master/DataprocMetastore/src/V1/QueryMetadataRequest.php | Apache-2.0 |
public function setQuery($var)
{
GPBUtil::checkString($var, True);
$this->query = $var;
return $this;
} | Required. A read-only SQL query to execute against the metadata database.
The query cannot change or mutate the data.
Generated from protobuf field <code>string query = 2 [(.google.api.field_behavior) = REQUIRED];</code>
@param string $var
@return $this | setQuery | php | googleapis/google-cloud-php | DataprocMetastore/src/V1/QueryMetadataRequest.php | https://github.com/googleapis/google-cloud-php/blob/master/DataprocMetastore/src/V1/QueryMetadataRequest.php | Apache-2.0 |
public function getParent()
{
return $this->parent;
} | Required. The resource name of Case object for which attachments should be
listed.
Generated from protobuf field <code>string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = {</code>
@return string | getParent | php | googleapis/google-cloud-php | Support/src/V2/ListAttachmentsRequest.php | https://github.com/googleapis/google-cloud-php/blob/master/Support/src/V2/ListAttachmentsRequest.php | Apache-2.0 |
public function setParent($var)
{
GPBUtil::checkString($var, True);
$this->parent = $var;
return $this;
} | Required. The resource name of Case object for which attachments should be
listed.
Generated from protobuf field <code>string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = {</code>
@param string $var
@return $this | setParent | php | googleapis/google-cloud-php | Support/src/V2/ListAttachmentsRequest.php | https://github.com/googleapis/google-cloud-php/blob/master/Support/src/V2/ListAttachmentsRequest.php | Apache-2.0 |
public function getPageSize()
{
return $this->page_size;
} | The maximum number of attachments fetched with each request. If not
provided, the default is 10. The maximum page size that will be returned is
100.
Generated from protobuf field <code>int32 page_size = 2;</code>
@return int | getPageSize | php | googleapis/google-cloud-php | Support/src/V2/ListAttachmentsRequest.php | https://github.com/googleapis/google-cloud-php/blob/master/Support/src/V2/ListAttachmentsRequest.php | Apache-2.0 |
public function setPageSize($var)
{
GPBUtil::checkInt32($var);
$this->page_size = $var;
return $this;
} | The maximum number of attachments fetched with each request. If not
provided, the default is 10. The maximum page size that will be returned is
100.
Generated from protobuf field <code>int32 page_size = 2;</code>
@param int $var
@return $this | setPageSize | php | googleapis/google-cloud-php | Support/src/V2/ListAttachmentsRequest.php | https://github.com/googleapis/google-cloud-php/blob/master/Support/src/V2/ListAttachmentsRequest.php | Apache-2.0 |
public function getPageToken()
{
return $this->page_token;
} | A token identifying the page of results to return. If unspecified, the
first page is retrieved.
Generated from protobuf field <code>string page_token = 3;</code>
@return string | getPageToken | php | googleapis/google-cloud-php | Support/src/V2/ListAttachmentsRequest.php | https://github.com/googleapis/google-cloud-php/blob/master/Support/src/V2/ListAttachmentsRequest.php | Apache-2.0 |
public function setPageToken($var)
{
GPBUtil::checkString($var, True);
$this->page_token = $var;
return $this;
} | A token identifying the page of results to return. If unspecified, the
first page is retrieved.
Generated from protobuf field <code>string page_token = 3;</code>
@param string $var
@return $this | setPageToken | php | googleapis/google-cloud-php | Support/src/V2/ListAttachmentsRequest.php | https://github.com/googleapis/google-cloud-php/blob/master/Support/src/V2/ListAttachmentsRequest.php | Apache-2.0 |
public function getParent()
{
return $this->parent;
} | Required. The location in which to list repositories. Must be in the format
`projects/*/locations/*`.
Generated from protobuf field <code>string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = {</code>
@return string | getParent | php | googleapis/google-cloud-php | Dataform/src/V1beta1/ListRepositoriesRequest.php | https://github.com/googleapis/google-cloud-php/blob/master/Dataform/src/V1beta1/ListRepositoriesRequest.php | Apache-2.0 |
public function setParent($var)
{
GPBUtil::checkString($var, True);
$this->parent = $var;
return $this;
} | Required. The location in which to list repositories. Must be in the format
`projects/*/locations/*`.
Generated from protobuf field <code>string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = {</code>
@param string $var
@return $this | setParent | php | googleapis/google-cloud-php | Dataform/src/V1beta1/ListRepositoriesRequest.php | https://github.com/googleapis/google-cloud-php/blob/master/Dataform/src/V1beta1/ListRepositoriesRequest.php | Apache-2.0 |
public function getPageSize()
{
return $this->page_size;
} | Optional. Maximum number of repositories to return. The server may return
fewer items than requested. If unspecified, the server will pick an
appropriate default.
Generated from protobuf field <code>int32 page_size = 2 [(.google.api.field_behavior) = OPTIONAL];</code>
@return int | getPageSize | php | googleapis/google-cloud-php | Dataform/src/V1beta1/ListRepositoriesRequest.php | https://github.com/googleapis/google-cloud-php/blob/master/Dataform/src/V1beta1/ListRepositoriesRequest.php | Apache-2.0 |
public function setPageSize($var)
{
GPBUtil::checkInt32($var);
$this->page_size = $var;
return $this;
} | Optional. Maximum number of repositories to return. The server may return
fewer items than requested. If unspecified, the server will pick an
appropriate default.
Generated from protobuf field <code>int32 page_size = 2 [(.google.api.field_behavior) = OPTIONAL];</code>
@param int $var
@return $this | setPageSize | php | googleapis/google-cloud-php | Dataform/src/V1beta1/ListRepositoriesRequest.php | https://github.com/googleapis/google-cloud-php/blob/master/Dataform/src/V1beta1/ListRepositoriesRequest.php | Apache-2.0 |
public function getPageToken()
{
return $this->page_token;
} | Optional. Page token received from a previous `ListRepositories` call.
Provide this to retrieve the subsequent page.
When paginating, all other parameters provided to `ListRepositories`,
with the exception of `page_size`, must match the call that provided the
page token.
Generated from protobuf field <code>string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];</code>
@return string | getPageToken | php | googleapis/google-cloud-php | Dataform/src/V1beta1/ListRepositoriesRequest.php | https://github.com/googleapis/google-cloud-php/blob/master/Dataform/src/V1beta1/ListRepositoriesRequest.php | Apache-2.0 |
public function setPageToken($var)
{
GPBUtil::checkString($var, True);
$this->page_token = $var;
return $this;
} | Optional. Page token received from a previous `ListRepositories` call.
Provide this to retrieve the subsequent page.
When paginating, all other parameters provided to `ListRepositories`,
with the exception of `page_size`, must match the call that provided the
page token.
Generated from protobuf field <code>string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];</code>
@param string $var
@return $this | setPageToken | php | googleapis/google-cloud-php | Dataform/src/V1beta1/ListRepositoriesRequest.php | https://github.com/googleapis/google-cloud-php/blob/master/Dataform/src/V1beta1/ListRepositoriesRequest.php | Apache-2.0 |
public function getOrderBy()
{
return $this->order_by;
} | Optional. This field only supports ordering by `name`. If unspecified, the
server will choose the ordering. If specified, the default order is
ascending for the `name` field.
Generated from protobuf field <code>string order_by = 4 [(.google.api.field_behavior) = OPTIONAL];</code>
@return string | getOrderBy | php | googleapis/google-cloud-php | Dataform/src/V1beta1/ListRepositoriesRequest.php | https://github.com/googleapis/google-cloud-php/blob/master/Dataform/src/V1beta1/ListRepositoriesRequest.php | Apache-2.0 |
public function setOrderBy($var)
{
GPBUtil::checkString($var, True);
$this->order_by = $var;
return $this;
} | Optional. This field only supports ordering by `name`. If unspecified, the
server will choose the ordering. If specified, the default order is
ascending for the `name` field.
Generated from protobuf field <code>string order_by = 4 [(.google.api.field_behavior) = OPTIONAL];</code>
@param string $var
@return $this | setOrderBy | php | googleapis/google-cloud-php | Dataform/src/V1beta1/ListRepositoriesRequest.php | https://github.com/googleapis/google-cloud-php/blob/master/Dataform/src/V1beta1/ListRepositoriesRequest.php | Apache-2.0 |
public function getFilter()
{
return $this->filter;
} | Optional. Filter for the returned list.
Generated from protobuf field <code>string filter = 5 [(.google.api.field_behavior) = OPTIONAL];</code>
@return string | getFilter | php | googleapis/google-cloud-php | Dataform/src/V1beta1/ListRepositoriesRequest.php | https://github.com/googleapis/google-cloud-php/blob/master/Dataform/src/V1beta1/ListRepositoriesRequest.php | Apache-2.0 |
public function setFilter($var)
{
GPBUtil::checkString($var, True);
$this->filter = $var;
return $this;
} | Optional. Filter for the returned list.
Generated from protobuf field <code>string filter = 5 [(.google.api.field_behavior) = OPTIONAL];</code>
@param string $var
@return $this | setFilter | php | googleapis/google-cloud-php | Dataform/src/V1beta1/ListRepositoriesRequest.php | https://github.com/googleapis/google-cloud-php/blob/master/Dataform/src/V1beta1/ListRepositoriesRequest.php | Apache-2.0 |
public function getFields()
{
return $this->fields;
} | The names and types of the fields in this struct.
Generated from protobuf field <code>repeated .google.bigtable.v2.Type.Struct.Field fields = 1;</code>
@return \Google\Protobuf\Internal\RepeatedField | getFields | php | googleapis/google-cloud-php | Bigtable/src/V2/Type/Struct.php | https://github.com/googleapis/google-cloud-php/blob/master/Bigtable/src/V2/Type/Struct.php | Apache-2.0 |
public function setFields($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Bigtable\V2\Type\Struct\Field::class);
$this->fields = $arr;
return $this;
} | The names and types of the fields in this struct.
Generated from protobuf field <code>repeated .google.bigtable.v2.Type.Struct.Field fields = 1;</code>
@param array<\Google\Cloud\Bigtable\V2\Type\Struct\Field>|\Google\Protobuf\Internal\RepeatedField $var
@return $this | setFields | php | googleapis/google-cloud-php | Bigtable/src/V2/Type/Struct.php | https://github.com/googleapis/google-cloud-php/blob/master/Bigtable/src/V2/Type/Struct.php | Apache-2.0 |
public function getResponses()
{
return $this->responses;
} | The list of file annotation responses, each response corresponding to each
AnnotateFileRequest in BatchAnnotateFilesRequest.
Generated from protobuf field <code>repeated .google.cloud.vision.v1.AnnotateFileResponse responses = 1;</code>
@return \Google\Protobuf\Internal\RepeatedField | getResponses | php | googleapis/google-cloud-php | Vision/src/V1/BatchAnnotateFilesResponse.php | https://github.com/googleapis/google-cloud-php/blob/master/Vision/src/V1/BatchAnnotateFilesResponse.php | Apache-2.0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.