Documentation ¶
Index ¶
- type Client
- func (a *Client) DeploymentOperationsGet(params *DeploymentOperationsGetParams, authInfo runtime.ClientAuthInfoWriter) (*DeploymentOperationsGetOK, error)
- func (a *Client) DeploymentOperationsList(params *DeploymentOperationsListParams, authInfo runtime.ClientAuthInfoWriter) (*DeploymentOperationsListOK, error)
- func (a *Client) SetTransport(transport runtime.ClientTransport)
- type DeploymentOperationsGetOK
- type DeploymentOperationsGetParams
- func NewDeploymentOperationsGetParams() *DeploymentOperationsGetParams
- func NewDeploymentOperationsGetParamsWithContext(ctx context.Context) *DeploymentOperationsGetParams
- func NewDeploymentOperationsGetParamsWithHTTPClient(client *http.Client) *DeploymentOperationsGetParams
- func NewDeploymentOperationsGetParamsWithTimeout(timeout time.Duration) *DeploymentOperationsGetParams
- func (o *DeploymentOperationsGetParams) SetAPIVersion(aPIVersion string)
- func (o *DeploymentOperationsGetParams) SetContext(ctx context.Context)
- func (o *DeploymentOperationsGetParams) SetDeploymentName(deploymentName string)
- func (o *DeploymentOperationsGetParams) SetHTTPClient(client *http.Client)
- func (o *DeploymentOperationsGetParams) SetOperationID(operationID string)
- func (o *DeploymentOperationsGetParams) SetResourceGroupName(resourceGroupName string)
- func (o *DeploymentOperationsGetParams) SetSubscriptionID(subscriptionID string)
- func (o *DeploymentOperationsGetParams) SetTimeout(timeout time.Duration)
- func (o *DeploymentOperationsGetParams) WithAPIVersion(aPIVersion string) *DeploymentOperationsGetParams
- func (o *DeploymentOperationsGetParams) WithContext(ctx context.Context) *DeploymentOperationsGetParams
- func (o *DeploymentOperationsGetParams) WithDeploymentName(deploymentName string) *DeploymentOperationsGetParams
- func (o *DeploymentOperationsGetParams) WithHTTPClient(client *http.Client) *DeploymentOperationsGetParams
- func (o *DeploymentOperationsGetParams) WithOperationID(operationID string) *DeploymentOperationsGetParams
- func (o *DeploymentOperationsGetParams) WithResourceGroupName(resourceGroupName string) *DeploymentOperationsGetParams
- func (o *DeploymentOperationsGetParams) WithSubscriptionID(subscriptionID string) *DeploymentOperationsGetParams
- func (o *DeploymentOperationsGetParams) WithTimeout(timeout time.Duration) *DeploymentOperationsGetParams
- func (o *DeploymentOperationsGetParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error
- type DeploymentOperationsGetReader
- type DeploymentOperationsListOK
- type DeploymentOperationsListParams
- func NewDeploymentOperationsListParams() *DeploymentOperationsListParams
- func NewDeploymentOperationsListParamsWithContext(ctx context.Context) *DeploymentOperationsListParams
- func NewDeploymentOperationsListParamsWithHTTPClient(client *http.Client) *DeploymentOperationsListParams
- func NewDeploymentOperationsListParamsWithTimeout(timeout time.Duration) *DeploymentOperationsListParams
- func (o *DeploymentOperationsListParams) SetAPIVersion(aPIVersion string)
- func (o *DeploymentOperationsListParams) SetContext(ctx context.Context)
- func (o *DeploymentOperationsListParams) SetDeploymentName(deploymentName string)
- func (o *DeploymentOperationsListParams) SetDollarTop(dollarTop *int32)
- func (o *DeploymentOperationsListParams) SetHTTPClient(client *http.Client)
- func (o *DeploymentOperationsListParams) SetResourceGroupName(resourceGroupName string)
- func (o *DeploymentOperationsListParams) SetSubscriptionID(subscriptionID string)
- func (o *DeploymentOperationsListParams) SetTimeout(timeout time.Duration)
- func (o *DeploymentOperationsListParams) WithAPIVersion(aPIVersion string) *DeploymentOperationsListParams
- func (o *DeploymentOperationsListParams) WithContext(ctx context.Context) *DeploymentOperationsListParams
- func (o *DeploymentOperationsListParams) WithDeploymentName(deploymentName string) *DeploymentOperationsListParams
- func (o *DeploymentOperationsListParams) WithDollarTop(dollarTop *int32) *DeploymentOperationsListParams
- func (o *DeploymentOperationsListParams) WithHTTPClient(client *http.Client) *DeploymentOperationsListParams
- func (o *DeploymentOperationsListParams) WithResourceGroupName(resourceGroupName string) *DeploymentOperationsListParams
- func (o *DeploymentOperationsListParams) WithSubscriptionID(subscriptionID string) *DeploymentOperationsListParams
- func (o *DeploymentOperationsListParams) WithTimeout(timeout time.Duration) *DeploymentOperationsListParams
- func (o *DeploymentOperationsListParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error
- type DeploymentOperationsListReader
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 deployment operations API
func New ¶
func New(transport runtime.ClientTransport, formats strfmt.Registry) *Client
New creates a new deployment operations API client.
func (*Client) DeploymentOperationsGet ¶
func (a *Client) DeploymentOperationsGet(params *DeploymentOperationsGetParams, authInfo runtime.ClientAuthInfoWriter) (*DeploymentOperationsGetOK, error)
DeploymentOperationsGet Gets a deployments operation.
func (*Client) DeploymentOperationsList ¶
func (a *Client) DeploymentOperationsList(params *DeploymentOperationsListParams, authInfo runtime.ClientAuthInfoWriter) (*DeploymentOperationsListOK, error)
DeploymentOperationsList Gets all deployments operations for a deployment.
func (*Client) SetTransport ¶
func (a *Client) SetTransport(transport runtime.ClientTransport)
SetTransport changes the transport on the client
type DeploymentOperationsGetOK ¶
type DeploymentOperationsGetOK struct {
Payload *models.DeploymentOperation
}
DeploymentOperationsGetOK handles this case with default header values.
OK - Returns information about the deployment operation.
func NewDeploymentOperationsGetOK ¶
func NewDeploymentOperationsGetOK() *DeploymentOperationsGetOK
NewDeploymentOperationsGetOK creates a DeploymentOperationsGetOK with default headers values
func (*DeploymentOperationsGetOK) Error ¶
func (o *DeploymentOperationsGetOK) Error() string
type DeploymentOperationsGetParams ¶
type DeploymentOperationsGetParams struct { /*APIVersion The API version to use for this operation. */ APIVersion string /*DeploymentName The name of the deployment. */ DeploymentName string /*OperationID The ID of the operation to get. */ OperationID string /*ResourceGroupName The name of the resource group. The name is case insensitive. */ ResourceGroupName string /*SubscriptionID The ID of the target subscription. */ SubscriptionID string Context context.Context HTTPClient *http.Client // contains filtered or unexported fields }
DeploymentOperationsGetParams contains all the parameters to send to the API endpoint for the deployment operations get operation typically these are written to a http.Request
func NewDeploymentOperationsGetParams ¶
func NewDeploymentOperationsGetParams() *DeploymentOperationsGetParams
NewDeploymentOperationsGetParams creates a new DeploymentOperationsGetParams object with the default values initialized.
func NewDeploymentOperationsGetParamsWithContext ¶
func NewDeploymentOperationsGetParamsWithContext(ctx context.Context) *DeploymentOperationsGetParams
NewDeploymentOperationsGetParamsWithContext creates a new DeploymentOperationsGetParams object with the default values initialized, and the ability to set a context for a request
func NewDeploymentOperationsGetParamsWithHTTPClient ¶
func NewDeploymentOperationsGetParamsWithHTTPClient(client *http.Client) *DeploymentOperationsGetParams
NewDeploymentOperationsGetParamsWithHTTPClient creates a new DeploymentOperationsGetParams object with the default values initialized, and the ability to set a custom HTTPClient for a request
func NewDeploymentOperationsGetParamsWithTimeout ¶
func NewDeploymentOperationsGetParamsWithTimeout(timeout time.Duration) *DeploymentOperationsGetParams
NewDeploymentOperationsGetParamsWithTimeout creates a new DeploymentOperationsGetParams object with the default values initialized, and the ability to set a timeout on a request
func (*DeploymentOperationsGetParams) SetAPIVersion ¶
func (o *DeploymentOperationsGetParams) SetAPIVersion(aPIVersion string)
SetAPIVersion adds the apiVersion to the deployment operations get params
func (*DeploymentOperationsGetParams) SetContext ¶
func (o *DeploymentOperationsGetParams) SetContext(ctx context.Context)
SetContext adds the context to the deployment operations get params
func (*DeploymentOperationsGetParams) SetDeploymentName ¶
func (o *DeploymentOperationsGetParams) SetDeploymentName(deploymentName string)
SetDeploymentName adds the deploymentName to the deployment operations get params
func (*DeploymentOperationsGetParams) SetHTTPClient ¶
func (o *DeploymentOperationsGetParams) SetHTTPClient(client *http.Client)
SetHTTPClient adds the HTTPClient to the deployment operations get params
func (*DeploymentOperationsGetParams) SetOperationID ¶
func (o *DeploymentOperationsGetParams) SetOperationID(operationID string)
SetOperationID adds the operationId to the deployment operations get params
func (*DeploymentOperationsGetParams) SetResourceGroupName ¶
func (o *DeploymentOperationsGetParams) SetResourceGroupName(resourceGroupName string)
SetResourceGroupName adds the resourceGroupName to the deployment operations get params
func (*DeploymentOperationsGetParams) SetSubscriptionID ¶
func (o *DeploymentOperationsGetParams) SetSubscriptionID(subscriptionID string)
SetSubscriptionID adds the subscriptionId to the deployment operations get params
func (*DeploymentOperationsGetParams) SetTimeout ¶
func (o *DeploymentOperationsGetParams) SetTimeout(timeout time.Duration)
SetTimeout adds the timeout to the deployment operations get params
func (*DeploymentOperationsGetParams) WithAPIVersion ¶
func (o *DeploymentOperationsGetParams) WithAPIVersion(aPIVersion string) *DeploymentOperationsGetParams
WithAPIVersion adds the aPIVersion to the deployment operations get params
func (*DeploymentOperationsGetParams) WithContext ¶
func (o *DeploymentOperationsGetParams) WithContext(ctx context.Context) *DeploymentOperationsGetParams
WithContext adds the context to the deployment operations get params
func (*DeploymentOperationsGetParams) WithDeploymentName ¶
func (o *DeploymentOperationsGetParams) WithDeploymentName(deploymentName string) *DeploymentOperationsGetParams
WithDeploymentName adds the deploymentName to the deployment operations get params
func (*DeploymentOperationsGetParams) WithHTTPClient ¶
func (o *DeploymentOperationsGetParams) WithHTTPClient(client *http.Client) *DeploymentOperationsGetParams
WithHTTPClient adds the HTTPClient to the deployment operations get params
func (*DeploymentOperationsGetParams) WithOperationID ¶
func (o *DeploymentOperationsGetParams) WithOperationID(operationID string) *DeploymentOperationsGetParams
WithOperationID adds the operationID to the deployment operations get params
func (*DeploymentOperationsGetParams) WithResourceGroupName ¶
func (o *DeploymentOperationsGetParams) WithResourceGroupName(resourceGroupName string) *DeploymentOperationsGetParams
WithResourceGroupName adds the resourceGroupName to the deployment operations get params
func (*DeploymentOperationsGetParams) WithSubscriptionID ¶
func (o *DeploymentOperationsGetParams) WithSubscriptionID(subscriptionID string) *DeploymentOperationsGetParams
WithSubscriptionID adds the subscriptionID to the deployment operations get params
func (*DeploymentOperationsGetParams) WithTimeout ¶
func (o *DeploymentOperationsGetParams) WithTimeout(timeout time.Duration) *DeploymentOperationsGetParams
WithTimeout adds the timeout to the deployment operations get params
func (*DeploymentOperationsGetParams) WriteToRequest ¶
func (o *DeploymentOperationsGetParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error
WriteToRequest writes these params to a swagger request
type DeploymentOperationsGetReader ¶
type DeploymentOperationsGetReader struct {
// contains filtered or unexported fields
}
DeploymentOperationsGetReader is a Reader for the DeploymentOperationsGet structure.
func (*DeploymentOperationsGetReader) ReadResponse ¶
func (o *DeploymentOperationsGetReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)
ReadResponse reads a server response into the received o.
type DeploymentOperationsListOK ¶
type DeploymentOperationsListOK struct {
Payload *models.DeploymentOperationsListResult
}
DeploymentOperationsListOK handles this case with default header values.
OK - Return an array of deployment operations.
func NewDeploymentOperationsListOK ¶
func NewDeploymentOperationsListOK() *DeploymentOperationsListOK
NewDeploymentOperationsListOK creates a DeploymentOperationsListOK with default headers values
func (*DeploymentOperationsListOK) Error ¶
func (o *DeploymentOperationsListOK) Error() string
type DeploymentOperationsListParams ¶
type DeploymentOperationsListParams struct { /*NrDollarTop The number of results to return. */ DollarTop *int32 /*APIVersion The API version to use for this operation. */ APIVersion string /*DeploymentName The name of the deployment with the operation to get. */ DeploymentName string /*ResourceGroupName The name of the resource group. The name is case insensitive. */ ResourceGroupName string /*SubscriptionID The ID of the target subscription. */ SubscriptionID string Context context.Context HTTPClient *http.Client // contains filtered or unexported fields }
DeploymentOperationsListParams contains all the parameters to send to the API endpoint for the deployment operations list operation typically these are written to a http.Request
func NewDeploymentOperationsListParams ¶
func NewDeploymentOperationsListParams() *DeploymentOperationsListParams
NewDeploymentOperationsListParams creates a new DeploymentOperationsListParams object with the default values initialized.
func NewDeploymentOperationsListParamsWithContext ¶
func NewDeploymentOperationsListParamsWithContext(ctx context.Context) *DeploymentOperationsListParams
NewDeploymentOperationsListParamsWithContext creates a new DeploymentOperationsListParams object with the default values initialized, and the ability to set a context for a request
func NewDeploymentOperationsListParamsWithHTTPClient ¶
func NewDeploymentOperationsListParamsWithHTTPClient(client *http.Client) *DeploymentOperationsListParams
NewDeploymentOperationsListParamsWithHTTPClient creates a new DeploymentOperationsListParams object with the default values initialized, and the ability to set a custom HTTPClient for a request
func NewDeploymentOperationsListParamsWithTimeout ¶
func NewDeploymentOperationsListParamsWithTimeout(timeout time.Duration) *DeploymentOperationsListParams
NewDeploymentOperationsListParamsWithTimeout creates a new DeploymentOperationsListParams object with the default values initialized, and the ability to set a timeout on a request
func (*DeploymentOperationsListParams) SetAPIVersion ¶
func (o *DeploymentOperationsListParams) SetAPIVersion(aPIVersion string)
SetAPIVersion adds the apiVersion to the deployment operations list params
func (*DeploymentOperationsListParams) SetContext ¶
func (o *DeploymentOperationsListParams) SetContext(ctx context.Context)
SetContext adds the context to the deployment operations list params
func (*DeploymentOperationsListParams) SetDeploymentName ¶
func (o *DeploymentOperationsListParams) SetDeploymentName(deploymentName string)
SetDeploymentName adds the deploymentName to the deployment operations list params
func (*DeploymentOperationsListParams) SetDollarTop ¶
func (o *DeploymentOperationsListParams) SetDollarTop(dollarTop *int32)
SetDollarTop adds the dollarTop to the deployment operations list params
func (*DeploymentOperationsListParams) SetHTTPClient ¶
func (o *DeploymentOperationsListParams) SetHTTPClient(client *http.Client)
SetHTTPClient adds the HTTPClient to the deployment operations list params
func (*DeploymentOperationsListParams) SetResourceGroupName ¶
func (o *DeploymentOperationsListParams) SetResourceGroupName(resourceGroupName string)
SetResourceGroupName adds the resourceGroupName to the deployment operations list params
func (*DeploymentOperationsListParams) SetSubscriptionID ¶
func (o *DeploymentOperationsListParams) SetSubscriptionID(subscriptionID string)
SetSubscriptionID adds the subscriptionId to the deployment operations list params
func (*DeploymentOperationsListParams) SetTimeout ¶
func (o *DeploymentOperationsListParams) SetTimeout(timeout time.Duration)
SetTimeout adds the timeout to the deployment operations list params
func (*DeploymentOperationsListParams) WithAPIVersion ¶
func (o *DeploymentOperationsListParams) WithAPIVersion(aPIVersion string) *DeploymentOperationsListParams
WithAPIVersion adds the aPIVersion to the deployment operations list params
func (*DeploymentOperationsListParams) WithContext ¶
func (o *DeploymentOperationsListParams) WithContext(ctx context.Context) *DeploymentOperationsListParams
WithContext adds the context to the deployment operations list params
func (*DeploymentOperationsListParams) WithDeploymentName ¶
func (o *DeploymentOperationsListParams) WithDeploymentName(deploymentName string) *DeploymentOperationsListParams
WithDeploymentName adds the deploymentName to the deployment operations list params
func (*DeploymentOperationsListParams) WithDollarTop ¶
func (o *DeploymentOperationsListParams) WithDollarTop(dollarTop *int32) *DeploymentOperationsListParams
WithDollarTop adds the dollarTop to the deployment operations list params
func (*DeploymentOperationsListParams) WithHTTPClient ¶
func (o *DeploymentOperationsListParams) WithHTTPClient(client *http.Client) *DeploymentOperationsListParams
WithHTTPClient adds the HTTPClient to the deployment operations list params
func (*DeploymentOperationsListParams) WithResourceGroupName ¶
func (o *DeploymentOperationsListParams) WithResourceGroupName(resourceGroupName string) *DeploymentOperationsListParams
WithResourceGroupName adds the resourceGroupName to the deployment operations list params
func (*DeploymentOperationsListParams) WithSubscriptionID ¶
func (o *DeploymentOperationsListParams) WithSubscriptionID(subscriptionID string) *DeploymentOperationsListParams
WithSubscriptionID adds the subscriptionID to the deployment operations list params
func (*DeploymentOperationsListParams) WithTimeout ¶
func (o *DeploymentOperationsListParams) WithTimeout(timeout time.Duration) *DeploymentOperationsListParams
WithTimeout adds the timeout to the deployment operations list params
func (*DeploymentOperationsListParams) WriteToRequest ¶
func (o *DeploymentOperationsListParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error
WriteToRequest writes these params to a swagger request
type DeploymentOperationsListReader ¶
type DeploymentOperationsListReader struct {
// contains filtered or unexported fields
}
DeploymentOperationsListReader is a Reader for the DeploymentOperationsList structure.
func (*DeploymentOperationsListReader) ReadResponse ¶
func (o *DeploymentOperationsListReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)
ReadResponse reads a server response into the received o.