Skip to content

Commit d9c868a

Browse files
committed
Suggested renames from @gmarz and wrong xmldocs
1 parent 8c8b14d commit d9c868a

23 files changed

+25
-23
lines changed

Diff for: src/Elasticsearch.Net/Configuration/RequestConfiguration.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,6 @@ public class RequestConfiguration : IRequestConfiguration
7676
public TimeSpan? RequestTimeout { get; set; }
7777
public TimeSpan? PingTimeout { get; set; }
7878
public string ContentType { get; set; }
79-
/// <summary>
80-
/// Submit the request on behalf in the context of a different user
81-
/// https://www.elastic.co/guide/en/shield/current/submitting-requests-for-other-users.html
82-
/// </summary>
8379
public int? MaxRetries { get; set; }
8480
public Uri ForceNode { get; set; }
8581
public bool? DisableSniff { get; set; }
@@ -88,6 +84,10 @@ public class RequestConfiguration : IRequestConfiguration
8884
public BasicAuthenticationCredentials BasicAuthenticationCredentials { get; set; }
8985
public bool EnableHttpPipelining { get; set; } = true;
9086
public CancellationToken CancellationToken { get; set; }
87+
/// <summary>
88+
/// Submit the request on behalf in the context of a different user
89+
/// https://www.elastic.co/guide/en/shield/current/submitting-requests-for-other-users.html
90+
/// </summary>
9191
public string RunAs { get; set; }
9292
}
9393

Diff for: src/Elasticsearch.Net/Elasticsearch.Net.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
<Compile Include="Configuration\ConnectionConfiguration.cs" />
6161
<Compile Include="Configuration\IConnectionConfigurationValues.cs" />
6262
<Compile Include="Configuration\RequestConfiguration.cs" />
63-
<Compile Include="Configuration\Security\BasicAuthorizationCredentials.cs" />
63+
<Compile Include="Configuration\Security\BasicAuthenticationCredentials.cs" />
6464
<Compile Include="ConnectionPool\IConnectionPool.cs" />
6565
<Compile Include="ConnectionPool\Node.cs" />
6666
<Compile Include="ConnectionPool\SingleNodeConnectionPool.cs" />

Diff for: src/Nest/Nest.csproj

+2
Original file line numberDiff line numberDiff line change
@@ -1216,6 +1216,8 @@
12161216
<Compile Include="XPack\Shield\Role\ClearCachedRoles\ClearCachedRolesRequest.cs" />
12171217
<Compile Include="XPack\Shield\Role\ClearCachedRoles\ClearCachedRolesResponse.cs" />
12181218
<Compile Include="XPack\Shield\Role\ClearCachedRoles\ElasticClient-ClearCachedRoles.cs" />
1219+
<Compile Include="XPack\Shield\ShieldNode.cs" />
1220+
<Compile Include="XPack\Shield\ShieldNodeStatus.cs" />
12191221
<Compile Include="XPack\Shield\Role\DeleteRole\DeleteRoleRequest.cs" />
12201222
<Compile Include="XPack\Shield\Role\DeleteRole\DeleteRoleResponse.cs" />
12211223
<Compile Include="XPack\Shield\Role\DeleteRole\ElasticClient-DeleteRole.cs" />

Diff for: src/Tests/Tests.csproj

+18-18
Original file line numberDiff line numberDiff line change
@@ -558,11 +558,11 @@
558558
<Compile Include="Framework\Integration\Process\ElasticsearchMessage.cs" />
559559
<Compile Include="Framework\Integration\Process\ElasticsearchNodeInfo.cs" />
560560
<Compile Include="Framework\Integration\Process\ElasticsearchVersionInfo.cs" />
561-
<Compile Include="XPack\Shield\ClearCachedRealms\ClearCachedRealmsApiTests.cs" />
562-
<Compile Include="XPack\Shield\ClearCachedRealms\ClearCachedRealmsUrlTests.cs" />
563-
<Compile Include="XPack\Shield\Role\ClearCachedRoles\ClearCachedRolesApiTests.cs" />
564-
<Compile Include="XPack\Shield\Role\ClearCachedRoles\ClearCachedRolesUrlTests.cs" />
565-
<Compile Include="XPack\Shield\ShieldInformation.cs" />
561+
<Compile Include="XPack\Security\ClearCachedRealms\ClearCachedRealmsApiTests.cs" />
562+
<Compile Include="XPack\Security\ClearCachedRealms\ClearCachedRealmsUrlTests.cs" />
563+
<Compile Include="XPack\Security\Role\ClearCachedRoles\ClearCachedRolesApiTests.cs" />
564+
<Compile Include="XPack\Security\Role\ClearCachedRoles\ClearCachedRolesUrlTests.cs" />
565+
<Compile Include="XPack\Security\ShieldInformation.cs" />
566566
<Compile Include="QueryDsl\BoolDsl\Operators\CombinatorialUsageTests.cs" />
567567
<Compile Include="QueryDsl\QueryDslIntegrationTestsBase.cs" />
568568
<Compile Include="QueryDsl\TermLevel\Terms\TermsListQueryUsageTests.cs" />
@@ -581,19 +581,19 @@
581581
<Compile Include="XPack\License\GetLicense\GetLicenseUrlTests.cs" />
582582
<Compile Include="XPack\License\PostLicense\PostLicenseUrlTests.cs" />
583583
<Compile Include="XPack\License\PostLicense\PostLicenseApiTests.cs" />
584-
<Compile Include="XPack\Shield\Authenticate\AuthenticateApiTests.cs" />
585-
<Compile Include="XPack\Shield\Authenticate\AuthenticateUrlTests.cs" />
586-
<Compile Include="XPack\Shield\ShieldCluster.cs" />
587-
<Compile Include="XPack\Shield\Role\DeleteRole\DeleteRoleUrlTests.cs" />
588-
<Compile Include="XPack\Shield\Role\GetRole\GetRoleUrlTests.cs" />
589-
<Compile Include="XPack\Shield\Role\PutRole\PutRoleApiTests.cs" />
590-
<Compile Include="XPack\Shield\Role\PutRole\PutRoleUrlTests.cs" />
591-
<Compile Include="XPack\Shield\Role\RoleCrudTests.cs" />
592-
<Compile Include="XPack\Shield\User\DeleteUser\DeleteUserUrlTests.cs" />
593-
<Compile Include="XPack\Shield\User\GetUser\GetUserUrlTests.cs" />
594-
<Compile Include="XPack\Shield\User\PutUser\PutUserApiTests.cs" />
595-
<Compile Include="XPack\Shield\User\PutUser\PutUserUrlTests.cs" />
596-
<Compile Include="XPack\Shield\User\UserCrudTests.cs" />
584+
<Compile Include="XPack\Security\Authenticate\AuthenticateApiTests.cs" />
585+
<Compile Include="XPack\Security\Authenticate\AuthenticateUrlTests.cs" />
586+
<Compile Include="XPack\Security\ShieldCluster.cs" />
587+
<Compile Include="XPack\Security\Role\DeleteRole\DeleteRoleUrlTests.cs" />
588+
<Compile Include="XPack\Security\Role\GetRole\GetRoleUrlTests.cs" />
589+
<Compile Include="XPack\Security\Role\PutRole\PutRoleApiTests.cs" />
590+
<Compile Include="XPack\Security\Role\PutRole\PutRoleUrlTests.cs" />
591+
<Compile Include="XPack\Security\Role\RoleCrudTests.cs" />
592+
<Compile Include="XPack\Security\User\DeleteUser\DeleteUserUrlTests.cs" />
593+
<Compile Include="XPack\Security\User\GetUser\GetUserUrlTests.cs" />
594+
<Compile Include="XPack\Security\User\PutUser\PutUserApiTests.cs" />
595+
<Compile Include="XPack\Security\User\PutUser\PutUserUrlTests.cs" />
596+
<Compile Include="XPack\Security\User\UserCrudTests.cs" />
597597
<None Include="aggregations-usage.asciidoc" />
598598
<None Include="aggregations.asciidoc" />
599599
<None Include="client-concepts.asciidoc" />
File renamed without changes.

0 commit comments

Comments
 (0)