├── .config └── dotnet-tools.json ├── .github ├── CODEOWNERS ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── support_request.md ├── blunderbuss.yml ├── release-please.yml ├── renovate.json └── workflows │ └── build.yml ├── .gitignore ├── .release-please-manifest.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CommonProperties.Test.xml ├── CommonProperties.xml ├── Directory.Build.props ├── Directory.Build.targets ├── Directory.Packages.props ├── Gax.sln ├── Gax.snk ├── Google.Api.CommonProtos.Tests ├── Google.Api.CommonProtos.Tests.csproj ├── Rpc │ └── StatusTest.cs └── Type │ ├── DateTest.cs │ ├── DecimalTest.cs │ └── MoneyTest.cs ├── Google.Api.CommonProtos ├── Api │ ├── Annotations.g.cs │ ├── Auth.g.cs │ ├── Backend.g.cs │ ├── Billing.g.cs │ ├── Client.g.cs │ ├── ConfigChange.g.cs │ ├── Consumer.g.cs │ ├── Context.g.cs │ ├── Control.g.cs │ ├── Distribution.g.cs │ ├── Documentation.g.cs │ ├── Endpoint.g.cs │ ├── ErrorReason.g.cs │ ├── FieldBehavior.g.cs │ ├── FieldInfo.g.cs │ ├── Http.g.cs │ ├── Httpbody.g.cs │ ├── Label.g.cs │ ├── LaunchStage.g.cs │ ├── Log.g.cs │ ├── Logging.g.cs │ ├── Metric.g.cs │ ├── MonitoredResource.g.cs │ ├── Monitoring.g.cs │ ├── Policy.g.cs │ ├── Quota.g.cs │ ├── Resource.g.cs │ ├── Routing.g.cs │ ├── Service.g.cs │ ├── SourceInfo.g.cs │ ├── SystemParameter.g.cs │ ├── Usage.g.cs │ └── Visibility.g.cs ├── Google.Api.CommonProtos.csproj ├── Rpc │ ├── Code.g.cs │ ├── Context │ │ ├── AttributeContext.g.cs │ │ └── AuditContext.g.cs │ ├── ErrorDetails.g.cs │ ├── Http.g.cs │ ├── StandardErrorTypeRegistry.cs │ ├── Status.g.cs │ └── StatusPartial.cs ├── Type │ ├── CalendarPeriod.g.cs │ ├── Color.g.cs │ ├── Date.g.cs │ ├── DateExtensions.cs │ ├── DatePartial.cs │ ├── Datetime.g.cs │ ├── Dayofweek.g.cs │ ├── Decimal.cs │ ├── Decimal.g.cs │ ├── Expr.g.cs │ ├── Fraction.g.cs │ ├── Interval.g.cs │ ├── Latlng.g.cs │ ├── LocalizedText.g.cs │ ├── Money.g.cs │ ├── MoneyPartial.cs │ ├── Month.g.cs │ ├── PhoneNumber.g.cs │ ├── PostalAddress.g.cs │ ├── Quaternion.g.cs │ └── Timeofday.g.cs ├── build │ └── Google.Api.CommonProtos.targets ├── proto-header.txt └── protos │ └── google │ ├── api │ ├── annotations.proto │ ├── auth.proto │ ├── backend.proto │ ├── billing.proto │ ├── client.proto │ ├── config_change.proto │ ├── consumer.proto │ ├── context.proto │ ├── control.proto │ ├── distribution.proto │ ├── documentation.proto │ ├── endpoint.proto │ ├── error_reason.proto │ ├── field_behavior.proto │ ├── field_info.proto │ ├── http.proto │ ├── httpbody.proto │ ├── label.proto │ ├── launch_stage.proto │ ├── log.proto │ ├── logging.proto │ ├── metric.proto │ ├── monitored_resource.proto │ ├── monitoring.proto │ ├── policy.proto │ ├── quota.proto │ ├── resource.proto │ ├── routing.proto │ ├── service.proto │ ├── source_info.proto │ ├── system_parameter.proto │ ├── usage.proto │ └── visibility.proto │ ├── rpc │ ├── code.proto │ ├── context │ │ ├── attribute_context.proto │ │ └── audit_context.proto │ ├── error_details.proto │ ├── http.proto │ └── status.proto │ └── type │ ├── calendar_period.proto │ ├── color.proto │ ├── date.proto │ ├── datetime.proto │ ├── dayofweek.proto │ ├── decimal.proto │ ├── expr.proto │ ├── fraction.proto │ ├── interval.proto │ ├── latlng.proto │ ├── localized_text.proto │ ├── money.proto │ ├── month.proto │ ├── phone_number.proto │ ├── postal_address.proto │ ├── quaternion.proto │ └── timeofday.proto ├── Google.Api.Gax.Grpc.IntegrationTests ├── ChannelPoolTest.cs ├── ClientBuilderBaseTest.cs ├── ForwardingCallInvokerTest.cs ├── ForwardingTestService.g.cs ├── ForwardingTestServiceFixture.cs ├── ForwardingTestServiceGrpc.g.cs ├── Gcp │ ├── FakeCallInvoker.cs │ ├── FakeChannel.cs │ ├── FakeGrpcAdapter.cs │ └── GrpcCallInvokerPoolTest.cs ├── Google.Api.Gax.Grpc.IntegrationTests.csproj ├── GrpcAdapterTest.cs ├── GrpcCoreAdapterTest.cs ├── GrpcNetClientAdapterTest.cs ├── Rest │ └── RestChannelTest.cs ├── TestService.g.cs ├── TestServiceFixture.cs ├── TestServiceGrpc.g.cs ├── TestServiceMetadata.cs ├── forwarding_test_service.proto └── test_service.proto ├── Google.Api.Gax.Grpc.Testing ├── AsyncStreamAdapter.cs ├── FakeApiCall.cs └── Google.Api.Gax.Grpc.Testing.csproj ├── Google.Api.Gax.Grpc.Tests ├── ApiBidirectionalStreamingCallTest.cs ├── ApiCallTest.cs ├── ApiClientStreamingCallTest.cs ├── ApiMetadataTest.cs ├── ApiServerStreamingCallTest.cs ├── AssemblyInfo.cs ├── AsyncResponseStreamTest.cs ├── BufferedClientStreamWriterTest.cs ├── CallSettingsExtensionsTest.cs ├── CallSettingsTest.cs ├── ChannelBaseExtensionsTest.cs ├── ClientBuilderBaseTest.DependencyInjectionTest.cs ├── ClientBuilderBaseTest.EffectiveEndpointTest.cs ├── ClientBuilderBaseTest.GetEffectiveSettingsTest.cs ├── ClientBuilderBaseTest.GetEmulatorEnvironmentTest.cs ├── ClientBuilderBaseTest.GetGoogleCredentialTest.cs ├── ClientBuilderBaseTest.UniverseDomainTest.cs ├── ClientBuilderBaseTest.cs ├── ClientHelperTest.cs ├── ConformanceTestData.cs ├── GaxGrpcServiceCollectionExtensionsTest.cs ├── GaxPreconditionsTest.cs ├── Google.Api.Gax.Grpc.Tests.csproj ├── GrpcChannelOptionsTest.cs ├── GrpcCoreAdapterTest.cs ├── GrpcNetClientAdapterTest.cs ├── LoggerTypeNameHelper.cs ├── MemoryLogger.cs ├── MemoryLoggerProvider.cs ├── MonitoringResourceBuilderTest.cs ├── PageStreamingRequestPartial.cs ├── PageStreamingResponsePartial.cs ├── PageStreamingTest.cs ├── ProtobufUtilitiesTest.cs ├── Rest │ ├── BadService.g.cs │ ├── BadServiceGrpc.g.cs │ ├── HttpRulePathPatternTest.cs │ ├── HttpRuleTranscoderTest.cs │ ├── JsonStateTrackerTest.cs │ ├── PartialDecodingStreamReaderTest.cs │ ├── ReadHttpResponseMessageTest.cs │ ├── RestMethodTest.cs │ ├── RestServiceCollectionTest.cs │ ├── RpcCancellationContextTest.cs │ ├── TestService.g.cs │ ├── TestServiceGrpc.g.cs │ ├── TranscoderTest.g.cs │ ├── bad_service.proto │ ├── test_service.proto │ ├── transcoder_test.proto │ └── transcoder_tests.json ├── RetryAttemptTest.cs ├── RetrySettingsTest.cs ├── RetryTest.cs ├── RoutingHeaderExtractorTest.cs ├── RpcExceptionExtensionsTest.cs ├── ServiceSettingsBaseTest.cs ├── TestApiMetadata.cs ├── TestLogEntry.cs ├── TestMessages.g.cs ├── TestServiceMetadata.cs └── test_messages.proto ├── Google.Api.Gax.Grpc ├── ApiBidirectionalStreamingCall.cs ├── ApiCall.cs ├── ApiCallLoggingExtensions.cs ├── ApiCallRetryExtensions.cs ├── ApiCallTracingExtensions.cs ├── ApiClientStreamingCall.cs ├── ApiMetadata.cs ├── ApiServerStreamingCall.cs ├── AssemblyInfo.cs ├── AsyncResponseStream.cs ├── BidirectionalStreamingBase.cs ├── BidirectionalStreamingSettings.cs ├── BufferedClientStreamWriter.cs ├── CallSettings.cs ├── CallSettingsExtensions.cs ├── ChannelBaseExtensions.cs ├── ChannelPool.cs ├── ClientBuilderBase.cs ├── ClientHelper.cs ├── ClientStreamingBase.cs ├── ClientStreamingSettings.cs ├── DefaultChannelCredentialsCache.cs ├── ForwardingCallInvoker.cs ├── GaxGrpcServiceCollectionExtensions.cs ├── Gcp │ ├── ChannelRef.cs │ ├── GcpCallInvoker.cs │ ├── GcpCallInvokerPool.cs │ ├── GcpClientResponseStream.cs │ ├── GrpcGcp.g.cs │ └── grpc_gcp.proto ├── Google.Api.Gax.Grpc.csproj ├── GoogleCredentialExtensions.cs ├── GrpcAdapter.cs ├── GrpcChannelOptions.cs ├── GrpcCoreAdapter.cs ├── GrpcNetClientAdapter.cs ├── GrpcPagedAsyncEnumerable.cs ├── GrpcPagedEnumerable.cs ├── GrpcWindowsDetection.cs ├── MonitoredResourceBuilder.cs ├── PagedEnumerableCommon.cs ├── ProtobufUtilities.cs ├── Rest │ ├── CredentialExtensions.cs │ ├── HttpRulePathPattern.cs │ ├── HttpRuleTranscoder.cs │ ├── JsonStateTracker.cs │ ├── PartialDecodingStreamReader.cs │ ├── ReadHttpResponseMessage.cs │ ├── ResponseMetadata.g.cs │ ├── RestCallInvoker.cs │ ├── RestChannel.cs │ ├── RestGrpcAdapter.cs │ ├── RestMethod.cs │ ├── RestServiceCollection.cs │ ├── RpcCancellationContext.cs │ ├── TranscodingOutput.cs │ └── response_metadata.proto ├── RetryAttempt.cs ├── RetrySettings.cs ├── RoutingHeaderExtractor.cs ├── RpcExceptionExtensions.cs ├── ServerStreamingBase.cs ├── ServiceMetadata.cs ├── ServiceSettingsBase.cs └── TaskExtensions.cs ├── Google.Api.Gax.Rest.IntegrationTests ├── ClientBuilderBaseTest.cs └── Google.Api.Gax.Rest.IntegrationTests.csproj ├── Google.Api.Gax.Rest.Tests ├── ClientBuilderBaseTest.Defaults.cs ├── ClientBuilderBaseTest.DependencyInjection.cs ├── ClientBuilderBaseTest.GetHttpClientInitializerTest.cs ├── Google.Api.Gax.Rest.Tests.csproj ├── PageStreamingTest.cs ├── ScopedCredentialProviderTest.cs └── UserAgentHelperTest.cs ├── Google.Api.Gax.Rest ├── AssemblyInfo.cs ├── ClientBuilderBase.cs ├── Google.Api.Gax.Rest.csproj ├── IPageManager.cs ├── RestPagedAsyncEnumerable.cs ├── RestPagedEnumerable.cs ├── ScopedCredentialProvider.cs └── UserAgentHelper.cs ├── Google.Api.Gax.Testing ├── FakeClock.cs ├── FakeScheduler.cs ├── Google.Api.Gax.Testing.csproj ├── NoOpScheduler.cs └── TestCredentials.cs ├── Google.Api.Gax.Tests ├── ActivitySourcesTest.cs ├── AssemblyInfo.cs ├── BatchingSettingsTest.cs ├── EmptyDictionaryTest.cs ├── EnvironmentVariableRestorer.cs ├── FakeSchedulerTest.cs ├── FieldFormatsTest.cs ├── FlowControlSettingsTest.cs ├── GaxEqualityHelpersTest.cs ├── GaxPreconditionsTest.cs ├── Google.Api.Gax.Tests.csproj ├── Json │ ├── JsonBuilderTest.cs │ ├── JsonParserTest.cs │ └── JsonTokenizerTest.cs ├── PathTemplateTest.cs ├── PlatformTest.cs ├── PollSettingsTest.cs ├── PollingTest.cs ├── ResourceNameListTest.cs ├── Resources │ ├── Metadata.json │ ├── Namespace.json │ └── Pod.json ├── TaskCompletionSourceExtensionsTests.cs ├── TaskExtensionsTest.cs ├── TemplatedResourceNameTest.cs ├── UnparsedResourceNameTest.cs └── VersionHeaderBuilderTest.cs ├── Google.Api.Gax ├── ActivitySources.cs ├── ApiTransports.cs ├── AssemblyInfo.cs ├── BatchingSettings.cs ├── CloudRunPlatformDetails.cs ├── EmptyDictionary.cs ├── EmulatorDetection.cs ├── Expiration.cs ├── FieldFormats.cs ├── FlowControlSettings.cs ├── GaePlatformDetails.cs ├── GaxEqualityHelpers.cs ├── GaxPreconditions.cs ├── GcePlatformDetails.cs ├── GkePlatformDetails.cs ├── Google.Api.Gax.csproj ├── IClock.cs ├── IResourceName.cs ├── IScheduler.cs ├── Json │ ├── InvalidJsonException.cs │ ├── JsonBuilder.cs │ ├── JsonParser.cs │ ├── JsonToken.cs │ └── JsonTokenizer.cs ├── Page.cs ├── PagedAsyncEnumerable.cs ├── PagedEnumerable.cs ├── PathTemplate.cs ├── Platform.cs ├── PlatformType.cs ├── PollSettings.cs ├── Polling.cs ├── ResourceMismatchException.cs ├── ResourceNameList.cs ├── ResourceNames │ ├── BillingAccountName.cs │ ├── CommonResourcesConfig.json │ ├── FolderName.cs │ ├── LocationName.cs │ ├── OrganizationName.cs │ └── ProjectName.cs ├── SystemClock.cs ├── SystemScheduler.cs ├── TaskCompletionSourceExtensions.cs ├── TaskExtensions.cs ├── TemplatedResourceName.cs ├── UnparsedResourceName.cs └── VersionHeaderBuilder.cs ├── LICENSE ├── NuGetIcon.png ├── README.md ├── ReleaseVersion.xml ├── SECURITY.md ├── docs └── PER_CALL_CREDENTIAL.md ├── generateprotos.sh ├── global.json ├── myget.bat ├── nuget.config ├── release-please-config.json ├── rest.md ├── runintegrationtests.sh └── updateprotos.sh /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/support_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/.github/ISSUE_TEMPLATE/support_request.md -------------------------------------------------------------------------------- /.github/blunderbuss.yml: -------------------------------------------------------------------------------- 1 | assign_issues: 2 | - googleapis/cloud-libraries-dotnet -------------------------------------------------------------------------------- /.github/release-please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/.github/release-please.yml -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/.gitignore -------------------------------------------------------------------------------- /.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | ".": "4.12.1" 3 | } -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CommonProperties.Test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/CommonProperties.Test.xml -------------------------------------------------------------------------------- /CommonProperties.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/CommonProperties.xml -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /Gax.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Gax.sln -------------------------------------------------------------------------------- /Gax.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Gax.snk -------------------------------------------------------------------------------- /Google.Api.CommonProtos.Tests/Google.Api.CommonProtos.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos.Tests/Google.Api.CommonProtos.Tests.csproj -------------------------------------------------------------------------------- /Google.Api.CommonProtos.Tests/Rpc/StatusTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos.Tests/Rpc/StatusTest.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos.Tests/Type/DateTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos.Tests/Type/DateTest.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos.Tests/Type/DecimalTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos.Tests/Type/DecimalTest.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos.Tests/Type/MoneyTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos.Tests/Type/MoneyTest.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Api/Annotations.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Api/Annotations.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Api/Auth.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Api/Auth.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Api/Backend.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Api/Backend.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Api/Billing.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Api/Billing.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Api/Client.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Api/Client.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Api/ConfigChange.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Api/ConfigChange.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Api/Consumer.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Api/Consumer.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Api/Context.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Api/Context.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Api/Control.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Api/Control.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Api/Distribution.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Api/Distribution.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Api/Documentation.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Api/Documentation.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Api/Endpoint.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Api/Endpoint.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Api/ErrorReason.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Api/ErrorReason.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Api/FieldBehavior.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Api/FieldBehavior.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Api/FieldInfo.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Api/FieldInfo.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Api/Http.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Api/Http.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Api/Httpbody.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Api/Httpbody.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Api/Label.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Api/Label.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Api/LaunchStage.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Api/LaunchStage.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Api/Log.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Api/Log.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Api/Logging.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Api/Logging.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Api/Metric.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Api/Metric.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Api/MonitoredResource.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Api/MonitoredResource.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Api/Monitoring.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Api/Monitoring.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Api/Policy.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Api/Policy.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Api/Quota.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Api/Quota.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Api/Resource.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Api/Resource.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Api/Routing.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Api/Routing.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Api/Service.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Api/Service.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Api/SourceInfo.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Api/SourceInfo.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Api/SystemParameter.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Api/SystemParameter.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Api/Usage.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Api/Usage.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Api/Visibility.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Api/Visibility.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Google.Api.CommonProtos.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Google.Api.CommonProtos.csproj -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Rpc/Code.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Rpc/Code.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Rpc/Context/AttributeContext.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Rpc/Context/AttributeContext.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Rpc/Context/AuditContext.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Rpc/Context/AuditContext.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Rpc/ErrorDetails.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Rpc/ErrorDetails.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Rpc/Http.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Rpc/Http.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Rpc/StandardErrorTypeRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Rpc/StandardErrorTypeRegistry.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Rpc/Status.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Rpc/Status.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Rpc/StatusPartial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Rpc/StatusPartial.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Type/CalendarPeriod.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Type/CalendarPeriod.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Type/Color.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Type/Color.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Type/Date.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Type/Date.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Type/DateExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Type/DateExtensions.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Type/DatePartial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Type/DatePartial.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Type/Datetime.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Type/Datetime.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Type/Dayofweek.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Type/Dayofweek.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Type/Decimal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Type/Decimal.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Type/Decimal.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Type/Decimal.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Type/Expr.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Type/Expr.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Type/Fraction.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Type/Fraction.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Type/Interval.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Type/Interval.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Type/Latlng.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Type/Latlng.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Type/LocalizedText.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Type/LocalizedText.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Type/Money.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Type/Money.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Type/MoneyPartial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Type/MoneyPartial.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Type/Month.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Type/Month.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Type/PhoneNumber.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Type/PhoneNumber.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Type/PostalAddress.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Type/PostalAddress.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Type/Quaternion.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Type/Quaternion.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/Type/Timeofday.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/Type/Timeofday.g.cs -------------------------------------------------------------------------------- /Google.Api.CommonProtos/build/Google.Api.CommonProtos.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/build/Google.Api.CommonProtos.targets -------------------------------------------------------------------------------- /Google.Api.CommonProtos/proto-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/proto-header.txt -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/api/annotations.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/api/annotations.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/api/auth.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/api/auth.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/api/backend.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/api/backend.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/api/billing.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/api/billing.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/api/client.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/api/client.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/api/config_change.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/api/config_change.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/api/consumer.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/api/consumer.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/api/context.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/api/context.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/api/control.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/api/control.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/api/distribution.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/api/distribution.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/api/documentation.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/api/documentation.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/api/endpoint.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/api/endpoint.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/api/error_reason.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/api/error_reason.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/api/field_behavior.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/api/field_behavior.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/api/field_info.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/api/field_info.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/api/http.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/api/http.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/api/httpbody.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/api/httpbody.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/api/label.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/api/label.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/api/launch_stage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/api/launch_stage.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/api/log.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/api/log.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/api/logging.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/api/logging.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/api/metric.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/api/metric.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/api/monitored_resource.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/api/monitored_resource.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/api/monitoring.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/api/monitoring.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/api/policy.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/api/policy.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/api/quota.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/api/quota.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/api/resource.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/api/resource.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/api/routing.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/api/routing.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/api/service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/api/service.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/api/source_info.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/api/source_info.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/api/system_parameter.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/api/system_parameter.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/api/usage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/api/usage.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/api/visibility.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/api/visibility.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/rpc/code.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/rpc/code.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/rpc/context/attribute_context.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/rpc/context/attribute_context.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/rpc/context/audit_context.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/rpc/context/audit_context.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/rpc/error_details.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/rpc/error_details.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/rpc/http.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/rpc/http.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/rpc/status.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/rpc/status.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/type/calendar_period.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/type/calendar_period.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/type/color.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/type/color.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/type/date.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/type/date.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/type/datetime.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/type/datetime.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/type/dayofweek.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/type/dayofweek.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/type/decimal.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/type/decimal.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/type/expr.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/type/expr.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/type/fraction.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/type/fraction.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/type/interval.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/type/interval.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/type/latlng.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/type/latlng.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/type/localized_text.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/type/localized_text.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/type/money.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/type/money.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/type/month.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/type/month.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/type/phone_number.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/type/phone_number.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/type/postal_address.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/type/postal_address.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/type/quaternion.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/type/quaternion.proto -------------------------------------------------------------------------------- /Google.Api.CommonProtos/protos/google/type/timeofday.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.CommonProtos/protos/google/type/timeofday.proto -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.IntegrationTests/ChannelPoolTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.IntegrationTests/ChannelPoolTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.IntegrationTests/ClientBuilderBaseTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.IntegrationTests/ClientBuilderBaseTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.IntegrationTests/ForwardingCallInvokerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.IntegrationTests/ForwardingCallInvokerTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.IntegrationTests/ForwardingTestService.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.IntegrationTests/ForwardingTestService.g.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.IntegrationTests/ForwardingTestServiceFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.IntegrationTests/ForwardingTestServiceFixture.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.IntegrationTests/ForwardingTestServiceGrpc.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.IntegrationTests/ForwardingTestServiceGrpc.g.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.IntegrationTests/Gcp/FakeCallInvoker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.IntegrationTests/Gcp/FakeCallInvoker.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.IntegrationTests/Gcp/FakeChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.IntegrationTests/Gcp/FakeChannel.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.IntegrationTests/Gcp/FakeGrpcAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.IntegrationTests/Gcp/FakeGrpcAdapter.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.IntegrationTests/Gcp/GrpcCallInvokerPoolTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.IntegrationTests/Gcp/GrpcCallInvokerPoolTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.IntegrationTests/Google.Api.Gax.Grpc.IntegrationTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.IntegrationTests/Google.Api.Gax.Grpc.IntegrationTests.csproj -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.IntegrationTests/GrpcAdapterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.IntegrationTests/GrpcAdapterTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.IntegrationTests/GrpcCoreAdapterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.IntegrationTests/GrpcCoreAdapterTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.IntegrationTests/GrpcNetClientAdapterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.IntegrationTests/GrpcNetClientAdapterTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.IntegrationTests/Rest/RestChannelTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.IntegrationTests/Rest/RestChannelTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.IntegrationTests/TestService.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.IntegrationTests/TestService.g.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.IntegrationTests/TestServiceFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.IntegrationTests/TestServiceFixture.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.IntegrationTests/TestServiceGrpc.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.IntegrationTests/TestServiceGrpc.g.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.IntegrationTests/TestServiceMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.IntegrationTests/TestServiceMetadata.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.IntegrationTests/forwarding_test_service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.IntegrationTests/forwarding_test_service.proto -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.IntegrationTests/test_service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.IntegrationTests/test_service.proto -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Testing/AsyncStreamAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Testing/AsyncStreamAdapter.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Testing/FakeApiCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Testing/FakeApiCall.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Testing/Google.Api.Gax.Grpc.Testing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Testing/Google.Api.Gax.Grpc.Testing.csproj -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/ApiBidirectionalStreamingCallTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/ApiBidirectionalStreamingCallTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/ApiCallTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/ApiCallTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/ApiClientStreamingCallTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/ApiClientStreamingCallTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/ApiMetadataTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/ApiMetadataTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/ApiServerStreamingCallTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/ApiServerStreamingCallTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/AssemblyInfo.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/AsyncResponseStreamTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/AsyncResponseStreamTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/BufferedClientStreamWriterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/BufferedClientStreamWriterTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/CallSettingsExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/CallSettingsExtensionsTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/CallSettingsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/CallSettingsTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/ChannelBaseExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/ChannelBaseExtensionsTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/ClientBuilderBaseTest.DependencyInjectionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/ClientBuilderBaseTest.DependencyInjectionTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/ClientBuilderBaseTest.EffectiveEndpointTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/ClientBuilderBaseTest.EffectiveEndpointTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/ClientBuilderBaseTest.GetEffectiveSettingsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/ClientBuilderBaseTest.GetEffectiveSettingsTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/ClientBuilderBaseTest.GetEmulatorEnvironmentTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/ClientBuilderBaseTest.GetEmulatorEnvironmentTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/ClientBuilderBaseTest.GetGoogleCredentialTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/ClientBuilderBaseTest.GetGoogleCredentialTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/ClientBuilderBaseTest.UniverseDomainTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/ClientBuilderBaseTest.UniverseDomainTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/ClientBuilderBaseTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/ClientBuilderBaseTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/ClientHelperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/ClientHelperTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/ConformanceTestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/ConformanceTestData.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/GaxGrpcServiceCollectionExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/GaxGrpcServiceCollectionExtensionsTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/GaxPreconditionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/GaxPreconditionsTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/Google.Api.Gax.Grpc.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/Google.Api.Gax.Grpc.Tests.csproj -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/GrpcChannelOptionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/GrpcChannelOptionsTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/GrpcCoreAdapterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/GrpcCoreAdapterTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/GrpcNetClientAdapterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/GrpcNetClientAdapterTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/LoggerTypeNameHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/LoggerTypeNameHelper.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/MemoryLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/MemoryLogger.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/MemoryLoggerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/MemoryLoggerProvider.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/MonitoringResourceBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/MonitoringResourceBuilderTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/PageStreamingRequestPartial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/PageStreamingRequestPartial.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/PageStreamingResponsePartial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/PageStreamingResponsePartial.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/PageStreamingTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/PageStreamingTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/ProtobufUtilitiesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/ProtobufUtilitiesTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/Rest/BadService.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/Rest/BadService.g.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/Rest/BadServiceGrpc.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/Rest/BadServiceGrpc.g.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/Rest/HttpRulePathPatternTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/Rest/HttpRulePathPatternTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/Rest/HttpRuleTranscoderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/Rest/HttpRuleTranscoderTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/Rest/JsonStateTrackerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/Rest/JsonStateTrackerTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/Rest/PartialDecodingStreamReaderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/Rest/PartialDecodingStreamReaderTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/Rest/ReadHttpResponseMessageTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/Rest/ReadHttpResponseMessageTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/Rest/RestMethodTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/Rest/RestMethodTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/Rest/RestServiceCollectionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/Rest/RestServiceCollectionTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/Rest/RpcCancellationContextTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/Rest/RpcCancellationContextTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/Rest/TestService.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/Rest/TestService.g.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/Rest/TestServiceGrpc.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/Rest/TestServiceGrpc.g.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/Rest/TranscoderTest.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/Rest/TranscoderTest.g.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/Rest/bad_service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/Rest/bad_service.proto -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/Rest/test_service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/Rest/test_service.proto -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/Rest/transcoder_test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/Rest/transcoder_test.proto -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/Rest/transcoder_tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/Rest/transcoder_tests.json -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/RetryAttemptTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/RetryAttemptTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/RetrySettingsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/RetrySettingsTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/RetryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/RetryTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/RoutingHeaderExtractorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/RoutingHeaderExtractorTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/RpcExceptionExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/RpcExceptionExtensionsTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/ServiceSettingsBaseTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/ServiceSettingsBaseTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/TestApiMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/TestApiMetadata.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/TestLogEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/TestLogEntry.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/TestMessages.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/TestMessages.g.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/TestServiceMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/TestServiceMetadata.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc.Tests/test_messages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc.Tests/test_messages.proto -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/ApiBidirectionalStreamingCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/ApiBidirectionalStreamingCall.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/ApiCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/ApiCall.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/ApiCallLoggingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/ApiCallLoggingExtensions.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/ApiCallRetryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/ApiCallRetryExtensions.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/ApiCallTracingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/ApiCallTracingExtensions.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/ApiClientStreamingCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/ApiClientStreamingCall.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/ApiMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/ApiMetadata.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/ApiServerStreamingCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/ApiServerStreamingCall.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/AssemblyInfo.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/AsyncResponseStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/AsyncResponseStream.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/BidirectionalStreamingBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/BidirectionalStreamingBase.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/BidirectionalStreamingSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/BidirectionalStreamingSettings.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/BufferedClientStreamWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/BufferedClientStreamWriter.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/CallSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/CallSettings.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/CallSettingsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/CallSettingsExtensions.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/ChannelBaseExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/ChannelBaseExtensions.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/ChannelPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/ChannelPool.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/ClientBuilderBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/ClientBuilderBase.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/ClientHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/ClientHelper.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/ClientStreamingBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/ClientStreamingBase.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/ClientStreamingSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/ClientStreamingSettings.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/DefaultChannelCredentialsCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/DefaultChannelCredentialsCache.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/ForwardingCallInvoker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/ForwardingCallInvoker.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/GaxGrpcServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/GaxGrpcServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/Gcp/ChannelRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/Gcp/ChannelRef.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/Gcp/GcpCallInvoker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/Gcp/GcpCallInvoker.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/Gcp/GcpCallInvokerPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/Gcp/GcpCallInvokerPool.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/Gcp/GcpClientResponseStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/Gcp/GcpClientResponseStream.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/Gcp/GrpcGcp.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/Gcp/GrpcGcp.g.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/Gcp/grpc_gcp.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/Gcp/grpc_gcp.proto -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/Google.Api.Gax.Grpc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/Google.Api.Gax.Grpc.csproj -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/GoogleCredentialExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/GoogleCredentialExtensions.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/GrpcAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/GrpcAdapter.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/GrpcChannelOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/GrpcChannelOptions.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/GrpcCoreAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/GrpcCoreAdapter.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/GrpcNetClientAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/GrpcNetClientAdapter.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/GrpcPagedAsyncEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/GrpcPagedAsyncEnumerable.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/GrpcPagedEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/GrpcPagedEnumerable.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/GrpcWindowsDetection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/GrpcWindowsDetection.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/MonitoredResourceBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/MonitoredResourceBuilder.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/PagedEnumerableCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/PagedEnumerableCommon.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/ProtobufUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/ProtobufUtilities.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/Rest/CredentialExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/Rest/CredentialExtensions.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/Rest/HttpRulePathPattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/Rest/HttpRulePathPattern.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/Rest/HttpRuleTranscoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/Rest/HttpRuleTranscoder.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/Rest/JsonStateTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/Rest/JsonStateTracker.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/Rest/PartialDecodingStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/Rest/PartialDecodingStreamReader.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/Rest/ReadHttpResponseMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/Rest/ReadHttpResponseMessage.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/Rest/ResponseMetadata.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/Rest/ResponseMetadata.g.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/Rest/RestCallInvoker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/Rest/RestCallInvoker.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/Rest/RestChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/Rest/RestChannel.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/Rest/RestGrpcAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/Rest/RestGrpcAdapter.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/Rest/RestMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/Rest/RestMethod.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/Rest/RestServiceCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/Rest/RestServiceCollection.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/Rest/RpcCancellationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/Rest/RpcCancellationContext.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/Rest/TranscodingOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/Rest/TranscodingOutput.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/Rest/response_metadata.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/Rest/response_metadata.proto -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/RetryAttempt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/RetryAttempt.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/RetrySettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/RetrySettings.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/RoutingHeaderExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/RoutingHeaderExtractor.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/RpcExceptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/RpcExceptionExtensions.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/ServerStreamingBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/ServerStreamingBase.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/ServiceMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/ServiceMetadata.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/ServiceSettingsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/ServiceSettingsBase.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Grpc/TaskExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Grpc/TaskExtensions.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Rest.IntegrationTests/ClientBuilderBaseTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Rest.IntegrationTests/ClientBuilderBaseTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Rest.IntegrationTests/Google.Api.Gax.Rest.IntegrationTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Rest.IntegrationTests/Google.Api.Gax.Rest.IntegrationTests.csproj -------------------------------------------------------------------------------- /Google.Api.Gax.Rest.Tests/ClientBuilderBaseTest.Defaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Rest.Tests/ClientBuilderBaseTest.Defaults.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Rest.Tests/ClientBuilderBaseTest.DependencyInjection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Rest.Tests/ClientBuilderBaseTest.DependencyInjection.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Rest.Tests/ClientBuilderBaseTest.GetHttpClientInitializerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Rest.Tests/ClientBuilderBaseTest.GetHttpClientInitializerTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Rest.Tests/Google.Api.Gax.Rest.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Rest.Tests/Google.Api.Gax.Rest.Tests.csproj -------------------------------------------------------------------------------- /Google.Api.Gax.Rest.Tests/PageStreamingTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Rest.Tests/PageStreamingTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Rest.Tests/ScopedCredentialProviderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Rest.Tests/ScopedCredentialProviderTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Rest.Tests/UserAgentHelperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Rest.Tests/UserAgentHelperTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Rest/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Rest/AssemblyInfo.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Rest/ClientBuilderBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Rest/ClientBuilderBase.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Rest/Google.Api.Gax.Rest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Rest/Google.Api.Gax.Rest.csproj -------------------------------------------------------------------------------- /Google.Api.Gax.Rest/IPageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Rest/IPageManager.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Rest/RestPagedAsyncEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Rest/RestPagedAsyncEnumerable.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Rest/RestPagedEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Rest/RestPagedEnumerable.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Rest/ScopedCredentialProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Rest/ScopedCredentialProvider.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Rest/UserAgentHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Rest/UserAgentHelper.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Testing/FakeClock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Testing/FakeClock.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Testing/FakeScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Testing/FakeScheduler.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Testing/Google.Api.Gax.Testing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Testing/Google.Api.Gax.Testing.csproj -------------------------------------------------------------------------------- /Google.Api.Gax.Testing/NoOpScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Testing/NoOpScheduler.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Testing/TestCredentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Testing/TestCredentials.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Tests/ActivitySourcesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Tests/ActivitySourcesTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Tests/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Tests/AssemblyInfo.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Tests/BatchingSettingsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Tests/BatchingSettingsTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Tests/EmptyDictionaryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Tests/EmptyDictionaryTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Tests/EnvironmentVariableRestorer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Tests/EnvironmentVariableRestorer.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Tests/FakeSchedulerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Tests/FakeSchedulerTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Tests/FieldFormatsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Tests/FieldFormatsTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Tests/FlowControlSettingsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Tests/FlowControlSettingsTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Tests/GaxEqualityHelpersTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Tests/GaxEqualityHelpersTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Tests/GaxPreconditionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Tests/GaxPreconditionsTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Tests/Google.Api.Gax.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Tests/Google.Api.Gax.Tests.csproj -------------------------------------------------------------------------------- /Google.Api.Gax.Tests/Json/JsonBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Tests/Json/JsonBuilderTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Tests/Json/JsonParserTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Tests/Json/JsonParserTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Tests/Json/JsonTokenizerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Tests/Json/JsonTokenizerTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Tests/PathTemplateTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Tests/PathTemplateTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Tests/PlatformTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Tests/PlatformTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Tests/PollSettingsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Tests/PollSettingsTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Tests/PollingTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Tests/PollingTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Tests/ResourceNameListTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Tests/ResourceNameListTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Tests/Resources/Metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Tests/Resources/Metadata.json -------------------------------------------------------------------------------- /Google.Api.Gax.Tests/Resources/Namespace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Tests/Resources/Namespace.json -------------------------------------------------------------------------------- /Google.Api.Gax.Tests/Resources/Pod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Tests/Resources/Pod.json -------------------------------------------------------------------------------- /Google.Api.Gax.Tests/TaskCompletionSourceExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Tests/TaskCompletionSourceExtensionsTests.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Tests/TaskExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Tests/TaskExtensionsTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Tests/TemplatedResourceNameTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Tests/TemplatedResourceNameTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Tests/UnparsedResourceNameTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Tests/UnparsedResourceNameTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax.Tests/VersionHeaderBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax.Tests/VersionHeaderBuilderTest.cs -------------------------------------------------------------------------------- /Google.Api.Gax/ActivitySources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/ActivitySources.cs -------------------------------------------------------------------------------- /Google.Api.Gax/ApiTransports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/ApiTransports.cs -------------------------------------------------------------------------------- /Google.Api.Gax/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/AssemblyInfo.cs -------------------------------------------------------------------------------- /Google.Api.Gax/BatchingSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/BatchingSettings.cs -------------------------------------------------------------------------------- /Google.Api.Gax/CloudRunPlatformDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/CloudRunPlatformDetails.cs -------------------------------------------------------------------------------- /Google.Api.Gax/EmptyDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/EmptyDictionary.cs -------------------------------------------------------------------------------- /Google.Api.Gax/EmulatorDetection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/EmulatorDetection.cs -------------------------------------------------------------------------------- /Google.Api.Gax/Expiration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/Expiration.cs -------------------------------------------------------------------------------- /Google.Api.Gax/FieldFormats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/FieldFormats.cs -------------------------------------------------------------------------------- /Google.Api.Gax/FlowControlSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/FlowControlSettings.cs -------------------------------------------------------------------------------- /Google.Api.Gax/GaePlatformDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/GaePlatformDetails.cs -------------------------------------------------------------------------------- /Google.Api.Gax/GaxEqualityHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/GaxEqualityHelpers.cs -------------------------------------------------------------------------------- /Google.Api.Gax/GaxPreconditions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/GaxPreconditions.cs -------------------------------------------------------------------------------- /Google.Api.Gax/GcePlatformDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/GcePlatformDetails.cs -------------------------------------------------------------------------------- /Google.Api.Gax/GkePlatformDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/GkePlatformDetails.cs -------------------------------------------------------------------------------- /Google.Api.Gax/Google.Api.Gax.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/Google.Api.Gax.csproj -------------------------------------------------------------------------------- /Google.Api.Gax/IClock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/IClock.cs -------------------------------------------------------------------------------- /Google.Api.Gax/IResourceName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/IResourceName.cs -------------------------------------------------------------------------------- /Google.Api.Gax/IScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/IScheduler.cs -------------------------------------------------------------------------------- /Google.Api.Gax/Json/InvalidJsonException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/Json/InvalidJsonException.cs -------------------------------------------------------------------------------- /Google.Api.Gax/Json/JsonBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/Json/JsonBuilder.cs -------------------------------------------------------------------------------- /Google.Api.Gax/Json/JsonParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/Json/JsonParser.cs -------------------------------------------------------------------------------- /Google.Api.Gax/Json/JsonToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/Json/JsonToken.cs -------------------------------------------------------------------------------- /Google.Api.Gax/Json/JsonTokenizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/Json/JsonTokenizer.cs -------------------------------------------------------------------------------- /Google.Api.Gax/Page.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/Page.cs -------------------------------------------------------------------------------- /Google.Api.Gax/PagedAsyncEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/PagedAsyncEnumerable.cs -------------------------------------------------------------------------------- /Google.Api.Gax/PagedEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/PagedEnumerable.cs -------------------------------------------------------------------------------- /Google.Api.Gax/PathTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/PathTemplate.cs -------------------------------------------------------------------------------- /Google.Api.Gax/Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/Platform.cs -------------------------------------------------------------------------------- /Google.Api.Gax/PlatformType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/PlatformType.cs -------------------------------------------------------------------------------- /Google.Api.Gax/PollSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/PollSettings.cs -------------------------------------------------------------------------------- /Google.Api.Gax/Polling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/Polling.cs -------------------------------------------------------------------------------- /Google.Api.Gax/ResourceMismatchException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/ResourceMismatchException.cs -------------------------------------------------------------------------------- /Google.Api.Gax/ResourceNameList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/ResourceNameList.cs -------------------------------------------------------------------------------- /Google.Api.Gax/ResourceNames/BillingAccountName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/ResourceNames/BillingAccountName.cs -------------------------------------------------------------------------------- /Google.Api.Gax/ResourceNames/CommonResourcesConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/ResourceNames/CommonResourcesConfig.json -------------------------------------------------------------------------------- /Google.Api.Gax/ResourceNames/FolderName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/ResourceNames/FolderName.cs -------------------------------------------------------------------------------- /Google.Api.Gax/ResourceNames/LocationName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/ResourceNames/LocationName.cs -------------------------------------------------------------------------------- /Google.Api.Gax/ResourceNames/OrganizationName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/ResourceNames/OrganizationName.cs -------------------------------------------------------------------------------- /Google.Api.Gax/ResourceNames/ProjectName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/ResourceNames/ProjectName.cs -------------------------------------------------------------------------------- /Google.Api.Gax/SystemClock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/SystemClock.cs -------------------------------------------------------------------------------- /Google.Api.Gax/SystemScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/SystemScheduler.cs -------------------------------------------------------------------------------- /Google.Api.Gax/TaskCompletionSourceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/TaskCompletionSourceExtensions.cs -------------------------------------------------------------------------------- /Google.Api.Gax/TaskExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/TaskExtensions.cs -------------------------------------------------------------------------------- /Google.Api.Gax/TemplatedResourceName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/TemplatedResourceName.cs -------------------------------------------------------------------------------- /Google.Api.Gax/UnparsedResourceName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/UnparsedResourceName.cs -------------------------------------------------------------------------------- /Google.Api.Gax/VersionHeaderBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/Google.Api.Gax/VersionHeaderBuilder.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/LICENSE -------------------------------------------------------------------------------- /NuGetIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/NuGetIcon.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/README.md -------------------------------------------------------------------------------- /ReleaseVersion.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/ReleaseVersion.xml -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/SECURITY.md -------------------------------------------------------------------------------- /docs/PER_CALL_CREDENTIAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/docs/PER_CALL_CREDENTIAL.md -------------------------------------------------------------------------------- /generateprotos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/generateprotos.sh -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/global.json -------------------------------------------------------------------------------- /myget.bat: -------------------------------------------------------------------------------- 1 | bash build.sh 2 | -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/nuget.config -------------------------------------------------------------------------------- /release-please-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/release-please-config.json -------------------------------------------------------------------------------- /rest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/rest.md -------------------------------------------------------------------------------- /runintegrationtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/runintegrationtests.sh -------------------------------------------------------------------------------- /updateprotos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-dotnet/HEAD/updateprotos.sh --------------------------------------------------------------------------------