code
stringlengths 17
247k
| 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 setFilteringAttributes($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Eventarc\V1\FilteringAttribute::class);
$this->filtering_attributes = $arr;
return $this;
} | Output only. Filtering attributes for the event type.
Generated from protobuf field <code>repeated .google.cloud.eventarc.v1.FilteringAttribute filtering_attributes = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
@param array<\Google\Cloud\Eventarc\V1\FilteringAttribute>|\Google\Protobuf\Internal\RepeatedField $var
@return $this | setFilteringAttributes | php | googleapis/google-cloud-php | Eventarc/src/V1/EventType.php | https://github.com/googleapis/google-cloud-php/blob/master/Eventarc/src/V1/EventType.php | Apache-2.0 |
public function getEventSchemaUri()
{
return $this->event_schema_uri;
} | Output only. URI for the event schema.
For example
"https://github.com/googleapis/google-cloudevents/blob/master/proto/google/events/cloud/storage/v1/events.proto"
Generated from protobuf field <code>string event_schema_uri = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
@return string | getEventSchemaUri | php | googleapis/google-cloud-php | Eventarc/src/V1/EventType.php | https://github.com/googleapis/google-cloud-php/blob/master/Eventarc/src/V1/EventType.php | Apache-2.0 |
public function setEventSchemaUri($var)
{
GPBUtil::checkString($var, True);
$this->event_schema_uri = $var;
return $this;
} | Output only. URI for the event schema.
For example
"https://github.com/googleapis/google-cloudevents/blob/master/proto/google/events/cloud/storage/v1/events.proto"
Generated from protobuf field <code>string event_schema_uri = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
@param string $var
@return $this | setEventSchemaUri | php | googleapis/google-cloud-php | Eventarc/src/V1/EventType.php | https://github.com/googleapis/google-cloud-php/blob/master/Eventarc/src/V1/EventType.php | Apache-2.0 |
public function getDataScan()
{
return $this->data_scan;
} | Required. DataScan resource to be updated.
Only fields specified in `update_mask` are updated.
Generated from protobuf field <code>.google.cloud.dataplex.v1.DataScan data_scan = 1 [(.google.api.field_behavior) = REQUIRED];</code>
@return \Google\Cloud\Dataplex\V1\DataScan|null | getDataScan | php | googleapis/google-cloud-php | Dataplex/src/V1/UpdateDataScanRequest.php | https://github.com/googleapis/google-cloud-php/blob/master/Dataplex/src/V1/UpdateDataScanRequest.php | Apache-2.0 |
public function setDataScan($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Dataplex\V1\DataScan::class);
$this->data_scan = $var;
return $this;
} | Required. DataScan resource to be updated.
Only fields specified in `update_mask` are updated.
Generated from protobuf field <code>.google.cloud.dataplex.v1.DataScan data_scan = 1 [(.google.api.field_behavior) = REQUIRED];</code>
@param \Google\Cloud\Dataplex\V1\DataScan $var
@return $this | setDataScan | php | googleapis/google-cloud-php | Dataplex/src/V1/UpdateDataScanRequest.php | https://github.com/googleapis/google-cloud-php/blob/master/Dataplex/src/V1/UpdateDataScanRequest.php | Apache-2.0 |
public function setNodes($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\SecurityCenter\V1\ResourcePath\ResourcePathNode::class);
$this->nodes = $arr;
return $this;
} | The list of nodes that make the up resource path, ordered from lowest
level to highest level.
Generated from protobuf field <code>repeated .google.cloud.securitycenter.v1.ResourcePath.ResourcePathNode nodes = 1;</code>
@param array<\Google\Cloud\SecurityCenter\V1\ResourcePath\ResourcePathNode>|\Google\Protobuf\Internal\RepeatedField $var
@return $this | setNodes | php | googleapis/google-cloud-php | SecurityCenter/src/V1/ResourcePath.php | https://github.com/googleapis/google-cloud-php/blob/master/SecurityCenter/src/V1/ResourcePath.php | Apache-2.0 |
public function setTemplate($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Dataproc\V1\WorkflowTemplate::class);
$this->template = $var;
return $this;
} | Required. The updated workflow template.
The `template.version` field must match the current version.
Generated from protobuf field <code>.google.cloud.dataproc.v1.WorkflowTemplate template = 1 [(.google.api.field_behavior) = REQUIRED];</code>
@param \Google\Cloud\Dataproc\V1\WorkflowTemplate $var
@return $this | setTemplate | php | googleapis/google-cloud-php | Dataproc/src/V1/UpdateWorkflowTemplateRequest.php | https://github.com/googleapis/google-cloud-php/blob/master/Dataproc/src/V1/UpdateWorkflowTemplateRequest.php | Apache-2.0 |
public function getOsImages()
{
return $this->os_images;
} | The OS images available.
Generated from protobuf field <code>repeated .google.cloud.baremetalsolution.v2.OSImage os_images = 1;</code>
@return \Google\Protobuf\Internal\RepeatedField | getOsImages | php | googleapis/google-cloud-php | BareMetalSolution/src/V2/ListOSImagesResponse.php | https://github.com/googleapis/google-cloud-php/blob/master/BareMetalSolution/src/V2/ListOSImagesResponse.php | Apache-2.0 |
public function setOsImages($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\BareMetalSolution\V2\OSImage::class);
$this->os_images = $arr;
return $this;
} | The OS images available.
Generated from protobuf field <code>repeated .google.cloud.baremetalsolution.v2.OSImage os_images = 1;</code>
@param array<\Google\Cloud\BareMetalSolution\V2\OSImage>|\Google\Protobuf\Internal\RepeatedField $var
@return $this | setOsImages | php | googleapis/google-cloud-php | BareMetalSolution/src/V2/ListOSImagesResponse.php | https://github.com/googleapis/google-cloud-php/blob/master/BareMetalSolution/src/V2/ListOSImagesResponse.php | Apache-2.0 |
public function getGithubConfig()
{
return $this->readOneof(5);
} | Configuration for connections to github.com.
Generated from protobuf field <code>.google.cloud.developerconnect.v1.GitHubConfig github_config = 5;</code>
@return \Google\Cloud\DeveloperConnect\V1\GitHubConfig|null | getGithubConfig | php | googleapis/google-cloud-php | DeveloperConnect/src/V1/Connection.php | https://github.com/googleapis/google-cloud-php/blob/master/DeveloperConnect/src/V1/Connection.php | Apache-2.0 |
public function setGithubConfig($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\DeveloperConnect\V1\GitHubConfig::class);
$this->writeOneof(5, $var);
return $this;
} | Configuration for connections to github.com.
Generated from protobuf field <code>.google.cloud.developerconnect.v1.GitHubConfig github_config = 5;</code>
@param \Google\Cloud\DeveloperConnect\V1\GitHubConfig $var
@return $this | setGithubConfig | php | googleapis/google-cloud-php | DeveloperConnect/src/V1/Connection.php | https://github.com/googleapis/google-cloud-php/blob/master/DeveloperConnect/src/V1/Connection.php | Apache-2.0 |
public function getGithubEnterpriseConfig()
{
return $this->readOneof(13);
} | Configuration for connections to an instance of GitHub Enterprise.
Generated from protobuf field <code>.google.cloud.developerconnect.v1.GitHubEnterpriseConfig github_enterprise_config = 13;</code>
@return \Google\Cloud\DeveloperConnect\V1\GitHubEnterpriseConfig|null | getGithubEnterpriseConfig | php | googleapis/google-cloud-php | DeveloperConnect/src/V1/Connection.php | https://github.com/googleapis/google-cloud-php/blob/master/DeveloperConnect/src/V1/Connection.php | Apache-2.0 |
public function setGithubEnterpriseConfig($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\DeveloperConnect\V1\GitHubEnterpriseConfig::class);
$this->writeOneof(13, $var);
return $this;
} | Configuration for connections to an instance of GitHub Enterprise.
Generated from protobuf field <code>.google.cloud.developerconnect.v1.GitHubEnterpriseConfig github_enterprise_config = 13;</code>
@param \Google\Cloud\DeveloperConnect\V1\GitHubEnterpriseConfig $var
@return $this | setGithubEnterpriseConfig | php | googleapis/google-cloud-php | DeveloperConnect/src/V1/Connection.php | https://github.com/googleapis/google-cloud-php/blob/master/DeveloperConnect/src/V1/Connection.php | Apache-2.0 |
public function getGitlabConfig()
{
return $this->readOneof(14);
} | Configuration for connections to gitlab.com.
Generated from protobuf field <code>.google.cloud.developerconnect.v1.GitLabConfig gitlab_config = 14;</code>
@return \Google\Cloud\DeveloperConnect\V1\GitLabConfig|null | getGitlabConfig | php | googleapis/google-cloud-php | DeveloperConnect/src/V1/Connection.php | https://github.com/googleapis/google-cloud-php/blob/master/DeveloperConnect/src/V1/Connection.php | Apache-2.0 |
public function setGitlabConfig($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\DeveloperConnect\V1\GitLabConfig::class);
$this->writeOneof(14, $var);
return $this;
} | Configuration for connections to gitlab.com.
Generated from protobuf field <code>.google.cloud.developerconnect.v1.GitLabConfig gitlab_config = 14;</code>
@param \Google\Cloud\DeveloperConnect\V1\GitLabConfig $var
@return $this | setGitlabConfig | php | googleapis/google-cloud-php | DeveloperConnect/src/V1/Connection.php | https://github.com/googleapis/google-cloud-php/blob/master/DeveloperConnect/src/V1/Connection.php | Apache-2.0 |
public function getGitlabEnterpriseConfig()
{
return $this->readOneof(16);
} | Configuration for connections to an instance of GitLab Enterprise.
Generated from protobuf field <code>.google.cloud.developerconnect.v1.GitLabEnterpriseConfig gitlab_enterprise_config = 16;</code>
@return \Google\Cloud\DeveloperConnect\V1\GitLabEnterpriseConfig|null | getGitlabEnterpriseConfig | php | googleapis/google-cloud-php | DeveloperConnect/src/V1/Connection.php | https://github.com/googleapis/google-cloud-php/blob/master/DeveloperConnect/src/V1/Connection.php | Apache-2.0 |
public function setGitlabEnterpriseConfig($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\DeveloperConnect\V1\GitLabEnterpriseConfig::class);
$this->writeOneof(16, $var);
return $this;
} | Configuration for connections to an instance of GitLab Enterprise.
Generated from protobuf field <code>.google.cloud.developerconnect.v1.GitLabEnterpriseConfig gitlab_enterprise_config = 16;</code>
@param \Google\Cloud\DeveloperConnect\V1\GitLabEnterpriseConfig $var
@return $this | setGitlabEnterpriseConfig | php | googleapis/google-cloud-php | DeveloperConnect/src/V1/Connection.php | https://github.com/googleapis/google-cloud-php/blob/master/DeveloperConnect/src/V1/Connection.php | Apache-2.0 |
public function getInstallationState()
{
return $this->installation_state;
} | Output only. Installation state of the Connection.
Generated from protobuf field <code>.google.cloud.developerconnect.v1.InstallationState installation_state = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
@return \Google\Cloud\DeveloperConnect\V1\InstallationState|null | getInstallationState | php | googleapis/google-cloud-php | DeveloperConnect/src/V1/Connection.php | https://github.com/googleapis/google-cloud-php/blob/master/DeveloperConnect/src/V1/Connection.php | Apache-2.0 |
public function setInstallationState($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\DeveloperConnect\V1\InstallationState::class);
$this->installation_state = $var;
return $this;
} | Output only. Installation state of the Connection.
Generated from protobuf field <code>.google.cloud.developerconnect.v1.InstallationState installation_state = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
@param \Google\Cloud\DeveloperConnect\V1\InstallationState $var
@return $this | setInstallationState | php | googleapis/google-cloud-php | DeveloperConnect/src/V1/Connection.php | https://github.com/googleapis/google-cloud-php/blob/master/DeveloperConnect/src/V1/Connection.php | Apache-2.0 |
public function setCryptoKeyConfig($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\DeveloperConnect\V1\CryptoKeyConfig::class);
$this->crypto_key_config = $var;
return $this;
} | Optional. The crypto key configuration. This field is used by the
Customer-Managed Encryption Keys (CMEK) feature.
Generated from protobuf field <code>.google.cloud.developerconnect.v1.CryptoKeyConfig crypto_key_config = 15 [(.google.api.field_behavior) = OPTIONAL];</code>
@param \Google\Cloud\DeveloperConnect\V1\CryptoKeyConfig $var
@return $this | setCryptoKeyConfig | php | googleapis/google-cloud-php | DeveloperConnect/src/V1/Connection.php | https://github.com/googleapis/google-cloud-php/blob/master/DeveloperConnect/src/V1/Connection.php | Apache-2.0 |
public function setDescription($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Trace\V2\TruncatableString::class);
$this->description = $var;
return $this;
} | A user-supplied message describing the event. The maximum length for
the description is 256 bytes.
Generated from protobuf field <code>.google.devtools.cloudtrace.v2.TruncatableString description = 1;</code>
@param \Google\Cloud\Trace\V2\TruncatableString $var
@return $this | setDescription | php | googleapis/google-cloud-php | Trace/src/V2/Span/TimeEvent/Annotation.php | https://github.com/googleapis/google-cloud-php/blob/master/Trace/src/V2/Span/TimeEvent/Annotation.php | Apache-2.0 |
public function setAttributes($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Trace\V2\Span\Attributes::class);
$this->attributes = $var;
return $this;
} | A set of attributes on the annotation. You can have up to 4 attributes
per Annotation.
Generated from protobuf field <code>.google.devtools.cloudtrace.v2.Span.Attributes attributes = 2;</code>
@param \Google\Cloud\Trace\V2\Span\Attributes $var
@return $this | setAttributes | php | googleapis/google-cloud-php | Trace/src/V2/Span/TimeEvent/Annotation.php | https://github.com/googleapis/google-cloud-php/blob/master/Trace/src/V2/Span/TimeEvent/Annotation.php | Apache-2.0 |
public function setPlatform($var)
{
GPBUtil::checkEnum($var, \Google\Cloud\WebRisk\V1\ThreatDiscovery\Platform::class);
$this->platform = $var;
return $this;
} | Platform on which the threat was discovered.
Generated from protobuf field <code>.google.cloud.webrisk.v1.ThreatDiscovery.Platform platform = 1;</code>
@param int $var
@return $this | setPlatform | php | googleapis/google-cloud-php | WebRisk/src/V1/ThreatDiscovery.php | https://github.com/googleapis/google-cloud-php/blob/master/WebRisk/src/V1/ThreatDiscovery.php | Apache-2.0 |
public function getRegionCodes()
{
return $this->region_codes;
} | CLDR region code of the countries/regions the URI poses a threat ordered
from most impact to least impact. Example: "US" for United States.
Generated from protobuf field <code>repeated string region_codes = 2;</code>
@return \Google\Protobuf\Internal\RepeatedField | getRegionCodes | php | googleapis/google-cloud-php | WebRisk/src/V1/ThreatDiscovery.php | https://github.com/googleapis/google-cloud-php/blob/master/WebRisk/src/V1/ThreatDiscovery.php | Apache-2.0 |
public function setRegionCodes($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::STRING);
$this->region_codes = $arr;
return $this;
} | CLDR region code of the countries/regions the URI poses a threat ordered
from most impact to least impact. Example: "US" for United States.
Generated from protobuf field <code>repeated string region_codes = 2;</code>
@param array<string>|\Google\Protobuf\Internal\RepeatedField $var
@return $this | setRegionCodes | php | googleapis/google-cloud-php | WebRisk/src/V1/ThreatDiscovery.php | https://github.com/googleapis/google-cloud-php/blob/master/WebRisk/src/V1/ThreatDiscovery.php | Apache-2.0 |
public function getLinkedResource()
{
return $this->linked_resource;
} | The resource this metadata entry refers to.
For Google Cloud Platform resources, `linked_resource` is the
[Full Resource Name]
(https://cloud.google.com/apis/design/resource_names#full_resource_name).
For example, the `linked_resource` for a table resource from BigQuery is:
`//bigquery.googleapis.com/projects/{PROJECT_ID}/datasets/{DATASET_ID}/tables/{TABLE_ID}`
Output only when the entry is one of the types in the `EntryType` enum.
For entries with a `user_specified_type`, this field is optional and
defaults to an empty string.
The resource string must contain only letters (a-z, A-Z), numbers (0-9),
underscores (_), periods (.), colons (:), slashes (/), dashes (-),
and hashes (#).
The maximum size is 200 bytes when encoded in UTF-8.
Generated from protobuf field <code>string linked_resource = 9;</code>
@return string | getLinkedResource | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function setLinkedResource($var)
{
GPBUtil::checkString($var, True);
$this->linked_resource = $var;
return $this;
} | The resource this metadata entry refers to.
For Google Cloud Platform resources, `linked_resource` is the
[Full Resource Name]
(https://cloud.google.com/apis/design/resource_names#full_resource_name).
For example, the `linked_resource` for a table resource from BigQuery is:
`//bigquery.googleapis.com/projects/{PROJECT_ID}/datasets/{DATASET_ID}/tables/{TABLE_ID}`
Output only when the entry is one of the types in the `EntryType` enum.
For entries with a `user_specified_type`, this field is optional and
defaults to an empty string.
The resource string must contain only letters (a-z, A-Z), numbers (0-9),
underscores (_), periods (.), colons (:), slashes (/), dashes (-),
and hashes (#).
The maximum size is 200 bytes when encoded in UTF-8.
Generated from protobuf field <code>string linked_resource = 9;</code>
@param string $var
@return $this | setLinkedResource | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function getType()
{
return $this->readOneof(2);
} | The type of the entry.
For details, see [`EntryType`](#entrytype).
Generated from protobuf field <code>.google.cloud.datacatalog.v1.EntryType type = 2;</code>
@return int | getType | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function setType($var)
{
GPBUtil::checkEnum($var, \Google\Cloud\DataCatalog\V1\EntryType::class);
$this->writeOneof(2, $var);
return $this;
} | The type of the entry.
For details, see [`EntryType`](#entrytype).
Generated from protobuf field <code>.google.cloud.datacatalog.v1.EntryType type = 2;</code>
@param int $var
@return $this | setType | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function getUserSpecifiedType()
{
return $this->readOneof(16);
} | Custom entry type that doesn't match any of the values allowed for input
and listed in the `EntryType` enum.
When creating an entry, first check the type values in the enum.
If there are no appropriate types for the new entry,
provide a custom value, for example, `my_special_type`.
The `user_specified_type` string has the following limitations:
* Is case insensitive.
* Must begin with a letter or underscore.
* Can only contain letters, numbers, and underscores.
* Must be at least 1 character and at most 64 characters long.
Generated from protobuf field <code>string user_specified_type = 16;</code>
@return string | getUserSpecifiedType | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function setUserSpecifiedType($var)
{
GPBUtil::checkString($var, True);
$this->writeOneof(16, $var);
return $this;
} | Custom entry type that doesn't match any of the values allowed for input
and listed in the `EntryType` enum.
When creating an entry, first check the type values in the enum.
If there are no appropriate types for the new entry,
provide a custom value, for example, `my_special_type`.
The `user_specified_type` string has the following limitations:
* Is case insensitive.
* Must begin with a letter or underscore.
* Can only contain letters, numbers, and underscores.
* Must be at least 1 character and at most 64 characters long.
Generated from protobuf field <code>string user_specified_type = 16;</code>
@param string $var
@return $this | setUserSpecifiedType | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function getIntegratedSystem()
{
return $this->readOneof(17);
} | Output only. Indicates the entry's source system that Data Catalog
integrates with, such as BigQuery, Pub/Sub, or Dataproc Metastore.
Generated from protobuf field <code>.google.cloud.datacatalog.v1.IntegratedSystem integrated_system = 17 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
@return int | getIntegratedSystem | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function setIntegratedSystem($var)
{
GPBUtil::checkEnum($var, \Google\Cloud\DataCatalog\V1\IntegratedSystem::class);
$this->writeOneof(17, $var);
return $this;
} | Output only. Indicates the entry's source system that Data Catalog
integrates with, such as BigQuery, Pub/Sub, or Dataproc Metastore.
Generated from protobuf field <code>.google.cloud.datacatalog.v1.IntegratedSystem integrated_system = 17 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
@param int $var
@return $this | setIntegratedSystem | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function getUserSpecifiedSystem()
{
return $this->readOneof(18);
} | Indicates the entry's source system that Data Catalog doesn't
automatically integrate with.
The `user_specified_system` string has the following limitations:
* Is case insensitive.
* Must begin with a letter or underscore.
* Can only contain letters, numbers, and underscores.
* Must be at least 1 character and at most 64 characters long.
Generated from protobuf field <code>string user_specified_system = 18;</code>
@return string | getUserSpecifiedSystem | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function setUserSpecifiedSystem($var)
{
GPBUtil::checkString($var, True);
$this->writeOneof(18, $var);
return $this;
} | Indicates the entry's source system that Data Catalog doesn't
automatically integrate with.
The `user_specified_system` string has the following limitations:
* Is case insensitive.
* Must begin with a letter or underscore.
* Can only contain letters, numbers, and underscores.
* Must be at least 1 character and at most 64 characters long.
Generated from protobuf field <code>string user_specified_system = 18;</code>
@param string $var
@return $this | setUserSpecifiedSystem | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function getSqlDatabaseSystemSpec()
{
return $this->readOneof(39);
} | Specification that applies to a relational database system. Only settable
when `user_specified_system` is equal to `SQL_DATABASE`
Generated from protobuf field <code>.google.cloud.datacatalog.v1.SqlDatabaseSystemSpec sql_database_system_spec = 39;</code>
@return \Google\Cloud\DataCatalog\V1\SqlDatabaseSystemSpec|null | getSqlDatabaseSystemSpec | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function setSqlDatabaseSystemSpec($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\DataCatalog\V1\SqlDatabaseSystemSpec::class);
$this->writeOneof(39, $var);
return $this;
} | Specification that applies to a relational database system. Only settable
when `user_specified_system` is equal to `SQL_DATABASE`
Generated from protobuf field <code>.google.cloud.datacatalog.v1.SqlDatabaseSystemSpec sql_database_system_spec = 39;</code>
@param \Google\Cloud\DataCatalog\V1\SqlDatabaseSystemSpec $var
@return $this | setSqlDatabaseSystemSpec | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function getLookerSystemSpec()
{
return $this->readOneof(40);
} | Specification that applies to Looker sysstem. Only settable when
`user_specified_system` is equal to `LOOKER`
Generated from protobuf field <code>.google.cloud.datacatalog.v1.LookerSystemSpec looker_system_spec = 40;</code>
@return \Google\Cloud\DataCatalog\V1\LookerSystemSpec|null | getLookerSystemSpec | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function setLookerSystemSpec($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\DataCatalog\V1\LookerSystemSpec::class);
$this->writeOneof(40, $var);
return $this;
} | Specification that applies to Looker sysstem. Only settable when
`user_specified_system` is equal to `LOOKER`
Generated from protobuf field <code>.google.cloud.datacatalog.v1.LookerSystemSpec looker_system_spec = 40;</code>
@param \Google\Cloud\DataCatalog\V1\LookerSystemSpec $var
@return $this | setLookerSystemSpec | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function getCloudBigtableSystemSpec()
{
return $this->readOneof(41);
} | Specification that applies to Cloud Bigtable system. Only settable when
`integrated_system` is equal to `CLOUD_BIGTABLE`
Generated from protobuf field <code>.google.cloud.datacatalog.v1.CloudBigtableSystemSpec cloud_bigtable_system_spec = 41;</code>
@return \Google\Cloud\DataCatalog\V1\CloudBigtableSystemSpec|null | getCloudBigtableSystemSpec | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function setCloudBigtableSystemSpec($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\DataCatalog\V1\CloudBigtableSystemSpec::class);
$this->writeOneof(41, $var);
return $this;
} | Specification that applies to Cloud Bigtable system. Only settable when
`integrated_system` is equal to `CLOUD_BIGTABLE`
Generated from protobuf field <code>.google.cloud.datacatalog.v1.CloudBigtableSystemSpec cloud_bigtable_system_spec = 41;</code>
@param \Google\Cloud\DataCatalog\V1\CloudBigtableSystemSpec $var
@return $this | setCloudBigtableSystemSpec | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function getGcsFilesetSpec()
{
return $this->readOneof(6);
} | Specification that applies to a Cloud Storage fileset. Valid only
for entries with the `FILESET` type.
Generated from protobuf field <code>.google.cloud.datacatalog.v1.GcsFilesetSpec gcs_fileset_spec = 6;</code>
@return \Google\Cloud\DataCatalog\V1\GcsFilesetSpec|null | getGcsFilesetSpec | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function setGcsFilesetSpec($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\DataCatalog\V1\GcsFilesetSpec::class);
$this->writeOneof(6, $var);
return $this;
} | Specification that applies to a Cloud Storage fileset. Valid only
for entries with the `FILESET` type.
Generated from protobuf field <code>.google.cloud.datacatalog.v1.GcsFilesetSpec gcs_fileset_spec = 6;</code>
@param \Google\Cloud\DataCatalog\V1\GcsFilesetSpec $var
@return $this | setGcsFilesetSpec | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function getBigqueryTableSpec()
{
return $this->readOneof(12);
} | Output only. Specification that applies to a BigQuery table. Valid only
for entries with the `TABLE` type.
Generated from protobuf field <code>.google.cloud.datacatalog.v1.BigQueryTableSpec bigquery_table_spec = 12 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
@return \Google\Cloud\DataCatalog\V1\BigQueryTableSpec|null | getBigqueryTableSpec | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function setBigqueryTableSpec($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\DataCatalog\V1\BigQueryTableSpec::class);
$this->writeOneof(12, $var);
return $this;
} | Output only. Specification that applies to a BigQuery table. Valid only
for entries with the `TABLE` type.
Generated from protobuf field <code>.google.cloud.datacatalog.v1.BigQueryTableSpec bigquery_table_spec = 12 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
@param \Google\Cloud\DataCatalog\V1\BigQueryTableSpec $var
@return $this | setBigqueryTableSpec | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function getBigqueryDateShardedSpec()
{
return $this->readOneof(15);
} | Output only. Specification for a group of BigQuery tables with
the `[prefix]YYYYMMDD` name pattern.
For more information, see [Introduction to partitioned tables]
(https://cloud.google.com/bigquery/docs/partitioned-tables#partitioning_versus_sharding).
Generated from protobuf field <code>.google.cloud.datacatalog.v1.BigQueryDateShardedSpec bigquery_date_sharded_spec = 15 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
@return \Google\Cloud\DataCatalog\V1\BigQueryDateShardedSpec|null | getBigqueryDateShardedSpec | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function setBigqueryDateShardedSpec($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\DataCatalog\V1\BigQueryDateShardedSpec::class);
$this->writeOneof(15, $var);
return $this;
} | Output only. Specification for a group of BigQuery tables with
the `[prefix]YYYYMMDD` name pattern.
For more information, see [Introduction to partitioned tables]
(https://cloud.google.com/bigquery/docs/partitioned-tables#partitioning_versus_sharding).
Generated from protobuf field <code>.google.cloud.datacatalog.v1.BigQueryDateShardedSpec bigquery_date_sharded_spec = 15 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
@param \Google\Cloud\DataCatalog\V1\BigQueryDateShardedSpec $var
@return $this | setBigqueryDateShardedSpec | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function getDatabaseTableSpec()
{
return $this->readOneof(24);
} | Specification that applies to a table resource. Valid only
for entries with the `TABLE` or `EXPLORE` type.
Generated from protobuf field <code>.google.cloud.datacatalog.v1.DatabaseTableSpec database_table_spec = 24;</code>
@return \Google\Cloud\DataCatalog\V1\DatabaseTableSpec|null | getDatabaseTableSpec | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function setDatabaseTableSpec($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\DataCatalog\V1\DatabaseTableSpec::class);
$this->writeOneof(24, $var);
return $this;
} | Specification that applies to a table resource. Valid only
for entries with the `TABLE` or `EXPLORE` type.
Generated from protobuf field <code>.google.cloud.datacatalog.v1.DatabaseTableSpec database_table_spec = 24;</code>
@param \Google\Cloud\DataCatalog\V1\DatabaseTableSpec $var
@return $this | setDatabaseTableSpec | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function getDataSourceConnectionSpec()
{
return $this->readOneof(27);
} | Specification that applies to a data source connection. Valid only
for entries with the `DATA_SOURCE_CONNECTION` type.
Generated from protobuf field <code>.google.cloud.datacatalog.v1.DataSourceConnectionSpec data_source_connection_spec = 27;</code>
@return \Google\Cloud\DataCatalog\V1\DataSourceConnectionSpec|null | getDataSourceConnectionSpec | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function setDataSourceConnectionSpec($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\DataCatalog\V1\DataSourceConnectionSpec::class);
$this->writeOneof(27, $var);
return $this;
} | Specification that applies to a data source connection. Valid only
for entries with the `DATA_SOURCE_CONNECTION` type.
Generated from protobuf field <code>.google.cloud.datacatalog.v1.DataSourceConnectionSpec data_source_connection_spec = 27;</code>
@param \Google\Cloud\DataCatalog\V1\DataSourceConnectionSpec $var
@return $this | setDataSourceConnectionSpec | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function getRoutineSpec()
{
return $this->readOneof(28);
} | Specification that applies to a user-defined function or procedure. Valid
only for entries with the `ROUTINE` type.
Generated from protobuf field <code>.google.cloud.datacatalog.v1.RoutineSpec routine_spec = 28;</code>
@return \Google\Cloud\DataCatalog\V1\RoutineSpec|null | getRoutineSpec | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function setRoutineSpec($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\DataCatalog\V1\RoutineSpec::class);
$this->writeOneof(28, $var);
return $this;
} | Specification that applies to a user-defined function or procedure. Valid
only for entries with the `ROUTINE` type.
Generated from protobuf field <code>.google.cloud.datacatalog.v1.RoutineSpec routine_spec = 28;</code>
@param \Google\Cloud\DataCatalog\V1\RoutineSpec $var
@return $this | setRoutineSpec | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function getDatasetSpec()
{
return $this->readOneof(32);
} | Specification that applies to a dataset.
Generated from protobuf field <code>.google.cloud.datacatalog.v1.DatasetSpec dataset_spec = 32;</code>
@return \Google\Cloud\DataCatalog\V1\DatasetSpec|null | getDatasetSpec | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function setDatasetSpec($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\DataCatalog\V1\DatasetSpec::class);
$this->writeOneof(32, $var);
return $this;
} | Specification that applies to a dataset.
Generated from protobuf field <code>.google.cloud.datacatalog.v1.DatasetSpec dataset_spec = 32;</code>
@param \Google\Cloud\DataCatalog\V1\DatasetSpec $var
@return $this | setDatasetSpec | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function getFilesetSpec()
{
return $this->readOneof(33);
} | Specification that applies to a fileset resource. Valid only
for entries with the `FILESET` type.
Generated from protobuf field <code>.google.cloud.datacatalog.v1.FilesetSpec fileset_spec = 33;</code>
@return \Google\Cloud\DataCatalog\V1\FilesetSpec|null | getFilesetSpec | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function setFilesetSpec($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\DataCatalog\V1\FilesetSpec::class);
$this->writeOneof(33, $var);
return $this;
} | Specification that applies to a fileset resource. Valid only
for entries with the `FILESET` type.
Generated from protobuf field <code>.google.cloud.datacatalog.v1.FilesetSpec fileset_spec = 33;</code>
@param \Google\Cloud\DataCatalog\V1\FilesetSpec $var
@return $this | setFilesetSpec | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function getServiceSpec()
{
return $this->readOneof(42);
} | Specification that applies to a Service resource.
Generated from protobuf field <code>.google.cloud.datacatalog.v1.ServiceSpec service_spec = 42;</code>
@return \Google\Cloud\DataCatalog\V1\ServiceSpec|null | getServiceSpec | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function setServiceSpec($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\DataCatalog\V1\ServiceSpec::class);
$this->writeOneof(42, $var);
return $this;
} | Specification that applies to a Service resource.
Generated from protobuf field <code>.google.cloud.datacatalog.v1.ServiceSpec service_spec = 42;</code>
@param \Google\Cloud\DataCatalog\V1\ServiceSpec $var
@return $this | setServiceSpec | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function getModelSpec()
{
return $this->readOneof(43);
} | Model specification.
Generated from protobuf field <code>.google.cloud.datacatalog.v1.ModelSpec model_spec = 43;</code>
@return \Google\Cloud\DataCatalog\V1\ModelSpec|null | getModelSpec | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function setModelSpec($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\DataCatalog\V1\ModelSpec::class);
$this->writeOneof(43, $var);
return $this;
} | Model specification.
Generated from protobuf field <code>.google.cloud.datacatalog.v1.ModelSpec model_spec = 43;</code>
@param \Google\Cloud\DataCatalog\V1\ModelSpec $var
@return $this | setModelSpec | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function getFeatureOnlineStoreSpec()
{
return $this->readOneof(45);
} | FeatureonlineStore spec for Vertex AI Feature Store.
Generated from protobuf field <code>.google.cloud.datacatalog.v1.FeatureOnlineStoreSpec feature_online_store_spec = 45;</code>
@return \Google\Cloud\DataCatalog\V1\FeatureOnlineStoreSpec|null | getFeatureOnlineStoreSpec | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function setFeatureOnlineStoreSpec($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\DataCatalog\V1\FeatureOnlineStoreSpec::class);
$this->writeOneof(45, $var);
return $this;
} | FeatureonlineStore spec for Vertex AI Feature Store.
Generated from protobuf field <code>.google.cloud.datacatalog.v1.FeatureOnlineStoreSpec feature_online_store_spec = 45;</code>
@param \Google\Cloud\DataCatalog\V1\FeatureOnlineStoreSpec $var
@return $this | setFeatureOnlineStoreSpec | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function getBusinessContext()
{
return $this->business_context;
} | Business Context of the entry. Not supported for BigQuery datasets
Generated from protobuf field <code>.google.cloud.datacatalog.v1.BusinessContext business_context = 37;</code>
@return \Google\Cloud\DataCatalog\V1\BusinessContext|null | getBusinessContext | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function setBusinessContext($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\DataCatalog\V1\BusinessContext::class);
$this->business_context = $var;
return $this;
} | Business Context of the entry. Not supported for BigQuery datasets
Generated from protobuf field <code>.google.cloud.datacatalog.v1.BusinessContext business_context = 37;</code>
@param \Google\Cloud\DataCatalog\V1\BusinessContext $var
@return $this | setBusinessContext | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function setSchema($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\DataCatalog\V1\Schema::class);
$this->schema = $var;
return $this;
} | Schema of the entry. An entry might not have any schema attached to it.
Generated from protobuf field <code>.google.cloud.datacatalog.v1.Schema schema = 5;</code>
@param \Google\Cloud\DataCatalog\V1\Schema $var
@return $this | setSchema | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function getSourceSystemTimestamps()
{
return $this->source_system_timestamps;
} | Timestamps from the underlying resource, not from the Data Catalog
entry.
Output only when the entry has a system listed in the `IntegratedSystem`
enum. For entries with `user_specified_system`, this field is optional
and defaults to an empty timestamp.
Generated from protobuf field <code>.google.cloud.datacatalog.v1.SystemTimestamps source_system_timestamps = 7;</code>
@return \Google\Cloud\DataCatalog\V1\SystemTimestamps|null | getSourceSystemTimestamps | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function setSourceSystemTimestamps($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\DataCatalog\V1\SystemTimestamps::class);
$this->source_system_timestamps = $var;
return $this;
} | Timestamps from the underlying resource, not from the Data Catalog
entry.
Output only when the entry has a system listed in the `IntegratedSystem`
enum. For entries with `user_specified_system`, this field is optional
and defaults to an empty timestamp.
Generated from protobuf field <code>.google.cloud.datacatalog.v1.SystemTimestamps source_system_timestamps = 7;</code>
@param \Google\Cloud\DataCatalog\V1\SystemTimestamps $var
@return $this | setSourceSystemTimestamps | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function getUsageSignal()
{
return $this->usage_signal;
} | Resource usage statistics.
Generated from protobuf field <code>.google.cloud.datacatalog.v1.UsageSignal usage_signal = 13;</code>
@return \Google\Cloud\DataCatalog\V1\UsageSignal|null | getUsageSignal | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function setUsageSignal($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\DataCatalog\V1\UsageSignal::class);
$this->usage_signal = $var;
return $this;
} | Resource usage statistics.
Generated from protobuf field <code>.google.cloud.datacatalog.v1.UsageSignal usage_signal = 13;</code>
@param \Google\Cloud\DataCatalog\V1\UsageSignal $var
@return $this | setUsageSignal | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function setDataSource($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\DataCatalog\V1\DataSource::class);
$this->data_source = $var;
return $this;
} | Output only. Physical location of the entry.
Generated from protobuf field <code>.google.cloud.datacatalog.v1.DataSource data_source = 20 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
@param \Google\Cloud\DataCatalog\V1\DataSource $var
@return $this | setDataSource | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function getPersonalDetails()
{
return $this->personal_details;
} | Output only. Additional information related to the entry. Private to the
current user.
Generated from protobuf field <code>.google.cloud.datacatalog.v1.PersonalDetails personal_details = 26 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
@return \Google\Cloud\DataCatalog\V1\PersonalDetails|null | getPersonalDetails | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function setPersonalDetails($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\DataCatalog\V1\PersonalDetails::class);
$this->personal_details = $var;
return $this;
} | Output only. Additional information related to the entry. Private to the
current user.
Generated from protobuf field <code>.google.cloud.datacatalog.v1.PersonalDetails personal_details = 26 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
@param \Google\Cloud\DataCatalog\V1\PersonalDetails $var
@return $this | setPersonalDetails | php | googleapis/google-cloud-php | DataCatalog/src/V1/Entry.php | https://github.com/googleapis/google-cloud-php/blob/master/DataCatalog/src/V1/Entry.php | Apache-2.0 |
public function getValueFrequencyHistogramBuckets()
{
return $this->value_frequency_histogram_buckets;
} | Histogram of value frequencies in the column.
Generated from protobuf field <code>repeated .google.privacy.dlp.v2.AnalyzeDataSourceRiskDetails.CategoricalStatsResult.CategoricalStatsHistogramBucket value_frequency_histogram_buckets = 5;</code>
@return \Google\Protobuf\Internal\RepeatedField | getValueFrequencyHistogramBuckets | php | googleapis/google-cloud-php | Dlp/src/V2/AnalyzeDataSourceRiskDetails/CategoricalStatsResult.php | https://github.com/googleapis/google-cloud-php/blob/master/Dlp/src/V2/AnalyzeDataSourceRiskDetails/CategoricalStatsResult.php | Apache-2.0 |
public function setValueFrequencyHistogramBuckets($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Dlp\V2\AnalyzeDataSourceRiskDetails\CategoricalStatsResult\CategoricalStatsHistogramBucket::class);
$this->value_frequency_histogram_buckets = $arr;
return $this;
} | Histogram of value frequencies in the column.
Generated from protobuf field <code>repeated .google.privacy.dlp.v2.AnalyzeDataSourceRiskDetails.CategoricalStatsResult.CategoricalStatsHistogramBucket value_frequency_histogram_buckets = 5;</code>
@param array<\Google\Cloud\Dlp\V2\AnalyzeDataSourceRiskDetails\CategoricalStatsResult\CategoricalStatsHistogramBucket>|\Google\Protobuf\Internal\RepeatedField $var
@return $this | setValueFrequencyHistogramBuckets | php | googleapis/google-cloud-php | Dlp/src/V2/AnalyzeDataSourceRiskDetails/CategoricalStatsResult.php | https://github.com/googleapis/google-cloud-php/blob/master/Dlp/src/V2/AnalyzeDataSourceRiskDetails/CategoricalStatsResult.php | Apache-2.0 |
public function setState($var)
{
GPBUtil::checkEnum($var, \Google\Cloud\Batch\V1\TaskStatus\State::class);
$this->state = $var;
return $this;
} | Task state.
Generated from protobuf field <code>.google.cloud.batch.v1.TaskStatus.State state = 1;</code>
@param int $var
@return $this | setState | php | googleapis/google-cloud-php | Batch/src/V1/TaskStatus.php | https://github.com/googleapis/google-cloud-php/blob/master/Batch/src/V1/TaskStatus.php | Apache-2.0 |
public function getStatusEvents()
{
return $this->status_events;
} | Detailed info about why the state is reached.
Generated from protobuf field <code>repeated .google.cloud.batch.v1.StatusEvent status_events = 2;</code>
@return \Google\Protobuf\Internal\RepeatedField | getStatusEvents | php | googleapis/google-cloud-php | Batch/src/V1/TaskStatus.php | https://github.com/googleapis/google-cloud-php/blob/master/Batch/src/V1/TaskStatus.php | Apache-2.0 |
public function setStatusEvents($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Batch\V1\StatusEvent::class);
$this->status_events = $arr;
return $this;
} | Detailed info about why the state is reached.
Generated from protobuf field <code>repeated .google.cloud.batch.v1.StatusEvent status_events = 2;</code>
@param array<\Google\Cloud\Batch\V1\StatusEvent>|\Google\Protobuf\Internal\RepeatedField $var
@return $this | setStatusEvents | php | googleapis/google-cloud-php | Batch/src/V1/TaskStatus.php | https://github.com/googleapis/google-cloud-php/blob/master/Batch/src/V1/TaskStatus.php | Apache-2.0 |
public function getWafRules()
{
return $this->waf_rules;
} | Generated from protobuf field <code>optional .google.cloud.compute.v1.PreconfiguredWafSet waf_rules = 74899924;</code>
@return \Google\Cloud\Compute\V1\PreconfiguredWafSet|null | getWafRules | php | googleapis/google-cloud-php | Compute/src/V1/SecurityPoliciesWafConfig.php | https://github.com/googleapis/google-cloud-php/blob/master/Compute/src/V1/SecurityPoliciesWafConfig.php | Apache-2.0 |
public function setWafRules($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Compute\V1\PreconfiguredWafSet::class);
$this->waf_rules = $var;
return $this;
} | Generated from protobuf field <code>optional .google.cloud.compute.v1.PreconfiguredWafSet waf_rules = 74899924;</code>
@param \Google\Cloud\Compute\V1\PreconfiguredWafSet $var
@return $this | setWafRules | php | googleapis/google-cloud-php | Compute/src/V1/SecurityPoliciesWafConfig.php | https://github.com/googleapis/google-cloud-php/blob/master/Compute/src/V1/SecurityPoliciesWafConfig.php | Apache-2.0 |
public function getTargetCountry()
{
return $this->target_country;
} | Required. Immutable. The target country used as part of the unique
identifier. Represented as a [CLDR territory
code](https://github.com/unicode-org/cldr/blob/latest/common/main/en.xml).
Promotions are only available in selected
[countries](https://support.google.com/merchants/answer/4588460).
Generated from protobuf field <code>string target_country = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.field_behavior) = IMMUTABLE];</code>
@return string | getTargetCountry | php | googleapis/google-cloud-php | ShoppingMerchantDataSources/src/V1beta/PromotionDataSource.php | https://github.com/googleapis/google-cloud-php/blob/master/ShoppingMerchantDataSources/src/V1beta/PromotionDataSource.php | Apache-2.0 |
public function setTargetCountry($var)
{
GPBUtil::checkString($var, True);
$this->target_country = $var;
return $this;
} | Required. Immutable. The target country used as part of the unique
identifier. Represented as a [CLDR territory
code](https://github.com/unicode-org/cldr/blob/latest/common/main/en.xml).
Promotions are only available in selected
[countries](https://support.google.com/merchants/answer/4588460).
Generated from protobuf field <code>string target_country = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.field_behavior) = IMMUTABLE];</code>
@param string $var
@return $this | setTargetCountry | php | googleapis/google-cloud-php | ShoppingMerchantDataSources/src/V1beta/PromotionDataSource.php | https://github.com/googleapis/google-cloud-php/blob/master/ShoppingMerchantDataSources/src/V1beta/PromotionDataSource.php | Apache-2.0 |
public function __construct($url, $revisionId)
{
$this->url = $url;
$this->revisionId = $revisionId;
} | Instantiate a new GitSourceContext.
@param string $url Git repository URL.
@param string $revisionId Git commit hash. | __construct | php | googleapis/google-cloud-php | Debugger/src/GitSourceContext.php | https://github.com/googleapis/google-cloud-php/blob/master/Debugger/src/GitSourceContext.php | Apache-2.0 |
public function setMetricSpec($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\AIPlatform\V1\PairwiseSummarizationQualitySpec::class);
$this->metric_spec = $var;
return $this;
} | Required. Spec for pairwise summarization quality score metric.
Generated from protobuf field <code>.google.cloud.aiplatform.v1.PairwiseSummarizationQualitySpec metric_spec = 1 [(.google.api.field_behavior) = REQUIRED];</code>
@param \Google\Cloud\AIPlatform\V1\PairwiseSummarizationQualitySpec $var
@return $this | setMetricSpec | php | googleapis/google-cloud-php | AiPlatform/src/V1/PairwiseSummarizationQualityInput.php | https://github.com/googleapis/google-cloud-php/blob/master/AiPlatform/src/V1/PairwiseSummarizationQualityInput.php | Apache-2.0 |
public function setInstance($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\AIPlatform\V1\PairwiseSummarizationQualityInstance::class);
$this->instance = $var;
return $this;
} | Required. Pairwise summarization quality instance.
Generated from protobuf field <code>.google.cloud.aiplatform.v1.PairwiseSummarizationQualityInstance instance = 2 [(.google.api.field_behavior) = REQUIRED];</code>
@param \Google\Cloud\AIPlatform\V1\PairwiseSummarizationQualityInstance $var
@return $this | setInstance | php | googleapis/google-cloud-php | AiPlatform/src/V1/PairwiseSummarizationQualityInput.php | https://github.com/googleapis/google-cloud-php/blob/master/AiPlatform/src/V1/PairwiseSummarizationQualityInput.php | Apache-2.0 |
public function getConversationDataset()
{
return $this->conversation_dataset;
} | The resource name of the conversation dataset that will be created. Format:
`projects/<Project ID>/locations/<Location
ID>/conversationDatasets/<Conversation Dataset Id>`
Generated from protobuf field <code>string conversation_dataset = 1 [(.google.api.resource_reference) = {</code>
@return string | getConversationDataset | php | googleapis/google-cloud-php | Dialogflow/src/V2/CreateConversationDatasetOperationMetadata.php | https://github.com/googleapis/google-cloud-php/blob/master/Dialogflow/src/V2/CreateConversationDatasetOperationMetadata.php | Apache-2.0 |
public function setConversationDataset($var)
{
GPBUtil::checkString($var, True);
$this->conversation_dataset = $var;
return $this;
} | The resource name of the conversation dataset that will be created. Format:
`projects/<Project ID>/locations/<Location
ID>/conversationDatasets/<Conversation Dataset Id>`
Generated from protobuf field <code>string conversation_dataset = 1 [(.google.api.resource_reference) = {</code>
@param string $var
@return $this | setConversationDataset | php | googleapis/google-cloud-php | Dialogflow/src/V2/CreateConversationDatasetOperationMetadata.php | https://github.com/googleapis/google-cloud-php/blob/master/Dialogflow/src/V2/CreateConversationDatasetOperationMetadata.php | Apache-2.0 |
public function getEntitlement()
{
return $this->entitlement;
} | Required. The resource being created
Generated from protobuf field <code>.google.cloud.privilegedaccessmanager.v1.Entitlement entitlement = 3 [(.google.api.field_behavior) = REQUIRED];</code>
@return \Google\Cloud\PrivilegedAccessManager\V1\Entitlement|null | getEntitlement | php | googleapis/google-cloud-php | PrivilegedAccessManager/src/V1/CreateEntitlementRequest.php | https://github.com/googleapis/google-cloud-php/blob/master/PrivilegedAccessManager/src/V1/CreateEntitlementRequest.php | Apache-2.0 |
public function setEntitlement($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\PrivilegedAccessManager\V1\Entitlement::class);
$this->entitlement = $var;
return $this;
} | Required. The resource being created
Generated from protobuf field <code>.google.cloud.privilegedaccessmanager.v1.Entitlement entitlement = 3 [(.google.api.field_behavior) = REQUIRED];</code>
@param \Google\Cloud\PrivilegedAccessManager\V1\Entitlement $var
@return $this | setEntitlement | php | googleapis/google-cloud-php | PrivilegedAccessManager/src/V1/CreateEntitlementRequest.php | https://github.com/googleapis/google-cloud-php/blob/master/PrivilegedAccessManager/src/V1/CreateEntitlementRequest.php | Apache-2.0 |
public function getFirewallPolicyAssociationResource()
{
return $this->firewall_policy_association_resource;
} | The body resource for this request
Generated from protobuf field <code>.google.cloud.compute.v1.FirewallPolicyAssociation firewall_policy_association_resource = 259546170 [(.google.api.field_behavior) = REQUIRED];</code>
@return \Google\Cloud\Compute\V1\FirewallPolicyAssociation|null | getFirewallPolicyAssociationResource | php | googleapis/google-cloud-php | Compute/src/V1/AddAssociationFirewallPolicyRequest.php | https://github.com/googleapis/google-cloud-php/blob/master/Compute/src/V1/AddAssociationFirewallPolicyRequest.php | Apache-2.0 |
public function setFirewallPolicyAssociationResource($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Compute\V1\FirewallPolicyAssociation::class);
$this->firewall_policy_association_resource = $var;
return $this;
} | The body resource for this request
Generated from protobuf field <code>.google.cloud.compute.v1.FirewallPolicyAssociation firewall_policy_association_resource = 259546170 [(.google.api.field_behavior) = REQUIRED];</code>
@param \Google\Cloud\Compute\V1\FirewallPolicyAssociation $var
@return $this | setFirewallPolicyAssociationResource | php | googleapis/google-cloud-php | Compute/src/V1/AddAssociationFirewallPolicyRequest.php | https://github.com/googleapis/google-cloud-php/blob/master/Compute/src/V1/AddAssociationFirewallPolicyRequest.php | Apache-2.0 |
public function getReplaceExistingAssociation()
{
return isset($this->replace_existing_association) ? $this->replace_existing_association : false;
} | Indicates whether or not to replace it if an association of the attachment already exists. This is false by default, in which case an error will be returned if an association already exists.
Generated from protobuf field <code>optional bool replace_existing_association = 209541240;</code>
@return bool | getReplaceExistingAssociation | php | googleapis/google-cloud-php | Compute/src/V1/AddAssociationFirewallPolicyRequest.php | https://github.com/googleapis/google-cloud-php/blob/master/Compute/src/V1/AddAssociationFirewallPolicyRequest.php | Apache-2.0 |
public function setReplaceExistingAssociation($var)
{
GPBUtil::checkBool($var);
$this->replace_existing_association = $var;
return $this;
} | Indicates whether or not to replace it if an association of the attachment already exists. This is false by default, in which case an error will be returned if an association already exists.
Generated from protobuf field <code>optional bool replace_existing_association = 209541240;</code>
@param bool $var
@return $this | setReplaceExistingAssociation | php | googleapis/google-cloud-php | Compute/src/V1/AddAssociationFirewallPolicyRequest.php | https://github.com/googleapis/google-cloud-php/blob/master/Compute/src/V1/AddAssociationFirewallPolicyRequest.php | Apache-2.0 |
public function getExpandedDataSets()
{
return $this->expanded_data_sets;
} | List of ExpandedDataSet. These will be ordered stably, but in an arbitrary
order.
Generated from protobuf field <code>repeated .google.analytics.admin.v1alpha.ExpandedDataSet expanded_data_sets = 1;</code>
@return \Google\Protobuf\Internal\RepeatedField | getExpandedDataSets | php | googleapis/google-cloud-php | AnalyticsAdmin/src/V1alpha/ListExpandedDataSetsResponse.php | https://github.com/googleapis/google-cloud-php/blob/master/AnalyticsAdmin/src/V1alpha/ListExpandedDataSetsResponse.php | Apache-2.0 |
public function setExpandedDataSets($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Analytics\Admin\V1alpha\ExpandedDataSet::class);
$this->expanded_data_sets = $arr;
return $this;
} | List of ExpandedDataSet. These will be ordered stably, but in an arbitrary
order.
Generated from protobuf field <code>repeated .google.analytics.admin.v1alpha.ExpandedDataSet expanded_data_sets = 1;</code>
@param array<\Google\Analytics\Admin\V1alpha\ExpandedDataSet>|\Google\Protobuf\Internal\RepeatedField $var
@return $this | setExpandedDataSets | php | googleapis/google-cloud-php | AnalyticsAdmin/src/V1alpha/ListExpandedDataSetsResponse.php | https://github.com/googleapis/google-cloud-php/blob/master/AnalyticsAdmin/src/V1alpha/ListExpandedDataSetsResponse.php | Apache-2.0 |
public function getCiphertext()
{
return $this->ciphertext;
} | The encrypted data. In the case of AES-GCM, the authentication tag
is the [tag_length][google.cloud.kms.v1.RawEncryptResponse.tag_length]
bytes at the end of this field.
Generated from protobuf field <code>bytes ciphertext = 1;</code>
@return string | getCiphertext | php | googleapis/google-cloud-php | Kms/src/V1/RawEncryptResponse.php | https://github.com/googleapis/google-cloud-php/blob/master/Kms/src/V1/RawEncryptResponse.php | Apache-2.0 |
public function setCiphertext($var)
{
GPBUtil::checkString($var, False);
$this->ciphertext = $var;
return $this;
} | The encrypted data. In the case of AES-GCM, the authentication tag
is the [tag_length][google.cloud.kms.v1.RawEncryptResponse.tag_length]
bytes at the end of this field.
Generated from protobuf field <code>bytes ciphertext = 1;</code>
@param string $var
@return $this | setCiphertext | php | googleapis/google-cloud-php | Kms/src/V1/RawEncryptResponse.php | https://github.com/googleapis/google-cloud-php/blob/master/Kms/src/V1/RawEncryptResponse.php | Apache-2.0 |
public function getInitializationVector()
{
return $this->initialization_vector;
} | The initialization vector (IV) generated by the service during
encryption. This value must be stored and provided in
[RawDecryptRequest.initialization_vector][google.cloud.kms.v1.RawDecryptRequest.initialization_vector]
at decryption time.
Generated from protobuf field <code>bytes initialization_vector = 2;</code>
@return string | getInitializationVector | php | googleapis/google-cloud-php | Kms/src/V1/RawEncryptResponse.php | https://github.com/googleapis/google-cloud-php/blob/master/Kms/src/V1/RawEncryptResponse.php | Apache-2.0 |
public function setInitializationVector($var)
{
GPBUtil::checkString($var, False);
$this->initialization_vector = $var;
return $this;
} | The initialization vector (IV) generated by the service during
encryption. This value must be stored and provided in
[RawDecryptRequest.initialization_vector][google.cloud.kms.v1.RawDecryptRequest.initialization_vector]
at decryption time.
Generated from protobuf field <code>bytes initialization_vector = 2;</code>
@param string $var
@return $this | setInitializationVector | php | googleapis/google-cloud-php | Kms/src/V1/RawEncryptResponse.php | https://github.com/googleapis/google-cloud-php/blob/master/Kms/src/V1/RawEncryptResponse.php | Apache-2.0 |
public function getTagLength()
{
return $this->tag_length;
} | The length of the authentication tag that is appended to
the end of the ciphertext.
Generated from protobuf field <code>int32 tag_length = 3;</code>
@return int | getTagLength | php | googleapis/google-cloud-php | Kms/src/V1/RawEncryptResponse.php | https://github.com/googleapis/google-cloud-php/blob/master/Kms/src/V1/RawEncryptResponse.php | Apache-2.0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.