s_s_o_management_service

package
v0.94.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 1, 2024 License: MPL-2.0 Imports: 12 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

type Client struct {
	// contains filtered or unexported fields
}

Client for s s o management service API

func (*Client) SSOManagementServiceCreateSSOConfiguration added in v0.64.0

SSOManagementServiceCreateSSOConfiguration creates s s o configuration creates a new s s o configuration for an organization

func (*Client) SSOManagementServiceDeleteSSOConfiguration added in v0.64.0

SSOManagementServiceDeleteSSOConfiguration deletes s s o configuration deletes an existing s s o configuration

func (*Client) SSOManagementServiceGetPreconfigurationData added in v0.64.0

SSOManagementServiceGetPreconfigurationData gets preconfiguration data returns data needed prior to an s s o configuration being created

func (*Client) SSOManagementServiceGetSSOConfiguration added in v0.64.0

SSOManagementServiceGetSSOConfiguration gets s s o configuration retrieves a specific s s o configuration for an organization

func (*Client) SSOManagementServiceGetSSOType added in v0.64.0

func (a *Client) SSOManagementServiceGetSSOType(params *SSOManagementServiceGetSSOTypeParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SSOManagementServiceGetSSOTypeOK, error)

SSOManagementServiceGetSSOType gets s s o type returns the type of s s o that is configured for an organization

func (*Client) SSOManagementServiceListSSOConfigurations added in v0.64.0

SSOManagementServiceListSSOConfigurations lists s s o configurations retrieves the s s o configurations for an organization

func (*Client) SSOManagementServiceUpdateSSOConfiguration added in v0.64.0

SSOManagementServiceUpdateSSOConfiguration updates s s o configuration updates an existing s s o configuration

func (*Client) SSOManagementServiceVerifyDomainOwnership added in v0.64.0

SSOManagementServiceVerifyDomainOwnership verifies domain ownership checks whether the organization has proven their ownership control of the given domain by adding the required t x t record

It is intended to be used to provide early feedback to the user; we check

ownership "for real" in CreateSSOConfiguration and UpdateSSOConfiguration.

func (*Client) SSOManagementServiceVerifySSODomainOwnership added in v0.64.0

SSOManagementServiceVerifySSODomainOwnership verifies s s o domain ownership checks whether the organization has proven their ownership control of the given domain by adding the required t x t record

This endpoint differs from the one above because it is intended to be used

for HashiCorp SSO domain ownership verification and not Auth0 SAML SSO. It is intended to be used to provide early feedback to the user; we check domain ownership in cloud-idp.

func (*Client) SetTransport

func (a *Client) SetTransport(transport runtime.ClientTransport)

SetTransport changes the transport on the client

type ClientOption

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService

type ClientService interface {
	SSOManagementServiceCreateSSOConfiguration(params *SSOManagementServiceCreateSSOConfigurationParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SSOManagementServiceCreateSSOConfigurationOK, error)

	SSOManagementServiceDeleteSSOConfiguration(params *SSOManagementServiceDeleteSSOConfigurationParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SSOManagementServiceDeleteSSOConfigurationOK, error)

	SSOManagementServiceGetPreconfigurationData(params *SSOManagementServiceGetPreconfigurationDataParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SSOManagementServiceGetPreconfigurationDataOK, error)

	SSOManagementServiceGetSSOConfiguration(params *SSOManagementServiceGetSSOConfigurationParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SSOManagementServiceGetSSOConfigurationOK, error)

	SSOManagementServiceGetSSOType(params *SSOManagementServiceGetSSOTypeParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SSOManagementServiceGetSSOTypeOK, error)

	SSOManagementServiceListSSOConfigurations(params *SSOManagementServiceListSSOConfigurationsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SSOManagementServiceListSSOConfigurationsOK, error)

	SSOManagementServiceUpdateSSOConfiguration(params *SSOManagementServiceUpdateSSOConfigurationParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SSOManagementServiceUpdateSSOConfigurationOK, error)

	SSOManagementServiceVerifyDomainOwnership(params *SSOManagementServiceVerifyDomainOwnershipParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SSOManagementServiceVerifyDomainOwnershipOK, error)

	SSOManagementServiceVerifySSODomainOwnership(params *SSOManagementServiceVerifySSODomainOwnershipParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SSOManagementServiceVerifySSODomainOwnershipOK, error)

	SetTransport(transport runtime.ClientTransport)
}

ClientService is the interface for Client methods

func New

func New(transport runtime.ClientTransport, formats strfmt.Registry) ClientService

New creates a new s s o management service API client.

type SSOManagementServiceCreateSSOConfigurationBody added in v0.68.0

type SSOManagementServiceCreateSSOConfigurationBody struct {

	// SsoConfig has the SSO configuration for this organization.
	Config *models.HashicorpCloudIamSSOConfig `json:"config,omitempty"`
}

SSOManagementServiceCreateSSOConfigurationBody s s o management service create s s o configuration body swagger:model SSOManagementServiceCreateSSOConfigurationBody

func (*SSOManagementServiceCreateSSOConfigurationBody) ContextValidate added in v0.68.0

ContextValidate validate this s s o management service create s s o configuration body based on the context it is used

func (*SSOManagementServiceCreateSSOConfigurationBody) MarshalBinary added in v0.68.0

MarshalBinary interface implementation

func (*SSOManagementServiceCreateSSOConfigurationBody) UnmarshalBinary added in v0.68.0

UnmarshalBinary interface implementation

func (*SSOManagementServiceCreateSSOConfigurationBody) Validate added in v0.68.0

Validate validates this s s o management service create s s o configuration body

type SSOManagementServiceCreateSSOConfigurationDefault added in v0.64.0

type SSOManagementServiceCreateSSOConfigurationDefault struct {
	Payload *cloud.GoogleRPCStatus
	// contains filtered or unexported fields
}

SSOManagementServiceCreateSSOConfigurationDefault describes a response with status code -1, with default header values.

An unexpected error response.

func NewSSOManagementServiceCreateSSOConfigurationDefault added in v0.64.0

func NewSSOManagementServiceCreateSSOConfigurationDefault(code int) *SSOManagementServiceCreateSSOConfigurationDefault

NewSSOManagementServiceCreateSSOConfigurationDefault creates a SSOManagementServiceCreateSSOConfigurationDefault with default headers values

func (*SSOManagementServiceCreateSSOConfigurationDefault) Code added in v0.64.0

Code gets the status code for the s s o management service create s s o configuration default response

func (*SSOManagementServiceCreateSSOConfigurationDefault) Error added in v0.64.0

func (*SSOManagementServiceCreateSSOConfigurationDefault) GetPayload added in v0.64.0

func (*SSOManagementServiceCreateSSOConfigurationDefault) IsClientError added in v0.64.0

IsClientError returns true when this s s o management service create s s o configuration default response has a 4xx status code

func (*SSOManagementServiceCreateSSOConfigurationDefault) IsCode added in v0.64.0

IsCode returns true when this s s o management service create s s o configuration default response a status code equal to that given

func (*SSOManagementServiceCreateSSOConfigurationDefault) IsRedirect added in v0.64.0

IsRedirect returns true when this s s o management service create s s o configuration default response has a 3xx status code

func (*SSOManagementServiceCreateSSOConfigurationDefault) IsServerError added in v0.64.0

IsServerError returns true when this s s o management service create s s o configuration default response has a 5xx status code

func (*SSOManagementServiceCreateSSOConfigurationDefault) IsSuccess added in v0.64.0

IsSuccess returns true when this s s o management service create s s o configuration default response has a 2xx status code

func (*SSOManagementServiceCreateSSOConfigurationDefault) String added in v0.64.0

type SSOManagementServiceCreateSSOConfigurationOK added in v0.64.0

type SSOManagementServiceCreateSSOConfigurationOK struct {
	Payload models.HashicorpCloudIamCreateSSOConfigurationResponse
}

SSOManagementServiceCreateSSOConfigurationOK describes a response with status code 200, with default header values.

A successful response.

func NewSSOManagementServiceCreateSSOConfigurationOK added in v0.64.0

func NewSSOManagementServiceCreateSSOConfigurationOK() *SSOManagementServiceCreateSSOConfigurationOK

NewSSOManagementServiceCreateSSOConfigurationOK creates a SSOManagementServiceCreateSSOConfigurationOK with default headers values

func (*SSOManagementServiceCreateSSOConfigurationOK) Code added in v0.68.0

Code gets the status code for the s s o management service create s s o configuration o k response

func (*SSOManagementServiceCreateSSOConfigurationOK) Error added in v0.64.0

func (*SSOManagementServiceCreateSSOConfigurationOK) GetPayload added in v0.64.0

func (*SSOManagementServiceCreateSSOConfigurationOK) IsClientError added in v0.64.0

IsClientError returns true when this s s o management service create s s o configuration o k response has a 4xx status code

func (*SSOManagementServiceCreateSSOConfigurationOK) IsCode added in v0.64.0

IsCode returns true when this s s o management service create s s o configuration o k response a status code equal to that given

func (*SSOManagementServiceCreateSSOConfigurationOK) IsRedirect added in v0.64.0

IsRedirect returns true when this s s o management service create s s o configuration o k response has a 3xx status code

func (*SSOManagementServiceCreateSSOConfigurationOK) IsServerError added in v0.64.0

IsServerError returns true when this s s o management service create s s o configuration o k response has a 5xx status code

func (*SSOManagementServiceCreateSSOConfigurationOK) IsSuccess added in v0.64.0

IsSuccess returns true when this s s o management service create s s o configuration o k response has a 2xx status code

func (*SSOManagementServiceCreateSSOConfigurationOK) String added in v0.64.0

type SSOManagementServiceCreateSSOConfigurationParams added in v0.64.0

type SSOManagementServiceCreateSSOConfigurationParams struct {

	// Body.
	Body SSOManagementServiceCreateSSOConfigurationBody

	/* OrganizationID.

	   OrganizationId is the identifier of the organization.
	*/
	OrganizationID string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

SSOManagementServiceCreateSSOConfigurationParams contains all the parameters to send to the API endpoint

for the s s o management service create s s o configuration operation.

Typically these are written to a http.Request.

func NewSSOManagementServiceCreateSSOConfigurationParams added in v0.64.0

func NewSSOManagementServiceCreateSSOConfigurationParams() *SSOManagementServiceCreateSSOConfigurationParams

NewSSOManagementServiceCreateSSOConfigurationParams creates a new SSOManagementServiceCreateSSOConfigurationParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewSSOManagementServiceCreateSSOConfigurationParamsWithContext added in v0.64.0

func NewSSOManagementServiceCreateSSOConfigurationParamsWithContext(ctx context.Context) *SSOManagementServiceCreateSSOConfigurationParams

NewSSOManagementServiceCreateSSOConfigurationParamsWithContext creates a new SSOManagementServiceCreateSSOConfigurationParams object with the ability to set a context for a request.

func NewSSOManagementServiceCreateSSOConfigurationParamsWithHTTPClient added in v0.64.0

func NewSSOManagementServiceCreateSSOConfigurationParamsWithHTTPClient(client *http.Client) *SSOManagementServiceCreateSSOConfigurationParams

NewSSOManagementServiceCreateSSOConfigurationParamsWithHTTPClient creates a new SSOManagementServiceCreateSSOConfigurationParams object with the ability to set a custom HTTPClient for a request.

func NewSSOManagementServiceCreateSSOConfigurationParamsWithTimeout added in v0.64.0

func NewSSOManagementServiceCreateSSOConfigurationParamsWithTimeout(timeout time.Duration) *SSOManagementServiceCreateSSOConfigurationParams

NewSSOManagementServiceCreateSSOConfigurationParamsWithTimeout creates a new SSOManagementServiceCreateSSOConfigurationParams object with the ability to set a timeout on a request.

func (*SSOManagementServiceCreateSSOConfigurationParams) SetBody added in v0.64.0

SetBody adds the body to the s s o management service create s s o configuration params

func (*SSOManagementServiceCreateSSOConfigurationParams) SetContext added in v0.64.0

SetContext adds the context to the s s o management service create s s o configuration params

func (*SSOManagementServiceCreateSSOConfigurationParams) SetDefaults added in v0.64.0

SetDefaults hydrates default values in the s s o management service create s s o configuration params (not the query body).

All values with no default are reset to their zero value.

func (*SSOManagementServiceCreateSSOConfigurationParams) SetHTTPClient added in v0.64.0

SetHTTPClient adds the HTTPClient to the s s o management service create s s o configuration params

func (*SSOManagementServiceCreateSSOConfigurationParams) SetOrganizationID added in v0.64.0

func (o *SSOManagementServiceCreateSSOConfigurationParams) SetOrganizationID(organizationID string)

SetOrganizationID adds the organizationId to the s s o management service create s s o configuration params

func (*SSOManagementServiceCreateSSOConfigurationParams) SetTimeout added in v0.64.0

SetTimeout adds the timeout to the s s o management service create s s o configuration params

func (*SSOManagementServiceCreateSSOConfigurationParams) WithBody added in v0.64.0

WithBody adds the body to the s s o management service create s s o configuration params

func (*SSOManagementServiceCreateSSOConfigurationParams) WithContext added in v0.64.0

WithContext adds the context to the s s o management service create s s o configuration params

func (*SSOManagementServiceCreateSSOConfigurationParams) WithDefaults added in v0.64.0

WithDefaults hydrates default values in the s s o management service create s s o configuration params (not the query body).

All values with no default are reset to their zero value.

func (*SSOManagementServiceCreateSSOConfigurationParams) WithHTTPClient added in v0.64.0

WithHTTPClient adds the HTTPClient to the s s o management service create s s o configuration params

func (*SSOManagementServiceCreateSSOConfigurationParams) WithOrganizationID added in v0.64.0

WithOrganizationID adds the organizationID to the s s o management service create s s o configuration params

func (*SSOManagementServiceCreateSSOConfigurationParams) WithTimeout added in v0.64.0

WithTimeout adds the timeout to the s s o management service create s s o configuration params

func (*SSOManagementServiceCreateSSOConfigurationParams) WriteToRequest added in v0.64.0

WriteToRequest writes these params to a swagger request

type SSOManagementServiceCreateSSOConfigurationReader added in v0.64.0

type SSOManagementServiceCreateSSOConfigurationReader struct {
	// contains filtered or unexported fields
}

SSOManagementServiceCreateSSOConfigurationReader is a Reader for the SSOManagementServiceCreateSSOConfiguration structure.

func (*SSOManagementServiceCreateSSOConfigurationReader) ReadResponse added in v0.64.0

func (o *SSOManagementServiceCreateSSOConfigurationReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type SSOManagementServiceDeleteSSOConfigurationDefault added in v0.64.0

type SSOManagementServiceDeleteSSOConfigurationDefault struct {
	Payload *cloud.GoogleRPCStatus
	// contains filtered or unexported fields
}

SSOManagementServiceDeleteSSOConfigurationDefault describes a response with status code -1, with default header values.

An unexpected error response.

func NewSSOManagementServiceDeleteSSOConfigurationDefault added in v0.64.0

func NewSSOManagementServiceDeleteSSOConfigurationDefault(code int) *SSOManagementServiceDeleteSSOConfigurationDefault

NewSSOManagementServiceDeleteSSOConfigurationDefault creates a SSOManagementServiceDeleteSSOConfigurationDefault with default headers values

func (*SSOManagementServiceDeleteSSOConfigurationDefault) Code added in v0.64.0

Code gets the status code for the s s o management service delete s s o configuration default response

func (*SSOManagementServiceDeleteSSOConfigurationDefault) Error added in v0.64.0

func (*SSOManagementServiceDeleteSSOConfigurationDefault) GetPayload added in v0.64.0

func (*SSOManagementServiceDeleteSSOConfigurationDefault) IsClientError added in v0.64.0

IsClientError returns true when this s s o management service delete s s o configuration default response has a 4xx status code

func (*SSOManagementServiceDeleteSSOConfigurationDefault) IsCode added in v0.64.0

IsCode returns true when this s s o management service delete s s o configuration default response a status code equal to that given

func (*SSOManagementServiceDeleteSSOConfigurationDefault) IsRedirect added in v0.64.0

IsRedirect returns true when this s s o management service delete s s o configuration default response has a 3xx status code

func (*SSOManagementServiceDeleteSSOConfigurationDefault) IsServerError added in v0.64.0

IsServerError returns true when this s s o management service delete s s o configuration default response has a 5xx status code

func (*SSOManagementServiceDeleteSSOConfigurationDefault) IsSuccess added in v0.64.0

IsSuccess returns true when this s s o management service delete s s o configuration default response has a 2xx status code

func (*SSOManagementServiceDeleteSSOConfigurationDefault) String added in v0.64.0

type SSOManagementServiceDeleteSSOConfigurationOK added in v0.64.0

type SSOManagementServiceDeleteSSOConfigurationOK struct {
	Payload models.HashicorpCloudIamDeleteSSOConfigurationResponse
}

SSOManagementServiceDeleteSSOConfigurationOK describes a response with status code 200, with default header values.

A successful response.

func NewSSOManagementServiceDeleteSSOConfigurationOK added in v0.64.0

func NewSSOManagementServiceDeleteSSOConfigurationOK() *SSOManagementServiceDeleteSSOConfigurationOK

NewSSOManagementServiceDeleteSSOConfigurationOK creates a SSOManagementServiceDeleteSSOConfigurationOK with default headers values

func (*SSOManagementServiceDeleteSSOConfigurationOK) Code added in v0.68.0

Code gets the status code for the s s o management service delete s s o configuration o k response

func (*SSOManagementServiceDeleteSSOConfigurationOK) Error added in v0.64.0

func (*SSOManagementServiceDeleteSSOConfigurationOK) GetPayload added in v0.64.0

func (*SSOManagementServiceDeleteSSOConfigurationOK) IsClientError added in v0.64.0

IsClientError returns true when this s s o management service delete s s o configuration o k response has a 4xx status code

func (*SSOManagementServiceDeleteSSOConfigurationOK) IsCode added in v0.64.0

IsCode returns true when this s s o management service delete s s o configuration o k response a status code equal to that given

func (*SSOManagementServiceDeleteSSOConfigurationOK) IsRedirect added in v0.64.0

IsRedirect returns true when this s s o management service delete s s o configuration o k response has a 3xx status code

func (*SSOManagementServiceDeleteSSOConfigurationOK) IsServerError added in v0.64.0

IsServerError returns true when this s s o management service delete s s o configuration o k response has a 5xx status code

func (*SSOManagementServiceDeleteSSOConfigurationOK) IsSuccess added in v0.64.0

IsSuccess returns true when this s s o management service delete s s o configuration o k response has a 2xx status code

func (*SSOManagementServiceDeleteSSOConfigurationOK) String added in v0.64.0

type SSOManagementServiceDeleteSSOConfigurationParams added in v0.64.0

type SSOManagementServiceDeleteSSOConfigurationParams struct {

	/* OrganizationID.

	   OrganizationId is the identifier of the organization.
	*/
	OrganizationID string

	/* Type.

	   Type is the type of Single Sign-On.
	*/
	Type string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

SSOManagementServiceDeleteSSOConfigurationParams contains all the parameters to send to the API endpoint

for the s s o management service delete s s o configuration operation.

Typically these are written to a http.Request.

func NewSSOManagementServiceDeleteSSOConfigurationParams added in v0.64.0

func NewSSOManagementServiceDeleteSSOConfigurationParams() *SSOManagementServiceDeleteSSOConfigurationParams

NewSSOManagementServiceDeleteSSOConfigurationParams creates a new SSOManagementServiceDeleteSSOConfigurationParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewSSOManagementServiceDeleteSSOConfigurationParamsWithContext added in v0.64.0

func NewSSOManagementServiceDeleteSSOConfigurationParamsWithContext(ctx context.Context) *SSOManagementServiceDeleteSSOConfigurationParams

NewSSOManagementServiceDeleteSSOConfigurationParamsWithContext creates a new SSOManagementServiceDeleteSSOConfigurationParams object with the ability to set a context for a request.

func NewSSOManagementServiceDeleteSSOConfigurationParamsWithHTTPClient added in v0.64.0

func NewSSOManagementServiceDeleteSSOConfigurationParamsWithHTTPClient(client *http.Client) *SSOManagementServiceDeleteSSOConfigurationParams

NewSSOManagementServiceDeleteSSOConfigurationParamsWithHTTPClient creates a new SSOManagementServiceDeleteSSOConfigurationParams object with the ability to set a custom HTTPClient for a request.

func NewSSOManagementServiceDeleteSSOConfigurationParamsWithTimeout added in v0.64.0

func NewSSOManagementServiceDeleteSSOConfigurationParamsWithTimeout(timeout time.Duration) *SSOManagementServiceDeleteSSOConfigurationParams

NewSSOManagementServiceDeleteSSOConfigurationParamsWithTimeout creates a new SSOManagementServiceDeleteSSOConfigurationParams object with the ability to set a timeout on a request.

func (*SSOManagementServiceDeleteSSOConfigurationParams) SetContext added in v0.64.0

SetContext adds the context to the s s o management service delete s s o configuration params

func (*SSOManagementServiceDeleteSSOConfigurationParams) SetDefaults added in v0.64.0

SetDefaults hydrates default values in the s s o management service delete s s o configuration params (not the query body).

All values with no default are reset to their zero value.

func (*SSOManagementServiceDeleteSSOConfigurationParams) SetHTTPClient added in v0.64.0

SetHTTPClient adds the HTTPClient to the s s o management service delete s s o configuration params

func (*SSOManagementServiceDeleteSSOConfigurationParams) SetOrganizationID added in v0.64.0

func (o *SSOManagementServiceDeleteSSOConfigurationParams) SetOrganizationID(organizationID string)

SetOrganizationID adds the organizationId to the s s o management service delete s s o configuration params

func (*SSOManagementServiceDeleteSSOConfigurationParams) SetTimeout added in v0.64.0

SetTimeout adds the timeout to the s s o management service delete s s o configuration params

func (*SSOManagementServiceDeleteSSOConfigurationParams) SetType added in v0.64.0

SetType adds the type to the s s o management service delete s s o configuration params

func (*SSOManagementServiceDeleteSSOConfigurationParams) WithContext added in v0.64.0

WithContext adds the context to the s s o management service delete s s o configuration params

func (*SSOManagementServiceDeleteSSOConfigurationParams) WithDefaults added in v0.64.0

WithDefaults hydrates default values in the s s o management service delete s s o configuration params (not the query body).

All values with no default are reset to their zero value.

func (*SSOManagementServiceDeleteSSOConfigurationParams) WithHTTPClient added in v0.64.0

WithHTTPClient adds the HTTPClient to the s s o management service delete s s o configuration params

func (*SSOManagementServiceDeleteSSOConfigurationParams) WithOrganizationID added in v0.64.0

WithOrganizationID adds the organizationID to the s s o management service delete s s o configuration params

func (*SSOManagementServiceDeleteSSOConfigurationParams) WithTimeout added in v0.64.0

WithTimeout adds the timeout to the s s o management service delete s s o configuration params

func (*SSOManagementServiceDeleteSSOConfigurationParams) WithType added in v0.64.0

WithType adds the typeVar to the s s o management service delete s s o configuration params

func (*SSOManagementServiceDeleteSSOConfigurationParams) WriteToRequest added in v0.64.0

WriteToRequest writes these params to a swagger request

type SSOManagementServiceDeleteSSOConfigurationReader added in v0.64.0

type SSOManagementServiceDeleteSSOConfigurationReader struct {
	// contains filtered or unexported fields
}

SSOManagementServiceDeleteSSOConfigurationReader is a Reader for the SSOManagementServiceDeleteSSOConfiguration structure.

func (*SSOManagementServiceDeleteSSOConfigurationReader) ReadResponse added in v0.64.0

func (o *SSOManagementServiceDeleteSSOConfigurationReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type SSOManagementServiceGetPreconfigurationDataDefault added in v0.64.0

type SSOManagementServiceGetPreconfigurationDataDefault struct {
	Payload *cloud.GoogleRPCStatus
	// contains filtered or unexported fields
}

SSOManagementServiceGetPreconfigurationDataDefault describes a response with status code -1, with default header values.

An unexpected error response.

func NewSSOManagementServiceGetPreconfigurationDataDefault added in v0.64.0

func NewSSOManagementServiceGetPreconfigurationDataDefault(code int) *SSOManagementServiceGetPreconfigurationDataDefault

NewSSOManagementServiceGetPreconfigurationDataDefault creates a SSOManagementServiceGetPreconfigurationDataDefault with default headers values

func (*SSOManagementServiceGetPreconfigurationDataDefault) Code added in v0.64.0

Code gets the status code for the s s o management service get preconfiguration data default response

func (*SSOManagementServiceGetPreconfigurationDataDefault) Error added in v0.64.0

func (*SSOManagementServiceGetPreconfigurationDataDefault) GetPayload added in v0.64.0

func (*SSOManagementServiceGetPreconfigurationDataDefault) IsClientError added in v0.64.0

IsClientError returns true when this s s o management service get preconfiguration data default response has a 4xx status code

func (*SSOManagementServiceGetPreconfigurationDataDefault) IsCode added in v0.64.0

IsCode returns true when this s s o management service get preconfiguration data default response a status code equal to that given

func (*SSOManagementServiceGetPreconfigurationDataDefault) IsRedirect added in v0.64.0

IsRedirect returns true when this s s o management service get preconfiguration data default response has a 3xx status code

func (*SSOManagementServiceGetPreconfigurationDataDefault) IsServerError added in v0.64.0

IsServerError returns true when this s s o management service get preconfiguration data default response has a 5xx status code

func (*SSOManagementServiceGetPreconfigurationDataDefault) IsSuccess added in v0.64.0

IsSuccess returns true when this s s o management service get preconfiguration data default response has a 2xx status code

func (*SSOManagementServiceGetPreconfigurationDataDefault) String added in v0.64.0

type SSOManagementServiceGetPreconfigurationDataOK added in v0.64.0

type SSOManagementServiceGetPreconfigurationDataOK struct {
	Payload *models.HashicorpCloudIamGetPreconfigurationDataResponse
}

SSOManagementServiceGetPreconfigurationDataOK describes a response with status code 200, with default header values.

A successful response.

func NewSSOManagementServiceGetPreconfigurationDataOK added in v0.64.0

func NewSSOManagementServiceGetPreconfigurationDataOK() *SSOManagementServiceGetPreconfigurationDataOK

NewSSOManagementServiceGetPreconfigurationDataOK creates a SSOManagementServiceGetPreconfigurationDataOK with default headers values

func (*SSOManagementServiceGetPreconfigurationDataOK) Code added in v0.68.0

Code gets the status code for the s s o management service get preconfiguration data o k response

func (*SSOManagementServiceGetPreconfigurationDataOK) Error added in v0.64.0

func (*SSOManagementServiceGetPreconfigurationDataOK) GetPayload added in v0.64.0

func (*SSOManagementServiceGetPreconfigurationDataOK) IsClientError added in v0.64.0

IsClientError returns true when this s s o management service get preconfiguration data o k response has a 4xx status code

func (*SSOManagementServiceGetPreconfigurationDataOK) IsCode added in v0.64.0

IsCode returns true when this s s o management service get preconfiguration data o k response a status code equal to that given

func (*SSOManagementServiceGetPreconfigurationDataOK) IsRedirect added in v0.64.0

IsRedirect returns true when this s s o management service get preconfiguration data o k response has a 3xx status code

func (*SSOManagementServiceGetPreconfigurationDataOK) IsServerError added in v0.64.0

IsServerError returns true when this s s o management service get preconfiguration data o k response has a 5xx status code

func (*SSOManagementServiceGetPreconfigurationDataOK) IsSuccess added in v0.64.0

IsSuccess returns true when this s s o management service get preconfiguration data o k response has a 2xx status code

func (*SSOManagementServiceGetPreconfigurationDataOK) String added in v0.64.0

type SSOManagementServiceGetPreconfigurationDataParams added in v0.64.0

type SSOManagementServiceGetPreconfigurationDataParams struct {

	/* OrganizationID.

	     organization_id is the ID of the organization for which the
	preconfiguration data is required.
	*/
	OrganizationID string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

SSOManagementServiceGetPreconfigurationDataParams contains all the parameters to send to the API endpoint

for the s s o management service get preconfiguration data operation.

Typically these are written to a http.Request.

func NewSSOManagementServiceGetPreconfigurationDataParams added in v0.64.0

func NewSSOManagementServiceGetPreconfigurationDataParams() *SSOManagementServiceGetPreconfigurationDataParams

NewSSOManagementServiceGetPreconfigurationDataParams creates a new SSOManagementServiceGetPreconfigurationDataParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewSSOManagementServiceGetPreconfigurationDataParamsWithContext added in v0.64.0

func NewSSOManagementServiceGetPreconfigurationDataParamsWithContext(ctx context.Context) *SSOManagementServiceGetPreconfigurationDataParams

NewSSOManagementServiceGetPreconfigurationDataParamsWithContext creates a new SSOManagementServiceGetPreconfigurationDataParams object with the ability to set a context for a request.

func NewSSOManagementServiceGetPreconfigurationDataParamsWithHTTPClient added in v0.64.0

func NewSSOManagementServiceGetPreconfigurationDataParamsWithHTTPClient(client *http.Client) *SSOManagementServiceGetPreconfigurationDataParams

NewSSOManagementServiceGetPreconfigurationDataParamsWithHTTPClient creates a new SSOManagementServiceGetPreconfigurationDataParams object with the ability to set a custom HTTPClient for a request.

func NewSSOManagementServiceGetPreconfigurationDataParamsWithTimeout added in v0.64.0

func NewSSOManagementServiceGetPreconfigurationDataParamsWithTimeout(timeout time.Duration) *SSOManagementServiceGetPreconfigurationDataParams

NewSSOManagementServiceGetPreconfigurationDataParamsWithTimeout creates a new SSOManagementServiceGetPreconfigurationDataParams object with the ability to set a timeout on a request.

func (*SSOManagementServiceGetPreconfigurationDataParams) SetContext added in v0.64.0

SetContext adds the context to the s s o management service get preconfiguration data params

func (*SSOManagementServiceGetPreconfigurationDataParams) SetDefaults added in v0.64.0

SetDefaults hydrates default values in the s s o management service get preconfiguration data params (not the query body).

All values with no default are reset to their zero value.

func (*SSOManagementServiceGetPreconfigurationDataParams) SetHTTPClient added in v0.64.0

SetHTTPClient adds the HTTPClient to the s s o management service get preconfiguration data params

func (*SSOManagementServiceGetPreconfigurationDataParams) SetOrganizationID added in v0.64.0

func (o *SSOManagementServiceGetPreconfigurationDataParams) SetOrganizationID(organizationID string)

SetOrganizationID adds the organizationId to the s s o management service get preconfiguration data params

func (*SSOManagementServiceGetPreconfigurationDataParams) SetTimeout added in v0.64.0

SetTimeout adds the timeout to the s s o management service get preconfiguration data params

func (*SSOManagementServiceGetPreconfigurationDataParams) WithContext added in v0.64.0

WithContext adds the context to the s s o management service get preconfiguration data params

func (*SSOManagementServiceGetPreconfigurationDataParams) WithDefaults added in v0.64.0

WithDefaults hydrates default values in the s s o management service get preconfiguration data params (not the query body).

All values with no default are reset to their zero value.

func (*SSOManagementServiceGetPreconfigurationDataParams) WithHTTPClient added in v0.64.0

WithHTTPClient adds the HTTPClient to the s s o management service get preconfiguration data params

func (*SSOManagementServiceGetPreconfigurationDataParams) WithOrganizationID added in v0.64.0

WithOrganizationID adds the organizationID to the s s o management service get preconfiguration data params

func (*SSOManagementServiceGetPreconfigurationDataParams) WithTimeout added in v0.64.0

WithTimeout adds the timeout to the s s o management service get preconfiguration data params

func (*SSOManagementServiceGetPreconfigurationDataParams) WriteToRequest added in v0.64.0

WriteToRequest writes these params to a swagger request

type SSOManagementServiceGetPreconfigurationDataReader added in v0.64.0

type SSOManagementServiceGetPreconfigurationDataReader struct {
	// contains filtered or unexported fields
}

SSOManagementServiceGetPreconfigurationDataReader is a Reader for the SSOManagementServiceGetPreconfigurationData structure.

func (*SSOManagementServiceGetPreconfigurationDataReader) ReadResponse added in v0.64.0

func (o *SSOManagementServiceGetPreconfigurationDataReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type SSOManagementServiceGetSSOConfigurationDefault added in v0.64.0

type SSOManagementServiceGetSSOConfigurationDefault struct {
	Payload *cloud.GoogleRPCStatus
	// contains filtered or unexported fields
}

SSOManagementServiceGetSSOConfigurationDefault describes a response with status code -1, with default header values.

An unexpected error response.

func NewSSOManagementServiceGetSSOConfigurationDefault added in v0.64.0

func NewSSOManagementServiceGetSSOConfigurationDefault(code int) *SSOManagementServiceGetSSOConfigurationDefault

NewSSOManagementServiceGetSSOConfigurationDefault creates a SSOManagementServiceGetSSOConfigurationDefault with default headers values

func (*SSOManagementServiceGetSSOConfigurationDefault) Code added in v0.64.0

Code gets the status code for the s s o management service get s s o configuration default response

func (*SSOManagementServiceGetSSOConfigurationDefault) Error added in v0.64.0

func (*SSOManagementServiceGetSSOConfigurationDefault) GetPayload added in v0.64.0

func (*SSOManagementServiceGetSSOConfigurationDefault) IsClientError added in v0.64.0

IsClientError returns true when this s s o management service get s s o configuration default response has a 4xx status code

func (*SSOManagementServiceGetSSOConfigurationDefault) IsCode added in v0.64.0

IsCode returns true when this s s o management service get s s o configuration default response a status code equal to that given

func (*SSOManagementServiceGetSSOConfigurationDefault) IsRedirect added in v0.64.0

IsRedirect returns true when this s s o management service get s s o configuration default response has a 3xx status code

func (*SSOManagementServiceGetSSOConfigurationDefault) IsServerError added in v0.64.0

IsServerError returns true when this s s o management service get s s o configuration default response has a 5xx status code

func (*SSOManagementServiceGetSSOConfigurationDefault) IsSuccess added in v0.64.0

IsSuccess returns true when this s s o management service get s s o configuration default response has a 2xx status code

func (*SSOManagementServiceGetSSOConfigurationDefault) String added in v0.64.0

type SSOManagementServiceGetSSOConfigurationOK added in v0.64.0

type SSOManagementServiceGetSSOConfigurationOK struct {
	Payload *models.HashicorpCloudIamGetSSOConfigurationResponse
}

SSOManagementServiceGetSSOConfigurationOK describes a response with status code 200, with default header values.

A successful response.

func NewSSOManagementServiceGetSSOConfigurationOK added in v0.64.0

func NewSSOManagementServiceGetSSOConfigurationOK() *SSOManagementServiceGetSSOConfigurationOK

NewSSOManagementServiceGetSSOConfigurationOK creates a SSOManagementServiceGetSSOConfigurationOK with default headers values

func (*SSOManagementServiceGetSSOConfigurationOK) Code added in v0.68.0

Code gets the status code for the s s o management service get s s o configuration o k response

func (*SSOManagementServiceGetSSOConfigurationOK) Error added in v0.64.0

func (*SSOManagementServiceGetSSOConfigurationOK) GetPayload added in v0.64.0

func (*SSOManagementServiceGetSSOConfigurationOK) IsClientError added in v0.64.0

IsClientError returns true when this s s o management service get s s o configuration o k response has a 4xx status code

func (*SSOManagementServiceGetSSOConfigurationOK) IsCode added in v0.64.0

IsCode returns true when this s s o management service get s s o configuration o k response a status code equal to that given

func (*SSOManagementServiceGetSSOConfigurationOK) IsRedirect added in v0.64.0

IsRedirect returns true when this s s o management service get s s o configuration o k response has a 3xx status code

func (*SSOManagementServiceGetSSOConfigurationOK) IsServerError added in v0.64.0

IsServerError returns true when this s s o management service get s s o configuration o k response has a 5xx status code

func (*SSOManagementServiceGetSSOConfigurationOK) IsSuccess added in v0.64.0

IsSuccess returns true when this s s o management service get s s o configuration o k response has a 2xx status code

func (*SSOManagementServiceGetSSOConfigurationOK) String added in v0.64.0

type SSOManagementServiceGetSSOConfigurationParams added in v0.64.0

type SSOManagementServiceGetSSOConfigurationParams struct {

	/* OrganizationID.

	   OrganizationId is the identifier of the organization.
	*/
	OrganizationID string

	/* Type.

	   Type is the type of Single Sign-On.
	*/
	Type string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

SSOManagementServiceGetSSOConfigurationParams contains all the parameters to send to the API endpoint

for the s s o management service get s s o configuration operation.

Typically these are written to a http.Request.

func NewSSOManagementServiceGetSSOConfigurationParams added in v0.64.0

func NewSSOManagementServiceGetSSOConfigurationParams() *SSOManagementServiceGetSSOConfigurationParams

NewSSOManagementServiceGetSSOConfigurationParams creates a new SSOManagementServiceGetSSOConfigurationParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewSSOManagementServiceGetSSOConfigurationParamsWithContext added in v0.64.0

func NewSSOManagementServiceGetSSOConfigurationParamsWithContext(ctx context.Context) *SSOManagementServiceGetSSOConfigurationParams

NewSSOManagementServiceGetSSOConfigurationParamsWithContext creates a new SSOManagementServiceGetSSOConfigurationParams object with the ability to set a context for a request.

func NewSSOManagementServiceGetSSOConfigurationParamsWithHTTPClient added in v0.64.0

func NewSSOManagementServiceGetSSOConfigurationParamsWithHTTPClient(client *http.Client) *SSOManagementServiceGetSSOConfigurationParams

NewSSOManagementServiceGetSSOConfigurationParamsWithHTTPClient creates a new SSOManagementServiceGetSSOConfigurationParams object with the ability to set a custom HTTPClient for a request.

func NewSSOManagementServiceGetSSOConfigurationParamsWithTimeout added in v0.64.0

func NewSSOManagementServiceGetSSOConfigurationParamsWithTimeout(timeout time.Duration) *SSOManagementServiceGetSSOConfigurationParams

NewSSOManagementServiceGetSSOConfigurationParamsWithTimeout creates a new SSOManagementServiceGetSSOConfigurationParams object with the ability to set a timeout on a request.

func (*SSOManagementServiceGetSSOConfigurationParams) SetContext added in v0.64.0

SetContext adds the context to the s s o management service get s s o configuration params

func (*SSOManagementServiceGetSSOConfigurationParams) SetDefaults added in v0.64.0

SetDefaults hydrates default values in the s s o management service get s s o configuration params (not the query body).

All values with no default are reset to their zero value.

func (*SSOManagementServiceGetSSOConfigurationParams) SetHTTPClient added in v0.64.0

func (o *SSOManagementServiceGetSSOConfigurationParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the s s o management service get s s o configuration params

func (*SSOManagementServiceGetSSOConfigurationParams) SetOrganizationID added in v0.64.0

func (o *SSOManagementServiceGetSSOConfigurationParams) SetOrganizationID(organizationID string)

SetOrganizationID adds the organizationId to the s s o management service get s s o configuration params

func (*SSOManagementServiceGetSSOConfigurationParams) SetTimeout added in v0.64.0

SetTimeout adds the timeout to the s s o management service get s s o configuration params

func (*SSOManagementServiceGetSSOConfigurationParams) SetType added in v0.64.0

SetType adds the type to the s s o management service get s s o configuration params

func (*SSOManagementServiceGetSSOConfigurationParams) WithContext added in v0.64.0

WithContext adds the context to the s s o management service get s s o configuration params

func (*SSOManagementServiceGetSSOConfigurationParams) WithDefaults added in v0.64.0

WithDefaults hydrates default values in the s s o management service get s s o configuration params (not the query body).

All values with no default are reset to their zero value.

func (*SSOManagementServiceGetSSOConfigurationParams) WithHTTPClient added in v0.64.0

WithHTTPClient adds the HTTPClient to the s s o management service get s s o configuration params

func (*SSOManagementServiceGetSSOConfigurationParams) WithOrganizationID added in v0.64.0

WithOrganizationID adds the organizationID to the s s o management service get s s o configuration params

func (*SSOManagementServiceGetSSOConfigurationParams) WithTimeout added in v0.64.0

WithTimeout adds the timeout to the s s o management service get s s o configuration params

func (*SSOManagementServiceGetSSOConfigurationParams) WithType added in v0.64.0

WithType adds the typeVar to the s s o management service get s s o configuration params

func (*SSOManagementServiceGetSSOConfigurationParams) WriteToRequest added in v0.64.0

WriteToRequest writes these params to a swagger request

type SSOManagementServiceGetSSOConfigurationReader added in v0.64.0

type SSOManagementServiceGetSSOConfigurationReader struct {
	// contains filtered or unexported fields
}

SSOManagementServiceGetSSOConfigurationReader is a Reader for the SSOManagementServiceGetSSOConfiguration structure.

func (*SSOManagementServiceGetSSOConfigurationReader) ReadResponse added in v0.64.0

func (o *SSOManagementServiceGetSSOConfigurationReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type SSOManagementServiceGetSSOTypeDefault added in v0.64.0

type SSOManagementServiceGetSSOTypeDefault struct {
	Payload *cloud.GoogleRPCStatus
	// contains filtered or unexported fields
}

SSOManagementServiceGetSSOTypeDefault describes a response with status code -1, with default header values.

An unexpected error response.

func NewSSOManagementServiceGetSSOTypeDefault added in v0.64.0

func NewSSOManagementServiceGetSSOTypeDefault(code int) *SSOManagementServiceGetSSOTypeDefault

NewSSOManagementServiceGetSSOTypeDefault creates a SSOManagementServiceGetSSOTypeDefault with default headers values

func (*SSOManagementServiceGetSSOTypeDefault) Code added in v0.64.0

Code gets the status code for the s s o management service get s s o type default response

func (*SSOManagementServiceGetSSOTypeDefault) Error added in v0.64.0

func (*SSOManagementServiceGetSSOTypeDefault) GetPayload added in v0.64.0

func (*SSOManagementServiceGetSSOTypeDefault) IsClientError added in v0.64.0

func (o *SSOManagementServiceGetSSOTypeDefault) IsClientError() bool

IsClientError returns true when this s s o management service get s s o type default response has a 4xx status code

func (*SSOManagementServiceGetSSOTypeDefault) IsCode added in v0.64.0

IsCode returns true when this s s o management service get s s o type default response a status code equal to that given

func (*SSOManagementServiceGetSSOTypeDefault) IsRedirect added in v0.64.0

IsRedirect returns true when this s s o management service get s s o type default response has a 3xx status code

func (*SSOManagementServiceGetSSOTypeDefault) IsServerError added in v0.64.0

func (o *SSOManagementServiceGetSSOTypeDefault) IsServerError() bool

IsServerError returns true when this s s o management service get s s o type default response has a 5xx status code

func (*SSOManagementServiceGetSSOTypeDefault) IsSuccess added in v0.64.0

IsSuccess returns true when this s s o management service get s s o type default response has a 2xx status code

func (*SSOManagementServiceGetSSOTypeDefault) String added in v0.64.0

type SSOManagementServiceGetSSOTypeOK added in v0.64.0

type SSOManagementServiceGetSSOTypeOK struct {
	Payload *models.HashicorpCloudIamGetSSOTypeResponse
}

SSOManagementServiceGetSSOTypeOK describes a response with status code 200, with default header values.

A successful response.

func NewSSOManagementServiceGetSSOTypeOK added in v0.64.0

func NewSSOManagementServiceGetSSOTypeOK() *SSOManagementServiceGetSSOTypeOK

NewSSOManagementServiceGetSSOTypeOK creates a SSOManagementServiceGetSSOTypeOK with default headers values

func (*SSOManagementServiceGetSSOTypeOK) Code added in v0.68.0

Code gets the status code for the s s o management service get s s o type o k response

func (*SSOManagementServiceGetSSOTypeOK) Error added in v0.64.0

func (*SSOManagementServiceGetSSOTypeOK) GetPayload added in v0.64.0

func (*SSOManagementServiceGetSSOTypeOK) IsClientError added in v0.64.0

func (o *SSOManagementServiceGetSSOTypeOK) IsClientError() bool

IsClientError returns true when this s s o management service get s s o type o k response has a 4xx status code

func (*SSOManagementServiceGetSSOTypeOK) IsCode added in v0.64.0

func (o *SSOManagementServiceGetSSOTypeOK) IsCode(code int) bool

IsCode returns true when this s s o management service get s s o type o k response a status code equal to that given

func (*SSOManagementServiceGetSSOTypeOK) IsRedirect added in v0.64.0

func (o *SSOManagementServiceGetSSOTypeOK) IsRedirect() bool

IsRedirect returns true when this s s o management service get s s o type o k response has a 3xx status code

func (*SSOManagementServiceGetSSOTypeOK) IsServerError added in v0.64.0

func (o *SSOManagementServiceGetSSOTypeOK) IsServerError() bool

IsServerError returns true when this s s o management service get s s o type o k response has a 5xx status code

func (*SSOManagementServiceGetSSOTypeOK) IsSuccess added in v0.64.0

func (o *SSOManagementServiceGetSSOTypeOK) IsSuccess() bool

IsSuccess returns true when this s s o management service get s s o type o k response has a 2xx status code

func (*SSOManagementServiceGetSSOTypeOK) String added in v0.64.0

type SSOManagementServiceGetSSOTypeParams added in v0.64.0

type SSOManagementServiceGetSSOTypeParams struct {

	/* OrganizationID.

	   OrganizationId is the identifier of the organization.
	*/
	OrganizationID string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

SSOManagementServiceGetSSOTypeParams contains all the parameters to send to the API endpoint

for the s s o management service get s s o type operation.

Typically these are written to a http.Request.

func NewSSOManagementServiceGetSSOTypeParams added in v0.64.0

func NewSSOManagementServiceGetSSOTypeParams() *SSOManagementServiceGetSSOTypeParams

NewSSOManagementServiceGetSSOTypeParams creates a new SSOManagementServiceGetSSOTypeParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewSSOManagementServiceGetSSOTypeParamsWithContext added in v0.64.0

func NewSSOManagementServiceGetSSOTypeParamsWithContext(ctx context.Context) *SSOManagementServiceGetSSOTypeParams

NewSSOManagementServiceGetSSOTypeParamsWithContext creates a new SSOManagementServiceGetSSOTypeParams object with the ability to set a context for a request.

func NewSSOManagementServiceGetSSOTypeParamsWithHTTPClient added in v0.64.0

func NewSSOManagementServiceGetSSOTypeParamsWithHTTPClient(client *http.Client) *SSOManagementServiceGetSSOTypeParams

NewSSOManagementServiceGetSSOTypeParamsWithHTTPClient creates a new SSOManagementServiceGetSSOTypeParams object with the ability to set a custom HTTPClient for a request.

func NewSSOManagementServiceGetSSOTypeParamsWithTimeout added in v0.64.0

func NewSSOManagementServiceGetSSOTypeParamsWithTimeout(timeout time.Duration) *SSOManagementServiceGetSSOTypeParams

NewSSOManagementServiceGetSSOTypeParamsWithTimeout creates a new SSOManagementServiceGetSSOTypeParams object with the ability to set a timeout on a request.

func (*SSOManagementServiceGetSSOTypeParams) SetContext added in v0.64.0

SetContext adds the context to the s s o management service get s s o type params

func (*SSOManagementServiceGetSSOTypeParams) SetDefaults added in v0.64.0

func (o *SSOManagementServiceGetSSOTypeParams) SetDefaults()

SetDefaults hydrates default values in the s s o management service get s s o type params (not the query body).

All values with no default are reset to their zero value.

func (*SSOManagementServiceGetSSOTypeParams) SetHTTPClient added in v0.64.0

func (o *SSOManagementServiceGetSSOTypeParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the s s o management service get s s o type params

func (*SSOManagementServiceGetSSOTypeParams) SetOrganizationID added in v0.64.0

func (o *SSOManagementServiceGetSSOTypeParams) SetOrganizationID(organizationID string)

SetOrganizationID adds the organizationId to the s s o management service get s s o type params

func (*SSOManagementServiceGetSSOTypeParams) SetTimeout added in v0.64.0

func (o *SSOManagementServiceGetSSOTypeParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the s s o management service get s s o type params

func (*SSOManagementServiceGetSSOTypeParams) WithContext added in v0.64.0

WithContext adds the context to the s s o management service get s s o type params

func (*SSOManagementServiceGetSSOTypeParams) WithDefaults added in v0.64.0

WithDefaults hydrates default values in the s s o management service get s s o type params (not the query body).

All values with no default are reset to their zero value.

func (*SSOManagementServiceGetSSOTypeParams) WithHTTPClient added in v0.64.0

WithHTTPClient adds the HTTPClient to the s s o management service get s s o type params

func (*SSOManagementServiceGetSSOTypeParams) WithOrganizationID added in v0.64.0

WithOrganizationID adds the organizationID to the s s o management service get s s o type params

func (*SSOManagementServiceGetSSOTypeParams) WithTimeout added in v0.64.0

WithTimeout adds the timeout to the s s o management service get s s o type params

func (*SSOManagementServiceGetSSOTypeParams) WriteToRequest added in v0.64.0

WriteToRequest writes these params to a swagger request

type SSOManagementServiceGetSSOTypeReader added in v0.64.0

type SSOManagementServiceGetSSOTypeReader struct {
	// contains filtered or unexported fields
}

SSOManagementServiceGetSSOTypeReader is a Reader for the SSOManagementServiceGetSSOType structure.

func (*SSOManagementServiceGetSSOTypeReader) ReadResponse added in v0.64.0

func (o *SSOManagementServiceGetSSOTypeReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type SSOManagementServiceListSSOConfigurationsDefault added in v0.64.0

type SSOManagementServiceListSSOConfigurationsDefault struct {
	Payload *cloud.GoogleRPCStatus
	// contains filtered or unexported fields
}

SSOManagementServiceListSSOConfigurationsDefault describes a response with status code -1, with default header values.

An unexpected error response.

func NewSSOManagementServiceListSSOConfigurationsDefault added in v0.64.0

func NewSSOManagementServiceListSSOConfigurationsDefault(code int) *SSOManagementServiceListSSOConfigurationsDefault

NewSSOManagementServiceListSSOConfigurationsDefault creates a SSOManagementServiceListSSOConfigurationsDefault with default headers values

func (*SSOManagementServiceListSSOConfigurationsDefault) Code added in v0.64.0

Code gets the status code for the s s o management service list s s o configurations default response

func (*SSOManagementServiceListSSOConfigurationsDefault) Error added in v0.64.0

func (*SSOManagementServiceListSSOConfigurationsDefault) GetPayload added in v0.64.0

func (*SSOManagementServiceListSSOConfigurationsDefault) IsClientError added in v0.64.0

IsClientError returns true when this s s o management service list s s o configurations default response has a 4xx status code

func (*SSOManagementServiceListSSOConfigurationsDefault) IsCode added in v0.64.0

IsCode returns true when this s s o management service list s s o configurations default response a status code equal to that given

func (*SSOManagementServiceListSSOConfigurationsDefault) IsRedirect added in v0.64.0

IsRedirect returns true when this s s o management service list s s o configurations default response has a 3xx status code

func (*SSOManagementServiceListSSOConfigurationsDefault) IsServerError added in v0.64.0

IsServerError returns true when this s s o management service list s s o configurations default response has a 5xx status code

func (*SSOManagementServiceListSSOConfigurationsDefault) IsSuccess added in v0.64.0

IsSuccess returns true when this s s o management service list s s o configurations default response has a 2xx status code

func (*SSOManagementServiceListSSOConfigurationsDefault) String added in v0.64.0

type SSOManagementServiceListSSOConfigurationsOK added in v0.64.0

type SSOManagementServiceListSSOConfigurationsOK struct {
	Payload *models.HashicorpCloudIamListSSOConfigurationsResponse
}

SSOManagementServiceListSSOConfigurationsOK describes a response with status code 200, with default header values.

A successful response.

func NewSSOManagementServiceListSSOConfigurationsOK added in v0.64.0

func NewSSOManagementServiceListSSOConfigurationsOK() *SSOManagementServiceListSSOConfigurationsOK

NewSSOManagementServiceListSSOConfigurationsOK creates a SSOManagementServiceListSSOConfigurationsOK with default headers values

func (*SSOManagementServiceListSSOConfigurationsOK) Code added in v0.68.0

Code gets the status code for the s s o management service list s s o configurations o k response

func (*SSOManagementServiceListSSOConfigurationsOK) Error added in v0.64.0

func (*SSOManagementServiceListSSOConfigurationsOK) GetPayload added in v0.64.0

func (*SSOManagementServiceListSSOConfigurationsOK) IsClientError added in v0.64.0

IsClientError returns true when this s s o management service list s s o configurations o k response has a 4xx status code

func (*SSOManagementServiceListSSOConfigurationsOK) IsCode added in v0.64.0

IsCode returns true when this s s o management service list s s o configurations o k response a status code equal to that given

func (*SSOManagementServiceListSSOConfigurationsOK) IsRedirect added in v0.64.0

IsRedirect returns true when this s s o management service list s s o configurations o k response has a 3xx status code

func (*SSOManagementServiceListSSOConfigurationsOK) IsServerError added in v0.64.0

IsServerError returns true when this s s o management service list s s o configurations o k response has a 5xx status code

func (*SSOManagementServiceListSSOConfigurationsOK) IsSuccess added in v0.64.0

IsSuccess returns true when this s s o management service list s s o configurations o k response has a 2xx status code

func (*SSOManagementServiceListSSOConfigurationsOK) String added in v0.64.0

type SSOManagementServiceListSSOConfigurationsParams added in v0.64.0

type SSOManagementServiceListSSOConfigurationsParams struct {

	/* OrganizationID.

	   OrganizationId is the identifier of the organization.
	*/
	OrganizationID string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

SSOManagementServiceListSSOConfigurationsParams contains all the parameters to send to the API endpoint

for the s s o management service list s s o configurations operation.

Typically these are written to a http.Request.

func NewSSOManagementServiceListSSOConfigurationsParams added in v0.64.0

func NewSSOManagementServiceListSSOConfigurationsParams() *SSOManagementServiceListSSOConfigurationsParams

NewSSOManagementServiceListSSOConfigurationsParams creates a new SSOManagementServiceListSSOConfigurationsParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewSSOManagementServiceListSSOConfigurationsParamsWithContext added in v0.64.0

func NewSSOManagementServiceListSSOConfigurationsParamsWithContext(ctx context.Context) *SSOManagementServiceListSSOConfigurationsParams

NewSSOManagementServiceListSSOConfigurationsParamsWithContext creates a new SSOManagementServiceListSSOConfigurationsParams object with the ability to set a context for a request.

func NewSSOManagementServiceListSSOConfigurationsParamsWithHTTPClient added in v0.64.0

func NewSSOManagementServiceListSSOConfigurationsParamsWithHTTPClient(client *http.Client) *SSOManagementServiceListSSOConfigurationsParams

NewSSOManagementServiceListSSOConfigurationsParamsWithHTTPClient creates a new SSOManagementServiceListSSOConfigurationsParams object with the ability to set a custom HTTPClient for a request.

func NewSSOManagementServiceListSSOConfigurationsParamsWithTimeout added in v0.64.0

func NewSSOManagementServiceListSSOConfigurationsParamsWithTimeout(timeout time.Duration) *SSOManagementServiceListSSOConfigurationsParams

NewSSOManagementServiceListSSOConfigurationsParamsWithTimeout creates a new SSOManagementServiceListSSOConfigurationsParams object with the ability to set a timeout on a request.

func (*SSOManagementServiceListSSOConfigurationsParams) SetContext added in v0.64.0

SetContext adds the context to the s s o management service list s s o configurations params

func (*SSOManagementServiceListSSOConfigurationsParams) SetDefaults added in v0.64.0

SetDefaults hydrates default values in the s s o management service list s s o configurations params (not the query body).

All values with no default are reset to their zero value.

func (*SSOManagementServiceListSSOConfigurationsParams) SetHTTPClient added in v0.64.0

SetHTTPClient adds the HTTPClient to the s s o management service list s s o configurations params

func (*SSOManagementServiceListSSOConfigurationsParams) SetOrganizationID added in v0.64.0

func (o *SSOManagementServiceListSSOConfigurationsParams) SetOrganizationID(organizationID string)

SetOrganizationID adds the organizationId to the s s o management service list s s o configurations params

func (*SSOManagementServiceListSSOConfigurationsParams) SetTimeout added in v0.64.0

SetTimeout adds the timeout to the s s o management service list s s o configurations params

func (*SSOManagementServiceListSSOConfigurationsParams) WithContext added in v0.64.0

WithContext adds the context to the s s o management service list s s o configurations params

func (*SSOManagementServiceListSSOConfigurationsParams) WithDefaults added in v0.64.0

WithDefaults hydrates default values in the s s o management service list s s o configurations params (not the query body).

All values with no default are reset to their zero value.

func (*SSOManagementServiceListSSOConfigurationsParams) WithHTTPClient added in v0.64.0

WithHTTPClient adds the HTTPClient to the s s o management service list s s o configurations params

func (*SSOManagementServiceListSSOConfigurationsParams) WithOrganizationID added in v0.64.0

WithOrganizationID adds the organizationID to the s s o management service list s s o configurations params

func (*SSOManagementServiceListSSOConfigurationsParams) WithTimeout added in v0.64.0

WithTimeout adds the timeout to the s s o management service list s s o configurations params

func (*SSOManagementServiceListSSOConfigurationsParams) WriteToRequest added in v0.64.0

WriteToRequest writes these params to a swagger request

type SSOManagementServiceListSSOConfigurationsReader added in v0.64.0

type SSOManagementServiceListSSOConfigurationsReader struct {
	// contains filtered or unexported fields
}

SSOManagementServiceListSSOConfigurationsReader is a Reader for the SSOManagementServiceListSSOConfigurations structure.

func (*SSOManagementServiceListSSOConfigurationsReader) ReadResponse added in v0.64.0

func (o *SSOManagementServiceListSSOConfigurationsReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type SSOManagementServiceUpdateSSOConfigurationBody added in v0.68.0

type SSOManagementServiceUpdateSSOConfigurationBody struct {

	// SsoConfig has the SSO configuration for this organization.
	Config *models.HashicorpCloudIamSSOConfig `json:"config,omitempty"`
}

SSOManagementServiceUpdateSSOConfigurationBody s s o management service update s s o configuration body swagger:model SSOManagementServiceUpdateSSOConfigurationBody

func (*SSOManagementServiceUpdateSSOConfigurationBody) ContextValidate added in v0.68.0

ContextValidate validate this s s o management service update s s o configuration body based on the context it is used

func (*SSOManagementServiceUpdateSSOConfigurationBody) MarshalBinary added in v0.68.0

MarshalBinary interface implementation

func (*SSOManagementServiceUpdateSSOConfigurationBody) UnmarshalBinary added in v0.68.0

UnmarshalBinary interface implementation

func (*SSOManagementServiceUpdateSSOConfigurationBody) Validate added in v0.68.0

Validate validates this s s o management service update s s o configuration body

type SSOManagementServiceUpdateSSOConfigurationDefault added in v0.64.0

type SSOManagementServiceUpdateSSOConfigurationDefault struct {
	Payload *cloud.GoogleRPCStatus
	// contains filtered or unexported fields
}

SSOManagementServiceUpdateSSOConfigurationDefault describes a response with status code -1, with default header values.

An unexpected error response.

func NewSSOManagementServiceUpdateSSOConfigurationDefault added in v0.64.0

func NewSSOManagementServiceUpdateSSOConfigurationDefault(code int) *SSOManagementServiceUpdateSSOConfigurationDefault

NewSSOManagementServiceUpdateSSOConfigurationDefault creates a SSOManagementServiceUpdateSSOConfigurationDefault with default headers values

func (*SSOManagementServiceUpdateSSOConfigurationDefault) Code added in v0.64.0

Code gets the status code for the s s o management service update s s o configuration default response

func (*SSOManagementServiceUpdateSSOConfigurationDefault) Error added in v0.64.0

func (*SSOManagementServiceUpdateSSOConfigurationDefault) GetPayload added in v0.64.0

func (*SSOManagementServiceUpdateSSOConfigurationDefault) IsClientError added in v0.64.0

IsClientError returns true when this s s o management service update s s o configuration default response has a 4xx status code

func (*SSOManagementServiceUpdateSSOConfigurationDefault) IsCode added in v0.64.0

IsCode returns true when this s s o management service update s s o configuration default response a status code equal to that given

func (*SSOManagementServiceUpdateSSOConfigurationDefault) IsRedirect added in v0.64.0

IsRedirect returns true when this s s o management service update s s o configuration default response has a 3xx status code

func (*SSOManagementServiceUpdateSSOConfigurationDefault) IsServerError added in v0.64.0

IsServerError returns true when this s s o management service update s s o configuration default response has a 5xx status code

func (*SSOManagementServiceUpdateSSOConfigurationDefault) IsSuccess added in v0.64.0

IsSuccess returns true when this s s o management service update s s o configuration default response has a 2xx status code

func (*SSOManagementServiceUpdateSSOConfigurationDefault) String added in v0.64.0

type SSOManagementServiceUpdateSSOConfigurationOK added in v0.64.0

type SSOManagementServiceUpdateSSOConfigurationOK struct {
	Payload models.HashicorpCloudIamUpdateSSOConfigurationResponse
}

SSOManagementServiceUpdateSSOConfigurationOK describes a response with status code 200, with default header values.

A successful response.

func NewSSOManagementServiceUpdateSSOConfigurationOK added in v0.64.0

func NewSSOManagementServiceUpdateSSOConfigurationOK() *SSOManagementServiceUpdateSSOConfigurationOK

NewSSOManagementServiceUpdateSSOConfigurationOK creates a SSOManagementServiceUpdateSSOConfigurationOK with default headers values

func (*SSOManagementServiceUpdateSSOConfigurationOK) Code added in v0.68.0

Code gets the status code for the s s o management service update s s o configuration o k response

func (*SSOManagementServiceUpdateSSOConfigurationOK) Error added in v0.64.0

func (*SSOManagementServiceUpdateSSOConfigurationOK) GetPayload added in v0.64.0

func (*SSOManagementServiceUpdateSSOConfigurationOK) IsClientError added in v0.64.0

IsClientError returns true when this s s o management service update s s o configuration o k response has a 4xx status code

func (*SSOManagementServiceUpdateSSOConfigurationOK) IsCode added in v0.64.0

IsCode returns true when this s s o management service update s s o configuration o k response a status code equal to that given

func (*SSOManagementServiceUpdateSSOConfigurationOK) IsRedirect added in v0.64.0

IsRedirect returns true when this s s o management service update s s o configuration o k response has a 3xx status code

func (*SSOManagementServiceUpdateSSOConfigurationOK) IsServerError added in v0.64.0

IsServerError returns true when this s s o management service update s s o configuration o k response has a 5xx status code

func (*SSOManagementServiceUpdateSSOConfigurationOK) IsSuccess added in v0.64.0

IsSuccess returns true when this s s o management service update s s o configuration o k response has a 2xx status code

func (*SSOManagementServiceUpdateSSOConfigurationOK) String added in v0.64.0

type SSOManagementServiceUpdateSSOConfigurationParams added in v0.64.0

type SSOManagementServiceUpdateSSOConfigurationParams struct {

	// Body.
	Body SSOManagementServiceUpdateSSOConfigurationBody

	/* OrganizationID.

	   OrganizationId is the identifier of the organization.
	*/
	OrganizationID string

	/* Type.

	     type is the type of Single Sign-On we are updating. This is only used for
	the RESTFul Gateway parameter. It must match the type in the config
	field. This is used due to a bug in the grpc-gateway generator that
	erases the field value if a field is used as a parameter. So we need to
	use this one instead of config.type.
	*/
	Type string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

SSOManagementServiceUpdateSSOConfigurationParams contains all the parameters to send to the API endpoint

for the s s o management service update s s o configuration operation.

Typically these are written to a http.Request.

func NewSSOManagementServiceUpdateSSOConfigurationParams added in v0.64.0

func NewSSOManagementServiceUpdateSSOConfigurationParams() *SSOManagementServiceUpdateSSOConfigurationParams

NewSSOManagementServiceUpdateSSOConfigurationParams creates a new SSOManagementServiceUpdateSSOConfigurationParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewSSOManagementServiceUpdateSSOConfigurationParamsWithContext added in v0.64.0

func NewSSOManagementServiceUpdateSSOConfigurationParamsWithContext(ctx context.Context) *SSOManagementServiceUpdateSSOConfigurationParams

NewSSOManagementServiceUpdateSSOConfigurationParamsWithContext creates a new SSOManagementServiceUpdateSSOConfigurationParams object with the ability to set a context for a request.

func NewSSOManagementServiceUpdateSSOConfigurationParamsWithHTTPClient added in v0.64.0

func NewSSOManagementServiceUpdateSSOConfigurationParamsWithHTTPClient(client *http.Client) *SSOManagementServiceUpdateSSOConfigurationParams

NewSSOManagementServiceUpdateSSOConfigurationParamsWithHTTPClient creates a new SSOManagementServiceUpdateSSOConfigurationParams object with the ability to set a custom HTTPClient for a request.

func NewSSOManagementServiceUpdateSSOConfigurationParamsWithTimeout added in v0.64.0

func NewSSOManagementServiceUpdateSSOConfigurationParamsWithTimeout(timeout time.Duration) *SSOManagementServiceUpdateSSOConfigurationParams

NewSSOManagementServiceUpdateSSOConfigurationParamsWithTimeout creates a new SSOManagementServiceUpdateSSOConfigurationParams object with the ability to set a timeout on a request.

func (*SSOManagementServiceUpdateSSOConfigurationParams) SetBody added in v0.64.0

SetBody adds the body to the s s o management service update s s o configuration params

func (*SSOManagementServiceUpdateSSOConfigurationParams) SetContext added in v0.64.0

SetContext adds the context to the s s o management service update s s o configuration params

func (*SSOManagementServiceUpdateSSOConfigurationParams) SetDefaults added in v0.64.0

SetDefaults hydrates default values in the s s o management service update s s o configuration params (not the query body).

All values with no default are reset to their zero value.

func (*SSOManagementServiceUpdateSSOConfigurationParams) SetHTTPClient added in v0.64.0

SetHTTPClient adds the HTTPClient to the s s o management service update s s o configuration params

func (*SSOManagementServiceUpdateSSOConfigurationParams) SetOrganizationID added in v0.64.0

func (o *SSOManagementServiceUpdateSSOConfigurationParams) SetOrganizationID(organizationID string)

SetOrganizationID adds the organizationId to the s s o management service update s s o configuration params

func (*SSOManagementServiceUpdateSSOConfigurationParams) SetTimeout added in v0.64.0

SetTimeout adds the timeout to the s s o management service update s s o configuration params

func (*SSOManagementServiceUpdateSSOConfigurationParams) SetType added in v0.64.0

SetType adds the type to the s s o management service update s s o configuration params

func (*SSOManagementServiceUpdateSSOConfigurationParams) WithBody added in v0.64.0

WithBody adds the body to the s s o management service update s s o configuration params

func (*SSOManagementServiceUpdateSSOConfigurationParams) WithContext added in v0.64.0

WithContext adds the context to the s s o management service update s s o configuration params

func (*SSOManagementServiceUpdateSSOConfigurationParams) WithDefaults added in v0.64.0

WithDefaults hydrates default values in the s s o management service update s s o configuration params (not the query body).

All values with no default are reset to their zero value.

func (*SSOManagementServiceUpdateSSOConfigurationParams) WithHTTPClient added in v0.64.0

WithHTTPClient adds the HTTPClient to the s s o management service update s s o configuration params

func (*SSOManagementServiceUpdateSSOConfigurationParams) WithOrganizationID added in v0.64.0

WithOrganizationID adds the organizationID to the s s o management service update s s o configuration params

func (*SSOManagementServiceUpdateSSOConfigurationParams) WithTimeout added in v0.64.0

WithTimeout adds the timeout to the s s o management service update s s o configuration params

func (*SSOManagementServiceUpdateSSOConfigurationParams) WithType added in v0.64.0

WithType adds the typeVar to the s s o management service update s s o configuration params

func (*SSOManagementServiceUpdateSSOConfigurationParams) WriteToRequest added in v0.64.0

WriteToRequest writes these params to a swagger request

type SSOManagementServiceUpdateSSOConfigurationReader added in v0.64.0

type SSOManagementServiceUpdateSSOConfigurationReader struct {
	// contains filtered or unexported fields
}

SSOManagementServiceUpdateSSOConfigurationReader is a Reader for the SSOManagementServiceUpdateSSOConfiguration structure.

func (*SSOManagementServiceUpdateSSOConfigurationReader) ReadResponse added in v0.64.0

func (o *SSOManagementServiceUpdateSSOConfigurationReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type SSOManagementServiceVerifyDomainOwnershipBody added in v0.68.0

type SSOManagementServiceVerifyDomainOwnershipBody struct {

	// domain is the domain for which ownership will be verified.
	Domain string `json:"domain,omitempty"`
}

SSOManagementServiceVerifyDomainOwnershipBody VerifyDomainOwnershipRequest is the request to verify an organization's // ownership/control of a domain. swagger:model SSOManagementServiceVerifyDomainOwnershipBody

func (*SSOManagementServiceVerifyDomainOwnershipBody) ContextValidate added in v0.68.0

ContextValidate validates this s s o management service verify domain ownership body based on context it is used

func (*SSOManagementServiceVerifyDomainOwnershipBody) MarshalBinary added in v0.68.0

MarshalBinary interface implementation

func (*SSOManagementServiceVerifyDomainOwnershipBody) UnmarshalBinary added in v0.68.0

UnmarshalBinary interface implementation

func (*SSOManagementServiceVerifyDomainOwnershipBody) Validate added in v0.68.0

Validate validates this s s o management service verify domain ownership body

type SSOManagementServiceVerifyDomainOwnershipDefault added in v0.64.0

type SSOManagementServiceVerifyDomainOwnershipDefault struct {
	Payload *cloud.GoogleRPCStatus
	// contains filtered or unexported fields
}

SSOManagementServiceVerifyDomainOwnershipDefault describes a response with status code -1, with default header values.

An unexpected error response.

func NewSSOManagementServiceVerifyDomainOwnershipDefault added in v0.64.0

func NewSSOManagementServiceVerifyDomainOwnershipDefault(code int) *SSOManagementServiceVerifyDomainOwnershipDefault

NewSSOManagementServiceVerifyDomainOwnershipDefault creates a SSOManagementServiceVerifyDomainOwnershipDefault with default headers values

func (*SSOManagementServiceVerifyDomainOwnershipDefault) Code added in v0.64.0

Code gets the status code for the s s o management service verify domain ownership default response

func (*SSOManagementServiceVerifyDomainOwnershipDefault) Error added in v0.64.0

func (*SSOManagementServiceVerifyDomainOwnershipDefault) GetPayload added in v0.64.0

func (*SSOManagementServiceVerifyDomainOwnershipDefault) IsClientError added in v0.64.0

IsClientError returns true when this s s o management service verify domain ownership default response has a 4xx status code

func (*SSOManagementServiceVerifyDomainOwnershipDefault) IsCode added in v0.64.0

IsCode returns true when this s s o management service verify domain ownership default response a status code equal to that given

func (*SSOManagementServiceVerifyDomainOwnershipDefault) IsRedirect added in v0.64.0

IsRedirect returns true when this s s o management service verify domain ownership default response has a 3xx status code

func (*SSOManagementServiceVerifyDomainOwnershipDefault) IsServerError added in v0.64.0

IsServerError returns true when this s s o management service verify domain ownership default response has a 5xx status code

func (*SSOManagementServiceVerifyDomainOwnershipDefault) IsSuccess added in v0.64.0

IsSuccess returns true when this s s o management service verify domain ownership default response has a 2xx status code

func (*SSOManagementServiceVerifyDomainOwnershipDefault) String added in v0.64.0

type SSOManagementServiceVerifyDomainOwnershipOK added in v0.64.0

type SSOManagementServiceVerifyDomainOwnershipOK struct {
	Payload *models.HashicorpCloudIamVerifyDomainOwnershipResponse
}

SSOManagementServiceVerifyDomainOwnershipOK describes a response with status code 200, with default header values.

A successful response.

func NewSSOManagementServiceVerifyDomainOwnershipOK added in v0.64.0

func NewSSOManagementServiceVerifyDomainOwnershipOK() *SSOManagementServiceVerifyDomainOwnershipOK

NewSSOManagementServiceVerifyDomainOwnershipOK creates a SSOManagementServiceVerifyDomainOwnershipOK with default headers values

func (*SSOManagementServiceVerifyDomainOwnershipOK) Code added in v0.68.0

Code gets the status code for the s s o management service verify domain ownership o k response

func (*SSOManagementServiceVerifyDomainOwnershipOK) Error added in v0.64.0

func (*SSOManagementServiceVerifyDomainOwnershipOK) GetPayload added in v0.64.0

func (*SSOManagementServiceVerifyDomainOwnershipOK) IsClientError added in v0.64.0

IsClientError returns true when this s s o management service verify domain ownership o k response has a 4xx status code

func (*SSOManagementServiceVerifyDomainOwnershipOK) IsCode added in v0.64.0

IsCode returns true when this s s o management service verify domain ownership o k response a status code equal to that given

func (*SSOManagementServiceVerifyDomainOwnershipOK) IsRedirect added in v0.64.0

IsRedirect returns true when this s s o management service verify domain ownership o k response has a 3xx status code

func (*SSOManagementServiceVerifyDomainOwnershipOK) IsServerError added in v0.64.0

IsServerError returns true when this s s o management service verify domain ownership o k response has a 5xx status code

func (*SSOManagementServiceVerifyDomainOwnershipOK) IsSuccess added in v0.64.0

IsSuccess returns true when this s s o management service verify domain ownership o k response has a 2xx status code

func (*SSOManagementServiceVerifyDomainOwnershipOK) String added in v0.64.0

type SSOManagementServiceVerifyDomainOwnershipParams added in v0.64.0

type SSOManagementServiceVerifyDomainOwnershipParams struct {

	// Body.
	Body SSOManagementServiceVerifyDomainOwnershipBody

	/* OrganizationID.

	     organization_id is the ID of the organization for which domain ownership
	will be verified.
	*/
	OrganizationID string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

SSOManagementServiceVerifyDomainOwnershipParams contains all the parameters to send to the API endpoint

for the s s o management service verify domain ownership operation.

Typically these are written to a http.Request.

func NewSSOManagementServiceVerifyDomainOwnershipParams added in v0.64.0

func NewSSOManagementServiceVerifyDomainOwnershipParams() *SSOManagementServiceVerifyDomainOwnershipParams

NewSSOManagementServiceVerifyDomainOwnershipParams creates a new SSOManagementServiceVerifyDomainOwnershipParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewSSOManagementServiceVerifyDomainOwnershipParamsWithContext added in v0.64.0

func NewSSOManagementServiceVerifyDomainOwnershipParamsWithContext(ctx context.Context) *SSOManagementServiceVerifyDomainOwnershipParams

NewSSOManagementServiceVerifyDomainOwnershipParamsWithContext creates a new SSOManagementServiceVerifyDomainOwnershipParams object with the ability to set a context for a request.

func NewSSOManagementServiceVerifyDomainOwnershipParamsWithHTTPClient added in v0.64.0

func NewSSOManagementServiceVerifyDomainOwnershipParamsWithHTTPClient(client *http.Client) *SSOManagementServiceVerifyDomainOwnershipParams

NewSSOManagementServiceVerifyDomainOwnershipParamsWithHTTPClient creates a new SSOManagementServiceVerifyDomainOwnershipParams object with the ability to set a custom HTTPClient for a request.

func NewSSOManagementServiceVerifyDomainOwnershipParamsWithTimeout added in v0.64.0

func NewSSOManagementServiceVerifyDomainOwnershipParamsWithTimeout(timeout time.Duration) *SSOManagementServiceVerifyDomainOwnershipParams

NewSSOManagementServiceVerifyDomainOwnershipParamsWithTimeout creates a new SSOManagementServiceVerifyDomainOwnershipParams object with the ability to set a timeout on a request.

func (*SSOManagementServiceVerifyDomainOwnershipParams) SetBody added in v0.64.0

SetBody adds the body to the s s o management service verify domain ownership params

func (*SSOManagementServiceVerifyDomainOwnershipParams) SetContext added in v0.64.0

SetContext adds the context to the s s o management service verify domain ownership params

func (*SSOManagementServiceVerifyDomainOwnershipParams) SetDefaults added in v0.64.0

SetDefaults hydrates default values in the s s o management service verify domain ownership params (not the query body).

All values with no default are reset to their zero value.

func (*SSOManagementServiceVerifyDomainOwnershipParams) SetHTTPClient added in v0.64.0

SetHTTPClient adds the HTTPClient to the s s o management service verify domain ownership params

func (*SSOManagementServiceVerifyDomainOwnershipParams) SetOrganizationID added in v0.64.0

func (o *SSOManagementServiceVerifyDomainOwnershipParams) SetOrganizationID(organizationID string)

SetOrganizationID adds the organizationId to the s s o management service verify domain ownership params

func (*SSOManagementServiceVerifyDomainOwnershipParams) SetTimeout added in v0.64.0

SetTimeout adds the timeout to the s s o management service verify domain ownership params

func (*SSOManagementServiceVerifyDomainOwnershipParams) WithBody added in v0.64.0

WithBody adds the body to the s s o management service verify domain ownership params

func (*SSOManagementServiceVerifyDomainOwnershipParams) WithContext added in v0.64.0

WithContext adds the context to the s s o management service verify domain ownership params

func (*SSOManagementServiceVerifyDomainOwnershipParams) WithDefaults added in v0.64.0

WithDefaults hydrates default values in the s s o management service verify domain ownership params (not the query body).

All values with no default are reset to their zero value.

func (*SSOManagementServiceVerifyDomainOwnershipParams) WithHTTPClient added in v0.64.0

WithHTTPClient adds the HTTPClient to the s s o management service verify domain ownership params

func (*SSOManagementServiceVerifyDomainOwnershipParams) WithOrganizationID added in v0.64.0

WithOrganizationID adds the organizationID to the s s o management service verify domain ownership params

func (*SSOManagementServiceVerifyDomainOwnershipParams) WithTimeout added in v0.64.0

WithTimeout adds the timeout to the s s o management service verify domain ownership params

func (*SSOManagementServiceVerifyDomainOwnershipParams) WriteToRequest added in v0.64.0

WriteToRequest writes these params to a swagger request

type SSOManagementServiceVerifyDomainOwnershipReader added in v0.64.0

type SSOManagementServiceVerifyDomainOwnershipReader struct {
	// contains filtered or unexported fields
}

SSOManagementServiceVerifyDomainOwnershipReader is a Reader for the SSOManagementServiceVerifyDomainOwnership structure.

func (*SSOManagementServiceVerifyDomainOwnershipReader) ReadResponse added in v0.64.0

func (o *SSOManagementServiceVerifyDomainOwnershipReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type SSOManagementServiceVerifySSODomainOwnershipBody added in v0.68.0

type SSOManagementServiceVerifySSODomainOwnershipBody struct {

	// domain is the domain for which ownership will be verified.
	Domain string `json:"domain,omitempty"`
}

SSOManagementServiceVerifySSODomainOwnershipBody VerifyDomainOwnershipRequest is the request to verify an organization's // ownership/control of a domain. swagger:model SSOManagementServiceVerifySSODomainOwnershipBody

func (*SSOManagementServiceVerifySSODomainOwnershipBody) ContextValidate added in v0.68.0

ContextValidate validates this s s o management service verify s s o domain ownership body based on context it is used

func (*SSOManagementServiceVerifySSODomainOwnershipBody) MarshalBinary added in v0.68.0

MarshalBinary interface implementation

func (*SSOManagementServiceVerifySSODomainOwnershipBody) UnmarshalBinary added in v0.68.0

UnmarshalBinary interface implementation

func (*SSOManagementServiceVerifySSODomainOwnershipBody) Validate added in v0.68.0

Validate validates this s s o management service verify s s o domain ownership body

type SSOManagementServiceVerifySSODomainOwnershipDefault added in v0.64.0

type SSOManagementServiceVerifySSODomainOwnershipDefault struct {
	Payload *cloud.GoogleRPCStatus
	// contains filtered or unexported fields
}

SSOManagementServiceVerifySSODomainOwnershipDefault describes a response with status code -1, with default header values.

An unexpected error response.

func NewSSOManagementServiceVerifySSODomainOwnershipDefault added in v0.64.0

func NewSSOManagementServiceVerifySSODomainOwnershipDefault(code int) *SSOManagementServiceVerifySSODomainOwnershipDefault

NewSSOManagementServiceVerifySSODomainOwnershipDefault creates a SSOManagementServiceVerifySSODomainOwnershipDefault with default headers values

func (*SSOManagementServiceVerifySSODomainOwnershipDefault) Code added in v0.64.0

Code gets the status code for the s s o management service verify s s o domain ownership default response

func (*SSOManagementServiceVerifySSODomainOwnershipDefault) Error added in v0.64.0

func (*SSOManagementServiceVerifySSODomainOwnershipDefault) GetPayload added in v0.64.0

func (*SSOManagementServiceVerifySSODomainOwnershipDefault) IsClientError added in v0.64.0

IsClientError returns true when this s s o management service verify s s o domain ownership default response has a 4xx status code

func (*SSOManagementServiceVerifySSODomainOwnershipDefault) IsCode added in v0.64.0

IsCode returns true when this s s o management service verify s s o domain ownership default response a status code equal to that given

func (*SSOManagementServiceVerifySSODomainOwnershipDefault) IsRedirect added in v0.64.0

IsRedirect returns true when this s s o management service verify s s o domain ownership default response has a 3xx status code

func (*SSOManagementServiceVerifySSODomainOwnershipDefault) IsServerError added in v0.64.0

IsServerError returns true when this s s o management service verify s s o domain ownership default response has a 5xx status code

func (*SSOManagementServiceVerifySSODomainOwnershipDefault) IsSuccess added in v0.64.0

IsSuccess returns true when this s s o management service verify s s o domain ownership default response has a 2xx status code

func (*SSOManagementServiceVerifySSODomainOwnershipDefault) String added in v0.64.0

type SSOManagementServiceVerifySSODomainOwnershipOK added in v0.64.0

type SSOManagementServiceVerifySSODomainOwnershipOK struct {
	Payload *models.HashicorpCloudIamVerifyDomainOwnershipResponse
}

SSOManagementServiceVerifySSODomainOwnershipOK describes a response with status code 200, with default header values.

A successful response.

func NewSSOManagementServiceVerifySSODomainOwnershipOK added in v0.64.0

func NewSSOManagementServiceVerifySSODomainOwnershipOK() *SSOManagementServiceVerifySSODomainOwnershipOK

NewSSOManagementServiceVerifySSODomainOwnershipOK creates a SSOManagementServiceVerifySSODomainOwnershipOK with default headers values

func (*SSOManagementServiceVerifySSODomainOwnershipOK) Code added in v0.68.0

Code gets the status code for the s s o management service verify s s o domain ownership o k response

func (*SSOManagementServiceVerifySSODomainOwnershipOK) Error added in v0.64.0

func (*SSOManagementServiceVerifySSODomainOwnershipOK) GetPayload added in v0.64.0

func (*SSOManagementServiceVerifySSODomainOwnershipOK) IsClientError added in v0.64.0

IsClientError returns true when this s s o management service verify s s o domain ownership o k response has a 4xx status code

func (*SSOManagementServiceVerifySSODomainOwnershipOK) IsCode added in v0.64.0

IsCode returns true when this s s o management service verify s s o domain ownership o k response a status code equal to that given

func (*SSOManagementServiceVerifySSODomainOwnershipOK) IsRedirect added in v0.64.0

IsRedirect returns true when this s s o management service verify s s o domain ownership o k response has a 3xx status code

func (*SSOManagementServiceVerifySSODomainOwnershipOK) IsServerError added in v0.64.0

IsServerError returns true when this s s o management service verify s s o domain ownership o k response has a 5xx status code

func (*SSOManagementServiceVerifySSODomainOwnershipOK) IsSuccess added in v0.64.0

IsSuccess returns true when this s s o management service verify s s o domain ownership o k response has a 2xx status code

func (*SSOManagementServiceVerifySSODomainOwnershipOK) String added in v0.64.0

type SSOManagementServiceVerifySSODomainOwnershipParams added in v0.64.0

type SSOManagementServiceVerifySSODomainOwnershipParams struct {

	// Body.
	Body SSOManagementServiceVerifySSODomainOwnershipBody

	/* OrganizationID.

	     organization_id is the ID of the organization for which domain ownership
	will be verified.
	*/
	OrganizationID string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

SSOManagementServiceVerifySSODomainOwnershipParams contains all the parameters to send to the API endpoint

for the s s o management service verify s s o domain ownership operation.

Typically these are written to a http.Request.

func NewSSOManagementServiceVerifySSODomainOwnershipParams added in v0.64.0

func NewSSOManagementServiceVerifySSODomainOwnershipParams() *SSOManagementServiceVerifySSODomainOwnershipParams

NewSSOManagementServiceVerifySSODomainOwnershipParams creates a new SSOManagementServiceVerifySSODomainOwnershipParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewSSOManagementServiceVerifySSODomainOwnershipParamsWithContext added in v0.64.0

func NewSSOManagementServiceVerifySSODomainOwnershipParamsWithContext(ctx context.Context) *SSOManagementServiceVerifySSODomainOwnershipParams

NewSSOManagementServiceVerifySSODomainOwnershipParamsWithContext creates a new SSOManagementServiceVerifySSODomainOwnershipParams object with the ability to set a context for a request.

func NewSSOManagementServiceVerifySSODomainOwnershipParamsWithHTTPClient added in v0.64.0

func NewSSOManagementServiceVerifySSODomainOwnershipParamsWithHTTPClient(client *http.Client) *SSOManagementServiceVerifySSODomainOwnershipParams

NewSSOManagementServiceVerifySSODomainOwnershipParamsWithHTTPClient creates a new SSOManagementServiceVerifySSODomainOwnershipParams object with the ability to set a custom HTTPClient for a request.

func NewSSOManagementServiceVerifySSODomainOwnershipParamsWithTimeout added in v0.64.0

func NewSSOManagementServiceVerifySSODomainOwnershipParamsWithTimeout(timeout time.Duration) *SSOManagementServiceVerifySSODomainOwnershipParams

NewSSOManagementServiceVerifySSODomainOwnershipParamsWithTimeout creates a new SSOManagementServiceVerifySSODomainOwnershipParams object with the ability to set a timeout on a request.

func (*SSOManagementServiceVerifySSODomainOwnershipParams) SetBody added in v0.64.0

SetBody adds the body to the s s o management service verify s s o domain ownership params

func (*SSOManagementServiceVerifySSODomainOwnershipParams) SetContext added in v0.64.0

SetContext adds the context to the s s o management service verify s s o domain ownership params

func (*SSOManagementServiceVerifySSODomainOwnershipParams) SetDefaults added in v0.64.0

SetDefaults hydrates default values in the s s o management service verify s s o domain ownership params (not the query body).

All values with no default are reset to their zero value.

func (*SSOManagementServiceVerifySSODomainOwnershipParams) SetHTTPClient added in v0.64.0

SetHTTPClient adds the HTTPClient to the s s o management service verify s s o domain ownership params

func (*SSOManagementServiceVerifySSODomainOwnershipParams) SetOrganizationID added in v0.64.0

func (o *SSOManagementServiceVerifySSODomainOwnershipParams) SetOrganizationID(organizationID string)

SetOrganizationID adds the organizationId to the s s o management service verify s s o domain ownership params

func (*SSOManagementServiceVerifySSODomainOwnershipParams) SetTimeout added in v0.64.0

SetTimeout adds the timeout to the s s o management service verify s s o domain ownership params

func (*SSOManagementServiceVerifySSODomainOwnershipParams) WithBody added in v0.64.0

WithBody adds the body to the s s o management service verify s s o domain ownership params

func (*SSOManagementServiceVerifySSODomainOwnershipParams) WithContext added in v0.64.0

WithContext adds the context to the s s o management service verify s s o domain ownership params

func (*SSOManagementServiceVerifySSODomainOwnershipParams) WithDefaults added in v0.64.0

WithDefaults hydrates default values in the s s o management service verify s s o domain ownership params (not the query body).

All values with no default are reset to their zero value.

func (*SSOManagementServiceVerifySSODomainOwnershipParams) WithHTTPClient added in v0.64.0

WithHTTPClient adds the HTTPClient to the s s o management service verify s s o domain ownership params

func (*SSOManagementServiceVerifySSODomainOwnershipParams) WithOrganizationID added in v0.64.0

WithOrganizationID adds the organizationID to the s s o management service verify s s o domain ownership params

func (*SSOManagementServiceVerifySSODomainOwnershipParams) WithTimeout added in v0.64.0

WithTimeout adds the timeout to the s s o management service verify s s o domain ownership params

func (*SSOManagementServiceVerifySSODomainOwnershipParams) WriteToRequest added in v0.64.0

WriteToRequest writes these params to a swagger request

type SSOManagementServiceVerifySSODomainOwnershipReader added in v0.64.0

type SSOManagementServiceVerifySSODomainOwnershipReader struct {
	// contains filtered or unexported fields
}

SSOManagementServiceVerifySSODomainOwnershipReader is a Reader for the SSOManagementServiceVerifySSODomainOwnership structure.

func (*SSOManagementServiceVerifySSODomainOwnershipReader) ReadResponse added in v0.64.0

func (o *SSOManagementServiceVerifySSODomainOwnershipReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL