diff --git a/AutoMl/src/V1/AnnotationPayload.php b/AutoMl/src/V1/AnnotationPayload.php
index b8f8c950ec22..067251bedf19 100644
--- a/AutoMl/src/V1/AnnotationPayload.php
+++ b/AutoMl/src/V1/AnnotationPayload.php
@@ -22,7 +22,7 @@ class AnnotationPayload extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string annotation_spec_id = 1;
*/
- private $annotation_spec_id = '';
+ protected $annotation_spec_id = '';
/**
* Output only. The value of
* [display_name][google.cloud.automl.v1.AnnotationSpec.display_name]
@@ -33,7 +33,7 @@ class AnnotationPayload extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string display_name = 5;
*/
- private $display_name = '';
+ protected $display_name = '';
protected $detail;
/**
diff --git a/AutoMl/src/V1/AnnotationSpec.php b/AutoMl/src/V1/AnnotationSpec.php
index 5732ab139d47..98fda32bccbe 100644
--- a/AutoMl/src/V1/AnnotationSpec.php
+++ b/AutoMl/src/V1/AnnotationSpec.php
@@ -22,7 +22,7 @@ class AnnotationSpec extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string name = 1;
*/
- private $name = '';
+ protected $name = '';
/**
* Required.
* The name of the annotation spec to show in the interface. The name can be
@@ -31,14 +31,14 @@ class AnnotationSpec extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string display_name = 2;
*/
- private $display_name = '';
+ protected $display_name = '';
/**
* Output only. The number of examples in the parent dataset
* labeled by the annotation spec.
*
* Generated from protobuf field int32 example_count = 9;
*/
- private $example_count = 0;
+ protected $example_count = 0;
/**
* Constructor.
diff --git a/AutoMl/src/V1/BatchPredictOperationMetadata.php b/AutoMl/src/V1/BatchPredictOperationMetadata.php
index 522fb0c7bbc8..902562cebbd6 100644
--- a/AutoMl/src/V1/BatchPredictOperationMetadata.php
+++ b/AutoMl/src/V1/BatchPredictOperationMetadata.php
@@ -21,13 +21,13 @@ class BatchPredictOperationMetadata extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.cloud.automl.v1.BatchPredictInputConfig input_config = 1;
*/
- private $input_config = null;
+ protected $input_config = null;
/**
* Output only. Information further describing this batch predict's output.
*
* Generated from protobuf field .google.cloud.automl.v1.BatchPredictOperationMetadata.BatchPredictOutputInfo output_info = 2;
*/
- private $output_info = null;
+ protected $output_info = null;
/**
* Constructor.
diff --git a/AutoMl/src/V1/BatchPredictRequest.php b/AutoMl/src/V1/BatchPredictRequest.php
index cf58220b4974..22872d31c268 100644
--- a/AutoMl/src/V1/BatchPredictRequest.php
+++ b/AutoMl/src/V1/BatchPredictRequest.php
@@ -21,20 +21,20 @@ class BatchPredictRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string name = 1;
*/
- private $name = '';
+ protected $name = '';
/**
* Required. The input configuration for batch prediction.
*
* Generated from protobuf field .google.cloud.automl.v1.BatchPredictInputConfig input_config = 3;
*/
- private $input_config = null;
+ protected $input_config = null;
/**
* Required. The Configuration specifying where output predictions should
* be written.
*
* Generated from protobuf field .google.cloud.automl.v1.BatchPredictOutputConfig output_config = 4;
*/
- private $output_config = null;
+ protected $output_config = null;
/**
* Additional domain-specific parameters for the predictions, any string must
* be up to 25000 characters long.
diff --git a/AutoMl/src/V1/BoundingBoxMetricsEntry.php b/AutoMl/src/V1/BoundingBoxMetricsEntry.php
index ee4060db1c17..700fd48cad18 100644
--- a/AutoMl/src/V1/BoundingBoxMetricsEntry.php
+++ b/AutoMl/src/V1/BoundingBoxMetricsEntry.php
@@ -22,13 +22,13 @@ class BoundingBoxMetricsEntry extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field float iou_threshold = 1;
*/
- private $iou_threshold = 0.0;
+ protected $iou_threshold = 0.0;
/**
* Output only. The mean average precision, most often close to au_prc.
*
* Generated from protobuf field float mean_average_precision = 2;
*/
- private $mean_average_precision = 0.0;
+ protected $mean_average_precision = 0.0;
/**
* Output only. Metrics for each label-match confidence_threshold from
* 0.05,0.10,...,0.95,0.96,0.97,0.98,0.99. Precision-recall curve is
diff --git a/AutoMl/src/V1/BoundingBoxMetricsEntry/ConfidenceMetricsEntry.php b/AutoMl/src/V1/BoundingBoxMetricsEntry/ConfidenceMetricsEntry.php
index 37238374baf7..7b96c02b4d5a 100644
--- a/AutoMl/src/V1/BoundingBoxMetricsEntry/ConfidenceMetricsEntry.php
+++ b/AutoMl/src/V1/BoundingBoxMetricsEntry/ConfidenceMetricsEntry.php
@@ -20,25 +20,25 @@ class ConfidenceMetricsEntry extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field float confidence_threshold = 1;
*/
- private $confidence_threshold = 0.0;
+ protected $confidence_threshold = 0.0;
/**
* Output only. Recall under the given confidence threshold.
*
* Generated from protobuf field float recall = 2;
*/
- private $recall = 0.0;
+ protected $recall = 0.0;
/**
* Output only. Precision under the given confidence threshold.
*
* Generated from protobuf field float precision = 3;
*/
- private $precision = 0.0;
+ protected $precision = 0.0;
/**
* Output only. The harmonic mean of recall and precision.
*
* Generated from protobuf field float f1_score = 4;
*/
- private $f1_score = 0.0;
+ protected $f1_score = 0.0;
/**
* Constructor.
diff --git a/AutoMl/src/V1/ClassificationAnnotation.php b/AutoMl/src/V1/ClassificationAnnotation.php
index c58b1ebf57eb..1a78afa7261b 100644
--- a/AutoMl/src/V1/ClassificationAnnotation.php
+++ b/AutoMl/src/V1/ClassificationAnnotation.php
@@ -24,7 +24,7 @@ class ClassificationAnnotation extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field float score = 1;
*/
- private $score = 0.0;
+ protected $score = 0.0;
/**
* Constructor.
diff --git a/AutoMl/src/V1/ClassificationEvaluationMetrics.php b/AutoMl/src/V1/ClassificationEvaluationMetrics.php
index 6828c34f51de..3759b7f7d120 100644
--- a/AutoMl/src/V1/ClassificationEvaluationMetrics.php
+++ b/AutoMl/src/V1/ClassificationEvaluationMetrics.php
@@ -21,20 +21,20 @@ class ClassificationEvaluationMetrics extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field float au_prc = 1;
*/
- private $au_prc = 0.0;
+ protected $au_prc = 0.0;
/**
* Output only. The Area Under Receiver Operating Characteristic curve metric.
* Micro-averaged for the overall evaluation.
*
* Generated from protobuf field float au_roc = 6;
*/
- private $au_roc = 0.0;
+ protected $au_roc = 0.0;
/**
* Output only. The Log Loss metric.
*
* Generated from protobuf field float log_loss = 7;
*/
- private $log_loss = 0.0;
+ protected $log_loss = 0.0;
/**
* Output only. Metrics for each confidence_threshold in
* 0.00,0.05,0.10,...,0.95,0.96,0.97,0.98,0.99 and
@@ -55,7 +55,7 @@ class ClassificationEvaluationMetrics extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.cloud.automl.v1.ClassificationEvaluationMetrics.ConfusionMatrix confusion_matrix = 4;
*/
- private $confusion_matrix = null;
+ protected $confusion_matrix = null;
/**
* Output only. The annotation spec ids used for this evaluation.
*
diff --git a/AutoMl/src/V1/ClassificationEvaluationMetrics/ConfidenceMetricsEntry.php b/AutoMl/src/V1/ClassificationEvaluationMetrics/ConfidenceMetricsEntry.php
index 8be1c0b926b1..116678177a5e 100644
--- a/AutoMl/src/V1/ClassificationEvaluationMetrics/ConfidenceMetricsEntry.php
+++ b/AutoMl/src/V1/ClassificationEvaluationMetrics/ConfidenceMetricsEntry.php
@@ -21,7 +21,7 @@ class ConfidenceMetricsEntry extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field float confidence_threshold = 1;
*/
- private $confidence_threshold = 0.0;
+ protected $confidence_threshold = 0.0;
/**
* Output only. Metrics are computed with an assumption that the model
* always returns at most this many predictions (ordered by their score,
@@ -29,32 +29,32 @@ class ConfidenceMetricsEntry extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field int32 position_threshold = 14;
*/
- private $position_threshold = 0;
+ protected $position_threshold = 0;
/**
* Output only. Recall (True Positive Rate) for the given confidence
* threshold.
*
* Generated from protobuf field float recall = 2;
*/
- private $recall = 0.0;
+ protected $recall = 0.0;
/**
* Output only. Precision for the given confidence threshold.
*
* Generated from protobuf field float precision = 3;
*/
- private $precision = 0.0;
+ protected $precision = 0.0;
/**
* Output only. False Positive Rate for the given confidence threshold.
*
* Generated from protobuf field float false_positive_rate = 8;
*/
- private $false_positive_rate = 0.0;
+ protected $false_positive_rate = 0.0;
/**
* Output only. The harmonic mean of recall and precision.
*
* Generated from protobuf field float f1_score = 4;
*/
- private $f1_score = 0.0;
+ protected $f1_score = 0.0;
/**
* Output only. The Recall (True Positive Rate) when only considering the
* label that has the highest prediction score and not below the confidence
@@ -62,7 +62,7 @@ class ConfidenceMetricsEntry extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field float recall_at1 = 5;
*/
- private $recall_at1 = 0.0;
+ protected $recall_at1 = 0.0;
/**
* Output only. The precision when only considering the label that has the
* highest prediction score and not below the confidence threshold for each
@@ -70,7 +70,7 @@ class ConfidenceMetricsEntry extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field float precision_at1 = 6;
*/
- private $precision_at1 = 0.0;
+ protected $precision_at1 = 0.0;
/**
* Output only. The False Positive Rate when only considering the label that
* has the highest prediction score and not below the confidence threshold
@@ -78,7 +78,7 @@ class ConfidenceMetricsEntry extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field float false_positive_rate_at1 = 9;
*/
- private $false_positive_rate_at1 = 0.0;
+ protected $false_positive_rate_at1 = 0.0;
/**
* Output only. The harmonic mean of
* [recall_at1][google.cloud.automl.v1.ClassificationEvaluationMetrics.ConfidenceMetricsEntry.recall_at1]
@@ -87,35 +87,35 @@ class ConfidenceMetricsEntry extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field float f1_score_at1 = 7;
*/
- private $f1_score_at1 = 0.0;
+ protected $f1_score_at1 = 0.0;
/**
* Output only. The number of model created labels that match a ground truth
* label.
*
* Generated from protobuf field int64 true_positive_count = 10;
*/
- private $true_positive_count = 0;
+ protected $true_positive_count = 0;
/**
* Output only. The number of model created labels that do not match a
* ground truth label.
*
* Generated from protobuf field int64 false_positive_count = 11;
*/
- private $false_positive_count = 0;
+ protected $false_positive_count = 0;
/**
* Output only. The number of ground truth labels that are not matched
* by a model created label.
*
* Generated from protobuf field int64 false_negative_count = 12;
*/
- private $false_negative_count = 0;
+ protected $false_negative_count = 0;
/**
* Output only. The number of labels that were not created by the model,
* but if they would, they would not match a ground truth label.
*
* Generated from protobuf field int64 true_negative_count = 13;
*/
- private $true_negative_count = 0;
+ protected $true_negative_count = 0;
/**
* Constructor.
diff --git a/AutoMl/src/V1/CreateDatasetRequest.php b/AutoMl/src/V1/CreateDatasetRequest.php
index d8303425bdda..e2f7a5385a54 100644
--- a/AutoMl/src/V1/CreateDatasetRequest.php
+++ b/AutoMl/src/V1/CreateDatasetRequest.php
@@ -21,13 +21,13 @@ class CreateDatasetRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string parent = 1;
*/
- private $parent = '';
+ protected $parent = '';
/**
* The dataset to create.
*
* Generated from protobuf field .google.cloud.automl.v1.Dataset dataset = 2;
*/
- private $dataset = null;
+ protected $dataset = null;
/**
* Constructor.
diff --git a/AutoMl/src/V1/CreateModelRequest.php b/AutoMl/src/V1/CreateModelRequest.php
index dada43c503ed..03fc72b4bd49 100644
--- a/AutoMl/src/V1/CreateModelRequest.php
+++ b/AutoMl/src/V1/CreateModelRequest.php
@@ -21,13 +21,13 @@ class CreateModelRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string parent = 1;
*/
- private $parent = '';
+ protected $parent = '';
/**
* The model to create.
*
* Generated from protobuf field .google.cloud.automl.v1.Model model = 4;
*/
- private $model = null;
+ protected $model = null;
/**
* Constructor.
diff --git a/AutoMl/src/V1/Dataset.php b/AutoMl/src/V1/Dataset.php
index 21a052f5a9be..36dbf8e694da 100644
--- a/AutoMl/src/V1/Dataset.php
+++ b/AutoMl/src/V1/Dataset.php
@@ -22,7 +22,7 @@ class Dataset extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string name = 1;
*/
- private $name = '';
+ protected $name = '';
/**
* Required. The name of the dataset to show in the interface. The name can be
* up to 32 characters long and can consist only of ASCII Latin letters A-Z
@@ -31,33 +31,33 @@ class Dataset extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string display_name = 2;
*/
- private $display_name = '';
+ protected $display_name = '';
/**
* User-provided description of the dataset. The description can be up to
* 25000 characters long.
*
* Generated from protobuf field string description = 3;
*/
- private $description = '';
+ protected $description = '';
/**
* Output only. The number of examples in the dataset.
*
* Generated from protobuf field int32 example_count = 21;
*/
- private $example_count = 0;
+ protected $example_count = 0;
/**
* Output only. Timestamp when this dataset was created.
*
* Generated from protobuf field .google.protobuf.Timestamp create_time = 14;
*/
- private $create_time = null;
+ protected $create_time = null;
/**
* Used to perform consistent read-modify-write updates. If not set, a blind
* "overwrite" update happens.
*
* Generated from protobuf field string etag = 17;
*/
- private $etag = '';
+ protected $etag = '';
/**
* Optional. The labels with user-defined metadata to organize your dataset.
* Label keys and values can be no longer than 64 characters
diff --git a/AutoMl/src/V1/DeleteDatasetRequest.php b/AutoMl/src/V1/DeleteDatasetRequest.php
index 6336e288b8a0..5ff80282c1bd 100644
--- a/AutoMl/src/V1/DeleteDatasetRequest.php
+++ b/AutoMl/src/V1/DeleteDatasetRequest.php
@@ -21,7 +21,7 @@ class DeleteDatasetRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string name = 1;
*/
- private $name = '';
+ protected $name = '';
/**
* Constructor.
diff --git a/AutoMl/src/V1/DeleteModelRequest.php b/AutoMl/src/V1/DeleteModelRequest.php
index 6d25093281b3..47a9e2e73bab 100644
--- a/AutoMl/src/V1/DeleteModelRequest.php
+++ b/AutoMl/src/V1/DeleteModelRequest.php
@@ -21,7 +21,7 @@ class DeleteModelRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string name = 1;
*/
- private $name = '';
+ protected $name = '';
/**
* Constructor.
diff --git a/AutoMl/src/V1/DeployModelRequest.php b/AutoMl/src/V1/DeployModelRequest.php
index 5c705e689323..93d93ffd773f 100644
--- a/AutoMl/src/V1/DeployModelRequest.php
+++ b/AutoMl/src/V1/DeployModelRequest.php
@@ -21,7 +21,7 @@ class DeployModelRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string name = 1;
*/
- private $name = '';
+ protected $name = '';
protected $model_deployment_metadata;
/**
diff --git a/AutoMl/src/V1/Document.php b/AutoMl/src/V1/Document.php
index 63d0e77f1ab2..6c32f28341e8 100644
--- a/AutoMl/src/V1/Document.php
+++ b/AutoMl/src/V1/Document.php
@@ -20,13 +20,13 @@ class Document extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.cloud.automl.v1.DocumentInputConfig input_config = 1;
*/
- private $input_config = null;
+ protected $input_config = null;
/**
* The plain text version of this document.
*
* Generated from protobuf field .google.cloud.automl.v1.TextSnippet document_text = 2;
*/
- private $document_text = null;
+ protected $document_text = null;
/**
* Describes the layout of the document.
* Sorted by [page_number][].
@@ -39,13 +39,13 @@ class Document extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.cloud.automl.v1.DocumentDimensions document_dimensions = 4;
*/
- private $document_dimensions = null;
+ protected $document_dimensions = null;
/**
* Number of pages in the document.
*
* Generated from protobuf field int32 page_count = 5;
*/
- private $page_count = 0;
+ protected $page_count = 0;
/**
* Constructor.
diff --git a/AutoMl/src/V1/Document/Layout.php b/AutoMl/src/V1/Document/Layout.php
index ed3289c81d4e..8a5089169c52 100644
--- a/AutoMl/src/V1/Document/Layout.php
+++ b/AutoMl/src/V1/Document/Layout.php
@@ -23,7 +23,7 @@ class Layout extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.cloud.automl.v1.TextSegment text_segment = 1;
*/
- private $text_segment = null;
+ protected $text_segment = null;
/**
* Page number of the
* [text_segment][google.cloud.automl.v1.Document.Layout.text_segment] in
@@ -31,7 +31,7 @@ class Layout extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field int32 page_number = 2;
*/
- private $page_number = 0;
+ protected $page_number = 0;
/**
* The position of the
* [text_segment][google.cloud.automl.v1.Document.Layout.text_segment] in
@@ -45,7 +45,7 @@ class Layout extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.cloud.automl.v1.BoundingPoly bounding_poly = 3;
*/
- private $bounding_poly = null;
+ protected $bounding_poly = null;
/**
* The type of the
* [text_segment][google.cloud.automl.v1.Document.Layout.text_segment] in
@@ -53,7 +53,7 @@ class Layout extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.cloud.automl.v1.Document.Layout.TextSegmentType text_segment_type = 4;
*/
- private $text_segment_type = 0;
+ protected $text_segment_type = 0;
/**
* Constructor.
diff --git a/AutoMl/src/V1/DocumentDimensions.php b/AutoMl/src/V1/DocumentDimensions.php
index c2c65a6a2102..31c9cd4a93f0 100644
--- a/AutoMl/src/V1/DocumentDimensions.php
+++ b/AutoMl/src/V1/DocumentDimensions.php
@@ -20,19 +20,19 @@ class DocumentDimensions extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.cloud.automl.v1.DocumentDimensions.DocumentDimensionUnit unit = 1;
*/
- private $unit = 0;
+ protected $unit = 0;
/**
* Width value of the document, works together with the unit.
*
* Generated from protobuf field float width = 2;
*/
- private $width = 0.0;
+ protected $width = 0.0;
/**
* Height value of the document, works together with the unit.
*
* Generated from protobuf field float height = 3;
*/
- private $height = 0.0;
+ protected $height = 0.0;
/**
* Constructor.
diff --git a/AutoMl/src/V1/DocumentInputConfig.php b/AutoMl/src/V1/DocumentInputConfig.php
index 5f724e00358c..d04dd5726fee 100644
--- a/AutoMl/src/V1/DocumentInputConfig.php
+++ b/AutoMl/src/V1/DocumentInputConfig.php
@@ -23,7 +23,7 @@ class DocumentInputConfig extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.cloud.automl.v1.GcsSource gcs_source = 1;
*/
- private $gcs_source = null;
+ protected $gcs_source = null;
/**
* Constructor.
diff --git a/AutoMl/src/V1/ExportDataOperationMetadata.php b/AutoMl/src/V1/ExportDataOperationMetadata.php
index 19359d0afe55..bd738269dc78 100644
--- a/AutoMl/src/V1/ExportDataOperationMetadata.php
+++ b/AutoMl/src/V1/ExportDataOperationMetadata.php
@@ -20,7 +20,7 @@ class ExportDataOperationMetadata extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.cloud.automl.v1.ExportDataOperationMetadata.ExportDataOutputInfo output_info = 1;
*/
- private $output_info = null;
+ protected $output_info = null;
/**
* Constructor.
diff --git a/AutoMl/src/V1/ExportDataRequest.php b/AutoMl/src/V1/ExportDataRequest.php
index 6b62c3fe1b1c..eaeb04b74f64 100644
--- a/AutoMl/src/V1/ExportDataRequest.php
+++ b/AutoMl/src/V1/ExportDataRequest.php
@@ -21,13 +21,13 @@ class ExportDataRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string name = 1;
*/
- private $name = '';
+ protected $name = '';
/**
* Required. The desired output location.
*
* Generated from protobuf field .google.cloud.automl.v1.OutputConfig output_config = 3;
*/
- private $output_config = null;
+ protected $output_config = null;
/**
* Constructor.
diff --git a/AutoMl/src/V1/ExportModelOperationMetadata.php b/AutoMl/src/V1/ExportModelOperationMetadata.php
index 14a6b9d7cdad..f1a7a6b5eaca 100644
--- a/AutoMl/src/V1/ExportModelOperationMetadata.php
+++ b/AutoMl/src/V1/ExportModelOperationMetadata.php
@@ -21,7 +21,7 @@ class ExportModelOperationMetadata extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.cloud.automl.v1.ExportModelOperationMetadata.ExportModelOutputInfo output_info = 2;
*/
- private $output_info = null;
+ protected $output_info = null;
/**
* Constructor.
diff --git a/AutoMl/src/V1/ExportModelOperationMetadata/ExportModelOutputInfo.php b/AutoMl/src/V1/ExportModelOperationMetadata/ExportModelOutputInfo.php
index a2683e09fd97..a474a71bfbcd 100644
--- a/AutoMl/src/V1/ExportModelOperationMetadata/ExportModelOutputInfo.php
+++ b/AutoMl/src/V1/ExportModelOperationMetadata/ExportModelOutputInfo.php
@@ -23,7 +23,7 @@ class ExportModelOutputInfo extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string gcs_output_directory = 1;
*/
- private $gcs_output_directory = '';
+ protected $gcs_output_directory = '';
/**
* Constructor.
diff --git a/AutoMl/src/V1/ExportModelRequest.php b/AutoMl/src/V1/ExportModelRequest.php
index acf56b07bbd5..516bb5973adb 100644
--- a/AutoMl/src/V1/ExportModelRequest.php
+++ b/AutoMl/src/V1/ExportModelRequest.php
@@ -22,13 +22,13 @@ class ExportModelRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string name = 1;
*/
- private $name = '';
+ protected $name = '';
/**
* Required. The desired output location and configuration.
*
* Generated from protobuf field .google.cloud.automl.v1.ModelExportOutputConfig output_config = 3;
*/
- private $output_config = null;
+ protected $output_config = null;
/**
* Constructor.
diff --git a/AutoMl/src/V1/GcsDestination.php b/AutoMl/src/V1/GcsDestination.php
index 0f691a9243e3..1507ee3b65c3 100644
--- a/AutoMl/src/V1/GcsDestination.php
+++ b/AutoMl/src/V1/GcsDestination.php
@@ -25,7 +25,7 @@ class GcsDestination extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string output_uri_prefix = 1 [(.google.api.field_behavior) = REQUIRED];
*/
- private $output_uri_prefix = '';
+ protected $output_uri_prefix = '';
/**
* Constructor.
diff --git a/AutoMl/src/V1/GetAnnotationSpecRequest.php b/AutoMl/src/V1/GetAnnotationSpecRequest.php
index 42d85e40b531..c1b85dd53629 100644
--- a/AutoMl/src/V1/GetAnnotationSpecRequest.php
+++ b/AutoMl/src/V1/GetAnnotationSpecRequest.php
@@ -21,7 +21,7 @@ class GetAnnotationSpecRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string name = 1;
*/
- private $name = '';
+ protected $name = '';
/**
* Constructor.
diff --git a/AutoMl/src/V1/GetDatasetRequest.php b/AutoMl/src/V1/GetDatasetRequest.php
index 1968ad4e5da5..63f03bc7ea26 100644
--- a/AutoMl/src/V1/GetDatasetRequest.php
+++ b/AutoMl/src/V1/GetDatasetRequest.php
@@ -21,7 +21,7 @@ class GetDatasetRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string name = 1;
*/
- private $name = '';
+ protected $name = '';
/**
* Constructor.
diff --git a/AutoMl/src/V1/GetModelEvaluationRequest.php b/AutoMl/src/V1/GetModelEvaluationRequest.php
index e3237dc881c6..d8bc15a8cb87 100644
--- a/AutoMl/src/V1/GetModelEvaluationRequest.php
+++ b/AutoMl/src/V1/GetModelEvaluationRequest.php
@@ -21,7 +21,7 @@ class GetModelEvaluationRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string name = 1;
*/
- private $name = '';
+ protected $name = '';
/**
* Constructor.
diff --git a/AutoMl/src/V1/GetModelRequest.php b/AutoMl/src/V1/GetModelRequest.php
index 6b1151961d1c..4d5a6cff89b3 100644
--- a/AutoMl/src/V1/GetModelRequest.php
+++ b/AutoMl/src/V1/GetModelRequest.php
@@ -21,7 +21,7 @@ class GetModelRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string name = 1;
*/
- private $name = '';
+ protected $name = '';
/**
* Constructor.
diff --git a/AutoMl/src/V1/Image.php b/AutoMl/src/V1/Image.php
index c6a2115ea5ac..01b9c6a28487 100644
--- a/AutoMl/src/V1/Image.php
+++ b/AutoMl/src/V1/Image.php
@@ -21,7 +21,7 @@ class Image extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string thumbnail_uri = 4;
*/
- private $thumbnail_uri = '';
+ protected $thumbnail_uri = '';
protected $data;
/**
diff --git a/AutoMl/src/V1/ImageClassificationDatasetMetadata.php b/AutoMl/src/V1/ImageClassificationDatasetMetadata.php
index f440e8fc1ca7..606e7684a81b 100644
--- a/AutoMl/src/V1/ImageClassificationDatasetMetadata.php
+++ b/AutoMl/src/V1/ImageClassificationDatasetMetadata.php
@@ -20,7 +20,7 @@ class ImageClassificationDatasetMetadata extends \Google\Protobuf\Internal\Messa
*
* Generated from protobuf field .google.cloud.automl.v1.ClassificationType classification_type = 1;
*/
- private $classification_type = 0;
+ protected $classification_type = 0;
/**
* Constructor.
diff --git a/AutoMl/src/V1/ImageClassificationModelDeploymentMetadata.php b/AutoMl/src/V1/ImageClassificationModelDeploymentMetadata.php
index 25eec10b9327..4bf20904863d 100644
--- a/AutoMl/src/V1/ImageClassificationModelDeploymentMetadata.php
+++ b/AutoMl/src/V1/ImageClassificationModelDeploymentMetadata.php
@@ -24,7 +24,7 @@ class ImageClassificationModelDeploymentMetadata extends \Google\Protobuf\Intern
*
* Generated from protobuf field int64 node_count = 1;
*/
- private $node_count = 0;
+ protected $node_count = 0;
/**
* Constructor.
diff --git a/AutoMl/src/V1/ImageClassificationModelMetadata.php b/AutoMl/src/V1/ImageClassificationModelMetadata.php
index 8db48bc9c2f6..b42eb18a8b09 100644
--- a/AutoMl/src/V1/ImageClassificationModelMetadata.php
+++ b/AutoMl/src/V1/ImageClassificationModelMetadata.php
@@ -24,7 +24,7 @@ class ImageClassificationModelMetadata extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string base_model_id = 1;
*/
- private $base_model_id = '';
+ protected $base_model_id = '';
/**
* The train budget of creating this model, expressed in milli node
* hours i.e. 1,000 value in this field means 1 node hour. The actual
@@ -43,7 +43,7 @@ class ImageClassificationModelMetadata extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field int64 train_budget_milli_node_hours = 16;
*/
- private $train_budget_milli_node_hours = 0;
+ protected $train_budget_milli_node_hours = 0;
/**
* Output only. The actual train cost of creating this model, expressed in
* milli node hours, i.e. 1,000 value in this field means 1 node hour.
@@ -51,14 +51,14 @@ class ImageClassificationModelMetadata extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field int64 train_cost_milli_node_hours = 17;
*/
- private $train_cost_milli_node_hours = 0;
+ protected $train_cost_milli_node_hours = 0;
/**
* Output only. The reason that this create model operation stopped,
* e.g. `BUDGET_REACHED`, `MODEL_CONVERGED`.
*
* Generated from protobuf field string stop_reason = 5;
*/
- private $stop_reason = '';
+ protected $stop_reason = '';
/**
* Optional. Type of the model. The available values are:
* * `cloud` - Model to be used via prediction calls to AutoML API.
@@ -100,14 +100,14 @@ class ImageClassificationModelMetadata extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string model_type = 7;
*/
- private $model_type = '';
+ protected $model_type = '';
/**
* Output only. An approximate number of online prediction QPS that can
* be supported by this model per each node on which it is deployed.
*
* Generated from protobuf field double node_qps = 13;
*/
- private $node_qps = 0.0;
+ protected $node_qps = 0.0;
/**
* Output only. The number of nodes this model is deployed on. A node is an
* abstraction of a machine resource, which can handle online prediction QPS
@@ -115,7 +115,7 @@ class ImageClassificationModelMetadata extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field int64 node_count = 14;
*/
- private $node_count = 0;
+ protected $node_count = 0;
/**
* Constructor.
diff --git a/AutoMl/src/V1/ImageObjectDetectionAnnotation.php b/AutoMl/src/V1/ImageObjectDetectionAnnotation.php
index 0efb6da7837d..d8ec5504c7b6 100644
--- a/AutoMl/src/V1/ImageObjectDetectionAnnotation.php
+++ b/AutoMl/src/V1/ImageObjectDetectionAnnotation.php
@@ -20,14 +20,14 @@ class ImageObjectDetectionAnnotation extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.cloud.automl.v1.BoundingPoly bounding_box = 1;
*/
- private $bounding_box = null;
+ protected $bounding_box = null;
/**
* Output only. The confidence that this annotation is positive for the parent
* example, value in [0, 1], higher means higher positivity confidence.
*
* Generated from protobuf field float score = 2;
*/
- private $score = 0.0;
+ protected $score = 0.0;
/**
* Constructor.
diff --git a/AutoMl/src/V1/ImageObjectDetectionEvaluationMetrics.php b/AutoMl/src/V1/ImageObjectDetectionEvaluationMetrics.php
index 87d73708557b..250737131131 100644
--- a/AutoMl/src/V1/ImageObjectDetectionEvaluationMetrics.php
+++ b/AutoMl/src/V1/ImageObjectDetectionEvaluationMetrics.php
@@ -22,7 +22,7 @@ class ImageObjectDetectionEvaluationMetrics extends \Google\Protobuf\Internal\Me
*
* Generated from protobuf field int32 evaluated_bounding_box_count = 1;
*/
- private $evaluated_bounding_box_count = 0;
+ protected $evaluated_bounding_box_count = 0;
/**
* Output only. The bounding boxes match metrics for each
* Intersection-over-union threshold 0.05,0.10,...,0.95,0.96,0.97,0.98,0.99
@@ -38,7 +38,7 @@ class ImageObjectDetectionEvaluationMetrics extends \Google\Protobuf\Internal\Me
*
* Generated from protobuf field float bounding_box_mean_average_precision = 3;
*/
- private $bounding_box_mean_average_precision = 0.0;
+ protected $bounding_box_mean_average_precision = 0.0;
/**
* Constructor.
diff --git a/AutoMl/src/V1/ImageObjectDetectionModelDeploymentMetadata.php b/AutoMl/src/V1/ImageObjectDetectionModelDeploymentMetadata.php
index a90ac64edd7e..f380dc9ca8a5 100644
--- a/AutoMl/src/V1/ImageObjectDetectionModelDeploymentMetadata.php
+++ b/AutoMl/src/V1/ImageObjectDetectionModelDeploymentMetadata.php
@@ -24,7 +24,7 @@ class ImageObjectDetectionModelDeploymentMetadata extends \Google\Protobuf\Inter
*
* Generated from protobuf field int64 node_count = 1;
*/
- private $node_count = 0;
+ protected $node_count = 0;
/**
* Constructor.
diff --git a/AutoMl/src/V1/ImageObjectDetectionModelMetadata.php b/AutoMl/src/V1/ImageObjectDetectionModelMetadata.php
index a256fffa8e38..6f97ceaf5f4f 100644
--- a/AutoMl/src/V1/ImageObjectDetectionModelMetadata.php
+++ b/AutoMl/src/V1/ImageObjectDetectionModelMetadata.php
@@ -27,7 +27,7 @@ class ImageObjectDetectionModelMetadata extends \Google\Protobuf\Internal\Messag
*
* Generated from protobuf field string model_type = 1;
*/
- private $model_type = '';
+ protected $model_type = '';
/**
* Output only. The number of nodes this model is deployed on. A node is an
* abstraction of a machine resource, which can handle online prediction QPS
@@ -35,21 +35,21 @@ class ImageObjectDetectionModelMetadata extends \Google\Protobuf\Internal\Messag
*
* Generated from protobuf field int64 node_count = 3;
*/
- private $node_count = 0;
+ protected $node_count = 0;
/**
* Output only. An approximate number of online prediction QPS that can
* be supported by this model per each node on which it is deployed.
*
* Generated from protobuf field double node_qps = 4;
*/
- private $node_qps = 0.0;
+ protected $node_qps = 0.0;
/**
* Output only. The reason that this create model operation stopped,
* e.g. `BUDGET_REACHED`, `MODEL_CONVERGED`.
*
* Generated from protobuf field string stop_reason = 5;
*/
- private $stop_reason = '';
+ protected $stop_reason = '';
/**
* The train budget of creating this model, expressed in milli node
* hours i.e. 1,000 value in this field means 1 node hour. The actual
@@ -69,7 +69,7 @@ class ImageObjectDetectionModelMetadata extends \Google\Protobuf\Internal\Messag
*
* Generated from protobuf field int64 train_budget_milli_node_hours = 6;
*/
- private $train_budget_milli_node_hours = 0;
+ protected $train_budget_milli_node_hours = 0;
/**
* Output only. The actual train cost of creating this model, expressed in
* milli node hours, i.e. 1,000 value in this field means 1 node hour.
@@ -77,7 +77,7 @@ class ImageObjectDetectionModelMetadata extends \Google\Protobuf\Internal\Messag
*
* Generated from protobuf field int64 train_cost_milli_node_hours = 7;
*/
- private $train_cost_milli_node_hours = 0;
+ protected $train_cost_milli_node_hours = 0;
/**
* Constructor.
diff --git a/AutoMl/src/V1/ImportDataRequest.php b/AutoMl/src/V1/ImportDataRequest.php
index 4dfcfb76fd00..2ea7947c0522 100644
--- a/AutoMl/src/V1/ImportDataRequest.php
+++ b/AutoMl/src/V1/ImportDataRequest.php
@@ -22,14 +22,14 @@ class ImportDataRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string name = 1;
*/
- private $name = '';
+ protected $name = '';
/**
* Required. The desired input location and its domain specific semantics,
* if any.
*
* Generated from protobuf field .google.cloud.automl.v1.InputConfig input_config = 3;
*/
- private $input_config = null;
+ protected $input_config = null;
/**
* Constructor.
diff --git a/AutoMl/src/V1/ListDatasetsRequest.php b/AutoMl/src/V1/ListDatasetsRequest.php
index 602f91676e21..d1a3ed29d9aa 100644
--- a/AutoMl/src/V1/ListDatasetsRequest.php
+++ b/AutoMl/src/V1/ListDatasetsRequest.php
@@ -21,7 +21,7 @@ class ListDatasetsRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string parent = 1;
*/
- private $parent = '';
+ protected $parent = '';
/**
* An expression for filtering the results of the request.
* * `dataset_metadata` - for existence of the case (e.g.
@@ -32,14 +32,14 @@ class ListDatasetsRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string filter = 3;
*/
- private $filter = '';
+ protected $filter = '';
/**
* Requested page size. Server may return fewer results than requested.
* If unspecified, server will pick a default size.
*
* Generated from protobuf field int32 page_size = 4;
*/
- private $page_size = 0;
+ protected $page_size = 0;
/**
* A token identifying a page of results for the server to return
* Typically obtained via
@@ -49,7 +49,7 @@ class ListDatasetsRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string page_token = 6;
*/
- private $page_token = '';
+ protected $page_token = '';
/**
* Constructor.
diff --git a/AutoMl/src/V1/ListDatasetsResponse.php b/AutoMl/src/V1/ListDatasetsResponse.php
index ded0c0cd7c68..d2d1df99e904 100644
--- a/AutoMl/src/V1/ListDatasetsResponse.php
+++ b/AutoMl/src/V1/ListDatasetsResponse.php
@@ -30,7 +30,7 @@ class ListDatasetsResponse extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string next_page_token = 2;
*/
- private $next_page_token = '';
+ protected $next_page_token = '';
/**
* Constructor.
diff --git a/AutoMl/src/V1/ListModelEvaluationsRequest.php b/AutoMl/src/V1/ListModelEvaluationsRequest.php
index d47acb6cf000..0eddc886edaa 100644
--- a/AutoMl/src/V1/ListModelEvaluationsRequest.php
+++ b/AutoMl/src/V1/ListModelEvaluationsRequest.php
@@ -23,7 +23,7 @@ class ListModelEvaluationsRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string parent = 1;
*/
- private $parent = '';
+ protected $parent = '';
/**
* An expression for filtering the results of the request.
* * `annotation_spec_id` - for =, != or existence. See example below for
@@ -36,13 +36,13 @@ class ListModelEvaluationsRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string filter = 3;
*/
- private $filter = '';
+ protected $filter = '';
/**
* Requested page size.
*
* Generated from protobuf field int32 page_size = 4;
*/
- private $page_size = 0;
+ protected $page_size = 0;
/**
* A token identifying a page of results for the server to return.
* Typically obtained via
@@ -53,7 +53,7 @@ class ListModelEvaluationsRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string page_token = 6;
*/
- private $page_token = '';
+ protected $page_token = '';
/**
* Constructor.
diff --git a/AutoMl/src/V1/ListModelEvaluationsResponse.php b/AutoMl/src/V1/ListModelEvaluationsResponse.php
index 362dff479f4e..7dff1b6e9f0b 100644
--- a/AutoMl/src/V1/ListModelEvaluationsResponse.php
+++ b/AutoMl/src/V1/ListModelEvaluationsResponse.php
@@ -32,7 +32,7 @@ class ListModelEvaluationsResponse extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string next_page_token = 2;
*/
- private $next_page_token = '';
+ protected $next_page_token = '';
/**
* Constructor.
diff --git a/AutoMl/src/V1/ListModelsRequest.php b/AutoMl/src/V1/ListModelsRequest.php
index 82dcf18f9a04..caedcef6901c 100644
--- a/AutoMl/src/V1/ListModelsRequest.php
+++ b/AutoMl/src/V1/ListModelsRequest.php
@@ -21,7 +21,7 @@ class ListModelsRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string parent = 1;
*/
- private $parent = '';
+ protected $parent = '';
/**
* An expression for filtering the results of the request.
* * `model_metadata` - for existence of the case (e.g.
@@ -33,13 +33,13 @@ class ListModelsRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string filter = 3;
*/
- private $filter = '';
+ protected $filter = '';
/**
* Requested page size.
*
* Generated from protobuf field int32 page_size = 4;
*/
- private $page_size = 0;
+ protected $page_size = 0;
/**
* A token identifying a page of results for the server to return
* Typically obtained via
@@ -49,7 +49,7 @@ class ListModelsRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string page_token = 6;
*/
- private $page_token = '';
+ protected $page_token = '';
/**
* Constructor.
diff --git a/AutoMl/src/V1/ListModelsResponse.php b/AutoMl/src/V1/ListModelsResponse.php
index c7452bbfb937..3c93c75c6b0d 100644
--- a/AutoMl/src/V1/ListModelsResponse.php
+++ b/AutoMl/src/V1/ListModelsResponse.php
@@ -30,7 +30,7 @@ class ListModelsResponse extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string next_page_token = 2;
*/
- private $next_page_token = '';
+ protected $next_page_token = '';
/**
* Constructor.
diff --git a/AutoMl/src/V1/Model.php b/AutoMl/src/V1/Model.php
index 4ca5c90d87a7..c9586ac1afa7 100644
--- a/AutoMl/src/V1/Model.php
+++ b/AutoMl/src/V1/Model.php
@@ -21,7 +21,7 @@ class Model extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string name = 1;
*/
- private $name = '';
+ protected $name = '';
/**
* Required. The name of the model to show in the interface. The name can be
* up to 32 characters long and can consist only of ASCII Latin letters A-Z
@@ -30,40 +30,40 @@ class Model extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string display_name = 2;
*/
- private $display_name = '';
+ protected $display_name = '';
/**
* Required. The resource ID of the dataset used to create the model. The dataset must
* come from the same ancestor project and location.
*
* Generated from protobuf field string dataset_id = 3;
*/
- private $dataset_id = '';
+ protected $dataset_id = '';
/**
* Output only. Timestamp when the model training finished and can be used for prediction.
*
* Generated from protobuf field .google.protobuf.Timestamp create_time = 7;
*/
- private $create_time = null;
+ protected $create_time = null;
/**
* Output only. Timestamp when this model was last updated.
*
* Generated from protobuf field .google.protobuf.Timestamp update_time = 11;
*/
- private $update_time = null;
+ protected $update_time = null;
/**
* Output only. Deployment state of the model. A model can only serve
* prediction requests after it gets deployed.
*
* Generated from protobuf field .google.cloud.automl.v1.Model.DeploymentState deployment_state = 8;
*/
- private $deployment_state = 0;
+ protected $deployment_state = 0;
/**
* Used to perform a consistent read-modify-write updates. If not set, a blind
* "overwrite" update happens.
*
* Generated from protobuf field string etag = 10;
*/
- private $etag = '';
+ protected $etag = '';
/**
* Optional. The labels with user-defined metadata to organize your model.
* Label keys and values can be no longer than 64 characters
diff --git a/AutoMl/src/V1/ModelEvaluation.php b/AutoMl/src/V1/ModelEvaluation.php
index 4954db545bb4..1fb91998a350 100644
--- a/AutoMl/src/V1/ModelEvaluation.php
+++ b/AutoMl/src/V1/ModelEvaluation.php
@@ -22,14 +22,14 @@ class ModelEvaluation extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string name = 1;
*/
- private $name = '';
+ protected $name = '';
/**
* Output only. The ID of the annotation spec that the model evaluation
* applies to. The The ID is empty for the overall model evaluation.
*
* Generated from protobuf field string annotation_spec_id = 2;
*/
- private $annotation_spec_id = '';
+ protected $annotation_spec_id = '';
/**
* Output only. The value of
* [display_name][google.cloud.automl.v1.AnnotationSpec.display_name]
@@ -40,13 +40,13 @@ class ModelEvaluation extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string display_name = 15;
*/
- private $display_name = '';
+ protected $display_name = '';
/**
* Output only. Timestamp when this model evaluation was created.
*
* Generated from protobuf field .google.protobuf.Timestamp create_time = 5;
*/
- private $create_time = null;
+ protected $create_time = null;
/**
* Output only. The number of examples used for model evaluation, i.e. for
* which ground truth from time of model creation is compared against the
@@ -59,7 +59,7 @@ class ModelEvaluation extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field int32 evaluated_example_count = 6;
*/
- private $evaluated_example_count = 0;
+ protected $evaluated_example_count = 0;
protected $metrics;
/**
diff --git a/AutoMl/src/V1/ModelExportOutputConfig.php b/AutoMl/src/V1/ModelExportOutputConfig.php
index e85f1bad299a..a3140e4e487c 100644
--- a/AutoMl/src/V1/ModelExportOutputConfig.php
+++ b/AutoMl/src/V1/ModelExportOutputConfig.php
@@ -40,7 +40,7 @@ class ModelExportOutputConfig extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string model_format = 4;
*/
- private $model_format = '';
+ protected $model_format = '';
/**
* Additional model-type and format specific parameters describing the
* requirements for the to be exported model files, any string must be up to
diff --git a/AutoMl/src/V1/NormalizedVertex.php b/AutoMl/src/V1/NormalizedVertex.php
index f51ab0e1a838..f32853bc25e8 100644
--- a/AutoMl/src/V1/NormalizedVertex.php
+++ b/AutoMl/src/V1/NormalizedVertex.php
@@ -24,13 +24,13 @@ class NormalizedVertex extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field float x = 1;
*/
- private $x = 0.0;
+ protected $x = 0.0;
/**
* Required. Vertical coordinate.
*
* Generated from protobuf field float y = 2;
*/
- private $y = 0.0;
+ protected $y = 0.0;
/**
* Constructor.
diff --git a/AutoMl/src/V1/OperationMetadata.php b/AutoMl/src/V1/OperationMetadata.php
index 046303f20d49..a00aebca9ddf 100644
--- a/AutoMl/src/V1/OperationMetadata.php
+++ b/AutoMl/src/V1/OperationMetadata.php
@@ -21,7 +21,7 @@ class OperationMetadata extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field int32 progress_percent = 13;
*/
- private $progress_percent = 0;
+ protected $progress_percent = 0;
/**
* Output only. Partial failures encountered.
* E.g. single files that couldn't be read.
@@ -36,13 +36,13 @@ class OperationMetadata extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.protobuf.Timestamp create_time = 3;
*/
- private $create_time = null;
+ protected $create_time = null;
/**
* Output only. Time when the operation was updated for the last time.
*
* Generated from protobuf field .google.protobuf.Timestamp update_time = 4;
*/
- private $update_time = null;
+ protected $update_time = null;
protected $details;
/**
diff --git a/AutoMl/src/V1/PredictRequest.php b/AutoMl/src/V1/PredictRequest.php
index f937f624773a..993fb9490517 100644
--- a/AutoMl/src/V1/PredictRequest.php
+++ b/AutoMl/src/V1/PredictRequest.php
@@ -21,14 +21,14 @@ class PredictRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string name = 1;
*/
- private $name = '';
+ protected $name = '';
/**
* Required. Payload to perform a prediction on. The payload must match the
* problem type that the model was trained to solve.
*
* Generated from protobuf field .google.cloud.automl.v1.ExamplePayload payload = 2;
*/
- private $payload = null;
+ protected $payload = null;
/**
* Additional domain-specific parameters, any string must be up to 25000
* characters long.
diff --git a/AutoMl/src/V1/PredictResponse.php b/AutoMl/src/V1/PredictResponse.php
index 7c95c9c6416b..41c8a45da414 100644
--- a/AutoMl/src/V1/PredictResponse.php
+++ b/AutoMl/src/V1/PredictResponse.php
@@ -38,7 +38,7 @@ class PredictResponse extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.cloud.automl.v1.ExamplePayload preprocessed_input = 3;
*/
- private $preprocessed_input = null;
+ protected $preprocessed_input = null;
/**
* Additional domain-specific prediction response metadata.
* * For Image Object Detection:
diff --git a/AutoMl/src/V1/TextClassificationDatasetMetadata.php b/AutoMl/src/V1/TextClassificationDatasetMetadata.php
index 8ab44ffbe668..d174bc8d04a8 100644
--- a/AutoMl/src/V1/TextClassificationDatasetMetadata.php
+++ b/AutoMl/src/V1/TextClassificationDatasetMetadata.php
@@ -20,7 +20,7 @@ class TextClassificationDatasetMetadata extends \Google\Protobuf\Internal\Messag
*
* Generated from protobuf field .google.cloud.automl.v1.ClassificationType classification_type = 1;
*/
- private $classification_type = 0;
+ protected $classification_type = 0;
/**
* Constructor.
diff --git a/AutoMl/src/V1/TextClassificationModelMetadata.php b/AutoMl/src/V1/TextClassificationModelMetadata.php
index 75032569fd11..2d1a81c94f42 100644
--- a/AutoMl/src/V1/TextClassificationModelMetadata.php
+++ b/AutoMl/src/V1/TextClassificationModelMetadata.php
@@ -20,7 +20,7 @@ class TextClassificationModelMetadata extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.cloud.automl.v1.ClassificationType classification_type = 3;
*/
- private $classification_type = 0;
+ protected $classification_type = 0;
/**
* Constructor.
diff --git a/AutoMl/src/V1/TextExtractionAnnotation.php b/AutoMl/src/V1/TextExtractionAnnotation.php
index 9b52f4e85239..4f03df5c95a9 100644
--- a/AutoMl/src/V1/TextExtractionAnnotation.php
+++ b/AutoMl/src/V1/TextExtractionAnnotation.php
@@ -21,7 +21,7 @@ class TextExtractionAnnotation extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field float score = 1;
*/
- private $score = 0.0;
+ protected $score = 0.0;
protected $annotation;
/**
diff --git a/AutoMl/src/V1/TextExtractionEvaluationMetrics.php b/AutoMl/src/V1/TextExtractionEvaluationMetrics.php
index 1d4d6d617c69..5c1d68e1fede 100644
--- a/AutoMl/src/V1/TextExtractionEvaluationMetrics.php
+++ b/AutoMl/src/V1/TextExtractionEvaluationMetrics.php
@@ -20,7 +20,7 @@ class TextExtractionEvaluationMetrics extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field float au_prc = 1;
*/
- private $au_prc = 0.0;
+ protected $au_prc = 0.0;
/**
* Output only. Metrics that have confidence thresholds.
* Precision-recall curve can be derived from it.
diff --git a/AutoMl/src/V1/TextExtractionEvaluationMetrics/ConfidenceMetricsEntry.php b/AutoMl/src/V1/TextExtractionEvaluationMetrics/ConfidenceMetricsEntry.php
index c5a91cf016bc..8c833d3d60d6 100644
--- a/AutoMl/src/V1/TextExtractionEvaluationMetrics/ConfidenceMetricsEntry.php
+++ b/AutoMl/src/V1/TextExtractionEvaluationMetrics/ConfidenceMetricsEntry.php
@@ -22,25 +22,25 @@ class ConfidenceMetricsEntry extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field float confidence_threshold = 1;
*/
- private $confidence_threshold = 0.0;
+ protected $confidence_threshold = 0.0;
/**
* Output only. Recall under the given confidence threshold.
*
* Generated from protobuf field float recall = 3;
*/
- private $recall = 0.0;
+ protected $recall = 0.0;
/**
* Output only. Precision under the given confidence threshold.
*
* Generated from protobuf field float precision = 4;
*/
- private $precision = 0.0;
+ protected $precision = 0.0;
/**
* Output only. The harmonic mean of recall and precision.
*
* Generated from protobuf field float f1_score = 5;
*/
- private $f1_score = 0.0;
+ protected $f1_score = 0.0;
/**
* Constructor.
diff --git a/AutoMl/src/V1/TextSegment.php b/AutoMl/src/V1/TextSegment.php
index e99bab0e2c84..9ccbf189ab85 100644
--- a/AutoMl/src/V1/TextSegment.php
+++ b/AutoMl/src/V1/TextSegment.php
@@ -20,14 +20,14 @@ class TextSegment extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string content = 3;
*/
- private $content = '';
+ protected $content = '';
/**
* Required. Zero-based character index of the first character of the text
* segment (counting characters from the beginning of the text).
*
* Generated from protobuf field int64 start_offset = 1;
*/
- private $start_offset = 0;
+ protected $start_offset = 0;
/**
* Required. Zero-based character index of the first character past the end of
* the text segment (counting character from the beginning of the text).
@@ -35,7 +35,7 @@ class TextSegment extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field int64 end_offset = 2;
*/
- private $end_offset = 0;
+ protected $end_offset = 0;
/**
* Constructor.
diff --git a/AutoMl/src/V1/TextSentimentAnnotation.php b/AutoMl/src/V1/TextSentimentAnnotation.php
index f6b0a66ee87c..c86b0b95f2ca 100644
--- a/AutoMl/src/V1/TextSentimentAnnotation.php
+++ b/AutoMl/src/V1/TextSentimentAnnotation.php
@@ -31,7 +31,7 @@ class TextSentimentAnnotation extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field int32 sentiment = 1;
*/
- private $sentiment = 0;
+ protected $sentiment = 0;
/**
* Constructor.
diff --git a/AutoMl/src/V1/TextSentimentDatasetMetadata.php b/AutoMl/src/V1/TextSentimentDatasetMetadata.php
index e189a46aa6d3..e97b270112db 100644
--- a/AutoMl/src/V1/TextSentimentDatasetMetadata.php
+++ b/AutoMl/src/V1/TextSentimentDatasetMetadata.php
@@ -24,7 +24,7 @@ class TextSentimentDatasetMetadata extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field int32 sentiment_max = 1;
*/
- private $sentiment_max = 0;
+ protected $sentiment_max = 0;
/**
* Constructor.
diff --git a/AutoMl/src/V1/TextSentimentEvaluationMetrics.php b/AutoMl/src/V1/TextSentimentEvaluationMetrics.php
index ecf347408483..f24ea84ab807 100644
--- a/AutoMl/src/V1/TextSentimentEvaluationMetrics.php
+++ b/AutoMl/src/V1/TextSentimentEvaluationMetrics.php
@@ -20,47 +20,47 @@ class TextSentimentEvaluationMetrics extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field float precision = 1;
*/
- private $precision = 0.0;
+ protected $precision = 0.0;
/**
* Output only. Recall.
*
* Generated from protobuf field float recall = 2;
*/
- private $recall = 0.0;
+ protected $recall = 0.0;
/**
* Output only. The harmonic mean of recall and precision.
*
* Generated from protobuf field float f1_score = 3;
*/
- private $f1_score = 0.0;
+ protected $f1_score = 0.0;
/**
* Output only. Mean absolute error. Only set for the overall model
* evaluation, not for evaluation of a single annotation spec.
*
* Generated from protobuf field float mean_absolute_error = 4;
*/
- private $mean_absolute_error = 0.0;
+ protected $mean_absolute_error = 0.0;
/**
* Output only. Mean squared error. Only set for the overall model
* evaluation, not for evaluation of a single annotation spec.
*
* Generated from protobuf field float mean_squared_error = 5;
*/
- private $mean_squared_error = 0.0;
+ protected $mean_squared_error = 0.0;
/**
* Output only. Linear weighted kappa. Only set for the overall model
* evaluation, not for evaluation of a single annotation spec.
*
* Generated from protobuf field float linear_kappa = 6;
*/
- private $linear_kappa = 0.0;
+ protected $linear_kappa = 0.0;
/**
* Output only. Quadratic weighted kappa. Only set for the overall model
* evaluation, not for evaluation of a single annotation spec.
*
* Generated from protobuf field float quadratic_kappa = 7;
*/
- private $quadratic_kappa = 0.0;
+ protected $quadratic_kappa = 0.0;
/**
* Output only. Confusion matrix of the evaluation.
* Only set for the overall model evaluation, not for evaluation of a single
@@ -68,7 +68,7 @@ class TextSentimentEvaluationMetrics extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.cloud.automl.v1.ClassificationEvaluationMetrics.ConfusionMatrix confusion_matrix = 8;
*/
- private $confusion_matrix = null;
+ protected $confusion_matrix = null;
/**
* Constructor.
diff --git a/AutoMl/src/V1/TextSnippet.php b/AutoMl/src/V1/TextSnippet.php
index 15d7aa163a07..c4ce28f6ef57 100644
--- a/AutoMl/src/V1/TextSnippet.php
+++ b/AutoMl/src/V1/TextSnippet.php
@@ -21,7 +21,7 @@ class TextSnippet extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string content = 1;
*/
- private $content = '';
+ protected $content = '';
/**
* Optional. The format of
* [content][google.cloud.automl.v1.TextSnippet.content]. Currently the only
@@ -31,13 +31,13 @@ class TextSnippet extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string mime_type = 2;
*/
- private $mime_type = '';
+ protected $mime_type = '';
/**
* Output only. HTTP URI where you can download the content.
*
* Generated from protobuf field string content_uri = 4;
*/
- private $content_uri = '';
+ protected $content_uri = '';
/**
* Constructor.
diff --git a/AutoMl/src/V1/TranslationAnnotation.php b/AutoMl/src/V1/TranslationAnnotation.php
index 6e0f78e58b1d..938cd5e48bec 100644
--- a/AutoMl/src/V1/TranslationAnnotation.php
+++ b/AutoMl/src/V1/TranslationAnnotation.php
@@ -20,7 +20,7 @@ class TranslationAnnotation extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.cloud.automl.v1.TextSnippet translated_content = 1;
*/
- private $translated_content = null;
+ protected $translated_content = null;
/**
* Constructor.
diff --git a/AutoMl/src/V1/TranslationDatasetMetadata.php b/AutoMl/src/V1/TranslationDatasetMetadata.php
index a067354dbcae..37554063e8e1 100644
--- a/AutoMl/src/V1/TranslationDatasetMetadata.php
+++ b/AutoMl/src/V1/TranslationDatasetMetadata.php
@@ -20,13 +20,13 @@ class TranslationDatasetMetadata extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string source_language_code = 1 [(.google.api.field_behavior) = REQUIRED];
*/
- private $source_language_code = '';
+ protected $source_language_code = '';
/**
* Required. The BCP-47 language code of the target language.
*
* Generated from protobuf field string target_language_code = 2 [(.google.api.field_behavior) = REQUIRED];
*/
- private $target_language_code = '';
+ protected $target_language_code = '';
/**
* Constructor.
diff --git a/AutoMl/src/V1/TranslationEvaluationMetrics.php b/AutoMl/src/V1/TranslationEvaluationMetrics.php
index 9c3d2dd2f43d..824df4fb470d 100644
--- a/AutoMl/src/V1/TranslationEvaluationMetrics.php
+++ b/AutoMl/src/V1/TranslationEvaluationMetrics.php
@@ -20,13 +20,13 @@ class TranslationEvaluationMetrics extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field double bleu_score = 1;
*/
- private $bleu_score = 0.0;
+ protected $bleu_score = 0.0;
/**
* Output only. BLEU score for base model.
*
* Generated from protobuf field double base_bleu_score = 2;
*/
- private $base_bleu_score = 0.0;
+ protected $base_bleu_score = 0.0;
/**
* Constructor.
diff --git a/AutoMl/src/V1/TranslationModelMetadata.php b/AutoMl/src/V1/TranslationModelMetadata.php
index 589f9f7cc460..4445234f0fa1 100644
--- a/AutoMl/src/V1/TranslationModelMetadata.php
+++ b/AutoMl/src/V1/TranslationModelMetadata.php
@@ -23,21 +23,21 @@ class TranslationModelMetadata extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string base_model = 1;
*/
- private $base_model = '';
+ protected $base_model = '';
/**
* Output only. Inferred from the dataset.
* The source languge (The BCP-47 language code) that is used for training.
*
* Generated from protobuf field string source_language_code = 2;
*/
- private $source_language_code = '';
+ protected $source_language_code = '';
/**
* Output only. The target languge (The BCP-47 language code) that is used for
* training.
*
* Generated from protobuf field string target_language_code = 3;
*/
- private $target_language_code = '';
+ protected $target_language_code = '';
/**
* Constructor.
diff --git a/AutoMl/src/V1/UndeployModelRequest.php b/AutoMl/src/V1/UndeployModelRequest.php
index de53b73b025a..b1da3bbc51ad 100644
--- a/AutoMl/src/V1/UndeployModelRequest.php
+++ b/AutoMl/src/V1/UndeployModelRequest.php
@@ -21,7 +21,7 @@ class UndeployModelRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string name = 1;
*/
- private $name = '';
+ protected $name = '';
/**
* Constructor.
diff --git a/AutoMl/src/V1/UpdateDatasetRequest.php b/AutoMl/src/V1/UpdateDatasetRequest.php
index 8509c92adb7b..473a1b5bd770 100644
--- a/AutoMl/src/V1/UpdateDatasetRequest.php
+++ b/AutoMl/src/V1/UpdateDatasetRequest.php
@@ -21,13 +21,13 @@ class UpdateDatasetRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.cloud.automl.v1.Dataset dataset = 1;
*/
- private $dataset = null;
+ protected $dataset = null;
/**
* Required. The update mask applies to the resource.
*
* Generated from protobuf field .google.protobuf.FieldMask update_mask = 2;
*/
- private $update_mask = null;
+ protected $update_mask = null;
/**
* Constructor.
diff --git a/AutoMl/src/V1/UpdateModelRequest.php b/AutoMl/src/V1/UpdateModelRequest.php
index 66e48a2e38a7..b95f847a862e 100644
--- a/AutoMl/src/V1/UpdateModelRequest.php
+++ b/AutoMl/src/V1/UpdateModelRequest.php
@@ -21,13 +21,13 @@ class UpdateModelRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.cloud.automl.v1.Model model = 1;
*/
- private $model = null;
+ protected $model = null;
/**
* Required. The update mask applies to the resource.
*
* Generated from protobuf field .google.protobuf.FieldMask update_mask = 2;
*/
- private $update_mask = null;
+ protected $update_mask = null;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/AnnotationPayload.php b/AutoMl/src/V1beta1/AnnotationPayload.php
index 5e30c93748f8..e622f18e635a 100644
--- a/AutoMl/src/V1beta1/AnnotationPayload.php
+++ b/AutoMl/src/V1beta1/AnnotationPayload.php
@@ -22,7 +22,7 @@ class AnnotationPayload extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string annotation_spec_id = 1;
*/
- private $annotation_spec_id = '';
+ protected $annotation_spec_id = '';
/**
* Output only. The value of
* [display_name][google.cloud.automl.v1beta1.AnnotationSpec.display_name]
@@ -33,7 +33,7 @@ class AnnotationPayload extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string display_name = 5;
*/
- private $display_name = '';
+ protected $display_name = '';
protected $detail;
/**
diff --git a/AutoMl/src/V1beta1/AnnotationSpec.php b/AutoMl/src/V1beta1/AnnotationSpec.php
index 191c1ab4db8b..929c7b99b475 100644
--- a/AutoMl/src/V1beta1/AnnotationSpec.php
+++ b/AutoMl/src/V1beta1/AnnotationSpec.php
@@ -22,7 +22,7 @@ class AnnotationSpec extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string name = 1;
*/
- private $name = '';
+ protected $name = '';
/**
* Required.
* The name of the annotation spec to show in the interface. The name can be
@@ -31,14 +31,14 @@ class AnnotationSpec extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string display_name = 2;
*/
- private $display_name = '';
+ protected $display_name = '';
/**
* Output only. The number of examples in the parent dataset
* labeled by the annotation spec.
*
* Generated from protobuf field int32 example_count = 9;
*/
- private $example_count = 0;
+ protected $example_count = 0;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/ArrayStats.php b/AutoMl/src/V1beta1/ArrayStats.php
index a7f59e6338fe..6c52ad74a855 100644
--- a/AutoMl/src/V1beta1/ArrayStats.php
+++ b/AutoMl/src/V1beta1/ArrayStats.php
@@ -21,7 +21,7 @@ class ArrayStats extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.cloud.automl.v1beta1.DataStats member_stats = 2;
*/
- private $member_stats = null;
+ protected $member_stats = null;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/BatchPredictOperationMetadata.php b/AutoMl/src/V1beta1/BatchPredictOperationMetadata.php
index 5058f4251560..d314380b9288 100644
--- a/AutoMl/src/V1beta1/BatchPredictOperationMetadata.php
+++ b/AutoMl/src/V1beta1/BatchPredictOperationMetadata.php
@@ -21,13 +21,13 @@ class BatchPredictOperationMetadata extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.cloud.automl.v1beta1.BatchPredictInputConfig input_config = 1;
*/
- private $input_config = null;
+ protected $input_config = null;
/**
* Output only. Information further describing this batch predict's output.
*
* Generated from protobuf field .google.cloud.automl.v1beta1.BatchPredictOperationMetadata.BatchPredictOutputInfo output_info = 2;
*/
- private $output_info = null;
+ protected $output_info = null;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/BatchPredictRequest.php b/AutoMl/src/V1beta1/BatchPredictRequest.php
index b4069ff5efee..39102317527a 100644
--- a/AutoMl/src/V1beta1/BatchPredictRequest.php
+++ b/AutoMl/src/V1beta1/BatchPredictRequest.php
@@ -21,20 +21,20 @@ class BatchPredictRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string name = 1;
*/
- private $name = '';
+ protected $name = '';
/**
* Required. The input configuration for batch prediction.
*
* Generated from protobuf field .google.cloud.automl.v1beta1.BatchPredictInputConfig input_config = 3;
*/
- private $input_config = null;
+ protected $input_config = null;
/**
* Required. The Configuration specifying where output predictions should
* be written.
*
* Generated from protobuf field .google.cloud.automl.v1beta1.BatchPredictOutputConfig output_config = 4;
*/
- private $output_config = null;
+ protected $output_config = null;
/**
* Additional domain-specific parameters for the predictions, any string must
* be up to 25000 characters long.
diff --git a/AutoMl/src/V1beta1/BigQueryDestination.php b/AutoMl/src/V1beta1/BigQueryDestination.php
index 70f09636cb0e..07e356f68feb 100644
--- a/AutoMl/src/V1beta1/BigQueryDestination.php
+++ b/AutoMl/src/V1beta1/BigQueryDestination.php
@@ -22,7 +22,7 @@ class BigQueryDestination extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string output_uri = 1;
*/
- private $output_uri = '';
+ protected $output_uri = '';
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/BigQuerySource.php b/AutoMl/src/V1beta1/BigQuerySource.php
index 69a8f35b7f46..5d202b49f3e9 100644
--- a/AutoMl/src/V1beta1/BigQuerySource.php
+++ b/AutoMl/src/V1beta1/BigQuerySource.php
@@ -22,7 +22,7 @@ class BigQuerySource extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string input_uri = 1;
*/
- private $input_uri = '';
+ protected $input_uri = '';
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/BoundingBoxMetricsEntry.php b/AutoMl/src/V1beta1/BoundingBoxMetricsEntry.php
index 815a2dc9da1a..dea78ce6f514 100644
--- a/AutoMl/src/V1beta1/BoundingBoxMetricsEntry.php
+++ b/AutoMl/src/V1beta1/BoundingBoxMetricsEntry.php
@@ -22,13 +22,13 @@ class BoundingBoxMetricsEntry extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field float iou_threshold = 1;
*/
- private $iou_threshold = 0.0;
+ protected $iou_threshold = 0.0;
/**
* Output only. The mean average precision, most often close to au_prc.
*
* Generated from protobuf field float mean_average_precision = 2;
*/
- private $mean_average_precision = 0.0;
+ protected $mean_average_precision = 0.0;
/**
* Output only. Metrics for each label-match confidence_threshold from
* 0.05,0.10,...,0.95,0.96,0.97,0.98,0.99. Precision-recall curve is
diff --git a/AutoMl/src/V1beta1/BoundingBoxMetricsEntry/ConfidenceMetricsEntry.php b/AutoMl/src/V1beta1/BoundingBoxMetricsEntry/ConfidenceMetricsEntry.php
index 45819235a9ed..703361ef13ad 100644
--- a/AutoMl/src/V1beta1/BoundingBoxMetricsEntry/ConfidenceMetricsEntry.php
+++ b/AutoMl/src/V1beta1/BoundingBoxMetricsEntry/ConfidenceMetricsEntry.php
@@ -20,25 +20,25 @@ class ConfidenceMetricsEntry extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field float confidence_threshold = 1;
*/
- private $confidence_threshold = 0.0;
+ protected $confidence_threshold = 0.0;
/**
* Output only. Recall under the given confidence threshold.
*
* Generated from protobuf field float recall = 2;
*/
- private $recall = 0.0;
+ protected $recall = 0.0;
/**
* Output only. Precision under the given confidence threshold.
*
* Generated from protobuf field float precision = 3;
*/
- private $precision = 0.0;
+ protected $precision = 0.0;
/**
* Output only. The harmonic mean of recall and precision.
*
* Generated from protobuf field float f1_score = 4;
*/
- private $f1_score = 0.0;
+ protected $f1_score = 0.0;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/CategoryStats/SingleCategoryStats.php b/AutoMl/src/V1beta1/CategoryStats/SingleCategoryStats.php
index a9ccb6a1db66..e12debb05fb8 100644
--- a/AutoMl/src/V1beta1/CategoryStats/SingleCategoryStats.php
+++ b/AutoMl/src/V1beta1/CategoryStats/SingleCategoryStats.php
@@ -20,13 +20,13 @@ class SingleCategoryStats extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string value = 1;
*/
- private $value = '';
+ protected $value = '';
/**
* The number of occurrences of this value in the series.
*
* Generated from protobuf field int64 count = 2;
*/
- private $count = 0;
+ protected $count = 0;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/ClassificationAnnotation.php b/AutoMl/src/V1beta1/ClassificationAnnotation.php
index 0549877e8ebf..98cf872e8d0d 100644
--- a/AutoMl/src/V1beta1/ClassificationAnnotation.php
+++ b/AutoMl/src/V1beta1/ClassificationAnnotation.php
@@ -24,7 +24,7 @@ class ClassificationAnnotation extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field float score = 1;
*/
- private $score = 0.0;
+ protected $score = 0.0;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/ClassificationEvaluationMetrics.php b/AutoMl/src/V1beta1/ClassificationEvaluationMetrics.php
index 58df9717b775..d08d54497065 100644
--- a/AutoMl/src/V1beta1/ClassificationEvaluationMetrics.php
+++ b/AutoMl/src/V1beta1/ClassificationEvaluationMetrics.php
@@ -23,7 +23,7 @@ class ClassificationEvaluationMetrics extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field float au_prc = 1;
*/
- private $au_prc = 0.0;
+ protected $au_prc = 0.0;
/**
* Output only. The Area Under Precision-Recall Curve metric based on priors.
* Micro-averaged for the overall evaluation.
@@ -31,20 +31,20 @@ class ClassificationEvaluationMetrics extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field float base_au_prc = 2 [deprecated = true];
*/
- private $base_au_prc = 0.0;
+ protected $base_au_prc = 0.0;
/**
* Output only. The Area Under Receiver Operating Characteristic curve metric.
* Micro-averaged for the overall evaluation.
*
* Generated from protobuf field float au_roc = 6;
*/
- private $au_roc = 0.0;
+ protected $au_roc = 0.0;
/**
* Output only. The Log Loss metric.
*
* Generated from protobuf field float log_loss = 7;
*/
- private $log_loss = 0.0;
+ protected $log_loss = 0.0;
/**
* Output only. Metrics for each confidence_threshold in
* 0.00,0.05,0.10,...,0.95,0.96,0.97,0.98,0.99 and
@@ -65,7 +65,7 @@ class ClassificationEvaluationMetrics extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.cloud.automl.v1beta1.ClassificationEvaluationMetrics.ConfusionMatrix confusion_matrix = 4;
*/
- private $confusion_matrix = null;
+ protected $confusion_matrix = null;
/**
* Output only. The annotation spec ids used for this evaluation.
*
diff --git a/AutoMl/src/V1beta1/ClassificationEvaluationMetrics/ConfidenceMetricsEntry.php b/AutoMl/src/V1beta1/ClassificationEvaluationMetrics/ConfidenceMetricsEntry.php
index 6e4be50ab693..224c9f9f6d87 100644
--- a/AutoMl/src/V1beta1/ClassificationEvaluationMetrics/ConfidenceMetricsEntry.php
+++ b/AutoMl/src/V1beta1/ClassificationEvaluationMetrics/ConfidenceMetricsEntry.php
@@ -21,7 +21,7 @@ class ConfidenceMetricsEntry extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field float confidence_threshold = 1;
*/
- private $confidence_threshold = 0.0;
+ protected $confidence_threshold = 0.0;
/**
* Output only. Metrics are computed with an assumption that the model
* always returns at most this many predictions (ordered by their score,
@@ -29,32 +29,32 @@ class ConfidenceMetricsEntry extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field int32 position_threshold = 14;
*/
- private $position_threshold = 0;
+ protected $position_threshold = 0;
/**
* Output only. Recall (True Positive Rate) for the given confidence
* threshold.
*
* Generated from protobuf field float recall = 2;
*/
- private $recall = 0.0;
+ protected $recall = 0.0;
/**
* Output only. Precision for the given confidence threshold.
*
* Generated from protobuf field float precision = 3;
*/
- private $precision = 0.0;
+ protected $precision = 0.0;
/**
* Output only. False Positive Rate for the given confidence threshold.
*
* Generated from protobuf field float false_positive_rate = 8;
*/
- private $false_positive_rate = 0.0;
+ protected $false_positive_rate = 0.0;
/**
* Output only. The harmonic mean of recall and precision.
*
* Generated from protobuf field float f1_score = 4;
*/
- private $f1_score = 0.0;
+ protected $f1_score = 0.0;
/**
* Output only. The Recall (True Positive Rate) when only considering the
* label that has the highest prediction score and not below the confidence
@@ -62,7 +62,7 @@ class ConfidenceMetricsEntry extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field float recall_at1 = 5;
*/
- private $recall_at1 = 0.0;
+ protected $recall_at1 = 0.0;
/**
* Output only. The precision when only considering the label that has the
* highest prediction score and not below the confidence threshold for each
@@ -70,7 +70,7 @@ class ConfidenceMetricsEntry extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field float precision_at1 = 6;
*/
- private $precision_at1 = 0.0;
+ protected $precision_at1 = 0.0;
/**
* Output only. The False Positive Rate when only considering the label that
* has the highest prediction score and not below the confidence threshold
@@ -78,7 +78,7 @@ class ConfidenceMetricsEntry extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field float false_positive_rate_at1 = 9;
*/
- private $false_positive_rate_at1 = 0.0;
+ protected $false_positive_rate_at1 = 0.0;
/**
* Output only. The harmonic mean of
* [recall_at1][google.cloud.automl.v1beta1.ClassificationEvaluationMetrics.ConfidenceMetricsEntry.recall_at1]
@@ -87,35 +87,35 @@ class ConfidenceMetricsEntry extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field float f1_score_at1 = 7;
*/
- private $f1_score_at1 = 0.0;
+ protected $f1_score_at1 = 0.0;
/**
* Output only. The number of model created labels that match a ground truth
* label.
*
* Generated from protobuf field int64 true_positive_count = 10;
*/
- private $true_positive_count = 0;
+ protected $true_positive_count = 0;
/**
* Output only. The number of model created labels that do not match a
* ground truth label.
*
* Generated from protobuf field int64 false_positive_count = 11;
*/
- private $false_positive_count = 0;
+ protected $false_positive_count = 0;
/**
* Output only. The number of ground truth labels that are not matched
* by a model created label.
*
* Generated from protobuf field int64 false_negative_count = 12;
*/
- private $false_negative_count = 0;
+ protected $false_negative_count = 0;
/**
* Output only. The number of labels that were not created by the model,
* but if they would, they would not match a ground truth label.
*
* Generated from protobuf field int64 true_negative_count = 13;
*/
- private $true_negative_count = 0;
+ protected $true_negative_count = 0;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/ColumnSpec.php b/AutoMl/src/V1beta1/ColumnSpec.php
index 3fc1605863b5..fb76b77ba438 100644
--- a/AutoMl/src/V1beta1/ColumnSpec.php
+++ b/AutoMl/src/V1beta1/ColumnSpec.php
@@ -25,13 +25,13 @@ class ColumnSpec extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string name = 1;
*/
- private $name = '';
+ protected $name = '';
/**
* The data type of elements stored in the column.
*
* Generated from protobuf field .google.cloud.automl.v1beta1.DataType data_type = 2;
*/
- private $data_type = null;
+ protected $data_type = null;
/**
* Output only. The name of the column to show in the interface. The name can
* be up to 100 characters long and can consist only of ASCII Latin letters
@@ -40,7 +40,7 @@ class ColumnSpec extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string display_name = 3;
*/
- private $display_name = '';
+ protected $display_name = '';
/**
* Output only. Stats of the series of values in the column.
* This field may be stale, see the ancestor's
@@ -49,7 +49,7 @@ class ColumnSpec extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.cloud.automl.v1beta1.DataStats data_stats = 4;
*/
- private $data_stats = null;
+ protected $data_stats = null;
/**
* Deprecated.
*
@@ -62,7 +62,7 @@ class ColumnSpec extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string etag = 6;
*/
- private $etag = '';
+ protected $etag = '';
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/ColumnSpec/CorrelatedColumn.php b/AutoMl/src/V1beta1/ColumnSpec/CorrelatedColumn.php
index 080179bc7559..999b172bb750 100644
--- a/AutoMl/src/V1beta1/ColumnSpec/CorrelatedColumn.php
+++ b/AutoMl/src/V1beta1/ColumnSpec/CorrelatedColumn.php
@@ -22,13 +22,13 @@ class CorrelatedColumn extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string column_spec_id = 1;
*/
- private $column_spec_id = '';
+ protected $column_spec_id = '';
/**
* Correlation between this and the in-context column.
*
* Generated from protobuf field .google.cloud.automl.v1beta1.CorrelationStats correlation_stats = 2;
*/
- private $correlation_stats = null;
+ protected $correlation_stats = null;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/CorrelationStats.php b/AutoMl/src/V1beta1/CorrelationStats.php
index 888be781a4c5..13c12017fd9f 100644
--- a/AutoMl/src/V1beta1/CorrelationStats.php
+++ b/AutoMl/src/V1beta1/CorrelationStats.php
@@ -22,7 +22,7 @@ class CorrelationStats extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field double cramers_v = 1;
*/
- private $cramers_v = 0.0;
+ protected $cramers_v = 0.0;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/CreateDatasetRequest.php b/AutoMl/src/V1beta1/CreateDatasetRequest.php
index 11f30d66977f..21f2ab764b8d 100644
--- a/AutoMl/src/V1beta1/CreateDatasetRequest.php
+++ b/AutoMl/src/V1beta1/CreateDatasetRequest.php
@@ -20,13 +20,13 @@ class CreateDatasetRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string parent = 1;
*/
- private $parent = '';
+ protected $parent = '';
/**
* The dataset to create.
*
* Generated from protobuf field .google.cloud.automl.v1beta1.Dataset dataset = 2;
*/
- private $dataset = null;
+ protected $dataset = null;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/CreateModelRequest.php b/AutoMl/src/V1beta1/CreateModelRequest.php
index 8eb271eee2bf..9224c815317e 100644
--- a/AutoMl/src/V1beta1/CreateModelRequest.php
+++ b/AutoMl/src/V1beta1/CreateModelRequest.php
@@ -20,13 +20,13 @@ class CreateModelRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string parent = 1;
*/
- private $parent = '';
+ protected $parent = '';
/**
* The model to create.
*
* Generated from protobuf field .google.cloud.automl.v1beta1.Model model = 4;
*/
- private $model = null;
+ protected $model = null;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/DataStats.php b/AutoMl/src/V1beta1/DataStats.php
index c9bd6d8848b4..a1c13f02b7db 100644
--- a/AutoMl/src/V1beta1/DataStats.php
+++ b/AutoMl/src/V1beta1/DataStats.php
@@ -20,19 +20,19 @@ class DataStats extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field int64 distinct_value_count = 1;
*/
- private $distinct_value_count = 0;
+ protected $distinct_value_count = 0;
/**
* The number of values that are null.
*
* Generated from protobuf field int64 null_value_count = 2;
*/
- private $null_value_count = 0;
+ protected $null_value_count = 0;
/**
* The number of values that are valid.
*
* Generated from protobuf field int64 valid_value_count = 9;
*/
- private $valid_value_count = 0;
+ protected $valid_value_count = 0;
protected $stats;
/**
diff --git a/AutoMl/src/V1beta1/DataType.php b/AutoMl/src/V1beta1/DataType.php
index ccea5f865bb5..fb15e32aac73 100644
--- a/AutoMl/src/V1beta1/DataType.php
+++ b/AutoMl/src/V1beta1/DataType.php
@@ -21,14 +21,14 @@ class DataType extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.cloud.automl.v1beta1.TypeCode type_code = 1;
*/
- private $type_code = 0;
+ protected $type_code = 0;
/**
* If true, this DataType can also be `NULL`. In .CSV files `NULL` value is
* expressed as an empty string.
*
* Generated from protobuf field bool nullable = 4;
*/
- private $nullable = false;
+ protected $nullable = false;
protected $details;
/**
diff --git a/AutoMl/src/V1beta1/Dataset.php b/AutoMl/src/V1beta1/Dataset.php
index e272bc0b58d3..aef7ab656f22 100644
--- a/AutoMl/src/V1beta1/Dataset.php
+++ b/AutoMl/src/V1beta1/Dataset.php
@@ -22,7 +22,7 @@ class Dataset extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string name = 1;
*/
- private $name = '';
+ protected $name = '';
/**
* Required. The name of the dataset to show in the interface. The name can be
* up to 32 characters long and can consist only of ASCII Latin letters A-Z
@@ -31,33 +31,33 @@ class Dataset extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string display_name = 2;
*/
- private $display_name = '';
+ protected $display_name = '';
/**
* User-provided description of the dataset. The description can be up to
* 25000 characters long.
*
* Generated from protobuf field string description = 3;
*/
- private $description = '';
+ protected $description = '';
/**
* Output only. The number of examples in the dataset.
*
* Generated from protobuf field int32 example_count = 21;
*/
- private $example_count = 0;
+ protected $example_count = 0;
/**
* Output only. Timestamp when this dataset was created.
*
* Generated from protobuf field .google.protobuf.Timestamp create_time = 14;
*/
- private $create_time = null;
+ protected $create_time = null;
/**
* Used to perform consistent read-modify-write updates. If not set, a blind
* "overwrite" update happens.
*
* Generated from protobuf field string etag = 17;
*/
- private $etag = '';
+ protected $etag = '';
protected $dataset_metadata;
/**
diff --git a/AutoMl/src/V1beta1/DeleteDatasetRequest.php b/AutoMl/src/V1beta1/DeleteDatasetRequest.php
index cc8221d6ee30..584dd8613a83 100644
--- a/AutoMl/src/V1beta1/DeleteDatasetRequest.php
+++ b/AutoMl/src/V1beta1/DeleteDatasetRequest.php
@@ -20,7 +20,7 @@ class DeleteDatasetRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string name = 1;
*/
- private $name = '';
+ protected $name = '';
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/DeleteModelRequest.php b/AutoMl/src/V1beta1/DeleteModelRequest.php
index a507acd6e2ba..a596d7d9a15b 100644
--- a/AutoMl/src/V1beta1/DeleteModelRequest.php
+++ b/AutoMl/src/V1beta1/DeleteModelRequest.php
@@ -20,7 +20,7 @@ class DeleteModelRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string name = 1;
*/
- private $name = '';
+ protected $name = '';
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/DeployModelRequest.php b/AutoMl/src/V1beta1/DeployModelRequest.php
index e8625a8a8ad6..f9d363785316 100644
--- a/AutoMl/src/V1beta1/DeployModelRequest.php
+++ b/AutoMl/src/V1beta1/DeployModelRequest.php
@@ -20,7 +20,7 @@ class DeployModelRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string name = 1;
*/
- private $name = '';
+ protected $name = '';
protected $model_deployment_metadata;
/**
diff --git a/AutoMl/src/V1beta1/Document.php b/AutoMl/src/V1beta1/Document.php
index ea3b1d79b96d..a20603251efb 100644
--- a/AutoMl/src/V1beta1/Document.php
+++ b/AutoMl/src/V1beta1/Document.php
@@ -20,13 +20,13 @@ class Document extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.cloud.automl.v1beta1.DocumentInputConfig input_config = 1;
*/
- private $input_config = null;
+ protected $input_config = null;
/**
* The plain text version of this document.
*
* Generated from protobuf field .google.cloud.automl.v1beta1.TextSnippet document_text = 2;
*/
- private $document_text = null;
+ protected $document_text = null;
/**
* Describes the layout of the document.
* Sorted by [page_number][].
@@ -39,13 +39,13 @@ class Document extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.cloud.automl.v1beta1.DocumentDimensions document_dimensions = 4;
*/
- private $document_dimensions = null;
+ protected $document_dimensions = null;
/**
* Number of pages in the document.
*
* Generated from protobuf field int32 page_count = 5;
*/
- private $page_count = 0;
+ protected $page_count = 0;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/Document/Layout.php b/AutoMl/src/V1beta1/Document/Layout.php
index de2208cfda7f..fb7aaa0cfc57 100644
--- a/AutoMl/src/V1beta1/Document/Layout.php
+++ b/AutoMl/src/V1beta1/Document/Layout.php
@@ -23,7 +23,7 @@ class Layout extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.cloud.automl.v1beta1.TextSegment text_segment = 1;
*/
- private $text_segment = null;
+ protected $text_segment = null;
/**
* Page number of the
* [text_segment][google.cloud.automl.v1beta1.Document.Layout.text_segment]
@@ -31,7 +31,7 @@ class Layout extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field int32 page_number = 2;
*/
- private $page_number = 0;
+ protected $page_number = 0;
/**
* The position of the
* [text_segment][google.cloud.automl.v1beta1.Document.Layout.text_segment]
@@ -45,7 +45,7 @@ class Layout extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.cloud.automl.v1beta1.BoundingPoly bounding_poly = 3;
*/
- private $bounding_poly = null;
+ protected $bounding_poly = null;
/**
* The type of the
* [text_segment][google.cloud.automl.v1beta1.Document.Layout.text_segment]
@@ -53,7 +53,7 @@ class Layout extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.cloud.automl.v1beta1.Document.Layout.TextSegmentType text_segment_type = 4;
*/
- private $text_segment_type = 0;
+ protected $text_segment_type = 0;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/DocumentDimensions.php b/AutoMl/src/V1beta1/DocumentDimensions.php
index 4ff99fbcb184..04469cba9ed2 100644
--- a/AutoMl/src/V1beta1/DocumentDimensions.php
+++ b/AutoMl/src/V1beta1/DocumentDimensions.php
@@ -20,19 +20,19 @@ class DocumentDimensions extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.cloud.automl.v1beta1.DocumentDimensions.DocumentDimensionUnit unit = 1;
*/
- private $unit = 0;
+ protected $unit = 0;
/**
* Width value of the document, works together with the unit.
*
* Generated from protobuf field float width = 2;
*/
- private $width = 0.0;
+ protected $width = 0.0;
/**
* Height value of the document, works together with the unit.
*
* Generated from protobuf field float height = 3;
*/
- private $height = 0.0;
+ protected $height = 0.0;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/DocumentInputConfig.php b/AutoMl/src/V1beta1/DocumentInputConfig.php
index 368f6f57f4c5..6ffa02edc05b 100644
--- a/AutoMl/src/V1beta1/DocumentInputConfig.php
+++ b/AutoMl/src/V1beta1/DocumentInputConfig.php
@@ -23,7 +23,7 @@ class DocumentInputConfig extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.cloud.automl.v1beta1.GcsSource gcs_source = 1;
*/
- private $gcs_source = null;
+ protected $gcs_source = null;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/DoubleRange.php b/AutoMl/src/V1beta1/DoubleRange.php
index 85fbc4748afb..2710a8ba4072 100644
--- a/AutoMl/src/V1beta1/DoubleRange.php
+++ b/AutoMl/src/V1beta1/DoubleRange.php
@@ -20,13 +20,13 @@ class DoubleRange extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field double start = 1;
*/
- private $start = 0.0;
+ protected $start = 0.0;
/**
* End of the range, exclusive.
*
* Generated from protobuf field double end = 2;
*/
- private $end = 0.0;
+ protected $end = 0.0;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/ExportDataOperationMetadata.php b/AutoMl/src/V1beta1/ExportDataOperationMetadata.php
index 9528536cde5d..60e8f28374e7 100644
--- a/AutoMl/src/V1beta1/ExportDataOperationMetadata.php
+++ b/AutoMl/src/V1beta1/ExportDataOperationMetadata.php
@@ -20,7 +20,7 @@ class ExportDataOperationMetadata extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.cloud.automl.v1beta1.ExportDataOperationMetadata.ExportDataOutputInfo output_info = 1;
*/
- private $output_info = null;
+ protected $output_info = null;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/ExportDataRequest.php b/AutoMl/src/V1beta1/ExportDataRequest.php
index b7bf5c4a8caa..accc237d918a 100644
--- a/AutoMl/src/V1beta1/ExportDataRequest.php
+++ b/AutoMl/src/V1beta1/ExportDataRequest.php
@@ -20,13 +20,13 @@ class ExportDataRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string name = 1;
*/
- private $name = '';
+ protected $name = '';
/**
* Required. The desired output location.
*
* Generated from protobuf field .google.cloud.automl.v1beta1.OutputConfig output_config = 3;
*/
- private $output_config = null;
+ protected $output_config = null;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/ExportEvaluatedExamplesOperationMetadata.php b/AutoMl/src/V1beta1/ExportEvaluatedExamplesOperationMetadata.php
index ca151178fad1..175394310785 100644
--- a/AutoMl/src/V1beta1/ExportEvaluatedExamplesOperationMetadata.php
+++ b/AutoMl/src/V1beta1/ExportEvaluatedExamplesOperationMetadata.php
@@ -21,7 +21,7 @@ class ExportEvaluatedExamplesOperationMetadata extends \Google\Protobuf\Internal
*
* Generated from protobuf field .google.cloud.automl.v1beta1.ExportEvaluatedExamplesOperationMetadata.ExportEvaluatedExamplesOutputInfo output_info = 2;
*/
- private $output_info = null;
+ protected $output_info = null;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/ExportEvaluatedExamplesOperationMetadata/ExportEvaluatedExamplesOutputInfo.php b/AutoMl/src/V1beta1/ExportEvaluatedExamplesOperationMetadata/ExportEvaluatedExamplesOutputInfo.php
index 14657b8d717e..6656e406ed55 100644
--- a/AutoMl/src/V1beta1/ExportEvaluatedExamplesOperationMetadata/ExportEvaluatedExamplesOutputInfo.php
+++ b/AutoMl/src/V1beta1/ExportEvaluatedExamplesOperationMetadata/ExportEvaluatedExamplesOutputInfo.php
@@ -23,7 +23,7 @@ class ExportEvaluatedExamplesOutputInfo extends \Google\Protobuf\Internal\Messag
*
* Generated from protobuf field string bigquery_output_dataset = 2;
*/
- private $bigquery_output_dataset = '';
+ protected $bigquery_output_dataset = '';
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/ExportEvaluatedExamplesRequest.php b/AutoMl/src/V1beta1/ExportEvaluatedExamplesRequest.php
index 0fd62c60e48a..f8ca5efc4bd5 100644
--- a/AutoMl/src/V1beta1/ExportEvaluatedExamplesRequest.php
+++ b/AutoMl/src/V1beta1/ExportEvaluatedExamplesRequest.php
@@ -21,13 +21,13 @@ class ExportEvaluatedExamplesRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string name = 1;
*/
- private $name = '';
+ protected $name = '';
/**
* Required. The desired output location and configuration.
*
* Generated from protobuf field .google.cloud.automl.v1beta1.ExportEvaluatedExamplesOutputConfig output_config = 3;
*/
- private $output_config = null;
+ protected $output_config = null;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/ExportModelOperationMetadata.php b/AutoMl/src/V1beta1/ExportModelOperationMetadata.php
index 63dbb2b0f02d..b10b485dee54 100644
--- a/AutoMl/src/V1beta1/ExportModelOperationMetadata.php
+++ b/AutoMl/src/V1beta1/ExportModelOperationMetadata.php
@@ -21,7 +21,7 @@ class ExportModelOperationMetadata extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.cloud.automl.v1beta1.ExportModelOperationMetadata.ExportModelOutputInfo output_info = 2;
*/
- private $output_info = null;
+ protected $output_info = null;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/ExportModelOperationMetadata/ExportModelOutputInfo.php b/AutoMl/src/V1beta1/ExportModelOperationMetadata/ExportModelOutputInfo.php
index b012f60f89e0..b85efff1ac3d 100644
--- a/AutoMl/src/V1beta1/ExportModelOperationMetadata/ExportModelOutputInfo.php
+++ b/AutoMl/src/V1beta1/ExportModelOperationMetadata/ExportModelOutputInfo.php
@@ -23,7 +23,7 @@ class ExportModelOutputInfo extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string gcs_output_directory = 1;
*/
- private $gcs_output_directory = '';
+ protected $gcs_output_directory = '';
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/ExportModelRequest.php b/AutoMl/src/V1beta1/ExportModelRequest.php
index 7fac280e5a92..0365fce5f926 100644
--- a/AutoMl/src/V1beta1/ExportModelRequest.php
+++ b/AutoMl/src/V1beta1/ExportModelRequest.php
@@ -22,13 +22,13 @@ class ExportModelRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string name = 1;
*/
- private $name = '';
+ protected $name = '';
/**
* Required. The desired output location and configuration.
*
* Generated from protobuf field .google.cloud.automl.v1beta1.ModelExportOutputConfig output_config = 3;
*/
- private $output_config = null;
+ protected $output_config = null;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/Float64Stats.php b/AutoMl/src/V1beta1/Float64Stats.php
index 7eff2d2e9531..3d4032472a4e 100644
--- a/AutoMl/src/V1beta1/Float64Stats.php
+++ b/AutoMl/src/V1beta1/Float64Stats.php
@@ -20,13 +20,13 @@ class Float64Stats extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field double mean = 1;
*/
- private $mean = 0.0;
+ protected $mean = 0.0;
/**
* The standard deviation of the series.
*
* Generated from protobuf field double standard_deviation = 2;
*/
- private $standard_deviation = 0.0;
+ protected $standard_deviation = 0.0;
/**
* Ordered from 0 to k k-quantile values of the data series of n values.
* The value at index i is, approximately, the i*n/k-th smallest value in the
diff --git a/AutoMl/src/V1beta1/Float64Stats/HistogramBucket.php b/AutoMl/src/V1beta1/Float64Stats/HistogramBucket.php
index 0c70c7c56d3a..fa6307420592 100644
--- a/AutoMl/src/V1beta1/Float64Stats/HistogramBucket.php
+++ b/AutoMl/src/V1beta1/Float64Stats/HistogramBucket.php
@@ -20,21 +20,21 @@ class HistogramBucket extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field double min = 1;
*/
- private $min = 0.0;
+ protected $min = 0.0;
/**
* The maximum value of the bucket, exclusive unless max = `"Infinity"`, in
* which case it's inclusive.
*
* Generated from protobuf field double max = 2;
*/
- private $max = 0.0;
+ protected $max = 0.0;
/**
* The number of data values that are in the bucket, i.e. are between
* min and max values.
*
* Generated from protobuf field int64 count = 3;
*/
- private $count = 0;
+ protected $count = 0;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/GcrDestination.php b/AutoMl/src/V1beta1/GcrDestination.php
index 384693b1b914..dede7f42795a 100644
--- a/AutoMl/src/V1beta1/GcrDestination.php
+++ b/AutoMl/src/V1beta1/GcrDestination.php
@@ -28,7 +28,7 @@ class GcrDestination extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string output_uri = 1;
*/
- private $output_uri = '';
+ protected $output_uri = '';
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/GcsDestination.php b/AutoMl/src/V1beta1/GcsDestination.php
index f4d3051a0548..2cb870dca6af 100644
--- a/AutoMl/src/V1beta1/GcsDestination.php
+++ b/AutoMl/src/V1beta1/GcsDestination.php
@@ -25,7 +25,7 @@ class GcsDestination extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string output_uri_prefix = 1;
*/
- private $output_uri_prefix = '';
+ protected $output_uri_prefix = '';
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/GetAnnotationSpecRequest.php b/AutoMl/src/V1beta1/GetAnnotationSpecRequest.php
index e4e12285ffbe..a4ca82b8ad88 100644
--- a/AutoMl/src/V1beta1/GetAnnotationSpecRequest.php
+++ b/AutoMl/src/V1beta1/GetAnnotationSpecRequest.php
@@ -20,7 +20,7 @@ class GetAnnotationSpecRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string name = 1;
*/
- private $name = '';
+ protected $name = '';
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/GetColumnSpecRequest.php b/AutoMl/src/V1beta1/GetColumnSpecRequest.php
index 33623f6757e1..7aa63e35f1ab 100644
--- a/AutoMl/src/V1beta1/GetColumnSpecRequest.php
+++ b/AutoMl/src/V1beta1/GetColumnSpecRequest.php
@@ -20,13 +20,13 @@ class GetColumnSpecRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string name = 1;
*/
- private $name = '';
+ protected $name = '';
/**
* Mask specifying which fields to read.
*
* Generated from protobuf field .google.protobuf.FieldMask field_mask = 2;
*/
- private $field_mask = null;
+ protected $field_mask = null;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/GetDatasetRequest.php b/AutoMl/src/V1beta1/GetDatasetRequest.php
index d42563f61376..3ea622b5b207 100644
--- a/AutoMl/src/V1beta1/GetDatasetRequest.php
+++ b/AutoMl/src/V1beta1/GetDatasetRequest.php
@@ -20,7 +20,7 @@ class GetDatasetRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string name = 1;
*/
- private $name = '';
+ protected $name = '';
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/GetModelEvaluationRequest.php b/AutoMl/src/V1beta1/GetModelEvaluationRequest.php
index 82c8cadb12f9..8a4acd99f388 100644
--- a/AutoMl/src/V1beta1/GetModelEvaluationRequest.php
+++ b/AutoMl/src/V1beta1/GetModelEvaluationRequest.php
@@ -20,7 +20,7 @@ class GetModelEvaluationRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string name = 1;
*/
- private $name = '';
+ protected $name = '';
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/GetModelRequest.php b/AutoMl/src/V1beta1/GetModelRequest.php
index 28d3355c88be..599193956522 100644
--- a/AutoMl/src/V1beta1/GetModelRequest.php
+++ b/AutoMl/src/V1beta1/GetModelRequest.php
@@ -20,7 +20,7 @@ class GetModelRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string name = 1;
*/
- private $name = '';
+ protected $name = '';
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/GetTableSpecRequest.php b/AutoMl/src/V1beta1/GetTableSpecRequest.php
index 889148db971b..292aa9f7c6af 100644
--- a/AutoMl/src/V1beta1/GetTableSpecRequest.php
+++ b/AutoMl/src/V1beta1/GetTableSpecRequest.php
@@ -20,13 +20,13 @@ class GetTableSpecRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string name = 1;
*/
- private $name = '';
+ protected $name = '';
/**
* Mask specifying which fields to read.
*
* Generated from protobuf field .google.protobuf.FieldMask field_mask = 2;
*/
- private $field_mask = null;
+ protected $field_mask = null;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/Image.php b/AutoMl/src/V1beta1/Image.php
index 0c688672e2a6..db471d56e2f3 100644
--- a/AutoMl/src/V1beta1/Image.php
+++ b/AutoMl/src/V1beta1/Image.php
@@ -21,7 +21,7 @@ class Image extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string thumbnail_uri = 4;
*/
- private $thumbnail_uri = '';
+ protected $thumbnail_uri = '';
protected $data;
/**
diff --git a/AutoMl/src/V1beta1/ImageClassificationDatasetMetadata.php b/AutoMl/src/V1beta1/ImageClassificationDatasetMetadata.php
index 73158531c108..199c53d4f392 100644
--- a/AutoMl/src/V1beta1/ImageClassificationDatasetMetadata.php
+++ b/AutoMl/src/V1beta1/ImageClassificationDatasetMetadata.php
@@ -20,7 +20,7 @@ class ImageClassificationDatasetMetadata extends \Google\Protobuf\Internal\Messa
*
* Generated from protobuf field .google.cloud.automl.v1beta1.ClassificationType classification_type = 1;
*/
- private $classification_type = 0;
+ protected $classification_type = 0;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/ImageClassificationModelDeploymentMetadata.php b/AutoMl/src/V1beta1/ImageClassificationModelDeploymentMetadata.php
index 390fefb59155..a88ed54d67fb 100644
--- a/AutoMl/src/V1beta1/ImageClassificationModelDeploymentMetadata.php
+++ b/AutoMl/src/V1beta1/ImageClassificationModelDeploymentMetadata.php
@@ -24,7 +24,7 @@ class ImageClassificationModelDeploymentMetadata extends \Google\Protobuf\Intern
*
* Generated from protobuf field int64 node_count = 1;
*/
- private $node_count = 0;
+ protected $node_count = 0;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/ImageClassificationModelMetadata.php b/AutoMl/src/V1beta1/ImageClassificationModelMetadata.php
index 9a982435bc74..8d05dd7c8d52 100644
--- a/AutoMl/src/V1beta1/ImageClassificationModelMetadata.php
+++ b/AutoMl/src/V1beta1/ImageClassificationModelMetadata.php
@@ -24,14 +24,14 @@ class ImageClassificationModelMetadata extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string base_model_id = 1;
*/
- private $base_model_id = '';
+ protected $base_model_id = '';
/**
* Required. The train budget of creating this model, expressed in hours. The
* actual `train_cost` will be equal or less than this value.
*
* Generated from protobuf field int64 train_budget = 2;
*/
- private $train_budget = 0;
+ protected $train_budget = 0;
/**
* Output only. The actual train cost of creating this model, expressed in
* hours. If this model is created from a `base` model, the train cost used
@@ -39,14 +39,14 @@ class ImageClassificationModelMetadata extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field int64 train_cost = 3;
*/
- private $train_cost = 0;
+ protected $train_cost = 0;
/**
* Output only. The reason that this create model operation stopped,
* e.g. `BUDGET_REACHED`, `MODEL_CONVERGED`.
*
* Generated from protobuf field string stop_reason = 5;
*/
- private $stop_reason = '';
+ protected $stop_reason = '';
/**
* Optional. Type of the model. The available values are:
* * `cloud` - Model to be used via prediction calls to AutoML API.
@@ -88,14 +88,14 @@ class ImageClassificationModelMetadata extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string model_type = 7;
*/
- private $model_type = '';
+ protected $model_type = '';
/**
* Output only. An approximate number of online prediction QPS that can
* be supported by this model per each node on which it is deployed.
*
* Generated from protobuf field double node_qps = 13;
*/
- private $node_qps = 0.0;
+ protected $node_qps = 0.0;
/**
* Output only. The number of nodes this model is deployed on. A node is an
* abstraction of a machine resource, which can handle online prediction QPS
@@ -103,7 +103,7 @@ class ImageClassificationModelMetadata extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field int64 node_count = 14;
*/
- private $node_count = 0;
+ protected $node_count = 0;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/ImageObjectDetectionAnnotation.php b/AutoMl/src/V1beta1/ImageObjectDetectionAnnotation.php
index a1c215e5dc93..c73fc5a50f7d 100644
--- a/AutoMl/src/V1beta1/ImageObjectDetectionAnnotation.php
+++ b/AutoMl/src/V1beta1/ImageObjectDetectionAnnotation.php
@@ -20,14 +20,14 @@ class ImageObjectDetectionAnnotation extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.cloud.automl.v1beta1.BoundingPoly bounding_box = 1;
*/
- private $bounding_box = null;
+ protected $bounding_box = null;
/**
* Output only. The confidence that this annotation is positive for the parent example,
* value in [0, 1], higher means higher positivity confidence.
*
* Generated from protobuf field float score = 2;
*/
- private $score = 0.0;
+ protected $score = 0.0;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/ImageObjectDetectionEvaluationMetrics.php b/AutoMl/src/V1beta1/ImageObjectDetectionEvaluationMetrics.php
index 3761249869b6..beaffbbb2a7b 100644
--- a/AutoMl/src/V1beta1/ImageObjectDetectionEvaluationMetrics.php
+++ b/AutoMl/src/V1beta1/ImageObjectDetectionEvaluationMetrics.php
@@ -22,7 +22,7 @@ class ImageObjectDetectionEvaluationMetrics extends \Google\Protobuf\Internal\Me
*
* Generated from protobuf field int32 evaluated_bounding_box_count = 1;
*/
- private $evaluated_bounding_box_count = 0;
+ protected $evaluated_bounding_box_count = 0;
/**
* Output only. The bounding boxes match metrics for each
* Intersection-over-union threshold 0.05,0.10,...,0.95,0.96,0.97,0.98,0.99
@@ -38,7 +38,7 @@ class ImageObjectDetectionEvaluationMetrics extends \Google\Protobuf\Internal\Me
*
* Generated from protobuf field float bounding_box_mean_average_precision = 3;
*/
- private $bounding_box_mean_average_precision = 0.0;
+ protected $bounding_box_mean_average_precision = 0.0;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/ImageObjectDetectionModelDeploymentMetadata.php b/AutoMl/src/V1beta1/ImageObjectDetectionModelDeploymentMetadata.php
index 298f8071dfc2..79c37722f1cf 100644
--- a/AutoMl/src/V1beta1/ImageObjectDetectionModelDeploymentMetadata.php
+++ b/AutoMl/src/V1beta1/ImageObjectDetectionModelDeploymentMetadata.php
@@ -24,7 +24,7 @@ class ImageObjectDetectionModelDeploymentMetadata extends \Google\Protobuf\Inter
*
* Generated from protobuf field int64 node_count = 1;
*/
- private $node_count = 0;
+ protected $node_count = 0;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/ImageObjectDetectionModelMetadata.php b/AutoMl/src/V1beta1/ImageObjectDetectionModelMetadata.php
index 5a4e643eebb9..ac83ac55284a 100644
--- a/AutoMl/src/V1beta1/ImageObjectDetectionModelMetadata.php
+++ b/AutoMl/src/V1beta1/ImageObjectDetectionModelMetadata.php
@@ -27,7 +27,7 @@ class ImageObjectDetectionModelMetadata extends \Google\Protobuf\Internal\Messag
*
* Generated from protobuf field string model_type = 1;
*/
- private $model_type = '';
+ protected $model_type = '';
/**
* Output only. The number of nodes this model is deployed on. A node is an
* abstraction of a machine resource, which can handle online prediction QPS
@@ -35,21 +35,21 @@ class ImageObjectDetectionModelMetadata extends \Google\Protobuf\Internal\Messag
*
* Generated from protobuf field int64 node_count = 3;
*/
- private $node_count = 0;
+ protected $node_count = 0;
/**
* Output only. An approximate number of online prediction QPS that can
* be supported by this model per each node on which it is deployed.
*
* Generated from protobuf field double node_qps = 4;
*/
- private $node_qps = 0.0;
+ protected $node_qps = 0.0;
/**
* Output only. The reason that this create model operation stopped,
* e.g. `BUDGET_REACHED`, `MODEL_CONVERGED`.
*
* Generated from protobuf field string stop_reason = 5;
*/
- private $stop_reason = '';
+ protected $stop_reason = '';
/**
* The train budget of creating this model, expressed in milli node
* hours i.e. 1,000 value in this field means 1 node hour. The actual
@@ -69,7 +69,7 @@ class ImageObjectDetectionModelMetadata extends \Google\Protobuf\Internal\Messag
*
* Generated from protobuf field int64 train_budget_milli_node_hours = 6;
*/
- private $train_budget_milli_node_hours = 0;
+ protected $train_budget_milli_node_hours = 0;
/**
* Output only. The actual train cost of creating this model, expressed in
* milli node hours, i.e. 1,000 value in this field means 1 node hour.
@@ -77,7 +77,7 @@ class ImageObjectDetectionModelMetadata extends \Google\Protobuf\Internal\Messag
*
* Generated from protobuf field int64 train_cost_milli_node_hours = 7;
*/
- private $train_cost_milli_node_hours = 0;
+ protected $train_cost_milli_node_hours = 0;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/ImportDataRequest.php b/AutoMl/src/V1beta1/ImportDataRequest.php
index 07c781d1ca89..ebfc7e330698 100644
--- a/AutoMl/src/V1beta1/ImportDataRequest.php
+++ b/AutoMl/src/V1beta1/ImportDataRequest.php
@@ -21,14 +21,14 @@ class ImportDataRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string name = 1;
*/
- private $name = '';
+ protected $name = '';
/**
* Required. The desired input location and its domain specific semantics,
* if any.
*
* Generated from protobuf field .google.cloud.automl.v1beta1.InputConfig input_config = 3;
*/
- private $input_config = null;
+ protected $input_config = null;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/ListColumnSpecsRequest.php b/AutoMl/src/V1beta1/ListColumnSpecsRequest.php
index 370e81ac5d48..e9e319b5ac6d 100644
--- a/AutoMl/src/V1beta1/ListColumnSpecsRequest.php
+++ b/AutoMl/src/V1beta1/ListColumnSpecsRequest.php
@@ -20,26 +20,26 @@ class ListColumnSpecsRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string parent = 1;
*/
- private $parent = '';
+ protected $parent = '';
/**
* Mask specifying which fields to read.
*
* Generated from protobuf field .google.protobuf.FieldMask field_mask = 2;
*/
- private $field_mask = null;
+ protected $field_mask = null;
/**
* Filter expression, see go/filtering.
*
* Generated from protobuf field string filter = 3;
*/
- private $filter = '';
+ protected $filter = '';
/**
* Requested page size. The server can return fewer results than requested.
* If unspecified, the server will pick a default size.
*
* Generated from protobuf field int32 page_size = 4;
*/
- private $page_size = 0;
+ protected $page_size = 0;
/**
* A token identifying a page of results for the server to return.
* Typically obtained from the
@@ -48,7 +48,7 @@ class ListColumnSpecsRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string page_token = 6;
*/
- private $page_token = '';
+ protected $page_token = '';
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/ListColumnSpecsResponse.php b/AutoMl/src/V1beta1/ListColumnSpecsResponse.php
index 0dd3944034db..90732ececfe1 100644
--- a/AutoMl/src/V1beta1/ListColumnSpecsResponse.php
+++ b/AutoMl/src/V1beta1/ListColumnSpecsResponse.php
@@ -27,7 +27,7 @@ class ListColumnSpecsResponse extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string next_page_token = 2;
*/
- private $next_page_token = '';
+ protected $next_page_token = '';
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/ListDatasetsRequest.php b/AutoMl/src/V1beta1/ListDatasetsRequest.php
index 93e0d99667df..0ae532c2e148 100644
--- a/AutoMl/src/V1beta1/ListDatasetsRequest.php
+++ b/AutoMl/src/V1beta1/ListDatasetsRequest.php
@@ -20,7 +20,7 @@ class ListDatasetsRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string parent = 1;
*/
- private $parent = '';
+ protected $parent = '';
/**
* An expression for filtering the results of the request.
* * `dataset_metadata` - for existence of the case (e.g.
@@ -30,14 +30,14 @@ class ListDatasetsRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string filter = 3;
*/
- private $filter = '';
+ protected $filter = '';
/**
* Requested page size. Server may return fewer results than requested.
* If unspecified, server will pick a default size.
*
* Generated from protobuf field int32 page_size = 4;
*/
- private $page_size = 0;
+ protected $page_size = 0;
/**
* A token identifying a page of results for the server to return
* Typically obtained via
@@ -46,7 +46,7 @@ class ListDatasetsRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string page_token = 6;
*/
- private $page_token = '';
+ protected $page_token = '';
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/ListDatasetsResponse.php b/AutoMl/src/V1beta1/ListDatasetsResponse.php
index f36ef2366d24..90e71bd475e6 100644
--- a/AutoMl/src/V1beta1/ListDatasetsResponse.php
+++ b/AutoMl/src/V1beta1/ListDatasetsResponse.php
@@ -27,7 +27,7 @@ class ListDatasetsResponse extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string next_page_token = 2;
*/
- private $next_page_token = '';
+ protected $next_page_token = '';
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/ListModelEvaluationsRequest.php b/AutoMl/src/V1beta1/ListModelEvaluationsRequest.php
index 99494e2d662c..f09be304cef8 100644
--- a/AutoMl/src/V1beta1/ListModelEvaluationsRequest.php
+++ b/AutoMl/src/V1beta1/ListModelEvaluationsRequest.php
@@ -22,7 +22,7 @@ class ListModelEvaluationsRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string parent = 1;
*/
- private $parent = '';
+ protected $parent = '';
/**
* An expression for filtering the results of the request.
* * `annotation_spec_id` - for =, != or existence. See example below for
@@ -35,13 +35,13 @@ class ListModelEvaluationsRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string filter = 3;
*/
- private $filter = '';
+ protected $filter = '';
/**
* Requested page size.
*
* Generated from protobuf field int32 page_size = 4;
*/
- private $page_size = 0;
+ protected $page_size = 0;
/**
* A token identifying a page of results for the server to return.
* Typically obtained via
@@ -50,7 +50,7 @@ class ListModelEvaluationsRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string page_token = 6;
*/
- private $page_token = '';
+ protected $page_token = '';
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/ListModelEvaluationsResponse.php b/AutoMl/src/V1beta1/ListModelEvaluationsResponse.php
index 2a4e067c4052..815db2f75b21 100644
--- a/AutoMl/src/V1beta1/ListModelEvaluationsResponse.php
+++ b/AutoMl/src/V1beta1/ListModelEvaluationsResponse.php
@@ -28,7 +28,7 @@ class ListModelEvaluationsResponse extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string next_page_token = 2;
*/
- private $next_page_token = '';
+ protected $next_page_token = '';
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/ListModelsRequest.php b/AutoMl/src/V1beta1/ListModelsRequest.php
index 020d2fb25e66..142ba5bf2050 100644
--- a/AutoMl/src/V1beta1/ListModelsRequest.php
+++ b/AutoMl/src/V1beta1/ListModelsRequest.php
@@ -20,7 +20,7 @@ class ListModelsRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string parent = 1;
*/
- private $parent = '';
+ protected $parent = '';
/**
* An expression for filtering the results of the request.
* * `model_metadata` - for existence of the case (e.g.
@@ -32,13 +32,13 @@ class ListModelsRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string filter = 3;
*/
- private $filter = '';
+ protected $filter = '';
/**
* Requested page size.
*
* Generated from protobuf field int32 page_size = 4;
*/
- private $page_size = 0;
+ protected $page_size = 0;
/**
* A token identifying a page of results for the server to return
* Typically obtained via
@@ -47,7 +47,7 @@ class ListModelsRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string page_token = 6;
*/
- private $page_token = '';
+ protected $page_token = '';
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/ListModelsResponse.php b/AutoMl/src/V1beta1/ListModelsResponse.php
index 07ea7a8c8cc7..660642f0d5a2 100644
--- a/AutoMl/src/V1beta1/ListModelsResponse.php
+++ b/AutoMl/src/V1beta1/ListModelsResponse.php
@@ -27,7 +27,7 @@ class ListModelsResponse extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string next_page_token = 2;
*/
- private $next_page_token = '';
+ protected $next_page_token = '';
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/ListTableSpecsRequest.php b/AutoMl/src/V1beta1/ListTableSpecsRequest.php
index 3e437ac7898e..6d4806af421e 100644
--- a/AutoMl/src/V1beta1/ListTableSpecsRequest.php
+++ b/AutoMl/src/V1beta1/ListTableSpecsRequest.php
@@ -20,26 +20,26 @@ class ListTableSpecsRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string parent = 1;
*/
- private $parent = '';
+ protected $parent = '';
/**
* Mask specifying which fields to read.
*
* Generated from protobuf field .google.protobuf.FieldMask field_mask = 2;
*/
- private $field_mask = null;
+ protected $field_mask = null;
/**
* Filter expression, see go/filtering.
*
* Generated from protobuf field string filter = 3;
*/
- private $filter = '';
+ protected $filter = '';
/**
* Requested page size. The server can return fewer results than requested.
* If unspecified, the server will pick a default size.
*
* Generated from protobuf field int32 page_size = 4;
*/
- private $page_size = 0;
+ protected $page_size = 0;
/**
* A token identifying a page of results for the server to return.
* Typically obtained from the
@@ -48,7 +48,7 @@ class ListTableSpecsRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string page_token = 6;
*/
- private $page_token = '';
+ protected $page_token = '';
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/ListTableSpecsResponse.php b/AutoMl/src/V1beta1/ListTableSpecsResponse.php
index 7a6fa31c70d1..333d934871d0 100644
--- a/AutoMl/src/V1beta1/ListTableSpecsResponse.php
+++ b/AutoMl/src/V1beta1/ListTableSpecsResponse.php
@@ -27,7 +27,7 @@ class ListTableSpecsResponse extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string next_page_token = 2;
*/
- private $next_page_token = '';
+ protected $next_page_token = '';
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/Model.php b/AutoMl/src/V1beta1/Model.php
index e5406adfa6a7..62abb5c73fec 100644
--- a/AutoMl/src/V1beta1/Model.php
+++ b/AutoMl/src/V1beta1/Model.php
@@ -21,7 +21,7 @@ class Model extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string name = 1;
*/
- private $name = '';
+ protected $name = '';
/**
* Required. The name of the model to show in the interface. The name can be
* up to 32 characters long and can consist only of ASCII Latin letters A-Z
@@ -30,33 +30,33 @@ class Model extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string display_name = 2;
*/
- private $display_name = '';
+ protected $display_name = '';
/**
* Required. The resource ID of the dataset used to create the model. The dataset must
* come from the same ancestor project and location.
*
* Generated from protobuf field string dataset_id = 3;
*/
- private $dataset_id = '';
+ protected $dataset_id = '';
/**
* Output only. Timestamp when the model training finished and can be used for prediction.
*
* Generated from protobuf field .google.protobuf.Timestamp create_time = 7;
*/
- private $create_time = null;
+ protected $create_time = null;
/**
* Output only. Timestamp when this model was last updated.
*
* Generated from protobuf field .google.protobuf.Timestamp update_time = 11;
*/
- private $update_time = null;
+ protected $update_time = null;
/**
* Output only. Deployment state of the model. A model can only serve
* prediction requests after it gets deployed.
*
* Generated from protobuf field .google.cloud.automl.v1beta1.Model.DeploymentState deployment_state = 8;
*/
- private $deployment_state = 0;
+ protected $deployment_state = 0;
protected $model_metadata;
/**
diff --git a/AutoMl/src/V1beta1/ModelEvaluation.php b/AutoMl/src/V1beta1/ModelEvaluation.php
index b99ff6199c7e..eafe2c5458c3 100644
--- a/AutoMl/src/V1beta1/ModelEvaluation.php
+++ b/AutoMl/src/V1beta1/ModelEvaluation.php
@@ -22,7 +22,7 @@ class ModelEvaluation extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string name = 1;
*/
- private $name = '';
+ protected $name = '';
/**
* Output only. The ID of the annotation spec that the model evaluation applies to. The
* The ID is empty for the overall model evaluation.
@@ -35,7 +35,7 @@ class ModelEvaluation extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string annotation_spec_id = 2;
*/
- private $annotation_spec_id = '';
+ protected $annotation_spec_id = '';
/**
* Output only. The value of
* [display_name][google.cloud.automl.v1beta1.AnnotationSpec.display_name] at
@@ -51,13 +51,13 @@ class ModelEvaluation extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string display_name = 15;
*/
- private $display_name = '';
+ protected $display_name = '';
/**
* Output only. Timestamp when this model evaluation was created.
*
* Generated from protobuf field .google.protobuf.Timestamp create_time = 5;
*/
- private $create_time = null;
+ protected $create_time = null;
/**
* Output only. The number of examples used for model evaluation, i.e. for
* which ground truth from time of model creation is compared against the
@@ -70,7 +70,7 @@ class ModelEvaluation extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field int32 evaluated_example_count = 6;
*/
- private $evaluated_example_count = 0;
+ protected $evaluated_example_count = 0;
protected $metrics;
/**
diff --git a/AutoMl/src/V1beta1/ModelExportOutputConfig.php b/AutoMl/src/V1beta1/ModelExportOutputConfig.php
index db096a17b2ca..a19a631c6f5c 100644
--- a/AutoMl/src/V1beta1/ModelExportOutputConfig.php
+++ b/AutoMl/src/V1beta1/ModelExportOutputConfig.php
@@ -44,7 +44,7 @@ class ModelExportOutputConfig extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string model_format = 4;
*/
- private $model_format = '';
+ protected $model_format = '';
/**
* Additional model-type and format specific parameters describing the
* requirements for the to be exported model files, any string must be up to
diff --git a/AutoMl/src/V1beta1/NormalizedVertex.php b/AutoMl/src/V1beta1/NormalizedVertex.php
index 69b6ad2e5ffb..6aa074a375eb 100644
--- a/AutoMl/src/V1beta1/NormalizedVertex.php
+++ b/AutoMl/src/V1beta1/NormalizedVertex.php
@@ -24,13 +24,13 @@ class NormalizedVertex extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field float x = 1;
*/
- private $x = 0.0;
+ protected $x = 0.0;
/**
* Required. Vertical coordinate.
*
* Generated from protobuf field float y = 2;
*/
- private $y = 0.0;
+ protected $y = 0.0;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/OperationMetadata.php b/AutoMl/src/V1beta1/OperationMetadata.php
index 704714dbced4..50748e119c32 100644
--- a/AutoMl/src/V1beta1/OperationMetadata.php
+++ b/AutoMl/src/V1beta1/OperationMetadata.php
@@ -21,7 +21,7 @@ class OperationMetadata extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field int32 progress_percent = 13;
*/
- private $progress_percent = 0;
+ protected $progress_percent = 0;
/**
* Output only. Partial failures encountered.
* E.g. single files that couldn't be read.
@@ -36,13 +36,13 @@ class OperationMetadata extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.protobuf.Timestamp create_time = 3;
*/
- private $create_time = null;
+ protected $create_time = null;
/**
* Output only. Time when the operation was updated for the last time.
*
* Generated from protobuf field .google.protobuf.Timestamp update_time = 4;
*/
- private $update_time = null;
+ protected $update_time = null;
protected $details;
/**
diff --git a/AutoMl/src/V1beta1/PredictRequest.php b/AutoMl/src/V1beta1/PredictRequest.php
index bdee8e02eb8d..bdb3ebccafbb 100644
--- a/AutoMl/src/V1beta1/PredictRequest.php
+++ b/AutoMl/src/V1beta1/PredictRequest.php
@@ -21,14 +21,14 @@ class PredictRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string name = 1;
*/
- private $name = '';
+ protected $name = '';
/**
* Required. Payload to perform a prediction on. The payload must match the
* problem type that the model was trained to solve.
*
* Generated from protobuf field .google.cloud.automl.v1beta1.ExamplePayload payload = 2;
*/
- private $payload = null;
+ protected $payload = null;
/**
* Additional domain-specific parameters, any string must be up to 25000
* characters long.
diff --git a/AutoMl/src/V1beta1/PredictResponse.php b/AutoMl/src/V1beta1/PredictResponse.php
index 5bdbeb358be1..386fe241c5e3 100644
--- a/AutoMl/src/V1beta1/PredictResponse.php
+++ b/AutoMl/src/V1beta1/PredictResponse.php
@@ -32,7 +32,7 @@ class PredictResponse extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.cloud.automl.v1beta1.ExamplePayload preprocessed_input = 3;
*/
- private $preprocessed_input = null;
+ protected $preprocessed_input = null;
/**
* Additional domain-specific prediction response metadata.
* * For Image Object Detection:
diff --git a/AutoMl/src/V1beta1/RegressionEvaluationMetrics.php b/AutoMl/src/V1beta1/RegressionEvaluationMetrics.php
index 429e77837ea1..6dad15ff81b1 100644
--- a/AutoMl/src/V1beta1/RegressionEvaluationMetrics.php
+++ b/AutoMl/src/V1beta1/RegressionEvaluationMetrics.php
@@ -20,32 +20,32 @@ class RegressionEvaluationMetrics extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field float root_mean_squared_error = 1;
*/
- private $root_mean_squared_error = 0.0;
+ protected $root_mean_squared_error = 0.0;
/**
* Output only. Mean Absolute Error (MAE).
*
* Generated from protobuf field float mean_absolute_error = 2;
*/
- private $mean_absolute_error = 0.0;
+ protected $mean_absolute_error = 0.0;
/**
* Output only. Mean absolute percentage error. Only set if all ground truth
* values are are positive.
*
* Generated from protobuf field float mean_absolute_percentage_error = 3;
*/
- private $mean_absolute_percentage_error = 0.0;
+ protected $mean_absolute_percentage_error = 0.0;
/**
* Output only. R squared.
*
* Generated from protobuf field float r_squared = 4;
*/
- private $r_squared = 0.0;
+ protected $r_squared = 0.0;
/**
* Output only. Root mean squared log error.
*
* Generated from protobuf field float root_mean_squared_log_error = 5;
*/
- private $root_mean_squared_log_error = 0.0;
+ protected $root_mean_squared_log_error = 0.0;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/StringStats/UnigramStats.php b/AutoMl/src/V1beta1/StringStats/UnigramStats.php
index eb9b1847d472..b2cd698de32a 100644
--- a/AutoMl/src/V1beta1/StringStats/UnigramStats.php
+++ b/AutoMl/src/V1beta1/StringStats/UnigramStats.php
@@ -20,13 +20,13 @@ class UnigramStats extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string value = 1;
*/
- private $value = '';
+ protected $value = '';
/**
* The number of occurrences of this unigram in the series.
*
* Generated from protobuf field int64 count = 2;
*/
- private $count = 0;
+ protected $count = 0;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/TableSpec.php b/AutoMl/src/V1beta1/TableSpec.php
index ee198751e645..ae0c0af0ea2a 100644
--- a/AutoMl/src/V1beta1/TableSpec.php
+++ b/AutoMl/src/V1beta1/TableSpec.php
@@ -30,7 +30,7 @@ class TableSpec extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string name = 1;
*/
- private $name = '';
+ protected $name = '';
/**
* column_spec_id of the time column. Only used if the parent dataset's
* ml_use_column_spec_id is not set. Used to split rows into TRAIN, VALIDATE
@@ -43,27 +43,27 @@ class TableSpec extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string time_column_spec_id = 2;
*/
- private $time_column_spec_id = '';
+ protected $time_column_spec_id = '';
/**
* Output only. The number of rows (i.e. examples) in the table.
*
* Generated from protobuf field int64 row_count = 3;
*/
- private $row_count = 0;
+ protected $row_count = 0;
/**
* Output only. The number of valid rows (i.e. without values that don't match
* DataType-s of their columns).
*
* Generated from protobuf field int64 valid_row_count = 4;
*/
- private $valid_row_count = 0;
+ protected $valid_row_count = 0;
/**
* Output only. The number of columns of the table. That is, the number of
* child ColumnSpec-s.
*
* Generated from protobuf field int64 column_count = 7;
*/
- private $column_count = 0;
+ protected $column_count = 0;
/**
* Output only. Input configs via which data currently residing in the table
* had been imported.
@@ -77,7 +77,7 @@ class TableSpec extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string etag = 6;
*/
- private $etag = '';
+ protected $etag = '';
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/TablesAnnotation.php b/AutoMl/src/V1beta1/TablesAnnotation.php
index 48c49104f3e5..9f22b8daec45 100644
--- a/AutoMl/src/V1beta1/TablesAnnotation.php
+++ b/AutoMl/src/V1beta1/TablesAnnotation.php
@@ -24,7 +24,7 @@ class TablesAnnotation extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field float score = 1;
*/
- private $score = 0.0;
+ protected $score = 0.0;
/**
* Output only. Only populated when
* [target_column_spec][google.cloud.automl.v1beta1.TablesModelMetadata.target_column_spec]
@@ -33,7 +33,7 @@ class TablesAnnotation extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.cloud.automl.v1beta1.DoubleRange prediction_interval = 4;
*/
- private $prediction_interval = null;
+ protected $prediction_interval = null;
/**
* The predicted value of the row's
* [target_column][google.cloud.automl.v1beta1.TablesModelMetadata.target_column_spec].
@@ -44,7 +44,7 @@ class TablesAnnotation extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.protobuf.Value value = 2;
*/
- private $value = null;
+ protected $value = null;
/**
* Output only. Auxiliary information for each of the model's
* [input_feature_column_specs][google.cloud.automl.v1beta1.TablesModelMetadata.input_feature_column_specs]
diff --git a/AutoMl/src/V1beta1/TablesDatasetMetadata.php b/AutoMl/src/V1beta1/TablesDatasetMetadata.php
index e16c6ea849e0..b1656a90fe2d 100644
--- a/AutoMl/src/V1beta1/TablesDatasetMetadata.php
+++ b/AutoMl/src/V1beta1/TablesDatasetMetadata.php
@@ -20,7 +20,7 @@ class TablesDatasetMetadata extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string primary_table_spec_id = 1;
*/
- private $primary_table_spec_id = '';
+ protected $primary_table_spec_id = '';
/**
* column_spec_id of the primary table's column that should be used as the
* training & prediction target.
@@ -35,7 +35,7 @@ class TablesDatasetMetadata extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string target_column_spec_id = 2;
*/
- private $target_column_spec_id = '';
+ protected $target_column_spec_id = '';
/**
* column_spec_id of the primary table's column that should be used as the
* weight column, i.e. the higher the value the more important the row will be
@@ -49,7 +49,7 @@ class TablesDatasetMetadata extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string weight_column_spec_id = 3;
*/
- private $weight_column_spec_id = '';
+ protected $weight_column_spec_id = '';
/**
* column_spec_id of the primary table column which specifies a possible ML
* use of the row, i.e. the column will be used to split the rows into TRAIN,
@@ -67,7 +67,7 @@ class TablesDatasetMetadata extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string ml_use_column_spec_id = 4;
*/
- private $ml_use_column_spec_id = '';
+ protected $ml_use_column_spec_id = '';
/**
* Output only. Correlations between
* [TablesDatasetMetadata.target_column_spec_id][google.cloud.automl.v1beta1.TablesDatasetMetadata.target_column_spec_id],
@@ -91,7 +91,7 @@ class TablesDatasetMetadata extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.protobuf.Timestamp stats_update_time = 7;
*/
- private $stats_update_time = null;
+ protected $stats_update_time = null;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/TablesModelColumnInfo.php b/AutoMl/src/V1beta1/TablesModelColumnInfo.php
index 840a6e86aa07..bb9b24a5ab76 100644
--- a/AutoMl/src/V1beta1/TablesModelColumnInfo.php
+++ b/AutoMl/src/V1beta1/TablesModelColumnInfo.php
@@ -22,14 +22,14 @@ class TablesModelColumnInfo extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string column_spec_name = 1;
*/
- private $column_spec_name = '';
+ protected $column_spec_name = '';
/**
* Output only. The display name of the column (same as the display_name of
* its ColumnSpec).
*
* Generated from protobuf field string column_display_name = 2;
*/
- private $column_display_name = '';
+ protected $column_display_name = '';
/**
* Output only. When given as part of a Model (always populated):
* Measurement of how much model predictions correctness on the TEST data
@@ -50,7 +50,7 @@ class TablesModelColumnInfo extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field float feature_importance = 3;
*/
- private $feature_importance = 0.0;
+ protected $feature_importance = 0.0;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/TablesModelMetadata.php b/AutoMl/src/V1beta1/TablesModelMetadata.php
index 6610d573bb14..0c12603172f8 100644
--- a/AutoMl/src/V1beta1/TablesModelMetadata.php
+++ b/AutoMl/src/V1beta1/TablesModelMetadata.php
@@ -28,7 +28,7 @@ class TablesModelMetadata extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.cloud.automl.v1beta1.ColumnSpec target_column_spec = 2;
*/
- private $target_column_spec = null;
+ protected $target_column_spec = null;
/**
* Column specs of the dataset's primary table's columns, on which
* the model is trained and which are used as the input for predictions.
@@ -73,7 +73,7 @@ class TablesModelMetadata extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string optimization_objective = 4;
*/
- private $optimization_objective = '';
+ protected $optimization_objective = '';
/**
* Output only. Auxiliary information for each of the
* input_feature_column_specs with respect to this particular model.
@@ -96,7 +96,7 @@ class TablesModelMetadata extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field int64 train_budget_milli_node_hours = 6;
*/
- private $train_budget_milli_node_hours = 0;
+ protected $train_budget_milli_node_hours = 0;
/**
* Output only. The actual training cost of the model, expressed in milli
* node hours, i.e. 1,000 value in this field means 1 node hour. Guaranteed
@@ -104,7 +104,7 @@ class TablesModelMetadata extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field int64 train_cost_milli_node_hours = 7;
*/
- private $train_cost_milli_node_hours = 0;
+ protected $train_cost_milli_node_hours = 0;
/**
* Use the entire training budget. This disables the early stopping feature.
* By default, the early stopping feature is enabled, which means that AutoML
@@ -112,7 +112,7 @@ class TablesModelMetadata extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field bool disable_early_stopping = 12;
*/
- private $disable_early_stopping = false;
+ protected $disable_early_stopping = false;
protected $additional_optimization_objective_config;
/**
diff --git a/AutoMl/src/V1beta1/TextClassificationDatasetMetadata.php b/AutoMl/src/V1beta1/TextClassificationDatasetMetadata.php
index 45e574037d0c..947ea72558de 100644
--- a/AutoMl/src/V1beta1/TextClassificationDatasetMetadata.php
+++ b/AutoMl/src/V1beta1/TextClassificationDatasetMetadata.php
@@ -20,7 +20,7 @@ class TextClassificationDatasetMetadata extends \Google\Protobuf\Internal\Messag
*
* Generated from protobuf field .google.cloud.automl.v1beta1.ClassificationType classification_type = 1;
*/
- private $classification_type = 0;
+ protected $classification_type = 0;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/TextClassificationModelMetadata.php b/AutoMl/src/V1beta1/TextClassificationModelMetadata.php
index be1ee879ecbe..f51ef7c426cd 100644
--- a/AutoMl/src/V1beta1/TextClassificationModelMetadata.php
+++ b/AutoMl/src/V1beta1/TextClassificationModelMetadata.php
@@ -20,7 +20,7 @@ class TextClassificationModelMetadata extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.cloud.automl.v1beta1.ClassificationType classification_type = 3;
*/
- private $classification_type = 0;
+ protected $classification_type = 0;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/TextExtractionAnnotation.php b/AutoMl/src/V1beta1/TextExtractionAnnotation.php
index 798df7b8c26e..e779ccf00fab 100644
--- a/AutoMl/src/V1beta1/TextExtractionAnnotation.php
+++ b/AutoMl/src/V1beta1/TextExtractionAnnotation.php
@@ -21,7 +21,7 @@ class TextExtractionAnnotation extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field float score = 1;
*/
- private $score = 0.0;
+ protected $score = 0.0;
protected $annotation;
/**
diff --git a/AutoMl/src/V1beta1/TextExtractionEvaluationMetrics.php b/AutoMl/src/V1beta1/TextExtractionEvaluationMetrics.php
index d24a5e984bba..9ef5ec8488df 100644
--- a/AutoMl/src/V1beta1/TextExtractionEvaluationMetrics.php
+++ b/AutoMl/src/V1beta1/TextExtractionEvaluationMetrics.php
@@ -20,7 +20,7 @@ class TextExtractionEvaluationMetrics extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field float au_prc = 1;
*/
- private $au_prc = 0.0;
+ protected $au_prc = 0.0;
/**
* Output only. Metrics that have confidence thresholds.
* Precision-recall curve can be derived from it.
diff --git a/AutoMl/src/V1beta1/TextExtractionEvaluationMetrics/ConfidenceMetricsEntry.php b/AutoMl/src/V1beta1/TextExtractionEvaluationMetrics/ConfidenceMetricsEntry.php
index 75f14a418af5..0436ffb09e6d 100644
--- a/AutoMl/src/V1beta1/TextExtractionEvaluationMetrics/ConfidenceMetricsEntry.php
+++ b/AutoMl/src/V1beta1/TextExtractionEvaluationMetrics/ConfidenceMetricsEntry.php
@@ -22,25 +22,25 @@ class ConfidenceMetricsEntry extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field float confidence_threshold = 1;
*/
- private $confidence_threshold = 0.0;
+ protected $confidence_threshold = 0.0;
/**
* Output only. Recall under the given confidence threshold.
*
* Generated from protobuf field float recall = 3;
*/
- private $recall = 0.0;
+ protected $recall = 0.0;
/**
* Output only. Precision under the given confidence threshold.
*
* Generated from protobuf field float precision = 4;
*/
- private $precision = 0.0;
+ protected $precision = 0.0;
/**
* Output only. The harmonic mean of recall and precision.
*
* Generated from protobuf field float f1_score = 5;
*/
- private $f1_score = 0.0;
+ protected $f1_score = 0.0;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/TextSegment.php b/AutoMl/src/V1beta1/TextSegment.php
index 26602a0c6f13..fd15ed8b2490 100644
--- a/AutoMl/src/V1beta1/TextSegment.php
+++ b/AutoMl/src/V1beta1/TextSegment.php
@@ -20,14 +20,14 @@ class TextSegment extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string content = 3;
*/
- private $content = '';
+ protected $content = '';
/**
* Required. Zero-based character index of the first character of the text
* segment (counting characters from the beginning of the text).
*
* Generated from protobuf field int64 start_offset = 1;
*/
- private $start_offset = 0;
+ protected $start_offset = 0;
/**
* Required. Zero-based character index of the first character past the end of
* the text segment (counting character from the beginning of the text).
@@ -35,7 +35,7 @@ class TextSegment extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field int64 end_offset = 2;
*/
- private $end_offset = 0;
+ protected $end_offset = 0;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/TextSentimentAnnotation.php b/AutoMl/src/V1beta1/TextSentimentAnnotation.php
index 34249d577a75..64ec607ab3b1 100644
--- a/AutoMl/src/V1beta1/TextSentimentAnnotation.php
+++ b/AutoMl/src/V1beta1/TextSentimentAnnotation.php
@@ -31,7 +31,7 @@ class TextSentimentAnnotation extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field int32 sentiment = 1;
*/
- private $sentiment = 0;
+ protected $sentiment = 0;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/TextSentimentDatasetMetadata.php b/AutoMl/src/V1beta1/TextSentimentDatasetMetadata.php
index f07439e56aa7..5d402400eba9 100644
--- a/AutoMl/src/V1beta1/TextSentimentDatasetMetadata.php
+++ b/AutoMl/src/V1beta1/TextSentimentDatasetMetadata.php
@@ -24,7 +24,7 @@ class TextSentimentDatasetMetadata extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field int32 sentiment_max = 1;
*/
- private $sentiment_max = 0;
+ protected $sentiment_max = 0;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/TextSentimentEvaluationMetrics.php b/AutoMl/src/V1beta1/TextSentimentEvaluationMetrics.php
index 2b9b28dc65f4..9fc61af2e707 100644
--- a/AutoMl/src/V1beta1/TextSentimentEvaluationMetrics.php
+++ b/AutoMl/src/V1beta1/TextSentimentEvaluationMetrics.php
@@ -20,47 +20,47 @@ class TextSentimentEvaluationMetrics extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field float precision = 1;
*/
- private $precision = 0.0;
+ protected $precision = 0.0;
/**
* Output only. Recall.
*
* Generated from protobuf field float recall = 2;
*/
- private $recall = 0.0;
+ protected $recall = 0.0;
/**
* Output only. The harmonic mean of recall and precision.
*
* Generated from protobuf field float f1_score = 3;
*/
- private $f1_score = 0.0;
+ protected $f1_score = 0.0;
/**
* Output only. Mean absolute error. Only set for the overall model
* evaluation, not for evaluation of a single annotation spec.
*
* Generated from protobuf field float mean_absolute_error = 4;
*/
- private $mean_absolute_error = 0.0;
+ protected $mean_absolute_error = 0.0;
/**
* Output only. Mean squared error. Only set for the overall model
* evaluation, not for evaluation of a single annotation spec.
*
* Generated from protobuf field float mean_squared_error = 5;
*/
- private $mean_squared_error = 0.0;
+ protected $mean_squared_error = 0.0;
/**
* Output only. Linear weighted kappa. Only set for the overall model
* evaluation, not for evaluation of a single annotation spec.
*
* Generated from protobuf field float linear_kappa = 6;
*/
- private $linear_kappa = 0.0;
+ protected $linear_kappa = 0.0;
/**
* Output only. Quadratic weighted kappa. Only set for the overall model
* evaluation, not for evaluation of a single annotation spec.
*
* Generated from protobuf field float quadratic_kappa = 7;
*/
- private $quadratic_kappa = 0.0;
+ protected $quadratic_kappa = 0.0;
/**
* Output only. Confusion matrix of the evaluation.
* Only set for the overall model evaluation, not for evaluation of a single
@@ -68,7 +68,7 @@ class TextSentimentEvaluationMetrics extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.cloud.automl.v1beta1.ClassificationEvaluationMetrics.ConfusionMatrix confusion_matrix = 8;
*/
- private $confusion_matrix = null;
+ protected $confusion_matrix = null;
/**
* Output only. The annotation spec ids used for this evaluation.
* Deprecated .
diff --git a/AutoMl/src/V1beta1/TextSnippet.php b/AutoMl/src/V1beta1/TextSnippet.php
index 10223fb86e4d..70dad4a664df 100644
--- a/AutoMl/src/V1beta1/TextSnippet.php
+++ b/AutoMl/src/V1beta1/TextSnippet.php
@@ -21,7 +21,7 @@ class TextSnippet extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string content = 1;
*/
- private $content = '';
+ protected $content = '';
/**
* Optional. The format of
* [content][google.cloud.automl.v1beta1.TextSnippet.content]. Currently the
@@ -31,13 +31,13 @@ class TextSnippet extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string mime_type = 2;
*/
- private $mime_type = '';
+ protected $mime_type = '';
/**
* Output only. HTTP URI where you can download the content.
*
* Generated from protobuf field string content_uri = 4;
*/
- private $content_uri = '';
+ protected $content_uri = '';
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/TimeSegment.php b/AutoMl/src/V1beta1/TimeSegment.php
index 5cd05f1b9ff4..ee7329fe6344 100644
--- a/AutoMl/src/V1beta1/TimeSegment.php
+++ b/AutoMl/src/V1beta1/TimeSegment.php
@@ -21,14 +21,14 @@ class TimeSegment extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.protobuf.Duration start_time_offset = 1;
*/
- private $start_time_offset = null;
+ protected $start_time_offset = null;
/**
* End of the time segment (exclusive), represented as the duration since the
* example start.
*
* Generated from protobuf field .google.protobuf.Duration end_time_offset = 2;
*/
- private $end_time_offset = null;
+ protected $end_time_offset = null;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/TranslationAnnotation.php b/AutoMl/src/V1beta1/TranslationAnnotation.php
index 6eeb706876e2..1a8051b3935b 100644
--- a/AutoMl/src/V1beta1/TranslationAnnotation.php
+++ b/AutoMl/src/V1beta1/TranslationAnnotation.php
@@ -20,7 +20,7 @@ class TranslationAnnotation extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.cloud.automl.v1beta1.TextSnippet translated_content = 1;
*/
- private $translated_content = null;
+ protected $translated_content = null;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/TranslationDatasetMetadata.php b/AutoMl/src/V1beta1/TranslationDatasetMetadata.php
index c5a0c9306519..fb15b1451832 100644
--- a/AutoMl/src/V1beta1/TranslationDatasetMetadata.php
+++ b/AutoMl/src/V1beta1/TranslationDatasetMetadata.php
@@ -20,13 +20,13 @@ class TranslationDatasetMetadata extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string source_language_code = 1;
*/
- private $source_language_code = '';
+ protected $source_language_code = '';
/**
* Required. The BCP-47 language code of the target language.
*
* Generated from protobuf field string target_language_code = 2;
*/
- private $target_language_code = '';
+ protected $target_language_code = '';
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/TranslationEvaluationMetrics.php b/AutoMl/src/V1beta1/TranslationEvaluationMetrics.php
index ce682a98c573..4c2d4efb034e 100644
--- a/AutoMl/src/V1beta1/TranslationEvaluationMetrics.php
+++ b/AutoMl/src/V1beta1/TranslationEvaluationMetrics.php
@@ -20,13 +20,13 @@ class TranslationEvaluationMetrics extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field double bleu_score = 1;
*/
- private $bleu_score = 0.0;
+ protected $bleu_score = 0.0;
/**
* Output only. BLEU score for base model.
*
* Generated from protobuf field double base_bleu_score = 2;
*/
- private $base_bleu_score = 0.0;
+ protected $base_bleu_score = 0.0;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/TranslationModelMetadata.php b/AutoMl/src/V1beta1/TranslationModelMetadata.php
index cb5c29ee7a06..4d767747f695 100644
--- a/AutoMl/src/V1beta1/TranslationModelMetadata.php
+++ b/AutoMl/src/V1beta1/TranslationModelMetadata.php
@@ -23,21 +23,21 @@ class TranslationModelMetadata extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string base_model = 1;
*/
- private $base_model = '';
+ protected $base_model = '';
/**
* Output only. Inferred from the dataset.
* The source languge (The BCP-47 language code) that is used for training.
*
* Generated from protobuf field string source_language_code = 2;
*/
- private $source_language_code = '';
+ protected $source_language_code = '';
/**
* Output only. The target languge (The BCP-47 language code) that is used for
* training.
*
* Generated from protobuf field string target_language_code = 3;
*/
- private $target_language_code = '';
+ protected $target_language_code = '';
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/UndeployModelRequest.php b/AutoMl/src/V1beta1/UndeployModelRequest.php
index 206f9317df86..6b739ec3a03d 100644
--- a/AutoMl/src/V1beta1/UndeployModelRequest.php
+++ b/AutoMl/src/V1beta1/UndeployModelRequest.php
@@ -20,7 +20,7 @@ class UndeployModelRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string name = 1;
*/
- private $name = '';
+ protected $name = '';
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/UpdateColumnSpecRequest.php b/AutoMl/src/V1beta1/UpdateColumnSpecRequest.php
index d6687b022e15..f04a45eb6270 100644
--- a/AutoMl/src/V1beta1/UpdateColumnSpecRequest.php
+++ b/AutoMl/src/V1beta1/UpdateColumnSpecRequest.php
@@ -20,13 +20,13 @@ class UpdateColumnSpecRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.cloud.automl.v1beta1.ColumnSpec column_spec = 1;
*/
- private $column_spec = null;
+ protected $column_spec = null;
/**
* The update mask applies to the resource.
*
* Generated from protobuf field .google.protobuf.FieldMask update_mask = 2;
*/
- private $update_mask = null;
+ protected $update_mask = null;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/UpdateDatasetRequest.php b/AutoMl/src/V1beta1/UpdateDatasetRequest.php
index e3fb5fb6a10d..1356a62bc791 100644
--- a/AutoMl/src/V1beta1/UpdateDatasetRequest.php
+++ b/AutoMl/src/V1beta1/UpdateDatasetRequest.php
@@ -20,13 +20,13 @@ class UpdateDatasetRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.cloud.automl.v1beta1.Dataset dataset = 1;
*/
- private $dataset = null;
+ protected $dataset = null;
/**
* The update mask applies to the resource.
*
* Generated from protobuf field .google.protobuf.FieldMask update_mask = 2;
*/
- private $update_mask = null;
+ protected $update_mask = null;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/UpdateTableSpecRequest.php b/AutoMl/src/V1beta1/UpdateTableSpecRequest.php
index f3e7e24f63b4..5348a7b3dda4 100644
--- a/AutoMl/src/V1beta1/UpdateTableSpecRequest.php
+++ b/AutoMl/src/V1beta1/UpdateTableSpecRequest.php
@@ -20,13 +20,13 @@ class UpdateTableSpecRequest extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field .google.cloud.automl.v1beta1.TableSpec table_spec = 1;
*/
- private $table_spec = null;
+ protected $table_spec = null;
/**
* The update mask applies to the resource.
*
* Generated from protobuf field .google.protobuf.FieldMask update_mask = 2;
*/
- private $update_mask = null;
+ protected $update_mask = null;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/VideoClassificationAnnotation.php b/AutoMl/src/V1beta1/VideoClassificationAnnotation.php
index e02e273663c6..5110d6182ad5 100644
--- a/AutoMl/src/V1beta1/VideoClassificationAnnotation.php
+++ b/AutoMl/src/V1beta1/VideoClassificationAnnotation.php
@@ -39,20 +39,20 @@ class VideoClassificationAnnotation extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string type = 1;
*/
- private $type = '';
+ protected $type = '';
/**
* Output only . The classification details of this annotation.
*
* Generated from protobuf field .google.cloud.automl.v1beta1.ClassificationAnnotation classification_annotation = 2;
*/
- private $classification_annotation = null;
+ protected $classification_annotation = null;
/**
* Output only . The time segment of the video to which the
* annotation applies.
*
* Generated from protobuf field .google.cloud.automl.v1beta1.TimeSegment time_segment = 3;
*/
- private $time_segment = null;
+ protected $time_segment = null;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/VideoObjectTrackingAnnotation.php b/AutoMl/src/V1beta1/VideoObjectTrackingAnnotation.php
index 4064081745f1..859b41ad755e 100644
--- a/AutoMl/src/V1beta1/VideoObjectTrackingAnnotation.php
+++ b/AutoMl/src/V1beta1/VideoObjectTrackingAnnotation.php
@@ -26,21 +26,21 @@ class VideoObjectTrackingAnnotation extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field string instance_id = 1;
*/
- private $instance_id = '';
+ protected $instance_id = '';
/**
* Required. A time (frame) of a video to which this annotation pertains.
* Represented as the duration since the video's start.
*
* Generated from protobuf field .google.protobuf.Duration time_offset = 2;
*/
- private $time_offset = null;
+ protected $time_offset = null;
/**
* Required. The rectangle representing the object location on the frame (i.e.
* at the time_offset of the video).
*
* Generated from protobuf field .google.cloud.automl.v1beta1.BoundingPoly bounding_box = 3;
*/
- private $bounding_box = null;
+ protected $bounding_box = null;
/**
* Output only. The confidence that this annotation is positive for the video at
* the time_offset, value in [0, 1], higher means higher positivity
@@ -50,7 +50,7 @@ class VideoObjectTrackingAnnotation extends \Google\Protobuf\Internal\Message
*
* Generated from protobuf field float score = 4;
*/
- private $score = 0.0;
+ protected $score = 0.0;
/**
* Constructor.
diff --git a/AutoMl/src/V1beta1/VideoObjectTrackingEvaluationMetrics.php b/AutoMl/src/V1beta1/VideoObjectTrackingEvaluationMetrics.php
index 9d69335c3302..45294e4ab1e1 100644
--- a/AutoMl/src/V1beta1/VideoObjectTrackingEvaluationMetrics.php
+++ b/AutoMl/src/V1beta1/VideoObjectTrackingEvaluationMetrics.php
@@ -22,14 +22,14 @@ class VideoObjectTrackingEvaluationMetrics extends \Google\Protobuf\Internal\Mes
*
* Generated from protobuf field int32 evaluated_frame_count = 1;
*/
- private $evaluated_frame_count = 0;
+ protected $evaluated_frame_count = 0;
/**
* Output only. The total number of bounding boxes (i.e. summed over all
* frames) the ground truth used to create this evaluation had.
*
* Generated from protobuf field int32 evaluated_bounding_box_count = 2;
*/
- private $evaluated_bounding_box_count = 0;
+ protected $evaluated_bounding_box_count = 0;
/**
* Output only. The bounding boxes match metrics for each
* Intersection-over-union threshold 0.05,0.10,...,0.95,0.96,0.97,0.98,0.99
@@ -45,7 +45,7 @@ class VideoObjectTrackingEvaluationMetrics extends \Google\Protobuf\Internal\Mes
*
* Generated from protobuf field float bounding_box_mean_average_precision = 6;
*/
- private $bounding_box_mean_average_precision = 0.0;
+ protected $bounding_box_mean_average_precision = 0.0;
/**
* Constructor.
diff --git a/AutoMl/synth.metadata b/AutoMl/synth.metadata
index fb828a9f3998..b9d86626f1cf 100644
--- a/AutoMl/synth.metadata
+++ b/AutoMl/synth.metadata
@@ -1,19 +1,19 @@
{
- "updateTime": "2019-11-16T10:58:59.170327Z",
+ "updateTime": "2020-01-17T10:59:03.325819Z",
"sources": [
{
"generator": {
"name": "artman",
- "version": "0.41.1",
- "dockerImage": "googleapis/artman@sha256:545c758c76c3f779037aa259023ec3d1ef2d57d2c8cd00a222cb187d63ceac5e"
+ "version": "0.44.1",
+ "dockerImage": "googleapis/artman@sha256:5599b61e56a372d21b671969ee915fbca0f6c3a0daaeb898d01f8f685f1bbc8b"
}
},
{
"git": {
"name": "googleapis",
"remote": "https://github.com/googleapis/googleapis.git",
- "sha": "c89394342a9ef70acaf73a6959e04b943fbc817b",
- "internalRef": "280761373"
+ "sha": "58e770d568a2b78168ddc19a874178fee8265a9d",
+ "internalRef": "290146169"
}
}
],
@@ -38,5 +38,1039 @@
"config": "google/cloud/automl/artman_automl_v1.yaml"
}
}
+ ],
+ "newFiles": [
+ {
+ "path": "metadata/V1/AnnotationPayload.php"
+ },
+ {
+ "path": "metadata/V1/AnnotationSpec.php"
+ },
+ {
+ "path": "metadata/V1/Classification.php"
+ },
+ {
+ "path": "metadata/V1/DataItems.php"
+ },
+ {
+ "path": "metadata/V1/Dataset.php"
+ },
+ {
+ "path": "metadata/V1/Detection.php"
+ },
+ {
+ "path": "metadata/V1/Geometry.php"
+ },
+ {
+ "path": "metadata/V1/Image.php"
+ },
+ {
+ "path": "metadata/V1/Io.php"
+ },
+ {
+ "path": "metadata/V1/Model.php"
+ },
+ {
+ "path": "metadata/V1/ModelEvaluation.php"
+ },
+ {
+ "path": "metadata/V1/Operations.php"
+ },
+ {
+ "path": "metadata/V1/PredictionService.php"
+ },
+ {
+ "path": "metadata/V1/Service.php"
+ },
+ {
+ "path": "metadata/V1/Text.php"
+ },
+ {
+ "path": "metadata/V1/TextExtraction.php"
+ },
+ {
+ "path": "metadata/V1/TextSegment.php"
+ },
+ {
+ "path": "metadata/V1/TextSentiment.php"
+ },
+ {
+ "path": "metadata/V1/Translation.php"
+ },
+ {
+ "path": "metadata/V1Beta1/AnnotationPayload.php"
+ },
+ {
+ "path": "metadata/V1Beta1/AnnotationSpec.php"
+ },
+ {
+ "path": "metadata/V1Beta1/Classification.php"
+ },
+ {
+ "path": "metadata/V1Beta1/ColumnSpec.php"
+ },
+ {
+ "path": "metadata/V1Beta1/DataItems.php"
+ },
+ {
+ "path": "metadata/V1Beta1/DataStats.php"
+ },
+ {
+ "path": "metadata/V1Beta1/DataTypes.php"
+ },
+ {
+ "path": "metadata/V1Beta1/Dataset.php"
+ },
+ {
+ "path": "metadata/V1Beta1/Detection.php"
+ },
+ {
+ "path": "metadata/V1Beta1/Geometry.php"
+ },
+ {
+ "path": "metadata/V1Beta1/Image.php"
+ },
+ {
+ "path": "metadata/V1Beta1/Io.php"
+ },
+ {
+ "path": "metadata/V1Beta1/Model.php"
+ },
+ {
+ "path": "metadata/V1Beta1/ModelEvaluation.php"
+ },
+ {
+ "path": "metadata/V1Beta1/Operations.php"
+ },
+ {
+ "path": "metadata/V1Beta1/PredictionService.php"
+ },
+ {
+ "path": "metadata/V1Beta1/Ranges.php"
+ },
+ {
+ "path": "metadata/V1Beta1/Regression.php"
+ },
+ {
+ "path": "metadata/V1Beta1/Service.php"
+ },
+ {
+ "path": "metadata/V1Beta1/TableSpec.php"
+ },
+ {
+ "path": "metadata/V1Beta1/Tables.php"
+ },
+ {
+ "path": "metadata/V1Beta1/Temporal.php"
+ },
+ {
+ "path": "metadata/V1Beta1/Text.php"
+ },
+ {
+ "path": "metadata/V1Beta1/TextExtraction.php"
+ },
+ {
+ "path": "metadata/V1Beta1/TextSegment.php"
+ },
+ {
+ "path": "metadata/V1Beta1/TextSentiment.php"
+ },
+ {
+ "path": "metadata/V1Beta1/Translation.php"
+ },
+ {
+ "path": "metadata/V1Beta1/Video.php"
+ },
+ {
+ "path": "src/V1/AnnotationPayload.php"
+ },
+ {
+ "path": "src/V1/AnnotationSpec.php"
+ },
+ {
+ "path": "src/V1/AutoMlClient.php"
+ },
+ {
+ "path": "src/V1/AutoMlGrpcClient.php"
+ },
+ {
+ "path": "src/V1/BatchPredictInputConfig.php"
+ },
+ {
+ "path": "src/V1/BatchPredictOperationMetadata.php"
+ },
+ {
+ "path": "src/V1/BatchPredictOperationMetadata/BatchPredictOutputInfo.php"
+ },
+ {
+ "path": "src/V1/BatchPredictOperationMetadata_BatchPredictOutputInfo.php"
+ },
+ {
+ "path": "src/V1/BatchPredictOutputConfig.php"
+ },
+ {
+ "path": "src/V1/BatchPredictRequest.php"
+ },
+ {
+ "path": "src/V1/BatchPredictResult.php"
+ },
+ {
+ "path": "src/V1/BoundingBoxMetricsEntry.php"
+ },
+ {
+ "path": "src/V1/BoundingBoxMetricsEntry/ConfidenceMetricsEntry.php"
+ },
+ {
+ "path": "src/V1/BoundingBoxMetricsEntry_ConfidenceMetricsEntry.php"
+ },
+ {
+ "path": "src/V1/BoundingPoly.php"
+ },
+ {
+ "path": "src/V1/ClassificationAnnotation.php"
+ },
+ {
+ "path": "src/V1/ClassificationEvaluationMetrics.php"
+ },
+ {
+ "path": "src/V1/ClassificationEvaluationMetrics/ConfidenceMetricsEntry.php"
+ },
+ {
+ "path": "src/V1/ClassificationEvaluationMetrics/ConfusionMatrix.php"
+ },
+ {
+ "path": "src/V1/ClassificationEvaluationMetrics/ConfusionMatrix/Row.php"
+ },
+ {
+ "path": "src/V1/ClassificationEvaluationMetrics_ConfidenceMetricsEntry.php"
+ },
+ {
+ "path": "src/V1/ClassificationEvaluationMetrics_ConfusionMatrix.php"
+ },
+ {
+ "path": "src/V1/ClassificationEvaluationMetrics_ConfusionMatrix_Row.php"
+ },
+ {
+ "path": "src/V1/ClassificationType.php"
+ },
+ {
+ "path": "src/V1/CreateDatasetOperationMetadata.php"
+ },
+ {
+ "path": "src/V1/CreateDatasetRequest.php"
+ },
+ {
+ "path": "src/V1/CreateModelOperationMetadata.php"
+ },
+ {
+ "path": "src/V1/CreateModelRequest.php"
+ },
+ {
+ "path": "src/V1/Dataset.php"
+ },
+ {
+ "path": "src/V1/DeleteDatasetRequest.php"
+ },
+ {
+ "path": "src/V1/DeleteModelRequest.php"
+ },
+ {
+ "path": "src/V1/DeleteOperationMetadata.php"
+ },
+ {
+ "path": "src/V1/DeployModelOperationMetadata.php"
+ },
+ {
+ "path": "src/V1/DeployModelRequest.php"
+ },
+ {
+ "path": "src/V1/Document.php"
+ },
+ {
+ "path": "src/V1/Document/Layout.php"
+ },
+ {
+ "path": "src/V1/Document/Layout/TextSegmentType.php"
+ },
+ {
+ "path": "src/V1/DocumentDimensions.php"
+ },
+ {
+ "path": "src/V1/DocumentDimensions/DocumentDimensionUnit.php"
+ },
+ {
+ "path": "src/V1/DocumentDimensions_DocumentDimensionUnit.php"
+ },
+ {
+ "path": "src/V1/DocumentInputConfig.php"
+ },
+ {
+ "path": "src/V1/Document_Layout.php"
+ },
+ {
+ "path": "src/V1/Document_Layout_TextSegmentType.php"
+ },
+ {
+ "path": "src/V1/ExamplePayload.php"
+ },
+ {
+ "path": "src/V1/ExportDataOperationMetadata.php"
+ },
+ {
+ "path": "src/V1/ExportDataOperationMetadata/ExportDataOutputInfo.php"
+ },
+ {
+ "path": "src/V1/ExportDataOperationMetadata_ExportDataOutputInfo.php"
+ },
+ {
+ "path": "src/V1/ExportDataRequest.php"
+ },
+ {
+ "path": "src/V1/ExportModelOperationMetadata.php"
+ },
+ {
+ "path": "src/V1/ExportModelOperationMetadata/ExportModelOutputInfo.php"
+ },
+ {
+ "path": "src/V1/ExportModelOperationMetadata_ExportModelOutputInfo.php"
+ },
+ {
+ "path": "src/V1/ExportModelRequest.php"
+ },
+ {
+ "path": "src/V1/Gapic/AutoMlGapicClient.php"
+ },
+ {
+ "path": "src/V1/Gapic/PredictionServiceGapicClient.php"
+ },
+ {
+ "path": "src/V1/GcsDestination.php"
+ },
+ {
+ "path": "src/V1/GcsSource.php"
+ },
+ {
+ "path": "src/V1/GetAnnotationSpecRequest.php"
+ },
+ {
+ "path": "src/V1/GetDatasetRequest.php"
+ },
+ {
+ "path": "src/V1/GetModelEvaluationRequest.php"
+ },
+ {
+ "path": "src/V1/GetModelRequest.php"
+ },
+ {
+ "path": "src/V1/Image.php"
+ },
+ {
+ "path": "src/V1/ImageClassificationDatasetMetadata.php"
+ },
+ {
+ "path": "src/V1/ImageClassificationModelDeploymentMetadata.php"
+ },
+ {
+ "path": "src/V1/ImageClassificationModelMetadata.php"
+ },
+ {
+ "path": "src/V1/ImageObjectDetectionAnnotation.php"
+ },
+ {
+ "path": "src/V1/ImageObjectDetectionDatasetMetadata.php"
+ },
+ {
+ "path": "src/V1/ImageObjectDetectionEvaluationMetrics.php"
+ },
+ {
+ "path": "src/V1/ImageObjectDetectionModelDeploymentMetadata.php"
+ },
+ {
+ "path": "src/V1/ImageObjectDetectionModelMetadata.php"
+ },
+ {
+ "path": "src/V1/ImportDataOperationMetadata.php"
+ },
+ {
+ "path": "src/V1/ImportDataRequest.php"
+ },
+ {
+ "path": "src/V1/InputConfig.php"
+ },
+ {
+ "path": "src/V1/ListDatasetsRequest.php"
+ },
+ {
+ "path": "src/V1/ListDatasetsResponse.php"
+ },
+ {
+ "path": "src/V1/ListModelEvaluationsRequest.php"
+ },
+ {
+ "path": "src/V1/ListModelEvaluationsResponse.php"
+ },
+ {
+ "path": "src/V1/ListModelsRequest.php"
+ },
+ {
+ "path": "src/V1/ListModelsResponse.php"
+ },
+ {
+ "path": "src/V1/Model.php"
+ },
+ {
+ "path": "src/V1/Model/DeploymentState.php"
+ },
+ {
+ "path": "src/V1/ModelEvaluation.php"
+ },
+ {
+ "path": "src/V1/ModelExportOutputConfig.php"
+ },
+ {
+ "path": "src/V1/Model_DeploymentState.php"
+ },
+ {
+ "path": "src/V1/NormalizedVertex.php"
+ },
+ {
+ "path": "src/V1/OperationMetadata.php"
+ },
+ {
+ "path": "src/V1/OutputConfig.php"
+ },
+ {
+ "path": "src/V1/PredictRequest.php"
+ },
+ {
+ "path": "src/V1/PredictResponse.php"
+ },
+ {
+ "path": "src/V1/PredictionServiceClient.php"
+ },
+ {
+ "path": "src/V1/PredictionServiceGrpcClient.php"
+ },
+ {
+ "path": "src/V1/TextClassificationDatasetMetadata.php"
+ },
+ {
+ "path": "src/V1/TextClassificationModelMetadata.php"
+ },
+ {
+ "path": "src/V1/TextExtractionAnnotation.php"
+ },
+ {
+ "path": "src/V1/TextExtractionDatasetMetadata.php"
+ },
+ {
+ "path": "src/V1/TextExtractionEvaluationMetrics.php"
+ },
+ {
+ "path": "src/V1/TextExtractionEvaluationMetrics/ConfidenceMetricsEntry.php"
+ },
+ {
+ "path": "src/V1/TextExtractionEvaluationMetrics_ConfidenceMetricsEntry.php"
+ },
+ {
+ "path": "src/V1/TextExtractionModelMetadata.php"
+ },
+ {
+ "path": "src/V1/TextSegment.php"
+ },
+ {
+ "path": "src/V1/TextSentimentAnnotation.php"
+ },
+ {
+ "path": "src/V1/TextSentimentDatasetMetadata.php"
+ },
+ {
+ "path": "src/V1/TextSentimentEvaluationMetrics.php"
+ },
+ {
+ "path": "src/V1/TextSentimentModelMetadata.php"
+ },
+ {
+ "path": "src/V1/TextSnippet.php"
+ },
+ {
+ "path": "src/V1/TranslationAnnotation.php"
+ },
+ {
+ "path": "src/V1/TranslationDatasetMetadata.php"
+ },
+ {
+ "path": "src/V1/TranslationEvaluationMetrics.php"
+ },
+ {
+ "path": "src/V1/TranslationModelMetadata.php"
+ },
+ {
+ "path": "src/V1/UndeployModelOperationMetadata.php"
+ },
+ {
+ "path": "src/V1/UndeployModelRequest.php"
+ },
+ {
+ "path": "src/V1/UpdateDatasetRequest.php"
+ },
+ {
+ "path": "src/V1/UpdateModelRequest.php"
+ },
+ {
+ "path": "src/V1/resources/auto_ml_client_config.json"
+ },
+ {
+ "path": "src/V1/resources/auto_ml_descriptor_config.php"
+ },
+ {
+ "path": "src/V1/resources/auto_ml_rest_client_config.php"
+ },
+ {
+ "path": "src/V1/resources/prediction_service_client_config.json"
+ },
+ {
+ "path": "src/V1/resources/prediction_service_descriptor_config.php"
+ },
+ {
+ "path": "src/V1/resources/prediction_service_rest_client_config.php"
+ },
+ {
+ "path": "src/V1beta1/AnnotationPayload.php"
+ },
+ {
+ "path": "src/V1beta1/AnnotationSpec.php"
+ },
+ {
+ "path": "src/V1beta1/ArrayStats.php"
+ },
+ {
+ "path": "src/V1beta1/AutoMlClient.php"
+ },
+ {
+ "path": "src/V1beta1/AutoMlGrpcClient.php"
+ },
+ {
+ "path": "src/V1beta1/BatchPredictInputConfig.php"
+ },
+ {
+ "path": "src/V1beta1/BatchPredictOperationMetadata.php"
+ },
+ {
+ "path": "src/V1beta1/BatchPredictOperationMetadata/BatchPredictOutputInfo.php"
+ },
+ {
+ "path": "src/V1beta1/BatchPredictOperationMetadata_BatchPredictOutputInfo.php"
+ },
+ {
+ "path": "src/V1beta1/BatchPredictOutputConfig.php"
+ },
+ {
+ "path": "src/V1beta1/BatchPredictRequest.php"
+ },
+ {
+ "path": "src/V1beta1/BatchPredictResult.php"
+ },
+ {
+ "path": "src/V1beta1/BigQueryDestination.php"
+ },
+ {
+ "path": "src/V1beta1/BigQuerySource.php"
+ },
+ {
+ "path": "src/V1beta1/BoundingBoxMetricsEntry.php"
+ },
+ {
+ "path": "src/V1beta1/BoundingBoxMetricsEntry/ConfidenceMetricsEntry.php"
+ },
+ {
+ "path": "src/V1beta1/BoundingBoxMetricsEntry_ConfidenceMetricsEntry.php"
+ },
+ {
+ "path": "src/V1beta1/BoundingPoly.php"
+ },
+ {
+ "path": "src/V1beta1/CategoryStats.php"
+ },
+ {
+ "path": "src/V1beta1/CategoryStats/SingleCategoryStats.php"
+ },
+ {
+ "path": "src/V1beta1/CategoryStats_SingleCategoryStats.php"
+ },
+ {
+ "path": "src/V1beta1/ClassificationAnnotation.php"
+ },
+ {
+ "path": "src/V1beta1/ClassificationEvaluationMetrics.php"
+ },
+ {
+ "path": "src/V1beta1/ClassificationEvaluationMetrics/ConfidenceMetricsEntry.php"
+ },
+ {
+ "path": "src/V1beta1/ClassificationEvaluationMetrics/ConfusionMatrix.php"
+ },
+ {
+ "path": "src/V1beta1/ClassificationEvaluationMetrics/ConfusionMatrix/Row.php"
+ },
+ {
+ "path": "src/V1beta1/ClassificationEvaluationMetrics_ConfidenceMetricsEntry.php"
+ },
+ {
+ "path": "src/V1beta1/ClassificationEvaluationMetrics_ConfusionMatrix.php"
+ },
+ {
+ "path": "src/V1beta1/ClassificationEvaluationMetrics_ConfusionMatrix_Row.php"
+ },
+ {
+ "path": "src/V1beta1/ClassificationType.php"
+ },
+ {
+ "path": "src/V1beta1/ColumnSpec.php"
+ },
+ {
+ "path": "src/V1beta1/ColumnSpec/CorrelatedColumn.php"
+ },
+ {
+ "path": "src/V1beta1/ColumnSpec_CorrelatedColumn.php"
+ },
+ {
+ "path": "src/V1beta1/CorrelationStats.php"
+ },
+ {
+ "path": "src/V1beta1/CreateDatasetRequest.php"
+ },
+ {
+ "path": "src/V1beta1/CreateModelOperationMetadata.php"
+ },
+ {
+ "path": "src/V1beta1/CreateModelRequest.php"
+ },
+ {
+ "path": "src/V1beta1/DataStats.php"
+ },
+ {
+ "path": "src/V1beta1/DataType.php"
+ },
+ {
+ "path": "src/V1beta1/Dataset.php"
+ },
+ {
+ "path": "src/V1beta1/DeleteDatasetRequest.php"
+ },
+ {
+ "path": "src/V1beta1/DeleteModelRequest.php"
+ },
+ {
+ "path": "src/V1beta1/DeleteOperationMetadata.php"
+ },
+ {
+ "path": "src/V1beta1/DeployModelOperationMetadata.php"
+ },
+ {
+ "path": "src/V1beta1/DeployModelRequest.php"
+ },
+ {
+ "path": "src/V1beta1/Document.php"
+ },
+ {
+ "path": "src/V1beta1/Document/Layout.php"
+ },
+ {
+ "path": "src/V1beta1/Document/Layout/TextSegmentType.php"
+ },
+ {
+ "path": "src/V1beta1/DocumentDimensions.php"
+ },
+ {
+ "path": "src/V1beta1/DocumentDimensions/DocumentDimensionUnit.php"
+ },
+ {
+ "path": "src/V1beta1/DocumentDimensions_DocumentDimensionUnit.php"
+ },
+ {
+ "path": "src/V1beta1/DocumentInputConfig.php"
+ },
+ {
+ "path": "src/V1beta1/Document_Layout.php"
+ },
+ {
+ "path": "src/V1beta1/Document_Layout_TextSegmentType.php"
+ },
+ {
+ "path": "src/V1beta1/DoubleRange.php"
+ },
+ {
+ "path": "src/V1beta1/ExamplePayload.php"
+ },
+ {
+ "path": "src/V1beta1/ExportDataOperationMetadata.php"
+ },
+ {
+ "path": "src/V1beta1/ExportDataOperationMetadata/ExportDataOutputInfo.php"
+ },
+ {
+ "path": "src/V1beta1/ExportDataOperationMetadata_ExportDataOutputInfo.php"
+ },
+ {
+ "path": "src/V1beta1/ExportDataRequest.php"
+ },
+ {
+ "path": "src/V1beta1/ExportEvaluatedExamplesOperationMetadata.php"
+ },
+ {
+ "path": "src/V1beta1/ExportEvaluatedExamplesOperationMetadata/ExportEvaluatedExamplesOutputInfo.php"
+ },
+ {
+ "path": "src/V1beta1/ExportEvaluatedExamplesOperationMetadata_ExportEvaluatedExamplesOutputInfo.php"
+ },
+ {
+ "path": "src/V1beta1/ExportEvaluatedExamplesOutputConfig.php"
+ },
+ {
+ "path": "src/V1beta1/ExportEvaluatedExamplesRequest.php"
+ },
+ {
+ "path": "src/V1beta1/ExportModelOperationMetadata.php"
+ },
+ {
+ "path": "src/V1beta1/ExportModelOperationMetadata/ExportModelOutputInfo.php"
+ },
+ {
+ "path": "src/V1beta1/ExportModelOperationMetadata_ExportModelOutputInfo.php"
+ },
+ {
+ "path": "src/V1beta1/ExportModelRequest.php"
+ },
+ {
+ "path": "src/V1beta1/Float64Stats.php"
+ },
+ {
+ "path": "src/V1beta1/Float64Stats/HistogramBucket.php"
+ },
+ {
+ "path": "src/V1beta1/Float64Stats_HistogramBucket.php"
+ },
+ {
+ "path": "src/V1beta1/Gapic/AutoMlGapicClient.php"
+ },
+ {
+ "path": "src/V1beta1/Gapic/PredictionServiceGapicClient.php"
+ },
+ {
+ "path": "src/V1beta1/GcrDestination.php"
+ },
+ {
+ "path": "src/V1beta1/GcsDestination.php"
+ },
+ {
+ "path": "src/V1beta1/GcsSource.php"
+ },
+ {
+ "path": "src/V1beta1/GetAnnotationSpecRequest.php"
+ },
+ {
+ "path": "src/V1beta1/GetColumnSpecRequest.php"
+ },
+ {
+ "path": "src/V1beta1/GetDatasetRequest.php"
+ },
+ {
+ "path": "src/V1beta1/GetModelEvaluationRequest.php"
+ },
+ {
+ "path": "src/V1beta1/GetModelRequest.php"
+ },
+ {
+ "path": "src/V1beta1/GetTableSpecRequest.php"
+ },
+ {
+ "path": "src/V1beta1/Image.php"
+ },
+ {
+ "path": "src/V1beta1/ImageClassificationDatasetMetadata.php"
+ },
+ {
+ "path": "src/V1beta1/ImageClassificationModelDeploymentMetadata.php"
+ },
+ {
+ "path": "src/V1beta1/ImageClassificationModelMetadata.php"
+ },
+ {
+ "path": "src/V1beta1/ImageObjectDetectionAnnotation.php"
+ },
+ {
+ "path": "src/V1beta1/ImageObjectDetectionDatasetMetadata.php"
+ },
+ {
+ "path": "src/V1beta1/ImageObjectDetectionEvaluationMetrics.php"
+ },
+ {
+ "path": "src/V1beta1/ImageObjectDetectionModelDeploymentMetadata.php"
+ },
+ {
+ "path": "src/V1beta1/ImageObjectDetectionModelMetadata.php"
+ },
+ {
+ "path": "src/V1beta1/ImportDataOperationMetadata.php"
+ },
+ {
+ "path": "src/V1beta1/ImportDataRequest.php"
+ },
+ {
+ "path": "src/V1beta1/InputConfig.php"
+ },
+ {
+ "path": "src/V1beta1/ListColumnSpecsRequest.php"
+ },
+ {
+ "path": "src/V1beta1/ListColumnSpecsResponse.php"
+ },
+ {
+ "path": "src/V1beta1/ListDatasetsRequest.php"
+ },
+ {
+ "path": "src/V1beta1/ListDatasetsResponse.php"
+ },
+ {
+ "path": "src/V1beta1/ListModelEvaluationsRequest.php"
+ },
+ {
+ "path": "src/V1beta1/ListModelEvaluationsResponse.php"
+ },
+ {
+ "path": "src/V1beta1/ListModelsRequest.php"
+ },
+ {
+ "path": "src/V1beta1/ListModelsResponse.php"
+ },
+ {
+ "path": "src/V1beta1/ListTableSpecsRequest.php"
+ },
+ {
+ "path": "src/V1beta1/ListTableSpecsResponse.php"
+ },
+ {
+ "path": "src/V1beta1/Model.php"
+ },
+ {
+ "path": "src/V1beta1/Model/DeploymentState.php"
+ },
+ {
+ "path": "src/V1beta1/ModelEvaluation.php"
+ },
+ {
+ "path": "src/V1beta1/ModelExportOutputConfig.php"
+ },
+ {
+ "path": "src/V1beta1/Model_DeploymentState.php"
+ },
+ {
+ "path": "src/V1beta1/NormalizedVertex.php"
+ },
+ {
+ "path": "src/V1beta1/OperationMetadata.php"
+ },
+ {
+ "path": "src/V1beta1/OutputConfig.php"
+ },
+ {
+ "path": "src/V1beta1/PredictRequest.php"
+ },
+ {
+ "path": "src/V1beta1/PredictResponse.php"
+ },
+ {
+ "path": "src/V1beta1/PredictionServiceClient.php"
+ },
+ {
+ "path": "src/V1beta1/PredictionServiceGrpcClient.php"
+ },
+ {
+ "path": "src/V1beta1/README.md"
+ },
+ {
+ "path": "src/V1beta1/RegressionEvaluationMetrics.php"
+ },
+ {
+ "path": "src/V1beta1/Row.php"
+ },
+ {
+ "path": "src/V1beta1/StringStats.php"
+ },
+ {
+ "path": "src/V1beta1/StringStats/UnigramStats.php"
+ },
+ {
+ "path": "src/V1beta1/StringStats_UnigramStats.php"
+ },
+ {
+ "path": "src/V1beta1/StructStats.php"
+ },
+ {
+ "path": "src/V1beta1/StructType.php"
+ },
+ {
+ "path": "src/V1beta1/TableSpec.php"
+ },
+ {
+ "path": "src/V1beta1/TablesAnnotation.php"
+ },
+ {
+ "path": "src/V1beta1/TablesDatasetMetadata.php"
+ },
+ {
+ "path": "src/V1beta1/TablesModelColumnInfo.php"
+ },
+ {
+ "path": "src/V1beta1/TablesModelMetadata.php"
+ },
+ {
+ "path": "src/V1beta1/TextClassificationDatasetMetadata.php"
+ },
+ {
+ "path": "src/V1beta1/TextClassificationModelMetadata.php"
+ },
+ {
+ "path": "src/V1beta1/TextExtractionAnnotation.php"
+ },
+ {
+ "path": "src/V1beta1/TextExtractionDatasetMetadata.php"
+ },
+ {
+ "path": "src/V1beta1/TextExtractionEvaluationMetrics.php"
+ },
+ {
+ "path": "src/V1beta1/TextExtractionEvaluationMetrics/ConfidenceMetricsEntry.php"
+ },
+ {
+ "path": "src/V1beta1/TextExtractionEvaluationMetrics_ConfidenceMetricsEntry.php"
+ },
+ {
+ "path": "src/V1beta1/TextExtractionModelMetadata.php"
+ },
+ {
+ "path": "src/V1beta1/TextSegment.php"
+ },
+ {
+ "path": "src/V1beta1/TextSentimentAnnotation.php"
+ },
+ {
+ "path": "src/V1beta1/TextSentimentDatasetMetadata.php"
+ },
+ {
+ "path": "src/V1beta1/TextSentimentEvaluationMetrics.php"
+ },
+ {
+ "path": "src/V1beta1/TextSentimentModelMetadata.php"
+ },
+ {
+ "path": "src/V1beta1/TextSnippet.php"
+ },
+ {
+ "path": "src/V1beta1/TimeSegment.php"
+ },
+ {
+ "path": "src/V1beta1/TimestampStats.php"
+ },
+ {
+ "path": "src/V1beta1/TimestampStats/GranularStats.php"
+ },
+ {
+ "path": "src/V1beta1/TimestampStats_GranularStats.php"
+ },
+ {
+ "path": "src/V1beta1/TranslationAnnotation.php"
+ },
+ {
+ "path": "src/V1beta1/TranslationDatasetMetadata.php"
+ },
+ {
+ "path": "src/V1beta1/TranslationEvaluationMetrics.php"
+ },
+ {
+ "path": "src/V1beta1/TranslationModelMetadata.php"
+ },
+ {
+ "path": "src/V1beta1/TypeCode.php"
+ },
+ {
+ "path": "src/V1beta1/UndeployModelOperationMetadata.php"
+ },
+ {
+ "path": "src/V1beta1/UndeployModelRequest.php"
+ },
+ {
+ "path": "src/V1beta1/UpdateColumnSpecRequest.php"
+ },
+ {
+ "path": "src/V1beta1/UpdateDatasetRequest.php"
+ },
+ {
+ "path": "src/V1beta1/UpdateTableSpecRequest.php"
+ },
+ {
+ "path": "src/V1beta1/VideoClassificationAnnotation.php"
+ },
+ {
+ "path": "src/V1beta1/VideoClassificationDatasetMetadata.php"
+ },
+ {
+ "path": "src/V1beta1/VideoClassificationModelMetadata.php"
+ },
+ {
+ "path": "src/V1beta1/VideoObjectTrackingAnnotation.php"
+ },
+ {
+ "path": "src/V1beta1/VideoObjectTrackingDatasetMetadata.php"
+ },
+ {
+ "path": "src/V1beta1/VideoObjectTrackingEvaluationMetrics.php"
+ },
+ {
+ "path": "src/V1beta1/VideoObjectTrackingModelMetadata.php"
+ },
+ {
+ "path": "src/V1beta1/resources/auto_ml_client_config.json"
+ },
+ {
+ "path": "src/V1beta1/resources/auto_ml_descriptor_config.php"
+ },
+ {
+ "path": "src/V1beta1/resources/auto_ml_rest_client_config.php"
+ },
+ {
+ "path": "src/V1beta1/resources/prediction_service_client_config.json"
+ },
+ {
+ "path": "src/V1beta1/resources/prediction_service_descriptor_config.php"
+ },
+ {
+ "path": "src/V1beta1/resources/prediction_service_rest_client_config.php"
+ },
+ {
+ "path": "synth.metadata"
+ },
+ {
+ "path": "synth.py"
+ },
+ {
+ "path": "tests/System/V1/AutoMlSmokeTest.php"
+ },
+ {
+ "path": "tests/System/V1beta1/AutoMlSmokeTest.php"
+ },
+ {
+ "path": "tests/Unit/V1/AutoMlClientTest.php"
+ },
+ {
+ "path": "tests/Unit/V1/PredictionServiceClientTest.php"
+ },
+ {
+ "path": "tests/Unit/V1beta1/AutoMlClientTest.php"
+ },
+ {
+ "path": "tests/Unit/V1beta1/PredictionServiceClientTest.php"
+ }
]
}
\ No newline at end of file