├── .gitattributes ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── VERSION ├── composer.json ├── metadata └── V2 │ ├── LogEntry.php │ ├── Logging.php │ ├── LoggingConfig.php │ └── LoggingMetrics.php └── src ├── Connection ├── ConnectionInterface.php ├── Grpc.php ├── Rest.php └── ServiceDefinition │ └── logging-v2.json ├── Entry.php ├── LogMessageProcessor ├── MonologMessageProcessor.php └── MonologV3MessageProcessor.php ├── LogMessageProcessorFactory.php ├── LogMessageProcessorInterface.php ├── Logger.php ├── LoggingClient.php ├── Metric.php ├── PsrLogger.php ├── Sink.php └── V2 ├── BigQueryDataset.php ├── BigQueryOptions.php ├── BucketMetadata.php ├── Client ├── ConfigServiceV2Client.php ├── LoggingServiceV2Client.php └── MetricsServiceV2Client.php ├── CmekSettings.php ├── ConfigServiceV2Client.php ├── ConfigServiceV2GrpcClient.php ├── CopyLogEntriesMetadata.php ├── CopyLogEntriesRequest.php ├── CopyLogEntriesResponse.php ├── CreateBucketRequest.php ├── CreateExclusionRequest.php ├── CreateLinkRequest.php ├── CreateLogMetricRequest.php ├── CreateSinkRequest.php ├── CreateViewRequest.php ├── DeleteBucketRequest.php ├── DeleteExclusionRequest.php ├── DeleteLinkRequest.php ├── DeleteLogMetricRequest.php ├── DeleteLogRequest.php ├── DeleteSinkRequest.php ├── DeleteViewRequest.php ├── Gapic ├── ConfigServiceV2GapicClient.php ├── LoggingServiceV2GapicClient.php └── MetricsServiceV2GapicClient.php ├── GetBucketRequest.php ├── GetCmekSettingsRequest.php ├── GetExclusionRequest.php ├── GetLinkRequest.php ├── GetLogMetricRequest.php ├── GetSettingsRequest.php ├── GetSinkRequest.php ├── GetViewRequest.php ├── IndexConfig.php ├── IndexType.php ├── LifecycleState.php ├── Link.php ├── LinkMetadata.php ├── ListBucketsRequest.php ├── ListBucketsResponse.php ├── ListExclusionsRequest.php ├── ListExclusionsResponse.php ├── ListLinksRequest.php ├── ListLinksResponse.php ├── ListLogEntriesRequest.php ├── ListLogEntriesResponse.php ├── ListLogMetricsRequest.php ├── ListLogMetricsResponse.php ├── ListLogsRequest.php ├── ListLogsResponse.php ├── ListMonitoredResourceDescriptorsRequest.php ├── ListMonitoredResourceDescriptorsResponse.php ├── ListSinksRequest.php ├── ListSinksResponse.php ├── ListViewsRequest.php ├── ListViewsResponse.php ├── LocationMetadata.php ├── LogBucket.php ├── LogEntry.php ├── LogEntryOperation.php ├── LogEntrySourceLocation.php ├── LogExclusion.php ├── LogMetric.php ├── LogMetric └── ApiVersion.php ├── LogMetric_ApiVersion.php ├── LogSink.php ├── LogSink └── VersionFormat.php ├── LogSink_VersionFormat.php ├── LogSplit.php ├── LogView.php ├── LoggingServiceV2Client.php ├── LoggingServiceV2GrpcClient.php ├── MetricsServiceV2Client.php ├── MetricsServiceV2GrpcClient.php ├── OperationState.php ├── README.md ├── Settings.php ├── TailLogEntriesRequest.php ├── TailLogEntriesResponse.php ├── TailLogEntriesResponse ├── SuppressionInfo.php └── SuppressionInfo │ └── Reason.php ├── TailLogEntriesResponse_SuppressionInfo.php ├── TailLogEntriesResponse_SuppressionInfo_Reason.php ├── UndeleteBucketRequest.php ├── UpdateBucketRequest.php ├── UpdateCmekSettingsRequest.php ├── UpdateExclusionRequest.php ├── UpdateLogMetricRequest.php ├── UpdateSettingsRequest.php ├── UpdateSinkRequest.php ├── UpdateViewRequest.php ├── WriteLogEntriesPartialErrors.php ├── WriteLogEntriesRequest.php ├── WriteLogEntriesResponse.php └── resources ├── config_service_v2_client_config.json ├── config_service_v2_descriptor_config.php ├── config_service_v2_rest_client_config.php ├── logging_service_v2_client_config.json ├── logging_service_v2_descriptor_config.php ├── logging_service_v2_rest_client_config.php ├── metrics_service_v2_client_config.json ├── metrics_service_v2_descriptor_config.php └── metrics_service_v2_rest_client_config.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/.gitattributes -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/SECURITY.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.34.3 2 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/composer.json -------------------------------------------------------------------------------- /metadata/V2/LogEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/metadata/V2/LogEntry.php -------------------------------------------------------------------------------- /metadata/V2/Logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/metadata/V2/Logging.php -------------------------------------------------------------------------------- /metadata/V2/LoggingConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/metadata/V2/LoggingConfig.php -------------------------------------------------------------------------------- /metadata/V2/LoggingMetrics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/metadata/V2/LoggingMetrics.php -------------------------------------------------------------------------------- /src/Connection/ConnectionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/Connection/ConnectionInterface.php -------------------------------------------------------------------------------- /src/Connection/Grpc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/Connection/Grpc.php -------------------------------------------------------------------------------- /src/Connection/Rest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/Connection/Rest.php -------------------------------------------------------------------------------- /src/Connection/ServiceDefinition/logging-v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/Connection/ServiceDefinition/logging-v2.json -------------------------------------------------------------------------------- /src/Entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/Entry.php -------------------------------------------------------------------------------- /src/LogMessageProcessor/MonologMessageProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/LogMessageProcessor/MonologMessageProcessor.php -------------------------------------------------------------------------------- /src/LogMessageProcessor/MonologV3MessageProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/LogMessageProcessor/MonologV3MessageProcessor.php -------------------------------------------------------------------------------- /src/LogMessageProcessorFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/LogMessageProcessorFactory.php -------------------------------------------------------------------------------- /src/LogMessageProcessorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/LogMessageProcessorInterface.php -------------------------------------------------------------------------------- /src/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/Logger.php -------------------------------------------------------------------------------- /src/LoggingClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/LoggingClient.php -------------------------------------------------------------------------------- /src/Metric.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/Metric.php -------------------------------------------------------------------------------- /src/PsrLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/PsrLogger.php -------------------------------------------------------------------------------- /src/Sink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/Sink.php -------------------------------------------------------------------------------- /src/V2/BigQueryDataset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/BigQueryDataset.php -------------------------------------------------------------------------------- /src/V2/BigQueryOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/BigQueryOptions.php -------------------------------------------------------------------------------- /src/V2/BucketMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/BucketMetadata.php -------------------------------------------------------------------------------- /src/V2/Client/ConfigServiceV2Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/Client/ConfigServiceV2Client.php -------------------------------------------------------------------------------- /src/V2/Client/LoggingServiceV2Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/Client/LoggingServiceV2Client.php -------------------------------------------------------------------------------- /src/V2/Client/MetricsServiceV2Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/Client/MetricsServiceV2Client.php -------------------------------------------------------------------------------- /src/V2/CmekSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/CmekSettings.php -------------------------------------------------------------------------------- /src/V2/ConfigServiceV2Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/ConfigServiceV2Client.php -------------------------------------------------------------------------------- /src/V2/ConfigServiceV2GrpcClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/ConfigServiceV2GrpcClient.php -------------------------------------------------------------------------------- /src/V2/CopyLogEntriesMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/CopyLogEntriesMetadata.php -------------------------------------------------------------------------------- /src/V2/CopyLogEntriesRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/CopyLogEntriesRequest.php -------------------------------------------------------------------------------- /src/V2/CopyLogEntriesResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/CopyLogEntriesResponse.php -------------------------------------------------------------------------------- /src/V2/CreateBucketRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/CreateBucketRequest.php -------------------------------------------------------------------------------- /src/V2/CreateExclusionRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/CreateExclusionRequest.php -------------------------------------------------------------------------------- /src/V2/CreateLinkRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/CreateLinkRequest.php -------------------------------------------------------------------------------- /src/V2/CreateLogMetricRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/CreateLogMetricRequest.php -------------------------------------------------------------------------------- /src/V2/CreateSinkRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/CreateSinkRequest.php -------------------------------------------------------------------------------- /src/V2/CreateViewRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/CreateViewRequest.php -------------------------------------------------------------------------------- /src/V2/DeleteBucketRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/DeleteBucketRequest.php -------------------------------------------------------------------------------- /src/V2/DeleteExclusionRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/DeleteExclusionRequest.php -------------------------------------------------------------------------------- /src/V2/DeleteLinkRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/DeleteLinkRequest.php -------------------------------------------------------------------------------- /src/V2/DeleteLogMetricRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/DeleteLogMetricRequest.php -------------------------------------------------------------------------------- /src/V2/DeleteLogRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/DeleteLogRequest.php -------------------------------------------------------------------------------- /src/V2/DeleteSinkRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/DeleteSinkRequest.php -------------------------------------------------------------------------------- /src/V2/DeleteViewRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/DeleteViewRequest.php -------------------------------------------------------------------------------- /src/V2/Gapic/ConfigServiceV2GapicClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/Gapic/ConfigServiceV2GapicClient.php -------------------------------------------------------------------------------- /src/V2/Gapic/LoggingServiceV2GapicClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/Gapic/LoggingServiceV2GapicClient.php -------------------------------------------------------------------------------- /src/V2/Gapic/MetricsServiceV2GapicClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/Gapic/MetricsServiceV2GapicClient.php -------------------------------------------------------------------------------- /src/V2/GetBucketRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/GetBucketRequest.php -------------------------------------------------------------------------------- /src/V2/GetCmekSettingsRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/GetCmekSettingsRequest.php -------------------------------------------------------------------------------- /src/V2/GetExclusionRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/GetExclusionRequest.php -------------------------------------------------------------------------------- /src/V2/GetLinkRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/GetLinkRequest.php -------------------------------------------------------------------------------- /src/V2/GetLogMetricRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/GetLogMetricRequest.php -------------------------------------------------------------------------------- /src/V2/GetSettingsRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/GetSettingsRequest.php -------------------------------------------------------------------------------- /src/V2/GetSinkRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/GetSinkRequest.php -------------------------------------------------------------------------------- /src/V2/GetViewRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/GetViewRequest.php -------------------------------------------------------------------------------- /src/V2/IndexConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/IndexConfig.php -------------------------------------------------------------------------------- /src/V2/IndexType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/IndexType.php -------------------------------------------------------------------------------- /src/V2/LifecycleState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/LifecycleState.php -------------------------------------------------------------------------------- /src/V2/Link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/Link.php -------------------------------------------------------------------------------- /src/V2/LinkMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/LinkMetadata.php -------------------------------------------------------------------------------- /src/V2/ListBucketsRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/ListBucketsRequest.php -------------------------------------------------------------------------------- /src/V2/ListBucketsResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/ListBucketsResponse.php -------------------------------------------------------------------------------- /src/V2/ListExclusionsRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/ListExclusionsRequest.php -------------------------------------------------------------------------------- /src/V2/ListExclusionsResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/ListExclusionsResponse.php -------------------------------------------------------------------------------- /src/V2/ListLinksRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/ListLinksRequest.php -------------------------------------------------------------------------------- /src/V2/ListLinksResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/ListLinksResponse.php -------------------------------------------------------------------------------- /src/V2/ListLogEntriesRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/ListLogEntriesRequest.php -------------------------------------------------------------------------------- /src/V2/ListLogEntriesResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/ListLogEntriesResponse.php -------------------------------------------------------------------------------- /src/V2/ListLogMetricsRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/ListLogMetricsRequest.php -------------------------------------------------------------------------------- /src/V2/ListLogMetricsResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/ListLogMetricsResponse.php -------------------------------------------------------------------------------- /src/V2/ListLogsRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/ListLogsRequest.php -------------------------------------------------------------------------------- /src/V2/ListLogsResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/ListLogsResponse.php -------------------------------------------------------------------------------- /src/V2/ListMonitoredResourceDescriptorsRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/ListMonitoredResourceDescriptorsRequest.php -------------------------------------------------------------------------------- /src/V2/ListMonitoredResourceDescriptorsResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/ListMonitoredResourceDescriptorsResponse.php -------------------------------------------------------------------------------- /src/V2/ListSinksRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/ListSinksRequest.php -------------------------------------------------------------------------------- /src/V2/ListSinksResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/ListSinksResponse.php -------------------------------------------------------------------------------- /src/V2/ListViewsRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/ListViewsRequest.php -------------------------------------------------------------------------------- /src/V2/ListViewsResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/ListViewsResponse.php -------------------------------------------------------------------------------- /src/V2/LocationMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/LocationMetadata.php -------------------------------------------------------------------------------- /src/V2/LogBucket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/LogBucket.php -------------------------------------------------------------------------------- /src/V2/LogEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/LogEntry.php -------------------------------------------------------------------------------- /src/V2/LogEntryOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/LogEntryOperation.php -------------------------------------------------------------------------------- /src/V2/LogEntrySourceLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/LogEntrySourceLocation.php -------------------------------------------------------------------------------- /src/V2/LogExclusion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/LogExclusion.php -------------------------------------------------------------------------------- /src/V2/LogMetric.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/LogMetric.php -------------------------------------------------------------------------------- /src/V2/LogMetric/ApiVersion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/LogMetric/ApiVersion.php -------------------------------------------------------------------------------- /src/V2/LogMetric_ApiVersion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/LogMetric_ApiVersion.php -------------------------------------------------------------------------------- /src/V2/LogSink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/LogSink.php -------------------------------------------------------------------------------- /src/V2/LogSink/VersionFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/LogSink/VersionFormat.php -------------------------------------------------------------------------------- /src/V2/LogSink_VersionFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/LogSink_VersionFormat.php -------------------------------------------------------------------------------- /src/V2/LogSplit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/LogSplit.php -------------------------------------------------------------------------------- /src/V2/LogView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/LogView.php -------------------------------------------------------------------------------- /src/V2/LoggingServiceV2Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/LoggingServiceV2Client.php -------------------------------------------------------------------------------- /src/V2/LoggingServiceV2GrpcClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/LoggingServiceV2GrpcClient.php -------------------------------------------------------------------------------- /src/V2/MetricsServiceV2Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/MetricsServiceV2Client.php -------------------------------------------------------------------------------- /src/V2/MetricsServiceV2GrpcClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/MetricsServiceV2GrpcClient.php -------------------------------------------------------------------------------- /src/V2/OperationState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/OperationState.php -------------------------------------------------------------------------------- /src/V2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/README.md -------------------------------------------------------------------------------- /src/V2/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/Settings.php -------------------------------------------------------------------------------- /src/V2/TailLogEntriesRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/TailLogEntriesRequest.php -------------------------------------------------------------------------------- /src/V2/TailLogEntriesResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/TailLogEntriesResponse.php -------------------------------------------------------------------------------- /src/V2/TailLogEntriesResponse/SuppressionInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/TailLogEntriesResponse/SuppressionInfo.php -------------------------------------------------------------------------------- /src/V2/TailLogEntriesResponse/SuppressionInfo/Reason.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/TailLogEntriesResponse/SuppressionInfo/Reason.php -------------------------------------------------------------------------------- /src/V2/TailLogEntriesResponse_SuppressionInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/TailLogEntriesResponse_SuppressionInfo.php -------------------------------------------------------------------------------- /src/V2/TailLogEntriesResponse_SuppressionInfo_Reason.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/TailLogEntriesResponse_SuppressionInfo_Reason.php -------------------------------------------------------------------------------- /src/V2/UndeleteBucketRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/UndeleteBucketRequest.php -------------------------------------------------------------------------------- /src/V2/UpdateBucketRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/UpdateBucketRequest.php -------------------------------------------------------------------------------- /src/V2/UpdateCmekSettingsRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/UpdateCmekSettingsRequest.php -------------------------------------------------------------------------------- /src/V2/UpdateExclusionRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/UpdateExclusionRequest.php -------------------------------------------------------------------------------- /src/V2/UpdateLogMetricRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/UpdateLogMetricRequest.php -------------------------------------------------------------------------------- /src/V2/UpdateSettingsRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/UpdateSettingsRequest.php -------------------------------------------------------------------------------- /src/V2/UpdateSinkRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/UpdateSinkRequest.php -------------------------------------------------------------------------------- /src/V2/UpdateViewRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/UpdateViewRequest.php -------------------------------------------------------------------------------- /src/V2/WriteLogEntriesPartialErrors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/WriteLogEntriesPartialErrors.php -------------------------------------------------------------------------------- /src/V2/WriteLogEntriesRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/WriteLogEntriesRequest.php -------------------------------------------------------------------------------- /src/V2/WriteLogEntriesResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/WriteLogEntriesResponse.php -------------------------------------------------------------------------------- /src/V2/resources/config_service_v2_client_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/resources/config_service_v2_client_config.json -------------------------------------------------------------------------------- /src/V2/resources/config_service_v2_descriptor_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/resources/config_service_v2_descriptor_config.php -------------------------------------------------------------------------------- /src/V2/resources/config_service_v2_rest_client_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/resources/config_service_v2_rest_client_config.php -------------------------------------------------------------------------------- /src/V2/resources/logging_service_v2_client_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/resources/logging_service_v2_client_config.json -------------------------------------------------------------------------------- /src/V2/resources/logging_service_v2_descriptor_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/resources/logging_service_v2_descriptor_config.php -------------------------------------------------------------------------------- /src/V2/resources/logging_service_v2_rest_client_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/resources/logging_service_v2_rest_client_config.php -------------------------------------------------------------------------------- /src/V2/resources/metrics_service_v2_client_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/resources/metrics_service_v2_client_config.json -------------------------------------------------------------------------------- /src/V2/resources/metrics_service_v2_descriptor_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/resources/metrics_service_v2_descriptor_config.php -------------------------------------------------------------------------------- /src/V2/resources/metrics_service_v2_rest_client_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-logging/HEAD/src/V2/resources/metrics_service_v2_rest_client_config.php --------------------------------------------------------------------------------