├── .allstar └── binary_artifacts.yaml ├── .dockerignore ├── .github ├── CODEOWNERS ├── blunderbuss.yml ├── renovate.json └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── BUILD.bazel ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Directory.Build.props ├── Directory.Packages.props ├── DotnetToolProperties.xml ├── Generator.sln ├── Google.Api.Generator.IntegrationTests ├── ComplianceRestTest.cs ├── EchoTest.cs ├── Google.Api.Generator.IntegrationTests.csproj ├── README.md ├── ShowcaseTestBase.cs ├── TestResources.cs └── compliance_suite.json ├── Google.Api.Generator.Rest.Tests ├── GeneratedCodeTest.cs ├── GoldenTestData │ ├── Google.Apis.Assuredworkloads.v1 │ │ ├── Google.Apis.Assuredworkloads.v1.cs │ │ ├── Google.Apis.Assuredworkloads.v1.csproj │ │ └── discovery.json │ ├── Google.Apis.Calendar.v3 │ │ ├── Google.Apis.Calendar.v3.cs │ │ ├── Google.Apis.Calendar.v3.csproj │ │ └── discovery.json │ ├── Google.Apis.CloudRun.v1 │ │ ├── Google.Apis.CloudRun.v1.cs │ │ ├── Google.Apis.CloudRun.v1.csproj │ │ └── discovery.json │ ├── Google.Apis.CloudSupport.v2 │ │ ├── Google.Apis.CloudSupport.v2.cs │ │ ├── Google.Apis.CloudSupport.v2.csproj │ │ └── discovery.json │ ├── Google.Apis.DataprocMetastore.v1 │ │ ├── Google.Apis.DataprocMetastore.v1.cs │ │ ├── Google.Apis.DataprocMetastore.v1.csproj │ │ └── discovery.json │ ├── Google.Apis.ManufacturerCenter.v1 │ │ ├── Google.Apis.ManufacturerCenter.v1.cs │ │ ├── Google.Apis.ManufacturerCenter.v1.csproj │ │ └── discovery.json │ ├── Google.Apis.Storage.v1 │ │ ├── Google.Apis.Storage.v1.cs │ │ ├── Google.Apis.Storage.v1.csproj │ │ └── discovery.json │ ├── Google.Apis.Translate.v2 │ │ ├── Google.Apis.Translate.v2.cs │ │ ├── Google.Apis.Translate.v2.csproj │ │ └── discovery.json │ └── Google.Apis.Webfonts.v1 │ │ ├── Google.Apis.Webfonts.v1.cs │ │ ├── Google.Apis.Webfonts.v1.csproj │ │ └── discovery.json ├── GoldenUnitTest.cs ├── Google.Api.Generator.Rest.Tests.csproj ├── NamingTest.cs ├── PackageEnumStorageTest.cs └── TestResources.cs ├── Google.Api.Generator.Rest ├── AssemblyInfo.cs ├── CodeGenerator.cs ├── Google.Api.Generator.Rest.csproj ├── Google.Apis.Discovery.v1.cs ├── Lists.cs ├── Models │ ├── AuthScope.cs │ ├── DataModel.cs │ ├── DataPropertyModel.cs │ ├── EnumMemberModel.cs │ ├── EnumModel.cs │ ├── Features.cs │ ├── MethodModel.cs │ ├── Naming.cs │ ├── PackageModel.cs │ ├── ParameterModel.cs │ ├── ResourceModel.cs │ └── SchemaTypes.cs ├── PackageEnumStorage.cs └── Program.cs ├── Google.Api.Generator.Testing ├── Google.Api.Generator.Testing.csproj ├── PathUtils.cs └── TextComparer.cs ├── Google.Api.Generator.Tests ├── Google.Api.Generator.Tests.csproj ├── InvocationTest.cs ├── Invoker.cs ├── ProtoExtensionsTest.cs ├── ProtoTest.cs ├── ProtoTest.proto ├── ProtoTests │ ├── Basic.v1 │ │ ├── Basic.v1.proto │ │ ├── Testing.Basic.V1.GeneratedSnippets │ │ │ ├── BasicClient.AMethodRequestObjectAsyncSnippet.g.cs │ │ │ ├── BasicClient.AMethodRequestObjectSnippet.g.cs │ │ │ ├── Testing.Basic.V1.GeneratedSnippets.csproj │ │ │ └── snippet_metadata_testing.basic.v1.json │ │ ├── Testing.Basic.V1.Snippets │ │ │ ├── BasicClientSnippets.g.cs │ │ │ └── Testing.Basic.V1.Snippets.csproj │ │ ├── Testing.Basic.V1 │ │ │ ├── BasicClient.g.cs │ │ │ ├── BasicFakes.cs │ │ │ ├── PackageApiMetadata.g.cs │ │ │ ├── ServiceCollectionExtensions.g.cs │ │ │ └── Testing.Basic.V1.csproj │ │ └── gapic_metadata.json │ ├── BasicBidiStreaming │ │ ├── BasicBidiStreaming.proto │ │ ├── BasicBidiStreamingFakes.cs │ │ └── Testing.BasicBidiStreaming │ │ │ └── BasicBidiStreamingClient.g.cs │ ├── BasicClientStreaming │ │ ├── BasicClientStreaming.proto │ │ ├── BasicClientStreamingFakes.cs │ │ └── Testing.BasicClientStreaming │ │ │ └── BasicClientStreamingClient.g.cs │ ├── BasicLro │ │ ├── BasicLro.proto │ │ ├── BasicLroFakes.cs │ │ ├── Testing.BasicLro.GeneratedSnippets │ │ │ ├── BasicLroClient.Method1RequestObjectAsyncSnippet.g.cs │ │ │ ├── BasicLroClient.Method1RequestObjectSnippet.g.cs │ │ │ └── snippet_metadata_testing.basiclro.json │ │ ├── Testing.BasicLro.Snippets │ │ │ └── BasicLroClientSnippets.g.cs │ │ └── Testing.BasicLro │ │ │ └── BasicLroClient.g.cs │ ├── BasicPaginated │ │ ├── BasicPaginated.proto │ │ ├── BasicPaginatedFakes.cs │ │ └── Testing.BasicPaginated │ │ │ └── BasicPaginatedClient.g.cs │ ├── BasicServerStreaming │ │ ├── BasicServerStreaming.proto │ │ ├── BasicServerStreamingFakes.cs │ │ └── Testing.BasicServerStreaming │ │ │ └── BasicServerStreamingClient.g.cs │ ├── ChildResource │ │ ├── ChildResource.proto │ │ ├── ChildResourceFakes.cs │ │ └── Testing.ChildResource │ │ │ ├── ChildResourceClient.g.cs │ │ │ └── ChildResourceResourceNames.g.cs │ ├── CommonResource │ │ ├── CommonResource.proto │ │ ├── CommonResourceConfig1.json │ │ ├── CommonResourceConfig2.json │ │ ├── CommonResourceDef.proto │ │ ├── CommonResourceFakes.cs │ │ └── Testing.CommonResource │ │ │ ├── CommonResourceClient.g.cs │ │ │ └── CommonResourceResourceNames.g.cs │ ├── Deprecated │ │ ├── Deprecated.proto │ │ ├── DeprecatedFakes.cs │ │ ├── Testing.Deprecated.GeneratedSnippets │ │ │ ├── DeprecatedClient.DeprecatedFieldMethodAsyncSnippet.g.cs │ │ │ ├── DeprecatedClient.DeprecatedFieldMethodRequestObjectAsyncSnippet.g.cs │ │ │ ├── DeprecatedClient.DeprecatedFieldMethodRequestObjectSnippet.g.cs │ │ │ ├── DeprecatedClient.DeprecatedFieldMethodSnippet.g.cs │ │ │ ├── DeprecatedClient.DeprecatedMessageMethodRequestObjectAsyncSnippet.g.cs │ │ │ ├── DeprecatedClient.DeprecatedMessageMethodRequestObjectSnippet.g.cs │ │ │ ├── DeprecatedClient.DeprecatedMethodRequestObjectAsyncSnippet.g.cs │ │ │ ├── DeprecatedClient.DeprecatedMethodRequestObjectSnippet.g.cs │ │ │ ├── DeprecatedClient.DeprecatedResponseMethodRequestObjectAsyncSnippet.g.cs │ │ │ ├── DeprecatedClient.DeprecatedResponseMethodRequestObjectSnippet.g.cs │ │ │ ├── DeprecatedServiceClient.DeprecatedMethodRequestObjectAsyncSnippet.g.cs │ │ │ ├── DeprecatedServiceClient.DeprecatedMethodRequestObjectSnippet.g.cs │ │ │ ├── DeprecatedServiceClient.NonDeprecatedMethodRequestObjectAsyncSnippet.g.cs │ │ │ ├── DeprecatedServiceClient.NonDeprecatedMethodRequestObjectSnippet.g.cs │ │ │ └── snippet_metadata_testing.deprecated.json │ │ ├── Testing.Deprecated.Snippets │ │ │ ├── DeprecatedClientSnippets.g.cs │ │ │ └── DeprecatedServiceClientSnippets.g.cs │ │ └── Testing.Deprecated │ │ │ ├── DeprecatedClient.g.cs │ │ │ ├── DeprecatedServiceClient.g.cs │ │ │ └── ServiceCollectionExtensions.g.cs │ ├── Directory.Build.props │ ├── DuplicateResourceDefinitions │ │ └── DuplicateResourceDefinitions.proto │ ├── Editions │ │ ├── Edition2023.proto │ │ ├── Edition2023Fakes.cs │ │ └── Testing.Editions │ │ │ ├── Edition2023Client.g.cs │ │ │ └── Edition2023ResourceNames.g.cs │ ├── GrpcServiceConfig │ │ ├── GrpcServiceConfig.json │ │ ├── GrpcServiceConfig.proto │ │ └── Testing.GrpcServiceConfig │ │ │ ├── GrpcServiceConfigClient.g.cs │ │ │ └── GrpcServiceConfigNoRetryClient.g.cs │ ├── Keywords │ │ ├── Keywords.proto │ │ ├── KeywordsFakes.cs │ │ ├── Testing.Keywords.GeneratedSnippets │ │ │ ├── KeywordsClient.Method1AsyncSnippet.g.cs │ │ │ ├── KeywordsClient.Method1RequestObjectAsyncSnippet.g.cs │ │ │ ├── KeywordsClient.Method1RequestObjectSnippet.g.cs │ │ │ ├── KeywordsClient.Method1ResourceNamesAsyncSnippet.g.cs │ │ │ ├── KeywordsClient.Method1ResourceNamesSnippet.g.cs │ │ │ ├── KeywordsClient.Method1Snippet.g.cs │ │ │ ├── KeywordsClient.Method2AsyncSnippet.g.cs │ │ │ ├── KeywordsClient.Method2RequestObjectAsyncSnippet.g.cs │ │ │ ├── KeywordsClient.Method2RequestObjectSnippet.g.cs │ │ │ ├── KeywordsClient.Method2ResourceNamesAsyncSnippet.g.cs │ │ │ ├── KeywordsClient.Method2ResourceNamesSnippet.g.cs │ │ │ ├── KeywordsClient.Method2Snippet.g.cs │ │ │ └── snippet_metadata_testing.keywords.json │ │ ├── Testing.Keywords.Snippets │ │ │ └── KeywordsClientSnippets.g.cs │ │ └── Testing.Keywords │ │ │ ├── KeywordsClient.g.cs │ │ │ └── KeywordsResourceNames.g.cs │ ├── Lro │ │ ├── Lro.proto │ │ ├── LroFakes.cs │ │ └── Testing.Lro │ │ │ ├── LroClient.g.cs │ │ │ ├── LroResourceNames.g.cs │ │ │ └── Testing.Lro.csproj │ ├── MethodSignatures │ │ ├── MethodSignatures.proto │ │ ├── MethodSignaturesFakes.cs │ │ └── Testing.MethodSignatures │ │ │ └── MethodSignaturesClient.g.cs │ ├── Mixins │ │ ├── Mixins.proto │ │ ├── Mixins.yaml │ │ ├── Testing.Mixins │ │ │ ├── MixinFakes.cs │ │ │ ├── MixinServiceClient.g.cs │ │ │ └── Testing.Mixins.csproj │ │ └── gapic_metadata.json │ ├── OptionalFields │ │ ├── OptionalFields.proto │ │ ├── OptionalFieldsFakes.cs │ │ └── Testing.OptionalFields │ │ │ ├── OptionalFieldsClient.g.cs │ │ │ └── OptionalFieldsResourceNames.g.cs │ ├── PackageApiMetadata.cs │ ├── Paginated │ │ ├── Paginated.proto │ │ ├── PaginatedFakes.cs │ │ ├── Testing.Paginated.GeneratedSnippets │ │ │ ├── PaginatedClient.ResourcedMethod1AsyncSnippet.g.cs │ │ │ ├── PaginatedClient.ResourcedMethod1ResourceNamesAsyncSnippet.g.cs │ │ │ ├── PaginatedClient.ResourcedMethod1ResourceNamesSnippet.g.cs │ │ │ ├── PaginatedClient.ResourcedMethod1Snippet.g.cs │ │ │ ├── PaginatedClient.ResourcedMethod2AsyncSnippet.g.cs │ │ │ ├── PaginatedClient.ResourcedMethod2ResourceNamesAsyncSnippet.g.cs │ │ │ ├── PaginatedClient.ResourcedMethod2ResourceNamesSnippet.g.cs │ │ │ ├── PaginatedClient.ResourcedMethod2Snippet.g.cs │ │ │ ├── PaginatedClient.ResourcedMethodRequestObjectAsyncSnippet.g.cs │ │ │ ├── PaginatedClient.ResourcedMethodRequestObjectSnippet.g.cs │ │ │ ├── PaginatedClient.SignatureMethod1AsyncSnippet.g.cs │ │ │ ├── PaginatedClient.SignatureMethod1Snippet.g.cs │ │ │ ├── PaginatedClient.SignatureMethod2AsyncSnippet.g.cs │ │ │ ├── PaginatedClient.SignatureMethod2RequestObjectAsyncSnippet.g.cs │ │ │ ├── PaginatedClient.SignatureMethod2RequestObjectSnippet.g.cs │ │ │ ├── PaginatedClient.SignatureMethod2Snippet.g.cs │ │ │ ├── PaginatedClient.SignatureMethod3AsyncSnippet.g.cs │ │ │ ├── PaginatedClient.SignatureMethod3Snippet.g.cs │ │ │ ├── PaginatedClient.SignatureMethodRequestObjectAsyncSnippet.g.cs │ │ │ ├── PaginatedClient.SignatureMethodRequestObjectSnippet.g.cs │ │ │ └── snippet_metadata_testing.paginated.json │ │ ├── Testing.Paginated.Snippets │ │ │ └── PaginatedClientSnippets.g.cs │ │ └── Testing.Paginated │ │ │ ├── PaginatedClient.g.cs │ │ │ └── PaginatedResourceNames.g.cs │ ├── ProtoMsgFake.cs │ ├── PublishingSettings │ │ ├── CommonResourceConfig.json │ │ ├── CommonResourceDef.proto │ │ ├── CommonResourceFakes.cs │ │ ├── PublishingSettings.proto │ │ ├── PublishingSettingsFakes.cs │ │ ├── ServiceConfig.yaml │ │ ├── Testing.PublishingSettings.GeneratedSnippets │ │ │ ├── RenamedServiceNameClient.AMethodRequestObjectAsyncSnippet.g.cs │ │ │ ├── RenamedServiceNameClient.AMethodRequestObjectSnippet.g.cs │ │ │ ├── ServiceWithApiVersionClient.AMethodRequestObjectAsyncSnippet.g.cs │ │ │ ├── ServiceWithApiVersionClient.AMethodRequestObjectSnippet.g.cs │ │ │ ├── ServiceWithHandwrittenSignaturesClient.AMethod1AsyncSnippet.g.cs │ │ │ ├── ServiceWithHandwrittenSignaturesClient.AMethod1Snippet.g.cs │ │ │ ├── ServiceWithHandwrittenSignaturesClient.AMethod2AsyncSnippet.g.cs │ │ │ ├── ServiceWithHandwrittenSignaturesClient.AMethod2Snippet.g.cs │ │ │ ├── ServiceWithHandwrittenSignaturesClient.AMethodRequestObjectAsyncSnippet.g.cs │ │ │ ├── ServiceWithHandwrittenSignaturesClient.AMethodRequestObjectSnippet.g.cs │ │ │ ├── ServiceWithMethodSettingsClient.BidiStreamingAutoPopulatedSnippet.g.cs │ │ │ ├── ServiceWithMethodSettingsClient.LroAutoPopulatedRequestObjectAsyncSnippet.g.cs │ │ │ ├── ServiceWithMethodSettingsClient.LroAutoPopulatedRequestObjectSnippet.g.cs │ │ │ ├── ServiceWithMethodSettingsClient.PaginatedAutoPopulatedRequestObjectAsyncSnippet.g.cs │ │ │ ├── ServiceWithMethodSettingsClient.PaginatedAutoPopulatedRequestObjectSnippet.g.cs │ │ │ ├── ServiceWithMethodSettingsClient.ServerStreamingAutoPopulatedRequestObjectSnippet.g.cs │ │ │ ├── ServiceWithMethodSettingsClient.UnaryAutoPopulatedRequestObjectAsyncSnippet.g.cs │ │ │ ├── ServiceWithMethodSettingsClient.UnaryAutoPopulatedRequestObjectSnippet.g.cs │ │ │ ├── ServiceWithResourcesClient.AMethodRequestObjectAsyncSnippet.g.cs │ │ │ ├── ServiceWithResourcesClient.AMethodRequestObjectSnippet.g.cs │ │ │ └── snippet_metadata_testing.publishingsettings.json │ │ ├── Testing.PublishingSettings.Snippets │ │ │ ├── RenamedServiceNameClientSnippets.g.cs │ │ │ ├── ServiceWithApiVersionClientSnippets.g.cs │ │ │ ├── ServiceWithHandwrittenSignaturesClientSnippets.g.cs │ │ │ ├── ServiceWithMethodSettingsClientSnippets.g.cs │ │ │ └── ServiceWithResourcesClientSnippets.g.cs │ │ └── Testing.PublishingSettings │ │ │ ├── PackageApiMetadata.g.cs │ │ │ ├── PublishingSettingsResourceNames.g.cs │ │ │ ├── RenamedServiceNameClient.g.cs │ │ │ ├── ServiceCollectionExtensions.g.cs │ │ │ ├── ServiceWithApiVersionClient.g.cs │ │ │ ├── ServiceWithHandwrittenSignaturesClient.g.cs │ │ │ ├── ServiceWithMethodSettingsClient.g.cs │ │ │ └── ServiceWithResourcesClient.g.cs │ ├── ResourceNameSeparator │ │ ├── ManualTests.cs │ │ ├── ResourceNameSeparator.proto │ │ ├── ResourceNameSeparatorFakes.cs │ │ ├── Testing.ResourceNameSeparator.GeneratedSnippets │ │ │ ├── ResourceNameSeparatorClient.Method1AsyncSnippet.g.cs │ │ │ ├── ResourceNameSeparatorClient.Method1RequestObjectAsyncSnippet.g.cs │ │ │ ├── ResourceNameSeparatorClient.Method1RequestObjectSnippet.g.cs │ │ │ ├── ResourceNameSeparatorClient.Method1ResourceNamesAsyncSnippet.g.cs │ │ │ ├── ResourceNameSeparatorClient.Method1ResourceNamesSnippet.g.cs │ │ │ ├── ResourceNameSeparatorClient.Method1Snippet.g.cs │ │ │ └── snippet_metadata_testing.resourcenameseparator.json │ │ ├── Testing.ResourceNameSeparator.Snippets │ │ │ └── ResourceNameSeparatorClientSnippets.g.cs │ │ └── Testing.ResourceNameSeparator │ │ │ ├── ResourceNameSeparatorClient.g.cs │ │ │ └── ResourceNameSeparatorResourceNames.g.cs │ ├── ResourceNames │ │ ├── ManualTests.cs │ │ ├── ResourceNames.proto │ │ ├── ResourceNamesFakes.cs │ │ ├── Testing.ResourceNames.GeneratedSnippets │ │ │ ├── ResourceNamesClient.DeprecatedPatternMethodAsyncSnippet.g.cs │ │ │ ├── ResourceNamesClient.DeprecatedPatternMethodRequestObjectAsyncSnippet.g.cs │ │ │ ├── ResourceNamesClient.DeprecatedPatternMethodRequestObjectSnippet.g.cs │ │ │ ├── ResourceNamesClient.DeprecatedPatternMethodResourceNamesAsyncSnippet.g.cs │ │ │ ├── ResourceNamesClient.DeprecatedPatternMethodResourceNamesSnippet.g.cs │ │ │ ├── ResourceNamesClient.DeprecatedPatternMethodSnippet.g.cs │ │ │ ├── ResourceNamesClient.LooseValidationPatternMethodAsyncSnippet.g.cs │ │ │ ├── ResourceNamesClient.LooseValidationPatternMethodRequestObjectAsyncSnippet.g.cs │ │ │ ├── ResourceNamesClient.LooseValidationPatternMethodRequestObjectSnippet.g.cs │ │ │ ├── ResourceNamesClient.LooseValidationPatternMethodResourceNamesAsyncSnippet.g.cs │ │ │ ├── ResourceNamesClient.LooseValidationPatternMethodResourceNamesSnippet.g.cs │ │ │ ├── ResourceNamesClient.LooseValidationPatternMethodSnippet.g.cs │ │ │ ├── ResourceNamesClient.SinglePatternMethodAsyncSnippet.g.cs │ │ │ ├── ResourceNamesClient.SinglePatternMethodRequestObjectAsyncSnippet.g.cs │ │ │ ├── ResourceNamesClient.SinglePatternMethodRequestObjectSnippet.g.cs │ │ │ ├── ResourceNamesClient.SinglePatternMethodResourceNamesAsyncSnippet.g.cs │ │ │ ├── ResourceNamesClient.SinglePatternMethodResourceNamesSnippet.g.cs │ │ │ ├── ResourceNamesClient.SinglePatternMethodSnippet.g.cs │ │ │ ├── ResourceNamesClient.WildcardMultiPatternMethodAsyncSnippet.g.cs │ │ │ ├── ResourceNamesClient.WildcardMultiPatternMethodRequestObjectAsyncSnippet.g.cs │ │ │ ├── ResourceNamesClient.WildcardMultiPatternMethodRequestObjectSnippet.g.cs │ │ │ ├── ResourceNamesClient.WildcardMultiPatternMethodResourceNames1AsyncSnippet.g.cs │ │ │ ├── ResourceNamesClient.WildcardMultiPatternMethodResourceNames1Snippet.g.cs │ │ │ ├── ResourceNamesClient.WildcardMultiPatternMethodResourceNames2AsyncSnippet.g.cs │ │ │ ├── ResourceNamesClient.WildcardMultiPatternMethodResourceNames2Snippet.g.cs │ │ │ ├── ResourceNamesClient.WildcardMultiPatternMethodResourceNames3AsyncSnippet.g.cs │ │ │ ├── ResourceNamesClient.WildcardMultiPatternMethodResourceNames3Snippet.g.cs │ │ │ ├── ResourceNamesClient.WildcardMultiPatternMethodResourceNames4AsyncSnippet.g.cs │ │ │ ├── ResourceNamesClient.WildcardMultiPatternMethodResourceNames4Snippet.g.cs │ │ │ ├── ResourceNamesClient.WildcardMultiPatternMethodResourceNames5AsyncSnippet.g.cs │ │ │ ├── ResourceNamesClient.WildcardMultiPatternMethodResourceNames5Snippet.g.cs │ │ │ ├── ResourceNamesClient.WildcardMultiPatternMethodResourceNames6AsyncSnippet.g.cs │ │ │ ├── ResourceNamesClient.WildcardMultiPatternMethodResourceNames6Snippet.g.cs │ │ │ ├── ResourceNamesClient.WildcardMultiPatternMethodResourceNames7AsyncSnippet.g.cs │ │ │ ├── ResourceNamesClient.WildcardMultiPatternMethodResourceNames7Snippet.g.cs │ │ │ ├── ResourceNamesClient.WildcardMultiPatternMethodResourceNames8AsyncSnippet.g.cs │ │ │ ├── ResourceNamesClient.WildcardMultiPatternMethodResourceNames8Snippet.g.cs │ │ │ ├── ResourceNamesClient.WildcardMultiPatternMethodSnippet.g.cs │ │ │ ├── ResourceNamesClient.WildcardMultiPatternMultipleMethodAsyncSnippet.g.cs │ │ │ ├── ResourceNamesClient.WildcardMultiPatternMultipleMethodRequestObjectAsyncSnippet.g.cs │ │ │ ├── ResourceNamesClient.WildcardMultiPatternMultipleMethodRequestObjectSnippet.g.cs │ │ │ ├── ResourceNamesClient.WildcardMultiPatternMultipleMethodResourceNames1AsyncSnippet.g.cs │ │ │ ├── ResourceNamesClient.WildcardMultiPatternMultipleMethodResourceNames1Snippet.g.cs │ │ │ ├── ResourceNamesClient.WildcardMultiPatternMultipleMethodResourceNames2AsyncSnippet.g.cs │ │ │ ├── ResourceNamesClient.WildcardMultiPatternMultipleMethodResourceNames2Snippet.g.cs │ │ │ ├── ResourceNamesClient.WildcardMultiPatternMultipleMethodResourceNames3AsyncSnippet.g.cs │ │ │ ├── ResourceNamesClient.WildcardMultiPatternMultipleMethodResourceNames3Snippet.g.cs │ │ │ ├── ResourceNamesClient.WildcardMultiPatternMultipleMethodResourceNames4AsyncSnippet.g.cs │ │ │ ├── ResourceNamesClient.WildcardMultiPatternMultipleMethodResourceNames4Snippet.g.cs │ │ │ ├── ResourceNamesClient.WildcardMultiPatternMultipleMethodSnippet.g.cs │ │ │ ├── ResourceNamesClient.WildcardOnlyPatternMethodAsyncSnippet.g.cs │ │ │ ├── ResourceNamesClient.WildcardOnlyPatternMethodRequestObjectAsyncSnippet.g.cs │ │ │ ├── ResourceNamesClient.WildcardOnlyPatternMethodRequestObjectSnippet.g.cs │ │ │ ├── ResourceNamesClient.WildcardOnlyPatternMethodResourceNamesAsyncSnippet.g.cs │ │ │ ├── ResourceNamesClient.WildcardOnlyPatternMethodResourceNamesSnippet.g.cs │ │ │ ├── ResourceNamesClient.WildcardOnlyPatternMethodSnippet.g.cs │ │ │ └── snippet_metadata_testing.resourcenames.json │ │ ├── Testing.ResourceNames.Snippets │ │ │ └── ResourceNamesClientSnippets.g.cs │ │ └── Testing.ResourceNames │ │ │ ├── ResourceNamesClient.g.cs │ │ │ └── ResourceNamesResourceNames.g.cs │ ├── RoutingHeaders │ │ ├── RoutingHeaders.proto │ │ ├── RoutingHeadersFakes.cs │ │ └── Testing.RoutingHeaders │ │ │ └── RoutingHeadersClient.g.cs │ ├── RoutingHeadersExplicit │ │ ├── RoutingHeadersExplicit.proto │ │ ├── RoutingHeadersExplicitFakes.cs │ │ └── Testing.RoutingHeadersExplicit │ │ │ └── RoutingHeadersExplicitClient.g.cs │ ├── ServerStreaming │ │ ├── ServerStreaming.proto │ │ ├── ServerStreamingFakes.cs │ │ └── Testing.ServerStreaming │ │ │ ├── ServerStreamingClient.g.cs │ │ │ └── ServerStreamingResourceNames.g.cs │ ├── Showcase │ │ ├── Compliance.g.cs │ │ ├── ComplianceGrpc.g.cs │ │ ├── Echo.g.cs │ │ ├── EchoGrpc.g.cs │ │ ├── Google.Showcase.V1Beta1 │ │ │ ├── ComplianceClient.g.cs │ │ │ ├── EchoClient.g.cs │ │ │ ├── Google.Showcase.V1Beta1.csproj │ │ │ ├── IdentityClient.g.cs │ │ │ ├── IdentityResourceNames.g.cs │ │ │ ├── MessagingClient.g.cs │ │ │ ├── MessagingResourceNames.g.cs │ │ │ ├── PackageApiMetadata.g.cs │ │ │ ├── SequenceResourceNames.g.cs │ │ │ ├── SequenceServiceClient.g.cs │ │ │ ├── ServiceCollectionExtensions.g.cs │ │ │ ├── TestingClient.g.cs │ │ │ └── TestingResourceNames.g.cs │ │ ├── Identity.g.cs │ │ ├── IdentityGrpc.g.cs │ │ ├── Messaging.g.cs │ │ ├── MessagingGrpc.g.cs │ │ ├── Sequence.g.cs │ │ ├── SequenceGrpc.g.cs │ │ ├── Testing.g.cs │ │ ├── TestingGrpc.g.cs │ │ ├── gapic_metadata.json │ │ └── google │ │ │ └── showcase │ │ │ └── v1beta1 │ │ │ ├── compliance.proto │ │ │ ├── echo.proto │ │ │ ├── identity.proto │ │ │ ├── messaging.proto │ │ │ ├── sequence.proto │ │ │ ├── showcase_v1beta1.yaml │ │ │ └── testing.proto │ ├── Snippets │ │ ├── Snippets.proto │ │ ├── SnippetsClientFakes.cs │ │ ├── Testing.Snippets.GeneratedSnippets │ │ │ ├── SnippetsClient.MethodBidiStreamingSnippet.g.cs │ │ │ ├── SnippetsClient.MethodDefaultValuesAsyncSnippet.g.cs │ │ │ ├── SnippetsClient.MethodDefaultValuesRequestObjectAsyncSnippet.g.cs │ │ │ ├── SnippetsClient.MethodDefaultValuesRequestObjectSnippet.g.cs │ │ │ ├── SnippetsClient.MethodDefaultValuesResourceNamesAsyncSnippet.g.cs │ │ │ ├── SnippetsClient.MethodDefaultValuesResourceNamesSnippet.g.cs │ │ │ ├── SnippetsClient.MethodDefaultValuesSnippet.g.cs │ │ │ ├── SnippetsClient.MethodLroResourceSignatureAsyncSnippet.g.cs │ │ │ ├── SnippetsClient.MethodLroResourceSignatureRequestObjectAsyncSnippet.g.cs │ │ │ ├── SnippetsClient.MethodLroResourceSignatureRequestObjectSnippet.g.cs │ │ │ ├── SnippetsClient.MethodLroResourceSignatureResourceNamesAsyncSnippet.g.cs │ │ │ ├── SnippetsClient.MethodLroResourceSignatureResourceNamesSnippet.g.cs │ │ │ ├── SnippetsClient.MethodLroResourceSignatureSnippet.g.cs │ │ │ ├── SnippetsClient.MethodLroSignaturesAsyncSnippet.g.cs │ │ │ ├── SnippetsClient.MethodLroSignaturesRequestObjectAsyncSnippet.g.cs │ │ │ ├── SnippetsClient.MethodLroSignaturesRequestObjectSnippet.g.cs │ │ │ ├── SnippetsClient.MethodLroSignaturesSnippet.g.cs │ │ │ ├── SnippetsClient.MethodMapSignatureAsyncSnippet.g.cs │ │ │ ├── SnippetsClient.MethodMapSignatureRequestObjectAsyncSnippet.g.cs │ │ │ ├── SnippetsClient.MethodMapSignatureRequestObjectSnippet.g.cs │ │ │ ├── SnippetsClient.MethodMapSignatureSnippet.g.cs │ │ │ ├── SnippetsClient.MethodOneSignatureAsyncSnippet.g.cs │ │ │ ├── SnippetsClient.MethodOneSignatureRequestObjectAsyncSnippet.g.cs │ │ │ ├── SnippetsClient.MethodOneSignatureRequestObjectSnippet.g.cs │ │ │ ├── SnippetsClient.MethodOneSignatureSnippet.g.cs │ │ │ ├── SnippetsClient.MethodRepeatedResourceSignatureAsyncSnippet.g.cs │ │ │ ├── SnippetsClient.MethodRepeatedResourceSignatureRequestObjectAsyncSnippet.g.cs │ │ │ ├── SnippetsClient.MethodRepeatedResourceSignatureRequestObjectSnippet.g.cs │ │ │ ├── SnippetsClient.MethodRepeatedResourceSignatureResourceNamesAsyncSnippet.g.cs │ │ │ ├── SnippetsClient.MethodRepeatedResourceSignatureResourceNamesSnippet.g.cs │ │ │ ├── SnippetsClient.MethodRepeatedResourceSignatureSnippet.g.cs │ │ │ ├── SnippetsClient.MethodResourceSignature1AsyncSnippet.g.cs │ │ │ ├── SnippetsClient.MethodResourceSignature1ResourceNamesAsyncSnippet.g.cs │ │ │ ├── SnippetsClient.MethodResourceSignature1ResourceNamesSnippet.g.cs │ │ │ ├── SnippetsClient.MethodResourceSignature1Snippet.g.cs │ │ │ ├── SnippetsClient.MethodResourceSignature2AsyncSnippet.g.cs │ │ │ ├── SnippetsClient.MethodResourceSignature2ResourceNamesAsyncSnippet.g.cs │ │ │ ├── SnippetsClient.MethodResourceSignature2ResourceNamesSnippet.g.cs │ │ │ ├── SnippetsClient.MethodResourceSignature2Snippet.g.cs │ │ │ ├── SnippetsClient.MethodResourceSignatureRequestObjectAsyncSnippet.g.cs │ │ │ ├── SnippetsClient.MethodResourceSignatureRequestObjectSnippet.g.cs │ │ │ ├── SnippetsClient.MethodServerStreaming1Snippet.g.cs │ │ │ ├── SnippetsClient.MethodServerStreaming2Snippet.g.cs │ │ │ ├── SnippetsClient.MethodServerStreamingRequestObjectSnippet.g.cs │ │ │ ├── SnippetsClient.MethodServerStreamingResourcesRequestObjectSnippet.g.cs │ │ │ ├── SnippetsClient.MethodServerStreamingResourcesResourceNamesSnippet.g.cs │ │ │ ├── SnippetsClient.MethodServerStreamingResourcesSnippet.g.cs │ │ │ ├── SnippetsClient.MethodThreeSignatures1AsyncSnippet.g.cs │ │ │ ├── SnippetsClient.MethodThreeSignatures1Snippet.g.cs │ │ │ ├── SnippetsClient.MethodThreeSignatures2AsyncSnippet.g.cs │ │ │ ├── SnippetsClient.MethodThreeSignatures2Snippet.g.cs │ │ │ ├── SnippetsClient.MethodThreeSignatures3AsyncSnippet.g.cs │ │ │ ├── SnippetsClient.MethodThreeSignatures3Snippet.g.cs │ │ │ ├── SnippetsClient.MethodThreeSignaturesRequestObjectAsyncSnippet.g.cs │ │ │ ├── SnippetsClient.MethodThreeSignaturesRequestObjectSnippet.g.cs │ │ │ ├── SnippetsClient.OneOfMethodRequestObjectAsyncSnippet.g.cs │ │ │ ├── SnippetsClient.OneOfMethodRequestObjectSnippet.g.cs │ │ │ ├── SnippetsClient.TaskMethodRequestObjectAsyncSnippet.g.cs │ │ │ ├── SnippetsClient.TaskMethodRequestObjectSnippet.g.cs │ │ │ └── snippet_metadata_testing.snippets.json │ │ ├── Testing.Snippets.Snippets │ │ │ └── SnippetsClientSnippets.g.cs │ │ └── Testing.Snippets │ │ │ ├── SnippetsClient.g.cs │ │ │ └── SnippetsResourceNames.g.cs │ ├── UnknownResource │ │ ├── Testing.UnknownResource │ │ │ ├── UnknownResourceResourceNames.g.cs │ │ │ └── UnknownResourcesClient.g.cs │ │ ├── UnknownResource.proto │ │ └── UnknownResourceFakes.cs │ └── VoidReturn │ │ ├── Testing.VoidReturn.GeneratedSnippets │ │ ├── VoidReturnClient.VoidMethodAsyncSnippet.g.cs │ │ ├── VoidReturnClient.VoidMethodRequestObjectAsyncSnippet.g.cs │ │ ├── VoidReturnClient.VoidMethodRequestObjectSnippet.g.cs │ │ ├── VoidReturnClient.VoidMethodResourceNamesAsyncSnippet.g.cs │ │ ├── VoidReturnClient.VoidMethodResourceNamesSnippet.g.cs │ │ ├── VoidReturnClient.VoidMethodSnippet.g.cs │ │ └── snippet_metadata_testing.voidreturn.json │ │ ├── Testing.VoidReturn.Snippets │ │ └── VoidReturnClientSnippets.g.cs │ │ ├── Testing.VoidReturn │ │ ├── VoidReturnClient.g.cs │ │ └── VoidReturnResourceNames.g.cs │ │ ├── VoidReturn.proto │ │ └── VoidReturnFakes.cs └── ResourcePatternTest.cs ├── Google.Api.Generator.Utils.Tests ├── Formatting │ ├── WhitespaceFormatterTest.cs │ └── XmlDocSplitterTest.cs ├── Google.Api.Generator.Utils.Tests.csproj └── SystemExtensionsTest.cs ├── Google.Api.Generator.Utils ├── Disposable.cs ├── Formatting │ ├── CodeFormatter.cs │ ├── PragmaWarningFormatter.cs │ ├── WhitespaceFormatter.cs │ └── XmlDocSplitter.cs ├── Google.Api.Generator.Utils.csproj ├── Logging.cs ├── ResultFile.cs ├── Roslyn │ ├── Annotations.cs │ ├── ArgModifier.cs │ ├── Keywords.cs │ ├── Modifier.cs │ ├── ObjectInitExpr.cs │ ├── PragmaWarnings.cs │ ├── RoslynBuilder.cs │ ├── RoslynConverters.cs │ ├── RoslynExtensions.cs │ └── XmlDoc.cs ├── SourceFileContext.cs ├── SystemExtensions.cs └── Typ.cs ├── Google.Api.Generator ├── AssemblyInfo.cs ├── CodeGenerator.cs ├── ConfigProtos │ ├── CommonResources.cs │ ├── GapicMetadata.cs │ ├── ServiceConfig.cs │ ├── SnippetIndex.cs │ ├── common_resources.proto │ ├── gapic_metadata.proto │ ├── service_config.proto │ └── snippet_index.proto ├── Generation │ ├── CsProjGenerator.cs │ ├── EnumStringGenerator.cs │ ├── LroAdaptationGenerator.cs │ ├── MetadataGenerator.cs │ ├── MethodDetails.cs │ ├── PackageApiMetadataGenerator.cs │ ├── ResourceNamesGenerator.cs │ ├── ServiceAbstractClientClassCodeGenerator.cs │ ├── ServiceBuilderCodeGenerator.cs │ ├── ServiceCodeGenerator.cs │ ├── ServiceCollectionExtensionsGenerator.cs │ ├── ServiceDetails.cs │ ├── ServiceImplClientClassGenerator.cs │ ├── ServiceMethodGenerator.Signatures.cs │ ├── ServiceMethodGenerator.cs │ ├── ServiceSettingsCodeGenerator.cs │ └── SnippetCodeGenerator.cs ├── Google.Api.Generator.csproj ├── Program.cs └── ProtoUtils │ ├── IMessageExtensions.cs │ ├── ProtoCatalog.cs │ ├── ProtoExtensions.cs │ ├── ProtoMsg.cs │ ├── ProtoTyp.cs │ ├── ResourceDetails.cs │ └── ResourcePattern.cs ├── LICENSE ├── NuGetIcon.png ├── README.md ├── RELEASING.md ├── SECURITY.md ├── TESTING.md ├── TODO.md ├── WORKSPACE.bazel ├── bazel_example ├── BUILD.bazel ├── README.md ├── WORKSPACE.bazel ├── common_resources_config.json ├── example.proto ├── example.yaml └── grpc_service_config.json ├── generateprotos.sh ├── generator-input ├── pipeline-config.json └── pipeline-state.json ├── global.json ├── nuget.config ├── repositories.bzl ├── rules_csharp_gapic ├── BUILD.bazel ├── csharp_compiler.bzl ├── csharp_compiler_repo.bzl ├── csharp_gapic.bzl └── csharp_gapic_pkg.bzl └── tools ├── grpc_csharp_plugin ├── grpc_csharp_plugin.exe ├── grpc_csharp_plugin_macosx_x64 ├── protoc ├── protoc.exe ├── protoc_macosx_x64 ├── protos └── google │ └── protobuf │ ├── any.proto │ ├── api.proto │ ├── descriptor.proto │ ├── duration.proto │ ├── empty.proto │ ├── field_mask.proto │ ├── source_context.proto │ ├── struct.proto │ ├── timestamp.proto │ ├── type.proto │ └── wrappers.proto ├── update-grpc.sh └── update-protoc.sh /.allstar/binary_artifacts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/.allstar/binary_artifacts.yaml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/blunderbuss.yml: -------------------------------------------------------------------------------- 1 | assign_issues: 2 | - googleapis/cloud-libraries-dotnet -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/.gitmodules -------------------------------------------------------------------------------- /BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/BUILD.bazel -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /DotnetToolProperties.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/DotnetToolProperties.xml -------------------------------------------------------------------------------- /Generator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Generator.sln -------------------------------------------------------------------------------- /Google.Api.Generator.IntegrationTests/ComplianceRestTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.IntegrationTests/ComplianceRestTest.cs -------------------------------------------------------------------------------- /Google.Api.Generator.IntegrationTests/EchoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.IntegrationTests/EchoTest.cs -------------------------------------------------------------------------------- /Google.Api.Generator.IntegrationTests/Google.Api.Generator.IntegrationTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.IntegrationTests/Google.Api.Generator.IntegrationTests.csproj -------------------------------------------------------------------------------- /Google.Api.Generator.IntegrationTests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.IntegrationTests/README.md -------------------------------------------------------------------------------- /Google.Api.Generator.IntegrationTests/ShowcaseTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.IntegrationTests/ShowcaseTestBase.cs -------------------------------------------------------------------------------- /Google.Api.Generator.IntegrationTests/TestResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.IntegrationTests/TestResources.cs -------------------------------------------------------------------------------- /Google.Api.Generator.IntegrationTests/compliance_suite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.IntegrationTests/compliance_suite.json -------------------------------------------------------------------------------- /Google.Api.Generator.Rest.Tests/GeneratedCodeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest.Tests/GeneratedCodeTest.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.Assuredworkloads.v1/Google.Apis.Assuredworkloads.v1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.Assuredworkloads.v1/Google.Apis.Assuredworkloads.v1.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.Assuredworkloads.v1/Google.Apis.Assuredworkloads.v1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.Assuredworkloads.v1/Google.Apis.Assuredworkloads.v1.csproj -------------------------------------------------------------------------------- /Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.Assuredworkloads.v1/discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.Assuredworkloads.v1/discovery.json -------------------------------------------------------------------------------- /Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.Calendar.v3/Google.Apis.Calendar.v3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.Calendar.v3/Google.Apis.Calendar.v3.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.Calendar.v3/Google.Apis.Calendar.v3.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.Calendar.v3/Google.Apis.Calendar.v3.csproj -------------------------------------------------------------------------------- /Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.Calendar.v3/discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.Calendar.v3/discovery.json -------------------------------------------------------------------------------- /Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.CloudRun.v1/Google.Apis.CloudRun.v1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.CloudRun.v1/Google.Apis.CloudRun.v1.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.CloudRun.v1/Google.Apis.CloudRun.v1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.CloudRun.v1/Google.Apis.CloudRun.v1.csproj -------------------------------------------------------------------------------- /Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.CloudRun.v1/discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.CloudRun.v1/discovery.json -------------------------------------------------------------------------------- /Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.CloudSupport.v2/Google.Apis.CloudSupport.v2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.CloudSupport.v2/Google.Apis.CloudSupport.v2.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.CloudSupport.v2/Google.Apis.CloudSupport.v2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.CloudSupport.v2/Google.Apis.CloudSupport.v2.csproj -------------------------------------------------------------------------------- /Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.CloudSupport.v2/discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.CloudSupport.v2/discovery.json -------------------------------------------------------------------------------- /Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.DataprocMetastore.v1/Google.Apis.DataprocMetastore.v1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.DataprocMetastore.v1/Google.Apis.DataprocMetastore.v1.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.DataprocMetastore.v1/Google.Apis.DataprocMetastore.v1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.DataprocMetastore.v1/Google.Apis.DataprocMetastore.v1.csproj -------------------------------------------------------------------------------- /Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.DataprocMetastore.v1/discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.DataprocMetastore.v1/discovery.json -------------------------------------------------------------------------------- /Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.ManufacturerCenter.v1/Google.Apis.ManufacturerCenter.v1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.ManufacturerCenter.v1/Google.Apis.ManufacturerCenter.v1.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.ManufacturerCenter.v1/Google.Apis.ManufacturerCenter.v1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.ManufacturerCenter.v1/Google.Apis.ManufacturerCenter.v1.csproj -------------------------------------------------------------------------------- /Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.ManufacturerCenter.v1/discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.ManufacturerCenter.v1/discovery.json -------------------------------------------------------------------------------- /Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.Storage.v1/Google.Apis.Storage.v1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.Storage.v1/Google.Apis.Storage.v1.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.Storage.v1/Google.Apis.Storage.v1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.Storage.v1/Google.Apis.Storage.v1.csproj -------------------------------------------------------------------------------- /Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.Storage.v1/discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.Storage.v1/discovery.json -------------------------------------------------------------------------------- /Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.Translate.v2/Google.Apis.Translate.v2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.Translate.v2/Google.Apis.Translate.v2.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.Translate.v2/Google.Apis.Translate.v2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.Translate.v2/Google.Apis.Translate.v2.csproj -------------------------------------------------------------------------------- /Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.Translate.v2/discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.Translate.v2/discovery.json -------------------------------------------------------------------------------- /Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.Webfonts.v1/Google.Apis.Webfonts.v1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.Webfonts.v1/Google.Apis.Webfonts.v1.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.Webfonts.v1/Google.Apis.Webfonts.v1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.Webfonts.v1/Google.Apis.Webfonts.v1.csproj -------------------------------------------------------------------------------- /Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.Webfonts.v1/discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest.Tests/GoldenTestData/Google.Apis.Webfonts.v1/discovery.json -------------------------------------------------------------------------------- /Google.Api.Generator.Rest.Tests/GoldenUnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest.Tests/GoldenUnitTest.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Rest.Tests/Google.Api.Generator.Rest.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest.Tests/Google.Api.Generator.Rest.Tests.csproj -------------------------------------------------------------------------------- /Google.Api.Generator.Rest.Tests/NamingTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest.Tests/NamingTest.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Rest.Tests/PackageEnumStorageTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest.Tests/PackageEnumStorageTest.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Rest.Tests/TestResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest.Tests/TestResources.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Rest/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest/AssemblyInfo.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Rest/CodeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest/CodeGenerator.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Rest/Google.Api.Generator.Rest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest/Google.Api.Generator.Rest.csproj -------------------------------------------------------------------------------- /Google.Api.Generator.Rest/Google.Apis.Discovery.v1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest/Google.Apis.Discovery.v1.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Rest/Lists.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest/Lists.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Rest/Models/AuthScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest/Models/AuthScope.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Rest/Models/DataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest/Models/DataModel.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Rest/Models/DataPropertyModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest/Models/DataPropertyModel.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Rest/Models/EnumMemberModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest/Models/EnumMemberModel.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Rest/Models/EnumModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest/Models/EnumModel.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Rest/Models/Features.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest/Models/Features.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Rest/Models/MethodModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest/Models/MethodModel.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Rest/Models/Naming.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest/Models/Naming.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Rest/Models/PackageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest/Models/PackageModel.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Rest/Models/ParameterModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest/Models/ParameterModel.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Rest/Models/ResourceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest/Models/ResourceModel.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Rest/Models/SchemaTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest/Models/SchemaTypes.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Rest/PackageEnumStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest/PackageEnumStorage.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Rest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Rest/Program.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Testing/Google.Api.Generator.Testing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Testing/Google.Api.Generator.Testing.csproj -------------------------------------------------------------------------------- /Google.Api.Generator.Testing/PathUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Testing/PathUtils.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Testing/TextComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Testing/TextComparer.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/Google.Api.Generator.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/Google.Api.Generator.Tests.csproj -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/InvocationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/InvocationTest.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/Invoker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/Invoker.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoExtensionsTest.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTest.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTest.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTest.proto -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Basic.v1/Basic.v1.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Basic.v1/Basic.v1.proto -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Basic.v1/Testing.Basic.V1.GeneratedSnippets/BasicClient.AMethodRequestObjectAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Basic.v1/Testing.Basic.V1.GeneratedSnippets/BasicClient.AMethodRequestObjectAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Basic.v1/Testing.Basic.V1.GeneratedSnippets/BasicClient.AMethodRequestObjectSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Basic.v1/Testing.Basic.V1.GeneratedSnippets/BasicClient.AMethodRequestObjectSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Basic.v1/Testing.Basic.V1.GeneratedSnippets/Testing.Basic.V1.GeneratedSnippets.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Basic.v1/Testing.Basic.V1.GeneratedSnippets/Testing.Basic.V1.GeneratedSnippets.csproj -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Basic.v1/Testing.Basic.V1.GeneratedSnippets/snippet_metadata_testing.basic.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Basic.v1/Testing.Basic.V1.GeneratedSnippets/snippet_metadata_testing.basic.v1.json -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Basic.v1/Testing.Basic.V1.Snippets/BasicClientSnippets.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Basic.v1/Testing.Basic.V1.Snippets/BasicClientSnippets.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Basic.v1/Testing.Basic.V1.Snippets/Testing.Basic.V1.Snippets.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Basic.v1/Testing.Basic.V1.Snippets/Testing.Basic.V1.Snippets.csproj -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Basic.v1/Testing.Basic.V1/BasicClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Basic.v1/Testing.Basic.V1/BasicClient.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Basic.v1/Testing.Basic.V1/BasicFakes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Basic.v1/Testing.Basic.V1/BasicFakes.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Basic.v1/Testing.Basic.V1/PackageApiMetadata.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Basic.v1/Testing.Basic.V1/PackageApiMetadata.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Basic.v1/Testing.Basic.V1/ServiceCollectionExtensions.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Basic.v1/Testing.Basic.V1/ServiceCollectionExtensions.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Basic.v1/Testing.Basic.V1/Testing.Basic.V1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Basic.v1/Testing.Basic.V1/Testing.Basic.V1.csproj -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Basic.v1/gapic_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Basic.v1/gapic_metadata.json -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/BasicBidiStreaming/BasicBidiStreaming.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/BasicBidiStreaming/BasicBidiStreaming.proto -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/BasicBidiStreaming/BasicBidiStreamingFakes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/BasicBidiStreaming/BasicBidiStreamingFakes.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/BasicBidiStreaming/Testing.BasicBidiStreaming/BasicBidiStreamingClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/BasicBidiStreaming/Testing.BasicBidiStreaming/BasicBidiStreamingClient.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/BasicClientStreaming/BasicClientStreaming.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/BasicClientStreaming/BasicClientStreaming.proto -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/BasicClientStreaming/BasicClientStreamingFakes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/BasicClientStreaming/BasicClientStreamingFakes.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/BasicClientStreaming/Testing.BasicClientStreaming/BasicClientStreamingClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/BasicClientStreaming/Testing.BasicClientStreaming/BasicClientStreamingClient.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/BasicLro/BasicLro.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/BasicLro/BasicLro.proto -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/BasicLro/BasicLroFakes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/BasicLro/BasicLroFakes.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/BasicLro/Testing.BasicLro.GeneratedSnippets/BasicLroClient.Method1RequestObjectAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/BasicLro/Testing.BasicLro.GeneratedSnippets/BasicLroClient.Method1RequestObjectAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/BasicLro/Testing.BasicLro.GeneratedSnippets/BasicLroClient.Method1RequestObjectSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/BasicLro/Testing.BasicLro.GeneratedSnippets/BasicLroClient.Method1RequestObjectSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/BasicLro/Testing.BasicLro.GeneratedSnippets/snippet_metadata_testing.basiclro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/BasicLro/Testing.BasicLro.GeneratedSnippets/snippet_metadata_testing.basiclro.json -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/BasicLro/Testing.BasicLro.Snippets/BasicLroClientSnippets.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/BasicLro/Testing.BasicLro.Snippets/BasicLroClientSnippets.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/BasicLro/Testing.BasicLro/BasicLroClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/BasicLro/Testing.BasicLro/BasicLroClient.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/BasicPaginated/BasicPaginated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/BasicPaginated/BasicPaginated.proto -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/BasicPaginated/BasicPaginatedFakes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/BasicPaginated/BasicPaginatedFakes.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/BasicPaginated/Testing.BasicPaginated/BasicPaginatedClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/BasicPaginated/Testing.BasicPaginated/BasicPaginatedClient.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/BasicServerStreaming/BasicServerStreaming.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/BasicServerStreaming/BasicServerStreaming.proto -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/BasicServerStreaming/BasicServerStreamingFakes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/BasicServerStreaming/BasicServerStreamingFakes.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/BasicServerStreaming/Testing.BasicServerStreaming/BasicServerStreamingClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/BasicServerStreaming/Testing.BasicServerStreaming/BasicServerStreamingClient.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ChildResource/ChildResource.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ChildResource/ChildResource.proto -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ChildResource/ChildResourceFakes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ChildResource/ChildResourceFakes.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ChildResource/Testing.ChildResource/ChildResourceClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ChildResource/Testing.ChildResource/ChildResourceClient.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ChildResource/Testing.ChildResource/ChildResourceResourceNames.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ChildResource/Testing.ChildResource/ChildResourceResourceNames.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/CommonResource/CommonResource.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/CommonResource/CommonResource.proto -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/CommonResource/CommonResourceConfig1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/CommonResource/CommonResourceConfig1.json -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/CommonResource/CommonResourceConfig2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/CommonResource/CommonResourceConfig2.json -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/CommonResource/CommonResourceDef.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/CommonResource/CommonResourceDef.proto -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/CommonResource/CommonResourceFakes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/CommonResource/CommonResourceFakes.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/CommonResource/Testing.CommonResource/CommonResourceClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/CommonResource/Testing.CommonResource/CommonResourceClient.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/CommonResource/Testing.CommonResource/CommonResourceResourceNames.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/CommonResource/Testing.CommonResource/CommonResourceResourceNames.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Deprecated/Deprecated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Deprecated/Deprecated.proto -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Deprecated/DeprecatedFakes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Deprecated/DeprecatedFakes.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Deprecated/Testing.Deprecated.GeneratedSnippets/DeprecatedClient.DeprecatedFieldMethodAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Deprecated/Testing.Deprecated.GeneratedSnippets/DeprecatedClient.DeprecatedFieldMethodAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Deprecated/Testing.Deprecated.GeneratedSnippets/DeprecatedClient.DeprecatedFieldMethodRequestObjectAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Deprecated/Testing.Deprecated.GeneratedSnippets/DeprecatedClient.DeprecatedFieldMethodRequestObjectAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Deprecated/Testing.Deprecated.GeneratedSnippets/DeprecatedClient.DeprecatedFieldMethodRequestObjectSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Deprecated/Testing.Deprecated.GeneratedSnippets/DeprecatedClient.DeprecatedFieldMethodRequestObjectSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Deprecated/Testing.Deprecated.GeneratedSnippets/DeprecatedClient.DeprecatedFieldMethodSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Deprecated/Testing.Deprecated.GeneratedSnippets/DeprecatedClient.DeprecatedFieldMethodSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Deprecated/Testing.Deprecated.GeneratedSnippets/DeprecatedClient.DeprecatedMessageMethodRequestObjectAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Deprecated/Testing.Deprecated.GeneratedSnippets/DeprecatedClient.DeprecatedMessageMethodRequestObjectAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Deprecated/Testing.Deprecated.GeneratedSnippets/DeprecatedClient.DeprecatedMessageMethodRequestObjectSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Deprecated/Testing.Deprecated.GeneratedSnippets/DeprecatedClient.DeprecatedMessageMethodRequestObjectSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Deprecated/Testing.Deprecated.GeneratedSnippets/DeprecatedClient.DeprecatedMethodRequestObjectAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Deprecated/Testing.Deprecated.GeneratedSnippets/DeprecatedClient.DeprecatedMethodRequestObjectAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Deprecated/Testing.Deprecated.GeneratedSnippets/DeprecatedClient.DeprecatedMethodRequestObjectSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Deprecated/Testing.Deprecated.GeneratedSnippets/DeprecatedClient.DeprecatedMethodRequestObjectSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Deprecated/Testing.Deprecated.GeneratedSnippets/DeprecatedClient.DeprecatedResponseMethodRequestObjectAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Deprecated/Testing.Deprecated.GeneratedSnippets/DeprecatedClient.DeprecatedResponseMethodRequestObjectAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Deprecated/Testing.Deprecated.GeneratedSnippets/DeprecatedClient.DeprecatedResponseMethodRequestObjectSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Deprecated/Testing.Deprecated.GeneratedSnippets/DeprecatedClient.DeprecatedResponseMethodRequestObjectSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Deprecated/Testing.Deprecated.GeneratedSnippets/DeprecatedServiceClient.DeprecatedMethodRequestObjectAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Deprecated/Testing.Deprecated.GeneratedSnippets/DeprecatedServiceClient.DeprecatedMethodRequestObjectAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Deprecated/Testing.Deprecated.GeneratedSnippets/DeprecatedServiceClient.DeprecatedMethodRequestObjectSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Deprecated/Testing.Deprecated.GeneratedSnippets/DeprecatedServiceClient.DeprecatedMethodRequestObjectSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Deprecated/Testing.Deprecated.GeneratedSnippets/DeprecatedServiceClient.NonDeprecatedMethodRequestObjectAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Deprecated/Testing.Deprecated.GeneratedSnippets/DeprecatedServiceClient.NonDeprecatedMethodRequestObjectAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Deprecated/Testing.Deprecated.GeneratedSnippets/DeprecatedServiceClient.NonDeprecatedMethodRequestObjectSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Deprecated/Testing.Deprecated.GeneratedSnippets/DeprecatedServiceClient.NonDeprecatedMethodRequestObjectSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Deprecated/Testing.Deprecated.GeneratedSnippets/snippet_metadata_testing.deprecated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Deprecated/Testing.Deprecated.GeneratedSnippets/snippet_metadata_testing.deprecated.json -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Deprecated/Testing.Deprecated.Snippets/DeprecatedClientSnippets.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Deprecated/Testing.Deprecated.Snippets/DeprecatedClientSnippets.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Deprecated/Testing.Deprecated.Snippets/DeprecatedServiceClientSnippets.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Deprecated/Testing.Deprecated.Snippets/DeprecatedServiceClientSnippets.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Deprecated/Testing.Deprecated/DeprecatedClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Deprecated/Testing.Deprecated/DeprecatedClient.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Deprecated/Testing.Deprecated/DeprecatedServiceClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Deprecated/Testing.Deprecated/DeprecatedServiceClient.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Deprecated/Testing.Deprecated/ServiceCollectionExtensions.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Deprecated/Testing.Deprecated/ServiceCollectionExtensions.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Directory.Build.props -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/DuplicateResourceDefinitions/DuplicateResourceDefinitions.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/DuplicateResourceDefinitions/DuplicateResourceDefinitions.proto -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Editions/Edition2023.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Editions/Edition2023.proto -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Editions/Edition2023Fakes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Editions/Edition2023Fakes.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Editions/Testing.Editions/Edition2023Client.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Editions/Testing.Editions/Edition2023Client.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Editions/Testing.Editions/Edition2023ResourceNames.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Editions/Testing.Editions/Edition2023ResourceNames.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/GrpcServiceConfig/GrpcServiceConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/GrpcServiceConfig/GrpcServiceConfig.json -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/GrpcServiceConfig/GrpcServiceConfig.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/GrpcServiceConfig/GrpcServiceConfig.proto -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/GrpcServiceConfig/Testing.GrpcServiceConfig/GrpcServiceConfigClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/GrpcServiceConfig/Testing.GrpcServiceConfig/GrpcServiceConfigClient.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/GrpcServiceConfig/Testing.GrpcServiceConfig/GrpcServiceConfigNoRetryClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/GrpcServiceConfig/Testing.GrpcServiceConfig/GrpcServiceConfigNoRetryClient.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Keywords/Keywords.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Keywords/Keywords.proto -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Keywords/KeywordsFakes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Keywords/KeywordsFakes.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Keywords/Testing.Keywords.GeneratedSnippets/KeywordsClient.Method1AsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Keywords/Testing.Keywords.GeneratedSnippets/KeywordsClient.Method1AsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Keywords/Testing.Keywords.GeneratedSnippets/KeywordsClient.Method1RequestObjectAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Keywords/Testing.Keywords.GeneratedSnippets/KeywordsClient.Method1RequestObjectAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Keywords/Testing.Keywords.GeneratedSnippets/KeywordsClient.Method1RequestObjectSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Keywords/Testing.Keywords.GeneratedSnippets/KeywordsClient.Method1RequestObjectSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Keywords/Testing.Keywords.GeneratedSnippets/KeywordsClient.Method1ResourceNamesAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Keywords/Testing.Keywords.GeneratedSnippets/KeywordsClient.Method1ResourceNamesAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Keywords/Testing.Keywords.GeneratedSnippets/KeywordsClient.Method1ResourceNamesSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Keywords/Testing.Keywords.GeneratedSnippets/KeywordsClient.Method1ResourceNamesSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Keywords/Testing.Keywords.GeneratedSnippets/KeywordsClient.Method1Snippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Keywords/Testing.Keywords.GeneratedSnippets/KeywordsClient.Method1Snippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Keywords/Testing.Keywords.GeneratedSnippets/KeywordsClient.Method2AsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Keywords/Testing.Keywords.GeneratedSnippets/KeywordsClient.Method2AsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Keywords/Testing.Keywords.GeneratedSnippets/KeywordsClient.Method2RequestObjectAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Keywords/Testing.Keywords.GeneratedSnippets/KeywordsClient.Method2RequestObjectAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Keywords/Testing.Keywords.GeneratedSnippets/KeywordsClient.Method2RequestObjectSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Keywords/Testing.Keywords.GeneratedSnippets/KeywordsClient.Method2RequestObjectSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Keywords/Testing.Keywords.GeneratedSnippets/KeywordsClient.Method2ResourceNamesAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Keywords/Testing.Keywords.GeneratedSnippets/KeywordsClient.Method2ResourceNamesAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Keywords/Testing.Keywords.GeneratedSnippets/KeywordsClient.Method2ResourceNamesSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Keywords/Testing.Keywords.GeneratedSnippets/KeywordsClient.Method2ResourceNamesSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Keywords/Testing.Keywords.GeneratedSnippets/KeywordsClient.Method2Snippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Keywords/Testing.Keywords.GeneratedSnippets/KeywordsClient.Method2Snippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Keywords/Testing.Keywords.GeneratedSnippets/snippet_metadata_testing.keywords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Keywords/Testing.Keywords.GeneratedSnippets/snippet_metadata_testing.keywords.json -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Keywords/Testing.Keywords.Snippets/KeywordsClientSnippets.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Keywords/Testing.Keywords.Snippets/KeywordsClientSnippets.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Keywords/Testing.Keywords/KeywordsClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Keywords/Testing.Keywords/KeywordsClient.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Keywords/Testing.Keywords/KeywordsResourceNames.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Keywords/Testing.Keywords/KeywordsResourceNames.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Lro/Lro.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Lro/Lro.proto -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Lro/LroFakes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Lro/LroFakes.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Lro/Testing.Lro/LroClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Lro/Testing.Lro/LroClient.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Lro/Testing.Lro/LroResourceNames.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Lro/Testing.Lro/LroResourceNames.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Lro/Testing.Lro/Testing.Lro.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Lro/Testing.Lro/Testing.Lro.csproj -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/MethodSignatures/MethodSignatures.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/MethodSignatures/MethodSignatures.proto -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/MethodSignatures/MethodSignaturesFakes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/MethodSignatures/MethodSignaturesFakes.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/MethodSignatures/Testing.MethodSignatures/MethodSignaturesClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/MethodSignatures/Testing.MethodSignatures/MethodSignaturesClient.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Mixins/Mixins.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Mixins/Mixins.proto -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Mixins/Mixins.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Mixins/Mixins.yaml -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Mixins/Testing.Mixins/MixinFakes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Mixins/Testing.Mixins/MixinFakes.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Mixins/Testing.Mixins/MixinServiceClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Mixins/Testing.Mixins/MixinServiceClient.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Mixins/Testing.Mixins/Testing.Mixins.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Mixins/Testing.Mixins/Testing.Mixins.csproj -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Mixins/gapic_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Mixins/gapic_metadata.json -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/OptionalFields/OptionalFields.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/OptionalFields/OptionalFields.proto -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/OptionalFields/OptionalFieldsFakes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/OptionalFields/OptionalFieldsFakes.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/OptionalFields/Testing.OptionalFields/OptionalFieldsClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/OptionalFields/Testing.OptionalFields/OptionalFieldsClient.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/OptionalFields/Testing.OptionalFields/OptionalFieldsResourceNames.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/OptionalFields/Testing.OptionalFields/OptionalFieldsResourceNames.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/PackageApiMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/PackageApiMetadata.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Paginated/Paginated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Paginated/Paginated.proto -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Paginated/PaginatedFakes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Paginated/PaginatedFakes.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated.GeneratedSnippets/PaginatedClient.ResourcedMethod1AsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated.GeneratedSnippets/PaginatedClient.ResourcedMethod1AsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated.GeneratedSnippets/PaginatedClient.ResourcedMethod1ResourceNamesAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated.GeneratedSnippets/PaginatedClient.ResourcedMethod1ResourceNamesAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated.GeneratedSnippets/PaginatedClient.ResourcedMethod1ResourceNamesSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated.GeneratedSnippets/PaginatedClient.ResourcedMethod1ResourceNamesSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated.GeneratedSnippets/PaginatedClient.ResourcedMethod1Snippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated.GeneratedSnippets/PaginatedClient.ResourcedMethod1Snippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated.GeneratedSnippets/PaginatedClient.ResourcedMethod2AsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated.GeneratedSnippets/PaginatedClient.ResourcedMethod2AsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated.GeneratedSnippets/PaginatedClient.ResourcedMethod2ResourceNamesAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated.GeneratedSnippets/PaginatedClient.ResourcedMethod2ResourceNamesAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated.GeneratedSnippets/PaginatedClient.ResourcedMethod2ResourceNamesSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated.GeneratedSnippets/PaginatedClient.ResourcedMethod2ResourceNamesSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated.GeneratedSnippets/PaginatedClient.ResourcedMethod2Snippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated.GeneratedSnippets/PaginatedClient.ResourcedMethod2Snippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated.GeneratedSnippets/PaginatedClient.ResourcedMethodRequestObjectAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated.GeneratedSnippets/PaginatedClient.ResourcedMethodRequestObjectAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated.GeneratedSnippets/PaginatedClient.ResourcedMethodRequestObjectSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated.GeneratedSnippets/PaginatedClient.ResourcedMethodRequestObjectSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated.GeneratedSnippets/PaginatedClient.SignatureMethod1AsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated.GeneratedSnippets/PaginatedClient.SignatureMethod1AsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated.GeneratedSnippets/PaginatedClient.SignatureMethod1Snippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated.GeneratedSnippets/PaginatedClient.SignatureMethod1Snippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated.GeneratedSnippets/PaginatedClient.SignatureMethod2AsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated.GeneratedSnippets/PaginatedClient.SignatureMethod2AsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated.GeneratedSnippets/PaginatedClient.SignatureMethod2RequestObjectAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated.GeneratedSnippets/PaginatedClient.SignatureMethod2RequestObjectAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated.GeneratedSnippets/PaginatedClient.SignatureMethod2RequestObjectSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated.GeneratedSnippets/PaginatedClient.SignatureMethod2RequestObjectSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated.GeneratedSnippets/PaginatedClient.SignatureMethod2Snippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated.GeneratedSnippets/PaginatedClient.SignatureMethod2Snippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated.GeneratedSnippets/PaginatedClient.SignatureMethod3AsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated.GeneratedSnippets/PaginatedClient.SignatureMethod3AsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated.GeneratedSnippets/PaginatedClient.SignatureMethod3Snippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated.GeneratedSnippets/PaginatedClient.SignatureMethod3Snippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated.GeneratedSnippets/PaginatedClient.SignatureMethodRequestObjectAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated.GeneratedSnippets/PaginatedClient.SignatureMethodRequestObjectAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated.GeneratedSnippets/PaginatedClient.SignatureMethodRequestObjectSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated.GeneratedSnippets/PaginatedClient.SignatureMethodRequestObjectSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated.GeneratedSnippets/snippet_metadata_testing.paginated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated.GeneratedSnippets/snippet_metadata_testing.paginated.json -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated.Snippets/PaginatedClientSnippets.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated.Snippets/PaginatedClientSnippets.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated/PaginatedClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated/PaginatedClient.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated/PaginatedResourceNames.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Paginated/Testing.Paginated/PaginatedResourceNames.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ProtoMsgFake.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ProtoMsgFake.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/PublishingSettings/CommonResourceConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/PublishingSettings/CommonResourceConfig.json -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/PublishingSettings/CommonResourceDef.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/PublishingSettings/CommonResourceDef.proto -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/PublishingSettings/CommonResourceFakes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/PublishingSettings/CommonResourceFakes.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/PublishingSettings/PublishingSettings.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/PublishingSettings/PublishingSettings.proto -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/PublishingSettings/PublishingSettingsFakes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/PublishingSettings/PublishingSettingsFakes.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/PublishingSettings/ServiceConfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/PublishingSettings/ServiceConfig.yaml -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.GeneratedSnippets/RenamedServiceNameClient.AMethodRequestObjectAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.GeneratedSnippets/RenamedServiceNameClient.AMethodRequestObjectAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.GeneratedSnippets/RenamedServiceNameClient.AMethodRequestObjectSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.GeneratedSnippets/RenamedServiceNameClient.AMethodRequestObjectSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.GeneratedSnippets/ServiceWithApiVersionClient.AMethodRequestObjectAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.GeneratedSnippets/ServiceWithApiVersionClient.AMethodRequestObjectAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.GeneratedSnippets/ServiceWithApiVersionClient.AMethodRequestObjectSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.GeneratedSnippets/ServiceWithApiVersionClient.AMethodRequestObjectSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.GeneratedSnippets/ServiceWithHandwrittenSignaturesClient.AMethod1AsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.GeneratedSnippets/ServiceWithHandwrittenSignaturesClient.AMethod1AsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.GeneratedSnippets/ServiceWithHandwrittenSignaturesClient.AMethod1Snippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.GeneratedSnippets/ServiceWithHandwrittenSignaturesClient.AMethod1Snippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.GeneratedSnippets/ServiceWithHandwrittenSignaturesClient.AMethod2AsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.GeneratedSnippets/ServiceWithHandwrittenSignaturesClient.AMethod2AsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.GeneratedSnippets/ServiceWithHandwrittenSignaturesClient.AMethod2Snippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.GeneratedSnippets/ServiceWithHandwrittenSignaturesClient.AMethod2Snippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.GeneratedSnippets/ServiceWithHandwrittenSignaturesClient.AMethodRequestObjectAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.GeneratedSnippets/ServiceWithHandwrittenSignaturesClient.AMethodRequestObjectAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.GeneratedSnippets/ServiceWithHandwrittenSignaturesClient.AMethodRequestObjectSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.GeneratedSnippets/ServiceWithHandwrittenSignaturesClient.AMethodRequestObjectSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.GeneratedSnippets/ServiceWithMethodSettingsClient.BidiStreamingAutoPopulatedSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.GeneratedSnippets/ServiceWithMethodSettingsClient.BidiStreamingAutoPopulatedSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.GeneratedSnippets/ServiceWithMethodSettingsClient.LroAutoPopulatedRequestObjectAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.GeneratedSnippets/ServiceWithMethodSettingsClient.LroAutoPopulatedRequestObjectAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.GeneratedSnippets/ServiceWithMethodSettingsClient.LroAutoPopulatedRequestObjectSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.GeneratedSnippets/ServiceWithMethodSettingsClient.LroAutoPopulatedRequestObjectSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.GeneratedSnippets/ServiceWithMethodSettingsClient.PaginatedAutoPopulatedRequestObjectAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.GeneratedSnippets/ServiceWithMethodSettingsClient.PaginatedAutoPopulatedRequestObjectAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.GeneratedSnippets/ServiceWithMethodSettingsClient.PaginatedAutoPopulatedRequestObjectSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.GeneratedSnippets/ServiceWithMethodSettingsClient.PaginatedAutoPopulatedRequestObjectSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.GeneratedSnippets/ServiceWithMethodSettingsClient.ServerStreamingAutoPopulatedRequestObjectSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.GeneratedSnippets/ServiceWithMethodSettingsClient.ServerStreamingAutoPopulatedRequestObjectSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.GeneratedSnippets/ServiceWithMethodSettingsClient.UnaryAutoPopulatedRequestObjectAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.GeneratedSnippets/ServiceWithMethodSettingsClient.UnaryAutoPopulatedRequestObjectAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.GeneratedSnippets/ServiceWithMethodSettingsClient.UnaryAutoPopulatedRequestObjectSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.GeneratedSnippets/ServiceWithMethodSettingsClient.UnaryAutoPopulatedRequestObjectSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.GeneratedSnippets/ServiceWithResourcesClient.AMethodRequestObjectAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.GeneratedSnippets/ServiceWithResourcesClient.AMethodRequestObjectAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.GeneratedSnippets/ServiceWithResourcesClient.AMethodRequestObjectSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.GeneratedSnippets/ServiceWithResourcesClient.AMethodRequestObjectSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.GeneratedSnippets/snippet_metadata_testing.publishingsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.GeneratedSnippets/snippet_metadata_testing.publishingsettings.json -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.Snippets/RenamedServiceNameClientSnippets.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.Snippets/RenamedServiceNameClientSnippets.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.Snippets/ServiceWithApiVersionClientSnippets.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.Snippets/ServiceWithApiVersionClientSnippets.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.Snippets/ServiceWithHandwrittenSignaturesClientSnippets.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.Snippets/ServiceWithHandwrittenSignaturesClientSnippets.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.Snippets/ServiceWithMethodSettingsClientSnippets.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.Snippets/ServiceWithMethodSettingsClientSnippets.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.Snippets/ServiceWithResourcesClientSnippets.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings.Snippets/ServiceWithResourcesClientSnippets.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings/PackageApiMetadata.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings/PackageApiMetadata.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings/PublishingSettingsResourceNames.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings/PublishingSettingsResourceNames.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings/RenamedServiceNameClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings/RenamedServiceNameClient.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings/ServiceCollectionExtensions.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings/ServiceCollectionExtensions.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings/ServiceWithApiVersionClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings/ServiceWithApiVersionClient.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings/ServiceWithHandwrittenSignaturesClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings/ServiceWithHandwrittenSignaturesClient.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings/ServiceWithMethodSettingsClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings/ServiceWithMethodSettingsClient.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings/ServiceWithResourcesClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/PublishingSettings/Testing.PublishingSettings/ServiceWithResourcesClient.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNameSeparator/ManualTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNameSeparator/ManualTests.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNameSeparator/ResourceNameSeparator.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNameSeparator/ResourceNameSeparator.proto -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNameSeparator/ResourceNameSeparatorFakes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNameSeparator/ResourceNameSeparatorFakes.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNameSeparator/Testing.ResourceNameSeparator.GeneratedSnippets/ResourceNameSeparatorClient.Method1AsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNameSeparator/Testing.ResourceNameSeparator.GeneratedSnippets/ResourceNameSeparatorClient.Method1AsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNameSeparator/Testing.ResourceNameSeparator.GeneratedSnippets/ResourceNameSeparatorClient.Method1RequestObjectAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNameSeparator/Testing.ResourceNameSeparator.GeneratedSnippets/ResourceNameSeparatorClient.Method1RequestObjectAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNameSeparator/Testing.ResourceNameSeparator.GeneratedSnippets/ResourceNameSeparatorClient.Method1RequestObjectSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNameSeparator/Testing.ResourceNameSeparator.GeneratedSnippets/ResourceNameSeparatorClient.Method1RequestObjectSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNameSeparator/Testing.ResourceNameSeparator.GeneratedSnippets/ResourceNameSeparatorClient.Method1ResourceNamesAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNameSeparator/Testing.ResourceNameSeparator.GeneratedSnippets/ResourceNameSeparatorClient.Method1ResourceNamesAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNameSeparator/Testing.ResourceNameSeparator.GeneratedSnippets/ResourceNameSeparatorClient.Method1ResourceNamesSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNameSeparator/Testing.ResourceNameSeparator.GeneratedSnippets/ResourceNameSeparatorClient.Method1ResourceNamesSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNameSeparator/Testing.ResourceNameSeparator.GeneratedSnippets/ResourceNameSeparatorClient.Method1Snippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNameSeparator/Testing.ResourceNameSeparator.GeneratedSnippets/ResourceNameSeparatorClient.Method1Snippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNameSeparator/Testing.ResourceNameSeparator.GeneratedSnippets/snippet_metadata_testing.resourcenameseparator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNameSeparator/Testing.ResourceNameSeparator.GeneratedSnippets/snippet_metadata_testing.resourcenameseparator.json -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNameSeparator/Testing.ResourceNameSeparator.Snippets/ResourceNameSeparatorClientSnippets.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNameSeparator/Testing.ResourceNameSeparator.Snippets/ResourceNameSeparatorClientSnippets.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNameSeparator/Testing.ResourceNameSeparator/ResourceNameSeparatorClient.g.cs: -------------------------------------------------------------------------------- 1 | // TEST_DISABLE 2 | -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNameSeparator/Testing.ResourceNameSeparator/ResourceNameSeparatorResourceNames.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNameSeparator/Testing.ResourceNameSeparator/ResourceNameSeparatorResourceNames.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/ManualTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/ManualTests.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/ResourceNames.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/ResourceNames.proto -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/ResourceNamesFakes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/ResourceNamesFakes.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.DeprecatedPatternMethodAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.DeprecatedPatternMethodAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.DeprecatedPatternMethodRequestObjectAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.DeprecatedPatternMethodRequestObjectAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.DeprecatedPatternMethodRequestObjectSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.DeprecatedPatternMethodRequestObjectSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.DeprecatedPatternMethodResourceNamesAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.DeprecatedPatternMethodResourceNamesAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.DeprecatedPatternMethodResourceNamesSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.DeprecatedPatternMethodResourceNamesSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.DeprecatedPatternMethodSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.DeprecatedPatternMethodSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.LooseValidationPatternMethodAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.LooseValidationPatternMethodAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.LooseValidationPatternMethodRequestObjectAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.LooseValidationPatternMethodRequestObjectAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.LooseValidationPatternMethodRequestObjectSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.LooseValidationPatternMethodRequestObjectSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.LooseValidationPatternMethodResourceNamesAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.LooseValidationPatternMethodResourceNamesAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.LooseValidationPatternMethodResourceNamesSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.LooseValidationPatternMethodResourceNamesSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.LooseValidationPatternMethodSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.LooseValidationPatternMethodSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.SinglePatternMethodAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.SinglePatternMethodAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.SinglePatternMethodRequestObjectAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.SinglePatternMethodRequestObjectAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.SinglePatternMethodRequestObjectSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.SinglePatternMethodRequestObjectSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.SinglePatternMethodResourceNamesAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.SinglePatternMethodResourceNamesAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.SinglePatternMethodResourceNamesSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.SinglePatternMethodResourceNamesSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.SinglePatternMethodSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.SinglePatternMethodSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMethodAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMethodAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMethodRequestObjectAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMethodRequestObjectAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMethodRequestObjectSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMethodRequestObjectSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMethodResourceNames1AsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMethodResourceNames1AsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMethodResourceNames1Snippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMethodResourceNames1Snippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMethodResourceNames2AsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMethodResourceNames2AsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMethodResourceNames2Snippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMethodResourceNames2Snippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMethodResourceNames3AsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMethodResourceNames3AsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMethodResourceNames3Snippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMethodResourceNames3Snippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMethodResourceNames4AsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMethodResourceNames4AsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMethodResourceNames4Snippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMethodResourceNames4Snippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMethodResourceNames5AsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMethodResourceNames5AsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMethodResourceNames5Snippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMethodResourceNames5Snippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMethodResourceNames6AsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMethodResourceNames6AsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMethodResourceNames6Snippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMethodResourceNames6Snippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMethodResourceNames7AsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMethodResourceNames7AsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMethodResourceNames7Snippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMethodResourceNames7Snippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMethodResourceNames8AsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMethodResourceNames8AsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMethodResourceNames8Snippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMethodResourceNames8Snippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMethodSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMethodSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMultipleMethodAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMultipleMethodAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMultipleMethodRequestObjectAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMultipleMethodRequestObjectAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMultipleMethodRequestObjectSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMultipleMethodRequestObjectSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMultipleMethodResourceNames1AsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMultipleMethodResourceNames1AsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMultipleMethodResourceNames1Snippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMultipleMethodResourceNames1Snippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMultipleMethodResourceNames2AsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMultipleMethodResourceNames2AsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMultipleMethodResourceNames2Snippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMultipleMethodResourceNames2Snippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMultipleMethodResourceNames3AsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMultipleMethodResourceNames3AsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMultipleMethodResourceNames3Snippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMultipleMethodResourceNames3Snippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMultipleMethodResourceNames4AsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMultipleMethodResourceNames4AsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMultipleMethodResourceNames4Snippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMultipleMethodResourceNames4Snippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMultipleMethodSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardMultiPatternMultipleMethodSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardOnlyPatternMethodAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardOnlyPatternMethodAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardOnlyPatternMethodRequestObjectAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardOnlyPatternMethodRequestObjectAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardOnlyPatternMethodRequestObjectSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardOnlyPatternMethodRequestObjectSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardOnlyPatternMethodResourceNamesAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardOnlyPatternMethodResourceNamesAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardOnlyPatternMethodResourceNamesSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardOnlyPatternMethodResourceNamesSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardOnlyPatternMethodSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/ResourceNamesClient.WildcardOnlyPatternMethodSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/snippet_metadata_testing.resourcenames.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.GeneratedSnippets/snippet_metadata_testing.resourcenames.json -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.Snippets/ResourceNamesClientSnippets.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames.Snippets/ResourceNamesClientSnippets.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames/ResourceNamesClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames/ResourceNamesClient.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames/ResourceNamesResourceNames.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ResourceNames/Testing.ResourceNames/ResourceNamesResourceNames.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/RoutingHeaders/RoutingHeaders.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/RoutingHeaders/RoutingHeaders.proto -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/RoutingHeaders/RoutingHeadersFakes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/RoutingHeaders/RoutingHeadersFakes.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/RoutingHeaders/Testing.RoutingHeaders/RoutingHeadersClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/RoutingHeaders/Testing.RoutingHeaders/RoutingHeadersClient.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/RoutingHeadersExplicit/RoutingHeadersExplicit.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/RoutingHeadersExplicit/RoutingHeadersExplicit.proto -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/RoutingHeadersExplicit/RoutingHeadersExplicitFakes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/RoutingHeadersExplicit/RoutingHeadersExplicitFakes.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/RoutingHeadersExplicit/Testing.RoutingHeadersExplicit/RoutingHeadersExplicitClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/RoutingHeadersExplicit/Testing.RoutingHeadersExplicit/RoutingHeadersExplicitClient.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ServerStreaming/ServerStreaming.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ServerStreaming/ServerStreaming.proto -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ServerStreaming/ServerStreamingFakes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ServerStreaming/ServerStreamingFakes.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ServerStreaming/Testing.ServerStreaming/ServerStreamingClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ServerStreaming/Testing.ServerStreaming/ServerStreamingClient.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/ServerStreaming/Testing.ServerStreaming/ServerStreamingResourceNames.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/ServerStreaming/Testing.ServerStreaming/ServerStreamingResourceNames.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Showcase/Compliance.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Showcase/Compliance.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Showcase/ComplianceGrpc.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Showcase/ComplianceGrpc.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Showcase/Echo.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Showcase/Echo.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Showcase/EchoGrpc.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Showcase/EchoGrpc.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Showcase/Google.Showcase.V1Beta1/ComplianceClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Showcase/Google.Showcase.V1Beta1/ComplianceClient.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Showcase/Google.Showcase.V1Beta1/EchoClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Showcase/Google.Showcase.V1Beta1/EchoClient.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Showcase/Google.Showcase.V1Beta1/Google.Showcase.V1Beta1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Showcase/Google.Showcase.V1Beta1/Google.Showcase.V1Beta1.csproj -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Showcase/Google.Showcase.V1Beta1/IdentityClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Showcase/Google.Showcase.V1Beta1/IdentityClient.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Showcase/Google.Showcase.V1Beta1/IdentityResourceNames.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Showcase/Google.Showcase.V1Beta1/IdentityResourceNames.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Showcase/Google.Showcase.V1Beta1/MessagingClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Showcase/Google.Showcase.V1Beta1/MessagingClient.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Showcase/Google.Showcase.V1Beta1/MessagingResourceNames.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Showcase/Google.Showcase.V1Beta1/MessagingResourceNames.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Showcase/Google.Showcase.V1Beta1/PackageApiMetadata.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Showcase/Google.Showcase.V1Beta1/PackageApiMetadata.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Showcase/Google.Showcase.V1Beta1/SequenceResourceNames.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Showcase/Google.Showcase.V1Beta1/SequenceResourceNames.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Showcase/Google.Showcase.V1Beta1/SequenceServiceClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Showcase/Google.Showcase.V1Beta1/SequenceServiceClient.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Showcase/Google.Showcase.V1Beta1/ServiceCollectionExtensions.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Showcase/Google.Showcase.V1Beta1/ServiceCollectionExtensions.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Showcase/Google.Showcase.V1Beta1/TestingClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Showcase/Google.Showcase.V1Beta1/TestingClient.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Showcase/Google.Showcase.V1Beta1/TestingResourceNames.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Showcase/Google.Showcase.V1Beta1/TestingResourceNames.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Showcase/Identity.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Showcase/Identity.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Showcase/IdentityGrpc.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Showcase/IdentityGrpc.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Showcase/Messaging.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Showcase/Messaging.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Showcase/MessagingGrpc.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Showcase/MessagingGrpc.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Showcase/Sequence.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Showcase/Sequence.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Showcase/SequenceGrpc.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Showcase/SequenceGrpc.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Showcase/Testing.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Showcase/Testing.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Showcase/TestingGrpc.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Showcase/TestingGrpc.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Showcase/gapic_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Showcase/gapic_metadata.json -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Showcase/google/showcase/v1beta1/compliance.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Showcase/google/showcase/v1beta1/compliance.proto -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Showcase/google/showcase/v1beta1/echo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Showcase/google/showcase/v1beta1/echo.proto -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Showcase/google/showcase/v1beta1/identity.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Showcase/google/showcase/v1beta1/identity.proto -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Showcase/google/showcase/v1beta1/messaging.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Showcase/google/showcase/v1beta1/messaging.proto -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Showcase/google/showcase/v1beta1/sequence.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Showcase/google/showcase/v1beta1/sequence.proto -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Showcase/google/showcase/v1beta1/showcase_v1beta1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Showcase/google/showcase/v1beta1/showcase_v1beta1.yaml -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Showcase/google/showcase/v1beta1/testing.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Showcase/google/showcase/v1beta1/testing.proto -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Snippets.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Snippets.proto -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/SnippetsClientFakes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/SnippetsClientFakes.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodBidiStreamingSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodBidiStreamingSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodDefaultValuesAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodDefaultValuesAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodDefaultValuesRequestObjectAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodDefaultValuesRequestObjectAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodDefaultValuesRequestObjectSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodDefaultValuesRequestObjectSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodDefaultValuesResourceNamesAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodDefaultValuesResourceNamesAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodDefaultValuesResourceNamesSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodDefaultValuesResourceNamesSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodDefaultValuesSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodDefaultValuesSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodLroResourceSignatureAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodLroResourceSignatureAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodLroResourceSignatureRequestObjectAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodLroResourceSignatureRequestObjectAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodLroResourceSignatureRequestObjectSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodLroResourceSignatureRequestObjectSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodLroResourceSignatureResourceNamesAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodLroResourceSignatureResourceNamesAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodLroResourceSignatureResourceNamesSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodLroResourceSignatureResourceNamesSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodLroResourceSignatureSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodLroResourceSignatureSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodLroSignaturesAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodLroSignaturesAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodLroSignaturesRequestObjectAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodLroSignaturesRequestObjectAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodLroSignaturesRequestObjectSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodLroSignaturesRequestObjectSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodLroSignaturesSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodLroSignaturesSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodMapSignatureAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodMapSignatureAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodMapSignatureRequestObjectAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodMapSignatureRequestObjectAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodMapSignatureRequestObjectSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodMapSignatureRequestObjectSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodMapSignatureSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodMapSignatureSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodOneSignatureAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodOneSignatureAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodOneSignatureRequestObjectAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodOneSignatureRequestObjectAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodOneSignatureRequestObjectSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodOneSignatureRequestObjectSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodOneSignatureSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodOneSignatureSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodRepeatedResourceSignatureAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodRepeatedResourceSignatureAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodRepeatedResourceSignatureRequestObjectAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodRepeatedResourceSignatureRequestObjectAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodRepeatedResourceSignatureRequestObjectSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodRepeatedResourceSignatureRequestObjectSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodRepeatedResourceSignatureResourceNamesAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodRepeatedResourceSignatureResourceNamesAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodRepeatedResourceSignatureResourceNamesSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodRepeatedResourceSignatureResourceNamesSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodRepeatedResourceSignatureSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodRepeatedResourceSignatureSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodResourceSignature1AsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodResourceSignature1AsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodResourceSignature1ResourceNamesAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodResourceSignature1ResourceNamesAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodResourceSignature1ResourceNamesSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodResourceSignature1ResourceNamesSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodResourceSignature1Snippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodResourceSignature1Snippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodResourceSignature2AsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodResourceSignature2AsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodResourceSignature2ResourceNamesAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodResourceSignature2ResourceNamesAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodResourceSignature2ResourceNamesSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodResourceSignature2ResourceNamesSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodResourceSignature2Snippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodResourceSignature2Snippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodResourceSignatureRequestObjectAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodResourceSignatureRequestObjectAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodResourceSignatureRequestObjectSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodResourceSignatureRequestObjectSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodServerStreaming1Snippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodServerStreaming1Snippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodServerStreaming2Snippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodServerStreaming2Snippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodServerStreamingRequestObjectSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodServerStreamingRequestObjectSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodServerStreamingResourcesRequestObjectSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodServerStreamingResourcesRequestObjectSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodServerStreamingResourcesResourceNamesSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodServerStreamingResourcesResourceNamesSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodServerStreamingResourcesSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodServerStreamingResourcesSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodThreeSignatures1AsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodThreeSignatures1AsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodThreeSignatures1Snippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodThreeSignatures1Snippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodThreeSignatures2AsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodThreeSignatures2AsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodThreeSignatures2Snippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodThreeSignatures2Snippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodThreeSignatures3AsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodThreeSignatures3AsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodThreeSignatures3Snippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodThreeSignatures3Snippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodThreeSignaturesRequestObjectAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodThreeSignaturesRequestObjectAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodThreeSignaturesRequestObjectSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.MethodThreeSignaturesRequestObjectSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.OneOfMethodRequestObjectAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.OneOfMethodRequestObjectAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.OneOfMethodRequestObjectSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.OneOfMethodRequestObjectSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.TaskMethodRequestObjectAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.TaskMethodRequestObjectAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.TaskMethodRequestObjectSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/SnippetsClient.TaskMethodRequestObjectSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/snippet_metadata_testing.snippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.GeneratedSnippets/snippet_metadata_testing.snippets.json -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.Snippets/SnippetsClientSnippets.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets.Snippets/SnippetsClientSnippets.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets/SnippetsClient.g.cs: -------------------------------------------------------------------------------- 1 | // TEST_DISABLE 2 | -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets/SnippetsResourceNames.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/Snippets/Testing.Snippets/SnippetsResourceNames.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/UnknownResource/Testing.UnknownResource/UnknownResourceResourceNames.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/UnknownResource/Testing.UnknownResource/UnknownResourceResourceNames.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/UnknownResource/Testing.UnknownResource/UnknownResourcesClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/UnknownResource/Testing.UnknownResource/UnknownResourcesClient.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/UnknownResource/UnknownResource.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/UnknownResource/UnknownResource.proto -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/UnknownResource/UnknownResourceFakes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/UnknownResource/UnknownResourceFakes.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/VoidReturn/Testing.VoidReturn.GeneratedSnippets/VoidReturnClient.VoidMethodAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/VoidReturn/Testing.VoidReturn.GeneratedSnippets/VoidReturnClient.VoidMethodAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/VoidReturn/Testing.VoidReturn.GeneratedSnippets/VoidReturnClient.VoidMethodRequestObjectAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/VoidReturn/Testing.VoidReturn.GeneratedSnippets/VoidReturnClient.VoidMethodRequestObjectAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/VoidReturn/Testing.VoidReturn.GeneratedSnippets/VoidReturnClient.VoidMethodRequestObjectSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/VoidReturn/Testing.VoidReturn.GeneratedSnippets/VoidReturnClient.VoidMethodRequestObjectSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/VoidReturn/Testing.VoidReturn.GeneratedSnippets/VoidReturnClient.VoidMethodResourceNamesAsyncSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/VoidReturn/Testing.VoidReturn.GeneratedSnippets/VoidReturnClient.VoidMethodResourceNamesAsyncSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/VoidReturn/Testing.VoidReturn.GeneratedSnippets/VoidReturnClient.VoidMethodResourceNamesSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/VoidReturn/Testing.VoidReturn.GeneratedSnippets/VoidReturnClient.VoidMethodResourceNamesSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/VoidReturn/Testing.VoidReturn.GeneratedSnippets/VoidReturnClient.VoidMethodSnippet.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/VoidReturn/Testing.VoidReturn.GeneratedSnippets/VoidReturnClient.VoidMethodSnippet.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/VoidReturn/Testing.VoidReturn.GeneratedSnippets/snippet_metadata_testing.voidreturn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/VoidReturn/Testing.VoidReturn.GeneratedSnippets/snippet_metadata_testing.voidreturn.json -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/VoidReturn/Testing.VoidReturn.Snippets/VoidReturnClientSnippets.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/VoidReturn/Testing.VoidReturn.Snippets/VoidReturnClientSnippets.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/VoidReturn/Testing.VoidReturn/VoidReturnClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/VoidReturn/Testing.VoidReturn/VoidReturnClient.g.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/VoidReturn/Testing.VoidReturn/VoidReturnResourceNames.g.cs: -------------------------------------------------------------------------------- 1 | // TEST_DISABLE 2 | -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/VoidReturn/VoidReturn.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/VoidReturn/VoidReturn.proto -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ProtoTests/VoidReturn/VoidReturnFakes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ProtoTests/VoidReturn/VoidReturnFakes.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Tests/ResourcePatternTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Tests/ResourcePatternTest.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Utils.Tests/Formatting/WhitespaceFormatterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Utils.Tests/Formatting/WhitespaceFormatterTest.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Utils.Tests/Formatting/XmlDocSplitterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Utils.Tests/Formatting/XmlDocSplitterTest.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Utils.Tests/Google.Api.Generator.Utils.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Utils.Tests/Google.Api.Generator.Utils.Tests.csproj -------------------------------------------------------------------------------- /Google.Api.Generator.Utils.Tests/SystemExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Utils.Tests/SystemExtensionsTest.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Utils/Disposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Utils/Disposable.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Utils/Formatting/CodeFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Utils/Formatting/CodeFormatter.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Utils/Formatting/PragmaWarningFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Utils/Formatting/PragmaWarningFormatter.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Utils/Formatting/WhitespaceFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Utils/Formatting/WhitespaceFormatter.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Utils/Formatting/XmlDocSplitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Utils/Formatting/XmlDocSplitter.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Utils/Google.Api.Generator.Utils.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Utils/Google.Api.Generator.Utils.csproj -------------------------------------------------------------------------------- /Google.Api.Generator.Utils/Logging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Utils/Logging.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Utils/ResultFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Utils/ResultFile.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Utils/Roslyn/Annotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Utils/Roslyn/Annotations.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Utils/Roslyn/ArgModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Utils/Roslyn/ArgModifier.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Utils/Roslyn/Keywords.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Utils/Roslyn/Keywords.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Utils/Roslyn/Modifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Utils/Roslyn/Modifier.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Utils/Roslyn/ObjectInitExpr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Utils/Roslyn/ObjectInitExpr.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Utils/Roslyn/PragmaWarnings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Utils/Roslyn/PragmaWarnings.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Utils/Roslyn/RoslynBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Utils/Roslyn/RoslynBuilder.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Utils/Roslyn/RoslynConverters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Utils/Roslyn/RoslynConverters.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Utils/Roslyn/RoslynExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Utils/Roslyn/RoslynExtensions.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Utils/Roslyn/XmlDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Utils/Roslyn/XmlDoc.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Utils/SourceFileContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Utils/SourceFileContext.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Utils/SystemExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Utils/SystemExtensions.cs -------------------------------------------------------------------------------- /Google.Api.Generator.Utils/Typ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator.Utils/Typ.cs -------------------------------------------------------------------------------- /Google.Api.Generator/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator/AssemblyInfo.cs -------------------------------------------------------------------------------- /Google.Api.Generator/CodeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator/CodeGenerator.cs -------------------------------------------------------------------------------- /Google.Api.Generator/ConfigProtos/CommonResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator/ConfigProtos/CommonResources.cs -------------------------------------------------------------------------------- /Google.Api.Generator/ConfigProtos/GapicMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator/ConfigProtos/GapicMetadata.cs -------------------------------------------------------------------------------- /Google.Api.Generator/ConfigProtos/ServiceConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator/ConfigProtos/ServiceConfig.cs -------------------------------------------------------------------------------- /Google.Api.Generator/ConfigProtos/SnippetIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator/ConfigProtos/SnippetIndex.cs -------------------------------------------------------------------------------- /Google.Api.Generator/ConfigProtos/common_resources.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator/ConfigProtos/common_resources.proto -------------------------------------------------------------------------------- /Google.Api.Generator/ConfigProtos/gapic_metadata.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator/ConfigProtos/gapic_metadata.proto -------------------------------------------------------------------------------- /Google.Api.Generator/ConfigProtos/service_config.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator/ConfigProtos/service_config.proto -------------------------------------------------------------------------------- /Google.Api.Generator/ConfigProtos/snippet_index.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator/ConfigProtos/snippet_index.proto -------------------------------------------------------------------------------- /Google.Api.Generator/Generation/CsProjGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator/Generation/CsProjGenerator.cs -------------------------------------------------------------------------------- /Google.Api.Generator/Generation/EnumStringGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator/Generation/EnumStringGenerator.cs -------------------------------------------------------------------------------- /Google.Api.Generator/Generation/LroAdaptationGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator/Generation/LroAdaptationGenerator.cs -------------------------------------------------------------------------------- /Google.Api.Generator/Generation/MetadataGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator/Generation/MetadataGenerator.cs -------------------------------------------------------------------------------- /Google.Api.Generator/Generation/MethodDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator/Generation/MethodDetails.cs -------------------------------------------------------------------------------- /Google.Api.Generator/Generation/PackageApiMetadataGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator/Generation/PackageApiMetadataGenerator.cs -------------------------------------------------------------------------------- /Google.Api.Generator/Generation/ResourceNamesGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator/Generation/ResourceNamesGenerator.cs -------------------------------------------------------------------------------- /Google.Api.Generator/Generation/ServiceAbstractClientClassCodeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator/Generation/ServiceAbstractClientClassCodeGenerator.cs -------------------------------------------------------------------------------- /Google.Api.Generator/Generation/ServiceBuilderCodeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator/Generation/ServiceBuilderCodeGenerator.cs -------------------------------------------------------------------------------- /Google.Api.Generator/Generation/ServiceCodeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator/Generation/ServiceCodeGenerator.cs -------------------------------------------------------------------------------- /Google.Api.Generator/Generation/ServiceCollectionExtensionsGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator/Generation/ServiceCollectionExtensionsGenerator.cs -------------------------------------------------------------------------------- /Google.Api.Generator/Generation/ServiceDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator/Generation/ServiceDetails.cs -------------------------------------------------------------------------------- /Google.Api.Generator/Generation/ServiceImplClientClassGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator/Generation/ServiceImplClientClassGenerator.cs -------------------------------------------------------------------------------- /Google.Api.Generator/Generation/ServiceMethodGenerator.Signatures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator/Generation/ServiceMethodGenerator.Signatures.cs -------------------------------------------------------------------------------- /Google.Api.Generator/Generation/ServiceMethodGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator/Generation/ServiceMethodGenerator.cs -------------------------------------------------------------------------------- /Google.Api.Generator/Generation/ServiceSettingsCodeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator/Generation/ServiceSettingsCodeGenerator.cs -------------------------------------------------------------------------------- /Google.Api.Generator/Generation/SnippetCodeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator/Generation/SnippetCodeGenerator.cs -------------------------------------------------------------------------------- /Google.Api.Generator/Google.Api.Generator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator/Google.Api.Generator.csproj -------------------------------------------------------------------------------- /Google.Api.Generator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator/Program.cs -------------------------------------------------------------------------------- /Google.Api.Generator/ProtoUtils/IMessageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator/ProtoUtils/IMessageExtensions.cs -------------------------------------------------------------------------------- /Google.Api.Generator/ProtoUtils/ProtoCatalog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator/ProtoUtils/ProtoCatalog.cs -------------------------------------------------------------------------------- /Google.Api.Generator/ProtoUtils/ProtoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator/ProtoUtils/ProtoExtensions.cs -------------------------------------------------------------------------------- /Google.Api.Generator/ProtoUtils/ProtoMsg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator/ProtoUtils/ProtoMsg.cs -------------------------------------------------------------------------------- /Google.Api.Generator/ProtoUtils/ProtoTyp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator/ProtoUtils/ProtoTyp.cs -------------------------------------------------------------------------------- /Google.Api.Generator/ProtoUtils/ResourceDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator/ProtoUtils/ResourceDetails.cs -------------------------------------------------------------------------------- /Google.Api.Generator/ProtoUtils/ResourcePattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/Google.Api.Generator/ProtoUtils/ResourcePattern.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/LICENSE -------------------------------------------------------------------------------- /NuGetIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/NuGetIcon.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/RELEASING.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/SECURITY.md -------------------------------------------------------------------------------- /TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/TESTING.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/TODO.md -------------------------------------------------------------------------------- /WORKSPACE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/WORKSPACE.bazel -------------------------------------------------------------------------------- /bazel_example/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/bazel_example/BUILD.bazel -------------------------------------------------------------------------------- /bazel_example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/bazel_example/README.md -------------------------------------------------------------------------------- /bazel_example/WORKSPACE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/bazel_example/WORKSPACE.bazel -------------------------------------------------------------------------------- /bazel_example/common_resources_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/bazel_example/common_resources_config.json -------------------------------------------------------------------------------- /bazel_example/example.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/bazel_example/example.proto -------------------------------------------------------------------------------- /bazel_example/example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/bazel_example/example.yaml -------------------------------------------------------------------------------- /bazel_example/grpc_service_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/bazel_example/grpc_service_config.json -------------------------------------------------------------------------------- /generateprotos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/generateprotos.sh -------------------------------------------------------------------------------- /generator-input/pipeline-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/generator-input/pipeline-config.json -------------------------------------------------------------------------------- /generator-input/pipeline-state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/generator-input/pipeline-state.json -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/global.json -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/nuget.config -------------------------------------------------------------------------------- /repositories.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/repositories.bzl -------------------------------------------------------------------------------- /rules_csharp_gapic/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/rules_csharp_gapic/BUILD.bazel -------------------------------------------------------------------------------- /rules_csharp_gapic/csharp_compiler.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/rules_csharp_gapic/csharp_compiler.bzl -------------------------------------------------------------------------------- /rules_csharp_gapic/csharp_compiler_repo.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/rules_csharp_gapic/csharp_compiler_repo.bzl -------------------------------------------------------------------------------- /rules_csharp_gapic/csharp_gapic.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/rules_csharp_gapic/csharp_gapic.bzl -------------------------------------------------------------------------------- /rules_csharp_gapic/csharp_gapic_pkg.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/rules_csharp_gapic/csharp_gapic_pkg.bzl -------------------------------------------------------------------------------- /tools/grpc_csharp_plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/tools/grpc_csharp_plugin -------------------------------------------------------------------------------- /tools/grpc_csharp_plugin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/tools/grpc_csharp_plugin.exe -------------------------------------------------------------------------------- /tools/grpc_csharp_plugin_macosx_x64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/tools/grpc_csharp_plugin_macosx_x64 -------------------------------------------------------------------------------- /tools/protoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/tools/protoc -------------------------------------------------------------------------------- /tools/protoc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/tools/protoc.exe -------------------------------------------------------------------------------- /tools/protoc_macosx_x64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/tools/protoc_macosx_x64 -------------------------------------------------------------------------------- /tools/protos/google/protobuf/any.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/tools/protos/google/protobuf/any.proto -------------------------------------------------------------------------------- /tools/protos/google/protobuf/api.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/tools/protos/google/protobuf/api.proto -------------------------------------------------------------------------------- /tools/protos/google/protobuf/descriptor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/tools/protos/google/protobuf/descriptor.proto -------------------------------------------------------------------------------- /tools/protos/google/protobuf/duration.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/tools/protos/google/protobuf/duration.proto -------------------------------------------------------------------------------- /tools/protos/google/protobuf/empty.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/tools/protos/google/protobuf/empty.proto -------------------------------------------------------------------------------- /tools/protos/google/protobuf/field_mask.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/tools/protos/google/protobuf/field_mask.proto -------------------------------------------------------------------------------- /tools/protos/google/protobuf/source_context.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/tools/protos/google/protobuf/source_context.proto -------------------------------------------------------------------------------- /tools/protos/google/protobuf/struct.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/tools/protos/google/protobuf/struct.proto -------------------------------------------------------------------------------- /tools/protos/google/protobuf/timestamp.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/tools/protos/google/protobuf/timestamp.proto -------------------------------------------------------------------------------- /tools/protos/google/protobuf/type.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/tools/protos/google/protobuf/type.proto -------------------------------------------------------------------------------- /tools/protos/google/protobuf/wrappers.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/tools/protos/google/protobuf/wrappers.proto -------------------------------------------------------------------------------- /tools/update-grpc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/tools/update-grpc.sh -------------------------------------------------------------------------------- /tools/update-protoc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-csharp/HEAD/tools/update-protoc.sh --------------------------------------------------------------------------------