Show / Hide Table of Contents

Interface IGetEnvironmentApiResponse

The IGetEnvironmentApiResponse

Inherited Members
IOk<EnvironmentDefinition>.Ok()
IOk<EnvironmentDefinition>.TryOk(out EnvironmentDefinition)
IBadRequest<Error>.BadRequest()
IBadRequest<Error>.TryBadRequest(out Error)
IUnauthorized<Error>.Unauthorized()
IUnauthorized<Error>.TryUnauthorized(out Error)
INotFound<Error>.NotFound()
INotFound<Error>.TryNotFound(out Error)
IInternalServerError<Error>.InternalServerError()
IInternalServerError<Error>.TryInternalServerError(out Error)
IDefault<Error>.Default()
IDefault<Error>.TryDefault(out Error)
IApiResponse.IsSuccessStatusCode
IApiResponse.StatusCode
IApiResponse.RawContent
IApiResponse.DownloadedAt
IApiResponse.Headers
IApiResponse.Path
IApiResponse.ReasonPhrase
IApiResponse.RequestedAt
IApiResponse.RequestUri
Namespace: Pulumi.Esc.Sdk.Api
Assembly: Pulumi.Esc.Sdk.dll
Syntax
public interface IGetEnvironmentApiResponse : IOk<EnvironmentDefinition?>, IBadRequest<Error?>, IUnauthorized<Error?>, INotFound<Error?>, IInternalServerError<Error?>, IDefault<Error?>, IApiResponse

Properties

View Source

IsBadRequest

Returns true if the response is 400 BadRequest

Declaration
bool IsBadRequest { get; }
Property Value
Type Description
bool
View Source

IsDefault

Returns true if the response is the default response type

Declaration
bool IsDefault { get; }
Property Value
Type Description
bool
View Source

IsInternalServerError

Returns true if the response is 500 InternalServerError

Declaration
bool IsInternalServerError { get; }
Property Value
Type Description
bool
View Source

IsNotFound

Returns true if the response is 404 NotFound

Declaration
bool IsNotFound { get; }
Property Value
Type Description
bool
View Source

IsOk

Returns true if the response is 200 Ok

Declaration
bool IsOk { get; }
Property Value
Type Description
bool
View Source

IsUnauthorized

Returns true if the response is 401 Unauthorized

Declaration
bool IsUnauthorized { get; }
Property Value
Type Description
bool

Version 0.13.1

  • View Source
Back to top Copyright 2016-2023, Pulumi Corporation.