├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml.dist ├── rename.php ├── src ├── GPBMetadata │ └── Google │ │ ├── Bigtable │ │ ├── Admin │ │ │ └── V2 │ │ │ │ ├── BigtableInstanceAdmin.php │ │ │ │ ├── BigtableTableAdmin.php │ │ │ │ ├── Common.php │ │ │ │ ├── Instance.php │ │ │ │ └── Table.php │ │ └── V2 │ │ │ ├── Bigtable.php │ │ │ └── Data.php │ │ ├── Cloud │ │ ├── Bigquery │ │ │ └── Datatransfer │ │ │ │ └── V1 │ │ │ │ ├── Datatransfer.php │ │ │ │ └── Transfer.php │ │ ├── Dataproc │ │ │ └── V1 │ │ │ │ ├── Clusters.php │ │ │ │ ├── Jobs.php │ │ │ │ └── Operations.php │ │ ├── Dialogflow │ │ │ └── V2 │ │ │ │ ├── Agent.php │ │ │ │ ├── Context.php │ │ │ │ ├── EntityType.php │ │ │ │ ├── Intent.php │ │ │ │ ├── Session.php │ │ │ │ ├── SessionEntityType.php │ │ │ │ └── Webhook.php │ │ ├── Iot │ │ │ └── V1 │ │ │ │ ├── DeviceManager.php │ │ │ │ └── Resources.php │ │ ├── Language │ │ │ └── V1Beta2 │ │ │ │ └── LanguageService.php │ │ ├── Oslogin │ │ │ ├── Common.php │ │ │ ├── Common │ │ │ │ └── Common.php │ │ │ └── V1Beta │ │ │ │ └── Oslogin.php │ │ ├── Redis │ │ │ └── V1Beta1 │ │ │ │ └── CloudRedis.php │ │ ├── Speech │ │ │ ├── V1 │ │ │ │ └── CloudSpeech.php │ │ │ ├── V1Beta1 │ │ │ │ └── CloudSpeech.php │ │ │ └── V1P1Beta1 │ │ │ │ └── CloudSpeech.php │ │ ├── Tasks │ │ │ └── V2Beta2 │ │ │ │ ├── Cloudtasks.php │ │ │ │ ├── Queue.php │ │ │ │ ├── Target.php │ │ │ │ └── Task.php │ │ ├── Videointelligence │ │ │ ├── V1 │ │ │ │ └── VideoIntelligence.php │ │ │ ├── V1Beta1 │ │ │ │ └── VideoIntelligence.php │ │ │ └── V1Beta2 │ │ │ │ └── VideoIntelligence.php │ │ └── Vision │ │ │ └── V1 │ │ │ ├── Geometry.php │ │ │ ├── ImageAnnotator.php │ │ │ ├── TextAnnotation.php │ │ │ └── WebDetection.php │ │ ├── Container │ │ └── V1 │ │ │ └── ClusterService.php │ │ ├── Devtools │ │ ├── Clouddebugger │ │ │ └── V2 │ │ │ │ ├── Controller.php │ │ │ │ ├── Data.php │ │ │ │ └── Debugger.php │ │ ├── Clouderrorreporting │ │ │ └── V1Beta1 │ │ │ │ ├── Common.php │ │ │ │ ├── ErrorGroupService.php │ │ │ │ ├── ErrorStatsService.php │ │ │ │ └── ReportErrorsService.php │ │ ├── Cloudtrace │ │ │ ├── V1 │ │ │ │ └── Trace.php │ │ │ └── V2 │ │ │ │ ├── Trace.php │ │ │ │ └── Tracing.php │ │ └── Source │ │ │ └── V1 │ │ │ └── SourceContext.php │ │ ├── Firestore │ │ └── V1Beta1 │ │ │ ├── Common.php │ │ │ ├── Document.php │ │ │ ├── Firestore.php │ │ │ ├── Query.php │ │ │ └── Write.php │ │ ├── Logging │ │ └── V2 │ │ │ ├── LogEntry.php │ │ │ ├── Logging.php │ │ │ ├── LoggingConfig.php │ │ │ └── LoggingMetrics.php │ │ ├── Monitoring │ │ └── V3 │ │ │ ├── Alert.php │ │ │ ├── AlertService.php │ │ │ ├── Common.php │ │ │ ├── Group.php │ │ │ ├── GroupService.php │ │ │ ├── Metric.php │ │ │ ├── MetricService.php │ │ │ ├── MutationRecord.php │ │ │ ├── Notification.php │ │ │ ├── NotificationService.php │ │ │ ├── Uptime.php │ │ │ └── UptimeService.php │ │ ├── Privacy │ │ └── Dlp │ │ │ └── V2 │ │ │ ├── Dlp.php │ │ │ └── Storage.php │ │ ├── Pubsub │ │ └── V1 │ │ │ └── Pubsub.php │ │ └── Spanner │ │ ├── Admin │ │ ├── Database │ │ │ └── V1 │ │ │ │ └── SpannerDatabaseAdmin.php │ │ └── Instance │ │ │ └── V1 │ │ │ └── SpannerInstanceAdmin.php │ │ └── V1 │ │ ├── Keys.php │ │ ├── Mutation.php │ │ ├── QueryPlan.php │ │ ├── ResultSet.php │ │ ├── Spanner.php │ │ ├── Transaction.php │ │ └── Type.php └── Google │ └── Cloud │ ├── BigQuery │ └── DataTransfer │ │ └── V1 │ │ ├── CheckValidCredsRequest.php │ │ ├── CheckValidCredsResponse.php │ │ ├── CreateTransferConfigRequest.php │ │ ├── DataSource.php │ │ ├── DataSourceParameter.php │ │ ├── DataSourceParameter_Type.php │ │ ├── DataSource_AuthorizationType.php │ │ ├── DataSource_DataRefreshType.php │ │ ├── DataTransferServiceGrpcClient.php │ │ ├── DeleteTransferConfigRequest.php │ │ ├── DeleteTransferRunRequest.php │ │ ├── GetDataSourceRequest.php │ │ ├── GetTransferConfigRequest.php │ │ ├── GetTransferRunRequest.php │ │ ├── ListDataSourcesRequest.php │ │ ├── ListDataSourcesResponse.php │ │ ├── ListTransferConfigsRequest.php │ │ ├── ListTransferConfigsResponse.php │ │ ├── ListTransferLogsRequest.php │ │ ├── ListTransferLogsResponse.php │ │ ├── ListTransferRunsRequest.php │ │ ├── ListTransferRunsRequest_RunAttempt.php │ │ ├── ListTransferRunsResponse.php │ │ ├── ScheduleTransferRunsRequest.php │ │ ├── ScheduleTransferRunsResponse.php │ │ ├── TransferConfig.php │ │ ├── TransferMessage.php │ │ ├── TransferMessage_MessageSeverity.php │ │ ├── TransferRun.php │ │ ├── TransferState.php │ │ ├── TransferType.php │ │ └── UpdateTransferConfigRequest.php │ ├── Bigtable │ ├── Admin │ │ └── V2 │ │ │ ├── AppProfile.php │ │ │ ├── AppProfile_MultiClusterRoutingUseAny.php │ │ │ ├── AppProfile_SingleClusterRouting.php │ │ │ ├── BigtableInstanceAdminGrpcClient.php │ │ │ ├── BigtableTableAdminGrpcClient.php │ │ │ ├── CheckConsistencyRequest.php │ │ │ ├── CheckConsistencyResponse.php │ │ │ ├── Cluster.php │ │ │ ├── Cluster_State.php │ │ │ ├── ColumnFamily.php │ │ │ ├── CreateAppProfileRequest.php │ │ │ ├── CreateClusterMetadata.php │ │ │ ├── CreateClusterRequest.php │ │ │ ├── CreateInstanceMetadata.php │ │ │ ├── CreateInstanceRequest.php │ │ │ ├── CreateTableFromSnapshotMetadata.php │ │ │ ├── CreateTableFromSnapshotRequest.php │ │ │ ├── CreateTableRequest.php │ │ │ ├── CreateTableRequest_Split.php │ │ │ ├── DeleteAppProfileRequest.php │ │ │ ├── DeleteClusterRequest.php │ │ │ ├── DeleteInstanceRequest.php │ │ │ ├── DeleteSnapshotRequest.php │ │ │ ├── DeleteTableRequest.php │ │ │ ├── DropRowRangeRequest.php │ │ │ ├── GcRule.php │ │ │ ├── GcRule_Intersection.php │ │ │ ├── GcRule_Union.php │ │ │ ├── GenerateConsistencyTokenRequest.php │ │ │ ├── GenerateConsistencyTokenResponse.php │ │ │ ├── GetAppProfileRequest.php │ │ │ ├── GetClusterRequest.php │ │ │ ├── GetInstanceRequest.php │ │ │ ├── GetSnapshotRequest.php │ │ │ ├── GetTableRequest.php │ │ │ ├── Instance.php │ │ │ ├── Instance_State.php │ │ │ ├── Instance_Type.php │ │ │ ├── ListAppProfilesRequest.php │ │ │ ├── ListAppProfilesResponse.php │ │ │ ├── ListClustersRequest.php │ │ │ ├── ListClustersResponse.php │ │ │ ├── ListInstancesRequest.php │ │ │ ├── ListInstancesResponse.php │ │ │ ├── ListSnapshotsRequest.php │ │ │ ├── ListSnapshotsResponse.php │ │ │ ├── ListTablesRequest.php │ │ │ ├── ListTablesResponse.php │ │ │ ├── ModifyColumnFamiliesRequest.php │ │ │ ├── ModifyColumnFamiliesRequest_Modification.php │ │ │ ├── PartialUpdateInstanceRequest.php │ │ │ ├── Snapshot.php │ │ │ ├── SnapshotTableMetadata.php │ │ │ ├── SnapshotTableRequest.php │ │ │ ├── Snapshot_State.php │ │ │ ├── StorageType.php │ │ │ ├── Table.php │ │ │ ├── Table_ClusterState.php │ │ │ ├── Table_ClusterState_ReplicationState.php │ │ │ ├── Table_TimestampGranularity.php │ │ │ ├── Table_View.php │ │ │ ├── UpdateAppProfileMetadata.php │ │ │ ├── UpdateAppProfileRequest.php │ │ │ ├── UpdateClusterMetadata.php │ │ │ └── UpdateInstanceMetadata.php │ └── V2 │ │ ├── BigtableGrpcClient.php │ │ ├── Cell.php │ │ ├── CheckAndMutateRowRequest.php │ │ ├── CheckAndMutateRowResponse.php │ │ ├── Column.php │ │ ├── ColumnRange.php │ │ ├── Family.php │ │ ├── MutateRowRequest.php │ │ ├── MutateRowResponse.php │ │ ├── MutateRowsRequest.php │ │ ├── MutateRowsRequest_Entry.php │ │ ├── MutateRowsResponse.php │ │ ├── MutateRowsResponse_Entry.php │ │ ├── Mutation.php │ │ ├── Mutation_DeleteFromColumn.php │ │ ├── Mutation_DeleteFromFamily.php │ │ ├── Mutation_DeleteFromRow.php │ │ ├── Mutation_SetCell.php │ │ ├── ReadModifyWriteRowRequest.php │ │ ├── ReadModifyWriteRowResponse.php │ │ ├── ReadModifyWriteRule.php │ │ ├── ReadRowsRequest.php │ │ ├── ReadRowsResponse.php │ │ ├── ReadRowsResponse_CellChunk.php │ │ ├── Row.php │ │ ├── RowFilter.php │ │ ├── RowFilter_Chain.php │ │ ├── RowFilter_Condition.php │ │ ├── RowFilter_Interleave.php │ │ ├── RowRange.php │ │ ├── RowSet.php │ │ ├── SampleRowKeysRequest.php │ │ ├── SampleRowKeysResponse.php │ │ ├── TimestampRange.php │ │ └── ValueRange.php │ ├── Container │ └── V1 │ │ ├── AcceleratorConfig.php │ │ ├── AddonsConfig.php │ │ ├── AutoUpgradeOptions.php │ │ ├── CancelOperationRequest.php │ │ ├── ClientCertificateConfig.php │ │ ├── Cluster.php │ │ ├── ClusterManagerGrpcClient.php │ │ ├── ClusterUpdate.php │ │ ├── Cluster_Status.php │ │ ├── CompleteIPRotationRequest.php │ │ ├── CreateClusterRequest.php │ │ ├── CreateNodePoolRequest.php │ │ ├── DailyMaintenanceWindow.php │ │ ├── DeleteClusterRequest.php │ │ ├── DeleteNodePoolRequest.php │ │ ├── GetClusterRequest.php │ │ ├── GetNodePoolRequest.php │ │ ├── GetOperationRequest.php │ │ ├── GetServerConfigRequest.php │ │ ├── HorizontalPodAutoscaling.php │ │ ├── HttpLoadBalancing.php │ │ ├── IPAllocationPolicy.php │ │ ├── KubernetesDashboard.php │ │ ├── LegacyAbac.php │ │ ├── ListClustersRequest.php │ │ ├── ListClustersResponse.php │ │ ├── ListNodePoolsRequest.php │ │ ├── ListNodePoolsResponse.php │ │ ├── ListOperationsRequest.php │ │ ├── ListOperationsResponse.php │ │ ├── MaintenancePolicy.php │ │ ├── MaintenanceWindow.php │ │ ├── MasterAuth.php │ │ ├── MasterAuthorizedNetworksConfig.php │ │ ├── MasterAuthorizedNetworksConfig_CidrBlock.php │ │ ├── NetworkPolicy.php │ │ ├── NetworkPolicyConfig.php │ │ ├── NetworkPolicy_Provider.php │ │ ├── NodeConfig.php │ │ ├── NodeManagement.php │ │ ├── NodePool.php │ │ ├── NodePoolAutoscaling.php │ │ ├── NodePool_Status.php │ │ ├── Operation.php │ │ ├── Operation_Status.php │ │ ├── Operation_Type.php │ │ ├── RollbackNodePoolUpgradeRequest.php │ │ ├── ServerConfig.php │ │ ├── SetAddonsConfigRequest.php │ │ ├── SetLabelsRequest.php │ │ ├── SetLegacyAbacRequest.php │ │ ├── SetLocationsRequest.php │ │ ├── SetLoggingServiceRequest.php │ │ ├── SetMaintenancePolicyRequest.php │ │ ├── SetMasterAuthRequest.php │ │ ├── SetMasterAuthRequest_Action.php │ │ ├── SetMonitoringServiceRequest.php │ │ ├── SetNetworkPolicyRequest.php │ │ ├── SetNodePoolAutoscalingRequest.php │ │ ├── SetNodePoolManagementRequest.php │ │ ├── SetNodePoolSizeRequest.php │ │ ├── StartIPRotationRequest.php │ │ ├── UpdateClusterRequest.php │ │ ├── UpdateMasterRequest.php │ │ └── UpdateNodePoolRequest.php │ ├── Dataproc │ └── V1 │ │ ├── AcceleratorConfig.php │ │ ├── CancelJobRequest.php │ │ ├── Cluster.php │ │ ├── ClusterConfig.php │ │ ├── ClusterControllerGrpcClient.php │ │ ├── ClusterMetrics.php │ │ ├── ClusterOperationMetadata.php │ │ ├── ClusterOperationStatus.php │ │ ├── ClusterOperationStatus_State.php │ │ ├── ClusterStatus.php │ │ ├── ClusterStatus_State.php │ │ ├── ClusterStatus_Substate.php │ │ ├── CreateClusterRequest.php │ │ ├── DeleteClusterRequest.php │ │ ├── DeleteJobRequest.php │ │ ├── DiagnoseClusterRequest.php │ │ ├── DiagnoseClusterResults.php │ │ ├── DiskConfig.php │ │ ├── GceClusterConfig.php │ │ ├── GetClusterRequest.php │ │ ├── GetJobRequest.php │ │ ├── HadoopJob.php │ │ ├── HiveJob.php │ │ ├── InstanceGroupConfig.php │ │ ├── Job.php │ │ ├── JobControllerGrpcClient.php │ │ ├── JobPlacement.php │ │ ├── JobReference.php │ │ ├── JobScheduling.php │ │ ├── JobStatus.php │ │ ├── JobStatus_State.php │ │ ├── JobStatus_Substate.php │ │ ├── ListClustersRequest.php │ │ ├── ListClustersResponse.php │ │ ├── ListJobsRequest.php │ │ ├── ListJobsRequest_JobStateMatcher.php │ │ ├── ListJobsResponse.php │ │ ├── LoggingConfig.php │ │ ├── LoggingConfig_Level.php │ │ ├── ManagedGroupConfig.php │ │ ├── NodeInitializationAction.php │ │ ├── PigJob.php │ │ ├── PySparkJob.php │ │ ├── QueryList.php │ │ ├── SoftwareConfig.php │ │ ├── SparkJob.php │ │ ├── SparkSqlJob.php │ │ ├── SubmitJobRequest.php │ │ ├── UpdateClusterRequest.php │ │ ├── UpdateJobRequest.php │ │ ├── YarnApplication.php │ │ └── YarnApplication_State.php │ ├── Debugger │ └── V2 │ │ ├── Breakpoint.php │ │ ├── Breakpoint_Action.php │ │ ├── Breakpoint_LogLevel.php │ │ ├── Controller2GrpcClient.php │ │ ├── Debuggee.php │ │ ├── Debugger2GrpcClient.php │ │ ├── DeleteBreakpointRequest.php │ │ ├── FormatMessage.php │ │ ├── GetBreakpointRequest.php │ │ ├── GetBreakpointResponse.php │ │ ├── ListActiveBreakpointsRequest.php │ │ ├── ListActiveBreakpointsResponse.php │ │ ├── ListBreakpointsRequest.php │ │ ├── ListBreakpointsRequest_BreakpointActionValue.php │ │ ├── ListBreakpointsResponse.php │ │ ├── ListDebuggeesRequest.php │ │ ├── ListDebuggeesResponse.php │ │ ├── RegisterDebuggeeRequest.php │ │ ├── RegisterDebuggeeResponse.php │ │ ├── SetBreakpointRequest.php │ │ ├── SetBreakpointResponse.php │ │ ├── SourceLocation.php │ │ ├── StackFrame.php │ │ ├── StatusMessage.php │ │ ├── StatusMessage_Reference.php │ │ ├── UpdateActiveBreakpointRequest.php │ │ ├── UpdateActiveBreakpointResponse.php │ │ └── Variable.php │ ├── DevTools │ └── Source │ │ └── V1 │ │ ├── AliasContext.php │ │ ├── AliasContext_Kind.php │ │ ├── CloudRepoSourceContext.php │ │ ├── CloudWorkspaceId.php │ │ ├── CloudWorkspaceSourceContext.php │ │ ├── ExtendedSourceContext.php │ │ ├── GerritSourceContext.php │ │ ├── GitSourceContext.php │ │ ├── ProjectRepoId.php │ │ ├── RepoId.php │ │ └── SourceContext.php │ ├── Dialogflow │ └── V2 │ │ ├── Agent.php │ │ ├── Agent_MatchMode.php │ │ ├── AgentsGrpcClient.php │ │ ├── AudioEncoding.php │ │ ├── BatchCreateEntitiesRequest.php │ │ ├── BatchDeleteEntitiesRequest.php │ │ ├── BatchDeleteEntityTypesRequest.php │ │ ├── BatchDeleteIntentsRequest.php │ │ ├── BatchUpdateEntitiesRequest.php │ │ ├── BatchUpdateEntityTypesRequest.php │ │ ├── BatchUpdateEntityTypesResponse.php │ │ ├── BatchUpdateIntentsRequest.php │ │ ├── BatchUpdateIntentsResponse.php │ │ ├── Context.php │ │ ├── ContextsGrpcClient.php │ │ ├── CreateContextRequest.php │ │ ├── CreateEntityTypeRequest.php │ │ ├── CreateIntentRequest.php │ │ ├── CreateSessionEntityTypeRequest.php │ │ ├── DeleteAllContextsRequest.php │ │ ├── DeleteContextRequest.php │ │ ├── DeleteEntityTypeRequest.php │ │ ├── DeleteIntentRequest.php │ │ ├── DeleteSessionEntityTypeRequest.php │ │ ├── DetectIntentRequest.php │ │ ├── DetectIntentResponse.php │ │ ├── EntityType.php │ │ ├── EntityTypeBatch.php │ │ ├── EntityType_AutoExpansionMode.php │ │ ├── EntityType_Entity.php │ │ ├── EntityType_Kind.php │ │ ├── EntityTypesGrpcClient.php │ │ ├── EventInput.php │ │ ├── ExportAgentRequest.php │ │ ├── ExportAgentResponse.php │ │ ├── GetAgentRequest.php │ │ ├── GetContextRequest.php │ │ ├── GetEntityTypeRequest.php │ │ ├── GetIntentRequest.php │ │ ├── GetSessionEntityTypeRequest.php │ │ ├── ImportAgentRequest.php │ │ ├── InputAudioConfig.php │ │ ├── Intent.php │ │ ├── IntentBatch.php │ │ ├── IntentView.php │ │ ├── Intent_FollowupIntentInfo.php │ │ ├── Intent_Message.php │ │ ├── Intent_Message_BasicCard.php │ │ ├── Intent_Message_BasicCard_Button.php │ │ ├── Intent_Message_BasicCard_Button_OpenUriAction.php │ │ ├── Intent_Message_Card.php │ │ ├── Intent_Message_Card_Button.php │ │ ├── Intent_Message_CarouselSelect.php │ │ ├── Intent_Message_CarouselSelect_Item.php │ │ ├── Intent_Message_Image.php │ │ ├── Intent_Message_LinkOutSuggestion.php │ │ ├── Intent_Message_ListSelect.php │ │ ├── Intent_Message_ListSelect_Item.php │ │ ├── Intent_Message_Platform.php │ │ ├── Intent_Message_QuickReplies.php │ │ ├── Intent_Message_SelectItemInfo.php │ │ ├── Intent_Message_SimpleResponse.php │ │ ├── Intent_Message_SimpleResponses.php │ │ ├── Intent_Message_Suggestion.php │ │ ├── Intent_Message_Suggestions.php │ │ ├── Intent_Message_Text.php │ │ ├── Intent_Parameter.php │ │ ├── Intent_TrainingPhrase.php │ │ ├── Intent_TrainingPhrase_Part.php │ │ ├── Intent_TrainingPhrase_Type.php │ │ ├── Intent_WebhookState.php │ │ ├── IntentsGrpcClient.php │ │ ├── ListContextsRequest.php │ │ ├── ListContextsResponse.php │ │ ├── ListEntityTypesRequest.php │ │ ├── ListEntityTypesResponse.php │ │ ├── ListIntentsRequest.php │ │ ├── ListIntentsResponse.php │ │ ├── ListSessionEntityTypesRequest.php │ │ ├── ListSessionEntityTypesResponse.php │ │ ├── OriginalDetectIntentRequest.php │ │ ├── QueryInput.php │ │ ├── QueryParameters.php │ │ ├── QueryResult.php │ │ ├── RestoreAgentRequest.php │ │ ├── SearchAgentsRequest.php │ │ ├── SearchAgentsResponse.php │ │ ├── SessionEntityType.php │ │ ├── SessionEntityType_EntityOverrideMode.php │ │ ├── SessionEntityTypesGrpcClient.php │ │ ├── SessionsGrpcClient.php │ │ ├── StreamingDetectIntentRequest.php │ │ ├── StreamingDetectIntentResponse.php │ │ ├── StreamingRecognitionResult.php │ │ ├── StreamingRecognitionResult_MessageType.php │ │ ├── TextInput.php │ │ ├── TrainAgentRequest.php │ │ ├── UpdateContextRequest.php │ │ ├── UpdateEntityTypeRequest.php │ │ ├── UpdateIntentRequest.php │ │ ├── UpdateSessionEntityTypeRequest.php │ │ ├── WebhookRequest.php │ │ └── WebhookResponse.php │ ├── Dlp │ └── V2 │ │ ├── Action.php │ │ ├── Action_PublishSummaryToCscc.php │ │ ├── Action_PublishToPubSub.php │ │ ├── Action_SaveFindings.php │ │ ├── AnalyzeDataSourceRiskDetails.php │ │ ├── AnalyzeDataSourceRiskDetails_CategoricalStatsResult.php │ │ ├── AnalyzeDataSourceRiskDetails_CategoricalStatsResult_CategoricalStatsHistogramBucket.php │ │ ├── AnalyzeDataSourceRiskDetails_KAnonymityResult.php │ │ ├── AnalyzeDataSourceRiskDetails_KAnonymityResult_KAnonymityEquivalenceClass.php │ │ ├── AnalyzeDataSourceRiskDetails_KAnonymityResult_KAnonymityHistogramBucket.php │ │ ├── AnalyzeDataSourceRiskDetails_KMapEstimationResult.php │ │ ├── AnalyzeDataSourceRiskDetails_KMapEstimationResult_KMapEstimationHistogramBucket.php │ │ ├── AnalyzeDataSourceRiskDetails_KMapEstimationResult_KMapEstimationQuasiIdValues.php │ │ ├── AnalyzeDataSourceRiskDetails_LDiversityResult.php │ │ ├── AnalyzeDataSourceRiskDetails_LDiversityResult_LDiversityEquivalenceClass.php │ │ ├── AnalyzeDataSourceRiskDetails_LDiversityResult_LDiversityHistogramBucket.php │ │ ├── AnalyzeDataSourceRiskDetails_NumericalStatsResult.php │ │ ├── BigQueryKey.php │ │ ├── BigQueryOptions.php │ │ ├── BigQueryOptions_SampleMethod.php │ │ ├── BigQueryTable.php │ │ ├── BoundingBox.php │ │ ├── BucketingConfig.php │ │ ├── BucketingConfig_Bucket.php │ │ ├── ByteContentItem.php │ │ ├── ByteContentItem_BytesType.php │ │ ├── CancelDlpJobRequest.php │ │ ├── CharacterMaskConfig.php │ │ ├── CharsToIgnore.php │ │ ├── CharsToIgnore_CommonCharsToIgnore.php │ │ ├── CloudStorageOptions.php │ │ ├── CloudStorageOptions_FileSet.php │ │ ├── CloudStorageOptions_SampleMethod.php │ │ ├── CloudStoragePath.php │ │ ├── Color.php │ │ ├── ContentItem.php │ │ ├── ContentLocation.php │ │ ├── ContentOption.php │ │ ├── CreateDeidentifyTemplateRequest.php │ │ ├── CreateDlpJobRequest.php │ │ ├── CreateInspectTemplateRequest.php │ │ ├── CreateJobTriggerRequest.php │ │ ├── CryptoHashConfig.php │ │ ├── CryptoKey.php │ │ ├── CryptoReplaceFfxFpeConfig.php │ │ ├── CryptoReplaceFfxFpeConfig_FfxCommonNativeAlphabet.php │ │ ├── CustomInfoType.php │ │ ├── CustomInfoType_DetectionRule.php │ │ ├── CustomInfoType_DetectionRule_HotwordRule.php │ │ ├── CustomInfoType_DetectionRule_LikelihoodAdjustment.php │ │ ├── CustomInfoType_DetectionRule_Proximity.php │ │ ├── CustomInfoType_Dictionary.php │ │ ├── CustomInfoType_Dictionary_WordList.php │ │ ├── CustomInfoType_Regex.php │ │ ├── CustomInfoType_SurrogateType.php │ │ ├── DatastoreKey.php │ │ ├── DatastoreOptions.php │ │ ├── DateShiftConfig.php │ │ ├── DateTime.php │ │ ├── DateTime_TimeZone.php │ │ ├── DeidentifyConfig.php │ │ ├── DeidentifyContentRequest.php │ │ ├── DeidentifyContentResponse.php │ │ ├── DeidentifyTemplate.php │ │ ├── DeleteDeidentifyTemplateRequest.php │ │ ├── DeleteDlpJobRequest.php │ │ ├── DeleteInspectTemplateRequest.php │ │ ├── DeleteJobTriggerRequest.php │ │ ├── DlpJob.php │ │ ├── DlpJobType.php │ │ ├── DlpJob_JobState.php │ │ ├── DlpServiceGrpcClient.php │ │ ├── DocumentLocation.php │ │ ├── EntityId.php │ │ ├── Error.php │ │ ├── FieldId.php │ │ ├── FieldTransformation.php │ │ ├── FileType.php │ │ ├── Finding.php │ │ ├── FixedSizeBucketingConfig.php │ │ ├── GetDeidentifyTemplateRequest.php │ │ ├── GetDlpJobRequest.php │ │ ├── GetInspectTemplateRequest.php │ │ ├── GetJobTriggerRequest.php │ │ ├── ImageLocation.php │ │ ├── InfoType.php │ │ ├── InfoTypeDescription.php │ │ ├── InfoTypeStats.php │ │ ├── InfoTypeSupportedBy.php │ │ ├── InfoTypeTransformations.php │ │ ├── InfoTypeTransformations_InfoTypeTransformation.php │ │ ├── InspectConfig.php │ │ ├── InspectConfig_FindingLimits.php │ │ ├── InspectConfig_FindingLimits_InfoTypeLimit.php │ │ ├── InspectContentRequest.php │ │ ├── InspectContentResponse.php │ │ ├── InspectDataSourceDetails.php │ │ ├── InspectDataSourceDetails_RequestedOptions.php │ │ ├── InspectDataSourceDetails_Result.php │ │ ├── InspectJobConfig.php │ │ ├── InspectResult.php │ │ ├── InspectTemplate.php │ │ ├── JobTrigger.php │ │ ├── JobTrigger_Status.php │ │ ├── JobTrigger_Trigger.php │ │ ├── Key.php │ │ ├── Key_PathElement.php │ │ ├── KindExpression.php │ │ ├── KmsWrappedCryptoKey.php │ │ ├── Likelihood.php │ │ ├── ListDeidentifyTemplatesRequest.php │ │ ├── ListDeidentifyTemplatesResponse.php │ │ ├── ListDlpJobsRequest.php │ │ ├── ListDlpJobsResponse.php │ │ ├── ListInfoTypesRequest.php │ │ ├── ListInfoTypesResponse.php │ │ ├── ListInspectTemplatesRequest.php │ │ ├── ListInspectTemplatesResponse.php │ │ ├── ListJobTriggersRequest.php │ │ ├── ListJobTriggersResponse.php │ │ ├── Location.php │ │ ├── OutputStorageConfig.php │ │ ├── OutputStorageConfig_OutputSchema.php │ │ ├── PartitionId.php │ │ ├── PrimitiveTransformation.php │ │ ├── PrivacyMetric.php │ │ ├── PrivacyMetric_CategoricalStatsConfig.php │ │ ├── PrivacyMetric_KAnonymityConfig.php │ │ ├── PrivacyMetric_KMapEstimationConfig.php │ │ ├── PrivacyMetric_KMapEstimationConfig_AuxiliaryTable.php │ │ ├── PrivacyMetric_KMapEstimationConfig_AuxiliaryTable_QuasiIdField.php │ │ ├── PrivacyMetric_KMapEstimationConfig_TaggedField.php │ │ ├── PrivacyMetric_LDiversityConfig.php │ │ ├── PrivacyMetric_NumericalStatsConfig.php │ │ ├── QuoteInfo.php │ │ ├── Range.php │ │ ├── RecordCondition.php │ │ ├── RecordCondition_Condition.php │ │ ├── RecordCondition_Conditions.php │ │ ├── RecordCondition_Expressions.php │ │ ├── RecordCondition_Expressions_LogicalOperator.php │ │ ├── RecordKey.php │ │ ├── RecordLocation.php │ │ ├── RecordSuppression.php │ │ ├── RecordTransformations.php │ │ ├── RedactConfig.php │ │ ├── RedactImageRequest.php │ │ ├── RedactImageRequest_ImageRedactionConfig.php │ │ ├── RedactImageResponse.php │ │ ├── ReidentifyContentRequest.php │ │ ├── ReidentifyContentResponse.php │ │ ├── RelationalOperator.php │ │ ├── ReplaceValueConfig.php │ │ ├── ReplaceWithInfoTypeConfig.php │ │ ├── RiskAnalysisJobConfig.php │ │ ├── Schedule.php │ │ ├── StorageConfig.php │ │ ├── StorageConfig_TimespanConfig.php │ │ ├── Table.php │ │ ├── TableLocation.php │ │ ├── Table_Row.php │ │ ├── TimePartConfig.php │ │ ├── TimePartConfig_TimePart.php │ │ ├── TransformationOverview.php │ │ ├── TransformationSummary.php │ │ ├── TransformationSummary_SummaryResult.php │ │ ├── TransformationSummary_TransformationResultCode.php │ │ ├── TransientCryptoKey.php │ │ ├── UnwrappedCryptoKey.php │ │ ├── UpdateDeidentifyTemplateRequest.php │ │ ├── UpdateInspectTemplateRequest.php │ │ ├── UpdateJobTriggerRequest.php │ │ ├── Value.php │ │ └── ValueFrequency.php │ ├── ErrorReporting │ └── V1beta1 │ │ ├── DeleteEventsRequest.php │ │ ├── DeleteEventsResponse.php │ │ ├── ErrorContext.php │ │ ├── ErrorEvent.php │ │ ├── ErrorGroup.php │ │ ├── ErrorGroupOrder.php │ │ ├── ErrorGroupServiceGrpcClient.php │ │ ├── ErrorGroupStats.php │ │ ├── ErrorStatsServiceGrpcClient.php │ │ ├── GetGroupRequest.php │ │ ├── HttpRequestContext.php │ │ ├── ListEventsRequest.php │ │ ├── ListEventsResponse.php │ │ ├── ListGroupStatsRequest.php │ │ ├── ListGroupStatsResponse.php │ │ ├── QueryTimeRange.php │ │ ├── QueryTimeRange_Period.php │ │ ├── ReportErrorEventRequest.php │ │ ├── ReportErrorEventResponse.php │ │ ├── ReportErrorsServiceGrpcClient.php │ │ ├── ReportedErrorEvent.php │ │ ├── ServiceContext.php │ │ ├── ServiceContextFilter.php │ │ ├── SourceLocation.php │ │ ├── TimedCount.php │ │ ├── TimedCountAlignment.php │ │ ├── TrackingIssue.php │ │ └── UpdateGroupRequest.php │ ├── Firestore │ └── V1beta1 │ │ ├── ArrayValue.php │ │ ├── BatchGetDocumentsRequest.php │ │ ├── BatchGetDocumentsResponse.php │ │ ├── BeginTransactionRequest.php │ │ ├── BeginTransactionResponse.php │ │ ├── CommitRequest.php │ │ ├── CommitResponse.php │ │ ├── CreateDocumentRequest.php │ │ ├── Cursor.php │ │ ├── DeleteDocumentRequest.php │ │ ├── Document.php │ │ ├── DocumentChange.php │ │ ├── DocumentDelete.php │ │ ├── DocumentMask.php │ │ ├── DocumentRemove.php │ │ ├── DocumentTransform.php │ │ ├── DocumentTransform_FieldTransform.php │ │ ├── DocumentTransform_FieldTransform_ServerValue.php │ │ ├── ExistenceFilter.php │ │ ├── FirestoreGrpcClient.php │ │ ├── GetDocumentRequest.php │ │ ├── ListCollectionIdsRequest.php │ │ ├── ListCollectionIdsResponse.php │ │ ├── ListDocumentsRequest.php │ │ ├── ListDocumentsResponse.php │ │ ├── ListenRequest.php │ │ ├── ListenResponse.php │ │ ├── MapValue.php │ │ ├── Precondition.php │ │ ├── RollbackRequest.php │ │ ├── RunQueryRequest.php │ │ ├── RunQueryResponse.php │ │ ├── StructuredQuery.php │ │ ├── StructuredQuery_CollectionSelector.php │ │ ├── StructuredQuery_CompositeFilter.php │ │ ├── StructuredQuery_CompositeFilter_Operator.php │ │ ├── StructuredQuery_Direction.php │ │ ├── StructuredQuery_FieldFilter.php │ │ ├── StructuredQuery_FieldFilter_Operator.php │ │ ├── StructuredQuery_FieldReference.php │ │ ├── StructuredQuery_Filter.php │ │ ├── StructuredQuery_Order.php │ │ ├── StructuredQuery_Projection.php │ │ ├── StructuredQuery_UnaryFilter.php │ │ ├── StructuredQuery_UnaryFilter_Operator.php │ │ ├── Target.php │ │ ├── TargetChange.php │ │ ├── TargetChange_TargetChangeType.php │ │ ├── Target_DocumentsTarget.php │ │ ├── Target_QueryTarget.php │ │ ├── TransactionOptions.php │ │ ├── TransactionOptions_ReadOnly.php │ │ ├── TransactionOptions_ReadWrite.php │ │ ├── UpdateDocumentRequest.php │ │ ├── Value.php │ │ ├── Write.php │ │ ├── WriteRequest.php │ │ ├── WriteResponse.php │ │ └── WriteResult.php │ ├── Iot │ └── V1 │ │ ├── CreateDeviceRegistryRequest.php │ │ ├── CreateDeviceRequest.php │ │ ├── DeleteDeviceRegistryRequest.php │ │ ├── DeleteDeviceRequest.php │ │ ├── Device.php │ │ ├── DeviceConfig.php │ │ ├── DeviceCredential.php │ │ ├── DeviceManagerGrpcClient.php │ │ ├── DeviceRegistry.php │ │ ├── DeviceState.php │ │ ├── EventNotificationConfig.php │ │ ├── GetDeviceRegistryRequest.php │ │ ├── GetDeviceRequest.php │ │ ├── HttpConfig.php │ │ ├── HttpState.php │ │ ├── ListDeviceConfigVersionsRequest.php │ │ ├── ListDeviceConfigVersionsResponse.php │ │ ├── ListDeviceRegistriesRequest.php │ │ ├── ListDeviceRegistriesResponse.php │ │ ├── ListDeviceStatesRequest.php │ │ ├── ListDeviceStatesResponse.php │ │ ├── ListDevicesRequest.php │ │ ├── ListDevicesResponse.php │ │ ├── ModifyCloudToDeviceConfigRequest.php │ │ ├── MqttConfig.php │ │ ├── MqttState.php │ │ ├── PublicKeyCertificate.php │ │ ├── PublicKeyCertificateFormat.php │ │ ├── PublicKeyCredential.php │ │ ├── PublicKeyFormat.php │ │ ├── RegistryCredential.php │ │ ├── StateNotificationConfig.php │ │ ├── UpdateDeviceRegistryRequest.php │ │ ├── UpdateDeviceRequest.php │ │ └── X509CertificateDetails.php │ ├── Language │ └── V1beta2 │ │ ├── AnalyzeEntitiesRequest.php │ │ ├── AnalyzeEntitiesResponse.php │ │ ├── AnalyzeEntitySentimentRequest.php │ │ ├── AnalyzeEntitySentimentResponse.php │ │ ├── AnalyzeSentimentRequest.php │ │ ├── AnalyzeSentimentResponse.php │ │ ├── AnalyzeSyntaxRequest.php │ │ ├── AnalyzeSyntaxResponse.php │ │ ├── AnnotateTextRequest.php │ │ ├── AnnotateTextRequest_Features.php │ │ ├── AnnotateTextResponse.php │ │ ├── ClassificationCategory.php │ │ ├── ClassifyTextRequest.php │ │ ├── ClassifyTextResponse.php │ │ ├── DependencyEdge.php │ │ ├── DependencyEdge_Label.php │ │ ├── Document.php │ │ ├── Document_Type.php │ │ ├── EncodingType.php │ │ ├── Entity.php │ │ ├── EntityMention.php │ │ ├── EntityMention_Type.php │ │ ├── Entity_Type.php │ │ ├── LanguageServiceGrpcClient.php │ │ ├── PartOfSpeech.php │ │ ├── PartOfSpeech_Aspect.php │ │ ├── PartOfSpeech_Case.php │ │ ├── PartOfSpeech_Form.php │ │ ├── PartOfSpeech_Gender.php │ │ ├── PartOfSpeech_Mood.php │ │ ├── PartOfSpeech_Number.php │ │ ├── PartOfSpeech_Person.php │ │ ├── PartOfSpeech_Proper.php │ │ ├── PartOfSpeech_Reciprocity.php │ │ ├── PartOfSpeech_Tag.php │ │ ├── PartOfSpeech_Tense.php │ │ ├── PartOfSpeech_Voice.php │ │ ├── Sentence.php │ │ ├── Sentiment.php │ │ ├── TextSpan.php │ │ └── Token.php │ ├── Logging │ └── V2 │ │ ├── ConfigServiceV2GrpcClient.php │ │ ├── CreateExclusionRequest.php │ │ ├── CreateLogMetricRequest.php │ │ ├── CreateSinkRequest.php │ │ ├── DeleteExclusionRequest.php │ │ ├── DeleteLogMetricRequest.php │ │ ├── DeleteLogRequest.php │ │ ├── DeleteSinkRequest.php │ │ ├── GetExclusionRequest.php │ │ ├── GetLogMetricRequest.php │ │ ├── GetSinkRequest.php │ │ ├── ListExclusionsRequest.php │ │ ├── ListExclusionsResponse.php │ │ ├── ListLogEntriesRequest.php │ │ ├── ListLogEntriesResponse.php │ │ ├── ListLogMetricsRequest.php │ │ ├── ListLogMetricsResponse.php │ │ ├── ListLogsRequest.php │ │ ├── ListLogsResponse.php │ │ ├── ListMonitoredResourceDescriptorsRequest.php │ │ ├── ListMonitoredResourceDescriptorsResponse.php │ │ ├── ListSinksRequest.php │ │ ├── ListSinksResponse.php │ │ ├── LogEntry.php │ │ ├── LogEntryOperation.php │ │ ├── LogEntrySourceLocation.php │ │ ├── LogExclusion.php │ │ ├── LogMetric.php │ │ ├── LogMetric_ApiVersion.php │ │ ├── LogSink.php │ │ ├── LogSink_VersionFormat.php │ │ ├── LoggingServiceV2GrpcClient.php │ │ ├── MetricsServiceV2GrpcClient.php │ │ ├── UpdateExclusionRequest.php │ │ ├── UpdateLogMetricRequest.php │ │ ├── UpdateSinkRequest.php │ │ ├── WriteLogEntriesPartialErrors.php │ │ ├── WriteLogEntriesRequest.php │ │ └── WriteLogEntriesResponse.php │ ├── Monitoring │ └── V3 │ │ ├── Aggregation.php │ │ ├── Aggregation_Aligner.php │ │ ├── Aggregation_Reducer.php │ │ ├── AlertPolicy.php │ │ ├── AlertPolicyServiceGrpcClient.php │ │ ├── AlertPolicy_Condition.php │ │ ├── AlertPolicy_ConditionCombinerType.php │ │ ├── AlertPolicy_Condition_MetricAbsence.php │ │ ├── AlertPolicy_Condition_MetricThreshold.php │ │ ├── AlertPolicy_Condition_Trigger.php │ │ ├── AlertPolicy_Documentation.php │ │ ├── ComparisonType.php │ │ ├── CreateAlertPolicyRequest.php │ │ ├── CreateGroupRequest.php │ │ ├── CreateMetricDescriptorRequest.php │ │ ├── CreateNotificationChannelRequest.php │ │ ├── CreateTimeSeriesError.php │ │ ├── CreateTimeSeriesRequest.php │ │ ├── CreateUptimeCheckConfigRequest.php │ │ ├── DeleteAlertPolicyRequest.php │ │ ├── DeleteGroupRequest.php │ │ ├── DeleteMetricDescriptorRequest.php │ │ ├── DeleteNotificationChannelRequest.php │ │ ├── DeleteUptimeCheckConfigRequest.php │ │ ├── GetAlertPolicyRequest.php │ │ ├── GetGroupRequest.php │ │ ├── GetMetricDescriptorRequest.php │ │ ├── GetMonitoredResourceDescriptorRequest.php │ │ ├── GetNotificationChannelDescriptorRequest.php │ │ ├── GetNotificationChannelRequest.php │ │ ├── GetNotificationChannelVerificationCodeRequest.php │ │ ├── GetNotificationChannelVerificationCodeResponse.php │ │ ├── GetUptimeCheckConfigRequest.php │ │ ├── Group.php │ │ ├── GroupResourceType.php │ │ ├── GroupServiceGrpcClient.php │ │ ├── ListAlertPoliciesRequest.php │ │ ├── ListAlertPoliciesResponse.php │ │ ├── ListGroupMembersRequest.php │ │ ├── ListGroupMembersResponse.php │ │ ├── ListGroupsRequest.php │ │ ├── ListGroupsResponse.php │ │ ├── ListMetricDescriptorsRequest.php │ │ ├── ListMetricDescriptorsResponse.php │ │ ├── ListMonitoredResourceDescriptorsRequest.php │ │ ├── ListMonitoredResourceDescriptorsResponse.php │ │ ├── ListNotificationChannelDescriptorsRequest.php │ │ ├── ListNotificationChannelDescriptorsResponse.php │ │ ├── ListNotificationChannelsRequest.php │ │ ├── ListNotificationChannelsResponse.php │ │ ├── ListTimeSeriesRequest.php │ │ ├── ListTimeSeriesRequest_TimeSeriesView.php │ │ ├── ListTimeSeriesResponse.php │ │ ├── ListUptimeCheckConfigsRequest.php │ │ ├── ListUptimeCheckConfigsResponse.php │ │ ├── ListUptimeCheckIpsRequest.php │ │ ├── ListUptimeCheckIpsResponse.php │ │ ├── MetricServiceGrpcClient.php │ │ ├── MutationRecord.php │ │ ├── NotificationChannel.php │ │ ├── NotificationChannelDescriptor.php │ │ ├── NotificationChannelServiceGrpcClient.php │ │ ├── NotificationChannel_VerificationStatus.php │ │ ├── Point.php │ │ ├── SendNotificationChannelVerificationCodeRequest.php │ │ ├── ServiceTier.php │ │ ├── TimeInterval.php │ │ ├── TimeSeries.php │ │ ├── TypedValue.php │ │ ├── UpdateAlertPolicyRequest.php │ │ ├── UpdateGroupRequest.php │ │ ├── UpdateNotificationChannelRequest.php │ │ ├── UpdateUptimeCheckConfigRequest.php │ │ ├── UptimeCheckConfig.php │ │ ├── UptimeCheckConfig_ContentMatcher.php │ │ ├── UptimeCheckConfig_HttpCheck.php │ │ ├── UptimeCheckConfig_HttpCheck_BasicAuthentication.php │ │ ├── UptimeCheckConfig_InternalChecker.php │ │ ├── UptimeCheckConfig_ResourceGroup.php │ │ ├── UptimeCheckConfig_TcpCheck.php │ │ ├── UptimeCheckIp.php │ │ ├── UptimeCheckRegion.php │ │ ├── UptimeCheckServiceGrpcClient.php │ │ └── VerifyNotificationChannelRequest.php │ ├── OsLogin │ ├── Common │ │ ├── PosixAccount.php │ │ └── SshPublicKey.php │ └── V1beta │ │ ├── DeletePosixAccountRequest.php │ │ ├── DeleteSshPublicKeyRequest.php │ │ ├── GetLoginProfileRequest.php │ │ ├── GetSshPublicKeyRequest.php │ │ ├── ImportSshPublicKeyRequest.php │ │ ├── ImportSshPublicKeyResponse.php │ │ ├── LoginProfile.php │ │ ├── OsLoginServiceGrpcClient.php │ │ └── UpdateSshPublicKeyRequest.php │ ├── PubSub │ └── V1 │ │ ├── AcknowledgeRequest.php │ │ ├── CreateSnapshotRequest.php │ │ ├── DeleteSnapshotRequest.php │ │ ├── DeleteSubscriptionRequest.php │ │ ├── DeleteTopicRequest.php │ │ ├── GetSubscriptionRequest.php │ │ ├── GetTopicRequest.php │ │ ├── ListSnapshotsRequest.php │ │ ├── ListSnapshotsResponse.php │ │ ├── ListSubscriptionsRequest.php │ │ ├── ListSubscriptionsResponse.php │ │ ├── ListTopicSubscriptionsRequest.php │ │ ├── ListTopicSubscriptionsResponse.php │ │ ├── ListTopicsRequest.php │ │ ├── ListTopicsResponse.php │ │ ├── ModifyAckDeadlineRequest.php │ │ ├── ModifyPushConfigRequest.php │ │ ├── PublishRequest.php │ │ ├── PublishResponse.php │ │ ├── PublisherGrpcClient.php │ │ ├── PubsubMessage.php │ │ ├── PullRequest.php │ │ ├── PullResponse.php │ │ ├── PushConfig.php │ │ ├── ReceivedMessage.php │ │ ├── SeekRequest.php │ │ ├── SeekResponse.php │ │ ├── Snapshot.php │ │ ├── StreamingPullRequest.php │ │ ├── StreamingPullResponse.php │ │ ├── SubscriberGrpcClient.php │ │ ├── Subscription.php │ │ ├── Topic.php │ │ ├── UpdateSnapshotRequest.php │ │ ├── UpdateSubscriptionRequest.php │ │ └── UpdateTopicRequest.php │ ├── Redis │ └── V1beta1 │ │ ├── CloudRedisGrpcClient.php │ │ ├── CreateInstanceRequest.php │ │ ├── DeleteInstanceRequest.php │ │ ├── GetInstanceRequest.php │ │ ├── Instance.php │ │ ├── Instance_State.php │ │ ├── Instance_Tier.php │ │ ├── ListInstancesRequest.php │ │ ├── ListInstancesResponse.php │ │ ├── LocationMetadata.php │ │ ├── UpdateInstanceRequest.php │ │ └── ZoneMetadata.php │ ├── Spanner │ ├── Admin │ │ ├── Database │ │ │ └── V1 │ │ │ │ ├── CreateDatabaseMetadata.php │ │ │ │ ├── CreateDatabaseRequest.php │ │ │ │ ├── Database.php │ │ │ │ ├── DatabaseAdminGrpcClient.php │ │ │ │ ├── Database_State.php │ │ │ │ ├── DropDatabaseRequest.php │ │ │ │ ├── GetDatabaseDdlRequest.php │ │ │ │ ├── GetDatabaseDdlResponse.php │ │ │ │ ├── GetDatabaseRequest.php │ │ │ │ ├── ListDatabasesRequest.php │ │ │ │ ├── ListDatabasesResponse.php │ │ │ │ ├── UpdateDatabaseDdlMetadata.php │ │ │ │ └── UpdateDatabaseDdlRequest.php │ │ └── Instance │ │ │ └── V1 │ │ │ ├── CreateInstanceMetadata.php │ │ │ ├── CreateInstanceRequest.php │ │ │ ├── DeleteInstanceRequest.php │ │ │ ├── GetInstanceConfigRequest.php │ │ │ ├── GetInstanceRequest.php │ │ │ ├── Instance.php │ │ │ ├── InstanceAdminGrpcClient.php │ │ │ ├── InstanceConfig.php │ │ │ ├── Instance_State.php │ │ │ ├── ListInstanceConfigsRequest.php │ │ │ ├── ListInstanceConfigsResponse.php │ │ │ ├── ListInstancesRequest.php │ │ │ ├── ListInstancesResponse.php │ │ │ ├── UpdateInstanceMetadata.php │ │ │ └── UpdateInstanceRequest.php │ └── V1 │ │ ├── BeginTransactionRequest.php │ │ ├── CommitRequest.php │ │ ├── CommitResponse.php │ │ ├── CreateSessionRequest.php │ │ ├── DeleteSessionRequest.php │ │ ├── ExecuteSqlRequest.php │ │ ├── ExecuteSqlRequest_QueryMode.php │ │ ├── GetSessionRequest.php │ │ ├── KeyRange.php │ │ ├── KeySet.php │ │ ├── ListSessionsRequest.php │ │ ├── ListSessionsResponse.php │ │ ├── Mutation.php │ │ ├── Mutation_Delete.php │ │ ├── Mutation_Write.php │ │ ├── PartialResultSet.php │ │ ├── Partition.php │ │ ├── PartitionOptions.php │ │ ├── PartitionQueryRequest.php │ │ ├── PartitionReadRequest.php │ │ ├── PartitionResponse.php │ │ ├── PlanNode.php │ │ ├── PlanNode_ChildLink.php │ │ ├── PlanNode_Kind.php │ │ ├── PlanNode_ShortRepresentation.php │ │ ├── QueryPlan.php │ │ ├── ReadRequest.php │ │ ├── ResultSet.php │ │ ├── ResultSetMetadata.php │ │ ├── ResultSetStats.php │ │ ├── RollbackRequest.php │ │ ├── Session.php │ │ ├── SpannerGrpcClient.php │ │ ├── StructType.php │ │ ├── StructType_Field.php │ │ ├── Transaction.php │ │ ├── TransactionOptions.php │ │ ├── TransactionOptions_ReadOnly.php │ │ ├── TransactionOptions_ReadWrite.php │ │ ├── TransactionSelector.php │ │ ├── Type.php │ │ └── TypeCode.php │ ├── Speech │ ├── V1 │ │ ├── LongRunningRecognizeMetadata.php │ │ ├── LongRunningRecognizeRequest.php │ │ ├── LongRunningRecognizeResponse.php │ │ ├── RecognitionAudio.php │ │ ├── RecognitionConfig.php │ │ ├── RecognitionConfig_AudioEncoding.php │ │ ├── RecognizeRequest.php │ │ ├── RecognizeResponse.php │ │ ├── SpeechContext.php │ │ ├── SpeechGrpcClient.php │ │ ├── SpeechRecognitionAlternative.php │ │ ├── SpeechRecognitionResult.php │ │ ├── StreamingRecognitionConfig.php │ │ ├── StreamingRecognitionResult.php │ │ ├── StreamingRecognizeRequest.php │ │ ├── StreamingRecognizeResponse.php │ │ ├── StreamingRecognizeResponse_SpeechEventType.php │ │ └── WordInfo.php │ ├── V1beta1 │ │ ├── AsyncRecognizeMetadata.php │ │ ├── AsyncRecognizeRequest.php │ │ ├── AsyncRecognizeResponse.php │ │ ├── RecognitionAudio.php │ │ ├── RecognitionConfig.php │ │ ├── RecognitionConfig_AudioEncoding.php │ │ ├── SpeechContext.php │ │ ├── SpeechGrpcClient.php │ │ ├── SpeechRecognitionAlternative.php │ │ ├── SpeechRecognitionResult.php │ │ ├── StreamingRecognitionConfig.php │ │ ├── StreamingRecognitionResult.php │ │ ├── StreamingRecognizeRequest.php │ │ ├── StreamingRecognizeResponse.php │ │ ├── StreamingRecognizeResponse_EndpointerType.php │ │ ├── SyncRecognizeRequest.php │ │ └── SyncRecognizeResponse.php │ └── V1p1beta1 │ │ ├── LongRunningRecognizeMetadata.php │ │ ├── LongRunningRecognizeRequest.php │ │ ├── LongRunningRecognizeResponse.php │ │ ├── RecognitionAudio.php │ │ ├── RecognitionConfig.php │ │ ├── RecognitionConfig_AudioEncoding.php │ │ ├── RecognitionMetadata.php │ │ ├── RecognitionMetadata_InteractionType.php │ │ ├── RecognitionMetadata_MicrophoneDistance.php │ │ ├── RecognitionMetadata_OriginalMediaType.php │ │ ├── RecognitionMetadata_RecordingDeviceType.php │ │ ├── RecognizeRequest.php │ │ ├── RecognizeResponse.php │ │ ├── SpeechContext.php │ │ ├── SpeechGrpcClient.php │ │ ├── SpeechRecognitionAlternative.php │ │ ├── SpeechRecognitionResult.php │ │ ├── StreamingRecognitionConfig.php │ │ ├── StreamingRecognitionResult.php │ │ ├── StreamingRecognizeRequest.php │ │ ├── StreamingRecognizeResponse.php │ │ ├── StreamingRecognizeResponse_SpeechEventType.php │ │ └── WordInfo.php │ ├── Tasks │ └── V2beta2 │ │ ├── AcknowledgeTaskRequest.php │ │ ├── AppEngineHttpRequest.php │ │ ├── AppEngineHttpTarget.php │ │ ├── AppEngineRouting.php │ │ ├── AttemptStatus.php │ │ ├── CancelLeaseRequest.php │ │ ├── CloudTasksGrpcClient.php │ │ ├── CreateQueueRequest.php │ │ ├── CreateTaskRequest.php │ │ ├── DeleteQueueRequest.php │ │ ├── DeleteTaskRequest.php │ │ ├── GetQueueRequest.php │ │ ├── GetTaskRequest.php │ │ ├── HttpMethod.php │ │ ├── LeaseTasksRequest.php │ │ ├── LeaseTasksResponse.php │ │ ├── ListQueuesRequest.php │ │ ├── ListQueuesResponse.php │ │ ├── ListTasksRequest.php │ │ ├── ListTasksResponse.php │ │ ├── PauseQueueRequest.php │ │ ├── PullMessage.php │ │ ├── PullTarget.php │ │ ├── PurgeQueueRequest.php │ │ ├── Queue.php │ │ ├── Queue_State.php │ │ ├── RateLimits.php │ │ ├── RenewLeaseRequest.php │ │ ├── ResumeQueueRequest.php │ │ ├── RetryConfig.php │ │ ├── RunTaskRequest.php │ │ ├── Task.php │ │ ├── TaskStatus.php │ │ ├── Task_View.php │ │ └── UpdateQueueRequest.php │ ├── Trace │ └── V2 │ │ ├── AttributeValue.php │ │ ├── BatchWriteSpansRequest.php │ │ ├── Module.php │ │ ├── Span.php │ │ ├── Span_Attributes.php │ │ ├── Span_Link.php │ │ ├── Span_Link_Type.php │ │ ├── Span_Links.php │ │ ├── Span_TimeEvent.php │ │ ├── Span_TimeEvent_Annotation.php │ │ ├── Span_TimeEvent_MessageEvent.php │ │ ├── Span_TimeEvent_MessageEvent_Type.php │ │ ├── Span_TimeEvents.php │ │ ├── StackTrace.php │ │ ├── StackTrace_StackFrame.php │ │ ├── StackTrace_StackFrames.php │ │ ├── TraceServiceGrpcClient.php │ │ └── TruncatableString.php │ ├── VideoIntelligence │ ├── V1 │ │ ├── AnnotateVideoProgress.php │ │ ├── AnnotateVideoRequest.php │ │ ├── AnnotateVideoResponse.php │ │ ├── Entity.php │ │ ├── ExplicitContentAnnotation.php │ │ ├── ExplicitContentDetectionConfig.php │ │ ├── ExplicitContentFrame.php │ │ ├── FaceAnnotation.php │ │ ├── FaceDetectionConfig.php │ │ ├── FaceFrame.php │ │ ├── FaceSegment.php │ │ ├── Feature.php │ │ ├── LabelAnnotation.php │ │ ├── LabelDetectionConfig.php │ │ ├── LabelDetectionMode.php │ │ ├── LabelFrame.php │ │ ├── LabelSegment.php │ │ ├── Likelihood.php │ │ ├── NormalizedBoundingBox.php │ │ ├── ShotChangeDetectionConfig.php │ │ ├── VideoAnnotationProgress.php │ │ ├── VideoAnnotationResults.php │ │ ├── VideoContext.php │ │ ├── VideoIntelligenceServiceGrpcClient.php │ │ └── VideoSegment.php │ ├── V1beta1 │ │ ├── AnnotateVideoProgress.php │ │ ├── AnnotateVideoRequest.php │ │ ├── AnnotateVideoResponse.php │ │ ├── BoundingBox.php │ │ ├── FaceAnnotation.php │ │ ├── FaceLocation.php │ │ ├── Feature.php │ │ ├── LabelAnnotation.php │ │ ├── LabelDetectionMode.php │ │ ├── LabelLevel.php │ │ ├── LabelLocation.php │ │ ├── Likelihood.php │ │ ├── SafeSearchAnnotation.php │ │ ├── VideoAnnotationProgress.php │ │ ├── VideoAnnotationResults.php │ │ ├── VideoContext.php │ │ ├── VideoIntelligenceServiceGrpcClient.php │ │ └── VideoSegment.php │ └── V1beta2 │ │ ├── AnnotateVideoProgress.php │ │ ├── AnnotateVideoRequest.php │ │ ├── AnnotateVideoResponse.php │ │ ├── Entity.php │ │ ├── ExplicitContentAnnotation.php │ │ ├── ExplicitContentDetectionConfig.php │ │ ├── ExplicitContentFrame.php │ │ ├── FaceAnnotation.php │ │ ├── FaceDetectionConfig.php │ │ ├── FaceFrame.php │ │ ├── FaceSegment.php │ │ ├── Feature.php │ │ ├── LabelAnnotation.php │ │ ├── LabelDetectionConfig.php │ │ ├── LabelDetectionMode.php │ │ ├── LabelFrame.php │ │ ├── LabelSegment.php │ │ ├── Likelihood.php │ │ ├── NormalizedBoundingBox.php │ │ ├── ShotChangeDetectionConfig.php │ │ ├── VideoAnnotationProgress.php │ │ ├── VideoAnnotationResults.php │ │ ├── VideoContext.php │ │ ├── VideoIntelligenceServiceGrpcClient.php │ │ └── VideoSegment.php │ └── Vision │ └── V1 │ ├── AnnotateFileResponse.php │ ├── AnnotateImageRequest.php │ ├── AnnotateImageResponse.php │ ├── AsyncAnnotateFileRequest.php │ ├── AsyncAnnotateFileResponse.php │ ├── AsyncBatchAnnotateFilesRequest.php │ ├── AsyncBatchAnnotateFilesResponse.php │ ├── BatchAnnotateImagesRequest.php │ ├── BatchAnnotateImagesResponse.php │ ├── Block.php │ ├── Block_BlockType.php │ ├── BoundingPoly.php │ ├── ColorInfo.php │ ├── CropHint.php │ ├── CropHintsAnnotation.php │ ├── CropHintsParams.php │ ├── DominantColorsAnnotation.php │ ├── EntityAnnotation.php │ ├── FaceAnnotation.php │ ├── FaceAnnotation_Landmark.php │ ├── FaceAnnotation_Landmark_Type.php │ ├── Feature.php │ ├── Feature_Type.php │ ├── GcsDestination.php │ ├── GcsSource.php │ ├── Image.php │ ├── ImageAnnotationContext.php │ ├── ImageAnnotatorGrpcClient.php │ ├── ImageContext.php │ ├── ImageProperties.php │ ├── ImageSource.php │ ├── InputConfig.php │ ├── LatLongRect.php │ ├── Likelihood.php │ ├── LocationInfo.php │ ├── NormalizedVertex.php │ ├── OperationMetadata.php │ ├── OperationMetadata_State.php │ ├── OutputConfig.php │ ├── Page.php │ ├── Paragraph.php │ ├── Position.php │ ├── Property.php │ ├── SafeSearchAnnotation.php │ ├── Symbol.php │ ├── TextAnnotation.php │ ├── TextAnnotation_DetectedBreak.php │ ├── TextAnnotation_DetectedBreak_BreakType.php │ ├── TextAnnotation_DetectedLanguage.php │ ├── TextAnnotation_TextProperty.php │ ├── Vertex.php │ ├── WebDetection.php │ ├── WebDetectionParams.php │ ├── WebDetection_WebEntity.php │ ├── WebDetection_WebImage.php │ ├── WebDetection_WebLabel.php │ ├── WebDetection_WebPage.php │ └── Word.php └── tests ├── Unit └── InstantiateClassesTest.php └── bootstrap.php /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | composer.phar 3 | composer.lock 4 | composer-test.lock 5 | vendor/ 6 | build/artifacts/ 7 | artifacts/ 8 | .idea 9 | .metadata 10 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | php: 3 | - '5.5.38' 4 | - '5.6.25' 5 | - '7.0' 6 | - '7.1' 7 | - '7.2' 8 | - '7.3' 9 | - '7.4' 10 | sudo: required 11 | dist: trusty 12 | install: 13 | - pecl install grpc 14 | - composer install 15 | script: 16 | - vendor/bin/phpunit 17 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Want to contribute? Great! First, read this page (including the small print at the end). 2 | 3 | ### Before you contribute 4 | Before we can use your code, you must sign the 5 | [Google Individual Contributor License Agreement] 6 | (https://cla.developers.google.com/about/google-individual) 7 | (CLA), which you can do online. The CLA is necessary mainly because you own the 8 | copyright to your changes, even after your contribution becomes part of our 9 | codebase, so we need your permission to use and distribute your code. We also 10 | need to be sure of various other things—for instance that you'll tell us if you 11 | know that your code infringes on other people's patents. You don't have to sign 12 | the CLA until after you've submitted your code for review and a member has 13 | approved it, but you must do it before we can put your code into our codebase. 14 | Before you start working on a larger contribution, you should get in touch with 15 | us first through the issue tracker with your idea so that we can help out and 16 | possibly guide you. Coordinating up front makes it much easier to avoid 17 | frustration later on. 18 | 19 | ### Code reviews 20 | All submissions, including submissions by project members, require review. We 21 | use Github pull requests for this purpose. 22 | 23 | ### The small print 24 | Contributions made by corporations are covered by a different agreement than 25 | the one above, the 26 | [Software Grant and Corporate Contributor License Agreement] 27 | (https://cla.developers.google.com/about/google-corporate). 28 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright 2016, Google Inc. 2 | All rights reserved. 3 | Redistribution and use in source and binary forms, with or without 4 | modification, are permitted provided that the following conditions are 5 | met: 6 | * Redistributions of source code must retain the above copyright 7 | notice, this list of conditions and the following disclaimer. 8 | * Redistributions in binary form must reproduce the above 9 | copyright notice, this list of conditions and the following disclaimer 10 | in the documentation and/or other materials provided with the 11 | distribution. 12 | * Neither the name of Google Inc. nor the names of its 13 | contributors may be used to endorse or promote products derived from 14 | this software without specific prior written permission. 15 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 16 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 17 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 18 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 19 | OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 20 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 21 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 22 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 23 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 25 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "google/proto-client", 3 | "type": "library", 4 | "description": "Generated proto and gRPC classes for Google Cloud Platform in PHP", 5 | "keywords": ["google"], 6 | "homepage": "https://github.com/googleapis/proto-client-php", 7 | "license": "BSD-3-Clause", 8 | "require": { 9 | "php": ">=5.5", 10 | "google/protobuf": "^3.4" 11 | }, 12 | "require-dev": { 13 | "phpunit/phpunit": "^4.8.36", 14 | "google/gax": ">=0.25.0" 15 | }, 16 | "autoload": { 17 | "psr-4": { 18 | "Google\\":"src/Google/", 19 | "GPBMetadata\\":"src/GPBMetadata/" 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | tests 7 | 8 | 9 | 10 | 11 | src 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/GPBMetadata/Google/Bigtable/Admin/V2/Common.php: -------------------------------------------------------------------------------- 1 | internalAddGeneratedFile(hex2bin( 20 | "0ada020a25676f6f676c652f6269677461626c652f61646d696e2f76322f" . 21 | "636f6d6d6f6e2e70726f746f1218676f6f676c652e6269677461626c652e" . 22 | "61646d696e2e76321a1f676f6f676c652f70726f746f6275662f74696d65" . 23 | "7374616d702e70726f746f2a3d0a0b53746f7261676554797065121c0a18" . 24 | "53544f524147455f545950455f554e535045434946494544100012070a03" . 25 | "535344100112070a03484444100242ae010a1c636f6d2e676f6f676c652e" . 26 | "6269677461626c652e61646d696e2e7632420b436f6d6d6f6e50726f746f" . 27 | "50015a3d676f6f676c652e676f6c616e672e6f72672f67656e70726f746f" . 28 | "2f676f6f676c65617069732f6269677461626c652f61646d696e2f76323b" . 29 | "61646d696eaa021e476f6f676c652e436c6f75642e4269677461626c652e" . 30 | "41646d696e2e5632ca021e476f6f676c655c436c6f75645c426967746162" . 31 | "6c655c41646d696e5c5632620670726f746f33" 32 | )); 33 | 34 | static::$is_initialized = true; 35 | } 36 | } 37 | 38 | -------------------------------------------------------------------------------- /src/GPBMetadata/Google/Monitoring/V3/Group.php: -------------------------------------------------------------------------------- 1 | internalAddGeneratedFile(hex2bin( 18 | "0acb020a20676f6f676c652f6d6f6e69746f72696e672f76332f67726f75" . 19 | "702e70726f746f1214676f6f676c652e6d6f6e69746f72696e672e763322" . 20 | "640a0547726f7570120c0a046e616d6518012001280912140a0c64697370" . 21 | "6c61795f6e616d6518022001280912130a0b706172656e745f6e616d6518" . 22 | "0320012809120e0a0666696c74657218052001280912120a0a69735f636c" . 23 | "757374657218062001280842a2010a18636f6d2e676f6f676c652e6d6f6e" . 24 | "69746f72696e672e7633420a47726f757050726f746f50015a3e676f6f67" . 25 | "6c652e676f6c616e672e6f72672f67656e70726f746f2f676f6f676c6561" . 26 | "7069732f6d6f6e69746f72696e672f76333b6d6f6e69746f72696e67aa02" . 27 | "1a476f6f676c652e436c6f75642e4d6f6e69746f72696e672e5633ca021a" . 28 | "476f6f676c655c436c6f75645c4d6f6e69746f72696e675c563362067072" . 29 | "6f746f33" 30 | )); 31 | 32 | static::$is_initialized = true; 33 | } 34 | } 35 | 36 | -------------------------------------------------------------------------------- /src/GPBMetadata/Google/Monitoring/V3/MutationRecord.php: -------------------------------------------------------------------------------- 1 | internalAddGeneratedFile(hex2bin( 19 | "0acf020a2a676f6f676c652f6d6f6e69746f72696e672f76332f6d757461" . 20 | "74696f6e5f7265636f72642e70726f746f1214676f6f676c652e6d6f6e69" . 21 | "746f72696e672e763322550a0e4d75746174696f6e5265636f7264122f0a" . 22 | "0b6d75746174655f74696d6518012001280b321a2e676f6f676c652e7072" . 23 | "6f746f6275662e54696d657374616d7012120a0a6d7574617465645f6279" . 24 | "18022001280942ab010a18636f6d2e676f6f676c652e6d6f6e69746f7269" . 25 | "6e672e763342134d75746174696f6e5265636f726450726f746f50015a3e" . 26 | "676f6f676c652e676f6c616e672e6f72672f67656e70726f746f2f676f6f" . 27 | "676c65617069732f6d6f6e69746f72696e672f76333b6d6f6e69746f7269" . 28 | "6e67aa021a476f6f676c652e436c6f75642e4d6f6e69746f72696e672e56" . 29 | "33ca021a476f6f676c655c436c6f75645c4d6f6e69746f72696e675c5633" . 30 | "620670726f746f33" 31 | )); 32 | 33 | static::$is_initialized = true; 34 | } 35 | } 36 | 37 | -------------------------------------------------------------------------------- /src/Google/Cloud/BigQuery/DataTransfer/V1/DataSourceParameter_Type.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Bigquery\Datatransfer\V1\DataSourceParameter\Type 11 | */ 12 | class DataSourceParameter_Type 13 | { 14 | /** 15 | * Type unspecified. 16 | * 17 | * Generated from protobuf enum TYPE_UNSPECIFIED = 0; 18 | */ 19 | const TYPE_UNSPECIFIED = 0; 20 | /** 21 | * String parameter. 22 | * 23 | * Generated from protobuf enum STRING = 1; 24 | */ 25 | const STRING = 1; 26 | /** 27 | * Integer parameter (64-bits). 28 | * Will be serialized to json as string. 29 | * 30 | * Generated from protobuf enum INTEGER = 2; 31 | */ 32 | const INTEGER = 2; 33 | /** 34 | * Double precision floating point parameter. 35 | * 36 | * Generated from protobuf enum DOUBLE = 3; 37 | */ 38 | const DOUBLE = 3; 39 | /** 40 | * Boolean parameter. 41 | * 42 | * Generated from protobuf enum BOOLEAN = 4; 43 | */ 44 | const BOOLEAN = 4; 45 | /** 46 | * Record parameter. 47 | * 48 | * Generated from protobuf enum RECORD = 5; 49 | */ 50 | const RECORD = 5; 51 | /** 52 | * Page ID for a Google+ Page. 53 | * 54 | * Generated from protobuf enum PLUS_PAGE = 6; 55 | */ 56 | const PLUS_PAGE = 6; 57 | } 58 | 59 | -------------------------------------------------------------------------------- /src/Google/Cloud/BigQuery/DataTransfer/V1/DataSource_AuthorizationType.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Bigquery\Datatransfer\V1\DataSource\AuthorizationType 11 | */ 12 | class DataSource_AuthorizationType 13 | { 14 | /** 15 | * Type unspecified. 16 | * 17 | * Generated from protobuf enum AUTHORIZATION_TYPE_UNSPECIFIED = 0; 18 | */ 19 | const AUTHORIZATION_TYPE_UNSPECIFIED = 0; 20 | /** 21 | * Use OAuth 2 authorization codes that can be exchanged 22 | * for a refresh token on the backend. 23 | * 24 | * Generated from protobuf enum AUTHORIZATION_CODE = 1; 25 | */ 26 | const AUTHORIZATION_CODE = 1; 27 | /** 28 | * Return an authorization code for a given Google+ page that can then be 29 | * exchanged for a refresh token on the backend. 30 | * 31 | * Generated from protobuf enum GOOGLE_PLUS_AUTHORIZATION_CODE = 2; 32 | */ 33 | const GOOGLE_PLUS_AUTHORIZATION_CODE = 2; 34 | } 35 | 36 | -------------------------------------------------------------------------------- /src/Google/Cloud/BigQuery/DataTransfer/V1/DataSource_DataRefreshType.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Bigquery\Datatransfer\V1\DataSource\DataRefreshType 11 | */ 12 | class DataSource_DataRefreshType 13 | { 14 | /** 15 | * The data source won't support data auto refresh, which is default value. 16 | * 17 | * Generated from protobuf enum DATA_REFRESH_TYPE_UNSPECIFIED = 0; 18 | */ 19 | const DATA_REFRESH_TYPE_UNSPECIFIED = 0; 20 | /** 21 | * The data source supports data auto refresh, and runs will be scheduled 22 | * for the past few days. Does not allow custom values to be set for each 23 | * transfer config. 24 | * 25 | * Generated from protobuf enum SLIDING_WINDOW = 1; 26 | */ 27 | const SLIDING_WINDOW = 1; 28 | /** 29 | * The data source supports data auto refresh, and runs will be scheduled 30 | * for the past few days. Allows custom values to be set for each transfer 31 | * config. 32 | * 33 | * Generated from protobuf enum CUSTOM_SLIDING_WINDOW = 2; 34 | */ 35 | const CUSTOM_SLIDING_WINDOW = 2; 36 | } 37 | 38 | -------------------------------------------------------------------------------- /src/Google/Cloud/BigQuery/DataTransfer/V1/ListTransferRunsRequest_RunAttempt.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Bigquery\Datatransfer\V1\ListTransferRunsRequest\RunAttempt 11 | */ 12 | class ListTransferRunsRequest_RunAttempt 13 | { 14 | /** 15 | * All runs should be returned. 16 | * 17 | * Generated from protobuf enum RUN_ATTEMPT_UNSPECIFIED = 0; 18 | */ 19 | const RUN_ATTEMPT_UNSPECIFIED = 0; 20 | /** 21 | * Only latest run per day should be returned. 22 | * 23 | * Generated from protobuf enum LATEST = 1; 24 | */ 25 | const LATEST = 1; 26 | } 27 | 28 | -------------------------------------------------------------------------------- /src/Google/Cloud/BigQuery/DataTransfer/V1/TransferMessage_MessageSeverity.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Bigquery\Datatransfer\V1\TransferMessage\MessageSeverity 11 | */ 12 | class TransferMessage_MessageSeverity 13 | { 14 | /** 15 | * No severity specified. 16 | * 17 | * Generated from protobuf enum MESSAGE_SEVERITY_UNSPECIFIED = 0; 18 | */ 19 | const MESSAGE_SEVERITY_UNSPECIFIED = 0; 20 | /** 21 | * Informational message. 22 | * 23 | * Generated from protobuf enum INFO = 1; 24 | */ 25 | const INFO = 1; 26 | /** 27 | * Warning message. 28 | * 29 | * Generated from protobuf enum WARNING = 2; 30 | */ 31 | const WARNING = 2; 32 | /** 33 | * Error message. 34 | * 35 | * Generated from protobuf enum ERROR = 3; 36 | */ 37 | const ERROR = 3; 38 | } 39 | 40 | -------------------------------------------------------------------------------- /src/Google/Cloud/BigQuery/DataTransfer/V1/TransferState.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Bigquery\Datatransfer\V1\TransferState 11 | */ 12 | class TransferState 13 | { 14 | /** 15 | * State placeholder. 16 | * 17 | * Generated from protobuf enum TRANSFER_STATE_UNSPECIFIED = 0; 18 | */ 19 | const TRANSFER_STATE_UNSPECIFIED = 0; 20 | /** 21 | * Data transfer is scheduled and is waiting to be picked up by 22 | * data transfer backend. 23 | * 24 | * Generated from protobuf enum PENDING = 2; 25 | */ 26 | const PENDING = 2; 27 | /** 28 | * Data transfer is in progress. 29 | * 30 | * Generated from protobuf enum RUNNING = 3; 31 | */ 32 | const RUNNING = 3; 33 | /** 34 | * Data transfer completed successsfully. 35 | * 36 | * Generated from protobuf enum SUCCEEDED = 4; 37 | */ 38 | const SUCCEEDED = 4; 39 | /** 40 | * Data transfer failed. 41 | * 42 | * Generated from protobuf enum FAILED = 5; 43 | */ 44 | const FAILED = 5; 45 | /** 46 | * Data transfer is cancelled. 47 | * 48 | * Generated from protobuf enum CANCELLED = 6; 49 | */ 50 | const CANCELLED = 6; 51 | } 52 | 53 | -------------------------------------------------------------------------------- /src/Google/Cloud/BigQuery/DataTransfer/V1/TransferType.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Bigquery\Datatransfer\V1\TransferType 11 | */ 12 | class TransferType 13 | { 14 | /** 15 | * Invalid or Unknown transfer type placeholder. 16 | * 17 | * Generated from protobuf enum TRANSFER_TYPE_UNSPECIFIED = 0; 18 | */ 19 | const TRANSFER_TYPE_UNSPECIFIED = 0; 20 | /** 21 | * Batch data transfer. 22 | * 23 | * Generated from protobuf enum BATCH = 1; 24 | */ 25 | const BATCH = 1; 26 | /** 27 | * Streaming data transfer. Streaming data source currently doesn't 28 | * support multiple transfer configs per project. 29 | * 30 | * Generated from protobuf enum STREAMING = 2; 31 | */ 32 | const STREAMING = 2; 33 | } 34 | 35 | -------------------------------------------------------------------------------- /src/Google/Cloud/Bigtable/Admin/V2/AppProfile_MultiClusterRoutingUseAny.php: -------------------------------------------------------------------------------- 1 | google.bigtable.admin.v2.AppProfile.MultiClusterRoutingUseAny 18 | */ 19 | class AppProfile_MultiClusterRoutingUseAny extends \Google\Protobuf\Internal\Message 20 | { 21 | 22 | public function __construct() { 23 | \GPBMetadata\Google\Bigtable\Admin\V2\Instance::initOnce(); 24 | parent::__construct(); 25 | } 26 | 27 | } 28 | 29 | -------------------------------------------------------------------------------- /src/Google/Cloud/Bigtable/Admin/V2/CreateTableRequest_Split.php: -------------------------------------------------------------------------------- 1 | google.bigtable.admin.v2.CreateTableRequest.Split 15 | */ 16 | class CreateTableRequest_Split extends \Google\Protobuf\Internal\Message 17 | { 18 | /** 19 | * Row key to use as an initial tablet boundary. 20 | * 21 | * Generated from protobuf field bytes key = 1; 22 | */ 23 | private $key = ''; 24 | 25 | public function __construct() { 26 | \GPBMetadata\Google\Bigtable\Admin\V2\BigtableTableAdmin::initOnce(); 27 | parent::__construct(); 28 | } 29 | 30 | /** 31 | * Row key to use as an initial tablet boundary. 32 | * 33 | * Generated from protobuf field bytes key = 1; 34 | * @return string 35 | */ 36 | public function getKey() 37 | { 38 | return $this->key; 39 | } 40 | 41 | /** 42 | * Row key to use as an initial tablet boundary. 43 | * 44 | * Generated from protobuf field bytes key = 1; 45 | * @param string $var 46 | * @return $this 47 | */ 48 | public function setKey($var) 49 | { 50 | GPBUtil::checkString($var, False); 51 | $this->key = $var; 52 | 53 | return $this; 54 | } 55 | 56 | } 57 | 58 | -------------------------------------------------------------------------------- /src/Google/Cloud/Bigtable/Admin/V2/Instance_State.php: -------------------------------------------------------------------------------- 1 | Google\Bigtable\Admin\V2\Instance\State 11 | */ 12 | class Instance_State 13 | { 14 | /** 15 | * The state of the instance could not be determined. 16 | * 17 | * Generated from protobuf enum STATE_NOT_KNOWN = 0; 18 | */ 19 | const STATE_NOT_KNOWN = 0; 20 | /** 21 | * The instance has been successfully created and can serve requests 22 | * to its tables. 23 | * 24 | * Generated from protobuf enum READY = 1; 25 | */ 26 | const READY = 1; 27 | /** 28 | * The instance is currently being created, and may be destroyed 29 | * if the creation process encounters an error. 30 | * 31 | * Generated from protobuf enum CREATING = 2; 32 | */ 33 | const CREATING = 2; 34 | } 35 | 36 | -------------------------------------------------------------------------------- /src/Google/Cloud/Bigtable/Admin/V2/Instance_Type.php: -------------------------------------------------------------------------------- 1 | Google\Bigtable\Admin\V2\Instance\Type 11 | */ 12 | class Instance_Type 13 | { 14 | /** 15 | * The type of the instance is unspecified. If set when creating an 16 | * instance, a `PRODUCTION` instance will be created. If set when updating 17 | * an instance, the type will be left unchanged. 18 | * 19 | * Generated from protobuf enum TYPE_UNSPECIFIED = 0; 20 | */ 21 | const TYPE_UNSPECIFIED = 0; 22 | /** 23 | * An instance meant for production use. `serve_nodes` must be set 24 | * on the cluster. 25 | * 26 | * Generated from protobuf enum PRODUCTION = 1; 27 | */ 28 | const PRODUCTION = 1; 29 | /** 30 | * The instance is meant for development and testing purposes only; it has 31 | * no performance or uptime guarantees and is not covered by SLA. 32 | * After a development instance is created, it can be upgraded by 33 | * updating the instance to type `PRODUCTION`. An instance created 34 | * as a production instance cannot be changed to a development instance. 35 | * When creating a development instance, `serve_nodes` on the cluster must 36 | * not be set. 37 | * 38 | * Generated from protobuf enum DEVELOPMENT = 2; 39 | */ 40 | const DEVELOPMENT = 2; 41 | } 42 | 43 | -------------------------------------------------------------------------------- /src/Google/Cloud/Bigtable/Admin/V2/Snapshot_State.php: -------------------------------------------------------------------------------- 1 | Google\Bigtable\Admin\V2\Snapshot\State 11 | */ 12 | class Snapshot_State 13 | { 14 | /** 15 | * The state of the snapshot could not be determined. 16 | * 17 | * Generated from protobuf enum STATE_NOT_KNOWN = 0; 18 | */ 19 | const STATE_NOT_KNOWN = 0; 20 | /** 21 | * The snapshot has been successfully created and can serve all requests. 22 | * 23 | * Generated from protobuf enum READY = 1; 24 | */ 25 | const READY = 1; 26 | /** 27 | * The snapshot is currently being created, and may be destroyed if the 28 | * creation process encounters an error. A snapshot may not be restored to a 29 | * table while it is being created. 30 | * 31 | * Generated from protobuf enum CREATING = 2; 32 | */ 33 | const CREATING = 2; 34 | } 35 | 36 | -------------------------------------------------------------------------------- /src/Google/Cloud/Bigtable/Admin/V2/StorageType.php: -------------------------------------------------------------------------------- 1 | Google\Bigtable\Admin\V2\StorageType 11 | */ 12 | class StorageType 13 | { 14 | /** 15 | * The user did not specify a storage type. 16 | * 17 | * Generated from protobuf enum STORAGE_TYPE_UNSPECIFIED = 0; 18 | */ 19 | const STORAGE_TYPE_UNSPECIFIED = 0; 20 | /** 21 | * Flash (SSD) storage should be used. 22 | * 23 | * Generated from protobuf enum SSD = 1; 24 | */ 25 | const SSD = 1; 26 | /** 27 | * Magnetic drive (HDD) storage should be used. 28 | * 29 | * Generated from protobuf enum HDD = 2; 30 | */ 31 | const HDD = 2; 32 | } 33 | 34 | -------------------------------------------------------------------------------- /src/Google/Cloud/Bigtable/Admin/V2/Table_TimestampGranularity.php: -------------------------------------------------------------------------------- 1 | Google\Bigtable\Admin\V2\Table\TimestampGranularity 12 | */ 13 | class Table_TimestampGranularity 14 | { 15 | /** 16 | * The user did not specify a granularity. Should not be returned. 17 | * When specified during table creation, MILLIS will be used. 18 | * 19 | * Generated from protobuf enum TIMESTAMP_GRANULARITY_UNSPECIFIED = 0; 20 | */ 21 | const TIMESTAMP_GRANULARITY_UNSPECIFIED = 0; 22 | /** 23 | * The table keeps data versioned at a granularity of 1ms. 24 | * 25 | * Generated from protobuf enum MILLIS = 1; 26 | */ 27 | const MILLIS = 1; 28 | } 29 | 30 | -------------------------------------------------------------------------------- /src/Google/Cloud/Bigtable/Admin/V2/Table_View.php: -------------------------------------------------------------------------------- 1 | Google\Bigtable\Admin\V2\Table\View 11 | */ 12 | class Table_View 13 | { 14 | /** 15 | * Uses the default view for each method as documented in its request. 16 | * 17 | * Generated from protobuf enum VIEW_UNSPECIFIED = 0; 18 | */ 19 | const VIEW_UNSPECIFIED = 0; 20 | /** 21 | * Only populates `name`. 22 | * 23 | * Generated from protobuf enum NAME_ONLY = 1; 24 | */ 25 | const NAME_ONLY = 1; 26 | /** 27 | * Only populates `name` and fields related to the table's schema. 28 | * 29 | * Generated from protobuf enum SCHEMA_VIEW = 2; 30 | */ 31 | const SCHEMA_VIEW = 2; 32 | /** 33 | * Only populates `name` and fields related to the table's 34 | * replication state. 35 | * 36 | * Generated from protobuf enum REPLICATION_VIEW = 3; 37 | */ 38 | const REPLICATION_VIEW = 3; 39 | /** 40 | * Populates all fields. 41 | * 42 | * Generated from protobuf enum FULL = 4; 43 | */ 44 | const FULL = 4; 45 | } 46 | 47 | -------------------------------------------------------------------------------- /src/Google/Cloud/Bigtable/Admin/V2/UpdateAppProfileMetadata.php: -------------------------------------------------------------------------------- 1 | google.bigtable.admin.v2.UpdateAppProfileMetadata 15 | */ 16 | class UpdateAppProfileMetadata extends \Google\Protobuf\Internal\Message 17 | { 18 | 19 | public function __construct() { 20 | \GPBMetadata\Google\Bigtable\Admin\V2\BigtableInstanceAdmin::initOnce(); 21 | parent::__construct(); 22 | } 23 | 24 | } 25 | 26 | -------------------------------------------------------------------------------- /src/Google/Cloud/Bigtable/V2/MutateRowResponse.php: -------------------------------------------------------------------------------- 1 | google.bigtable.v2.MutateRowResponse 15 | */ 16 | class MutateRowResponse extends \Google\Protobuf\Internal\Message 17 | { 18 | 19 | public function __construct() { 20 | \GPBMetadata\Google\Bigtable\V2\Bigtable::initOnce(); 21 | parent::__construct(); 22 | } 23 | 24 | } 25 | 26 | -------------------------------------------------------------------------------- /src/Google/Cloud/Bigtable/V2/Mutation_DeleteFromRow.php: -------------------------------------------------------------------------------- 1 | google.bigtable.v2.Mutation.DeleteFromRow 15 | */ 16 | class Mutation_DeleteFromRow extends \Google\Protobuf\Internal\Message 17 | { 18 | 19 | public function __construct() { 20 | \GPBMetadata\Google\Bigtable\V2\Data::initOnce(); 21 | parent::__construct(); 22 | } 23 | 24 | } 25 | 26 | -------------------------------------------------------------------------------- /src/Google/Cloud/Container/V1/ClientCertificateConfig.php: -------------------------------------------------------------------------------- 1 | google.container.v1.ClientCertificateConfig 15 | */ 16 | class ClientCertificateConfig extends \Google\Protobuf\Internal\Message 17 | { 18 | /** 19 | * Issue a client certificate. 20 | * 21 | * Generated from protobuf field bool issue_client_certificate = 1; 22 | */ 23 | private $issue_client_certificate = false; 24 | 25 | public function __construct() { 26 | \GPBMetadata\Google\Container\V1\ClusterService::initOnce(); 27 | parent::__construct(); 28 | } 29 | 30 | /** 31 | * Issue a client certificate. 32 | * 33 | * Generated from protobuf field bool issue_client_certificate = 1; 34 | * @return bool 35 | */ 36 | public function getIssueClientCertificate() 37 | { 38 | return $this->issue_client_certificate; 39 | } 40 | 41 | /** 42 | * Issue a client certificate. 43 | * 44 | * Generated from protobuf field bool issue_client_certificate = 1; 45 | * @param bool $var 46 | * @return $this 47 | */ 48 | public function setIssueClientCertificate($var) 49 | { 50 | GPBUtil::checkBool($var); 51 | $this->issue_client_certificate = $var; 52 | 53 | return $this; 54 | } 55 | 56 | } 57 | 58 | -------------------------------------------------------------------------------- /src/Google/Cloud/Container/V1/KubernetesDashboard.php: -------------------------------------------------------------------------------- 1 | google.container.v1.KubernetesDashboard 15 | */ 16 | class KubernetesDashboard extends \Google\Protobuf\Internal\Message 17 | { 18 | /** 19 | * Whether the Kubernetes Dashboard is enabled for this cluster. 20 | * 21 | * Generated from protobuf field bool disabled = 1; 22 | */ 23 | private $disabled = false; 24 | 25 | public function __construct() { 26 | \GPBMetadata\Google\Container\V1\ClusterService::initOnce(); 27 | parent::__construct(); 28 | } 29 | 30 | /** 31 | * Whether the Kubernetes Dashboard is enabled for this cluster. 32 | * 33 | * Generated from protobuf field bool disabled = 1; 34 | * @return bool 35 | */ 36 | public function getDisabled() 37 | { 38 | return $this->disabled; 39 | } 40 | 41 | /** 42 | * Whether the Kubernetes Dashboard is enabled for this cluster. 43 | * 44 | * Generated from protobuf field bool disabled = 1; 45 | * @param bool $var 46 | * @return $this 47 | */ 48 | public function setDisabled($var) 49 | { 50 | GPBUtil::checkBool($var); 51 | $this->disabled = $var; 52 | 53 | return $this; 54 | } 55 | 56 | } 57 | 58 | -------------------------------------------------------------------------------- /src/Google/Cloud/Container/V1/NetworkPolicy_Provider.php: -------------------------------------------------------------------------------- 1 | Google\Container\V1\NetworkPolicy\Provider 11 | */ 12 | class NetworkPolicy_Provider 13 | { 14 | /** 15 | * Not set 16 | * 17 | * Generated from protobuf enum PROVIDER_UNSPECIFIED = 0; 18 | */ 19 | const PROVIDER_UNSPECIFIED = 0; 20 | /** 21 | * Tigera (Calico Felix). 22 | * 23 | * Generated from protobuf enum CALICO = 1; 24 | */ 25 | const CALICO = 1; 26 | } 27 | 28 | -------------------------------------------------------------------------------- /src/Google/Cloud/Container/V1/Operation_Status.php: -------------------------------------------------------------------------------- 1 | Google\Container\V1\Operation\Status 11 | */ 12 | class Operation_Status 13 | { 14 | /** 15 | * Not set. 16 | * 17 | * Generated from protobuf enum STATUS_UNSPECIFIED = 0; 18 | */ 19 | const STATUS_UNSPECIFIED = 0; 20 | /** 21 | * The operation has been created. 22 | * 23 | * Generated from protobuf enum PENDING = 1; 24 | */ 25 | const PENDING = 1; 26 | /** 27 | * The operation is currently running. 28 | * 29 | * Generated from protobuf enum RUNNING = 2; 30 | */ 31 | const RUNNING = 2; 32 | /** 33 | * The operation is done, either cancelled or completed. 34 | * 35 | * Generated from protobuf enum DONE = 3; 36 | */ 37 | const DONE = 3; 38 | /** 39 | * The operation is aborting. 40 | * 41 | * Generated from protobuf enum ABORTING = 4; 42 | */ 43 | const ABORTING = 4; 44 | } 45 | 46 | -------------------------------------------------------------------------------- /src/Google/Cloud/Container/V1/SetMasterAuthRequest_Action.php: -------------------------------------------------------------------------------- 1 | Google\Container\V1\SetMasterAuthRequest\Action 11 | */ 12 | class SetMasterAuthRequest_Action 13 | { 14 | /** 15 | * Operation is unknown and will error out. 16 | * 17 | * Generated from protobuf enum UNKNOWN = 0; 18 | */ 19 | const UNKNOWN = 0; 20 | /** 21 | * Set the password to a user generated value. 22 | * 23 | * Generated from protobuf enum SET_PASSWORD = 1; 24 | */ 25 | const SET_PASSWORD = 1; 26 | /** 27 | * Generate a new password and set it to that. 28 | * 29 | * Generated from protobuf enum GENERATE_PASSWORD = 2; 30 | */ 31 | const GENERATE_PASSWORD = 2; 32 | /** 33 | * Set the username. If an empty username is provided, basic authentication 34 | * is disabled for the cluster. If a non-empty username is provided, basic 35 | * authentication is enabled, with either a provided password or a generated 36 | * one. 37 | * 38 | * Generated from protobuf enum SET_USERNAME = 3; 39 | */ 40 | const SET_USERNAME = 3; 41 | } 42 | 43 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dataproc/V1/ClusterOperationStatus_State.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Dataproc\V1\ClusterOperationStatus\State 11 | */ 12 | class ClusterOperationStatus_State 13 | { 14 | /** 15 | * Unused. 16 | * 17 | * Generated from protobuf enum UNKNOWN = 0; 18 | */ 19 | const UNKNOWN = 0; 20 | /** 21 | * The operation has been created. 22 | * 23 | * Generated from protobuf enum PENDING = 1; 24 | */ 25 | const PENDING = 1; 26 | /** 27 | * The operation is running. 28 | * 29 | * Generated from protobuf enum RUNNING = 2; 30 | */ 31 | const RUNNING = 2; 32 | /** 33 | * The operation is done; either cancelled or completed. 34 | * 35 | * Generated from protobuf enum DONE = 3; 36 | */ 37 | const DONE = 3; 38 | } 39 | 40 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dataproc/V1/ClusterStatus_State.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Dataproc\V1\ClusterStatus\State 11 | */ 12 | class ClusterStatus_State 13 | { 14 | /** 15 | * The cluster state is unknown. 16 | * 17 | * Generated from protobuf enum UNKNOWN = 0; 18 | */ 19 | const UNKNOWN = 0; 20 | /** 21 | * The cluster is being created and set up. It is not ready for use. 22 | * 23 | * Generated from protobuf enum CREATING = 1; 24 | */ 25 | const CREATING = 1; 26 | /** 27 | * The cluster is currently running and healthy. It is ready for use. 28 | * 29 | * Generated from protobuf enum RUNNING = 2; 30 | */ 31 | const RUNNING = 2; 32 | /** 33 | * The cluster encountered an error. It is not ready for use. 34 | * 35 | * Generated from protobuf enum ERROR = 3; 36 | */ 37 | const ERROR = 3; 38 | /** 39 | * The cluster is being deleted. It cannot be used. 40 | * 41 | * Generated from protobuf enum DELETING = 4; 42 | */ 43 | const DELETING = 4; 44 | /** 45 | * The cluster is being updated. It continues to accept and process jobs. 46 | * 47 | * Generated from protobuf enum UPDATING = 5; 48 | */ 49 | const UPDATING = 5; 50 | } 51 | 52 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dataproc/V1/ClusterStatus_Substate.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Dataproc\V1\ClusterStatus\Substate 9 | */ 10 | class ClusterStatus_Substate 11 | { 12 | /** 13 | * Generated from protobuf enum UNSPECIFIED = 0; 14 | */ 15 | const UNSPECIFIED = 0; 16 | /** 17 | * The cluster is known to be in an unhealthy state 18 | * (for example, critical daemons are not running or HDFS capacity is 19 | * exhausted). 20 | * Applies to RUNNING state. 21 | * 22 | * Generated from protobuf enum UNHEALTHY = 1; 23 | */ 24 | const UNHEALTHY = 1; 25 | /** 26 | * The agent-reported status is out of date (may occur if 27 | * Cloud Dataproc loses communication with Agent). 28 | * Applies to RUNNING state. 29 | * 30 | * Generated from protobuf enum STALE_STATUS = 2; 31 | */ 32 | const STALE_STATUS = 2; 33 | } 34 | 35 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dataproc/V1/JobStatus_Substate.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Dataproc\V1\JobStatus\Substate 9 | */ 10 | class JobStatus_Substate 11 | { 12 | /** 13 | * Generated from protobuf enum UNSPECIFIED = 0; 14 | */ 15 | const UNSPECIFIED = 0; 16 | /** 17 | * The Job is submitted to the agent. 18 | * Applies to RUNNING state. 19 | * 20 | * Generated from protobuf enum SUBMITTED = 1; 21 | */ 22 | const SUBMITTED = 1; 23 | /** 24 | * The Job has been received and is awaiting execution (it may be waiting 25 | * for a condition to be met). See the "details" field for the reason for 26 | * the delay. 27 | * Applies to RUNNING state. 28 | * 29 | * Generated from protobuf enum QUEUED = 2; 30 | */ 31 | const QUEUED = 2; 32 | /** 33 | * The agent-reported status is out of date, which may be caused by a 34 | * loss of communication between the agent and Cloud Dataproc. If the 35 | * agent does not send a timely update, the job will fail. 36 | * Applies to RUNNING state. 37 | * 38 | * Generated from protobuf enum STALE_STATUS = 3; 39 | */ 40 | const STALE_STATUS = 3; 41 | } 42 | 43 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dataproc/V1/ListJobsRequest_JobStateMatcher.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Dataproc\V1\ListJobsRequest\JobStateMatcher 11 | */ 12 | class ListJobsRequest_JobStateMatcher 13 | { 14 | /** 15 | * Match all jobs, regardless of state. 16 | * 17 | * Generated from protobuf enum ALL = 0; 18 | */ 19 | const ALL = 0; 20 | /** 21 | * Only match jobs in non-terminal states: PENDING, RUNNING, or 22 | * CANCEL_PENDING. 23 | * 24 | * Generated from protobuf enum ACTIVE = 1; 25 | */ 26 | const ACTIVE = 1; 27 | /** 28 | * Only match jobs in terminal states: CANCELLED, DONE, or ERROR. 29 | * 30 | * Generated from protobuf enum NON_ACTIVE = 2; 31 | */ 32 | const NON_ACTIVE = 2; 33 | } 34 | 35 | -------------------------------------------------------------------------------- /src/Google/Cloud/Debugger/V2/Breakpoint_Action.php: -------------------------------------------------------------------------------- 1 | Google\Devtools\Clouddebugger\V2\Breakpoint\Action 12 | */ 13 | class Breakpoint_Action 14 | { 15 | /** 16 | * Capture stack frame and variables and update the breakpoint. 17 | * The data is only captured once. After that the breakpoint is set 18 | * in a final state. 19 | * 20 | * Generated from protobuf enum CAPTURE = 0; 21 | */ 22 | const CAPTURE = 0; 23 | /** 24 | * Log each breakpoint hit. The breakpoint remains active until 25 | * deleted or expired. 26 | * 27 | * Generated from protobuf enum LOG = 1; 28 | */ 29 | const LOG = 1; 30 | } 31 | 32 | -------------------------------------------------------------------------------- /src/Google/Cloud/Debugger/V2/Breakpoint_LogLevel.php: -------------------------------------------------------------------------------- 1 | Google\Devtools\Clouddebugger\V2\Breakpoint\LogLevel 11 | */ 12 | class Breakpoint_LogLevel 13 | { 14 | /** 15 | * Information log message. 16 | * 17 | * Generated from protobuf enum INFO = 0; 18 | */ 19 | const INFO = 0; 20 | /** 21 | * Warning log message. 22 | * 23 | * Generated from protobuf enum WARNING = 1; 24 | */ 25 | const WARNING = 1; 26 | /** 27 | * Error log message. 28 | * 29 | * Generated from protobuf enum ERROR = 2; 30 | */ 31 | const ERROR = 2; 32 | } 33 | 34 | -------------------------------------------------------------------------------- /src/Google/Cloud/Debugger/V2/UpdateActiveBreakpointResponse.php: -------------------------------------------------------------------------------- 1 | google.devtools.clouddebugger.v2.UpdateActiveBreakpointResponse 16 | */ 17 | class UpdateActiveBreakpointResponse extends \Google\Protobuf\Internal\Message 18 | { 19 | 20 | public function __construct() { 21 | \GPBMetadata\Google\Devtools\Clouddebugger\V2\Controller::initOnce(); 22 | parent::__construct(); 23 | } 24 | 25 | } 26 | 27 | -------------------------------------------------------------------------------- /src/Google/Cloud/DevTools/Source/V1/AliasContext_Kind.php: -------------------------------------------------------------------------------- 1 | Google\Devtools\Source\V1\AliasContext\Kind 11 | */ 12 | class AliasContext_Kind 13 | { 14 | /** 15 | * Do not use. 16 | * 17 | * Generated from protobuf enum ANY = 0; 18 | */ 19 | const ANY = 0; 20 | /** 21 | * Git tag 22 | * 23 | * Generated from protobuf enum FIXED = 1; 24 | */ 25 | const FIXED = 1; 26 | /** 27 | * Git branch 28 | * 29 | * Generated from protobuf enum MOVABLE = 2; 30 | */ 31 | const MOVABLE = 2; 32 | /** 33 | * OTHER is used to specify non-standard aliases, those not of the kinds 34 | * above. For example, if a Git repo has a ref named "refs/foo/bar", it 35 | * is considered to be of kind OTHER. 36 | * 37 | * Generated from protobuf enum OTHER = 4; 38 | */ 39 | const OTHER = 4; 40 | } 41 | 42 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dialogflow/V2/Agent_MatchMode.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Dialogflow\V2\Agent\MatchMode 11 | */ 12 | class Agent_MatchMode 13 | { 14 | /** 15 | * Not specified. 16 | * 17 | * Generated from protobuf enum MATCH_MODE_UNSPECIFIED = 0; 18 | */ 19 | const MATCH_MODE_UNSPECIFIED = 0; 20 | /** 21 | * Best for agents with a small number of examples in intents and/or wide 22 | * use of templates syntax and composite entities. 23 | * 24 | * Generated from protobuf enum MATCH_MODE_HYBRID = 1; 25 | */ 26 | const MATCH_MODE_HYBRID = 1; 27 | /** 28 | * Can be used for agents with a large number of examples in intents, 29 | * especially the ones using @sys.any or very large developer entities. 30 | * 31 | * Generated from protobuf enum MATCH_MODE_ML_ONLY = 2; 32 | */ 33 | const MATCH_MODE_ML_ONLY = 2; 34 | } 35 | 36 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dialogflow/V2/EntityType_AutoExpansionMode.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Dialogflow\V2\EntityType\AutoExpansionMode 13 | */ 14 | class EntityType_AutoExpansionMode 15 | { 16 | /** 17 | * Auto expansion disabled for the entity. 18 | * 19 | * Generated from protobuf enum AUTO_EXPANSION_MODE_UNSPECIFIED = 0; 20 | */ 21 | const AUTO_EXPANSION_MODE_UNSPECIFIED = 0; 22 | /** 23 | * Allows an agent to recognize values that have not been explicitly 24 | * listed in the entity. 25 | * 26 | * Generated from protobuf enum AUTO_EXPANSION_MODE_DEFAULT = 1; 27 | */ 28 | const AUTO_EXPANSION_MODE_DEFAULT = 1; 29 | } 30 | 31 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dialogflow/V2/EntityType_Kind.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Dialogflow\V2\EntityType\Kind 11 | */ 12 | class EntityType_Kind 13 | { 14 | /** 15 | * Not specified. This value should be never used. 16 | * 17 | * Generated from protobuf enum KIND_UNSPECIFIED = 0; 18 | */ 19 | const KIND_UNSPECIFIED = 0; 20 | /** 21 | * Map entity types allow mapping of a group of synonyms to a canonical 22 | * value. 23 | * 24 | * Generated from protobuf enum KIND_MAP = 1; 25 | */ 26 | const KIND_MAP = 1; 27 | /** 28 | * List entity types contain a set of entries that do not map to canonical 29 | * values. However, list entity types can contain references to other entity 30 | * types (with or without aliases). 31 | * 32 | * Generated from protobuf enum KIND_LIST = 2; 33 | */ 34 | const KIND_LIST = 2; 35 | } 36 | 37 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dialogflow/V2/IntentView.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Dialogflow\V2\IntentView 13 | */ 14 | class IntentView 15 | { 16 | /** 17 | * Training phrases field is not populated in the response. 18 | * 19 | * Generated from protobuf enum INTENT_VIEW_UNSPECIFIED = 0; 20 | */ 21 | const INTENT_VIEW_UNSPECIFIED = 0; 22 | /** 23 | * All fields are populated. 24 | * 25 | * Generated from protobuf enum INTENT_VIEW_FULL = 1; 26 | */ 27 | const INTENT_VIEW_FULL = 1; 28 | } 29 | 30 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dialogflow/V2/Intent_Message_BasicCard_Button_OpenUriAction.php: -------------------------------------------------------------------------------- 1 | google.cloud.dialogflow.v2.Intent.Message.BasicCard.Button.OpenUriAction 15 | */ 16 | class Intent_Message_BasicCard_Button_OpenUriAction extends \Google\Protobuf\Internal\Message 17 | { 18 | /** 19 | * Required. The HTTP or HTTPS scheme URI. 20 | * 21 | * Generated from protobuf field string uri = 1; 22 | */ 23 | private $uri = ''; 24 | 25 | public function __construct() { 26 | \GPBMetadata\Google\Cloud\Dialogflow\V2\Intent::initOnce(); 27 | parent::__construct(); 28 | } 29 | 30 | /** 31 | * Required. The HTTP or HTTPS scheme URI. 32 | * 33 | * Generated from protobuf field string uri = 1; 34 | * @return string 35 | */ 36 | public function getUri() 37 | { 38 | return $this->uri; 39 | } 40 | 41 | /** 42 | * Required. The HTTP or HTTPS scheme URI. 43 | * 44 | * Generated from protobuf field string uri = 1; 45 | * @param string $var 46 | * @return $this 47 | */ 48 | public function setUri($var) 49 | { 50 | GPBUtil::checkString($var, True); 51 | $this->uri = $var; 52 | 53 | return $this; 54 | } 55 | 56 | } 57 | 58 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dialogflow/V2/Intent_Message_Suggestion.php: -------------------------------------------------------------------------------- 1 | google.cloud.dialogflow.v2.Intent.Message.Suggestion 16 | */ 17 | class Intent_Message_Suggestion extends \Google\Protobuf\Internal\Message 18 | { 19 | /** 20 | * Required. The text shown the in the suggestion chip. 21 | * 22 | * Generated from protobuf field string title = 1; 23 | */ 24 | private $title = ''; 25 | 26 | public function __construct() { 27 | \GPBMetadata\Google\Cloud\Dialogflow\V2\Intent::initOnce(); 28 | parent::__construct(); 29 | } 30 | 31 | /** 32 | * Required. The text shown the in the suggestion chip. 33 | * 34 | * Generated from protobuf field string title = 1; 35 | * @return string 36 | */ 37 | public function getTitle() 38 | { 39 | return $this->title; 40 | } 41 | 42 | /** 43 | * Required. The text shown the in the suggestion chip. 44 | * 45 | * Generated from protobuf field string title = 1; 46 | * @param string $var 47 | * @return $this 48 | */ 49 | public function setTitle($var) 50 | { 51 | GPBUtil::checkString($var, True); 52 | $this->title = $var; 53 | 54 | return $this; 55 | } 56 | 57 | } 58 | 59 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dialogflow/V2/Intent_Message_Text.php: -------------------------------------------------------------------------------- 1 | google.cloud.dialogflow.v2.Intent.Message.Text 15 | */ 16 | class Intent_Message_Text extends \Google\Protobuf\Internal\Message 17 | { 18 | /** 19 | * Optional. The collection of the agent's responses. 20 | * 21 | * Generated from protobuf field repeated string text = 1; 22 | */ 23 | private $text; 24 | 25 | public function __construct() { 26 | \GPBMetadata\Google\Cloud\Dialogflow\V2\Intent::initOnce(); 27 | parent::__construct(); 28 | } 29 | 30 | /** 31 | * Optional. The collection of the agent's responses. 32 | * 33 | * Generated from protobuf field repeated string text = 1; 34 | * @return \Google\Protobuf\Internal\RepeatedField 35 | */ 36 | public function getText() 37 | { 38 | return $this->text; 39 | } 40 | 41 | /** 42 | * Optional. The collection of the agent's responses. 43 | * 44 | * Generated from protobuf field repeated string text = 1; 45 | * @param string[]|\Google\Protobuf\Internal\RepeatedField $var 46 | * @return $this 47 | */ 48 | public function setText($var) 49 | { 50 | $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::STRING); 51 | $this->text = $arr; 52 | 53 | return $this; 54 | } 55 | 56 | } 57 | 58 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dialogflow/V2/Intent_TrainingPhrase_Type.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Dialogflow\V2\Intent\TrainingPhrase\Type 11 | */ 12 | class Intent_TrainingPhrase_Type 13 | { 14 | /** 15 | * Not specified. This value should never be used. 16 | * 17 | * Generated from protobuf enum TYPE_UNSPECIFIED = 0; 18 | */ 19 | const TYPE_UNSPECIFIED = 0; 20 | /** 21 | * Examples do not contain @-prefixed entity type names, but example parts 22 | * can be annotated with entity types. 23 | * 24 | * Generated from protobuf enum EXAMPLE = 1; 25 | */ 26 | const EXAMPLE = 1; 27 | /** 28 | * Templates are not annotated with entity types, but they can contain 29 | * @-prefixed entity type names as substrings. 30 | * 31 | * Generated from protobuf enum TEMPLATE = 2; 32 | */ 33 | const TEMPLATE = 2; 34 | } 35 | 36 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dialogflow/V2/Intent_WebhookState.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Dialogflow\V2\Intent\WebhookState 11 | */ 12 | class Intent_WebhookState 13 | { 14 | /** 15 | * Webhook is disabled in the agent and in the intent. 16 | * 17 | * Generated from protobuf enum WEBHOOK_STATE_UNSPECIFIED = 0; 18 | */ 19 | const WEBHOOK_STATE_UNSPECIFIED = 0; 20 | /** 21 | * Webhook is enabled in the agent and in the intent. 22 | * 23 | * Generated from protobuf enum WEBHOOK_STATE_ENABLED = 1; 24 | */ 25 | const WEBHOOK_STATE_ENABLED = 1; 26 | /** 27 | * Webhook is enabled in the agent and in the intent. Also, each slot 28 | * filling prompt is forwarded to the webhook. 29 | * 30 | * Generated from protobuf enum WEBHOOK_STATE_ENABLED_FOR_SLOT_FILLING = 2; 31 | */ 32 | const WEBHOOK_STATE_ENABLED_FOR_SLOT_FILLING = 2; 33 | } 34 | 35 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dialogflow/V2/SessionEntityType_EntityOverrideMode.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Dialogflow\V2\SessionEntityType\EntityOverrideMode 11 | */ 12 | class SessionEntityType_EntityOverrideMode 13 | { 14 | /** 15 | * Not specified. This value should be never used. 16 | * 17 | * Generated from protobuf enum ENTITY_OVERRIDE_MODE_UNSPECIFIED = 0; 18 | */ 19 | const ENTITY_OVERRIDE_MODE_UNSPECIFIED = 0; 20 | /** 21 | * The collection of session entities overrides the collection of entities 22 | * in the corresponding developer entity type. 23 | * 24 | * Generated from protobuf enum ENTITY_OVERRIDE_MODE_OVERRIDE = 1; 25 | */ 26 | const ENTITY_OVERRIDE_MODE_OVERRIDE = 1; 27 | /** 28 | * The collection of session entities extends the collection of entities in 29 | * the corresponding developer entity type. 30 | * Calls to `ListSessionEntityTypes`, `GetSessionEntityType`, 31 | * `CreateSessionEntityType` and `UpdateSessionEntityType` return the full 32 | * collection of entities from the developer entity type in the agent's 33 | * default language and the session entity type. 34 | * 35 | * Generated from protobuf enum ENTITY_OVERRIDE_MODE_SUPPLEMENT = 2; 36 | */ 37 | const ENTITY_OVERRIDE_MODE_SUPPLEMENT = 2; 38 | } 39 | 40 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dialogflow/V2/StreamingRecognitionResult_MessageType.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Dialogflow\V2\StreamingRecognitionResult\MessageType 11 | */ 12 | class StreamingRecognitionResult_MessageType 13 | { 14 | /** 15 | * Not specified. Should never be used. 16 | * 17 | * Generated from protobuf enum MESSAGE_TYPE_UNSPECIFIED = 0; 18 | */ 19 | const MESSAGE_TYPE_UNSPECIFIED = 0; 20 | /** 21 | * Message contains a (possibly partial) transcript. 22 | * 23 | * Generated from protobuf enum TRANSCRIPT = 1; 24 | */ 25 | const TRANSCRIPT = 1; 26 | /** 27 | * Event indicates that the server has detected the end of the user's speech 28 | * utterance and expects no additional speech. Therefore, the server will 29 | * not process additional audio (although it may subsequently return 30 | * additional results). The client should stop sending additional audio 31 | * data, half-close the gRPC connection, and wait for any additional results 32 | * until the server closes the gRPC connection. This message is only sent if 33 | * `single_utterance` was set to `true`, and is not used otherwise. 34 | * 35 | * Generated from protobuf enum END_OF_SINGLE_UTTERANCE = 2; 36 | */ 37 | const END_OF_SINGLE_UTTERANCE = 2; 38 | } 39 | 40 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dlp/V2/Action_PublishSummaryToCscc.php: -------------------------------------------------------------------------------- 1 | google.privacy.dlp.v2.Action.PublishSummaryToCscc 24 | */ 25 | class Action_PublishSummaryToCscc extends \Google\Protobuf\Internal\Message 26 | { 27 | 28 | public function __construct() { 29 | \GPBMetadata\Google\Privacy\Dlp\V2\Dlp::initOnce(); 30 | parent::__construct(); 31 | } 32 | 33 | } 34 | 35 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dlp/V2/BigQueryOptions_SampleMethod.php: -------------------------------------------------------------------------------- 1 | Google\Privacy\Dlp\V2\BigQueryOptions\SampleMethod 13 | */ 14 | class BigQueryOptions_SampleMethod 15 | { 16 | /** 17 | * Generated from protobuf enum SAMPLE_METHOD_UNSPECIFIED = 0; 18 | */ 19 | const SAMPLE_METHOD_UNSPECIFIED = 0; 20 | /** 21 | * Scan from the top (default). 22 | * 23 | * Generated from protobuf enum TOP = 1; 24 | */ 25 | const TOP = 1; 26 | /** 27 | * Randomly pick the row to start scanning. The scanned rows are contiguous. 28 | * 29 | * Generated from protobuf enum RANDOM_START = 2; 30 | */ 31 | const RANDOM_START = 2; 32 | } 33 | 34 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dlp/V2/ByteContentItem_BytesType.php: -------------------------------------------------------------------------------- 1 | Google\Privacy\Dlp\V2\ByteContentItem\BytesType 9 | */ 10 | class ByteContentItem_BytesType 11 | { 12 | /** 13 | * Generated from protobuf enum BYTES_TYPE_UNSPECIFIED = 0; 14 | */ 15 | const BYTES_TYPE_UNSPECIFIED = 0; 16 | /** 17 | * Generated from protobuf enum IMAGE = 6; 18 | */ 19 | const IMAGE = 6; 20 | /** 21 | * Generated from protobuf enum IMAGE_JPEG = 1; 22 | */ 23 | const IMAGE_JPEG = 1; 24 | /** 25 | * Generated from protobuf enum IMAGE_BMP = 2; 26 | */ 27 | const IMAGE_BMP = 2; 28 | /** 29 | * Generated from protobuf enum IMAGE_PNG = 3; 30 | */ 31 | const IMAGE_PNG = 3; 32 | /** 33 | * Generated from protobuf enum IMAGE_SVG = 4; 34 | */ 35 | const IMAGE_SVG = 4; 36 | /** 37 | * Generated from protobuf enum TEXT_UTF8 = 5; 38 | */ 39 | const TEXT_UTF8 = 5; 40 | } 41 | 42 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dlp/V2/CancelDlpJobRequest.php: -------------------------------------------------------------------------------- 1 | google.privacy.dlp.v2.CancelDlpJobRequest 15 | */ 16 | class CancelDlpJobRequest extends \Google\Protobuf\Internal\Message 17 | { 18 | /** 19 | * The name of the DlpJob resource to be cancelled. 20 | * 21 | * Generated from protobuf field string name = 1; 22 | */ 23 | private $name = ''; 24 | 25 | public function __construct() { 26 | \GPBMetadata\Google\Privacy\Dlp\V2\Dlp::initOnce(); 27 | parent::__construct(); 28 | } 29 | 30 | /** 31 | * The name of the DlpJob resource to be cancelled. 32 | * 33 | * Generated from protobuf field string name = 1; 34 | * @return string 35 | */ 36 | public function getName() 37 | { 38 | return $this->name; 39 | } 40 | 41 | /** 42 | * The name of the DlpJob resource to be cancelled. 43 | * 44 | * Generated from protobuf field string name = 1; 45 | * @param string $var 46 | * @return $this 47 | */ 48 | public function setName($var) 49 | { 50 | GPBUtil::checkString($var, True); 51 | $this->name = $var; 52 | 53 | return $this; 54 | } 55 | 56 | } 57 | 58 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dlp/V2/CharsToIgnore_CommonCharsToIgnore.php: -------------------------------------------------------------------------------- 1 | Google\Privacy\Dlp\V2\CharsToIgnore\CommonCharsToIgnore 9 | */ 10 | class CharsToIgnore_CommonCharsToIgnore 11 | { 12 | /** 13 | * Generated from protobuf enum COMMON_CHARS_TO_IGNORE_UNSPECIFIED = 0; 14 | */ 15 | const COMMON_CHARS_TO_IGNORE_UNSPECIFIED = 0; 16 | /** 17 | * 0-9 18 | * 19 | * Generated from protobuf enum NUMERIC = 1; 20 | */ 21 | const NUMERIC = 1; 22 | /** 23 | * A-Z 24 | * 25 | * Generated from protobuf enum ALPHA_UPPER_CASE = 2; 26 | */ 27 | const ALPHA_UPPER_CASE = 2; 28 | /** 29 | * a-z 30 | * 31 | * Generated from protobuf enum ALPHA_LOWER_CASE = 3; 32 | */ 33 | const ALPHA_LOWER_CASE = 3; 34 | /** 35 | * US Punctuation, one of !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~ 36 | * 37 | * Generated from protobuf enum PUNCTUATION = 4; 38 | */ 39 | const PUNCTUATION = 4; 40 | /** 41 | * Whitespace character, one of [ \t\n\x0B\f\r] 42 | * 43 | * Generated from protobuf enum WHITESPACE = 5; 44 | */ 45 | const WHITESPACE = 5; 46 | } 47 | 48 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dlp/V2/CloudStorageOptions_FileSet.php: -------------------------------------------------------------------------------- 1 | google.privacy.dlp.v2.CloudStorageOptions.FileSet 15 | */ 16 | class CloudStorageOptions_FileSet extends \Google\Protobuf\Internal\Message 17 | { 18 | /** 19 | * The url, in the format `gs:///`. Trailing wildcard in the 20 | * path is allowed. 21 | * 22 | * Generated from protobuf field string url = 1; 23 | */ 24 | private $url = ''; 25 | 26 | public function __construct() { 27 | \GPBMetadata\Google\Privacy\Dlp\V2\Storage::initOnce(); 28 | parent::__construct(); 29 | } 30 | 31 | /** 32 | * The url, in the format `gs:///`. Trailing wildcard in the 33 | * path is allowed. 34 | * 35 | * Generated from protobuf field string url = 1; 36 | * @return string 37 | */ 38 | public function getUrl() 39 | { 40 | return $this->url; 41 | } 42 | 43 | /** 44 | * The url, in the format `gs:///`. Trailing wildcard in the 45 | * path is allowed. 46 | * 47 | * Generated from protobuf field string url = 1; 48 | * @param string $var 49 | * @return $this 50 | */ 51 | public function setUrl($var) 52 | { 53 | GPBUtil::checkString($var, True); 54 | $this->url = $var; 55 | 56 | return $this; 57 | } 58 | 59 | } 60 | 61 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dlp/V2/CloudStorageOptions_SampleMethod.php: -------------------------------------------------------------------------------- 1 | Google\Privacy\Dlp\V2\CloudStorageOptions\SampleMethod 13 | */ 14 | class CloudStorageOptions_SampleMethod 15 | { 16 | /** 17 | * Generated from protobuf enum SAMPLE_METHOD_UNSPECIFIED = 0; 18 | */ 19 | const SAMPLE_METHOD_UNSPECIFIED = 0; 20 | /** 21 | * Scan from the top (default). 22 | * 23 | * Generated from protobuf enum TOP = 1; 24 | */ 25 | const TOP = 1; 26 | /** 27 | * For each file larger than bytes_limit_per_file, randomly pick the offset 28 | * to start scanning. The scanned bytes are contiguous. 29 | * 30 | * Generated from protobuf enum RANDOM_START = 2; 31 | */ 32 | const RANDOM_START = 2; 33 | } 34 | 35 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dlp/V2/ContentOption.php: -------------------------------------------------------------------------------- 1 | Google\Privacy\Dlp\V2\ContentOption 11 | */ 12 | class ContentOption 13 | { 14 | /** 15 | * Includes entire content of a file or a data stream. 16 | * 17 | * Generated from protobuf enum CONTENT_UNSPECIFIED = 0; 18 | */ 19 | const CONTENT_UNSPECIFIED = 0; 20 | /** 21 | * Text content within the data, excluding any metadata. 22 | * 23 | * Generated from protobuf enum CONTENT_TEXT = 1; 24 | */ 25 | const CONTENT_TEXT = 1; 26 | /** 27 | * Images found in the data. 28 | * 29 | * Generated from protobuf enum CONTENT_IMAGE = 2; 30 | */ 31 | const CONTENT_IMAGE = 2; 32 | } 33 | 34 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dlp/V2/CryptoReplaceFfxFpeConfig_FfxCommonNativeAlphabet.php: -------------------------------------------------------------------------------- 1 | Google\Privacy\Dlp\V2\CryptoReplaceFfxFpeConfig\FfxCommonNativeAlphabet 13 | */ 14 | class CryptoReplaceFfxFpeConfig_FfxCommonNativeAlphabet 15 | { 16 | /** 17 | * Generated from protobuf enum FFX_COMMON_NATIVE_ALPHABET_UNSPECIFIED = 0; 18 | */ 19 | const FFX_COMMON_NATIVE_ALPHABET_UNSPECIFIED = 0; 20 | /** 21 | * [0-9] (radix of 10) 22 | * 23 | * Generated from protobuf enum NUMERIC = 1; 24 | */ 25 | const NUMERIC = 1; 26 | /** 27 | * [0-9A-F] (radix of 16) 28 | * 29 | * Generated from protobuf enum HEXADECIMAL = 2; 30 | */ 31 | const HEXADECIMAL = 2; 32 | /** 33 | * [0-9A-Z] (radix of 36) 34 | * 35 | * Generated from protobuf enum UPPER_CASE_ALPHA_NUMERIC = 3; 36 | */ 37 | const UPPER_CASE_ALPHA_NUMERIC = 3; 38 | /** 39 | * [0-9A-Za-z] (radix of 62) 40 | * 41 | * Generated from protobuf enum ALPHA_NUMERIC = 4; 42 | */ 43 | const ALPHA_NUMERIC = 4; 44 | } 45 | 46 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dlp/V2/CustomInfoType_Regex.php: -------------------------------------------------------------------------------- 1 | google.privacy.dlp.v2.CustomInfoType.Regex 15 | */ 16 | class CustomInfoType_Regex extends \Google\Protobuf\Internal\Message 17 | { 18 | /** 19 | * Pattern defining the regular expression. 20 | * 21 | * Generated from protobuf field string pattern = 1; 22 | */ 23 | private $pattern = ''; 24 | 25 | public function __construct() { 26 | \GPBMetadata\Google\Privacy\Dlp\V2\Storage::initOnce(); 27 | parent::__construct(); 28 | } 29 | 30 | /** 31 | * Pattern defining the regular expression. 32 | * 33 | * Generated from protobuf field string pattern = 1; 34 | * @return string 35 | */ 36 | public function getPattern() 37 | { 38 | return $this->pattern; 39 | } 40 | 41 | /** 42 | * Pattern defining the regular expression. 43 | * 44 | * Generated from protobuf field string pattern = 1; 45 | * @param string $var 46 | * @return $this 47 | */ 48 | public function setPattern($var) 49 | { 50 | GPBUtil::checkString($var, True); 51 | $this->pattern = $var; 52 | 53 | return $this; 54 | } 55 | 56 | } 57 | 58 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dlp/V2/CustomInfoType_SurrogateType.php: -------------------------------------------------------------------------------- 1 | google.privacy.dlp.v2.CustomInfoType.SurrogateType 22 | */ 23 | class CustomInfoType_SurrogateType extends \Google\Protobuf\Internal\Message 24 | { 25 | 26 | public function __construct() { 27 | \GPBMetadata\Google\Privacy\Dlp\V2\Storage::initOnce(); 28 | parent::__construct(); 29 | } 30 | 31 | } 32 | 33 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dlp/V2/DatastoreKey.php: -------------------------------------------------------------------------------- 1 | google.privacy.dlp.v2.DatastoreKey 15 | */ 16 | class DatastoreKey extends \Google\Protobuf\Internal\Message 17 | { 18 | /** 19 | * Datastore entity key. 20 | * 21 | * Generated from protobuf field .google.privacy.dlp.v2.Key entity_key = 1; 22 | */ 23 | private $entity_key = null; 24 | 25 | public function __construct() { 26 | \GPBMetadata\Google\Privacy\Dlp\V2\Storage::initOnce(); 27 | parent::__construct(); 28 | } 29 | 30 | /** 31 | * Datastore entity key. 32 | * 33 | * Generated from protobuf field .google.privacy.dlp.v2.Key entity_key = 1; 34 | * @return \Google\Cloud\Dlp\V2\Key 35 | */ 36 | public function getEntityKey() 37 | { 38 | return $this->entity_key; 39 | } 40 | 41 | /** 42 | * Datastore entity key. 43 | * 44 | * Generated from protobuf field .google.privacy.dlp.v2.Key entity_key = 1; 45 | * @param \Google\Cloud\Dlp\V2\Key $var 46 | * @return $this 47 | */ 48 | public function setEntityKey($var) 49 | { 50 | GPBUtil::checkMessage($var, \Google\Cloud\Dlp\V2\Key::class); 51 | $this->entity_key = $var; 52 | 53 | return $this; 54 | } 55 | 56 | } 57 | 58 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dlp/V2/DeleteDlpJobRequest.php: -------------------------------------------------------------------------------- 1 | google.privacy.dlp.v2.DeleteDlpJobRequest 15 | */ 16 | class DeleteDlpJobRequest extends \Google\Protobuf\Internal\Message 17 | { 18 | /** 19 | * The name of the DlpJob resource to be deleted. 20 | * 21 | * Generated from protobuf field string name = 1; 22 | */ 23 | private $name = ''; 24 | 25 | public function __construct() { 26 | \GPBMetadata\Google\Privacy\Dlp\V2\Dlp::initOnce(); 27 | parent::__construct(); 28 | } 29 | 30 | /** 31 | * The name of the DlpJob resource to be deleted. 32 | * 33 | * Generated from protobuf field string name = 1; 34 | * @return string 35 | */ 36 | public function getName() 37 | { 38 | return $this->name; 39 | } 40 | 41 | /** 42 | * The name of the DlpJob resource to be deleted. 43 | * 44 | * Generated from protobuf field string name = 1; 45 | * @param string $var 46 | * @return $this 47 | */ 48 | public function setName($var) 49 | { 50 | GPBUtil::checkString($var, True); 51 | $this->name = $var; 52 | 53 | return $this; 54 | } 55 | 56 | } 57 | 58 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dlp/V2/DlpJobType.php: -------------------------------------------------------------------------------- 1 | Google\Privacy\Dlp\V2\DlpJobType 11 | */ 12 | class DlpJobType 13 | { 14 | /** 15 | * Generated from protobuf enum DLP_JOB_TYPE_UNSPECIFIED = 0; 16 | */ 17 | const DLP_JOB_TYPE_UNSPECIFIED = 0; 18 | /** 19 | * The job inspected Google Cloud for sensitive data. 20 | * 21 | * Generated from protobuf enum INSPECT_JOB = 1; 22 | */ 23 | const INSPECT_JOB = 1; 24 | /** 25 | * The job executed a Risk Analysis computation. 26 | * 27 | * Generated from protobuf enum RISK_ANALYSIS_JOB = 2; 28 | */ 29 | const RISK_ANALYSIS_JOB = 2; 30 | } 31 | 32 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dlp/V2/DlpJob_JobState.php: -------------------------------------------------------------------------------- 1 | Google\Privacy\Dlp\V2\DlpJob\JobState 9 | */ 10 | class DlpJob_JobState 11 | { 12 | /** 13 | * Generated from protobuf enum JOB_STATE_UNSPECIFIED = 0; 14 | */ 15 | const JOB_STATE_UNSPECIFIED = 0; 16 | /** 17 | * The job has not yet started. 18 | * 19 | * Generated from protobuf enum PENDING = 1; 20 | */ 21 | const PENDING = 1; 22 | /** 23 | * The job is currently running. 24 | * 25 | * Generated from protobuf enum RUNNING = 2; 26 | */ 27 | const RUNNING = 2; 28 | /** 29 | * The job is no longer running. 30 | * 31 | * Generated from protobuf enum DONE = 3; 32 | */ 33 | const DONE = 3; 34 | /** 35 | * The job was canceled before it could complete. 36 | * 37 | * Generated from protobuf enum CANCELED = 4; 38 | */ 39 | const CANCELED = 4; 40 | /** 41 | * The job had an error and did not complete. 42 | * 43 | * Generated from protobuf enum FAILED = 5; 44 | */ 45 | const FAILED = 5; 46 | } 47 | 48 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dlp/V2/DocumentLocation.php: -------------------------------------------------------------------------------- 1 | google.privacy.dlp.v2.DocumentLocation 15 | */ 16 | class DocumentLocation extends \Google\Protobuf\Internal\Message 17 | { 18 | /** 19 | * Offset of the line, from the beginning of the file, where the finding 20 | * is located. 21 | * 22 | * Generated from protobuf field int64 file_offset = 1; 23 | */ 24 | private $file_offset = 0; 25 | 26 | public function __construct() { 27 | \GPBMetadata\Google\Privacy\Dlp\V2\Dlp::initOnce(); 28 | parent::__construct(); 29 | } 30 | 31 | /** 32 | * Offset of the line, from the beginning of the file, where the finding 33 | * is located. 34 | * 35 | * Generated from protobuf field int64 file_offset = 1; 36 | * @return int|string 37 | */ 38 | public function getFileOffset() 39 | { 40 | return $this->file_offset; 41 | } 42 | 43 | /** 44 | * Offset of the line, from the beginning of the file, where the finding 45 | * is located. 46 | * 47 | * Generated from protobuf field int64 file_offset = 1; 48 | * @param int|string $var 49 | * @return $this 50 | */ 51 | public function setFileOffset($var) 52 | { 53 | GPBUtil::checkInt64($var); 54 | $this->file_offset = $var; 55 | 56 | return $this; 57 | } 58 | 59 | } 60 | 61 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dlp/V2/FieldId.php: -------------------------------------------------------------------------------- 1 | google.privacy.dlp.v2.FieldId 15 | */ 16 | class FieldId extends \Google\Protobuf\Internal\Message 17 | { 18 | /** 19 | * Name describing the field. 20 | * 21 | * Generated from protobuf field string name = 1; 22 | */ 23 | private $name = ''; 24 | 25 | public function __construct() { 26 | \GPBMetadata\Google\Privacy\Dlp\V2\Storage::initOnce(); 27 | parent::__construct(); 28 | } 29 | 30 | /** 31 | * Name describing the field. 32 | * 33 | * Generated from protobuf field string name = 1; 34 | * @return string 35 | */ 36 | public function getName() 37 | { 38 | return $this->name; 39 | } 40 | 41 | /** 42 | * Name describing the field. 43 | * 44 | * Generated from protobuf field string name = 1; 45 | * @param string $var 46 | * @return $this 47 | */ 48 | public function setName($var) 49 | { 50 | GPBUtil::checkString($var, True); 51 | $this->name = $var; 52 | 53 | return $this; 54 | } 55 | 56 | } 57 | 58 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dlp/V2/FileType.php: -------------------------------------------------------------------------------- 1 | Google\Privacy\Dlp\V2\FileType 11 | */ 12 | class FileType 13 | { 14 | /** 15 | * Includes all files. 16 | * 17 | * Generated from protobuf enum FILE_TYPE_UNSPECIFIED = 0; 18 | */ 19 | const FILE_TYPE_UNSPECIFIED = 0; 20 | /** 21 | * Includes all file extensions not covered by text file types. 22 | * 23 | * Generated from protobuf enum BINARY_FILE = 1; 24 | */ 25 | const BINARY_FILE = 1; 26 | /** 27 | * Included file extensions: 28 | * asc, brf, c, cc, cpp, csv, cxx, c++, cs, css, dart, eml, go, h, hh, hpp, 29 | * hxx, h++, hs, html, htm, shtml, shtm, xhtml, lhs, ini, java, js, json, 30 | * ocaml, md, mkd, markdown, m, ml, mli, pl, pm, php, phtml, pht, py, pyw, 31 | * rb, rbw, rs, rc, scala, sh, sql, tex, txt, text, tsv, vcard, vcs, wml, 32 | * xml, xsl, xsd, yml, yaml. 33 | * 34 | * Generated from protobuf enum TEXT_FILE = 2; 35 | */ 36 | const TEXT_FILE = 2; 37 | } 38 | 39 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dlp/V2/GetDlpJobRequest.php: -------------------------------------------------------------------------------- 1 | google.privacy.dlp.v2.GetDlpJobRequest 15 | */ 16 | class GetDlpJobRequest extends \Google\Protobuf\Internal\Message 17 | { 18 | /** 19 | * The name of the DlpJob resource. 20 | * 21 | * Generated from protobuf field string name = 1; 22 | */ 23 | private $name = ''; 24 | 25 | public function __construct() { 26 | \GPBMetadata\Google\Privacy\Dlp\V2\Dlp::initOnce(); 27 | parent::__construct(); 28 | } 29 | 30 | /** 31 | * The name of the DlpJob resource. 32 | * 33 | * Generated from protobuf field string name = 1; 34 | * @return string 35 | */ 36 | public function getName() 37 | { 38 | return $this->name; 39 | } 40 | 41 | /** 42 | * The name of the DlpJob resource. 43 | * 44 | * Generated from protobuf field string name = 1; 45 | * @param string $var 46 | * @return $this 47 | */ 48 | public function setName($var) 49 | { 50 | GPBUtil::checkString($var, True); 51 | $this->name = $var; 52 | 53 | return $this; 54 | } 55 | 56 | } 57 | 58 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dlp/V2/InfoType.php: -------------------------------------------------------------------------------- 1 | google.privacy.dlp.v2.InfoType 15 | */ 16 | class InfoType extends \Google\Protobuf\Internal\Message 17 | { 18 | /** 19 | * Name of the information type. 20 | * 21 | * Generated from protobuf field string name = 1; 22 | */ 23 | private $name = ''; 24 | 25 | public function __construct() { 26 | \GPBMetadata\Google\Privacy\Dlp\V2\Storage::initOnce(); 27 | parent::__construct(); 28 | } 29 | 30 | /** 31 | * Name of the information type. 32 | * 33 | * Generated from protobuf field string name = 1; 34 | * @return string 35 | */ 36 | public function getName() 37 | { 38 | return $this->name; 39 | } 40 | 41 | /** 42 | * Name of the information type. 43 | * 44 | * Generated from protobuf field string name = 1; 45 | * @param string $var 46 | * @return $this 47 | */ 48 | public function setName($var) 49 | { 50 | GPBUtil::checkString($var, True); 51 | $this->name = $var; 52 | 53 | return $this; 54 | } 55 | 56 | } 57 | 58 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dlp/V2/InfoTypeSupportedBy.php: -------------------------------------------------------------------------------- 1 | Google\Privacy\Dlp\V2\InfoTypeSupportedBy 11 | */ 12 | class InfoTypeSupportedBy 13 | { 14 | /** 15 | * Generated from protobuf enum ENUM_TYPE_UNSPECIFIED = 0; 16 | */ 17 | const ENUM_TYPE_UNSPECIFIED = 0; 18 | /** 19 | * Supported by the inspect operations. 20 | * 21 | * Generated from protobuf enum INSPECT = 1; 22 | */ 23 | const INSPECT = 1; 24 | /** 25 | * Supported by the risk analysis operations. 26 | * 27 | * Generated from protobuf enum RISK_ANALYSIS = 2; 28 | */ 29 | const RISK_ANALYSIS = 2; 30 | } 31 | 32 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dlp/V2/InspectContentResponse.php: -------------------------------------------------------------------------------- 1 | google.privacy.dlp.v2.InspectContentResponse 15 | */ 16 | class InspectContentResponse extends \Google\Protobuf\Internal\Message 17 | { 18 | /** 19 | * The findings. 20 | * 21 | * Generated from protobuf field .google.privacy.dlp.v2.InspectResult result = 1; 22 | */ 23 | private $result = null; 24 | 25 | public function __construct() { 26 | \GPBMetadata\Google\Privacy\Dlp\V2\Dlp::initOnce(); 27 | parent::__construct(); 28 | } 29 | 30 | /** 31 | * The findings. 32 | * 33 | * Generated from protobuf field .google.privacy.dlp.v2.InspectResult result = 1; 34 | * @return \Google\Cloud\Dlp\V2\InspectResult 35 | */ 36 | public function getResult() 37 | { 38 | return $this->result; 39 | } 40 | 41 | /** 42 | * The findings. 43 | * 44 | * Generated from protobuf field .google.privacy.dlp.v2.InspectResult result = 1; 45 | * @param \Google\Cloud\Dlp\V2\InspectResult $var 46 | * @return $this 47 | */ 48 | public function setResult($var) 49 | { 50 | GPBUtil::checkMessage($var, \Google\Cloud\Dlp\V2\InspectResult::class); 51 | $this->result = $var; 52 | 53 | return $this; 54 | } 55 | 56 | } 57 | 58 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dlp/V2/JobTrigger_Status.php: -------------------------------------------------------------------------------- 1 | Google\Privacy\Dlp\V2\JobTrigger\Status 14 | */ 15 | class JobTrigger_Status 16 | { 17 | /** 18 | * Generated from protobuf enum STATUS_UNSPECIFIED = 0; 19 | */ 20 | const STATUS_UNSPECIFIED = 0; 21 | /** 22 | * Trigger is healthy. 23 | * 24 | * Generated from protobuf enum HEALTHY = 1; 25 | */ 26 | const HEALTHY = 1; 27 | /** 28 | * Trigger is temporarily paused. 29 | * 30 | * Generated from protobuf enum PAUSED = 2; 31 | */ 32 | const PAUSED = 2; 33 | /** 34 | * Trigger is cancelled and can not be resumed. 35 | * 36 | * Generated from protobuf enum CANCELLED = 3; 37 | */ 38 | const CANCELLED = 3; 39 | } 40 | 41 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dlp/V2/KindExpression.php: -------------------------------------------------------------------------------- 1 | google.privacy.dlp.v2.KindExpression 15 | */ 16 | class KindExpression extends \Google\Protobuf\Internal\Message 17 | { 18 | /** 19 | * The name of the kind. 20 | * 21 | * Generated from protobuf field string name = 1; 22 | */ 23 | private $name = ''; 24 | 25 | public function __construct() { 26 | \GPBMetadata\Google\Privacy\Dlp\V2\Storage::initOnce(); 27 | parent::__construct(); 28 | } 29 | 30 | /** 31 | * The name of the kind. 32 | * 33 | * Generated from protobuf field string name = 1; 34 | * @return string 35 | */ 36 | public function getName() 37 | { 38 | return $this->name; 39 | } 40 | 41 | /** 42 | * The name of the kind. 43 | * 44 | * Generated from protobuf field string name = 1; 45 | * @param string $var 46 | * @return $this 47 | */ 48 | public function setName($var) 49 | { 50 | GPBUtil::checkString($var, True); 51 | $this->name = $var; 52 | 53 | return $this; 54 | } 55 | 56 | } 57 | 58 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dlp/V2/Likelihood.php: -------------------------------------------------------------------------------- 1 | Google\Privacy\Dlp\V2\Likelihood 12 | */ 13 | class Likelihood 14 | { 15 | /** 16 | * Default value; information with all likelihoods is included. 17 | * 18 | * Generated from protobuf enum LIKELIHOOD_UNSPECIFIED = 0; 19 | */ 20 | const LIKELIHOOD_UNSPECIFIED = 0; 21 | /** 22 | * Few matching elements. 23 | * 24 | * Generated from protobuf enum VERY_UNLIKELY = 1; 25 | */ 26 | const VERY_UNLIKELY = 1; 27 | /** 28 | * Generated from protobuf enum UNLIKELY = 2; 29 | */ 30 | const UNLIKELY = 2; 31 | /** 32 | * Some matching elements. 33 | * 34 | * Generated from protobuf enum POSSIBLE = 3; 35 | */ 36 | const POSSIBLE = 3; 37 | /** 38 | * Generated from protobuf enum LIKELY = 4; 39 | */ 40 | const LIKELY = 4; 41 | /** 42 | * Many matching elements. 43 | * 44 | * Generated from protobuf enum VERY_LIKELY = 5; 45 | */ 46 | const VERY_LIKELY = 5; 47 | } 48 | 49 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dlp/V2/OutputStorageConfig_OutputSchema.php: -------------------------------------------------------------------------------- 1 | Google\Privacy\Dlp\V2\OutputStorageConfig\OutputSchema 11 | */ 12 | class OutputStorageConfig_OutputSchema 13 | { 14 | /** 15 | * Generated from protobuf enum OUTPUT_SCHEMA_UNSPECIFIED = 0; 16 | */ 17 | const OUTPUT_SCHEMA_UNSPECIFIED = 0; 18 | /** 19 | * Basic schema including only `info_type`, `quote`, `certainty`, and 20 | * `timestamp`. 21 | * 22 | * Generated from protobuf enum BASIC_COLUMNS = 1; 23 | */ 24 | const BASIC_COLUMNS = 1; 25 | /** 26 | * Schema tailored to findings from scanning Google Cloud Storage. 27 | * 28 | * Generated from protobuf enum GCS_COLUMNS = 2; 29 | */ 30 | const GCS_COLUMNS = 2; 31 | /** 32 | * Schema tailored to findings from scanning Google Datastore. 33 | * 34 | * Generated from protobuf enum DATASTORE_COLUMNS = 3; 35 | */ 36 | const DATASTORE_COLUMNS = 3; 37 | /** 38 | * Schema tailored to findings from scanning Google BigQuery. 39 | * 40 | * Generated from protobuf enum BIG_QUERY_COLUMNS = 4; 41 | */ 42 | const BIG_QUERY_COLUMNS = 4; 43 | /** 44 | * Schema containing all columns. 45 | * 46 | * Generated from protobuf enum ALL_COLUMNS = 5; 47 | */ 48 | const ALL_COLUMNS = 5; 49 | } 50 | 51 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dlp/V2/QuoteInfo.php: -------------------------------------------------------------------------------- 1 | google.privacy.dlp.v2.QuoteInfo 15 | */ 16 | class QuoteInfo extends \Google\Protobuf\Internal\Message 17 | { 18 | protected $parsed_quote; 19 | 20 | public function __construct() { 21 | \GPBMetadata\Google\Privacy\Dlp\V2\Dlp::initOnce(); 22 | parent::__construct(); 23 | } 24 | 25 | /** 26 | * Generated from protobuf field .google.privacy.dlp.v2.DateTime date_time = 2; 27 | * @return \Google\Cloud\Dlp\V2\DateTime 28 | */ 29 | public function getDateTime() 30 | { 31 | return $this->readOneof(2); 32 | } 33 | 34 | /** 35 | * Generated from protobuf field .google.privacy.dlp.v2.DateTime date_time = 2; 36 | * @param \Google\Cloud\Dlp\V2\DateTime $var 37 | * @return $this 38 | */ 39 | public function setDateTime($var) 40 | { 41 | GPBUtil::checkMessage($var, \Google\Cloud\Dlp\V2\DateTime::class); 42 | $this->writeOneof(2, $var); 43 | 44 | return $this; 45 | } 46 | 47 | /** 48 | * @return string 49 | */ 50 | public function getParsedQuote() 51 | { 52 | return $this->whichOneof("parsed_quote"); 53 | } 54 | 55 | } 56 | 57 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dlp/V2/RecordCondition_Expressions_LogicalOperator.php: -------------------------------------------------------------------------------- 1 | Google\Privacy\Dlp\V2\RecordCondition\Expressions\LogicalOperator 9 | */ 10 | class RecordCondition_Expressions_LogicalOperator 11 | { 12 | /** 13 | * Generated from protobuf enum LOGICAL_OPERATOR_UNSPECIFIED = 0; 14 | */ 15 | const LOGICAL_OPERATOR_UNSPECIFIED = 0; 16 | /** 17 | * Generated from protobuf enum AND = 1; 18 | */ 19 | const PBAND = 1; 20 | } 21 | 22 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dlp/V2/RedactConfig.php: -------------------------------------------------------------------------------- 1 | google.privacy.dlp.v2.RedactConfig 17 | */ 18 | class RedactConfig extends \Google\Protobuf\Internal\Message 19 | { 20 | 21 | public function __construct() { 22 | \GPBMetadata\Google\Privacy\Dlp\V2\Dlp::initOnce(); 23 | parent::__construct(); 24 | } 25 | 26 | } 27 | 28 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dlp/V2/RelationalOperator.php: -------------------------------------------------------------------------------- 1 | Google\Privacy\Dlp\V2\RelationalOperator 11 | */ 12 | class RelationalOperator 13 | { 14 | /** 15 | * Generated from protobuf enum RELATIONAL_OPERATOR_UNSPECIFIED = 0; 16 | */ 17 | const RELATIONAL_OPERATOR_UNSPECIFIED = 0; 18 | /** 19 | * Equal. 20 | * 21 | * Generated from protobuf enum EQUAL_TO = 1; 22 | */ 23 | const EQUAL_TO = 1; 24 | /** 25 | * Not equal to. 26 | * 27 | * Generated from protobuf enum NOT_EQUAL_TO = 2; 28 | */ 29 | const NOT_EQUAL_TO = 2; 30 | /** 31 | * Greater than. 32 | * 33 | * Generated from protobuf enum GREATER_THAN = 3; 34 | */ 35 | const GREATER_THAN = 3; 36 | /** 37 | * Less than. 38 | * 39 | * Generated from protobuf enum LESS_THAN = 4; 40 | */ 41 | const LESS_THAN = 4; 42 | /** 43 | * Greater than or equals. 44 | * 45 | * Generated from protobuf enum GREATER_THAN_OR_EQUALS = 5; 46 | */ 47 | const GREATER_THAN_OR_EQUALS = 5; 48 | /** 49 | * Less than or equals. 50 | * 51 | * Generated from protobuf enum LESS_THAN_OR_EQUALS = 6; 52 | */ 53 | const LESS_THAN_OR_EQUALS = 6; 54 | /** 55 | * Exists 56 | * 57 | * Generated from protobuf enum EXISTS = 7; 58 | */ 59 | const EXISTS = 7; 60 | } 61 | 62 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dlp/V2/ReplaceValueConfig.php: -------------------------------------------------------------------------------- 1 | google.privacy.dlp.v2.ReplaceValueConfig 15 | */ 16 | class ReplaceValueConfig extends \Google\Protobuf\Internal\Message 17 | { 18 | /** 19 | * Value to replace it with. 20 | * 21 | * Generated from protobuf field .google.privacy.dlp.v2.Value new_value = 1; 22 | */ 23 | private $new_value = null; 24 | 25 | public function __construct() { 26 | \GPBMetadata\Google\Privacy\Dlp\V2\Dlp::initOnce(); 27 | parent::__construct(); 28 | } 29 | 30 | /** 31 | * Value to replace it with. 32 | * 33 | * Generated from protobuf field .google.privacy.dlp.v2.Value new_value = 1; 34 | * @return \Google\Cloud\Dlp\V2\Value 35 | */ 36 | public function getNewValue() 37 | { 38 | return $this->new_value; 39 | } 40 | 41 | /** 42 | * Value to replace it with. 43 | * 44 | * Generated from protobuf field .google.privacy.dlp.v2.Value new_value = 1; 45 | * @param \Google\Cloud\Dlp\V2\Value $var 46 | * @return $this 47 | */ 48 | public function setNewValue($var) 49 | { 50 | GPBUtil::checkMessage($var, \Google\Cloud\Dlp\V2\Value::class); 51 | $this->new_value = $var; 52 | 53 | return $this; 54 | } 55 | 56 | } 57 | 58 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dlp/V2/ReplaceWithInfoTypeConfig.php: -------------------------------------------------------------------------------- 1 | google.privacy.dlp.v2.ReplaceWithInfoTypeConfig 15 | */ 16 | class ReplaceWithInfoTypeConfig extends \Google\Protobuf\Internal\Message 17 | { 18 | 19 | public function __construct() { 20 | \GPBMetadata\Google\Privacy\Dlp\V2\Dlp::initOnce(); 21 | parent::__construct(); 22 | } 23 | 24 | } 25 | 26 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dlp/V2/TableLocation.php: -------------------------------------------------------------------------------- 1 | google.privacy.dlp.v2.TableLocation 15 | */ 16 | class TableLocation extends \Google\Protobuf\Internal\Message 17 | { 18 | /** 19 | * The zero-based index of the row where the finding is located. 20 | * 21 | * Generated from protobuf field int64 row_index = 1; 22 | */ 23 | private $row_index = 0; 24 | 25 | public function __construct() { 26 | \GPBMetadata\Google\Privacy\Dlp\V2\Dlp::initOnce(); 27 | parent::__construct(); 28 | } 29 | 30 | /** 31 | * The zero-based index of the row where the finding is located. 32 | * 33 | * Generated from protobuf field int64 row_index = 1; 34 | * @return int|string 35 | */ 36 | public function getRowIndex() 37 | { 38 | return $this->row_index; 39 | } 40 | 41 | /** 42 | * The zero-based index of the row where the finding is located. 43 | * 44 | * Generated from protobuf field int64 row_index = 1; 45 | * @param int|string $var 46 | * @return $this 47 | */ 48 | public function setRowIndex($var) 49 | { 50 | GPBUtil::checkInt64($var); 51 | $this->row_index = $var; 52 | 53 | return $this; 54 | } 55 | 56 | } 57 | 58 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dlp/V2/Table_Row.php: -------------------------------------------------------------------------------- 1 | google.privacy.dlp.v2.Table.Row 13 | */ 14 | class Table_Row extends \Google\Protobuf\Internal\Message 15 | { 16 | /** 17 | * Generated from protobuf field repeated .google.privacy.dlp.v2.Value values = 1; 18 | */ 19 | private $values; 20 | 21 | public function __construct() { 22 | \GPBMetadata\Google\Privacy\Dlp\V2\Dlp::initOnce(); 23 | parent::__construct(); 24 | } 25 | 26 | /** 27 | * Generated from protobuf field repeated .google.privacy.dlp.v2.Value values = 1; 28 | * @return \Google\Protobuf\Internal\RepeatedField 29 | */ 30 | public function getValues() 31 | { 32 | return $this->values; 33 | } 34 | 35 | /** 36 | * Generated from protobuf field repeated .google.privacy.dlp.v2.Value values = 1; 37 | * @param \Google\Cloud\Dlp\V2\Value[]|\Google\Protobuf\Internal\RepeatedField $var 38 | * @return $this 39 | */ 40 | public function setValues($var) 41 | { 42 | $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Dlp\V2\Value::class); 43 | $this->values = $arr; 44 | 45 | return $this; 46 | } 47 | 48 | } 49 | 50 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dlp/V2/TimePartConfig.php: -------------------------------------------------------------------------------- 1 | google.privacy.dlp.v2.TimePartConfig 16 | */ 17 | class TimePartConfig extends \Google\Protobuf\Internal\Message 18 | { 19 | /** 20 | * Generated from protobuf field .google.privacy.dlp.v2.TimePartConfig.TimePart part_to_extract = 1; 21 | */ 22 | private $part_to_extract = 0; 23 | 24 | public function __construct() { 25 | \GPBMetadata\Google\Privacy\Dlp\V2\Dlp::initOnce(); 26 | parent::__construct(); 27 | } 28 | 29 | /** 30 | * Generated from protobuf field .google.privacy.dlp.v2.TimePartConfig.TimePart part_to_extract = 1; 31 | * @return int 32 | */ 33 | public function getPartToExtract() 34 | { 35 | return $this->part_to_extract; 36 | } 37 | 38 | /** 39 | * Generated from protobuf field .google.privacy.dlp.v2.TimePartConfig.TimePart part_to_extract = 1; 40 | * @param int $var 41 | * @return $this 42 | */ 43 | public function setPartToExtract($var) 44 | { 45 | GPBUtil::checkEnum($var, \Google\Cloud\Dlp\V2\TimePartConfig_TimePart::class); 46 | $this->part_to_extract = $var; 47 | 48 | return $this; 49 | } 50 | 51 | } 52 | 53 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dlp/V2/TimePartConfig_TimePart.php: -------------------------------------------------------------------------------- 1 | Google\Privacy\Dlp\V2\TimePartConfig\TimePart 9 | */ 10 | class TimePartConfig_TimePart 11 | { 12 | /** 13 | * Generated from protobuf enum TIME_PART_UNSPECIFIED = 0; 14 | */ 15 | const TIME_PART_UNSPECIFIED = 0; 16 | /** 17 | * [0-9999] 18 | * 19 | * Generated from protobuf enum YEAR = 1; 20 | */ 21 | const YEAR = 1; 22 | /** 23 | * [1-12] 24 | * 25 | * Generated from protobuf enum MONTH = 2; 26 | */ 27 | const MONTH = 2; 28 | /** 29 | * [1-31] 30 | * 31 | * Generated from protobuf enum DAY_OF_MONTH = 3; 32 | */ 33 | const DAY_OF_MONTH = 3; 34 | /** 35 | * [1-7] 36 | * 37 | * Generated from protobuf enum DAY_OF_WEEK = 4; 38 | */ 39 | const DAY_OF_WEEK = 4; 40 | /** 41 | * [1-52] 42 | * 43 | * Generated from protobuf enum WEEK_OF_YEAR = 5; 44 | */ 45 | const WEEK_OF_YEAR = 5; 46 | /** 47 | * [0-23] 48 | * 49 | * Generated from protobuf enum HOUR_OF_DAY = 6; 50 | */ 51 | const HOUR_OF_DAY = 6; 52 | } 53 | 54 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dlp/V2/TransformationSummary_TransformationResultCode.php: -------------------------------------------------------------------------------- 1 | Google\Privacy\Dlp\V2\TransformationSummary\TransformationResultCode 11 | */ 12 | class TransformationSummary_TransformationResultCode 13 | { 14 | /** 15 | * Generated from protobuf enum TRANSFORMATION_RESULT_CODE_UNSPECIFIED = 0; 16 | */ 17 | const TRANSFORMATION_RESULT_CODE_UNSPECIFIED = 0; 18 | /** 19 | * Generated from protobuf enum SUCCESS = 1; 20 | */ 21 | const SUCCESS = 1; 22 | /** 23 | * Generated from protobuf enum ERROR = 2; 24 | */ 25 | const ERROR = 2; 26 | } 27 | 28 | -------------------------------------------------------------------------------- /src/Google/Cloud/Dlp/V2/UnwrappedCryptoKey.php: -------------------------------------------------------------------------------- 1 | google.privacy.dlp.v2.UnwrappedCryptoKey 16 | */ 17 | class UnwrappedCryptoKey extends \Google\Protobuf\Internal\Message 18 | { 19 | /** 20 | * The AES 128/192/256 bit key. [required] 21 | * 22 | * Generated from protobuf field bytes key = 1; 23 | */ 24 | private $key = ''; 25 | 26 | public function __construct() { 27 | \GPBMetadata\Google\Privacy\Dlp\V2\Dlp::initOnce(); 28 | parent::__construct(); 29 | } 30 | 31 | /** 32 | * The AES 128/192/256 bit key. [required] 33 | * 34 | * Generated from protobuf field bytes key = 1; 35 | * @return string 36 | */ 37 | public function getKey() 38 | { 39 | return $this->key; 40 | } 41 | 42 | /** 43 | * The AES 128/192/256 bit key. [required] 44 | * 45 | * Generated from protobuf field bytes key = 1; 46 | * @param string $var 47 | * @return $this 48 | */ 49 | public function setKey($var) 50 | { 51 | GPBUtil::checkString($var, False); 52 | $this->key = $var; 53 | 54 | return $this; 55 | } 56 | 57 | } 58 | 59 | -------------------------------------------------------------------------------- /src/Google/Cloud/ErrorReporting/V1beta1/DeleteEventsResponse.php: -------------------------------------------------------------------------------- 1 | google.devtools.clouderrorreporting.v1beta1.DeleteEventsResponse 15 | */ 16 | class DeleteEventsResponse extends \Google\Protobuf\Internal\Message 17 | { 18 | 19 | public function __construct() { 20 | \GPBMetadata\Google\Devtools\Clouderrorreporting\V1Beta1\ErrorStatsService::initOnce(); 21 | parent::__construct(); 22 | } 23 | 24 | } 25 | 26 | -------------------------------------------------------------------------------- /src/Google/Cloud/ErrorReporting/V1beta1/ErrorGroupOrder.php: -------------------------------------------------------------------------------- 1 | Google\Devtools\Clouderrorreporting\V1beta1\ErrorGroupOrder 11 | */ 12 | class ErrorGroupOrder 13 | { 14 | /** 15 | * No group order specified. 16 | * 17 | * Generated from protobuf enum GROUP_ORDER_UNSPECIFIED = 0; 18 | */ 19 | const GROUP_ORDER_UNSPECIFIED = 0; 20 | /** 21 | * Total count of errors in the given time window in descending order. 22 | * 23 | * Generated from protobuf enum COUNT_DESC = 1; 24 | */ 25 | const COUNT_DESC = 1; 26 | /** 27 | * Timestamp when the group was last seen in the given time window 28 | * in descending order. 29 | * 30 | * Generated from protobuf enum LAST_SEEN_DESC = 2; 31 | */ 32 | const LAST_SEEN_DESC = 2; 33 | /** 34 | * Timestamp when the group was created in descending order. 35 | * 36 | * Generated from protobuf enum CREATED_DESC = 3; 37 | */ 38 | const CREATED_DESC = 3; 39 | /** 40 | * Number of affected users in the given time window in descending order. 41 | * 42 | * Generated from protobuf enum AFFECTED_USERS_DESC = 4; 43 | */ 44 | const AFFECTED_USERS_DESC = 4; 45 | } 46 | 47 | -------------------------------------------------------------------------------- /src/Google/Cloud/ErrorReporting/V1beta1/ReportErrorEventResponse.php: -------------------------------------------------------------------------------- 1 | google.devtools.clouderrorreporting.v1beta1.ReportErrorEventResponse 16 | */ 17 | class ReportErrorEventResponse extends \Google\Protobuf\Internal\Message 18 | { 19 | 20 | public function __construct() { 21 | \GPBMetadata\Google\Devtools\Clouderrorreporting\V1Beta1\ReportErrorsService::initOnce(); 22 | parent::__construct(); 23 | } 24 | 25 | } 26 | 27 | -------------------------------------------------------------------------------- /src/Google/Cloud/ErrorReporting/V1beta1/TimedCountAlignment.php: -------------------------------------------------------------------------------- 1 | Google\Devtools\Clouderrorreporting\V1beta1\TimedCountAlignment 11 | */ 12 | class TimedCountAlignment 13 | { 14 | /** 15 | * No alignment specified. 16 | * 17 | * Generated from protobuf enum ERROR_COUNT_ALIGNMENT_UNSPECIFIED = 0; 18 | */ 19 | const ERROR_COUNT_ALIGNMENT_UNSPECIFIED = 0; 20 | /** 21 | * The time periods shall be consecutive, have width equal to the 22 | * requested duration, and be aligned at the `alignment_time` provided in 23 | * the request. 24 | * The `alignment_time` does not have to be inside the query period but 25 | * even if it is outside, only time periods are returned which overlap 26 | * with the query period. 27 | * A rounded alignment will typically result in a 28 | * different size of the first or the last time period. 29 | * 30 | * Generated from protobuf enum ALIGNMENT_EQUAL_ROUNDED = 1; 31 | */ 32 | const ALIGNMENT_EQUAL_ROUNDED = 1; 33 | /** 34 | * The time periods shall be consecutive, have width equal to the 35 | * requested duration, and be aligned at the end of the requested time 36 | * period. This can result in a different size of the 37 | * first time period. 38 | * 39 | * Generated from protobuf enum ALIGNMENT_EQUAL_AT_END = 2; 40 | */ 41 | const ALIGNMENT_EQUAL_AT_END = 2; 42 | } 43 | 44 | -------------------------------------------------------------------------------- /src/Google/Cloud/Firestore/V1beta1/BeginTransactionResponse.php: -------------------------------------------------------------------------------- 1 | google.firestore.v1beta1.BeginTransactionResponse 15 | */ 16 | class BeginTransactionResponse extends \Google\Protobuf\Internal\Message 17 | { 18 | /** 19 | * The transaction that was started. 20 | * 21 | * Generated from protobuf field bytes transaction = 1; 22 | */ 23 | private $transaction = ''; 24 | 25 | public function __construct() { 26 | \GPBMetadata\Google\Firestore\V1Beta1\Firestore::initOnce(); 27 | parent::__construct(); 28 | } 29 | 30 | /** 31 | * The transaction that was started. 32 | * 33 | * Generated from protobuf field bytes transaction = 1; 34 | * @return string 35 | */ 36 | public function getTransaction() 37 | { 38 | return $this->transaction; 39 | } 40 | 41 | /** 42 | * The transaction that was started. 43 | * 44 | * Generated from protobuf field bytes transaction = 1; 45 | * @param string $var 46 | * @return $this 47 | */ 48 | public function setTransaction($var) 49 | { 50 | GPBUtil::checkString($var, False); 51 | $this->transaction = $var; 52 | 53 | return $this; 54 | } 55 | 56 | } 57 | 58 | -------------------------------------------------------------------------------- /src/Google/Cloud/Firestore/V1beta1/DocumentTransform_FieldTransform_ServerValue.php: -------------------------------------------------------------------------------- 1 | Google\Firestore\V1beta1\DocumentTransform\FieldTransform\ServerValue 11 | */ 12 | class DocumentTransform_FieldTransform_ServerValue 13 | { 14 | /** 15 | * Unspecified. This value must not be used. 16 | * 17 | * Generated from protobuf enum SERVER_VALUE_UNSPECIFIED = 0; 18 | */ 19 | const SERVER_VALUE_UNSPECIFIED = 0; 20 | /** 21 | * The time at which the server processed the request, with millisecond 22 | * precision. 23 | * 24 | * Generated from protobuf enum REQUEST_TIME = 1; 25 | */ 26 | const REQUEST_TIME = 1; 27 | } 28 | 29 | -------------------------------------------------------------------------------- /src/Google/Cloud/Firestore/V1beta1/StructuredQuery_CompositeFilter_Operator.php: -------------------------------------------------------------------------------- 1 | Google\Firestore\V1beta1\StructuredQuery\CompositeFilter\Operator 11 | */ 12 | class StructuredQuery_CompositeFilter_Operator 13 | { 14 | /** 15 | * Unspecified. This value must not be used. 16 | * 17 | * Generated from protobuf enum OPERATOR_UNSPECIFIED = 0; 18 | */ 19 | const OPERATOR_UNSPECIFIED = 0; 20 | /** 21 | * The results are required to satisfy each of the combined filters. 22 | * 23 | * Generated from protobuf enum AND = 1; 24 | */ 25 | const PBAND = 1; 26 | } 27 | 28 | -------------------------------------------------------------------------------- /src/Google/Cloud/Firestore/V1beta1/StructuredQuery_Direction.php: -------------------------------------------------------------------------------- 1 | Google\Firestore\V1beta1\StructuredQuery\Direction 11 | */ 12 | class StructuredQuery_Direction 13 | { 14 | /** 15 | * Unspecified. 16 | * 17 | * Generated from protobuf enum DIRECTION_UNSPECIFIED = 0; 18 | */ 19 | const DIRECTION_UNSPECIFIED = 0; 20 | /** 21 | * Ascending. 22 | * 23 | * Generated from protobuf enum ASCENDING = 1; 24 | */ 25 | const ASCENDING = 1; 26 | /** 27 | * Descending. 28 | * 29 | * Generated from protobuf enum DESCENDING = 2; 30 | */ 31 | const DESCENDING = 2; 32 | } 33 | 34 | -------------------------------------------------------------------------------- /src/Google/Cloud/Firestore/V1beta1/StructuredQuery_FieldFilter_Operator.php: -------------------------------------------------------------------------------- 1 | Google\Firestore\V1beta1\StructuredQuery\FieldFilter\Operator 11 | */ 12 | class StructuredQuery_FieldFilter_Operator 13 | { 14 | /** 15 | * Unspecified. This value must not be used. 16 | * 17 | * Generated from protobuf enum OPERATOR_UNSPECIFIED = 0; 18 | */ 19 | const OPERATOR_UNSPECIFIED = 0; 20 | /** 21 | * Less than. Requires that the field come first in `order_by`. 22 | * 23 | * Generated from protobuf enum LESS_THAN = 1; 24 | */ 25 | const LESS_THAN = 1; 26 | /** 27 | * Less than or equal. Requires that the field come first in `order_by`. 28 | * 29 | * Generated from protobuf enum LESS_THAN_OR_EQUAL = 2; 30 | */ 31 | const LESS_THAN_OR_EQUAL = 2; 32 | /** 33 | * Greater than. Requires that the field come first in `order_by`. 34 | * 35 | * Generated from protobuf enum GREATER_THAN = 3; 36 | */ 37 | const GREATER_THAN = 3; 38 | /** 39 | * Greater than or equal. Requires that the field come first in 40 | * `order_by`. 41 | * 42 | * Generated from protobuf enum GREATER_THAN_OR_EQUAL = 4; 43 | */ 44 | const GREATER_THAN_OR_EQUAL = 4; 45 | /** 46 | * Equal. 47 | * 48 | * Generated from protobuf enum EQUAL = 5; 49 | */ 50 | const EQUAL = 5; 51 | } 52 | 53 | -------------------------------------------------------------------------------- /src/Google/Cloud/Firestore/V1beta1/StructuredQuery_FieldReference.php: -------------------------------------------------------------------------------- 1 | google.firestore.v1beta1.StructuredQuery.FieldReference 15 | */ 16 | class StructuredQuery_FieldReference extends \Google\Protobuf\Internal\Message 17 | { 18 | /** 19 | * Generated from protobuf field string field_path = 2; 20 | */ 21 | private $field_path = ''; 22 | 23 | public function __construct() { 24 | \GPBMetadata\Google\Firestore\V1Beta1\Query::initOnce(); 25 | parent::__construct(); 26 | } 27 | 28 | /** 29 | * Generated from protobuf field string field_path = 2; 30 | * @return string 31 | */ 32 | public function getFieldPath() 33 | { 34 | return $this->field_path; 35 | } 36 | 37 | /** 38 | * Generated from protobuf field string field_path = 2; 39 | * @param string $var 40 | * @return $this 41 | */ 42 | public function setFieldPath($var) 43 | { 44 | GPBUtil::checkString($var, True); 45 | $this->field_path = $var; 46 | 47 | return $this; 48 | } 49 | 50 | } 51 | 52 | -------------------------------------------------------------------------------- /src/Google/Cloud/Firestore/V1beta1/StructuredQuery_UnaryFilter_Operator.php: -------------------------------------------------------------------------------- 1 | Google\Firestore\V1beta1\StructuredQuery\UnaryFilter\Operator 11 | */ 12 | class StructuredQuery_UnaryFilter_Operator 13 | { 14 | /** 15 | * Unspecified. This value must not be used. 16 | * 17 | * Generated from protobuf enum OPERATOR_UNSPECIFIED = 0; 18 | */ 19 | const OPERATOR_UNSPECIFIED = 0; 20 | /** 21 | * Test if a field is equal to NaN. 22 | * 23 | * Generated from protobuf enum IS_NAN = 2; 24 | */ 25 | const IS_NAN = 2; 26 | /** 27 | * Test if an exprestion evaluates to Null. 28 | * 29 | * Generated from protobuf enum IS_NULL = 3; 30 | */ 31 | const IS_NULL = 3; 32 | } 33 | 34 | -------------------------------------------------------------------------------- /src/Google/Cloud/Firestore/V1beta1/TransactionOptions_ReadWrite.php: -------------------------------------------------------------------------------- 1 | google.firestore.v1beta1.TransactionOptions.ReadWrite 15 | */ 16 | class TransactionOptions_ReadWrite extends \Google\Protobuf\Internal\Message 17 | { 18 | /** 19 | * An optional transaction to retry. 20 | * 21 | * Generated from protobuf field bytes retry_transaction = 1; 22 | */ 23 | private $retry_transaction = ''; 24 | 25 | public function __construct() { 26 | \GPBMetadata\Google\Firestore\V1Beta1\Common::initOnce(); 27 | parent::__construct(); 28 | } 29 | 30 | /** 31 | * An optional transaction to retry. 32 | * 33 | * Generated from protobuf field bytes retry_transaction = 1; 34 | * @return string 35 | */ 36 | public function getRetryTransaction() 37 | { 38 | return $this->retry_transaction; 39 | } 40 | 41 | /** 42 | * An optional transaction to retry. 43 | * 44 | * Generated from protobuf field bytes retry_transaction = 1; 45 | * @param string $var 46 | * @return $this 47 | */ 48 | public function setRetryTransaction($var) 49 | { 50 | GPBUtil::checkString($var, False); 51 | $this->retry_transaction = $var; 52 | 53 | return $this; 54 | } 55 | 56 | } 57 | 58 | -------------------------------------------------------------------------------- /src/Google/Cloud/Iot/V1/HttpState.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Iot\V1\HttpState 12 | */ 13 | class HttpState 14 | { 15 | /** 16 | * No HTTP state specified. If not specified, DeviceService will be 17 | * enabled by default. 18 | * 19 | * Generated from protobuf enum HTTP_STATE_UNSPECIFIED = 0; 20 | */ 21 | const HTTP_STATE_UNSPECIFIED = 0; 22 | /** 23 | * Enables DeviceService (HTTP) service for the registry. 24 | * 25 | * Generated from protobuf enum HTTP_ENABLED = 1; 26 | */ 27 | const HTTP_ENABLED = 1; 28 | /** 29 | * Disables DeviceService (HTTP) service for the registry. 30 | * 31 | * Generated from protobuf enum HTTP_DISABLED = 2; 32 | */ 33 | const HTTP_DISABLED = 2; 34 | } 35 | 36 | -------------------------------------------------------------------------------- /src/Google/Cloud/Iot/V1/MqttState.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Iot\V1\MqttState 12 | */ 13 | class MqttState 14 | { 15 | /** 16 | * No MQTT state specified. If not specified, MQTT will be enabled by default. 17 | * 18 | * Generated from protobuf enum MQTT_STATE_UNSPECIFIED = 0; 19 | */ 20 | const MQTT_STATE_UNSPECIFIED = 0; 21 | /** 22 | * Enables a MQTT connection. 23 | * 24 | * Generated from protobuf enum MQTT_ENABLED = 1; 25 | */ 26 | const MQTT_ENABLED = 1; 27 | /** 28 | * Disables a MQTT connection. 29 | * 30 | * Generated from protobuf enum MQTT_DISABLED = 2; 31 | */ 32 | const MQTT_DISABLED = 2; 33 | } 34 | 35 | -------------------------------------------------------------------------------- /src/Google/Cloud/Iot/V1/PublicKeyCertificateFormat.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Iot\V1\PublicKeyCertificateFormat 11 | */ 12 | class PublicKeyCertificateFormat 13 | { 14 | /** 15 | * The format has not been specified. This is an invalid default value and 16 | * must not be used. 17 | * 18 | * Generated from protobuf enum UNSPECIFIED_PUBLIC_KEY_CERTIFICATE_FORMAT = 0; 19 | */ 20 | const UNSPECIFIED_PUBLIC_KEY_CERTIFICATE_FORMAT = 0; 21 | /** 22 | * An X.509v3 certificate ([RFC5280](https://www.ietf.org/rfc/rfc5280.txt)), 23 | * encoded in base64, and wrapped by `-----BEGIN CERTIFICATE-----` and 24 | * `-----END CERTIFICATE-----`. 25 | * 26 | * Generated from protobuf enum X509_CERTIFICATE_PEM = 1; 27 | */ 28 | const X509_CERTIFICATE_PEM = 1; 29 | } 30 | 31 | -------------------------------------------------------------------------------- /src/Google/Cloud/Language/V1beta2/Document_Type.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Language\V1beta2\Document\Type 11 | */ 12 | class Document_Type 13 | { 14 | /** 15 | * The content type is not specified. 16 | * 17 | * Generated from protobuf enum TYPE_UNSPECIFIED = 0; 18 | */ 19 | const TYPE_UNSPECIFIED = 0; 20 | /** 21 | * Plain text 22 | * 23 | * Generated from protobuf enum PLAIN_TEXT = 1; 24 | */ 25 | const PLAIN_TEXT = 1; 26 | /** 27 | * HTML 28 | * 29 | * Generated from protobuf enum HTML = 2; 30 | */ 31 | const HTML = 2; 32 | } 33 | 34 | -------------------------------------------------------------------------------- /src/Google/Cloud/Language/V1beta2/EntityMention_Type.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Language\V1beta2\EntityMention\Type 11 | */ 12 | class EntityMention_Type 13 | { 14 | /** 15 | * Unknown 16 | * 17 | * Generated from protobuf enum TYPE_UNKNOWN = 0; 18 | */ 19 | const TYPE_UNKNOWN = 0; 20 | /** 21 | * Proper name 22 | * 23 | * Generated from protobuf enum PROPER = 1; 24 | */ 25 | const PROPER = 1; 26 | /** 27 | * Common noun (or noun compound) 28 | * 29 | * Generated from protobuf enum COMMON = 2; 30 | */ 31 | const COMMON = 2; 32 | } 33 | 34 | -------------------------------------------------------------------------------- /src/Google/Cloud/Language/V1beta2/Entity_Type.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Language\V1beta2\Entity\Type 11 | */ 12 | class Entity_Type 13 | { 14 | /** 15 | * Unknown 16 | * 17 | * Generated from protobuf enum UNKNOWN = 0; 18 | */ 19 | const UNKNOWN = 0; 20 | /** 21 | * Person 22 | * 23 | * Generated from protobuf enum PERSON = 1; 24 | */ 25 | const PERSON = 1; 26 | /** 27 | * Location 28 | * 29 | * Generated from protobuf enum LOCATION = 2; 30 | */ 31 | const LOCATION = 2; 32 | /** 33 | * Organization 34 | * 35 | * Generated from protobuf enum ORGANIZATION = 3; 36 | */ 37 | const ORGANIZATION = 3; 38 | /** 39 | * Event 40 | * 41 | * Generated from protobuf enum EVENT = 4; 42 | */ 43 | const EVENT = 4; 44 | /** 45 | * Work of art 46 | * 47 | * Generated from protobuf enum WORK_OF_ART = 5; 48 | */ 49 | const WORK_OF_ART = 5; 50 | /** 51 | * Consumer goods 52 | * 53 | * Generated from protobuf enum CONSUMER_GOOD = 6; 54 | */ 55 | const CONSUMER_GOOD = 6; 56 | /** 57 | * Other types 58 | * 59 | * Generated from protobuf enum OTHER = 7; 60 | */ 61 | const OTHER = 7; 62 | } 63 | 64 | -------------------------------------------------------------------------------- /src/Google/Cloud/Language/V1beta2/PartOfSpeech_Aspect.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Language\V1beta2\PartOfSpeech\Aspect 11 | */ 12 | class PartOfSpeech_Aspect 13 | { 14 | /** 15 | * Aspect is not applicable in the analyzed language or is not predicted. 16 | * 17 | * Generated from protobuf enum ASPECT_UNKNOWN = 0; 18 | */ 19 | const ASPECT_UNKNOWN = 0; 20 | /** 21 | * Perfective 22 | * 23 | * Generated from protobuf enum PERFECTIVE = 1; 24 | */ 25 | const PERFECTIVE = 1; 26 | /** 27 | * Imperfective 28 | * 29 | * Generated from protobuf enum IMPERFECTIVE = 2; 30 | */ 31 | const IMPERFECTIVE = 2; 32 | /** 33 | * Progressive 34 | * 35 | * Generated from protobuf enum PROGRESSIVE = 3; 36 | */ 37 | const PROGRESSIVE = 3; 38 | } 39 | 40 | -------------------------------------------------------------------------------- /src/Google/Cloud/Language/V1beta2/PartOfSpeech_Gender.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Language\V1beta2\PartOfSpeech\Gender 11 | */ 12 | class PartOfSpeech_Gender 13 | { 14 | /** 15 | * Gender is not applicable in the analyzed language or is not predicted. 16 | * 17 | * Generated from protobuf enum GENDER_UNKNOWN = 0; 18 | */ 19 | const GENDER_UNKNOWN = 0; 20 | /** 21 | * Feminine 22 | * 23 | * Generated from protobuf enum FEMININE = 1; 24 | */ 25 | const FEMININE = 1; 26 | /** 27 | * Masculine 28 | * 29 | * Generated from protobuf enum MASCULINE = 2; 30 | */ 31 | const MASCULINE = 2; 32 | /** 33 | * Neuter 34 | * 35 | * Generated from protobuf enum NEUTER = 3; 36 | */ 37 | const NEUTER = 3; 38 | } 39 | 40 | -------------------------------------------------------------------------------- /src/Google/Cloud/Language/V1beta2/PartOfSpeech_Mood.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Language\V1beta2\PartOfSpeech\Mood 11 | */ 12 | class PartOfSpeech_Mood 13 | { 14 | /** 15 | * Mood is not applicable in the analyzed language or is not predicted. 16 | * 17 | * Generated from protobuf enum MOOD_UNKNOWN = 0; 18 | */ 19 | const MOOD_UNKNOWN = 0; 20 | /** 21 | * Conditional 22 | * 23 | * Generated from protobuf enum CONDITIONAL_MOOD = 1; 24 | */ 25 | const CONDITIONAL_MOOD = 1; 26 | /** 27 | * Imperative 28 | * 29 | * Generated from protobuf enum IMPERATIVE = 2; 30 | */ 31 | const IMPERATIVE = 2; 32 | /** 33 | * Indicative 34 | * 35 | * Generated from protobuf enum INDICATIVE = 3; 36 | */ 37 | const INDICATIVE = 3; 38 | /** 39 | * Interrogative 40 | * 41 | * Generated from protobuf enum INTERROGATIVE = 4; 42 | */ 43 | const INTERROGATIVE = 4; 44 | /** 45 | * Jussive 46 | * 47 | * Generated from protobuf enum JUSSIVE = 5; 48 | */ 49 | const JUSSIVE = 5; 50 | /** 51 | * Subjunctive 52 | * 53 | * Generated from protobuf enum SUBJUNCTIVE = 6; 54 | */ 55 | const SUBJUNCTIVE = 6; 56 | } 57 | 58 | -------------------------------------------------------------------------------- /src/Google/Cloud/Language/V1beta2/PartOfSpeech_Number.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Language\V1beta2\PartOfSpeech\Number 11 | */ 12 | class PartOfSpeech_Number 13 | { 14 | /** 15 | * Number is not applicable in the analyzed language or is not predicted. 16 | * 17 | * Generated from protobuf enum NUMBER_UNKNOWN = 0; 18 | */ 19 | const NUMBER_UNKNOWN = 0; 20 | /** 21 | * Singular 22 | * 23 | * Generated from protobuf enum SINGULAR = 1; 24 | */ 25 | const SINGULAR = 1; 26 | /** 27 | * Plural 28 | * 29 | * Generated from protobuf enum PLURAL = 2; 30 | */ 31 | const PLURAL = 2; 32 | /** 33 | * Dual 34 | * 35 | * Generated from protobuf enum DUAL = 3; 36 | */ 37 | const DUAL = 3; 38 | } 39 | 40 | -------------------------------------------------------------------------------- /src/Google/Cloud/Language/V1beta2/PartOfSpeech_Person.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Language\V1beta2\PartOfSpeech\Person 11 | */ 12 | class PartOfSpeech_Person 13 | { 14 | /** 15 | * Person is not applicable in the analyzed language or is not predicted. 16 | * 17 | * Generated from protobuf enum PERSON_UNKNOWN = 0; 18 | */ 19 | const PERSON_UNKNOWN = 0; 20 | /** 21 | * First 22 | * 23 | * Generated from protobuf enum FIRST = 1; 24 | */ 25 | const FIRST = 1; 26 | /** 27 | * Second 28 | * 29 | * Generated from protobuf enum SECOND = 2; 30 | */ 31 | const SECOND = 2; 32 | /** 33 | * Third 34 | * 35 | * Generated from protobuf enum THIRD = 3; 36 | */ 37 | const THIRD = 3; 38 | /** 39 | * Reflexive 40 | * 41 | * Generated from protobuf enum REFLEXIVE_PERSON = 4; 42 | */ 43 | const REFLEXIVE_PERSON = 4; 44 | } 45 | 46 | -------------------------------------------------------------------------------- /src/Google/Cloud/Language/V1beta2/PartOfSpeech_Proper.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Language\V1beta2\PartOfSpeech\Proper 11 | */ 12 | class PartOfSpeech_Proper 13 | { 14 | /** 15 | * Proper is not applicable in the analyzed language or is not predicted. 16 | * 17 | * Generated from protobuf enum PROPER_UNKNOWN = 0; 18 | */ 19 | const PROPER_UNKNOWN = 0; 20 | /** 21 | * Proper 22 | * 23 | * Generated from protobuf enum PROPER = 1; 24 | */ 25 | const PROPER = 1; 26 | /** 27 | * Not proper 28 | * 29 | * Generated from protobuf enum NOT_PROPER = 2; 30 | */ 31 | const NOT_PROPER = 2; 32 | } 33 | 34 | -------------------------------------------------------------------------------- /src/Google/Cloud/Language/V1beta2/PartOfSpeech_Reciprocity.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Language\V1beta2\PartOfSpeech\Reciprocity 11 | */ 12 | class PartOfSpeech_Reciprocity 13 | { 14 | /** 15 | * Reciprocity is not applicable in the analyzed language or is not 16 | * predicted. 17 | * 18 | * Generated from protobuf enum RECIPROCITY_UNKNOWN = 0; 19 | */ 20 | const RECIPROCITY_UNKNOWN = 0; 21 | /** 22 | * Reciprocal 23 | * 24 | * Generated from protobuf enum RECIPROCAL = 1; 25 | */ 26 | const RECIPROCAL = 1; 27 | /** 28 | * Non-reciprocal 29 | * 30 | * Generated from protobuf enum NON_RECIPROCAL = 2; 31 | */ 32 | const NON_RECIPROCAL = 2; 33 | } 34 | 35 | -------------------------------------------------------------------------------- /src/Google/Cloud/Language/V1beta2/PartOfSpeech_Tense.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Language\V1beta2\PartOfSpeech\Tense 11 | */ 12 | class PartOfSpeech_Tense 13 | { 14 | /** 15 | * Tense is not applicable in the analyzed language or is not predicted. 16 | * 17 | * Generated from protobuf enum TENSE_UNKNOWN = 0; 18 | */ 19 | const TENSE_UNKNOWN = 0; 20 | /** 21 | * Conditional 22 | * 23 | * Generated from protobuf enum CONDITIONAL_TENSE = 1; 24 | */ 25 | const CONDITIONAL_TENSE = 1; 26 | /** 27 | * Future 28 | * 29 | * Generated from protobuf enum FUTURE = 2; 30 | */ 31 | const FUTURE = 2; 32 | /** 33 | * Past 34 | * 35 | * Generated from protobuf enum PAST = 3; 36 | */ 37 | const PAST = 3; 38 | /** 39 | * Present 40 | * 41 | * Generated from protobuf enum PRESENT = 4; 42 | */ 43 | const PRESENT = 4; 44 | /** 45 | * Imperfect 46 | * 47 | * Generated from protobuf enum IMPERFECT = 5; 48 | */ 49 | const IMPERFECT = 5; 50 | /** 51 | * Pluperfect 52 | * 53 | * Generated from protobuf enum PLUPERFECT = 6; 54 | */ 55 | const PLUPERFECT = 6; 56 | } 57 | 58 | -------------------------------------------------------------------------------- /src/Google/Cloud/Language/V1beta2/PartOfSpeech_Voice.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Language\V1beta2\PartOfSpeech\Voice 12 | */ 13 | class PartOfSpeech_Voice 14 | { 15 | /** 16 | * Voice is not applicable in the analyzed language or is not predicted. 17 | * 18 | * Generated from protobuf enum VOICE_UNKNOWN = 0; 19 | */ 20 | const VOICE_UNKNOWN = 0; 21 | /** 22 | * Active 23 | * 24 | * Generated from protobuf enum ACTIVE = 1; 25 | */ 26 | const ACTIVE = 1; 27 | /** 28 | * Causative 29 | * 30 | * Generated from protobuf enum CAUSATIVE = 2; 31 | */ 32 | const CAUSATIVE = 2; 33 | /** 34 | * Passive 35 | * 36 | * Generated from protobuf enum PASSIVE = 3; 37 | */ 38 | const PASSIVE = 3; 39 | } 40 | 41 | -------------------------------------------------------------------------------- /src/Google/Cloud/Logging/V2/LogMetric_ApiVersion.php: -------------------------------------------------------------------------------- 1 | Google\Logging\V2\LogMetric\ApiVersion 11 | */ 12 | class LogMetric_ApiVersion 13 | { 14 | /** 15 | * Stackdriver Logging API v2. 16 | * 17 | * Generated from protobuf enum V2 = 0; 18 | */ 19 | const V2 = 0; 20 | /** 21 | * Stackdriver Logging API v1. 22 | * 23 | * Generated from protobuf enum V1 = 1; 24 | */ 25 | const V1 = 1; 26 | } 27 | 28 | -------------------------------------------------------------------------------- /src/Google/Cloud/Logging/V2/LogSink_VersionFormat.php: -------------------------------------------------------------------------------- 1 | Google\Logging\V2\LogSink\VersionFormat 13 | */ 14 | class LogSink_VersionFormat 15 | { 16 | /** 17 | * An unspecified format version that will default to V2. 18 | * 19 | * Generated from protobuf enum VERSION_FORMAT_UNSPECIFIED = 0; 20 | */ 21 | const VERSION_FORMAT_UNSPECIFIED = 0; 22 | /** 23 | * `LogEntry` version 2 format. 24 | * 25 | * Generated from protobuf enum V2 = 1; 26 | */ 27 | const V2 = 1; 28 | /** 29 | * `LogEntry` version 1 format. 30 | * 31 | * Generated from protobuf enum V1 = 2; 32 | */ 33 | const V1 = 2; 34 | } 35 | 36 | -------------------------------------------------------------------------------- /src/Google/Cloud/Logging/V2/WriteLogEntriesResponse.php: -------------------------------------------------------------------------------- 1 | google.logging.v2.WriteLogEntriesResponse 16 | */ 17 | class WriteLogEntriesResponse extends \Google\Protobuf\Internal\Message 18 | { 19 | 20 | public function __construct() { 21 | \GPBMetadata\Google\Logging\V2\Logging::initOnce(); 22 | parent::__construct(); 23 | } 24 | 25 | } 26 | 27 | -------------------------------------------------------------------------------- /src/Google/Cloud/Monitoring/V3/AlertPolicy_ConditionCombinerType.php: -------------------------------------------------------------------------------- 1 | Google\Monitoring\V3\AlertPolicy\ConditionCombinerType 11 | */ 12 | class AlertPolicy_ConditionCombinerType 13 | { 14 | /** 15 | * An unspecified combiner. 16 | * 17 | * Generated from protobuf enum COMBINE_UNSPECIFIED = 0; 18 | */ 19 | const COMBINE_UNSPECIFIED = 0; 20 | /** 21 | * Combine conditions using the logical `AND` operator. An 22 | * incident is created only if all conditions are met 23 | * simultaneously. This combiner is satisfied if all conditions are 24 | * met, even if they are met on completely different resources. 25 | * 26 | * Generated from protobuf enum AND = 1; 27 | */ 28 | const PBAND = 1; 29 | /** 30 | * Combine conditions using the logical `OR` operator. An incident 31 | * is created if any of the listed conditions is met. 32 | * 33 | * Generated from protobuf enum OR = 2; 34 | */ 35 | const PBOR = 2; 36 | /** 37 | * Combine conditions using logical `AND` operator, but unlike the regular 38 | * `AND` option, an incident is created only if all conditions are met 39 | * simultaneously on at least one resource. 40 | * 41 | * Generated from protobuf enum AND_WITH_MATCHING_RESOURCE = 3; 42 | */ 43 | const AND_WITH_MATCHING_RESOURCE = 3; 44 | } 45 | 46 | -------------------------------------------------------------------------------- /src/Google/Cloud/Monitoring/V3/GetGroupRequest.php: -------------------------------------------------------------------------------- 1 | google.monitoring.v3.GetGroupRequest 15 | */ 16 | class GetGroupRequest extends \Google\Protobuf\Internal\Message 17 | { 18 | /** 19 | * The group to retrieve. The format is 20 | * `"projects/{project_id_or_number}/groups/{group_id}"`. 21 | * 22 | * Generated from protobuf field string name = 3; 23 | */ 24 | private $name = ''; 25 | 26 | public function __construct() { 27 | \GPBMetadata\Google\Monitoring\V3\GroupService::initOnce(); 28 | parent::__construct(); 29 | } 30 | 31 | /** 32 | * The group to retrieve. The format is 33 | * `"projects/{project_id_or_number}/groups/{group_id}"`. 34 | * 35 | * Generated from protobuf field string name = 3; 36 | * @return string 37 | */ 38 | public function getName() 39 | { 40 | return $this->name; 41 | } 42 | 43 | /** 44 | * The group to retrieve. The format is 45 | * `"projects/{project_id_or_number}/groups/{group_id}"`. 46 | * 47 | * Generated from protobuf field string name = 3; 48 | * @param string $var 49 | * @return $this 50 | */ 51 | public function setName($var) 52 | { 53 | GPBUtil::checkString($var, True); 54 | $this->name = $var; 55 | 56 | return $this; 57 | } 58 | 59 | } 60 | 61 | -------------------------------------------------------------------------------- /src/Google/Cloud/Monitoring/V3/GroupResourceType.php: -------------------------------------------------------------------------------- 1 | Google\Monitoring\V3\GroupResourceType 13 | */ 14 | class GroupResourceType 15 | { 16 | /** 17 | * Default value (not valid). 18 | * 19 | * Generated from protobuf enum RESOURCE_TYPE_UNSPECIFIED = 0; 20 | */ 21 | const RESOURCE_TYPE_UNSPECIFIED = 0; 22 | /** 23 | * A group of instances (could be either GCE or AWS_EC2). 24 | * 25 | * Generated from protobuf enum INSTANCE = 1; 26 | */ 27 | const INSTANCE = 1; 28 | /** 29 | * A group of AWS load balancers. 30 | * 31 | * Generated from protobuf enum AWS_ELB_LOAD_BALANCER = 2; 32 | */ 33 | const AWS_ELB_LOAD_BALANCER = 2; 34 | } 35 | 36 | -------------------------------------------------------------------------------- /src/Google/Cloud/Monitoring/V3/ListTimeSeriesRequest_TimeSeriesView.php: -------------------------------------------------------------------------------- 1 | Google\Monitoring\V3\ListTimeSeriesRequest\TimeSeriesView 11 | */ 12 | class ListTimeSeriesRequest_TimeSeriesView 13 | { 14 | /** 15 | * Returns the identity of the metric(s), the time series, 16 | * and the time series data. 17 | * 18 | * Generated from protobuf enum FULL = 0; 19 | */ 20 | const FULL = 0; 21 | /** 22 | * Returns the identity of the metric and the time series resource, 23 | * but not the time series data. 24 | * 25 | * Generated from protobuf enum HEADERS = 1; 26 | */ 27 | const HEADERS = 1; 28 | } 29 | 30 | -------------------------------------------------------------------------------- /src/Google/Cloud/Monitoring/V3/UptimeCheckConfig_ContentMatcher.php: -------------------------------------------------------------------------------- 1 | google.monitoring.v3.UptimeCheckConfig.ContentMatcher 17 | */ 18 | class UptimeCheckConfig_ContentMatcher extends \Google\Protobuf\Internal\Message 19 | { 20 | /** 21 | * String content to match 22 | * 23 | * Generated from protobuf field string content = 1; 24 | */ 25 | private $content = ''; 26 | 27 | public function __construct() { 28 | \GPBMetadata\Google\Monitoring\V3\Uptime::initOnce(); 29 | parent::__construct(); 30 | } 31 | 32 | /** 33 | * String content to match 34 | * 35 | * Generated from protobuf field string content = 1; 36 | * @return string 37 | */ 38 | public function getContent() 39 | { 40 | return $this->content; 41 | } 42 | 43 | /** 44 | * String content to match 45 | * 46 | * Generated from protobuf field string content = 1; 47 | * @param string $var 48 | * @return $this 49 | */ 50 | public function setContent($var) 51 | { 52 | GPBUtil::checkString($var, True); 53 | $this->content = $var; 54 | 55 | return $this; 56 | } 57 | 58 | } 59 | 60 | -------------------------------------------------------------------------------- /src/Google/Cloud/Monitoring/V3/UptimeCheckRegion.php: -------------------------------------------------------------------------------- 1 | Google\Monitoring\V3\UptimeCheckRegion 11 | */ 12 | class UptimeCheckRegion 13 | { 14 | /** 15 | * Default value if no region is specified. Will result in uptime checks 16 | * running from all regions. 17 | * 18 | * Generated from protobuf enum REGION_UNSPECIFIED = 0; 19 | */ 20 | const REGION_UNSPECIFIED = 0; 21 | /** 22 | * Allows checks to run from locations within the United States of America. 23 | * 24 | * Generated from protobuf enum USA = 1; 25 | */ 26 | const USA = 1; 27 | /** 28 | * Allows checks to run from locations within the continent of Europe. 29 | * 30 | * Generated from protobuf enum EUROPE = 2; 31 | */ 32 | const EUROPE = 2; 33 | /** 34 | * Allows checks to run from locations within the continent of South 35 | * America. 36 | * 37 | * Generated from protobuf enum SOUTH_AMERICA = 3; 38 | */ 39 | const SOUTH_AMERICA = 3; 40 | /** 41 | * Allows checks to run from locations within the Asia Pacific area (ex: 42 | * Singapore). 43 | * 44 | * Generated from protobuf enum ASIA_PACIFIC = 4; 45 | */ 46 | const ASIA_PACIFIC = 4; 47 | } 48 | 49 | -------------------------------------------------------------------------------- /src/Google/Cloud/OsLogin/V1beta/GetLoginProfileRequest.php: -------------------------------------------------------------------------------- 1 | google.cloud.oslogin.v1beta.GetLoginProfileRequest 15 | */ 16 | class GetLoginProfileRequest extends \Google\Protobuf\Internal\Message 17 | { 18 | /** 19 | * The unique ID for the user in format `users/{user}`. 20 | * 21 | * Generated from protobuf field string name = 1; 22 | */ 23 | private $name = ''; 24 | 25 | public function __construct() { 26 | \GPBMetadata\Google\Cloud\Oslogin\V1Beta\Oslogin::initOnce(); 27 | parent::__construct(); 28 | } 29 | 30 | /** 31 | * The unique ID for the user in format `users/{user}`. 32 | * 33 | * Generated from protobuf field string name = 1; 34 | * @return string 35 | */ 36 | public function getName() 37 | { 38 | return $this->name; 39 | } 40 | 41 | /** 42 | * The unique ID for the user in format `users/{user}`. 43 | * 44 | * Generated from protobuf field string name = 1; 45 | * @param string $var 46 | * @return $this 47 | */ 48 | public function setName($var) 49 | { 50 | GPBUtil::checkString($var, True); 51 | $this->name = $var; 52 | 53 | return $this; 54 | } 55 | 56 | } 57 | 58 | -------------------------------------------------------------------------------- /src/Google/Cloud/PubSub/V1/DeleteSnapshotRequest.php: -------------------------------------------------------------------------------- 1 | google.pubsub.v1.DeleteSnapshotRequest 15 | */ 16 | class DeleteSnapshotRequest extends \Google\Protobuf\Internal\Message 17 | { 18 | /** 19 | * The name of the snapshot to delete. 20 | * Format is `projects/{project}/snapshots/{snap}`. 21 | * 22 | * Generated from protobuf field string snapshot = 1; 23 | */ 24 | private $snapshot = ''; 25 | 26 | public function __construct() { 27 | \GPBMetadata\Google\Pubsub\V1\Pubsub::initOnce(); 28 | parent::__construct(); 29 | } 30 | 31 | /** 32 | * The name of the snapshot to delete. 33 | * Format is `projects/{project}/snapshots/{snap}`. 34 | * 35 | * Generated from protobuf field string snapshot = 1; 36 | * @return string 37 | */ 38 | public function getSnapshot() 39 | { 40 | return $this->snapshot; 41 | } 42 | 43 | /** 44 | * The name of the snapshot to delete. 45 | * Format is `projects/{project}/snapshots/{snap}`. 46 | * 47 | * Generated from protobuf field string snapshot = 1; 48 | * @param string $var 49 | * @return $this 50 | */ 51 | public function setSnapshot($var) 52 | { 53 | GPBUtil::checkString($var, True); 54 | $this->snapshot = $var; 55 | 56 | return $this; 57 | } 58 | 59 | } 60 | 61 | -------------------------------------------------------------------------------- /src/Google/Cloud/PubSub/V1/DeleteTopicRequest.php: -------------------------------------------------------------------------------- 1 | google.pubsub.v1.DeleteTopicRequest 15 | */ 16 | class DeleteTopicRequest extends \Google\Protobuf\Internal\Message 17 | { 18 | /** 19 | * Name of the topic to delete. 20 | * Format is `projects/{project}/topics/{topic}`. 21 | * 22 | * Generated from protobuf field string topic = 1; 23 | */ 24 | private $topic = ''; 25 | 26 | public function __construct() { 27 | \GPBMetadata\Google\Pubsub\V1\Pubsub::initOnce(); 28 | parent::__construct(); 29 | } 30 | 31 | /** 32 | * Name of the topic to delete. 33 | * Format is `projects/{project}/topics/{topic}`. 34 | * 35 | * Generated from protobuf field string topic = 1; 36 | * @return string 37 | */ 38 | public function getTopic() 39 | { 40 | return $this->topic; 41 | } 42 | 43 | /** 44 | * Name of the topic to delete. 45 | * Format is `projects/{project}/topics/{topic}`. 46 | * 47 | * Generated from protobuf field string topic = 1; 48 | * @param string $var 49 | * @return $this 50 | */ 51 | public function setTopic($var) 52 | { 53 | GPBUtil::checkString($var, True); 54 | $this->topic = $var; 55 | 56 | return $this; 57 | } 58 | 59 | } 60 | 61 | -------------------------------------------------------------------------------- /src/Google/Cloud/PubSub/V1/GetTopicRequest.php: -------------------------------------------------------------------------------- 1 | google.pubsub.v1.GetTopicRequest 15 | */ 16 | class GetTopicRequest extends \Google\Protobuf\Internal\Message 17 | { 18 | /** 19 | * The name of the topic to get. 20 | * Format is `projects/{project}/topics/{topic}`. 21 | * 22 | * Generated from protobuf field string topic = 1; 23 | */ 24 | private $topic = ''; 25 | 26 | public function __construct() { 27 | \GPBMetadata\Google\Pubsub\V1\Pubsub::initOnce(); 28 | parent::__construct(); 29 | } 30 | 31 | /** 32 | * The name of the topic to get. 33 | * Format is `projects/{project}/topics/{topic}`. 34 | * 35 | * Generated from protobuf field string topic = 1; 36 | * @return string 37 | */ 38 | public function getTopic() 39 | { 40 | return $this->topic; 41 | } 42 | 43 | /** 44 | * The name of the topic to get. 45 | * Format is `projects/{project}/topics/{topic}`. 46 | * 47 | * Generated from protobuf field string topic = 1; 48 | * @param string $var 49 | * @return $this 50 | */ 51 | public function setTopic($var) 52 | { 53 | GPBUtil::checkString($var, True); 54 | $this->topic = $var; 55 | 56 | return $this; 57 | } 58 | 59 | } 60 | 61 | -------------------------------------------------------------------------------- /src/Google/Cloud/PubSub/V1/SeekResponse.php: -------------------------------------------------------------------------------- 1 | google.pubsub.v1.SeekResponse 13 | */ 14 | class SeekResponse extends \Google\Protobuf\Internal\Message 15 | { 16 | 17 | public function __construct() { 18 | \GPBMetadata\Google\Pubsub\V1\Pubsub::initOnce(); 19 | parent::__construct(); 20 | } 21 | 22 | } 23 | 24 | -------------------------------------------------------------------------------- /src/Google/Cloud/Redis/V1beta1/Instance_Tier.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Redis\V1beta1\Instance\Tier 11 | */ 12 | class Instance_Tier 13 | { 14 | /** 15 | * Not set. 16 | * 17 | * Generated from protobuf enum TIER_UNSPECIFIED = 0; 18 | */ 19 | const TIER_UNSPECIFIED = 0; 20 | /** 21 | * BASIC tier: standalone instance 22 | * 23 | * Generated from protobuf enum BASIC = 1; 24 | */ 25 | const BASIC = 1; 26 | /** 27 | * STANDARD_HA tier: highly available primary/replica instances 28 | * 29 | * Generated from protobuf enum STANDARD_HA = 3; 30 | */ 31 | const STANDARD_HA = 3; 32 | } 33 | 34 | -------------------------------------------------------------------------------- /src/Google/Cloud/Redis/V1beta1/ZoneMetadata.php: -------------------------------------------------------------------------------- 1 | google.cloud.redis.v1beta1.ZoneMetadata 16 | */ 17 | class ZoneMetadata extends \Google\Protobuf\Internal\Message 18 | { 19 | 20 | public function __construct() { 21 | \GPBMetadata\Google\Cloud\Redis\V1Beta1\CloudRedis::initOnce(); 22 | parent::__construct(); 23 | } 24 | 25 | } 26 | 27 | -------------------------------------------------------------------------------- /src/Google/Cloud/Spanner/Admin/Database/V1/Database_State.php: -------------------------------------------------------------------------------- 1 | Google\Spanner\Admin\Database\V1\Database\State 11 | */ 12 | class Database_State 13 | { 14 | /** 15 | * Not specified. 16 | * 17 | * Generated from protobuf enum STATE_UNSPECIFIED = 0; 18 | */ 19 | const STATE_UNSPECIFIED = 0; 20 | /** 21 | * The database is still being created. Operations on the database may fail 22 | * with `FAILED_PRECONDITION` in this state. 23 | * 24 | * Generated from protobuf enum CREATING = 1; 25 | */ 26 | const CREATING = 1; 27 | /** 28 | * The database is fully created and ready for use. 29 | * 30 | * Generated from protobuf enum READY = 2; 31 | */ 32 | const READY = 2; 33 | } 34 | 35 | -------------------------------------------------------------------------------- /src/Google/Cloud/Spanner/Admin/Database/V1/DropDatabaseRequest.php: -------------------------------------------------------------------------------- 1 | google.spanner.admin.database.v1.DropDatabaseRequest 15 | */ 16 | class DropDatabaseRequest extends \Google\Protobuf\Internal\Message 17 | { 18 | /** 19 | * Required. The database to be dropped. 20 | * 21 | * Generated from protobuf field string database = 1; 22 | */ 23 | private $database = ''; 24 | 25 | public function __construct() { 26 | \GPBMetadata\Google\Spanner\Admin\Database\V1\SpannerDatabaseAdmin::initOnce(); 27 | parent::__construct(); 28 | } 29 | 30 | /** 31 | * Required. The database to be dropped. 32 | * 33 | * Generated from protobuf field string database = 1; 34 | * @return string 35 | */ 36 | public function getDatabase() 37 | { 38 | return $this->database; 39 | } 40 | 41 | /** 42 | * Required. The database to be dropped. 43 | * 44 | * Generated from protobuf field string database = 1; 45 | * @param string $var 46 | * @return $this 47 | */ 48 | public function setDatabase($var) 49 | { 50 | GPBUtil::checkString($var, True); 51 | $this->database = $var; 52 | 53 | return $this; 54 | } 55 | 56 | } 57 | 58 | -------------------------------------------------------------------------------- /src/Google/Cloud/Spanner/Admin/Instance/V1/Instance_State.php: -------------------------------------------------------------------------------- 1 | Google\Spanner\Admin\Instance\V1\Instance\State 11 | */ 12 | class Instance_State 13 | { 14 | /** 15 | * Not specified. 16 | * 17 | * Generated from protobuf enum STATE_UNSPECIFIED = 0; 18 | */ 19 | const STATE_UNSPECIFIED = 0; 20 | /** 21 | * The instance is still being created. Resources may not be 22 | * available yet, and operations such as database creation may not 23 | * work. 24 | * 25 | * Generated from protobuf enum CREATING = 1; 26 | */ 27 | const CREATING = 1; 28 | /** 29 | * The instance is fully created and ready to do work such as 30 | * creating databases. 31 | * 32 | * Generated from protobuf enum READY = 2; 33 | */ 34 | const READY = 2; 35 | } 36 | 37 | -------------------------------------------------------------------------------- /src/Google/Cloud/Spanner/V1/DeleteSessionRequest.php: -------------------------------------------------------------------------------- 1 | google.spanner.v1.DeleteSessionRequest 15 | */ 16 | class DeleteSessionRequest extends \Google\Protobuf\Internal\Message 17 | { 18 | /** 19 | * Required. The name of the session to delete. 20 | * 21 | * Generated from protobuf field string name = 1; 22 | */ 23 | private $name = ''; 24 | 25 | public function __construct() { 26 | \GPBMetadata\Google\Spanner\V1\Spanner::initOnce(); 27 | parent::__construct(); 28 | } 29 | 30 | /** 31 | * Required. The name of the session to delete. 32 | * 33 | * Generated from protobuf field string name = 1; 34 | * @return string 35 | */ 36 | public function getName() 37 | { 38 | return $this->name; 39 | } 40 | 41 | /** 42 | * Required. The name of the session to delete. 43 | * 44 | * Generated from protobuf field string name = 1; 45 | * @param string $var 46 | * @return $this 47 | */ 48 | public function setName($var) 49 | { 50 | GPBUtil::checkString($var, True); 51 | $this->name = $var; 52 | 53 | return $this; 54 | } 55 | 56 | } 57 | 58 | -------------------------------------------------------------------------------- /src/Google/Cloud/Spanner/V1/ExecuteSqlRequest_QueryMode.php: -------------------------------------------------------------------------------- 1 | Google\Spanner\V1\ExecuteSqlRequest\QueryMode 11 | */ 12 | class ExecuteSqlRequest_QueryMode 13 | { 14 | /** 15 | * The default mode where only the query result, without any information 16 | * about the query plan is returned. 17 | * 18 | * Generated from protobuf enum NORMAL = 0; 19 | */ 20 | const NORMAL = 0; 21 | /** 22 | * This mode returns only the query plan, without any result rows or 23 | * execution statistics information. 24 | * 25 | * Generated from protobuf enum PLAN = 1; 26 | */ 27 | const PLAN = 1; 28 | /** 29 | * This mode returns both the query plan and the execution statistics along 30 | * with the result rows. 31 | * 32 | * Generated from protobuf enum PROFILE = 2; 33 | */ 34 | const PROFILE = 2; 35 | } 36 | 37 | -------------------------------------------------------------------------------- /src/Google/Cloud/Spanner/V1/GetSessionRequest.php: -------------------------------------------------------------------------------- 1 | google.spanner.v1.GetSessionRequest 15 | */ 16 | class GetSessionRequest extends \Google\Protobuf\Internal\Message 17 | { 18 | /** 19 | * Required. The name of the session to retrieve. 20 | * 21 | * Generated from protobuf field string name = 1; 22 | */ 23 | private $name = ''; 24 | 25 | public function __construct() { 26 | \GPBMetadata\Google\Spanner\V1\Spanner::initOnce(); 27 | parent::__construct(); 28 | } 29 | 30 | /** 31 | * Required. The name of the session to retrieve. 32 | * 33 | * Generated from protobuf field string name = 1; 34 | * @return string 35 | */ 36 | public function getName() 37 | { 38 | return $this->name; 39 | } 40 | 41 | /** 42 | * Required. The name of the session to retrieve. 43 | * 44 | * Generated from protobuf field string name = 1; 45 | * @param string $var 46 | * @return $this 47 | */ 48 | public function setName($var) 49 | { 50 | GPBUtil::checkString($var, True); 51 | $this->name = $var; 52 | 53 | return $this; 54 | } 55 | 56 | } 57 | 58 | -------------------------------------------------------------------------------- /src/Google/Cloud/Spanner/V1/PlanNode_Kind.php: -------------------------------------------------------------------------------- 1 | Google\Spanner\V1\PlanNode\Kind 12 | */ 13 | class PlanNode_Kind 14 | { 15 | /** 16 | * Not specified. 17 | * 18 | * Generated from protobuf enum KIND_UNSPECIFIED = 0; 19 | */ 20 | const KIND_UNSPECIFIED = 0; 21 | /** 22 | * Denotes a Relational operator node in the expression tree. Relational 23 | * operators represent iterative processing of rows during query execution. 24 | * For example, a `TableScan` operation that reads rows from a table. 25 | * 26 | * Generated from protobuf enum RELATIONAL = 1; 27 | */ 28 | const RELATIONAL = 1; 29 | /** 30 | * Denotes a Scalar node in the expression tree. Scalar nodes represent 31 | * non-iterable entities in the query plan. For example, constants or 32 | * arithmetic operators appearing inside predicate expressions or references 33 | * to column names. 34 | * 35 | * Generated from protobuf enum SCALAR = 2; 36 | */ 37 | const SCALAR = 2; 38 | } 39 | 40 | -------------------------------------------------------------------------------- /src/Google/Cloud/Spanner/V1/TransactionOptions_ReadWrite.php: -------------------------------------------------------------------------------- 1 | google.spanner.v1.TransactionOptions.ReadWrite 16 | */ 17 | class TransactionOptions_ReadWrite extends \Google\Protobuf\Internal\Message 18 | { 19 | 20 | public function __construct() { 21 | \GPBMetadata\Google\Spanner\V1\Transaction::initOnce(); 22 | parent::__construct(); 23 | } 24 | 25 | } 26 | 27 | -------------------------------------------------------------------------------- /src/Google/Cloud/Speech/V1/StreamingRecognizeResponse_SpeechEventType.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Speech\V1\StreamingRecognizeResponse\SpeechEventType 11 | */ 12 | class StreamingRecognizeResponse_SpeechEventType 13 | { 14 | /** 15 | * No speech event specified. 16 | * 17 | * Generated from protobuf enum SPEECH_EVENT_UNSPECIFIED = 0; 18 | */ 19 | const SPEECH_EVENT_UNSPECIFIED = 0; 20 | /** 21 | * This event indicates that the server has detected the end of the user's 22 | * speech utterance and expects no additional speech. Therefore, the server 23 | * will not process additional audio (although it may subsequently return 24 | * additional results). The client should stop sending additional audio 25 | * data, half-close the gRPC connection, and wait for any additional results 26 | * until the server closes the gRPC connection. This event is only sent if 27 | * `single_utterance` was set to `true`, and is not used otherwise. 28 | * 29 | * Generated from protobuf enum END_OF_SINGLE_UTTERANCE = 1; 30 | */ 31 | const END_OF_SINGLE_UTTERANCE = 1; 32 | } 33 | 34 | -------------------------------------------------------------------------------- /src/Google/Cloud/Speech/V1p1beta1/RecognitionMetadata_MicrophoneDistance.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Speech\V1p1beta1\RecognitionMetadata\MicrophoneDistance 11 | */ 12 | class RecognitionMetadata_MicrophoneDistance 13 | { 14 | /** 15 | * Audio type is not known. 16 | * 17 | * Generated from protobuf enum MICROPHONE_DISTANCE_UNSPECIFIED = 0; 18 | */ 19 | const MICROPHONE_DISTANCE_UNSPECIFIED = 0; 20 | /** 21 | * The audio was captured from a closely placed microphone. Eg. phone, 22 | * dictaphone, or handheld microphone. Generally if there speaker is within 23 | * 1 meter of the microphone. 24 | * 25 | * Generated from protobuf enum NEARFIELD = 1; 26 | */ 27 | const NEARFIELD = 1; 28 | /** 29 | * The speaker if within 3 meters of the microphone. 30 | * 31 | * Generated from protobuf enum MIDFIELD = 2; 32 | */ 33 | const MIDFIELD = 2; 34 | /** 35 | * The speaker is more than 3 meters away from the microphone. 36 | * 37 | * Generated from protobuf enum FARFIELD = 3; 38 | */ 39 | const FARFIELD = 3; 40 | } 41 | 42 | -------------------------------------------------------------------------------- /src/Google/Cloud/Speech/V1p1beta1/RecognitionMetadata_OriginalMediaType.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Speech\V1p1beta1\RecognitionMetadata\OriginalMediaType 11 | */ 12 | class RecognitionMetadata_OriginalMediaType 13 | { 14 | /** 15 | * Unknown original media type. 16 | * 17 | * Generated from protobuf enum ORIGINAL_MEDIA_TYPE_UNSPECIFIED = 0; 18 | */ 19 | const ORIGINAL_MEDIA_TYPE_UNSPECIFIED = 0; 20 | /** 21 | * The speech data is an audio recording. 22 | * 23 | * Generated from protobuf enum AUDIO = 1; 24 | */ 25 | const AUDIO = 1; 26 | /** 27 | * The speech data originally recorded on a video. 28 | * 29 | * Generated from protobuf enum VIDEO = 2; 30 | */ 31 | const VIDEO = 2; 32 | } 33 | 34 | -------------------------------------------------------------------------------- /src/Google/Cloud/Speech/V1p1beta1/StreamingRecognizeResponse_SpeechEventType.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Speech\V1p1beta1\StreamingRecognizeResponse\SpeechEventType 11 | */ 12 | class StreamingRecognizeResponse_SpeechEventType 13 | { 14 | /** 15 | * No speech event specified. 16 | * 17 | * Generated from protobuf enum SPEECH_EVENT_UNSPECIFIED = 0; 18 | */ 19 | const SPEECH_EVENT_UNSPECIFIED = 0; 20 | /** 21 | * This event indicates that the server has detected the end of the user's 22 | * speech utterance and expects no additional speech. Therefore, the server 23 | * will not process additional audio (although it may subsequently return 24 | * additional results). The client should stop sending additional audio 25 | * data, half-close the gRPC connection, and wait for any additional results 26 | * until the server closes the gRPC connection. This event is only sent if 27 | * `single_utterance` was set to `true`, and is not used otherwise. 28 | * 29 | * Generated from protobuf enum END_OF_SINGLE_UTTERANCE = 1; 30 | */ 31 | const END_OF_SINGLE_UTTERANCE = 1; 32 | } 33 | 34 | -------------------------------------------------------------------------------- /src/Google/Cloud/Tasks/V2beta2/HttpMethod.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Tasks\V2beta2\HttpMethod 11 | */ 12 | class HttpMethod 13 | { 14 | /** 15 | * HTTP method unspecified 16 | * 17 | * Generated from protobuf enum HTTP_METHOD_UNSPECIFIED = 0; 18 | */ 19 | const HTTP_METHOD_UNSPECIFIED = 0; 20 | /** 21 | * HTTP Post 22 | * 23 | * Generated from protobuf enum POST = 1; 24 | */ 25 | const POST = 1; 26 | /** 27 | * HTTP Get 28 | * 29 | * Generated from protobuf enum GET = 2; 30 | */ 31 | const GET = 2; 32 | /** 33 | * HTTP Head 34 | * 35 | * Generated from protobuf enum HEAD = 3; 36 | */ 37 | const HEAD = 3; 38 | /** 39 | * HTTP Put 40 | * 41 | * Generated from protobuf enum PUT = 4; 42 | */ 43 | const PUT = 4; 44 | /** 45 | * HTTP Delete 46 | * 47 | * Generated from protobuf enum DELETE = 5; 48 | */ 49 | const DELETE = 5; 50 | } 51 | 52 | -------------------------------------------------------------------------------- /src/Google/Cloud/Tasks/V2beta2/PullTarget.php: -------------------------------------------------------------------------------- 1 | google.cloud.tasks.v2beta2.PullTarget 15 | */ 16 | class PullTarget extends \Google\Protobuf\Internal\Message 17 | { 18 | 19 | public function __construct() { 20 | \GPBMetadata\Google\Cloud\Tasks\V2Beta2\Target::initOnce(); 21 | parent::__construct(); 22 | } 23 | 24 | } 25 | 26 | -------------------------------------------------------------------------------- /src/Google/Cloud/Trace/V2/Span_Link_Type.php: -------------------------------------------------------------------------------- 1 | Google\Devtools\Cloudtrace\V2\Span\Link\Type 12 | */ 13 | class Span_Link_Type 14 | { 15 | /** 16 | * The relationship of the two spans is unknown. 17 | * 18 | * Generated from protobuf enum TYPE_UNSPECIFIED = 0; 19 | */ 20 | const TYPE_UNSPECIFIED = 0; 21 | /** 22 | * The linked span is a child of the current span. 23 | * 24 | * Generated from protobuf enum CHILD_LINKED_SPAN = 1; 25 | */ 26 | const CHILD_LINKED_SPAN = 1; 27 | /** 28 | * The linked span is a parent of the current span. 29 | * 30 | * Generated from protobuf enum PARENT_LINKED_SPAN = 2; 31 | */ 32 | const PARENT_LINKED_SPAN = 2; 33 | } 34 | 35 | -------------------------------------------------------------------------------- /src/Google/Cloud/Trace/V2/Span_TimeEvent_MessageEvent_Type.php: -------------------------------------------------------------------------------- 1 | Google\Devtools\Cloudtrace\V2\Span\TimeEvent\MessageEvent\Type 11 | */ 12 | class Span_TimeEvent_MessageEvent_Type 13 | { 14 | /** 15 | * Unknown event type. 16 | * 17 | * Generated from protobuf enum TYPE_UNSPECIFIED = 0; 18 | */ 19 | const TYPE_UNSPECIFIED = 0; 20 | /** 21 | * Indicates a sent message. 22 | * 23 | * Generated from protobuf enum SENT = 1; 24 | */ 25 | const SENT = 1; 26 | /** 27 | * Indicates a received message. 28 | * 29 | * Generated from protobuf enum RECEIVED = 2; 30 | */ 31 | const RECEIVED = 2; 32 | } 33 | 34 | -------------------------------------------------------------------------------- /src/Google/Cloud/VideoIntelligence/V1/Feature.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Videointelligence\V1\Feature 11 | */ 12 | class Feature 13 | { 14 | /** 15 | * Unspecified. 16 | * 17 | * Generated from protobuf enum FEATURE_UNSPECIFIED = 0; 18 | */ 19 | const FEATURE_UNSPECIFIED = 0; 20 | /** 21 | * Label detection. Detect objects, such as dog or flower. 22 | * 23 | * Generated from protobuf enum LABEL_DETECTION = 1; 24 | */ 25 | const LABEL_DETECTION = 1; 26 | /** 27 | * Shot change detection. 28 | * 29 | * Generated from protobuf enum SHOT_CHANGE_DETECTION = 2; 30 | */ 31 | const SHOT_CHANGE_DETECTION = 2; 32 | /** 33 | * Explicit content detection. 34 | * 35 | * Generated from protobuf enum EXPLICIT_CONTENT_DETECTION = 3; 36 | */ 37 | const EXPLICIT_CONTENT_DETECTION = 3; 38 | /** 39 | * Human face detection and tracking. 40 | * 41 | * Generated from protobuf enum FACE_DETECTION = 4; 42 | */ 43 | const FACE_DETECTION = 4; 44 | } 45 | 46 | -------------------------------------------------------------------------------- /src/Google/Cloud/VideoIntelligence/V1/LabelDetectionMode.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Videointelligence\V1\LabelDetectionMode 11 | */ 12 | class LabelDetectionMode 13 | { 14 | /** 15 | * Unspecified. 16 | * 17 | * Generated from protobuf enum LABEL_DETECTION_MODE_UNSPECIFIED = 0; 18 | */ 19 | const LABEL_DETECTION_MODE_UNSPECIFIED = 0; 20 | /** 21 | * Detect shot-level labels. 22 | * 23 | * Generated from protobuf enum SHOT_MODE = 1; 24 | */ 25 | const SHOT_MODE = 1; 26 | /** 27 | * Detect frame-level labels. 28 | * 29 | * Generated from protobuf enum FRAME_MODE = 2; 30 | */ 31 | const FRAME_MODE = 2; 32 | /** 33 | * Detect both shot-level and frame-level labels. 34 | * 35 | * Generated from protobuf enum SHOT_AND_FRAME_MODE = 3; 36 | */ 37 | const SHOT_AND_FRAME_MODE = 3; 38 | } 39 | 40 | -------------------------------------------------------------------------------- /src/Google/Cloud/VideoIntelligence/V1/Likelihood.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Videointelligence\V1\Likelihood 11 | */ 12 | class Likelihood 13 | { 14 | /** 15 | * Unspecified likelihood. 16 | * 17 | * Generated from protobuf enum LIKELIHOOD_UNSPECIFIED = 0; 18 | */ 19 | const LIKELIHOOD_UNSPECIFIED = 0; 20 | /** 21 | * Very unlikely. 22 | * 23 | * Generated from protobuf enum VERY_UNLIKELY = 1; 24 | */ 25 | const VERY_UNLIKELY = 1; 26 | /** 27 | * Unlikely. 28 | * 29 | * Generated from protobuf enum UNLIKELY = 2; 30 | */ 31 | const UNLIKELY = 2; 32 | /** 33 | * Possible. 34 | * 35 | * Generated from protobuf enum POSSIBLE = 3; 36 | */ 37 | const POSSIBLE = 3; 38 | /** 39 | * Likely. 40 | * 41 | * Generated from protobuf enum LIKELY = 4; 42 | */ 43 | const LIKELY = 4; 44 | /** 45 | * Very likely. 46 | * 47 | * Generated from protobuf enum VERY_LIKELY = 5; 48 | */ 49 | const VERY_LIKELY = 5; 50 | } 51 | 52 | -------------------------------------------------------------------------------- /src/Google/Cloud/VideoIntelligence/V1beta1/Feature.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Videointelligence\V1beta1\Feature 11 | */ 12 | class Feature 13 | { 14 | /** 15 | * Unspecified. 16 | * 17 | * Generated from protobuf enum FEATURE_UNSPECIFIED = 0; 18 | */ 19 | const FEATURE_UNSPECIFIED = 0; 20 | /** 21 | * Label detection. Detect objects, such as dog or flower. 22 | * 23 | * Generated from protobuf enum LABEL_DETECTION = 1; 24 | */ 25 | const LABEL_DETECTION = 1; 26 | /** 27 | * Human face detection and tracking. 28 | * 29 | * Generated from protobuf enum FACE_DETECTION = 2; 30 | */ 31 | const FACE_DETECTION = 2; 32 | /** 33 | * Shot change detection. 34 | * 35 | * Generated from protobuf enum SHOT_CHANGE_DETECTION = 3; 36 | */ 37 | const SHOT_CHANGE_DETECTION = 3; 38 | /** 39 | * Safe search detection. 40 | * 41 | * Generated from protobuf enum SAFE_SEARCH_DETECTION = 4; 42 | */ 43 | const SAFE_SEARCH_DETECTION = 4; 44 | } 45 | 46 | -------------------------------------------------------------------------------- /src/Google/Cloud/VideoIntelligence/V1beta1/LabelDetectionMode.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Videointelligence\V1beta1\LabelDetectionMode 11 | */ 12 | class LabelDetectionMode 13 | { 14 | /** 15 | * Unspecified. 16 | * 17 | * Generated from protobuf enum LABEL_DETECTION_MODE_UNSPECIFIED = 0; 18 | */ 19 | const LABEL_DETECTION_MODE_UNSPECIFIED = 0; 20 | /** 21 | * Detect shot-level labels. 22 | * 23 | * Generated from protobuf enum SHOT_MODE = 1; 24 | */ 25 | const SHOT_MODE = 1; 26 | /** 27 | * Detect frame-level labels. 28 | * 29 | * Generated from protobuf enum FRAME_MODE = 2; 30 | */ 31 | const FRAME_MODE = 2; 32 | /** 33 | * Detect both shot-level and frame-level labels. 34 | * 35 | * Generated from protobuf enum SHOT_AND_FRAME_MODE = 3; 36 | */ 37 | const SHOT_AND_FRAME_MODE = 3; 38 | } 39 | 40 | -------------------------------------------------------------------------------- /src/Google/Cloud/VideoIntelligence/V1beta1/LabelLevel.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Videointelligence\V1beta1\LabelLevel 11 | */ 12 | class LabelLevel 13 | { 14 | /** 15 | * Unspecified. 16 | * 17 | * Generated from protobuf enum LABEL_LEVEL_UNSPECIFIED = 0; 18 | */ 19 | const LABEL_LEVEL_UNSPECIFIED = 0; 20 | /** 21 | * Video-level. Corresponds to the whole video. 22 | * 23 | * Generated from protobuf enum VIDEO_LEVEL = 1; 24 | */ 25 | const VIDEO_LEVEL = 1; 26 | /** 27 | * Segment-level. Corresponds to one of `AnnotateSpec.segments`. 28 | * 29 | * Generated from protobuf enum SEGMENT_LEVEL = 2; 30 | */ 31 | const SEGMENT_LEVEL = 2; 32 | /** 33 | * Shot-level. Corresponds to a single shot (i.e. a series of frames 34 | * without a major camera position or background change). 35 | * 36 | * Generated from protobuf enum SHOT_LEVEL = 3; 37 | */ 38 | const SHOT_LEVEL = 3; 39 | /** 40 | * Frame-level. Corresponds to a single video frame. 41 | * 42 | * Generated from protobuf enum FRAME_LEVEL = 4; 43 | */ 44 | const FRAME_LEVEL = 4; 45 | } 46 | 47 | -------------------------------------------------------------------------------- /src/Google/Cloud/VideoIntelligence/V1beta1/Likelihood.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Videointelligence\V1beta1\Likelihood 11 | */ 12 | class Likelihood 13 | { 14 | /** 15 | * Unknown likelihood. 16 | * 17 | * Generated from protobuf enum UNKNOWN = 0; 18 | */ 19 | const UNKNOWN = 0; 20 | /** 21 | * Very unlikely. 22 | * 23 | * Generated from protobuf enum VERY_UNLIKELY = 1; 24 | */ 25 | const VERY_UNLIKELY = 1; 26 | /** 27 | * Unlikely. 28 | * 29 | * Generated from protobuf enum UNLIKELY = 2; 30 | */ 31 | const UNLIKELY = 2; 32 | /** 33 | * Possible. 34 | * 35 | * Generated from protobuf enum POSSIBLE = 3; 36 | */ 37 | const POSSIBLE = 3; 38 | /** 39 | * Likely. 40 | * 41 | * Generated from protobuf enum LIKELY = 4; 42 | */ 43 | const LIKELY = 4; 44 | /** 45 | * Very likely. 46 | * 47 | * Generated from protobuf enum VERY_LIKELY = 5; 48 | */ 49 | const VERY_LIKELY = 5; 50 | } 51 | 52 | -------------------------------------------------------------------------------- /src/Google/Cloud/VideoIntelligence/V1beta2/Feature.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Videointelligence\V1beta2\Feature 11 | */ 12 | class Feature 13 | { 14 | /** 15 | * Unspecified. 16 | * 17 | * Generated from protobuf enum FEATURE_UNSPECIFIED = 0; 18 | */ 19 | const FEATURE_UNSPECIFIED = 0; 20 | /** 21 | * Label detection. Detect objects, such as dog or flower. 22 | * 23 | * Generated from protobuf enum LABEL_DETECTION = 1; 24 | */ 25 | const LABEL_DETECTION = 1; 26 | /** 27 | * Shot change detection. 28 | * 29 | * Generated from protobuf enum SHOT_CHANGE_DETECTION = 2; 30 | */ 31 | const SHOT_CHANGE_DETECTION = 2; 32 | /** 33 | * Explicit content detection. 34 | * 35 | * Generated from protobuf enum EXPLICIT_CONTENT_DETECTION = 3; 36 | */ 37 | const EXPLICIT_CONTENT_DETECTION = 3; 38 | /** 39 | * Human face detection and tracking. 40 | * 41 | * Generated from protobuf enum FACE_DETECTION = 4; 42 | */ 43 | const FACE_DETECTION = 4; 44 | } 45 | 46 | -------------------------------------------------------------------------------- /src/Google/Cloud/VideoIntelligence/V1beta2/LabelDetectionMode.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Videointelligence\V1beta2\LabelDetectionMode 11 | */ 12 | class LabelDetectionMode 13 | { 14 | /** 15 | * Unspecified. 16 | * 17 | * Generated from protobuf enum LABEL_DETECTION_MODE_UNSPECIFIED = 0; 18 | */ 19 | const LABEL_DETECTION_MODE_UNSPECIFIED = 0; 20 | /** 21 | * Detect shot-level labels. 22 | * 23 | * Generated from protobuf enum SHOT_MODE = 1; 24 | */ 25 | const SHOT_MODE = 1; 26 | /** 27 | * Detect frame-level labels. 28 | * 29 | * Generated from protobuf enum FRAME_MODE = 2; 30 | */ 31 | const FRAME_MODE = 2; 32 | /** 33 | * Detect both shot-level and frame-level labels. 34 | * 35 | * Generated from protobuf enum SHOT_AND_FRAME_MODE = 3; 36 | */ 37 | const SHOT_AND_FRAME_MODE = 3; 38 | } 39 | 40 | -------------------------------------------------------------------------------- /src/Google/Cloud/VideoIntelligence/V1beta2/Likelihood.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Videointelligence\V1beta2\Likelihood 11 | */ 12 | class Likelihood 13 | { 14 | /** 15 | * Unspecified likelihood. 16 | * 17 | * Generated from protobuf enum LIKELIHOOD_UNSPECIFIED = 0; 18 | */ 19 | const LIKELIHOOD_UNSPECIFIED = 0; 20 | /** 21 | * Very unlikely. 22 | * 23 | * Generated from protobuf enum VERY_UNLIKELY = 1; 24 | */ 25 | const VERY_UNLIKELY = 1; 26 | /** 27 | * Unlikely. 28 | * 29 | * Generated from protobuf enum UNLIKELY = 2; 30 | */ 31 | const UNLIKELY = 2; 32 | /** 33 | * Possible. 34 | * 35 | * Generated from protobuf enum POSSIBLE = 3; 36 | */ 37 | const POSSIBLE = 3; 38 | /** 39 | * Likely. 40 | * 41 | * Generated from protobuf enum LIKELY = 4; 42 | */ 43 | const LIKELY = 4; 44 | /** 45 | * Very likely. 46 | * 47 | * Generated from protobuf enum VERY_LIKELY = 5; 48 | */ 49 | const VERY_LIKELY = 5; 50 | } 51 | 52 | -------------------------------------------------------------------------------- /src/Google/Cloud/Vision/V1/Block_BlockType.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Vision\V1\Block\BlockType 11 | */ 12 | class Block_BlockType 13 | { 14 | /** 15 | * Unknown block type. 16 | * 17 | * Generated from protobuf enum UNKNOWN = 0; 18 | */ 19 | const UNKNOWN = 0; 20 | /** 21 | * Regular text block. 22 | * 23 | * Generated from protobuf enum TEXT = 1; 24 | */ 25 | const TEXT = 1; 26 | /** 27 | * Table block. 28 | * 29 | * Generated from protobuf enum TABLE = 2; 30 | */ 31 | const TABLE = 2; 32 | /** 33 | * Image block. 34 | * 35 | * Generated from protobuf enum PICTURE = 3; 36 | */ 37 | const PICTURE = 3; 38 | /** 39 | * Horizontal/vertical line box. 40 | * 41 | * Generated from protobuf enum RULER = 4; 42 | */ 43 | const RULER = 4; 44 | /** 45 | * Barcode block. 46 | * 47 | * Generated from protobuf enum BARCODE = 5; 48 | */ 49 | const BARCODE = 5; 50 | } 51 | 52 | -------------------------------------------------------------------------------- /src/Google/Cloud/Vision/V1/Likelihood.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Vision\V1\Likelihood 12 | */ 13 | class Likelihood 14 | { 15 | /** 16 | * Unknown likelihood. 17 | * 18 | * Generated from protobuf enum UNKNOWN = 0; 19 | */ 20 | const UNKNOWN = 0; 21 | /** 22 | * It is very unlikely that the image belongs to the specified vertical. 23 | * 24 | * Generated from protobuf enum VERY_UNLIKELY = 1; 25 | */ 26 | const VERY_UNLIKELY = 1; 27 | /** 28 | * It is unlikely that the image belongs to the specified vertical. 29 | * 30 | * Generated from protobuf enum UNLIKELY = 2; 31 | */ 32 | const UNLIKELY = 2; 33 | /** 34 | * It is possible that the image belongs to the specified vertical. 35 | * 36 | * Generated from protobuf enum POSSIBLE = 3; 37 | */ 38 | const POSSIBLE = 3; 39 | /** 40 | * It is likely that the image belongs to the specified vertical. 41 | * 42 | * Generated from protobuf enum LIKELY = 4; 43 | */ 44 | const LIKELY = 4; 45 | /** 46 | * It is very likely that the image belongs to the specified vertical. 47 | * 48 | * Generated from protobuf enum VERY_LIKELY = 5; 49 | */ 50 | const VERY_LIKELY = 5; 51 | } 52 | 53 | -------------------------------------------------------------------------------- /src/Google/Cloud/Vision/V1/LocationInfo.php: -------------------------------------------------------------------------------- 1 | google.cloud.vision.v1.LocationInfo 15 | */ 16 | class LocationInfo extends \Google\Protobuf\Internal\Message 17 | { 18 | /** 19 | * lat/long location coordinates. 20 | * 21 | * Generated from protobuf field .google.type.LatLng lat_lng = 1; 22 | */ 23 | private $lat_lng = null; 24 | 25 | public function __construct() { 26 | \GPBMetadata\Google\Cloud\Vision\V1\ImageAnnotator::initOnce(); 27 | parent::__construct(); 28 | } 29 | 30 | /** 31 | * lat/long location coordinates. 32 | * 33 | * Generated from protobuf field .google.type.LatLng lat_lng = 1; 34 | * @return \Google\Type\LatLng 35 | */ 36 | public function getLatLng() 37 | { 38 | return $this->lat_lng; 39 | } 40 | 41 | /** 42 | * lat/long location coordinates. 43 | * 44 | * Generated from protobuf field .google.type.LatLng lat_lng = 1; 45 | * @param \Google\Type\LatLng $var 46 | * @return $this 47 | */ 48 | public function setLatLng($var) 49 | { 50 | GPBUtil::checkMessage($var, \Google\Type\LatLng::class); 51 | $this->lat_lng = $var; 52 | 53 | return $this; 54 | } 55 | 56 | } 57 | 58 | -------------------------------------------------------------------------------- /src/Google/Cloud/Vision/V1/OperationMetadata_State.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Vision\V1\OperationMetadata\State 11 | */ 12 | class OperationMetadata_State 13 | { 14 | /** 15 | * Invalid. 16 | * 17 | * Generated from protobuf enum STATE_UNSPECIFIED = 0; 18 | */ 19 | const STATE_UNSPECIFIED = 0; 20 | /** 21 | * Request is received. 22 | * 23 | * Generated from protobuf enum CREATED = 1; 24 | */ 25 | const CREATED = 1; 26 | /** 27 | * Request is actively being processed. 28 | * 29 | * Generated from protobuf enum RUNNING = 2; 30 | */ 31 | const RUNNING = 2; 32 | /** 33 | * The batch processing is done. 34 | * 35 | * Generated from protobuf enum DONE = 3; 36 | */ 37 | const DONE = 3; 38 | /** 39 | * The batch processing was cancelled. 40 | * 41 | * Generated from protobuf enum CANCELLED = 4; 42 | */ 43 | const CANCELLED = 4; 44 | } 45 | 46 | -------------------------------------------------------------------------------- /src/Google/Cloud/Vision/V1/TextAnnotation_DetectedBreak_BreakType.php: -------------------------------------------------------------------------------- 1 | Google\Cloud\Vision\V1\TextAnnotation\DetectedBreak\BreakType 11 | */ 12 | class TextAnnotation_DetectedBreak_BreakType 13 | { 14 | /** 15 | * Unknown break label type. 16 | * 17 | * Generated from protobuf enum UNKNOWN = 0; 18 | */ 19 | const UNKNOWN = 0; 20 | /** 21 | * Regular space. 22 | * 23 | * Generated from protobuf enum SPACE = 1; 24 | */ 25 | const SPACE = 1; 26 | /** 27 | * Sure space (very wide). 28 | * 29 | * Generated from protobuf enum SURE_SPACE = 2; 30 | */ 31 | const SURE_SPACE = 2; 32 | /** 33 | * Line-wrapping break. 34 | * 35 | * Generated from protobuf enum EOL_SURE_SPACE = 3; 36 | */ 37 | const EOL_SURE_SPACE = 3; 38 | /** 39 | * End-line hyphen that is not present in text; does not co-occur with 40 | * `SPACE`, `LEADER_SPACE`, or `LINE_BREAK`. 41 | * 42 | * Generated from protobuf enum HYPHEN = 4; 43 | */ 44 | const HYPHEN = 4; 45 | /** 46 | * Line break that ends a paragraph. 47 | * 48 | * Generated from protobuf enum LINE_BREAK = 5; 49 | */ 50 | const LINE_BREAK = 5; 51 | } 52 | 53 | --------------------------------------------------------------------------------