repo stringlengths 6 63 | path stringlengths 5 140 | func_name stringlengths 3 151 | original_string stringlengths 84 13k | language stringclasses 1
value | code stringlengths 84 13k | code_tokens list | docstring stringlengths 3 47.2k | docstring_tokens list | sha stringlengths 40 40 | url stringlengths 91 247 | partition stringclasses 1
value |
|---|---|---|---|---|---|---|---|---|---|---|---|
googleapis/google-cloud-php | BigQuery/src/BigQueryClient.php | BigQueryClient.datasets | public function datasets(array $options = [])
{
$resultLimit = $this->pluck('resultLimit', $options, false);
return new ItemIterator(
new PageIterator(
function (array $dataset) {
return new Dataset(
$this->connection,
... | php | public function datasets(array $options = [])
{
$resultLimit = $this->pluck('resultLimit', $options, false);
return new ItemIterator(
new PageIterator(
function (array $dataset) {
return new Dataset(
$this->connection,
... | [
"public",
"function",
"datasets",
"(",
"array",
"$",
"options",
"=",
"[",
"]",
")",
"{",
"$",
"resultLimit",
"=",
"$",
"this",
"->",
"pluck",
"(",
"'resultLimit'",
",",
"$",
"options",
",",
"false",
")",
";",
"return",
"new",
"ItemIterator",
"(",
"new"... | Fetches datasets in the project.
Example:
```
$datasets = $bigQuery->datasets();
foreach ($datasets as $dataset) {
echo $dataset->id() . PHP_EOL;
}
```
@see https://cloud.google.com/bigquery/docs/reference/v2/datasets/list Datasets list API documentation.
@param array $options [optional] {
Configuration options.
@... | [
"Fetches",
"datasets",
"in",
"the",
"project",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/BigQuery/src/BigQueryClient.php#L531-L554 | train |
googleapis/google-cloud-php | BigQuery/src/BigQueryClient.php | BigQueryClient.getServiceAccount | public function getServiceAccount(array $options = [])
{
$resp = $this->connection->getServiceAccount($options + ['projectId' => $this->projectId]);
return $resp['email'];
} | php | public function getServiceAccount(array $options = [])
{
$resp = $this->connection->getServiceAccount($options + ['projectId' => $this->projectId]);
return $resp['email'];
} | [
"public",
"function",
"getServiceAccount",
"(",
"array",
"$",
"options",
"=",
"[",
"]",
")",
"{",
"$",
"resp",
"=",
"$",
"this",
"->",
"connection",
"->",
"getServiceAccount",
"(",
"$",
"options",
"+",
"[",
"'projectId'",
"=>",
"$",
"this",
"->",
"projec... | Get a service account for the KMS integration.
Example:
```
$serviceAccount = $bigQuery->getServiceAccount();
```
@param array $options [optional] Configuration options.
@return string | [
"Get",
"a",
"service",
"account",
"for",
"the",
"KMS",
"integration",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/BigQuery/src/BigQueryClient.php#L728-L732 | train |
googleapis/google-cloud-php | Vision/src/V1/DominantColorsAnnotation.php | DominantColorsAnnotation.setColors | public function setColors($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Vision\V1\ColorInfo::class);
$this->colors = $arr;
return $this;
} | php | public function setColors($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Vision\V1\ColorInfo::class);
$this->colors = $arr;
return $this;
} | [
"public",
"function",
"setColors",
"(",
"$",
"var",
")",
"{",
"$",
"arr",
"=",
"GPBUtil",
"::",
"checkRepeatedField",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Protobuf",
"\\",
"Internal",
"\\",
"GPBType",
"::",
"MESSAGE",
",",
"\\",
"Google",
"\\",
... | RGB color values with their score and pixel fraction.
Generated from protobuf field <code>repeated .google.cloud.vision.v1.ColorInfo colors = 1;</code>
@param \Google\Cloud\Vision\V1\ColorInfo[]|\Google\Protobuf\Internal\RepeatedField $var
@return $this | [
"RGB",
"color",
"values",
"with",
"their",
"score",
"and",
"pixel",
"fraction",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Vision/src/V1/DominantColorsAnnotation.php#L58-L64 | train |
googleapis/google-cloud-php | Datastore/src/V1/Filter.php | Filter.setPropertyFilter | public function setPropertyFilter($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Datastore\V1\PropertyFilter::class);
$this->writeOneof(2, $var);
return $this;
} | php | public function setPropertyFilter($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Datastore\V1\PropertyFilter::class);
$this->writeOneof(2, $var);
return $this;
} | [
"public",
"function",
"setPropertyFilter",
"(",
"$",
"var",
")",
"{",
"GPBUtil",
"::",
"checkMessage",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Cloud",
"\\",
"Datastore",
"\\",
"V1",
"\\",
"PropertyFilter",
"::",
"class",
")",
";",
"$",
"this",
"->",... | A filter on a property.
Generated from protobuf field <code>.google.datastore.v1.PropertyFilter property_filter = 2;</code>
@param \Google\Cloud\Datastore\V1\PropertyFilter $var
@return $this | [
"A",
"filter",
"on",
"a",
"property",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Datastore/src/V1/Filter.php#L81-L87 | train |
googleapis/google-cloud-php | Talent/src/V4beta1/ProfileQuery.php | ProfileQuery.setWorkExperienceFilter | public function setWorkExperienceFilter($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Talent\V4beta1\WorkExperienceFilter::class);
$this->work_experience_filter = $arr;
return $this;
} | php | public function setWorkExperienceFilter($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Talent\V4beta1\WorkExperienceFilter::class);
$this->work_experience_filter = $arr;
return $this;
} | [
"public",
"function",
"setWorkExperienceFilter",
"(",
"$",
"var",
")",
"{",
"$",
"arr",
"=",
"GPBUtil",
"::",
"checkRepeatedField",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Protobuf",
"\\",
"Internal",
"\\",
"GPBType",
"::",
"MESSAGE",
",",
"\\",
"Goog... | Optional.
Work experience filter specifies the total working experience of profiles
to match on.
If a work experience filter isn't specified, profiles with any
professional experience are retrieved.
If multiple work experience filters are specified, profiles that match any
work experience filters are retrieved.
For exa... | [
"Optional",
".",
"Work",
"experience",
"filter",
"specifies",
"the",
"total",
"working",
"experience",
"of",
"profiles",
"to",
"match",
"on",
".",
"If",
"a",
"work",
"experience",
"filter",
"isn",
"t",
"specified",
"profiles",
"with",
"any",
"professional",
"e... | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Talent/src/V4beta1/ProfileQuery.php#L594-L600 | train |
googleapis/google-cloud-php | Talent/src/V4beta1/ProfileQuery.php | ProfileQuery.setApplicationDateFilters | public function setApplicationDateFilters($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Talent\V4beta1\ApplicationDateFilter::class);
$this->application_date_filters = $arr;
return $this;
} | php | public function setApplicationDateFilters($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Talent\V4beta1\ApplicationDateFilter::class);
$this->application_date_filters = $arr;
return $this;
} | [
"public",
"function",
"setApplicationDateFilters",
"(",
"$",
"var",
")",
"{",
"$",
"arr",
"=",
"GPBUtil",
"::",
"checkRepeatedField",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Protobuf",
"\\",
"Internal",
"\\",
"GPBType",
"::",
"MESSAGE",
",",
"\\",
"Go... | Optional.
The application date filters specify application date ranges to match on.
Generated from protobuf field <code>repeated .google.cloud.talent.v4beta1.ApplicationDateFilter application_date_filters = 10;</code>
@param \Google\Cloud\Talent\V4beta1\ApplicationDateFilter[]|\Google\Protobuf\Internal\RepeatedField $... | [
"Optional",
".",
"The",
"application",
"date",
"filters",
"specify",
"application",
"date",
"ranges",
"to",
"match",
"on",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Talent/src/V4beta1/ProfileQuery.php#L713-L719 | train |
googleapis/google-cloud-php | Talent/src/V4beta1/ProfileQuery.php | ProfileQuery.setApplicationOutcomeNotesFilters | public function setApplicationOutcomeNotesFilters($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Talent\V4beta1\ApplicationOutcomeNotesFilter::class);
$this->application_outcome_notes_filters = $arr;
return $this;
} | php | public function setApplicationOutcomeNotesFilters($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Talent\V4beta1\ApplicationOutcomeNotesFilter::class);
$this->application_outcome_notes_filters = $arr;
return $this;
} | [
"public",
"function",
"setApplicationOutcomeNotesFilters",
"(",
"$",
"var",
")",
"{",
"$",
"arr",
"=",
"GPBUtil",
"::",
"checkRepeatedField",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Protobuf",
"\\",
"Internal",
"\\",
"GPBType",
"::",
"MESSAGE",
",",
"\\... | Optional.
The application outcome notes filters specify the notes for the outcome of
the job application.
Generated from protobuf field <code>repeated .google.cloud.talent.v4beta1.ApplicationOutcomeNotesFilter application_outcome_notes_filters = 11;</code>
@param \Google\Cloud\Talent\V4beta1\ApplicationOutcomeNotesFil... | [
"Optional",
".",
"The",
"application",
"outcome",
"notes",
"filters",
"specify",
"the",
"notes",
"for",
"the",
"outcome",
"of",
"the",
"job",
"application",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Talent/src/V4beta1/ProfileQuery.php#L743-L749 | train |
googleapis/google-cloud-php | Talent/src/V4beta1/ProfileQuery.php | ProfileQuery.setApplicationLastStageFilters | public function setApplicationLastStageFilters($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Talent\V4beta1\ApplicationLastStageFilter::class);
$this->application_last_stage_filters = $arr;
return $this;
} | php | public function setApplicationLastStageFilters($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Talent\V4beta1\ApplicationLastStageFilter::class);
$this->application_last_stage_filters = $arr;
return $this;
} | [
"public",
"function",
"setApplicationLastStageFilters",
"(",
"$",
"var",
")",
"{",
"$",
"arr",
"=",
"GPBUtil",
"::",
"checkRepeatedField",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Protobuf",
"\\",
"Internal",
"\\",
"GPBType",
"::",
"MESSAGE",
",",
"\\",
... | Optional.
The application last stage filters specify the last stage of job
application.
Generated from protobuf field <code>repeated .google.cloud.talent.v4beta1.ApplicationLastStageFilter application_last_stage_filters = 12;</code>
@param \Google\Cloud\Talent\V4beta1\ApplicationLastStageFilter[]|\Google\Protobuf\Inte... | [
"Optional",
".",
"The",
"application",
"last",
"stage",
"filters",
"specify",
"the",
"last",
"stage",
"of",
"job",
"application",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Talent/src/V4beta1/ProfileQuery.php#L773-L779 | train |
googleapis/google-cloud-php | Talent/src/V4beta1/ProfileQuery.php | ProfileQuery.setApplicationJobFilters | public function setApplicationJobFilters($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Talent\V4beta1\ApplicationJobFilter::class);
$this->application_job_filters = $arr;
return $this;
} | php | public function setApplicationJobFilters($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Talent\V4beta1\ApplicationJobFilter::class);
$this->application_job_filters = $arr;
return $this;
} | [
"public",
"function",
"setApplicationJobFilters",
"(",
"$",
"var",
")",
"{",
"$",
"arr",
"=",
"GPBUtil",
"::",
"checkRepeatedField",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Protobuf",
"\\",
"Internal",
"\\",
"GPBType",
"::",
"MESSAGE",
",",
"\\",
"Goo... | Optional.
The application job filters specify the job applied for in the application.
Generated from protobuf field <code>repeated .google.cloud.talent.v4beta1.ApplicationJobFilter application_job_filters = 13;</code>
@param \Google\Cloud\Talent\V4beta1\ApplicationJobFilter[]|\Google\Protobuf\Internal\RepeatedField $v... | [
"Optional",
".",
"The",
"application",
"job",
"filters",
"specify",
"the",
"job",
"applied",
"for",
"in",
"the",
"application",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Talent/src/V4beta1/ProfileQuery.php#L801-L807 | train |
googleapis/google-cloud-php | Talent/src/V4beta1/ProfileQuery.php | ProfileQuery.setApplicationStatusFilters | public function setApplicationStatusFilters($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Talent\V4beta1\ApplicationStatusFilter::class);
$this->application_status_filters = $arr;
return $this;
} | php | public function setApplicationStatusFilters($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Talent\V4beta1\ApplicationStatusFilter::class);
$this->application_status_filters = $arr;
return $this;
} | [
"public",
"function",
"setApplicationStatusFilters",
"(",
"$",
"var",
")",
"{",
"$",
"arr",
"=",
"GPBUtil",
"::",
"checkRepeatedField",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Protobuf",
"\\",
"Internal",
"\\",
"GPBType",
"::",
"MESSAGE",
",",
"\\",
"... | Optional.
The application status filters specify the status of job application.
Generated from protobuf field <code>repeated .google.cloud.talent.v4beta1.ApplicationStatusFilter application_status_filters = 14;</code>
@param \Google\Cloud\Talent\V4beta1\ApplicationStatusFilter[]|\Google\Protobuf\Internal\RepeatedField... | [
"Optional",
".",
"The",
"application",
"status",
"filters",
"specify",
"the",
"status",
"of",
"job",
"application",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Talent/src/V4beta1/ProfileQuery.php#L829-L835 | train |
googleapis/google-cloud-php | Trace/src/V2/Span/TimeEvent.php | TimeEvent.setAnnotation | public function setAnnotation($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Trace\V2\Span_TimeEvent_Annotation::class);
$this->writeOneof(2, $var);
return $this;
} | php | public function setAnnotation($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Trace\V2\Span_TimeEvent_Annotation::class);
$this->writeOneof(2, $var);
return $this;
} | [
"public",
"function",
"setAnnotation",
"(",
"$",
"var",
")",
"{",
"GPBUtil",
"::",
"checkMessage",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Cloud",
"\\",
"Trace",
"\\",
"V2",
"\\",
"Span_TimeEvent_Annotation",
"::",
"class",
")",
";",
"$",
"this",
"-... | Text annotation with a set of attributes.
Generated from protobuf field <code>.google.devtools.cloudtrace.v2.Span.TimeEvent.Annotation annotation = 2;</code>
@param \Google\Cloud\Trace\V2\Span\TimeEvent\Annotation $var
@return $this | [
"Text",
"annotation",
"with",
"a",
"set",
"of",
"attributes",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Trace/src/V2/Span/TimeEvent.php#L89-L95 | train |
googleapis/google-cloud-php | Monitoring/src/V3/ListNotificationChannelsResponse.php | ListNotificationChannelsResponse.setNotificationChannels | public function setNotificationChannels($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Monitoring\V3\NotificationChannel::class);
$this->notification_channels = $arr;
return $this;
} | php | public function setNotificationChannels($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Monitoring\V3\NotificationChannel::class);
$this->notification_channels = $arr;
return $this;
} | [
"public",
"function",
"setNotificationChannels",
"(",
"$",
"var",
")",
"{",
"$",
"arr",
"=",
"GPBUtil",
"::",
"checkRepeatedField",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Protobuf",
"\\",
"Internal",
"\\",
"GPBType",
"::",
"MESSAGE",
",",
"\\",
"Goog... | The notification channels defined for the specified project.
Generated from protobuf field <code>repeated .google.monitoring.v3.NotificationChannel notification_channels = 3;</code>
@param \Google\Cloud\Monitoring\V3\NotificationChannel[]|\Google\Protobuf\Internal\RepeatedField $var
@return $this | [
"The",
"notification",
"channels",
"defined",
"for",
"the",
"specified",
"project",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Monitoring/src/V3/ListNotificationChannelsResponse.php#L72-L78 | train |
googleapis/google-cloud-php | Dlp/src/V2/CustomInfoType/DetectionRule/LikelihoodAdjustment.php | LikelihoodAdjustment.setFixedLikelihood | public function setFixedLikelihood($var)
{
GPBUtil::checkEnum($var, \Google\Cloud\Dlp\V2\Likelihood::class);
$this->writeOneof(1, $var);
return $this;
} | php | public function setFixedLikelihood($var)
{
GPBUtil::checkEnum($var, \Google\Cloud\Dlp\V2\Likelihood::class);
$this->writeOneof(1, $var);
return $this;
} | [
"public",
"function",
"setFixedLikelihood",
"(",
"$",
"var",
")",
"{",
"GPBUtil",
"::",
"checkEnum",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Cloud",
"\\",
"Dlp",
"\\",
"V2",
"\\",
"Likelihood",
"::",
"class",
")",
";",
"$",
"this",
"->",
"writeOne... | Set the likelihood of a finding to a fixed value.
Generated from protobuf field <code>.google.privacy.dlp.v2.Likelihood fixed_likelihood = 1;</code>
@param int $var
@return $this | [
"Set",
"the",
"likelihood",
"of",
"a",
"finding",
"to",
"a",
"fixed",
"value",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Dlp/src/V2/CustomInfoType/DetectionRule/LikelihoodAdjustment.php#L63-L69 | train |
googleapis/google-cloud-php | Spanner/src/V1/Gapic/SpannerGapicClient.php | SpannerGapicClient.databaseName | public static function databaseName($project, $instance, $database)
{
return self::getDatabaseNameTemplate()->render([
'project' => $project,
'instance' => $instance,
'database' => $database,
]);
} | php | public static function databaseName($project, $instance, $database)
{
return self::getDatabaseNameTemplate()->render([
'project' => $project,
'instance' => $instance,
'database' => $database,
]);
} | [
"public",
"static",
"function",
"databaseName",
"(",
"$",
"project",
",",
"$",
"instance",
",",
"$",
"database",
")",
"{",
"return",
"self",
"::",
"getDatabaseNameTemplate",
"(",
")",
"->",
"render",
"(",
"[",
"'project'",
"=>",
"$",
"project",
",",
"'inst... | Formats a string containing the fully-qualified path to represent
a database resource.
@param string $project
@param string $instance
@param string $database
@return string The formatted database resource.
@experimental | [
"Formats",
"a",
"string",
"containing",
"the",
"fully",
"-",
"qualified",
"path",
"to",
"represent",
"a",
"database",
"resource",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Spanner/src/V1/Gapic/SpannerGapicClient.php#L189-L196 | train |
googleapis/google-cloud-php | Spanner/src/V1/Gapic/SpannerGapicClient.php | SpannerGapicClient.sessionName | public static function sessionName($project, $instance, $database, $session)
{
return self::getSessionNameTemplate()->render([
'project' => $project,
'instance' => $instance,
'database' => $database,
'session' => $session,
]);
} | php | public static function sessionName($project, $instance, $database, $session)
{
return self::getSessionNameTemplate()->render([
'project' => $project,
'instance' => $instance,
'database' => $database,
'session' => $session,
]);
} | [
"public",
"static",
"function",
"sessionName",
"(",
"$",
"project",
",",
"$",
"instance",
",",
"$",
"database",
",",
"$",
"session",
")",
"{",
"return",
"self",
"::",
"getSessionNameTemplate",
"(",
")",
"->",
"render",
"(",
"[",
"'project'",
"=>",
"$",
"... | Formats a string containing the fully-qualified path to represent
a session resource.
@param string $project
@param string $instance
@param string $database
@param string $session
@return string The formatted session resource.
@experimental | [
"Formats",
"a",
"string",
"containing",
"the",
"fully",
"-",
"qualified",
"path",
"to",
"represent",
"a",
"session",
"resource",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Spanner/src/V1/Gapic/SpannerGapicClient.php#L210-L218 | train |
googleapis/google-cloud-php | Bigtable/src/Admin/V2/AppProfile.php | AppProfile.setMultiClusterRoutingUseAny | public function setMultiClusterRoutingUseAny($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Bigtable\Admin\V2\AppProfile_MultiClusterRoutingUseAny::class);
$this->writeOneof(5, $var);
return $this;
} | php | public function setMultiClusterRoutingUseAny($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Bigtable\Admin\V2\AppProfile_MultiClusterRoutingUseAny::class);
$this->writeOneof(5, $var);
return $this;
} | [
"public",
"function",
"setMultiClusterRoutingUseAny",
"(",
"$",
"var",
")",
"{",
"GPBUtil",
"::",
"checkMessage",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Cloud",
"\\",
"Bigtable",
"\\",
"Admin",
"\\",
"V2",
"\\",
"AppProfile_MultiClusterRoutingUseAny",
"::"... | Use a multi-cluster routing policy that may pick any cluster.
Generated from protobuf field <code>.google.bigtable.admin.v2.AppProfile.MultiClusterRoutingUseAny multi_cluster_routing_use_any = 5;</code>
@param \Google\Cloud\Bigtable\Admin\V2\AppProfile\MultiClusterRoutingUseAny $var
@return $this | [
"Use",
"a",
"multi",
"-",
"cluster",
"routing",
"policy",
"that",
"may",
"pick",
"any",
"cluster",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Bigtable/src/Admin/V2/AppProfile.php#L194-L200 | train |
googleapis/google-cloud-php | Bigtable/src/Admin/V2/AppProfile.php | AppProfile.setSingleClusterRouting | public function setSingleClusterRouting($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Bigtable\Admin\V2\AppProfile_SingleClusterRouting::class);
$this->writeOneof(6, $var);
return $this;
} | php | public function setSingleClusterRouting($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Bigtable\Admin\V2\AppProfile_SingleClusterRouting::class);
$this->writeOneof(6, $var);
return $this;
} | [
"public",
"function",
"setSingleClusterRouting",
"(",
"$",
"var",
")",
"{",
"GPBUtil",
"::",
"checkMessage",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Cloud",
"\\",
"Bigtable",
"\\",
"Admin",
"\\",
"V2",
"\\",
"AppProfile_SingleClusterRouting",
"::",
"class... | Use a single-cluster routing policy.
Generated from protobuf field <code>.google.bigtable.admin.v2.AppProfile.SingleClusterRouting single_cluster_routing = 6;</code>
@param \Google\Cloud\Bigtable\Admin\V2\AppProfile\SingleClusterRouting $var
@return $this | [
"Use",
"a",
"single",
"-",
"cluster",
"routing",
"policy",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Bigtable/src/Admin/V2/AppProfile.php#L220-L226 | train |
googleapis/google-cloud-php | Datastore/src/DatastoreClient.php | DatastoreClient.allocateId | public function allocateId(Key $key, array $options = [])
{
$res = $this->allocateIds([$key], $options);
return $res[0];
} | php | public function allocateId(Key $key, array $options = [])
{
$res = $this->allocateIds([$key], $options);
return $res[0];
} | [
"public",
"function",
"allocateId",
"(",
"Key",
"$",
"key",
",",
"array",
"$",
"options",
"=",
"[",
"]",
")",
"{",
"$",
"res",
"=",
"$",
"this",
"->",
"allocateIds",
"(",
"[",
"$",
"key",
"]",
",",
"$",
"options",
")",
";",
"return",
"$",
"res",
... | Allocates an available ID to a given incomplete key
Key MUST be in an incomplete state (i.e. including a kind but not an ID
or name in its final pathElement).
This method will execute a service request.
Example:
```
$key = $datastore->key('Person');
$keyWithAllocatedId = $datastore->allocateId($key);
```
@see https... | [
"Allocates",
"an",
"available",
"ID",
"to",
"a",
"given",
"incomplete",
"key"
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Datastore/src/DatastoreClient.php#L476-L480 | train |
googleapis/google-cloud-php | Datastore/src/DatastoreClient.php | DatastoreClient.transaction | public function transaction(array $options = [])
{
$transaction = $this->operation->beginTransaction([
// if empty, force request to encode as {} rather than [].
'readWrite' => $this->pluck('transactionOptions', $options, false) ?: (object) []
], $options);
return ne... | php | public function transaction(array $options = [])
{
$transaction = $this->operation->beginTransaction([
// if empty, force request to encode as {} rather than [].
'readWrite' => $this->pluck('transactionOptions', $options, false) ?: (object) []
], $options);
return ne... | [
"public",
"function",
"transaction",
"(",
"array",
"$",
"options",
"=",
"[",
"]",
")",
"{",
"$",
"transaction",
"=",
"$",
"this",
"->",
"operation",
"->",
"beginTransaction",
"(",
"[",
"// if empty, force request to encode as {} rather than [].",
"'readWrite'",
"=>"... | Create a Transaction.
Example:
```
$transaction = $datastore->transaction();
```
@see https://cloud.google.com/datastore/docs/concepts/transactions Datastore Transactions
@see https://cloud.google.com/datastore/docs/reference/rest/v1/projects/beginTransaction beginTransaction
@codingStandardsIgnoreStart
@param array... | [
"Create",
"a",
"Transaction",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Datastore/src/DatastoreClient.php#L532-L544 | train |
googleapis/google-cloud-php | Datastore/src/DatastoreClient.php | DatastoreClient.readOnlyTransaction | public function readOnlyTransaction(array $options = [])
{
$transaction = $this->operation->beginTransaction([
// if empty, force request to encode as {} rather than [].
'readOnly' => $this->pluck('transactionOptions', $options, false) ?: (object) []
], $options);
re... | php | public function readOnlyTransaction(array $options = [])
{
$transaction = $this->operation->beginTransaction([
// if empty, force request to encode as {} rather than [].
'readOnly' => $this->pluck('transactionOptions', $options, false) ?: (object) []
], $options);
re... | [
"public",
"function",
"readOnlyTransaction",
"(",
"array",
"$",
"options",
"=",
"[",
"]",
")",
"{",
"$",
"transaction",
"=",
"$",
"this",
"->",
"operation",
"->",
"beginTransaction",
"(",
"[",
"// if empty, force request to encode as {} rather than [].",
"'readOnly'",... | Create a Read-Only Transaction.
Example:
```
$transaction = $datastore->readOnlyTransaction();
```
@see https://cloud.google.com/datastore/docs/concepts/transactions Datastore Transactions
@see https://cloud.google.com/datastore/docs/reference/rest/v1/projects/beginTransaction beginTransaction
@codingStandardsIgnore... | [
"Create",
"a",
"Read",
"-",
"Only",
"Transaction",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Datastore/src/DatastoreClient.php#L566-L578 | train |
googleapis/google-cloud-php | Datastore/src/DatastoreClient.php | DatastoreClient.insert | public function insert(EntityInterface $entity, array $options = [])
{
$res = $this->insertBatch([$entity], $options);
return $this->parseSingleMutationResult($res);
} | php | public function insert(EntityInterface $entity, array $options = [])
{
$res = $this->insertBatch([$entity], $options);
return $this->parseSingleMutationResult($res);
} | [
"public",
"function",
"insert",
"(",
"EntityInterface",
"$",
"entity",
",",
"array",
"$",
"options",
"=",
"[",
"]",
")",
"{",
"$",
"res",
"=",
"$",
"this",
"->",
"insertBatch",
"(",
"[",
"$",
"entity",
"]",
",",
"$",
"options",
")",
";",
"return",
... | Insert an entity
An entity with incomplete keys will be allocated an ID prior to insertion.
Insert by this method is non-transactional. If you need transaction
support, use {@see Google\Cloud\Datastore\Transaction::insert()}.
Example:
```
$key = $datastore->key('Person', 'Bob');
$entity = $datastore->entity($key, ['... | [
"Insert",
"an",
"entity"
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Datastore/src/DatastoreClient.php#L603-L607 | train |
googleapis/google-cloud-php | Datastore/src/DatastoreClient.php | DatastoreClient.update | public function update(EntityInterface $entity, array $options = [])
{
$res = $this->updateBatch([$entity], $options);
return $this->parseSingleMutationResult($res);
} | php | public function update(EntityInterface $entity, array $options = [])
{
$res = $this->updateBatch([$entity], $options);
return $this->parseSingleMutationResult($res);
} | [
"public",
"function",
"update",
"(",
"EntityInterface",
"$",
"entity",
",",
"array",
"$",
"options",
"=",
"[",
"]",
")",
"{",
"$",
"res",
"=",
"$",
"this",
"->",
"updateBatch",
"(",
"[",
"$",
"entity",
"]",
",",
"$",
"options",
")",
";",
"return",
... | Update an entity
Please note that updating a record in Cloud Datastore will replace the
existing record. Adding, editing or removing a single property is only
possible by first retrieving the entire entity in its existing state.
Update by this method is non-transactional. If you need transaction
support, use {@see Go... | [
"Update",
"an",
"entity"
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Datastore/src/DatastoreClient.php#L680-L684 | train |
googleapis/google-cloud-php | Datastore/src/DatastoreClient.php | DatastoreClient.upsert | public function upsert(EntityInterface $entity, array $options = [])
{
$res = $this->upsertBatch([$entity], $options);
return $this->parseSingleMutationResult($res);
} | php | public function upsert(EntityInterface $entity, array $options = [])
{
$res = $this->upsertBatch([$entity], $options);
return $this->parseSingleMutationResult($res);
} | [
"public",
"function",
"upsert",
"(",
"EntityInterface",
"$",
"entity",
",",
"array",
"$",
"options",
"=",
"[",
"]",
")",
"{",
"$",
"res",
"=",
"$",
"this",
"->",
"upsertBatch",
"(",
"[",
"$",
"entity",
"]",
",",
"$",
"options",
")",
";",
"return",
... | Upsert an entity
Upsert will create a record if one does not already exist, or overwrite
existing record if one already exists.
Please note that upserting a record in Cloud Datastore will replace the
existing record, if one exists. Adding, editing or removing a single
property is only possible by first retrieving the... | [
"Upsert",
"an",
"entity"
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Datastore/src/DatastoreClient.php#L767-L771 | train |
googleapis/google-cloud-php | Datastore/src/DatastoreClient.php | DatastoreClient.deleteBatch | public function deleteBatch(array $keys, array $options = [])
{
$options += [
'baseVersion' => null
];
$mutations = [];
foreach ($keys as $key) {
$mutations[] = $this->operation->mutation('delete', $key, Key::class, $options['baseVersion']);
}
... | php | public function deleteBatch(array $keys, array $options = [])
{
$options += [
'baseVersion' => null
];
$mutations = [];
foreach ($keys as $key) {
$mutations[] = $this->operation->mutation('delete', $key, Key::class, $options['baseVersion']);
}
... | [
"public",
"function",
"deleteBatch",
"(",
"array",
"$",
"keys",
",",
"array",
"$",
"options",
"=",
"[",
"]",
")",
"{",
"$",
"options",
"+=",
"[",
"'baseVersion'",
"=>",
"null",
"]",
";",
"$",
"mutations",
"=",
"[",
"]",
";",
"foreach",
"(",
"$",
"k... | Delete multiple entities
Deletion by this method is non-transactional. If you need transaction
support, use {@see Google\Cloud\Datastore\Transaction::deleteBatch()}.
Example:
```
$keys = [
$datastore->key('Person', 'Bob'),
$datastore->key('Person', 'John')
];
$datastore->deleteBatch($keys);
```
@see https://cloud.g... | [
"Delete",
"multiple",
"entities"
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Datastore/src/DatastoreClient.php#L883-L895 | train |
googleapis/google-cloud-php | Datastore/src/DatastoreClient.php | DatastoreClient.lookup | public function lookup(Key $key, array $options = [])
{
$res = $this->lookupBatch([$key], $options);
return (isset($res['found'][0]))
? $res['found'][0]
: null;
} | php | public function lookup(Key $key, array $options = [])
{
$res = $this->lookupBatch([$key], $options);
return (isset($res['found'][0]))
? $res['found'][0]
: null;
} | [
"public",
"function",
"lookup",
"(",
"Key",
"$",
"key",
",",
"array",
"$",
"options",
"=",
"[",
"]",
")",
"{",
"$",
"res",
"=",
"$",
"this",
"->",
"lookupBatch",
"(",
"[",
"$",
"key",
"]",
",",
"$",
"options",
")",
";",
"return",
"(",
"isset",
... | Retrieve an entity from the datastore
To lookup an entity inside a transaction, use
{@see Google\Cloud\Datastore\Transaction::lookup()}.
Example:
```
$key = $datastore->key('Person', 'Bob');
$entity = $datastore->lookup($key);
if (!is_null($entity)) {
echo $entity['firstName']; // 'Bob'
}
```
@see https://cloud.goo... | [
"Retrieve",
"an",
"entity",
"from",
"the",
"datastore"
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Datastore/src/DatastoreClient.php#L928-L935 | train |
googleapis/google-cloud-php | Datastore/src/DatastoreClient.php | DatastoreClient.parseSingleMutationResult | private function parseSingleMutationResult(array $res)
{
$mutationResult = $res['mutationResults'][0];
if (isset($mutationResult['conflictDetected']) && $mutationResult['conflictDetected']) {
throw new DomainException(
'A conflict was detected in the mutation. ' .
... | php | private function parseSingleMutationResult(array $res)
{
$mutationResult = $res['mutationResults'][0];
if (isset($mutationResult['conflictDetected']) && $mutationResult['conflictDetected']) {
throw new DomainException(
'A conflict was detected in the mutation. ' .
... | [
"private",
"function",
"parseSingleMutationResult",
"(",
"array",
"$",
"res",
")",
"{",
"$",
"mutationResult",
"=",
"$",
"res",
"[",
"'mutationResults'",
"]",
"[",
"0",
"]",
";",
"if",
"(",
"isset",
"(",
"$",
"mutationResult",
"[",
"'conflictDetected'",
"]",... | Handle mutation results
@codingStandardsIgnoreStart
@param array $res [MutationResult](https://cloud.google.com/datastore/reference/rest/v1/projects/commit#MutationResult)
@return string
@throws DomainException
@codingStandardsIgnoreEnd | [
"Handle",
"mutation",
"results"
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Datastore/src/DatastoreClient.php#L1123-L1136 | train |
googleapis/google-cloud-php | Bigtable/src/Admin/V2/ListInstancesResponse.php | ListInstancesResponse.setInstances | public function setInstances($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Bigtable\Admin\V2\Instance::class);
$this->instances = $arr;
return $this;
} | php | public function setInstances($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Bigtable\Admin\V2\Instance::class);
$this->instances = $arr;
return $this;
} | [
"public",
"function",
"setInstances",
"(",
"$",
"var",
")",
"{",
"$",
"arr",
"=",
"GPBUtil",
"::",
"checkRepeatedField",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Protobuf",
"\\",
"Internal",
"\\",
"GPBType",
"::",
"MESSAGE",
",",
"\\",
"Google",
"\\"... | The list of requested instances.
Generated from protobuf field <code>repeated .google.bigtable.admin.v2.Instance instances = 1;</code>
@param \Google\Cloud\Bigtable\Admin\V2\Instance[]|\Google\Protobuf\Internal\RepeatedField $var
@return $this | [
"The",
"list",
"of",
"requested",
"instances",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Bigtable/src/Admin/V2/ListInstancesResponse.php#L84-L90 | train |
googleapis/google-cloud-php | Datastore/src/Query/Query.php | Query.projection | public function projection($properties)
{
if (!is_array($properties)) {
$properties = [$properties];
}
foreach ($properties as $property) {
$this->query['projection'][] = [
'property' => $this->propertyName($property)
];
}
... | php | public function projection($properties)
{
if (!is_array($properties)) {
$properties = [$properties];
}
foreach ($properties as $property) {
$this->query['projection'][] = [
'property' => $this->propertyName($property)
];
}
... | [
"public",
"function",
"projection",
"(",
"$",
"properties",
")",
"{",
"if",
"(",
"!",
"is_array",
"(",
"$",
"properties",
")",
")",
"{",
"$",
"properties",
"=",
"[",
"$",
"properties",
"]",
";",
"}",
"foreach",
"(",
"$",
"properties",
"as",
"$",
"pro... | Set the Query Projection.
Accepts an array of properties. If set, only these properties will be
returned.
Example:
```
$query->projection(['firstName', 'lastName']);
```
@param array|string $properties The property or properties to include in
the result.
@return Query | [
"Set",
"the",
"Query",
"Projection",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Datastore/src/Query/Query.php#L165-L178 | train |
googleapis/google-cloud-php | Datastore/src/Query/Query.php | Query.kind | public function kind($kinds)
{
if (!is_array($kinds)) {
$kinds = [$kinds];
}
foreach ($kinds as $kind) {
$this->query['kind'][] = $this->propertyName($kind);
}
return $this;
} | php | public function kind($kinds)
{
if (!is_array($kinds)) {
$kinds = [$kinds];
}
foreach ($kinds as $kind) {
$this->query['kind'][] = $this->propertyName($kind);
}
return $this;
} | [
"public",
"function",
"kind",
"(",
"$",
"kinds",
")",
"{",
"if",
"(",
"!",
"is_array",
"(",
"$",
"kinds",
")",
")",
"{",
"$",
"kinds",
"=",
"[",
"$",
"kinds",
"]",
";",
"}",
"foreach",
"(",
"$",
"kinds",
"as",
"$",
"kind",
")",
"{",
"$",
"thi... | Set the Kind to query.
If empty, returns entities of all kinds. Must be set in order to filter
results. While you may supply as many kinds as you wish, datastore currently
only accepts one at a time.
Example:
```
$query->kind('Person');
```
@param array|string $kinds The kind or kinds to return. Only a single kind
i... | [
"Set",
"the",
"Kind",
"to",
"query",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Datastore/src/Query/Query.php#L213-L224 | train |
googleapis/google-cloud-php | Datastore/src/Query/Query.php | Query.filter | public function filter($property, $operator, $value)
{
if (!isset($this->query['filter']) || !isset($this->query['filter']['compositeFilter'])) {
$this->initializeFilter();
}
$this->query['filter']['compositeFilter']['filters'][] = [
'propertyFilter' => [
... | php | public function filter($property, $operator, $value)
{
if (!isset($this->query['filter']) || !isset($this->query['filter']['compositeFilter'])) {
$this->initializeFilter();
}
$this->query['filter']['compositeFilter']['filters'][] = [
'propertyFilter' => [
... | [
"public",
"function",
"filter",
"(",
"$",
"property",
",",
"$",
"operator",
",",
"$",
"value",
")",
"{",
"if",
"(",
"!",
"isset",
"(",
"$",
"this",
"->",
"query",
"[",
"'filter'",
"]",
")",
"||",
"!",
"isset",
"(",
"$",
"this",
"->",
"query",
"["... | Add a filter to the query.
If the top-level filter is specified as a propertyFilter, it will be replaced.
Any composite filters will be preserved and the new filter will be added.
Example:
```
$query->filter('firstName', '=', 'Bob')
->filter('lastName', '=', 'Testguy');
```
@see https://cloud.google.com/datastore/re... | [
"Add",
"a",
"filter",
"to",
"the",
"query",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Datastore/src/Query/Query.php#L250-L265 | train |
googleapis/google-cloud-php | Datastore/src/Query/Query.php | Query.order | public function order($property, $direction = self::ORDER_DEFAULT)
{
$this->query['order'][] = [
'property' => $this->propertyName($property),
'direction' => $direction
];
return $this;
} | php | public function order($property, $direction = self::ORDER_DEFAULT)
{
$this->query['order'][] = [
'property' => $this->propertyName($property),
'direction' => $direction
];
return $this;
} | [
"public",
"function",
"order",
"(",
"$",
"property",
",",
"$",
"direction",
"=",
"self",
"::",
"ORDER_DEFAULT",
")",
"{",
"$",
"this",
"->",
"query",
"[",
"'order'",
"]",
"[",
"]",
"=",
"[",
"'property'",
"=>",
"$",
"this",
"->",
"propertyName",
"(",
... | Specify an order for the query.
Example:
```
$query->order('birthDate', Query::ORDER_DESCENDING);
```
@see https://cloud.google.com/datastore/reference/rest/v1/projects/runQuery#Direction Allowed Directions
@param string $property The property to order by.
@param string $direction [optional] The direction to order i... | [
"Specify",
"an",
"order",
"for",
"the",
"query",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Datastore/src/Query/Query.php#L315-L323 | train |
googleapis/google-cloud-php | Datastore/src/Query/Query.php | Query.distinctOn | public function distinctOn($property)
{
if (!is_array($property)) {
$property = [$property];
}
foreach ($property as $prop) {
$this->query['distinctOn'][] = $this->propertyName($prop);
}
return $this;
} | php | public function distinctOn($property)
{
if (!is_array($property)) {
$property = [$property];
}
foreach ($property as $prop) {
$this->query['distinctOn'][] = $this->propertyName($prop);
}
return $this;
} | [
"public",
"function",
"distinctOn",
"(",
"$",
"property",
")",
"{",
"if",
"(",
"!",
"is_array",
"(",
"$",
"property",
")",
")",
"{",
"$",
"property",
"=",
"[",
"$",
"property",
"]",
";",
"}",
"foreach",
"(",
"$",
"property",
"as",
"$",
"prop",
")",... | The properties to make distinct.
The query results will contain the first result for each distinct
combination of values for the given properties (if empty, all results
are returned).
Example:
```
$query->distinctOn('lastName');
```
@param array|string $property The property or properties to make distinct.
@return Q... | [
"The",
"properties",
"to",
"make",
"distinct",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Datastore/src/Query/Query.php#L340-L351 | train |
googleapis/google-cloud-php | Datastore/src/Query/Query.php | Query.mapOperator | private function mapOperator($operator)
{
if (array_key_exists($operator, $this->shortOperators)) {
$operator = $this->shortOperators[$operator];
}
if (!in_array($operator, $this->allowedOperators)) {
throw new InvalidArgumentException(sprintf(
'Inval... | php | private function mapOperator($operator)
{
if (array_key_exists($operator, $this->shortOperators)) {
$operator = $this->shortOperators[$operator];
}
if (!in_array($operator, $this->allowedOperators)) {
throw new InvalidArgumentException(sprintf(
'Inval... | [
"private",
"function",
"mapOperator",
"(",
"$",
"operator",
")",
"{",
"if",
"(",
"array_key_exists",
"(",
"$",
"operator",
",",
"$",
"this",
"->",
"shortOperators",
")",
")",
"{",
"$",
"operator",
"=",
"$",
"this",
"->",
"shortOperators",
"[",
"$",
"oper... | Convert given operator to API-compatible operator.
@param string $operator
@return string | [
"Convert",
"given",
"operator",
"to",
"API",
"-",
"compatible",
"operator",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Datastore/src/Query/Query.php#L518-L533 | train |
googleapis/google-cloud-php | Scheduler/src/V1/ListJobsResponse.php | ListJobsResponse.setJobs | public function setJobs($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Scheduler\V1\Job::class);
$this->jobs = $arr;
return $this;
} | php | public function setJobs($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Scheduler\V1\Job::class);
$this->jobs = $arr;
return $this;
} | [
"public",
"function",
"setJobs",
"(",
"$",
"var",
")",
"{",
"$",
"arr",
"=",
"GPBUtil",
"::",
"checkRepeatedField",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Protobuf",
"\\",
"Internal",
"\\",
"GPBType",
"::",
"MESSAGE",
",",
"\\",
"Google",
"\\",
"... | The list of jobs.
Generated from protobuf field <code>repeated .google.cloud.scheduler.v1.Job jobs = 1;</code>
@param \Google\Cloud\Scheduler\V1\Job[]|\Google\Protobuf\Internal\RepeatedField $var
@return $this | [
"The",
"list",
"of",
"jobs",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Scheduler/src/V1/ListJobsResponse.php#L76-L82 | train |
googleapis/google-cloud-php | Spanner/src/V1/CommitRequest.php | CommitRequest.setMutations | public function setMutations($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Spanner\V1\Mutation::class);
$this->mutations = $arr;
return $this;
} | php | public function setMutations($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Spanner\V1\Mutation::class);
$this->mutations = $arr;
return $this;
} | [
"public",
"function",
"setMutations",
"(",
"$",
"var",
")",
"{",
"$",
"arr",
"=",
"GPBUtil",
"::",
"checkRepeatedField",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Protobuf",
"\\",
"Internal",
"\\",
"GPBType",
"::",
"MESSAGE",
",",
"\\",
"Google",
"\\"... | The mutations to be executed when this transaction commits. All
mutations are applied atomically, in the order they appear in
this list.
Generated from protobuf field <code>repeated .google.spanner.v1.Mutation mutations = 4;</code>
@param \Google\Cloud\Spanner\V1\Mutation[]|\Google\Protobuf\Internal\RepeatedField $var... | [
"The",
"mutations",
"to",
"be",
"executed",
"when",
"this",
"transaction",
"commits",
".",
"All",
"mutations",
"are",
"applied",
"atomically",
"in",
"the",
"order",
"they",
"appear",
"in",
"this",
"list",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Spanner/src/V1/CommitRequest.php#L181-L187 | train |
googleapis/google-cloud-php | Dialogflow/src/V2/OutputAudioConfig.php | OutputAudioConfig.setAudioEncoding | public function setAudioEncoding($var)
{
GPBUtil::checkEnum($var, \Google\Cloud\Dialogflow\V2\OutputAudioEncoding::class);
$this->audio_encoding = $var;
return $this;
} | php | public function setAudioEncoding($var)
{
GPBUtil::checkEnum($var, \Google\Cloud\Dialogflow\V2\OutputAudioEncoding::class);
$this->audio_encoding = $var;
return $this;
} | [
"public",
"function",
"setAudioEncoding",
"(",
"$",
"var",
")",
"{",
"GPBUtil",
"::",
"checkEnum",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Cloud",
"\\",
"Dialogflow",
"\\",
"V2",
"\\",
"OutputAudioEncoding",
"::",
"class",
")",
";",
"$",
"this",
"->... | Required. Audio encoding of the synthesized audio content.
Generated from protobuf field <code>.google.cloud.dialogflow.v2.OutputAudioEncoding audio_encoding = 1;</code>
@param int $var
@return $this | [
"Required",
".",
"Audio",
"encoding",
"of",
"the",
"synthesized",
"audio",
"content",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Dialogflow/src/V2/OutputAudioConfig.php#L82-L88 | train |
googleapis/google-cloud-php | Dialogflow/src/V2/OutputAudioConfig.php | OutputAudioConfig.setSynthesizeSpeechConfig | public function setSynthesizeSpeechConfig($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Dialogflow\V2\SynthesizeSpeechConfig::class);
$this->synthesize_speech_config = $var;
return $this;
} | php | public function setSynthesizeSpeechConfig($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Dialogflow\V2\SynthesizeSpeechConfig::class);
$this->synthesize_speech_config = $var;
return $this;
} | [
"public",
"function",
"setSynthesizeSpeechConfig",
"(",
"$",
"var",
")",
"{",
"GPBUtil",
"::",
"checkMessage",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Cloud",
"\\",
"Dialogflow",
"\\",
"V2",
"\\",
"SynthesizeSpeechConfig",
"::",
"class",
")",
";",
"$",
... | Optional. Configuration of how speech should be synthesized.
Generated from protobuf field <code>.google.cloud.dialogflow.v2.SynthesizeSpeechConfig synthesize_speech_config = 3;</code>
@param \Google\Cloud\Dialogflow\V2\SynthesizeSpeechConfig $var
@return $this | [
"Optional",
".",
"Configuration",
"of",
"how",
"speech",
"should",
"be",
"synthesized",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Dialogflow/src/V2/OutputAudioConfig.php#L142-L148 | train |
googleapis/google-cloud-php | AutoMl/src/V1beta1/TextClassificationDatasetMetadata.php | TextClassificationDatasetMetadata.setClassificationType | public function setClassificationType($var)
{
GPBUtil::checkEnum($var, \Google\Cloud\AutoMl\V1beta1\ClassificationType::class);
$this->classification_type = $var;
return $this;
} | php | public function setClassificationType($var)
{
GPBUtil::checkEnum($var, \Google\Cloud\AutoMl\V1beta1\ClassificationType::class);
$this->classification_type = $var;
return $this;
} | [
"public",
"function",
"setClassificationType",
"(",
"$",
"var",
")",
"{",
"GPBUtil",
"::",
"checkEnum",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Cloud",
"\\",
"AutoMl",
"\\",
"V1beta1",
"\\",
"ClassificationType",
"::",
"class",
")",
";",
"$",
"this",
... | Required.
Type of the classification problem.
Generated from protobuf field <code>.google.cloud.automl.v1beta1.ClassificationType classification_type = 1;</code>
@param int $var
@return $this | [
"Required",
".",
"Type",
"of",
"the",
"classification",
"problem",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/AutoMl/src/V1beta1/TextClassificationDatasetMetadata.php#L62-L68 | train |
googleapis/google-cloud-php | Vision/src/V1/TextAnnotation/TextProperty.php | TextProperty.setDetectedLanguages | public function setDetectedLanguages($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Vision\V1\TextAnnotation\DetectedLanguage::class);
$this->detected_languages = $arr;
return $this;
} | php | public function setDetectedLanguages($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Vision\V1\TextAnnotation\DetectedLanguage::class);
$this->detected_languages = $arr;
return $this;
} | [
"public",
"function",
"setDetectedLanguages",
"(",
"$",
"var",
")",
"{",
"$",
"arr",
"=",
"GPBUtil",
"::",
"checkRepeatedField",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Protobuf",
"\\",
"Internal",
"\\",
"GPBType",
"::",
"MESSAGE",
",",
"\\",
"Google"... | A list of detected languages together with confidence.
Generated from protobuf field <code>repeated .google.cloud.vision.v1.TextAnnotation.DetectedLanguage detected_languages = 1;</code>
@param \Google\Cloud\Vision\V1\TextAnnotation\DetectedLanguage[]|\Google\Protobuf\Internal\RepeatedField $var
@return $this | [
"A",
"list",
"of",
"detected",
"languages",
"together",
"with",
"confidence",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Vision/src/V1/TextAnnotation/TextProperty.php#L66-L72 | train |
googleapis/google-cloud-php | Vision/src/V1/TextAnnotation/TextProperty.php | TextProperty.setDetectedBreak | public function setDetectedBreak($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Vision\V1\TextAnnotation_DetectedBreak::class);
$this->detected_break = $var;
return $this;
} | php | public function setDetectedBreak($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Vision\V1\TextAnnotation_DetectedBreak::class);
$this->detected_break = $var;
return $this;
} | [
"public",
"function",
"setDetectedBreak",
"(",
"$",
"var",
")",
"{",
"GPBUtil",
"::",
"checkMessage",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Cloud",
"\\",
"Vision",
"\\",
"V1",
"\\",
"TextAnnotation_DetectedBreak",
"::",
"class",
")",
";",
"$",
"this... | Detected start or end of a text segment.
Generated from protobuf field <code>.google.cloud.vision.v1.TextAnnotation.DetectedBreak detected_break = 2;</code>
@param \Google\Cloud\Vision\V1\TextAnnotation\DetectedBreak $var
@return $this | [
"Detected",
"start",
"or",
"end",
"of",
"a",
"text",
"segment",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Vision/src/V1/TextAnnotation/TextProperty.php#L92-L98 | train |
googleapis/google-cloud-php | Vision/src/V1/AnnotateImageResponse.php | AnnotateImageResponse.setLandmarkAnnotations | public function setLandmarkAnnotations($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Vision\V1\EntityAnnotation::class);
$this->landmark_annotations = $arr;
return $this;
} | php | public function setLandmarkAnnotations($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Vision\V1\EntityAnnotation::class);
$this->landmark_annotations = $arr;
return $this;
} | [
"public",
"function",
"setLandmarkAnnotations",
"(",
"$",
"var",
")",
"{",
"$",
"arr",
"=",
"GPBUtil",
"::",
"checkRepeatedField",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Protobuf",
"\\",
"Internal",
"\\",
"GPBType",
"::",
"MESSAGE",
",",
"\\",
"Googl... | If present, landmark detection has completed successfully.
Generated from protobuf field <code>repeated .google.cloud.vision.v1.EntityAnnotation landmark_annotations = 2;</code>
@param \Google\Cloud\Vision\V1\EntityAnnotation[]|\Google\Protobuf\Internal\RepeatedField $var
@return $this | [
"If",
"present",
"landmark",
"detection",
"has",
"completed",
"successfully",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Vision/src/V1/AnnotateImageResponse.php#L202-L208 | train |
googleapis/google-cloud-php | Vision/src/V1/AnnotateImageResponse.php | AnnotateImageResponse.setLogoAnnotations | public function setLogoAnnotations($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Vision\V1\EntityAnnotation::class);
$this->logo_annotations = $arr;
return $this;
} | php | public function setLogoAnnotations($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Vision\V1\EntityAnnotation::class);
$this->logo_annotations = $arr;
return $this;
} | [
"public",
"function",
"setLogoAnnotations",
"(",
"$",
"var",
")",
"{",
"$",
"arr",
"=",
"GPBUtil",
"::",
"checkRepeatedField",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Protobuf",
"\\",
"Internal",
"\\",
"GPBType",
"::",
"MESSAGE",
",",
"\\",
"Google",
... | If present, logo detection has completed successfully.
Generated from protobuf field <code>repeated .google.cloud.vision.v1.EntityAnnotation logo_annotations = 3;</code>
@param \Google\Cloud\Vision\V1\EntityAnnotation[]|\Google\Protobuf\Internal\RepeatedField $var
@return $this | [
"If",
"present",
"logo",
"detection",
"has",
"completed",
"successfully",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Vision/src/V1/AnnotateImageResponse.php#L228-L234 | train |
googleapis/google-cloud-php | Vision/src/V1/AnnotateImageResponse.php | AnnotateImageResponse.setLabelAnnotations | public function setLabelAnnotations($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Vision\V1\EntityAnnotation::class);
$this->label_annotations = $arr;
return $this;
} | php | public function setLabelAnnotations($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Vision\V1\EntityAnnotation::class);
$this->label_annotations = $arr;
return $this;
} | [
"public",
"function",
"setLabelAnnotations",
"(",
"$",
"var",
")",
"{",
"$",
"arr",
"=",
"GPBUtil",
"::",
"checkRepeatedField",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Protobuf",
"\\",
"Internal",
"\\",
"GPBType",
"::",
"MESSAGE",
",",
"\\",
"Google",... | If present, label detection has completed successfully.
Generated from protobuf field <code>repeated .google.cloud.vision.v1.EntityAnnotation label_annotations = 4;</code>
@param \Google\Cloud\Vision\V1\EntityAnnotation[]|\Google\Protobuf\Internal\RepeatedField $var
@return $this | [
"If",
"present",
"label",
"detection",
"has",
"completed",
"successfully",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Vision/src/V1/AnnotateImageResponse.php#L254-L260 | train |
googleapis/google-cloud-php | Vision/src/V1/AnnotateImageResponse.php | AnnotateImageResponse.setLocalizedObjectAnnotations | public function setLocalizedObjectAnnotations($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Vision\V1\LocalizedObjectAnnotation::class);
$this->localized_object_annotations = $arr;
return $this;
} | php | public function setLocalizedObjectAnnotations($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Vision\V1\LocalizedObjectAnnotation::class);
$this->localized_object_annotations = $arr;
return $this;
} | [
"public",
"function",
"setLocalizedObjectAnnotations",
"(",
"$",
"var",
")",
"{",
"$",
"arr",
"=",
"GPBUtil",
"::",
"checkRepeatedField",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Protobuf",
"\\",
"Internal",
"\\",
"GPBType",
"::",
"MESSAGE",
",",
"\\",
... | If present, localized object detection has completed successfully.
This will be sorted descending by confidence score.
Generated from protobuf field <code>repeated .google.cloud.vision.v1.LocalizedObjectAnnotation localized_object_annotations = 22;</code>
@param \Google\Cloud\Vision\V1\LocalizedObjectAnnotation[]|\Goo... | [
"If",
"present",
"localized",
"object",
"detection",
"has",
"completed",
"successfully",
".",
"This",
"will",
"be",
"sorted",
"descending",
"by",
"confidence",
"score",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Vision/src/V1/AnnotateImageResponse.php#L282-L288 | train |
googleapis/google-cloud-php | Vision/src/V1/AnnotateImageResponse.php | AnnotateImageResponse.setSafeSearchAnnotation | public function setSafeSearchAnnotation($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Vision\V1\SafeSearchAnnotation::class);
$this->safe_search_annotation = $var;
return $this;
} | php | public function setSafeSearchAnnotation($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Vision\V1\SafeSearchAnnotation::class);
$this->safe_search_annotation = $var;
return $this;
} | [
"public",
"function",
"setSafeSearchAnnotation",
"(",
"$",
"var",
")",
"{",
"GPBUtil",
"::",
"checkMessage",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Cloud",
"\\",
"Vision",
"\\",
"V1",
"\\",
"SafeSearchAnnotation",
"::",
"class",
")",
";",
"$",
"this"... | If present, safe-search annotation has completed successfully.
Generated from protobuf field <code>.google.cloud.vision.v1.SafeSearchAnnotation safe_search_annotation = 6;</code>
@param \Google\Cloud\Vision\V1\SafeSearchAnnotation $var
@return $this | [
"If",
"present",
"safe",
"-",
"search",
"annotation",
"has",
"completed",
"successfully",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Vision/src/V1/AnnotateImageResponse.php#L366-L372 | train |
googleapis/google-cloud-php | Vision/src/V1/AnnotateImageResponse.php | AnnotateImageResponse.setImagePropertiesAnnotation | public function setImagePropertiesAnnotation($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Vision\V1\ImageProperties::class);
$this->image_properties_annotation = $var;
return $this;
} | php | public function setImagePropertiesAnnotation($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Vision\V1\ImageProperties::class);
$this->image_properties_annotation = $var;
return $this;
} | [
"public",
"function",
"setImagePropertiesAnnotation",
"(",
"$",
"var",
")",
"{",
"GPBUtil",
"::",
"checkMessage",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Cloud",
"\\",
"Vision",
"\\",
"V1",
"\\",
"ImageProperties",
"::",
"class",
")",
";",
"$",
"this"... | If present, image properties were extracted successfully.
Generated from protobuf field <code>.google.cloud.vision.v1.ImageProperties image_properties_annotation = 8;</code>
@param \Google\Cloud\Vision\V1\ImageProperties $var
@return $this | [
"If",
"present",
"image",
"properties",
"were",
"extracted",
"successfully",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Vision/src/V1/AnnotateImageResponse.php#L392-L398 | train |
googleapis/google-cloud-php | Vision/src/V1/AnnotateImageResponse.php | AnnotateImageResponse.setCropHintsAnnotation | public function setCropHintsAnnotation($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Vision\V1\CropHintsAnnotation::class);
$this->crop_hints_annotation = $var;
return $this;
} | php | public function setCropHintsAnnotation($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Vision\V1\CropHintsAnnotation::class);
$this->crop_hints_annotation = $var;
return $this;
} | [
"public",
"function",
"setCropHintsAnnotation",
"(",
"$",
"var",
")",
"{",
"GPBUtil",
"::",
"checkMessage",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Cloud",
"\\",
"Vision",
"\\",
"V1",
"\\",
"CropHintsAnnotation",
"::",
"class",
")",
";",
"$",
"this",
... | If present, crop hints have completed successfully.
Generated from protobuf field <code>.google.cloud.vision.v1.CropHintsAnnotation crop_hints_annotation = 11;</code>
@param \Google\Cloud\Vision\V1\CropHintsAnnotation $var
@return $this | [
"If",
"present",
"crop",
"hints",
"have",
"completed",
"successfully",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Vision/src/V1/AnnotateImageResponse.php#L418-L424 | train |
googleapis/google-cloud-php | Vision/src/V1/AnnotateImageResponse.php | AnnotateImageResponse.setWebDetection | public function setWebDetection($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Vision\V1\WebDetection::class);
$this->web_detection = $var;
return $this;
} | php | public function setWebDetection($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Vision\V1\WebDetection::class);
$this->web_detection = $var;
return $this;
} | [
"public",
"function",
"setWebDetection",
"(",
"$",
"var",
")",
"{",
"GPBUtil",
"::",
"checkMessage",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Cloud",
"\\",
"Vision",
"\\",
"V1",
"\\",
"WebDetection",
"::",
"class",
")",
";",
"$",
"this",
"->",
"web... | If present, web detection has completed successfully.
Generated from protobuf field <code>.google.cloud.vision.v1.WebDetection web_detection = 13;</code>
@param \Google\Cloud\Vision\V1\WebDetection $var
@return $this | [
"If",
"present",
"web",
"detection",
"has",
"completed",
"successfully",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Vision/src/V1/AnnotateImageResponse.php#L444-L450 | train |
googleapis/google-cloud-php | Vision/src/V1/AnnotateImageResponse.php | AnnotateImageResponse.setProductSearchResults | public function setProductSearchResults($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Vision\V1\ProductSearchResults::class);
$this->product_search_results = $var;
return $this;
} | php | public function setProductSearchResults($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Vision\V1\ProductSearchResults::class);
$this->product_search_results = $var;
return $this;
} | [
"public",
"function",
"setProductSearchResults",
"(",
"$",
"var",
")",
"{",
"GPBUtil",
"::",
"checkMessage",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Cloud",
"\\",
"Vision",
"\\",
"V1",
"\\",
"ProductSearchResults",
"::",
"class",
")",
";",
"$",
"this"... | If present, product search has completed successfully.
Generated from protobuf field <code>.google.cloud.vision.v1.ProductSearchResults product_search_results = 14;</code>
@param \Google\Cloud\Vision\V1\ProductSearchResults $var
@return $this | [
"If",
"present",
"product",
"search",
"has",
"completed",
"successfully",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Vision/src/V1/AnnotateImageResponse.php#L470-L476 | train |
googleapis/google-cloud-php | Vision/src/V1/AnnotateImageResponse.php | AnnotateImageResponse.setContext | public function setContext($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Vision\V1\ImageAnnotationContext::class);
$this->context = $var;
return $this;
} | php | public function setContext($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Vision\V1\ImageAnnotationContext::class);
$this->context = $var;
return $this;
} | [
"public",
"function",
"setContext",
"(",
"$",
"var",
")",
"{",
"GPBUtil",
"::",
"checkMessage",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Cloud",
"\\",
"Vision",
"\\",
"V1",
"\\",
"ImageAnnotationContext",
"::",
"class",
")",
";",
"$",
"this",
"->",
... | If present, contextual information is needed to understand where this image
comes from.
Generated from protobuf field <code>.google.cloud.vision.v1.ImageAnnotationContext context = 21;</code>
@param \Google\Cloud\Vision\V1\ImageAnnotationContext $var
@return $this | [
"If",
"present",
"contextual",
"information",
"is",
"needed",
"to",
"understand",
"where",
"this",
"image",
"comes",
"from",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Vision/src/V1/AnnotateImageResponse.php#L528-L534 | train |
googleapis/google-cloud-php | Datastore/src/DatastoreSessionHandler.php | DatastoreSessionHandler.open | public function open($savePath, $sessionName)
{
$this->kind = $sessionName;
if (preg_match(self::NAMESPACE_ALLOWED_PATTERN, $savePath) !== 1 ||
preg_match(self::NAMESPACE_RESERVED_PATTERN, $savePath) === 1) {
throw new InvalidArgumentException(
sprintf('The gi... | php | public function open($savePath, $sessionName)
{
$this->kind = $sessionName;
if (preg_match(self::NAMESPACE_ALLOWED_PATTERN, $savePath) !== 1 ||
preg_match(self::NAMESPACE_RESERVED_PATTERN, $savePath) === 1) {
throw new InvalidArgumentException(
sprintf('The gi... | [
"public",
"function",
"open",
"(",
"$",
"savePath",
",",
"$",
"sessionName",
")",
"{",
"$",
"this",
"->",
"kind",
"=",
"$",
"sessionName",
";",
"if",
"(",
"preg_match",
"(",
"self",
"::",
"NAMESPACE_ALLOWED_PATTERN",
",",
"$",
"savePath",
")",
"!==",
"1"... | Start a session, by creating a transaction for the later `write`.
@param string $savePath The value of `session.save_path` setting will be
used here. It will use this value as the Datastore namespaceId.
@param string $sessionName The value of `session.name` setting will be
used here. It will use this value as the Data... | [
"Start",
"a",
"session",
"by",
"creating",
"a",
"transaction",
"for",
"the",
"later",
"write",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Datastore/src/DatastoreSessionHandler.php#L186-L198 | train |
googleapis/google-cloud-php | Datastore/src/DatastoreSessionHandler.php | DatastoreSessionHandler.read | public function read($id)
{
try {
$key = $this->datastore->key(
$this->kind,
$id,
['namespaceId' => $this->namespaceId]
);
$entity = $this->transaction->lookup($key);
if ($entity !== null && isset($entity['data']... | php | public function read($id)
{
try {
$key = $this->datastore->key(
$this->kind,
$id,
['namespaceId' => $this->namespaceId]
);
$entity = $this->transaction->lookup($key);
if ($entity !== null && isset($entity['data']... | [
"public",
"function",
"read",
"(",
"$",
"id",
")",
"{",
"try",
"{",
"$",
"key",
"=",
"$",
"this",
"->",
"datastore",
"->",
"key",
"(",
"$",
"this",
"->",
"kind",
",",
"$",
"id",
",",
"[",
"'namespaceId'",
"=>",
"$",
"this",
"->",
"namespaceId",
"... | Read the session data from Cloud Datastore. | [
"Read",
"the",
"session",
"data",
"from",
"Cloud",
"Datastore",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Datastore/src/DatastoreSessionHandler.php#L211-L230 | train |
googleapis/google-cloud-php | Datastore/src/DatastoreSessionHandler.php | DatastoreSessionHandler.write | public function write($id, $data)
{
try {
$key = $this->datastore->key(
$this->kind,
$id,
['namespaceId' => $this->namespaceId]
);
$entity = $this->datastore->entity(
$key,
[
... | php | public function write($id, $data)
{
try {
$key = $this->datastore->key(
$this->kind,
$id,
['namespaceId' => $this->namespaceId]
);
$entity = $this->datastore->entity(
$key,
[
... | [
"public",
"function",
"write",
"(",
"$",
"id",
",",
"$",
"data",
")",
"{",
"try",
"{",
"$",
"key",
"=",
"$",
"this",
"->",
"datastore",
"->",
"key",
"(",
"$",
"this",
"->",
"kind",
",",
"$",
"id",
",",
"[",
"'namespaceId'",
"=>",
"$",
"this",
"... | Write the session data to Cloud Datastore.
@param string $id Identifier used to construct a {@see \Google\Cloud\Datastore\Key}
for the {@see \Google\Cloud\Datastore\Entity} to be written.
@param string $data The session data to write to the {@see \Google\Cloud\Datastore\Entity}.
@return bool | [
"Write",
"the",
"session",
"data",
"to",
"Cloud",
"Datastore",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Datastore/src/DatastoreSessionHandler.php#L240-L266 | train |
googleapis/google-cloud-php | Datastore/src/DatastoreSessionHandler.php | DatastoreSessionHandler.destroy | public function destroy($id)
{
try {
$key = $this->datastore->key(
$this->kind,
$id,
['namespaceId' => $this->namespaceId]
);
$this->transaction->delete($key);
$this->transaction->commit();
} catch (Excep... | php | public function destroy($id)
{
try {
$key = $this->datastore->key(
$this->kind,
$id,
['namespaceId' => $this->namespaceId]
);
$this->transaction->delete($key);
$this->transaction->commit();
} catch (Excep... | [
"public",
"function",
"destroy",
"(",
"$",
"id",
")",
"{",
"try",
"{",
"$",
"key",
"=",
"$",
"this",
"->",
"datastore",
"->",
"key",
"(",
"$",
"this",
"->",
"kind",
",",
"$",
"id",
",",
"[",
"'namespaceId'",
"=>",
"$",
"this",
"->",
"namespaceId",
... | Delete the session data from Cloud Datastore. | [
"Delete",
"the",
"session",
"data",
"from",
"Cloud",
"Datastore",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Datastore/src/DatastoreSessionHandler.php#L271-L289 | train |
googleapis/google-cloud-php | Datastore/src/DatastoreSessionHandler.php | DatastoreSessionHandler.gc | public function gc($maxlifetime)
{
if ($this->gcLimit === 0) {
return true;
}
try {
$query = $this->datastore->query()
->kind($this->kind)
->filter('t', '<', time() - $maxlifetime)
->order('t')
->keysOnly... | php | public function gc($maxlifetime)
{
if ($this->gcLimit === 0) {
return true;
}
try {
$query = $this->datastore->query()
->kind($this->kind)
->filter('t', '<', time() - $maxlifetime)
->order('t')
->keysOnly... | [
"public",
"function",
"gc",
"(",
"$",
"maxlifetime",
")",
"{",
"if",
"(",
"$",
"this",
"->",
"gcLimit",
"===",
"0",
")",
"{",
"return",
"true",
";",
"}",
"try",
"{",
"$",
"query",
"=",
"$",
"this",
"->",
"datastore",
"->",
"query",
"(",
")",
"->"... | Delete the old session data from Cloud Datastore. | [
"Delete",
"the",
"old",
"session",
"data",
"from",
"Cloud",
"Datastore",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Datastore/src/DatastoreSessionHandler.php#L294-L326 | train |
googleapis/google-cloud-php | Vision/src/V1/BoundingPoly.php | BoundingPoly.setVertices | public function setVertices($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Vision\V1\Vertex::class);
$this->vertices = $arr;
return $this;
} | php | public function setVertices($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Vision\V1\Vertex::class);
$this->vertices = $arr;
return $this;
} | [
"public",
"function",
"setVertices",
"(",
"$",
"var",
")",
"{",
"$",
"arr",
"=",
"GPBUtil",
"::",
"checkRepeatedField",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Protobuf",
"\\",
"Internal",
"\\",
"GPBType",
"::",
"MESSAGE",
",",
"\\",
"Google",
"\\",... | The bounding polygon vertices.
Generated from protobuf field <code>repeated .google.cloud.vision.v1.Vertex vertices = 1;</code>
@param \Google\Cloud\Vision\V1\Vertex[]|\Google\Protobuf\Internal\RepeatedField $var
@return $this | [
"The",
"bounding",
"polygon",
"vertices",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Vision/src/V1/BoundingPoly.php#L66-L72 | train |
googleapis/google-cloud-php | Vision/src/V1/BoundingPoly.php | BoundingPoly.setNormalizedVertices | public function setNormalizedVertices($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Vision\V1\NormalizedVertex::class);
$this->normalized_vertices = $arr;
return $this;
} | php | public function setNormalizedVertices($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Vision\V1\NormalizedVertex::class);
$this->normalized_vertices = $arr;
return $this;
} | [
"public",
"function",
"setNormalizedVertices",
"(",
"$",
"var",
")",
"{",
"$",
"arr",
"=",
"GPBUtil",
"::",
"checkRepeatedField",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Protobuf",
"\\",
"Internal",
"\\",
"GPBType",
"::",
"MESSAGE",
",",
"\\",
"Google... | The bounding polygon normalized vertices.
Generated from protobuf field <code>repeated .google.cloud.vision.v1.NormalizedVertex normalized_vertices = 2;</code>
@param \Google\Cloud\Vision\V1\NormalizedVertex[]|\Google\Protobuf\Internal\RepeatedField $var
@return $this | [
"The",
"bounding",
"polygon",
"normalized",
"vertices",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Vision/src/V1/BoundingPoly.php#L92-L98 | train |
googleapis/google-cloud-php | Vision/src/V1/FaceAnnotation.php | FaceAnnotation.setLandmarks | public function setLandmarks($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Vision\V1\FaceAnnotation\Landmark::class);
$this->landmarks = $arr;
return $this;
} | php | public function setLandmarks($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Vision\V1\FaceAnnotation\Landmark::class);
$this->landmarks = $arr;
return $this;
} | [
"public",
"function",
"setLandmarks",
"(",
"$",
"var",
")",
"{",
"$",
"arr",
"=",
"GPBUtil",
"::",
"checkRepeatedField",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Protobuf",
"\\",
"Internal",
"\\",
"GPBType",
"::",
"MESSAGE",
",",
"\\",
"Google",
"\\"... | Detected face landmarks.
Generated from protobuf field <code>repeated .google.cloud.vision.v1.FaceAnnotation.Landmark landmarks = 3;</code>
@param \Google\Cloud\Vision\V1\FaceAnnotation\Landmark[]|\Google\Protobuf\Internal\RepeatedField $var
@return $this | [
"Detected",
"face",
"landmarks",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Vision/src/V1/FaceAnnotation.php#L276-L282 | train |
googleapis/google-cloud-php | Vision/src/V1/FaceAnnotation.php | FaceAnnotation.setJoyLikelihood | public function setJoyLikelihood($var)
{
GPBUtil::checkEnum($var, \Google\Cloud\Vision\V1\Likelihood::class);
$this->joy_likelihood = $var;
return $this;
} | php | public function setJoyLikelihood($var)
{
GPBUtil::checkEnum($var, \Google\Cloud\Vision\V1\Likelihood::class);
$this->joy_likelihood = $var;
return $this;
} | [
"public",
"function",
"setJoyLikelihood",
"(",
"$",
"var",
")",
"{",
"GPBUtil",
"::",
"checkEnum",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Cloud",
"\\",
"Vision",
"\\",
"V1",
"\\",
"Likelihood",
"::",
"class",
")",
";",
"$",
"this",
"->",
"joy_lik... | Joy likelihood.
Generated from protobuf field <code>.google.cloud.vision.v1.Likelihood joy_likelihood = 9;</code>
@param int $var
@return $this | [
"Joy",
"likelihood",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Vision/src/V1/FaceAnnotation.php#L442-L448 | train |
googleapis/google-cloud-php | Vision/src/V1/FaceAnnotation.php | FaceAnnotation.setSorrowLikelihood | public function setSorrowLikelihood($var)
{
GPBUtil::checkEnum($var, \Google\Cloud\Vision\V1\Likelihood::class);
$this->sorrow_likelihood = $var;
return $this;
} | php | public function setSorrowLikelihood($var)
{
GPBUtil::checkEnum($var, \Google\Cloud\Vision\V1\Likelihood::class);
$this->sorrow_likelihood = $var;
return $this;
} | [
"public",
"function",
"setSorrowLikelihood",
"(",
"$",
"var",
")",
"{",
"GPBUtil",
"::",
"checkEnum",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Cloud",
"\\",
"Vision",
"\\",
"V1",
"\\",
"Likelihood",
"::",
"class",
")",
";",
"$",
"this",
"->",
"sorr... | Sorrow likelihood.
Generated from protobuf field <code>.google.cloud.vision.v1.Likelihood sorrow_likelihood = 10;</code>
@param int $var
@return $this | [
"Sorrow",
"likelihood",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Vision/src/V1/FaceAnnotation.php#L468-L474 | train |
googleapis/google-cloud-php | Vision/src/V1/FaceAnnotation.php | FaceAnnotation.setAngerLikelihood | public function setAngerLikelihood($var)
{
GPBUtil::checkEnum($var, \Google\Cloud\Vision\V1\Likelihood::class);
$this->anger_likelihood = $var;
return $this;
} | php | public function setAngerLikelihood($var)
{
GPBUtil::checkEnum($var, \Google\Cloud\Vision\V1\Likelihood::class);
$this->anger_likelihood = $var;
return $this;
} | [
"public",
"function",
"setAngerLikelihood",
"(",
"$",
"var",
")",
"{",
"GPBUtil",
"::",
"checkEnum",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Cloud",
"\\",
"Vision",
"\\",
"V1",
"\\",
"Likelihood",
"::",
"class",
")",
";",
"$",
"this",
"->",
"anger... | Anger likelihood.
Generated from protobuf field <code>.google.cloud.vision.v1.Likelihood anger_likelihood = 11;</code>
@param int $var
@return $this | [
"Anger",
"likelihood",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Vision/src/V1/FaceAnnotation.php#L494-L500 | train |
googleapis/google-cloud-php | Vision/src/V1/FaceAnnotation.php | FaceAnnotation.setSurpriseLikelihood | public function setSurpriseLikelihood($var)
{
GPBUtil::checkEnum($var, \Google\Cloud\Vision\V1\Likelihood::class);
$this->surprise_likelihood = $var;
return $this;
} | php | public function setSurpriseLikelihood($var)
{
GPBUtil::checkEnum($var, \Google\Cloud\Vision\V1\Likelihood::class);
$this->surprise_likelihood = $var;
return $this;
} | [
"public",
"function",
"setSurpriseLikelihood",
"(",
"$",
"var",
")",
"{",
"GPBUtil",
"::",
"checkEnum",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Cloud",
"\\",
"Vision",
"\\",
"V1",
"\\",
"Likelihood",
"::",
"class",
")",
";",
"$",
"this",
"->",
"su... | Surprise likelihood.
Generated from protobuf field <code>.google.cloud.vision.v1.Likelihood surprise_likelihood = 12;</code>
@param int $var
@return $this | [
"Surprise",
"likelihood",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Vision/src/V1/FaceAnnotation.php#L520-L526 | train |
googleapis/google-cloud-php | Vision/src/V1/FaceAnnotation.php | FaceAnnotation.setUnderExposedLikelihood | public function setUnderExposedLikelihood($var)
{
GPBUtil::checkEnum($var, \Google\Cloud\Vision\V1\Likelihood::class);
$this->under_exposed_likelihood = $var;
return $this;
} | php | public function setUnderExposedLikelihood($var)
{
GPBUtil::checkEnum($var, \Google\Cloud\Vision\V1\Likelihood::class);
$this->under_exposed_likelihood = $var;
return $this;
} | [
"public",
"function",
"setUnderExposedLikelihood",
"(",
"$",
"var",
")",
"{",
"GPBUtil",
"::",
"checkEnum",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Cloud",
"\\",
"Vision",
"\\",
"V1",
"\\",
"Likelihood",
"::",
"class",
")",
";",
"$",
"this",
"->",
... | Under-exposed likelihood.
Generated from protobuf field <code>.google.cloud.vision.v1.Likelihood under_exposed_likelihood = 13;</code>
@param int $var
@return $this | [
"Under",
"-",
"exposed",
"likelihood",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Vision/src/V1/FaceAnnotation.php#L546-L552 | train |
googleapis/google-cloud-php | Vision/src/V1/FaceAnnotation.php | FaceAnnotation.setBlurredLikelihood | public function setBlurredLikelihood($var)
{
GPBUtil::checkEnum($var, \Google\Cloud\Vision\V1\Likelihood::class);
$this->blurred_likelihood = $var;
return $this;
} | php | public function setBlurredLikelihood($var)
{
GPBUtil::checkEnum($var, \Google\Cloud\Vision\V1\Likelihood::class);
$this->blurred_likelihood = $var;
return $this;
} | [
"public",
"function",
"setBlurredLikelihood",
"(",
"$",
"var",
")",
"{",
"GPBUtil",
"::",
"checkEnum",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Cloud",
"\\",
"Vision",
"\\",
"V1",
"\\",
"Likelihood",
"::",
"class",
")",
";",
"$",
"this",
"->",
"blu... | Blurred likelihood.
Generated from protobuf field <code>.google.cloud.vision.v1.Likelihood blurred_likelihood = 14;</code>
@param int $var
@return $this | [
"Blurred",
"likelihood",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Vision/src/V1/FaceAnnotation.php#L572-L578 | train |
googleapis/google-cloud-php | Vision/src/V1/FaceAnnotation.php | FaceAnnotation.setHeadwearLikelihood | public function setHeadwearLikelihood($var)
{
GPBUtil::checkEnum($var, \Google\Cloud\Vision\V1\Likelihood::class);
$this->headwear_likelihood = $var;
return $this;
} | php | public function setHeadwearLikelihood($var)
{
GPBUtil::checkEnum($var, \Google\Cloud\Vision\V1\Likelihood::class);
$this->headwear_likelihood = $var;
return $this;
} | [
"public",
"function",
"setHeadwearLikelihood",
"(",
"$",
"var",
")",
"{",
"GPBUtil",
"::",
"checkEnum",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Cloud",
"\\",
"Vision",
"\\",
"V1",
"\\",
"Likelihood",
"::",
"class",
")",
";",
"$",
"this",
"->",
"he... | Headwear likelihood.
Generated from protobuf field <code>.google.cloud.vision.v1.Likelihood headwear_likelihood = 15;</code>
@param int $var
@return $this | [
"Headwear",
"likelihood",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Vision/src/V1/FaceAnnotation.php#L598-L604 | train |
googleapis/google-cloud-php | Asset/src/V1/BatchGetAssetsHistoryResponse.php | BatchGetAssetsHistoryResponse.setAssets | public function setAssets($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Asset\V1\TemporalAsset::class);
$this->assets = $arr;
return $this;
} | php | public function setAssets($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Asset\V1\TemporalAsset::class);
$this->assets = $arr;
return $this;
} | [
"public",
"function",
"setAssets",
"(",
"$",
"var",
")",
"{",
"$",
"arr",
"=",
"GPBUtil",
"::",
"checkRepeatedField",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Protobuf",
"\\",
"Internal",
"\\",
"GPBType",
"::",
"MESSAGE",
",",
"\\",
"Google",
"\\",
... | A list of assets with valid time windows.
Generated from protobuf field <code>repeated .google.cloud.asset.v1.TemporalAsset assets = 1;</code>
@param \Google\Cloud\Asset\V1\TemporalAsset[]|\Google\Protobuf\Internal\RepeatedField $var
@return $this | [
"A",
"list",
"of",
"assets",
"with",
"valid",
"time",
"windows",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Asset/src/V1/BatchGetAssetsHistoryResponse.php#L58-L64 | train |
googleapis/google-cloud-php | Spanner/src/Result.php | Result.rows | public function rows($format = self::RETURN_ASSOCIATIVE)
{
$bufferedResults = [];
$call = $this->call;
$generator = null;
$shouldRetry = false;
$backoff = new ExponentialBackoff($this->retries, function ($ex) {
if ($ex instanceof ServiceException) {
... | php | public function rows($format = self::RETURN_ASSOCIATIVE)
{
$bufferedResults = [];
$call = $this->call;
$generator = null;
$shouldRetry = false;
$backoff = new ExponentialBackoff($this->retries, function ($ex) {
if ($ex instanceof ServiceException) {
... | [
"public",
"function",
"rows",
"(",
"$",
"format",
"=",
"self",
"::",
"RETURN_ASSOCIATIVE",
")",
"{",
"$",
"bufferedResults",
"=",
"[",
"]",
";",
"$",
"call",
"=",
"$",
"this",
"->",
"call",
";",
"$",
"generator",
"=",
"null",
";",
"$",
"shouldRetry",
... | Return the formatted and decoded rows. If the stream is interrupted and
a resume token is available, attempts will be made on your behalf to
resume.
Example:
```
$rows = $result->rows();
```
@param string $format Determines the format in which rows are returned.
`Result::RETURN_NAME_VALUE_PAIR` returns items as a
mul... | [
"Return",
"the",
"formatted",
"and",
"decoded",
"rows",
".",
"If",
"the",
"stream",
"is",
"interrupted",
"and",
"a",
"resume",
"token",
"is",
"available",
"attempts",
"will",
"be",
"made",
"on",
"your",
"behalf",
"to",
"resume",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Spanner/src/Result.php#L175-L252 | train |
googleapis/google-cloud-php | Spanner/src/Result.php | Result.mergeValues | private function mergeValues(array $set1, array $set2)
{
// `$set2` may be empty if an array value is chunked at the end of the
// list. Handling it normally results in an additional `null` value
// being pushed onto the list of values. Since this method is only
// called in cases wh... | php | private function mergeValues(array $set1, array $set2)
{
// `$set2` may be empty if an array value is chunked at the end of the
// list. Handling it normally results in an additional `null` value
// being pushed onto the list of values. Since this method is only
// called in cases wh... | [
"private",
"function",
"mergeValues",
"(",
"array",
"$",
"set1",
",",
"array",
"$",
"set2",
")",
"{",
"// `$set2` may be empty if an array value is chunked at the end of the",
"// list. Handling it normally results in an additional `null` value",
"// being pushed onto the list of value... | Merge result set values together.
@param array $set1
@param array $set2
@return array | [
"Merge",
"result",
"set",
"values",
"together",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Spanner/src/Result.php#L490-L515 | train |
googleapis/google-cloud-php | CommonProtos/src/DevTools/Source/V1/AliasContext.php | AliasContext.setKind | public function setKind($var)
{
GPBUtil::checkEnum($var, \Google\Cloud\DevTools\Source\V1\AliasContext_Kind::class);
$this->kind = $var;
return $this;
} | php | public function setKind($var)
{
GPBUtil::checkEnum($var, \Google\Cloud\DevTools\Source\V1\AliasContext_Kind::class);
$this->kind = $var;
return $this;
} | [
"public",
"function",
"setKind",
"(",
"$",
"var",
")",
"{",
"GPBUtil",
"::",
"checkEnum",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Cloud",
"\\",
"DevTools",
"\\",
"Source",
"\\",
"V1",
"\\",
"AliasContext_Kind",
"::",
"class",
")",
";",
"$",
"this"... | The alias kind.
Generated from protobuf field <code>.google.devtools.source.v1.AliasContext.Kind kind = 1;</code>
@param int $var
@return $this | [
"The",
"alias",
"kind",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/CommonProtos/src/DevTools/Source/V1/AliasContext.php#L66-L72 | train |
googleapis/google-cloud-php | Dialogflow/src/V2/EntityType.php | EntityType.setKind | public function setKind($var)
{
GPBUtil::checkEnum($var, \Google\Cloud\Dialogflow\V2\EntityType_Kind::class);
$this->kind = $var;
return $this;
} | php | public function setKind($var)
{
GPBUtil::checkEnum($var, \Google\Cloud\Dialogflow\V2\EntityType_Kind::class);
$this->kind = $var;
return $this;
} | [
"public",
"function",
"setKind",
"(",
"$",
"var",
")",
"{",
"GPBUtil",
"::",
"checkEnum",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Cloud",
"\\",
"Dialogflow",
"\\",
"V2",
"\\",
"EntityType_Kind",
"::",
"class",
")",
";",
"$",
"this",
"->",
"kind",
... | Required. Indicates the kind of entity type.
Generated from protobuf field <code>.google.cloud.dialogflow.v2.EntityType.Kind kind = 3;</code>
@param int $var
@return $this | [
"Required",
".",
"Indicates",
"the",
"kind",
"of",
"entity",
"type",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Dialogflow/src/V2/EntityType.php#L158-L164 | train |
googleapis/google-cloud-php | Dialogflow/src/V2/EntityType.php | EntityType.setAutoExpansionMode | public function setAutoExpansionMode($var)
{
GPBUtil::checkEnum($var, \Google\Cloud\Dialogflow\V2\EntityType_AutoExpansionMode::class);
$this->auto_expansion_mode = $var;
return $this;
} | php | public function setAutoExpansionMode($var)
{
GPBUtil::checkEnum($var, \Google\Cloud\Dialogflow\V2\EntityType_AutoExpansionMode::class);
$this->auto_expansion_mode = $var;
return $this;
} | [
"public",
"function",
"setAutoExpansionMode",
"(",
"$",
"var",
")",
"{",
"GPBUtil",
"::",
"checkEnum",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Cloud",
"\\",
"Dialogflow",
"\\",
"V2",
"\\",
"EntityType_AutoExpansionMode",
"::",
"class",
")",
";",
"$",
... | Optional. Indicates whether the entity type can be automatically
expanded.
Generated from protobuf field <code>.google.cloud.dialogflow.v2.EntityType.AutoExpansionMode auto_expansion_mode = 4;</code>
@param int $var
@return $this | [
"Optional",
".",
"Indicates",
"whether",
"the",
"entity",
"type",
"can",
"be",
"automatically",
"expanded",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Dialogflow/src/V2/EntityType.php#L186-L192 | train |
googleapis/google-cloud-php | Spanner/src/Admin/Instance/V1/ListInstanceConfigsResponse.php | ListInstanceConfigsResponse.setInstanceConfigs | public function setInstanceConfigs($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Spanner\Admin\Instance\V1\InstanceConfig::class);
$this->instance_configs = $arr;
return $this;
} | php | public function setInstanceConfigs($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Spanner\Admin\Instance\V1\InstanceConfig::class);
$this->instance_configs = $arr;
return $this;
} | [
"public",
"function",
"setInstanceConfigs",
"(",
"$",
"var",
")",
"{",
"$",
"arr",
"=",
"GPBUtil",
"::",
"checkRepeatedField",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Protobuf",
"\\",
"Internal",
"\\",
"GPBType",
"::",
"MESSAGE",
",",
"\\",
"Google",
... | The list of requested instance configurations.
Generated from protobuf field <code>repeated .google.spanner.admin.instance.v1.InstanceConfig instance_configs = 1;</code>
@param \Google\Cloud\Spanner\Admin\Instance\V1\InstanceConfig[]|\Google\Protobuf\Internal\RepeatedField $var
@return $this | [
"The",
"list",
"of",
"requested",
"instance",
"configurations",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Spanner/src/Admin/Instance/V1/ListInstanceConfigsResponse.php#L71-L77 | train |
googleapis/google-cloud-php | Logging/src/V2/ListExclusionsResponse.php | ListExclusionsResponse.setExclusions | public function setExclusions($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Logging\V2\LogExclusion::class);
$this->exclusions = $arr;
return $this;
} | php | public function setExclusions($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Logging\V2\LogExclusion::class);
$this->exclusions = $arr;
return $this;
} | [
"public",
"function",
"setExclusions",
"(",
"$",
"var",
")",
"{",
"$",
"arr",
"=",
"GPBUtil",
"::",
"checkRepeatedField",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Protobuf",
"\\",
"Internal",
"\\",
"GPBType",
"::",
"MESSAGE",
",",
"\\",
"Google",
"\\... | A list of exclusions.
Generated from protobuf field <code>repeated .google.logging.v2.LogExclusion exclusions = 1;</code>
@param \Google\Cloud\Logging\V2\LogExclusion[]|\Google\Protobuf\Internal\RepeatedField $var
@return $this | [
"A",
"list",
"of",
"exclusions",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Logging/src/V2/ListExclusionsResponse.php#L70-L76 | train |
googleapis/google-cloud-php | PubSub/src/V1/ReceivedMessage.php | ReceivedMessage.setMessage | public function setMessage($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\PubSub\V1\PubsubMessage::class);
$this->message = $var;
return $this;
} | php | public function setMessage($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\PubSub\V1\PubsubMessage::class);
$this->message = $var;
return $this;
} | [
"public",
"function",
"setMessage",
"(",
"$",
"var",
")",
"{",
"GPBUtil",
"::",
"checkMessage",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Cloud",
"\\",
"PubSub",
"\\",
"V1",
"\\",
"PubsubMessage",
"::",
"class",
")",
";",
"$",
"this",
"->",
"message... | The message.
Generated from protobuf field <code>.google.pubsub.v1.PubsubMessage message = 2;</code>
@param \Google\Cloud\PubSub\V1\PubsubMessage $var
@return $this | [
"The",
"message",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/PubSub/src/V1/ReceivedMessage.php#L92-L98 | train |
googleapis/google-cloud-php | Vision/src/V1/ImportProductSetsResponse.php | ImportProductSetsResponse.setReferenceImages | public function setReferenceImages($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Vision\V1\ReferenceImage::class);
$this->reference_images = $arr;
return $this;
} | php | public function setReferenceImages($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Vision\V1\ReferenceImage::class);
$this->reference_images = $arr;
return $this;
} | [
"public",
"function",
"setReferenceImages",
"(",
"$",
"var",
")",
"{",
"$",
"arr",
"=",
"GPBUtil",
"::",
"checkRepeatedField",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Protobuf",
"\\",
"Internal",
"\\",
"GPBType",
"::",
"MESSAGE",
",",
"\\",
"Google",
... | The list of reference_images that are imported successfully.
Generated from protobuf field <code>repeated .google.cloud.vision.v1.ReferenceImage reference_images = 1;</code>
@param \Google\Cloud\Vision\V1\ReferenceImage[]|\Google\Protobuf\Internal\RepeatedField $var
@return $this | [
"The",
"list",
"of",
"reference_images",
"that",
"are",
"imported",
"successfully",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Vision/src/V1/ImportProductSetsResponse.php#L79-L85 | train |
googleapis/google-cloud-php | Dlp/src/V2/InspectJobConfig.php | InspectJobConfig.setStorageConfig | public function setStorageConfig($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Dlp\V2\StorageConfig::class);
$this->storage_config = $var;
return $this;
} | php | public function setStorageConfig($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Dlp\V2\StorageConfig::class);
$this->storage_config = $var;
return $this;
} | [
"public",
"function",
"setStorageConfig",
"(",
"$",
"var",
")",
"{",
"GPBUtil",
"::",
"checkMessage",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Cloud",
"\\",
"Dlp",
"\\",
"V2",
"\\",
"StorageConfig",
"::",
"class",
")",
";",
"$",
"this",
"->",
"stor... | The data to scan.
Generated from protobuf field <code>.google.privacy.dlp.v2.StorageConfig storage_config = 1;</code>
@param \Google\Cloud\Dlp\V2\StorageConfig $var
@return $this | [
"The",
"data",
"to",
"scan",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Dlp/src/V2/InspectJobConfig.php#L86-L92 | train |
googleapis/google-cloud-php | Dlp/src/V2/InspectJobConfig.php | InspectJobConfig.setInspectConfig | public function setInspectConfig($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Dlp\V2\InspectConfig::class);
$this->inspect_config = $var;
return $this;
} | php | public function setInspectConfig($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Dlp\V2\InspectConfig::class);
$this->inspect_config = $var;
return $this;
} | [
"public",
"function",
"setInspectConfig",
"(",
"$",
"var",
")",
"{",
"GPBUtil",
"::",
"checkMessage",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Cloud",
"\\",
"Dlp",
"\\",
"V2",
"\\",
"InspectConfig",
"::",
"class",
")",
";",
"$",
"this",
"->",
"insp... | How and what to scan for.
Generated from protobuf field <code>.google.privacy.dlp.v2.InspectConfig inspect_config = 2;</code>
@param \Google\Cloud\Dlp\V2\InspectConfig $var
@return $this | [
"How",
"and",
"what",
"to",
"scan",
"for",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Dlp/src/V2/InspectJobConfig.php#L112-L118 | train |
googleapis/google-cloud-php | Dlp/src/V2/InspectJobConfig.php | InspectJobConfig.setActions | public function setActions($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Dlp\V2\Action::class);
$this->actions = $arr;
return $this;
} | php | public function setActions($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Dlp\V2\Action::class);
$this->actions = $arr;
return $this;
} | [
"public",
"function",
"setActions",
"(",
"$",
"var",
")",
"{",
"$",
"arr",
"=",
"GPBUtil",
"::",
"checkRepeatedField",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Protobuf",
"\\",
"Internal",
"\\",
"GPBType",
"::",
"MESSAGE",
",",
"\\",
"Google",
"\\",
... | Actions to execute at the completion of the job. Are executed in the order
provided.
Generated from protobuf field <code>repeated .google.privacy.dlp.v2.Action actions = 4;</code>
@param \Google\Cloud\Dlp\V2\Action[]|\Google\Protobuf\Internal\RepeatedField $var
@return $this | [
"Actions",
"to",
"execute",
"at",
"the",
"completion",
"of",
"the",
"job",
".",
"Are",
"executed",
"in",
"the",
"order",
"provided",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Dlp/src/V2/InspectJobConfig.php#L170-L176 | train |
googleapis/google-cloud-php | Core/src/Batch/BatchRunner.php | BatchRunner.registerJob | public function registerJob($identifier, $func, array $options = [])
{
if ($func instanceof \Closure) {
throw new \InvalidArgumentException('Closure is not allowed');
}
// Always work on the latest data
$result = $this->configStorage->lock();
if ($result === false... | php | public function registerJob($identifier, $func, array $options = [])
{
if ($func instanceof \Closure) {
throw new \InvalidArgumentException('Closure is not allowed');
}
// Always work on the latest data
$result = $this->configStorage->lock();
if ($result === false... | [
"public",
"function",
"registerJob",
"(",
"$",
"identifier",
",",
"$",
"func",
",",
"array",
"$",
"options",
"=",
"[",
"]",
")",
"{",
"if",
"(",
"$",
"func",
"instanceof",
"\\",
"Closure",
")",
"{",
"throw",
"new",
"\\",
"InvalidArgumentException",
"(",
... | Register a job for batch execution.
@param string $identifier Unique identifier of the job.
@param callable $func Any Callable except for Closure. The callable
should accept an array of items as the first argument.
@param array $options [optional] {
Configuration options.
@type int $batchSize The size of the batch.
@... | [
"Register",
"a",
"job",
"for",
"batch",
"execution",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Core/src/Batch/BatchRunner.php#L97-L121 | train |
googleapis/google-cloud-php | Core/src/Batch/BatchRunner.php | BatchRunner.submitItem | public function submitItem($identifier, $item)
{
$job = $this->getJobFromId($identifier);
if ($job === null) {
throw new \RuntimeException(
"The identifier does not exist: $identifier"
);
}
$idNum = $job->id();
return $this->processor->... | php | public function submitItem($identifier, $item)
{
$job = $this->getJobFromId($identifier);
if ($job === null) {
throw new \RuntimeException(
"The identifier does not exist: $identifier"
);
}
$idNum = $job->id();
return $this->processor->... | [
"public",
"function",
"submitItem",
"(",
"$",
"identifier",
",",
"$",
"item",
")",
"{",
"$",
"job",
"=",
"$",
"this",
"->",
"getJobFromId",
"(",
"$",
"identifier",
")",
";",
"if",
"(",
"$",
"job",
"===",
"null",
")",
"{",
"throw",
"new",
"\\",
"Run... | Submit an item.
@param string $identifier Unique identifier of the job.
@param mixed $item It needs to be serializable.
@return bool true on success, false on failure
@throws \RuntimeException | [
"Submit",
"an",
"item",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Core/src/Batch/BatchRunner.php#L132-L142 | train |
googleapis/google-cloud-php | Core/src/Batch/BatchRunner.php | BatchRunner.loadConfig | public function loadConfig()
{
$result = $this->configStorage->lock();
if ($result === false) {
throw new \RuntimeException('Failed to lock the configStorage');
}
try {
$result = $this->configStorage->load();
} catch (\RuntimeException $e) {
... | php | public function loadConfig()
{
$result = $this->configStorage->lock();
if ($result === false) {
throw new \RuntimeException('Failed to lock the configStorage');
}
try {
$result = $this->configStorage->load();
} catch (\RuntimeException $e) {
... | [
"public",
"function",
"loadConfig",
"(",
")",
"{",
"$",
"result",
"=",
"$",
"this",
"->",
"configStorage",
"->",
"lock",
"(",
")",
";",
"if",
"(",
"$",
"result",
"===",
"false",
")",
"{",
"throw",
"new",
"\\",
"RuntimeException",
"(",
"'Failed to lock th... | Load the config from the storage.
@return bool true on success
@throws \RuntimeException when it fails to load the config. | [
"Load",
"the",
"config",
"from",
"the",
"storage",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Core/src/Batch/BatchRunner.php#L184-L201 | train |
googleapis/google-cloud-php | Speech/src/SpeechHelpersTrait.php | SpeechHelpersTrait.createAudioStreamFromResource | public function createAudioStreamFromResource($resource, $chunkSize = 32000)
{
while (!feof($resource)) {
$chunk = fread($resource, $chunkSize);
if (strlen($chunk) > 0) {
yield $chunk;
}
}
} | php | public function createAudioStreamFromResource($resource, $chunkSize = 32000)
{
while (!feof($resource)) {
$chunk = fread($resource, $chunkSize);
if (strlen($chunk) > 0) {
yield $chunk;
}
}
} | [
"public",
"function",
"createAudioStreamFromResource",
"(",
"$",
"resource",
",",
"$",
"chunkSize",
"=",
"32000",
")",
"{",
"while",
"(",
"!",
"feof",
"(",
"$",
"resource",
")",
")",
"{",
"$",
"chunk",
"=",
"fread",
"(",
"$",
"resource",
",",
"$",
"chu... | Convert a PHP resource instance into an iterable of data "chunks".
@param resource $resource The resource object to read data from.
@param int $chunkSize The chunk size to use, in bytes. Defaults to 32000
@return \Generator<string> An iterable of strings that have been read from the resource. | [
"Convert",
"a",
"PHP",
"resource",
"instance",
"into",
"an",
"iterable",
"of",
"data",
"chunks",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Speech/src/SpeechHelpersTrait.php#L107-L115 | train |
googleapis/google-cloud-php | Dlp/src/V2/RedactImageRequest/ImageRedactionConfig.php | ImageRedactionConfig.setInfoType | public function setInfoType($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Dlp\V2\InfoType::class);
$this->writeOneof(1, $var);
return $this;
} | php | public function setInfoType($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Dlp\V2\InfoType::class);
$this->writeOneof(1, $var);
return $this;
} | [
"public",
"function",
"setInfoType",
"(",
"$",
"var",
")",
"{",
"GPBUtil",
"::",
"checkMessage",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Cloud",
"\\",
"Dlp",
"\\",
"V2",
"\\",
"InfoType",
"::",
"class",
")",
";",
"$",
"this",
"->",
"writeOneof",
... | Only one per info_type should be provided per request. If not
specified, and redact_all_text is false, the DLP API will redact all
text that it matches against all info_types that are found, but not
specified in another ImageRedactionConfig.
Generated from protobuf field <code>.google.privacy.dlp.v2.InfoType info_type... | [
"Only",
"one",
"per",
"info_type",
"should",
"be",
"provided",
"per",
"request",
".",
"If",
"not",
"specified",
"and",
"redact_all_text",
"is",
"false",
"the",
"DLP",
"API",
"will",
"redact",
"all",
"text",
"that",
"it",
"matches",
"against",
"all",
"info_ty... | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Dlp/src/V2/RedactImageRequest/ImageRedactionConfig.php#L75-L81 | train |
googleapis/google-cloud-php | Dlp/src/V2/RedactImageRequest/ImageRedactionConfig.php | ImageRedactionConfig.setRedactionColor | public function setRedactionColor($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Dlp\V2\Color::class);
$this->redaction_color = $var;
return $this;
} | php | public function setRedactionColor($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Dlp\V2\Color::class);
$this->redaction_color = $var;
return $this;
} | [
"public",
"function",
"setRedactionColor",
"(",
"$",
"var",
")",
"{",
"GPBUtil",
"::",
"checkMessage",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Cloud",
"\\",
"Dlp",
"\\",
"V2",
"\\",
"Color",
"::",
"class",
")",
";",
"$",
"this",
"->",
"redaction_c... | The color to use when redacting content from an image. If not specified,
the default is black.
Generated from protobuf field <code>.google.privacy.dlp.v2.Color redaction_color = 3;</code>
@param \Google\Cloud\Dlp\V2\Color $var
@return $this | [
"The",
"color",
"to",
"use",
"when",
"redacting",
"content",
"from",
"an",
"image",
".",
"If",
"not",
"specified",
"the",
"default",
"is",
"black",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Dlp/src/V2/RedactImageRequest/ImageRedactionConfig.php#L131-L137 | train |
googleapis/google-cloud-php | Debugger/src/Debuggee.php | Debuggee.register | public function register(array $options = [])
{
$resp = $this->connection->registerDebuggee(['debuggee' => $this->info()] + $options);
if (array_key_exists('debuggee', $resp)) {
$this->id = $resp['debuggee']['id'];
return true;
}
return false;
} | php | public function register(array $options = [])
{
$resp = $this->connection->registerDebuggee(['debuggee' => $this->info()] + $options);
if (array_key_exists('debuggee', $resp)) {
$this->id = $resp['debuggee']['id'];
return true;
}
return false;
} | [
"public",
"function",
"register",
"(",
"array",
"$",
"options",
"=",
"[",
"]",
")",
"{",
"$",
"resp",
"=",
"$",
"this",
"->",
"connection",
"->",
"registerDebuggee",
"(",
"[",
"'debuggee'",
"=>",
"$",
"this",
"->",
"info",
"(",
")",
"]",
"+",
"$",
... | Register this debuggee with the Stackdriver backend.
Example:
```
$debuggee->register();
echo $debuggee->id();
```
@codingStandardsIgnoreStart
@see https://cloud.google.com/debugger/api/reference/rest/v2/controller.debuggees/register Debuggee register API documentation.
@codingStandardsIgnoreEnd
@param array $option... | [
"Register",
"this",
"debuggee",
"with",
"the",
"Stackdriver",
"backend",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Debugger/src/Debuggee.php#L197-L205 | train |
googleapis/google-cloud-php | Debugger/src/Debuggee.php | Debuggee.breakpointsWithWaitToken | public function breakpointsWithWaitToken(array $options = [])
{
$ret = $this->connection->listBreakpoints(['debuggeeId' => $this->id] + $options);
if (array_key_exists('breakpoints', $ret)) {
$ret['breakpoints'] = array_map(function ($breakpointData) {
return new Breakpo... | php | public function breakpointsWithWaitToken(array $options = [])
{
$ret = $this->connection->listBreakpoints(['debuggeeId' => $this->id] + $options);
if (array_key_exists('breakpoints', $ret)) {
$ret['breakpoints'] = array_map(function ($breakpointData) {
return new Breakpo... | [
"public",
"function",
"breakpointsWithWaitToken",
"(",
"array",
"$",
"options",
"=",
"[",
"]",
")",
"{",
"$",
"ret",
"=",
"$",
"this",
"->",
"connection",
"->",
"listBreakpoints",
"(",
"[",
"'debuggeeId'",
"=>",
"$",
"this",
"->",
"id",
"]",
"+",
"$",
... | Fetch the list of breakpoints this debugee should try to handle and a
wait token for the next request. The return value is an associative array
with keys of breakpoints and nextWaitToken.
Example:
```
$resp = $debuggee->breakpointsWithWaitToken();
$nextWaitToken = $resp['nextWaitToken'];
$breakpoints = $resp['breakpoi... | [
"Fetch",
"the",
"list",
"of",
"breakpoints",
"this",
"debugee",
"should",
"try",
"to",
"handle",
"and",
"a",
"wait",
"token",
"for",
"the",
"next",
"request",
".",
"The",
"return",
"value",
"is",
"an",
"associative",
"array",
"with",
"keys",
"of",
"breakpo... | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Debugger/src/Debuggee.php#L261-L273 | train |
googleapis/google-cloud-php | Debugger/src/Debuggee.php | Debuggee.updateBreakpoint | public function updateBreakpoint(Breakpoint $breakpoint, array $options = [])
{
$this->connection->updateBreakpoint([
'debuggeeId' => $this->id,
'id' => $breakpoint->id(),
'breakpoint' => $breakpoint->info()
] + $options);
} | php | public function updateBreakpoint(Breakpoint $breakpoint, array $options = [])
{
$this->connection->updateBreakpoint([
'debuggeeId' => $this->id,
'id' => $breakpoint->id(),
'breakpoint' => $breakpoint->info()
] + $options);
} | [
"public",
"function",
"updateBreakpoint",
"(",
"Breakpoint",
"$",
"breakpoint",
",",
"array",
"$",
"options",
"=",
"[",
"]",
")",
"{",
"$",
"this",
"->",
"connection",
"->",
"updateBreakpoint",
"(",
"[",
"'debuggeeId'",
"=>",
"$",
"this",
"->",
"id",
",",
... | Update the provided, modified breakpoint.
Example:
```
$debuggee->updateBreakpoint($breakpoint);
```
@codingStandardsIgnoreStart
@see https://cloud.google.com/debugger/api/reference/rest/v2/controller.debuggees.breakpoints/update Breakpoint update API documentation.
@codingStandardsIgnoreEnd
@param Breakpoint $break... | [
"Update",
"the",
"provided",
"modified",
"breakpoint",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Debugger/src/Debuggee.php#L294-L301 | train |
googleapis/google-cloud-php | Debugger/src/Debuggee.php | Debuggee.setBreakpoint | public function setBreakpoint($path, $line, array $options = [])
{
$resp = $this->connection->setBreakpoint([
'debuggeeId' => $this->id,
'location' => [
'path' => $path,
'line' => $line
]
] + $options);
return new Breakpoint... | php | public function setBreakpoint($path, $line, array $options = [])
{
$resp = $this->connection->setBreakpoint([
'debuggeeId' => $this->id,
'location' => [
'path' => $path,
'line' => $line
]
] + $options);
return new Breakpoint... | [
"public",
"function",
"setBreakpoint",
"(",
"$",
"path",
",",
"$",
"line",
",",
"array",
"$",
"options",
"=",
"[",
"]",
")",
"{",
"$",
"resp",
"=",
"$",
"this",
"->",
"connection",
"->",
"setBreakpoint",
"(",
"[",
"'debuggeeId'",
"=>",
"$",
"this",
"... | Set a breakpoint for this debuggee.
Example:
```
$breakpoint = $debuggee->setBreakpoint('DebuggerClient.php', 10);
```
@codingStandardsIgnoreStart
@see https://cloud.google.com/debugger/api/reference/rest/v2/debugger.debuggees.breakpoints/set Breakpoint set API documentation.
@codingStandardsIgnoreEnd
@param string ... | [
"Set",
"a",
"breakpoint",
"for",
"this",
"debuggee",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Debugger/src/Debuggee.php#L323-L333 | train |
googleapis/google-cloud-php | Debugger/src/Debuggee.php | Debuggee.updateBreakpointBatch | public function updateBreakpointBatch(array $breakpoints, array $options = [])
{
foreach ($breakpoints as $breakpoint) {
$this->updateBreakpoint($breakpoint, $options);
}
} | php | public function updateBreakpointBatch(array $breakpoints, array $options = [])
{
foreach ($breakpoints as $breakpoint) {
$this->updateBreakpoint($breakpoint, $options);
}
} | [
"public",
"function",
"updateBreakpointBatch",
"(",
"array",
"$",
"breakpoints",
",",
"array",
"$",
"options",
"=",
"[",
"]",
")",
"{",
"foreach",
"(",
"$",
"breakpoints",
"as",
"$",
"breakpoint",
")",
"{",
"$",
"this",
"->",
"updateBreakpoint",
"(",
"$",
... | Update multiple breakpoints.
Example:
```
$debuggee->updateBreakpointBatch([$breakpoint1, $breakpoint2]);
```
@codingStandardsIgnoreStart
@see https://cloud.google.com/debugger/api/reference/rest/v2/controller.debuggees.breakpoints/update Breakpoint update API documentation.
@codingStandardsIgnoreEnd
@param Breakpoi... | [
"Update",
"multiple",
"breakpoints",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Debugger/src/Debuggee.php#L354-L359 | train |
googleapis/google-cloud-php | Core/src/GrpcRequestWrapper.php | GrpcRequestWrapper.handleResponse | private function handleResponse($response)
{
if ($response instanceof PagedListResponse || $response instanceof GaxPagedListResponse) {
$response = $response->getPage()->getResponseObject();
}
if ($response instanceof Message) {
return $this->serializer->encodeMessag... | php | private function handleResponse($response)
{
if ($response instanceof PagedListResponse || $response instanceof GaxPagedListResponse) {
$response = $response->getPage()->getResponseObject();
}
if ($response instanceof Message) {
return $this->serializer->encodeMessag... | [
"private",
"function",
"handleResponse",
"(",
"$",
"response",
")",
"{",
"if",
"(",
"$",
"response",
"instanceof",
"PagedListResponse",
"||",
"$",
"response",
"instanceof",
"GaxPagedListResponse",
")",
"{",
"$",
"response",
"=",
"$",
"response",
"->",
"getPage",... | Serializes a gRPC response.
@param mixed $response
@return \Generator|array|null | [
"Serializes",
"a",
"gRPC",
"response",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Core/src/GrpcRequestWrapper.php#L165-L184 | train |
googleapis/google-cloud-php | Core/src/GrpcRequestWrapper.php | GrpcRequestWrapper.handleStream | private function handleStream($response)
{
try {
foreach ($response->readAll() as $count => $result) {
$res = $this->serializer->encodeMessage($result);
yield $res;
}
} catch (\Exception $ex) {
throw $this->convertToGoogleException(... | php | private function handleStream($response)
{
try {
foreach ($response->readAll() as $count => $result) {
$res = $this->serializer->encodeMessage($result);
yield $res;
}
} catch (\Exception $ex) {
throw $this->convertToGoogleException(... | [
"private",
"function",
"handleStream",
"(",
"$",
"response",
")",
"{",
"try",
"{",
"foreach",
"(",
"$",
"response",
"->",
"readAll",
"(",
")",
"as",
"$",
"count",
"=>",
"$",
"result",
")",
"{",
"$",
"res",
"=",
"$",
"this",
"->",
"serializer",
"->",
... | Handles a streaming response.
@param ServerStream|GaxServerStream $response
@return \Generator|array|null | [
"Handles",
"a",
"streaming",
"response",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Core/src/GrpcRequestWrapper.php#L192-L202 | train |
googleapis/google-cloud-php | Core/src/GrpcRequestWrapper.php | GrpcRequestWrapper.convertToGoogleException | private function convertToGoogleException($ex)
{
switch ($ex->getCode()) {
case Code::INVALID_ARGUMENT:
$exception = Exception\BadRequestException::class;
break;
case Code::NOT_FOUND:
case Code::UNIMPLEMENTED:
$exception = ... | php | private function convertToGoogleException($ex)
{
switch ($ex->getCode()) {
case Code::INVALID_ARGUMENT:
$exception = Exception\BadRequestException::class;
break;
case Code::NOT_FOUND:
case Code::UNIMPLEMENTED:
$exception = ... | [
"private",
"function",
"convertToGoogleException",
"(",
"$",
"ex",
")",
"{",
"switch",
"(",
"$",
"ex",
"->",
"getCode",
"(",
")",
")",
"{",
"case",
"Code",
"::",
"INVALID_ARGUMENT",
":",
"$",
"exception",
"=",
"Exception",
"\\",
"BadRequestException",
"::",
... | Convert a ApiCore exception to a Google Exception.
@param ApiException|GaxApiException $ex
@return Exception\ServiceException | [
"Convert",
"a",
"ApiCore",
"exception",
"to",
"a",
"Google",
"Exception",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Core/src/GrpcRequestWrapper.php#L210-L264 | train |
googleapis/google-cloud-php | Vision/src/V1/ImageContext.php | ImageContext.setLatLongRect | public function setLatLongRect($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Vision\V1\LatLongRect::class);
$this->lat_long_rect = $var;
return $this;
} | php | public function setLatLongRect($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Vision\V1\LatLongRect::class);
$this->lat_long_rect = $var;
return $this;
} | [
"public",
"function",
"setLatLongRect",
"(",
"$",
"var",
")",
"{",
"GPBUtil",
"::",
"checkMessage",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Cloud",
"\\",
"Vision",
"\\",
"V1",
"\\",
"LatLongRect",
"::",
"class",
")",
";",
"$",
"this",
"->",
"lat_l... | Not used.
Generated from protobuf field <code>.google.cloud.vision.v1.LatLongRect lat_long_rect = 1;</code>
@param \Google\Cloud\Vision\V1\LatLongRect $var
@return $this | [
"Not",
"used",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Vision/src/V1/ImageContext.php#L104-L110 | train |
googleapis/google-cloud-php | Vision/src/V1/ImageContext.php | ImageContext.setCropHintsParams | public function setCropHintsParams($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Vision\V1\CropHintsParams::class);
$this->crop_hints_params = $var;
return $this;
} | php | public function setCropHintsParams($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Vision\V1\CropHintsParams::class);
$this->crop_hints_params = $var;
return $this;
} | [
"public",
"function",
"setCropHintsParams",
"(",
"$",
"var",
")",
"{",
"GPBUtil",
"::",
"checkMessage",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Cloud",
"\\",
"Vision",
"\\",
"V1",
"\\",
"CropHintsParams",
"::",
"class",
")",
";",
"$",
"this",
"->",
... | Parameters for crop hints annotation request.
Generated from protobuf field <code>.google.cloud.vision.v1.CropHintsParams crop_hints_params = 4;</code>
@param \Google\Cloud\Vision\V1\CropHintsParams $var
@return $this | [
"Parameters",
"for",
"crop",
"hints",
"annotation",
"request",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Vision/src/V1/ImageContext.php#L170-L176 | train |
googleapis/google-cloud-php | Vision/src/V1/ImageContext.php | ImageContext.setProductSearchParams | public function setProductSearchParams($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Vision\V1\ProductSearchParams::class);
$this->product_search_params = $var;
return $this;
} | php | public function setProductSearchParams($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Vision\V1\ProductSearchParams::class);
$this->product_search_params = $var;
return $this;
} | [
"public",
"function",
"setProductSearchParams",
"(",
"$",
"var",
")",
"{",
"GPBUtil",
"::",
"checkMessage",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Cloud",
"\\",
"Vision",
"\\",
"V1",
"\\",
"ProductSearchParams",
"::",
"class",
")",
";",
"$",
"this",
... | Parameters for product search.
Generated from protobuf field <code>.google.cloud.vision.v1.ProductSearchParams product_search_params = 5;</code>
@param \Google\Cloud\Vision\V1\ProductSearchParams $var
@return $this | [
"Parameters",
"for",
"product",
"search",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Vision/src/V1/ImageContext.php#L196-L202 | train |
googleapis/google-cloud-php | Vision/src/V1/ImageContext.php | ImageContext.setWebDetectionParams | public function setWebDetectionParams($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Vision\V1\WebDetectionParams::class);
$this->web_detection_params = $var;
return $this;
} | php | public function setWebDetectionParams($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Vision\V1\WebDetectionParams::class);
$this->web_detection_params = $var;
return $this;
} | [
"public",
"function",
"setWebDetectionParams",
"(",
"$",
"var",
")",
"{",
"GPBUtil",
"::",
"checkMessage",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Cloud",
"\\",
"Vision",
"\\",
"V1",
"\\",
"WebDetectionParams",
"::",
"class",
")",
";",
"$",
"this",
... | Parameters for web detection.
Generated from protobuf field <code>.google.cloud.vision.v1.WebDetectionParams web_detection_params = 6;</code>
@param \Google\Cloud\Vision\V1\WebDetectionParams $var
@return $this | [
"Parameters",
"for",
"web",
"detection",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Vision/src/V1/ImageContext.php#L222-L228 | train |
googleapis/google-cloud-php | Datastore/src/V1/QueryResultBatch.php | QueryResultBatch.setEntityResultType | public function setEntityResultType($var)
{
GPBUtil::checkEnum($var, \Google\Cloud\Datastore\V1\EntityResult_ResultType::class);
$this->entity_result_type = $var;
return $this;
} | php | public function setEntityResultType($var)
{
GPBUtil::checkEnum($var, \Google\Cloud\Datastore\V1\EntityResult_ResultType::class);
$this->entity_result_type = $var;
return $this;
} | [
"public",
"function",
"setEntityResultType",
"(",
"$",
"var",
")",
"{",
"GPBUtil",
"::",
"checkEnum",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Cloud",
"\\",
"Datastore",
"\\",
"V1",
"\\",
"EntityResult_ResultType",
"::",
"class",
")",
";",
"$",
"this",... | The result type for every entity in `entity_results`.
Generated from protobuf field <code>.google.datastore.v1.EntityResult.ResultType entity_result_type = 1;</code>
@param int $var
@return $this | [
"The",
"result",
"type",
"for",
"every",
"entity",
"in",
"entity_results",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Datastore/src/V1/QueryResultBatch.php#L176-L182 | train |
googleapis/google-cloud-php | Datastore/src/V1/QueryResultBatch.php | QueryResultBatch.setEntityResults | public function setEntityResults($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Datastore\V1\EntityResult::class);
$this->entity_results = $arr;
return $this;
} | php | public function setEntityResults($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Datastore\V1\EntityResult::class);
$this->entity_results = $arr;
return $this;
} | [
"public",
"function",
"setEntityResults",
"(",
"$",
"var",
")",
"{",
"$",
"arr",
"=",
"GPBUtil",
"::",
"checkRepeatedField",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Protobuf",
"\\",
"Internal",
"\\",
"GPBType",
"::",
"MESSAGE",
",",
"\\",
"Google",
... | The results for this batch.
Generated from protobuf field <code>repeated .google.datastore.v1.EntityResult entity_results = 2;</code>
@param \Google\Cloud\Datastore\V1\EntityResult[]|\Google\Protobuf\Internal\RepeatedField $var
@return $this | [
"The",
"results",
"for",
"this",
"batch",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Datastore/src/V1/QueryResultBatch.php#L202-L208 | train |
googleapis/google-cloud-php | Datastore/src/V1/QueryResultBatch.php | QueryResultBatch.setMoreResults | public function setMoreResults($var)
{
GPBUtil::checkEnum($var, \Google\Cloud\Datastore\V1\QueryResultBatch_MoreResultsType::class);
$this->more_results = $var;
return $this;
} | php | public function setMoreResults($var)
{
GPBUtil::checkEnum($var, \Google\Cloud\Datastore\V1\QueryResultBatch_MoreResultsType::class);
$this->more_results = $var;
return $this;
} | [
"public",
"function",
"setMoreResults",
"(",
"$",
"var",
")",
"{",
"GPBUtil",
"::",
"checkEnum",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Cloud",
"\\",
"Datastore",
"\\",
"V1",
"\\",
"QueryResultBatch_MoreResultsType",
"::",
"class",
")",
";",
"$",
"th... | The state of the query after the current batch.
Generated from protobuf field <code>.google.datastore.v1.QueryResultBatch.MoreResultsType more_results = 5;</code>
@param int $var
@return $this | [
"The",
"state",
"of",
"the",
"query",
"after",
"the",
"current",
"batch",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Datastore/src/V1/QueryResultBatch.php#L254-L260 | train |
googleapis/google-cloud-php | Dlp/src/V2/InspectDataSourceDetails/Result.php | Result.setInfoTypeStats | public function setInfoTypeStats($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Dlp\V2\InfoTypeStats::class);
$this->info_type_stats = $arr;
return $this;
} | php | public function setInfoTypeStats($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Dlp\V2\InfoTypeStats::class);
$this->info_type_stats = $arr;
return $this;
} | [
"public",
"function",
"setInfoTypeStats",
"(",
"$",
"var",
")",
"{",
"$",
"arr",
"=",
"GPBUtil",
"::",
"checkRepeatedField",
"(",
"$",
"var",
",",
"\\",
"Google",
"\\",
"Protobuf",
"\\",
"Internal",
"\\",
"GPBType",
"::",
"MESSAGE",
",",
"\\",
"Google",
... | Statistics of how many instances of each info type were found during
inspect job.
Generated from protobuf field <code>repeated .google.privacy.dlp.v2.InfoTypeStats info_type_stats = 3;</code>
@param \Google\Cloud\Dlp\V2\InfoTypeStats[]|\Google\Protobuf\Internal\RepeatedField $var
@return $this | [
"Statistics",
"of",
"how",
"many",
"instances",
"of",
"each",
"info",
"type",
"were",
"found",
"during",
"inspect",
"job",
"."
] | ff5030ffa1f12904565509a7bc24ecc0bd794a3e | https://github.com/googleapis/google-cloud-php/blob/ff5030ffa1f12904565509a7bc24ecc0bd794a3e/Dlp/src/V2/InspectDataSourceDetails/Result.php#L130-L136 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.