Grafeas v1 API - Class GrafeasClientBuilder (3.6.0)

public sealed class GrafeasClientBuilder : ClientBuilderBase<GrafeasClient>

Reference documentation and code samples for the Grafeas v1 API class GrafeasClientBuilder.

Builder class for GrafeasClient to provide simple configuration of credentials, endpoint etc.

Inheritance

object > ClientBuilderBaseGrafeasClient > GrafeasClientBuilder

Namespace

Grafeas.V1

Assembly

Grafeas.V1.dll

Constructors

GrafeasClientBuilder()

public GrafeasClientBuilder()

Creates a new builder with default settings.

Properties

CanUseChannelPool

protected override bool CanUseChannelPool { get; }

Returns whether or not a channel pool can be used if a channel is required. The default behavior is to return true if and only if no quota project, scopes, credentials or token access method have been specified and if UseJwtAccessWithScopes flag matches the flag in ChannelPool. Derived classes should override this property if there are other reasons why the channel pool should not be used.

Property Value
TypeDescription
bool
Overrides

Settings

public GrafeasSettings Settings { get; set; }

The settings to use for RPCs, or null for the default settings.

Property Value
TypeDescription
GrafeasSettings

Methods

Build()

public override GrafeasClient Build()

Builds the resulting client.

Returns
TypeDescription
GrafeasClient
Overrides

BuildAsync(CancellationToken)

public override Task<GrafeasClient> BuildAsync(CancellationToken cancellationToken = default)

Builds the resulting client asynchronously.

Parameter
NameDescription
cancellationTokenCancellationToken
Returns
TypeDescription
TaskGrafeasClient
Overrides

GetChannelPool()

protected override ChannelPool GetChannelPool()

Returns the channel pool to use when no other options are specified. This method is not called unless CanUseChannelPool returns true, so if a channel pool is unavailable, override that property to return false and throw an exception from this method.

Returns
TypeDescription
ChannelPool
Overrides

Validate()

protected override void Validate()

Validates that the builder is in a consistent state for building. For example, it's invalid to call Build() on an instance which has both JSON credentials and a credentials path specified.

Overrides
Exceptions
TypeDescription
InvalidOperationException

The builder is in an invalid state.